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 "partnerApp.proto" (package "api", syntax proto3)
|
||||
// tslint:disable
|
||||
import type { RpcTransport } from "@protobuf-ts/runtime-rpc";
|
||||
@@ -26,31 +26,31 @@ import type { RpcOptions } from "@protobuf-ts/runtime-rpc";
|
||||
*/
|
||||
export interface IPartnerAppServiceClient {
|
||||
/**
|
||||
* @generated from protobuf rpc: Create(api.CreatePartnerAppRequest) returns (api.CreatePartnerAppResult);
|
||||
* @generated from protobuf rpc: Create
|
||||
*/
|
||||
create(input: CreatePartnerAppRequest, options?: RpcOptions): UnaryCall<CreatePartnerAppRequest, CreatePartnerAppResult>;
|
||||
/**
|
||||
* @generated from protobuf rpc: Update(api.UpdatePartnerAppRequest) returns (api.UpdatePartnerAppResult);
|
||||
* @generated from protobuf rpc: Update
|
||||
*/
|
||||
update(input: UpdatePartnerAppRequest, options?: RpcOptions): UnaryCall<UpdatePartnerAppRequest, UpdatePartnerAppResult>;
|
||||
/**
|
||||
* @generated from protobuf rpc: Delete(api.DeletePartnerAppRequest) returns (api.DeletePartnerAppResult);
|
||||
* @generated from protobuf rpc: Delete
|
||||
*/
|
||||
delete(input: DeletePartnerAppRequest, options?: RpcOptions): UnaryCall<DeletePartnerAppRequest, DeletePartnerAppResult>;
|
||||
/**
|
||||
* @generated from protobuf rpc: Get(api.GetPartnerAppRequest) returns (api.GetPartnerAppResult);
|
||||
* @generated from protobuf rpc: Get
|
||||
*/
|
||||
get(input: GetPartnerAppRequest, options?: RpcOptions): UnaryCall<GetPartnerAppRequest, GetPartnerAppResult>;
|
||||
/**
|
||||
* @generated from protobuf rpc: List(api.ListPartnerAppsRequest) returns (api.ListPartnerAppsResult);
|
||||
* @generated from protobuf rpc: List
|
||||
*/
|
||||
list(input: ListPartnerAppsRequest, options?: RpcOptions): UnaryCall<ListPartnerAppsRequest, ListPartnerAppsResult>;
|
||||
/**
|
||||
* @generated from protobuf rpc: DeletePartnerAppInDB(api.DeletePartnerAppInDBRequest) returns (api.DeletePartnerAppInDBResult);
|
||||
* @generated from protobuf rpc: DeletePartnerAppInDB
|
||||
*/
|
||||
deletePartnerAppInDB(input: DeletePartnerAppInDBRequest, options?: RpcOptions): UnaryCall<DeletePartnerAppInDBRequest, DeletePartnerAppInDBResult>;
|
||||
/**
|
||||
* @generated from protobuf rpc: Renew(api.RenewPartnerAppRequest) returns (api.RenewPartnerAppResult);
|
||||
* @generated from protobuf rpc: Renew
|
||||
*/
|
||||
renew(input: RenewPartnerAppRequest, options?: RpcOptions): UnaryCall<RenewPartnerAppRequest, RenewPartnerAppResult>;
|
||||
}
|
||||
@@ -64,49 +64,49 @@ export class PartnerAppServiceClient implements IPartnerAppServiceClient, Servic
|
||||
constructor(private readonly _transport: RpcTransport) {
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: Create(api.CreatePartnerAppRequest) returns (api.CreatePartnerAppResult);
|
||||
* @generated from protobuf rpc: Create
|
||||
*/
|
||||
create(input: CreatePartnerAppRequest, options?: RpcOptions): UnaryCall<CreatePartnerAppRequest, CreatePartnerAppResult> {
|
||||
const method = this.methods[0], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<CreatePartnerAppRequest, CreatePartnerAppResult>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: Update(api.UpdatePartnerAppRequest) returns (api.UpdatePartnerAppResult);
|
||||
* @generated from protobuf rpc: Update
|
||||
*/
|
||||
update(input: UpdatePartnerAppRequest, options?: RpcOptions): UnaryCall<UpdatePartnerAppRequest, UpdatePartnerAppResult> {
|
||||
const method = this.methods[1], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<UpdatePartnerAppRequest, UpdatePartnerAppResult>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: Delete(api.DeletePartnerAppRequest) returns (api.DeletePartnerAppResult);
|
||||
* @generated from protobuf rpc: Delete
|
||||
*/
|
||||
delete(input: DeletePartnerAppRequest, options?: RpcOptions): UnaryCall<DeletePartnerAppRequest, DeletePartnerAppResult> {
|
||||
const method = this.methods[2], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<DeletePartnerAppRequest, DeletePartnerAppResult>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: Get(api.GetPartnerAppRequest) returns (api.GetPartnerAppResult);
|
||||
* @generated from protobuf rpc: Get
|
||||
*/
|
||||
get(input: GetPartnerAppRequest, options?: RpcOptions): UnaryCall<GetPartnerAppRequest, GetPartnerAppResult> {
|
||||
const method = this.methods[3], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<GetPartnerAppRequest, GetPartnerAppResult>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: List(api.ListPartnerAppsRequest) returns (api.ListPartnerAppsResult);
|
||||
* @generated from protobuf rpc: List
|
||||
*/
|
||||
list(input: ListPartnerAppsRequest, options?: RpcOptions): UnaryCall<ListPartnerAppsRequest, ListPartnerAppsResult> {
|
||||
const method = this.methods[4], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<ListPartnerAppsRequest, ListPartnerAppsResult>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: DeletePartnerAppInDB(api.DeletePartnerAppInDBRequest) returns (api.DeletePartnerAppInDBResult);
|
||||
* @generated from protobuf rpc: DeletePartnerAppInDB
|
||||
*/
|
||||
deletePartnerAppInDB(input: DeletePartnerAppInDBRequest, options?: RpcOptions): UnaryCall<DeletePartnerAppInDBRequest, DeletePartnerAppInDBResult> {
|
||||
const method = this.methods[5], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<DeletePartnerAppInDBRequest, DeletePartnerAppInDBResult>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: Renew(api.RenewPartnerAppRequest) returns (api.RenewPartnerAppResult);
|
||||
* @generated from protobuf rpc: Renew
|
||||
*/
|
||||
renew(input: RenewPartnerAppRequest, options?: RpcOptions): UnaryCall<RenewPartnerAppRequest, RenewPartnerAppResult> {
|
||||
const method = this.methods[6], opt = this._transport.mergeOptions(options);
|
||||
|
||||
Reference in New Issue
Block a user