Latest generation

This commit is contained in:
ci core model
2025-07-29 08:44:59 +00:00
parent 0eff2fc98c
commit a78c507f4d
6 changed files with 14 additions and 737 deletions

View File

@@ -6,16 +6,6 @@ import type { ServiceInfo } from "@protobuf-ts/runtime-rpc";
import { OrganisationService } from "./org";
import type { DeleteOrganisationInDBResult } from "./org";
import type { DeleteOrganisationInDBRequest } from "./org";
import type { CreateAllPulsarMissPartitionsResult } from "./org";
import type { CreateAllPulsarMissPartitionsRequest } from "./org";
import type { CreatePulsarMissPartitionsResult } from "./org";
import type { CreatePulsarMissPartitionsRequest } from "./org";
import type { DeletePulsarResult } from "./org";
import type { DeletePulsarRequest } from "./org";
import type { CreatePulsarSubscriptionsResult } from "./org";
import type { CreatePulsarSubscriptionsRequest } from "./org";
import type { CreatePulsarResult } from "./org";
import type { CreatePulsarRequest } from "./org";
import type { DeprovisionGitOrgResult } from "./org";
import type { DeprovisionGitOrgRequest } from "./org";
import type { ProvisionGitOrgResult } from "./org";
@@ -143,26 +133,6 @@ export interface IOrganisationServiceClient {
* @generated from protobuf rpc: DeprovisionGitOrg
*/
deprovisionGitOrg(input: DeprovisionGitOrgRequest, options?: RpcOptions): UnaryCall<DeprovisionGitOrgRequest, DeprovisionGitOrgResult>;
/**
* @generated from protobuf rpc: CreatePulsar
*/
createPulsar(input: CreatePulsarRequest, options?: RpcOptions): UnaryCall<CreatePulsarRequest, CreatePulsarResult>;
/**
* @generated from protobuf rpc: CreatePulsarSubscriptions
*/
createPulsarSubscriptions(input: CreatePulsarSubscriptionsRequest, options?: RpcOptions): UnaryCall<CreatePulsarSubscriptionsRequest, CreatePulsarSubscriptionsResult>;
/**
* @generated from protobuf rpc: DeletePulsar
*/
deletePulsar(input: DeletePulsarRequest, options?: RpcOptions): UnaryCall<DeletePulsarRequest, DeletePulsarResult>;
/**
* @generated from protobuf rpc: CreatePulsarMissPartitions
*/
createPulsarMissPartitions(input: CreatePulsarMissPartitionsRequest, options?: RpcOptions): UnaryCall<CreatePulsarMissPartitionsRequest, CreatePulsarMissPartitionsResult>;
/**
* @generated from protobuf rpc: CreateAllPulsarMissPartitions
*/
createAllPulsarMissPartitions(input: CreateAllPulsarMissPartitionsRequest, options?: RpcOptions): UnaryCall<CreateAllPulsarMissPartitionsRequest, CreateAllPulsarMissPartitionsResult>;
/**
* @generated from protobuf rpc: DeleteOrganisationInDB
*/
@@ -317,46 +287,11 @@ export class OrganisationServiceClient implements IOrganisationServiceClient, Se
const method = this.methods[19], opt = this._transport.mergeOptions(options);
return stackIntercept<DeprovisionGitOrgRequest, DeprovisionGitOrgResult>("unary", this._transport, method, opt, input);
}
/**
* @generated from protobuf rpc: CreatePulsar
*/
createPulsar(input: CreatePulsarRequest, options?: RpcOptions): UnaryCall<CreatePulsarRequest, CreatePulsarResult> {
const method = this.methods[20], opt = this._transport.mergeOptions(options);
return stackIntercept<CreatePulsarRequest, CreatePulsarResult>("unary", this._transport, method, opt, input);
}
/**
* @generated from protobuf rpc: CreatePulsarSubscriptions
*/
createPulsarSubscriptions(input: CreatePulsarSubscriptionsRequest, options?: RpcOptions): UnaryCall<CreatePulsarSubscriptionsRequest, CreatePulsarSubscriptionsResult> {
const method = this.methods[21], opt = this._transport.mergeOptions(options);
return stackIntercept<CreatePulsarSubscriptionsRequest, CreatePulsarSubscriptionsResult>("unary", this._transport, method, opt, input);
}
/**
* @generated from protobuf rpc: DeletePulsar
*/
deletePulsar(input: DeletePulsarRequest, options?: RpcOptions): UnaryCall<DeletePulsarRequest, DeletePulsarResult> {
const method = this.methods[22], opt = this._transport.mergeOptions(options);
return stackIntercept<DeletePulsarRequest, DeletePulsarResult>("unary", this._transport, method, opt, input);
}
/**
* @generated from protobuf rpc: CreatePulsarMissPartitions
*/
createPulsarMissPartitions(input: CreatePulsarMissPartitionsRequest, options?: RpcOptions): UnaryCall<CreatePulsarMissPartitionsRequest, CreatePulsarMissPartitionsResult> {
const method = this.methods[23], opt = this._transport.mergeOptions(options);
return stackIntercept<CreatePulsarMissPartitionsRequest, CreatePulsarMissPartitionsResult>("unary", this._transport, method, opt, input);
}
/**
* @generated from protobuf rpc: CreateAllPulsarMissPartitions
*/
createAllPulsarMissPartitions(input: CreateAllPulsarMissPartitionsRequest, options?: RpcOptions): UnaryCall<CreateAllPulsarMissPartitionsRequest, CreateAllPulsarMissPartitionsResult> {
const method = this.methods[24], opt = this._transport.mergeOptions(options);
return stackIntercept<CreateAllPulsarMissPartitionsRequest, CreateAllPulsarMissPartitionsResult>("unary", this._transport, method, opt, input);
}
/**
* @generated from protobuf rpc: DeleteOrganisationInDB
*/
deleteOrganisationInDB(input: DeleteOrganisationInDBRequest, options?: RpcOptions): UnaryCall<DeleteOrganisationInDBRequest, DeleteOrganisationInDBResult> {
const method = this.methods[25], opt = this._transport.mergeOptions(options);
const method = this.methods[20], opt = this._transport.mergeOptions(options);
return stackIntercept<DeleteOrganisationInDBRequest, DeleteOrganisationInDBResult>("unary", this._transport, method, opt, input);
}
}