Latest generation

This commit is contained in:
ci viz model
2026-04-07 12:19:16 +00:00
parent 94cd1a7eb7
commit c36481fd5d
5 changed files with 316 additions and 9 deletions

View File

@@ -6,6 +6,8 @@ import type { ServiceInfo } from "@protobuf-ts/runtime-rpc";
import { ViewService } from "./viz-view";
import type { ExtractResult } from "./viz-view";
import type { ExtractRequest } from "./viz-view";
import type { SetOwnerViewResult } from "./viz-view";
import type { SetOwnerViewRequest } from "./viz-view";
import type { DeleteViewsForProjectResult } from "./viz-view";
import type { DeleteViewsForProjectRequest } from "./viz-view";
import type { ListViewResult } from "./viz-view";
@@ -49,6 +51,10 @@ export interface IViewServiceClient {
* @generated from protobuf rpc: DeleteViewsForProject
*/
deleteViewsForProject(input: DeleteViewsForProjectRequest, options?: RpcOptions): UnaryCall<DeleteViewsForProjectRequest, DeleteViewsForProjectResult>;
/**
* @generated from protobuf rpc: SetOwner
*/
setOwner(input: SetOwnerViewRequest, options?: RpcOptions): UnaryCall<SetOwnerViewRequest, SetOwnerViewResult>;
/**
* @generated from protobuf rpc: Extract
*/
@@ -105,11 +111,18 @@ export class ViewServiceClient implements IViewServiceClient, ServiceInfo {
const method = this.methods[5], opt = this._transport.mergeOptions(options);
return stackIntercept<DeleteViewsForProjectRequest, DeleteViewsForProjectResult>("unary", this._transport, method, opt, input);
}
/**
* @generated from protobuf rpc: SetOwner
*/
setOwner(input: SetOwnerViewRequest, options?: RpcOptions): UnaryCall<SetOwnerViewRequest, SetOwnerViewResult> {
const method = this.methods[6], opt = this._transport.mergeOptions(options);
return stackIntercept<SetOwnerViewRequest, SetOwnerViewResult>("unary", this._transport, method, opt, input);
}
/**
* @generated from protobuf rpc: Extract
*/
extract(input: ExtractRequest, options?: RpcOptions): UnaryCall<ExtractRequest, ExtractResult> {
const method = this.methods[6], opt = this._transport.mergeOptions(options);
const method = this.methods[7], opt = this._transport.mergeOptions(options);
return stackIntercept<ExtractRequest, ExtractResult>("unary", this._transport, method, opt, input);
}
}