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 "itemInput.proto" (package "api", syntax proto3)
|
||||
// tslint:disable
|
||||
import type { RpcTransport } from "@protobuf-ts/runtime-rpc";
|
||||
@@ -93,35 +93,35 @@ import type { RpcOptions } from "@protobuf-ts/runtime-rpc";
|
||||
*/
|
||||
export interface IItemInputAPIClient {
|
||||
/**
|
||||
* @generated from protobuf rpc: Created(api.ItemCreatedRequest) returns (api.ItemCreatedResponse);
|
||||
* @generated from protobuf rpc: Created
|
||||
*/
|
||||
created(input: ItemCreatedRequest, options?: RpcOptions): UnaryCall<ItemCreatedRequest, ItemCreatedResponse>;
|
||||
/**
|
||||
* @generated from protobuf rpc: LogisticVariantUpdated(api.ItemLogisticVariantUpdatedRequest) returns (api.ItemLogisticVariantUpdatedResponse);
|
||||
* @generated from protobuf rpc: LogisticVariantUpdated
|
||||
*/
|
||||
logisticVariantUpdated(input: ItemLogisticVariantUpdatedRequest, options?: RpcOptions): UnaryCall<ItemLogisticVariantUpdatedRequest, ItemLogisticVariantUpdatedResponse>;
|
||||
/**
|
||||
* @generated from protobuf rpc: LogisticVariantRemoved(api.ItemLogisticVariantRemovedRequest) returns (api.ItemLogisticVariantRemovedResponse);
|
||||
* @generated from protobuf rpc: LogisticVariantRemoved
|
||||
*/
|
||||
logisticVariantRemoved(input: ItemLogisticVariantRemovedRequest, options?: RpcOptions): UnaryCall<ItemLogisticVariantRemovedRequest, ItemLogisticVariantRemovedResponse>;
|
||||
/**
|
||||
* @generated from protobuf rpc: MetaDataUpdated(api.ItemMetaDataUpdatedRequest) returns (api.ItemMetaDataUpdatedResponse);
|
||||
* @generated from protobuf rpc: MetaDataUpdated
|
||||
*/
|
||||
metaDataUpdated(input: ItemMetaDataUpdatedRequest, options?: RpcOptions): UnaryCall<ItemMetaDataUpdatedRequest, ItemMetaDataUpdatedResponse>;
|
||||
/**
|
||||
* @generated from protobuf rpc: Deleted(api.ItemDeletedRequest) returns (api.ItemDeletedResponse);
|
||||
* @generated from protobuf rpc: Deleted
|
||||
*/
|
||||
deleted(input: ItemDeletedRequest, options?: RpcOptions): UnaryCall<ItemDeletedRequest, ItemDeletedResponse>;
|
||||
/**
|
||||
* @generated from protobuf rpc: DescriptionUpdated(api.ItemDescriptionUpdatedRequest) returns (api.ItemDescriptionUpdatedResponse);
|
||||
* @generated from protobuf rpc: DescriptionUpdated
|
||||
*/
|
||||
descriptionUpdated(input: ItemDescriptionUpdatedRequest, options?: RpcOptions): UnaryCall<ItemDescriptionUpdatedRequest, ItemDescriptionUpdatedResponse>;
|
||||
/**
|
||||
* @generated from protobuf rpc: AttachmentAdded(api.ItemAttachmentAddedRequest) returns (api.ItemAttachmentAddedResponse);
|
||||
* @generated from protobuf rpc: AttachmentAdded
|
||||
*/
|
||||
attachmentAdded(input: ItemAttachmentAddedRequest, options?: RpcOptions): UnaryCall<ItemAttachmentAddedRequest, ItemAttachmentAddedResponse>;
|
||||
/**
|
||||
* @generated from protobuf rpc: AttachmentRemoved(api.ItemAttachmentRemovedRequest) returns (api.ItemAttachmentRemovedResponse);
|
||||
* @generated from protobuf rpc: AttachmentRemoved
|
||||
*/
|
||||
attachmentRemoved(input: ItemAttachmentRemovedRequest, options?: RpcOptions): UnaryCall<ItemAttachmentRemovedRequest, ItemAttachmentRemovedResponse>;
|
||||
}
|
||||
@@ -200,56 +200,56 @@ export class ItemInputAPIClient implements IItemInputAPIClient, ServiceInfo {
|
||||
constructor(private readonly _transport: RpcTransport) {
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: Created(api.ItemCreatedRequest) returns (api.ItemCreatedResponse);
|
||||
* @generated from protobuf rpc: Created
|
||||
*/
|
||||
created(input: ItemCreatedRequest, options?: RpcOptions): UnaryCall<ItemCreatedRequest, ItemCreatedResponse> {
|
||||
const method = this.methods[0], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<ItemCreatedRequest, ItemCreatedResponse>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: LogisticVariantUpdated(api.ItemLogisticVariantUpdatedRequest) returns (api.ItemLogisticVariantUpdatedResponse);
|
||||
* @generated from protobuf rpc: LogisticVariantUpdated
|
||||
*/
|
||||
logisticVariantUpdated(input: ItemLogisticVariantUpdatedRequest, options?: RpcOptions): UnaryCall<ItemLogisticVariantUpdatedRequest, ItemLogisticVariantUpdatedResponse> {
|
||||
const method = this.methods[1], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<ItemLogisticVariantUpdatedRequest, ItemLogisticVariantUpdatedResponse>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: LogisticVariantRemoved(api.ItemLogisticVariantRemovedRequest) returns (api.ItemLogisticVariantRemovedResponse);
|
||||
* @generated from protobuf rpc: LogisticVariantRemoved
|
||||
*/
|
||||
logisticVariantRemoved(input: ItemLogisticVariantRemovedRequest, options?: RpcOptions): UnaryCall<ItemLogisticVariantRemovedRequest, ItemLogisticVariantRemovedResponse> {
|
||||
const method = this.methods[2], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<ItemLogisticVariantRemovedRequest, ItemLogisticVariantRemovedResponse>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: MetaDataUpdated(api.ItemMetaDataUpdatedRequest) returns (api.ItemMetaDataUpdatedResponse);
|
||||
* @generated from protobuf rpc: MetaDataUpdated
|
||||
*/
|
||||
metaDataUpdated(input: ItemMetaDataUpdatedRequest, options?: RpcOptions): UnaryCall<ItemMetaDataUpdatedRequest, ItemMetaDataUpdatedResponse> {
|
||||
const method = this.methods[3], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<ItemMetaDataUpdatedRequest, ItemMetaDataUpdatedResponse>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: Deleted(api.ItemDeletedRequest) returns (api.ItemDeletedResponse);
|
||||
* @generated from protobuf rpc: Deleted
|
||||
*/
|
||||
deleted(input: ItemDeletedRequest, options?: RpcOptions): UnaryCall<ItemDeletedRequest, ItemDeletedResponse> {
|
||||
const method = this.methods[4], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<ItemDeletedRequest, ItemDeletedResponse>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: DescriptionUpdated(api.ItemDescriptionUpdatedRequest) returns (api.ItemDescriptionUpdatedResponse);
|
||||
* @generated from protobuf rpc: DescriptionUpdated
|
||||
*/
|
||||
descriptionUpdated(input: ItemDescriptionUpdatedRequest, options?: RpcOptions): UnaryCall<ItemDescriptionUpdatedRequest, ItemDescriptionUpdatedResponse> {
|
||||
const method = this.methods[5], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<ItemDescriptionUpdatedRequest, ItemDescriptionUpdatedResponse>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: AttachmentAdded(api.ItemAttachmentAddedRequest) returns (api.ItemAttachmentAddedResponse);
|
||||
* @generated from protobuf rpc: AttachmentAdded
|
||||
*/
|
||||
attachmentAdded(input: ItemAttachmentAddedRequest, options?: RpcOptions): UnaryCall<ItemAttachmentAddedRequest, ItemAttachmentAddedResponse> {
|
||||
const method = this.methods[6], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<ItemAttachmentAddedRequest, ItemAttachmentAddedResponse>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: AttachmentRemoved(api.ItemAttachmentRemovedRequest) returns (api.ItemAttachmentRemovedResponse);
|
||||
* @generated from protobuf rpc: AttachmentRemoved
|
||||
*/
|
||||
attachmentRemoved(input: ItemAttachmentRemovedRequest, options?: RpcOptions): UnaryCall<ItemAttachmentRemovedRequest, ItemAttachmentRemovedResponse> {
|
||||
const method = this.methods[7], opt = this._transport.mergeOptions(options);
|
||||
|
||||
Reference in New Issue
Block a user