Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

upgrade to v0.28.0 #4

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions scripts/update.bash
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ _root_dir="$(dirname "$_scripts_dir")"
_deps_dir="$_root_dir/deps"

readonly _git_deps=(
"pomerium/pomerium|v0.27.0"
"pomerium/pomerium-console|v0.27.0"
"pomerium/pomerium|v0.28.0"
"pomerium/pomerium-console|v0.28.0"
'envoyproxy/protoc-gen-validate|v1.0.2'
'envoyproxy/data-plane-api|d525ab36724d6a94477f7642e02418b50a8c4043'
'cncf/xds|e9ce68804cb4e64cab5a52e3c8baf840d4ff87b7'
Expand Down Expand Up @@ -40,7 +40,7 @@ function clone-all() {
done
}

# clone-all
clone-all

for _f in "$_deps_dir/github.com/pomerium/pomerium-console/pkg/pb/"*.proto; do
(
Expand Down
86 changes: 86 additions & 0 deletions src/pomerium-console/changesets.client.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
// @generated by protobuf-ts 2.9.4 with parameter generate_dependencies
// @generated from protobuf file "changesets.proto" (package "pomerium.dashboard", syntax proto3)
// tslint:disable
import type { RpcTransport } from "@protobuf-ts/runtime-rpc";
import type { ServiceInfo } from "@protobuf-ts/runtime-rpc";
import { ChangesetService } from "./changesets";
import type { ListChangesetsResponse } from "./changesets";
import type { ListChangesetsRequest } from "./changesets";
import type { DiffChangesetResponse } from "./changesets";
import type { DiffChangesetRequest } from "./changesets";
import type { DeployChangesetRequest } from "./changesets";
import { stackIntercept } from "@protobuf-ts/runtime-rpc";
import type { Empty } from "./google/protobuf/empty";
import type { ApproveChangesetRequest } from "./changesets";
import type { UnaryCall } from "@protobuf-ts/runtime-rpc";
import type { RpcOptions } from "@protobuf-ts/runtime-rpc";
/**
* @generated from protobuf service pomerium.dashboard.ChangesetService
*/
export interface IChangesetServiceClient {
/**
* @generated from protobuf rpc: ApproveChangeset(pomerium.dashboard.ApproveChangesetRequest) returns (google.protobuf.Empty);
*/
approveChangeset(input: ApproveChangesetRequest, options?: RpcOptions): UnaryCall<ApproveChangesetRequest, Empty>;
/**
* @generated from protobuf rpc: DeployChangeset(pomerium.dashboard.DeployChangesetRequest) returns (google.protobuf.Empty);
*/
deployChangeset(input: DeployChangesetRequest, options?: RpcOptions): UnaryCall<DeployChangesetRequest, Empty>;
/**
* @generated from protobuf rpc: DiffChangeset(pomerium.dashboard.DiffChangesetRequest) returns (pomerium.dashboard.DiffChangesetResponse);
*/
diffChangeset(input: DiffChangesetRequest, options?: RpcOptions): UnaryCall<DiffChangesetRequest, DiffChangesetResponse>;
/**
* @generated from protobuf rpc: ListChangesets(pomerium.dashboard.ListChangesetsRequest) returns (pomerium.dashboard.ListChangesetsResponse);
*/
listChangesets(input: ListChangesetsRequest, options?: RpcOptions): UnaryCall<ListChangesetsRequest, ListChangesetsResponse>;
/**
* @generated from protobuf rpc: RollbackChangeset(google.protobuf.Empty) returns (google.protobuf.Empty);
*/
rollbackChangeset(input: Empty, options?: RpcOptions): UnaryCall<Empty, Empty>;
}
/**
* @generated from protobuf service pomerium.dashboard.ChangesetService
*/
export class ChangesetServiceClient implements IChangesetServiceClient, ServiceInfo {
typeName = ChangesetService.typeName;
methods = ChangesetService.methods;
options = ChangesetService.options;
constructor(private readonly _transport: RpcTransport) {
}
/**
* @generated from protobuf rpc: ApproveChangeset(pomerium.dashboard.ApproveChangesetRequest) returns (google.protobuf.Empty);
*/
approveChangeset(input: ApproveChangesetRequest, options?: RpcOptions): UnaryCall<ApproveChangesetRequest, Empty> {
const method = this.methods[0], opt = this._transport.mergeOptions(options);
return stackIntercept<ApproveChangesetRequest, Empty>("unary", this._transport, method, opt, input);
}
/**
* @generated from protobuf rpc: DeployChangeset(pomerium.dashboard.DeployChangesetRequest) returns (google.protobuf.Empty);
*/
deployChangeset(input: DeployChangesetRequest, options?: RpcOptions): UnaryCall<DeployChangesetRequest, Empty> {
const method = this.methods[1], opt = this._transport.mergeOptions(options);
return stackIntercept<DeployChangesetRequest, Empty>("unary", this._transport, method, opt, input);
}
/**
* @generated from protobuf rpc: DiffChangeset(pomerium.dashboard.DiffChangesetRequest) returns (pomerium.dashboard.DiffChangesetResponse);
*/
diffChangeset(input: DiffChangesetRequest, options?: RpcOptions): UnaryCall<DiffChangesetRequest, DiffChangesetResponse> {
const method = this.methods[2], opt = this._transport.mergeOptions(options);
return stackIntercept<DiffChangesetRequest, DiffChangesetResponse>("unary", this._transport, method, opt, input);
}
/**
* @generated from protobuf rpc: ListChangesets(pomerium.dashboard.ListChangesetsRequest) returns (pomerium.dashboard.ListChangesetsResponse);
*/
listChangesets(input: ListChangesetsRequest, options?: RpcOptions): UnaryCall<ListChangesetsRequest, ListChangesetsResponse> {
const method = this.methods[3], opt = this._transport.mergeOptions(options);
return stackIntercept<ListChangesetsRequest, ListChangesetsResponse>("unary", this._transport, method, opt, input);
}
/**
* @generated from protobuf rpc: RollbackChangeset(google.protobuf.Empty) returns (google.protobuf.Empty);
*/
rollbackChangeset(input: Empty, options?: RpcOptions): UnaryCall<Empty, Empty> {
const method = this.methods[4], opt = this._transport.mergeOptions(options);
return stackIntercept<Empty, Empty>("unary", this._transport, method, opt, input);
}
}
Loading