You've already forked npm-core-sdk
Latest generation
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
// @generated by protobuf-ts 2.10.0 with parameter use_proto_field_name
|
||||
// @generated by protobuf-ts 2.11.0 with parameter use_proto_field_name
|
||||
// @generated from protobuf file "partnerInput.proto" (package "api", syntax proto3)
|
||||
// tslint:disable
|
||||
import type { RpcTransport } from "@protobuf-ts/runtime-rpc";
|
||||
@@ -85,19 +85,19 @@ import type { RpcOptions } from "@protobuf-ts/runtime-rpc";
|
||||
*/
|
||||
export interface IPartnerInputAPIClient {
|
||||
/**
|
||||
* @generated from protobuf rpc: Created(api.PartnerCreatedRequest) returns (api.PartnerCreatedResponse);
|
||||
* @generated from protobuf rpc: Created
|
||||
*/
|
||||
created(input: PartnerCreatedRequest, options?: RpcOptions): UnaryCall<PartnerCreatedRequest, PartnerCreatedResponse>;
|
||||
/**
|
||||
* @generated from protobuf rpc: Deleted(api.PartnerDeletedRequest) returns (api.PartnerDeletedResponse);
|
||||
* @generated from protobuf rpc: Deleted
|
||||
*/
|
||||
deleted(input: PartnerDeletedRequest, options?: RpcOptions): UnaryCall<PartnerDeletedRequest, PartnerDeletedResponse>;
|
||||
/**
|
||||
* @generated from protobuf rpc: AttachmentAdded(api.PartnerAttachmentAddedRequest) returns (api.PartnerAttachmentAddedResponse);
|
||||
* @generated from protobuf rpc: AttachmentAdded
|
||||
*/
|
||||
attachmentAdded(input: PartnerAttachmentAddedRequest, options?: RpcOptions): UnaryCall<PartnerAttachmentAddedRequest, PartnerAttachmentAddedResponse>;
|
||||
/**
|
||||
* @generated from protobuf rpc: AttachmentRemoved(api.PartnerAttachmentRemovedRequest) returns (api.PartnerAttachmentRemovedResponse);
|
||||
* @generated from protobuf rpc: AttachmentRemoved
|
||||
*/
|
||||
attachmentRemoved(input: PartnerAttachmentRemovedRequest, options?: RpcOptions): UnaryCall<PartnerAttachmentRemovedRequest, PartnerAttachmentRemovedResponse>;
|
||||
}
|
||||
@@ -176,28 +176,28 @@ export class PartnerInputAPIClient implements IPartnerInputAPIClient, ServiceInf
|
||||
constructor(private readonly _transport: RpcTransport) {
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: Created(api.PartnerCreatedRequest) returns (api.PartnerCreatedResponse);
|
||||
* @generated from protobuf rpc: Created
|
||||
*/
|
||||
created(input: PartnerCreatedRequest, options?: RpcOptions): UnaryCall<PartnerCreatedRequest, PartnerCreatedResponse> {
|
||||
const method = this.methods[0], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<PartnerCreatedRequest, PartnerCreatedResponse>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: Deleted(api.PartnerDeletedRequest) returns (api.PartnerDeletedResponse);
|
||||
* @generated from protobuf rpc: Deleted
|
||||
*/
|
||||
deleted(input: PartnerDeletedRequest, options?: RpcOptions): UnaryCall<PartnerDeletedRequest, PartnerDeletedResponse> {
|
||||
const method = this.methods[1], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<PartnerDeletedRequest, PartnerDeletedResponse>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: AttachmentAdded(api.PartnerAttachmentAddedRequest) returns (api.PartnerAttachmentAddedResponse);
|
||||
* @generated from protobuf rpc: AttachmentAdded
|
||||
*/
|
||||
attachmentAdded(input: PartnerAttachmentAddedRequest, options?: RpcOptions): UnaryCall<PartnerAttachmentAddedRequest, PartnerAttachmentAddedResponse> {
|
||||
const method = this.methods[2], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<PartnerAttachmentAddedRequest, PartnerAttachmentAddedResponse>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: AttachmentRemoved(api.PartnerAttachmentRemovedRequest) returns (api.PartnerAttachmentRemovedResponse);
|
||||
* @generated from protobuf rpc: AttachmentRemoved
|
||||
*/
|
||||
attachmentRemoved(input: PartnerAttachmentRemovedRequest, options?: RpcOptions): UnaryCall<PartnerAttachmentRemovedRequest, PartnerAttachmentRemovedResponse> {
|
||||
const method = this.methods[3], opt = this._transport.mergeOptions(options);
|
||||
|
||||
Reference in New Issue
Block a user