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 "movementInput.proto" (package "api", syntax proto3)
|
||||
// tslint:disable
|
||||
import type { RpcTransport } from "@protobuf-ts/runtime-rpc";
|
||||
@@ -29,31 +29,31 @@ import type { RpcOptions } from "@protobuf-ts/runtime-rpc";
|
||||
*/
|
||||
export interface IMovementInputAPIClient {
|
||||
/**
|
||||
* @generated from protobuf rpc: Created(api.MovementCreatedRequest) returns (api.MovementCreatedResponse);
|
||||
* @generated from protobuf rpc: Created
|
||||
*/
|
||||
created(input: MovementCreatedRequest, options?: RpcOptions): UnaryCall<MovementCreatedRequest, MovementCreatedResponse>;
|
||||
/**
|
||||
* @generated from protobuf rpc: Generated(api.MovementGeneratedRequest) returns (api.MovementGeneratedResponse);
|
||||
* @generated from protobuf rpc: Generated
|
||||
*/
|
||||
generated(input: MovementGeneratedRequest, options?: RpcOptions): UnaryCall<MovementGeneratedRequest, MovementGeneratedResponse>;
|
||||
/**
|
||||
* @generated from protobuf rpc: StockValueUpdated(api.MovementStockValueUpdatedRequest) returns (api.MovementStockValueUpdatedResponse);
|
||||
* @generated from protobuf rpc: StockValueUpdated
|
||||
*/
|
||||
stockValueUpdated(input: MovementStockValueUpdatedRequest, options?: RpcOptions): UnaryCall<MovementStockValueUpdatedRequest, MovementStockValueUpdatedResponse>;
|
||||
/**
|
||||
* @generated from protobuf rpc: ClaimAdded(api.MovementClaimAddedRequest) returns (api.MovementClaimAddedResponse);
|
||||
* @generated from protobuf rpc: ClaimAdded
|
||||
*/
|
||||
claimAdded(input: MovementClaimAddedRequest, options?: RpcOptions): UnaryCall<MovementClaimAddedRequest, MovementClaimAddedResponse>;
|
||||
/**
|
||||
* @generated from protobuf rpc: AttachmentAdded(api.MovementAttachmentAddedRequest) returns (api.MovementAttachmentAddedResponse);
|
||||
* @generated from protobuf rpc: AttachmentAdded
|
||||
*/
|
||||
attachmentAdded(input: MovementAttachmentAddedRequest, options?: RpcOptions): UnaryCall<MovementAttachmentAddedRequest, MovementAttachmentAddedResponse>;
|
||||
/**
|
||||
* @generated from protobuf rpc: AttachmentRemoved(api.MovementAttachmentRemovedRequest) returns (api.MovementAttachmentRemovedResponse);
|
||||
* @generated from protobuf rpc: AttachmentRemoved
|
||||
*/
|
||||
attachmentRemoved(input: MovementAttachmentRemovedRequest, options?: RpcOptions): UnaryCall<MovementAttachmentRemovedRequest, MovementAttachmentRemovedResponse>;
|
||||
/**
|
||||
* @generated from protobuf rpc: Deleted(api.MovementDeletedRequest) returns (api.MovementDeletedResponse);
|
||||
* @generated from protobuf rpc: Deleted
|
||||
*/
|
||||
deleted(input: MovementDeletedRequest, options?: RpcOptions): UnaryCall<MovementDeletedRequest, MovementDeletedResponse>;
|
||||
}
|
||||
@@ -70,49 +70,49 @@ export class MovementInputAPIClient implements IMovementInputAPIClient, ServiceI
|
||||
constructor(private readonly _transport: RpcTransport) {
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: Created(api.MovementCreatedRequest) returns (api.MovementCreatedResponse);
|
||||
* @generated from protobuf rpc: Created
|
||||
*/
|
||||
created(input: MovementCreatedRequest, options?: RpcOptions): UnaryCall<MovementCreatedRequest, MovementCreatedResponse> {
|
||||
const method = this.methods[0], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<MovementCreatedRequest, MovementCreatedResponse>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: Generated(api.MovementGeneratedRequest) returns (api.MovementGeneratedResponse);
|
||||
* @generated from protobuf rpc: Generated
|
||||
*/
|
||||
generated(input: MovementGeneratedRequest, options?: RpcOptions): UnaryCall<MovementGeneratedRequest, MovementGeneratedResponse> {
|
||||
const method = this.methods[1], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<MovementGeneratedRequest, MovementGeneratedResponse>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: StockValueUpdated(api.MovementStockValueUpdatedRequest) returns (api.MovementStockValueUpdatedResponse);
|
||||
* @generated from protobuf rpc: StockValueUpdated
|
||||
*/
|
||||
stockValueUpdated(input: MovementStockValueUpdatedRequest, options?: RpcOptions): UnaryCall<MovementStockValueUpdatedRequest, MovementStockValueUpdatedResponse> {
|
||||
const method = this.methods[2], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<MovementStockValueUpdatedRequest, MovementStockValueUpdatedResponse>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: ClaimAdded(api.MovementClaimAddedRequest) returns (api.MovementClaimAddedResponse);
|
||||
* @generated from protobuf rpc: ClaimAdded
|
||||
*/
|
||||
claimAdded(input: MovementClaimAddedRequest, options?: RpcOptions): UnaryCall<MovementClaimAddedRequest, MovementClaimAddedResponse> {
|
||||
const method = this.methods[3], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<MovementClaimAddedRequest, MovementClaimAddedResponse>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: AttachmentAdded(api.MovementAttachmentAddedRequest) returns (api.MovementAttachmentAddedResponse);
|
||||
* @generated from protobuf rpc: AttachmentAdded
|
||||
*/
|
||||
attachmentAdded(input: MovementAttachmentAddedRequest, options?: RpcOptions): UnaryCall<MovementAttachmentAddedRequest, MovementAttachmentAddedResponse> {
|
||||
const method = this.methods[4], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<MovementAttachmentAddedRequest, MovementAttachmentAddedResponse>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: AttachmentRemoved(api.MovementAttachmentRemovedRequest) returns (api.MovementAttachmentRemovedResponse);
|
||||
* @generated from protobuf rpc: AttachmentRemoved
|
||||
*/
|
||||
attachmentRemoved(input: MovementAttachmentRemovedRequest, options?: RpcOptions): UnaryCall<MovementAttachmentRemovedRequest, MovementAttachmentRemovedResponse> {
|
||||
const method = this.methods[5], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<MovementAttachmentRemovedRequest, MovementAttachmentRemovedResponse>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: Deleted(api.MovementDeletedRequest) returns (api.MovementDeletedResponse);
|
||||
* @generated from protobuf rpc: Deleted
|
||||
*/
|
||||
deleted(input: MovementDeletedRequest, options?: RpcOptions): UnaryCall<MovementDeletedRequest, MovementDeletedResponse> {
|
||||
const method = this.methods[6], opt = this._transport.mergeOptions(options);
|
||||
|
||||
Reference in New Issue
Block a user