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 "user-attributes.proto" (package "api", syntax proto3)
|
||||
// tslint:disable
|
||||
import type { RpcTransport } from "@protobuf-ts/runtime-rpc";
|
||||
@@ -22,23 +22,23 @@ import type { RpcOptions } from "@protobuf-ts/runtime-rpc";
|
||||
*/
|
||||
export interface IUserAttributesServiceClient {
|
||||
/**
|
||||
* @generated from protobuf rpc: Get(api.GetUserAttributesRequest) returns (api.GetUserAttributesResult);
|
||||
* @generated from protobuf rpc: Get
|
||||
*/
|
||||
get(input: GetUserAttributesRequest, options?: RpcOptions): UnaryCall<GetUserAttributesRequest, GetUserAttributesResult>;
|
||||
/**
|
||||
* @generated from protobuf rpc: Put(api.PutUserAttributesRequest) returns (api.PutUserAttributesResult);
|
||||
* @generated from protobuf rpc: Put
|
||||
*/
|
||||
put(input: PutUserAttributesRequest, options?: RpcOptions): UnaryCall<PutUserAttributesRequest, PutUserAttributesResult>;
|
||||
/**
|
||||
* @generated from protobuf rpc: Delete(api.DeleteUserAttributesRequest) returns (api.DeleteUserAttributesResult);
|
||||
* @generated from protobuf rpc: Delete
|
||||
*/
|
||||
delete(input: DeleteUserAttributesRequest, options?: RpcOptions): UnaryCall<DeleteUserAttributesRequest, DeleteUserAttributesResult>;
|
||||
/**
|
||||
* @generated from protobuf rpc: List(api.ListUserAttributesRequest) returns (api.ListUserAttributesResult);
|
||||
* @generated from protobuf rpc: List
|
||||
*/
|
||||
list(input: ListUserAttributesRequest, options?: RpcOptions): UnaryCall<ListUserAttributesRequest, ListUserAttributesResult>;
|
||||
/**
|
||||
* @generated from protobuf rpc: DeleteForProject(api.DeleteForProjectUserAttributesRequest) returns (api.DeleteForProjectUserAttributesResult);
|
||||
* @generated from protobuf rpc: DeleteForProject
|
||||
*/
|
||||
deleteForProject(input: DeleteForProjectUserAttributesRequest, options?: RpcOptions): UnaryCall<DeleteForProjectUserAttributesRequest, DeleteForProjectUserAttributesResult>;
|
||||
}
|
||||
@@ -52,35 +52,35 @@ export class UserAttributesServiceClient implements IUserAttributesServiceClient
|
||||
constructor(private readonly _transport: RpcTransport) {
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: Get(api.GetUserAttributesRequest) returns (api.GetUserAttributesResult);
|
||||
* @generated from protobuf rpc: Get
|
||||
*/
|
||||
get(input: GetUserAttributesRequest, options?: RpcOptions): UnaryCall<GetUserAttributesRequest, GetUserAttributesResult> {
|
||||
const method = this.methods[0], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<GetUserAttributesRequest, GetUserAttributesResult>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: Put(api.PutUserAttributesRequest) returns (api.PutUserAttributesResult);
|
||||
* @generated from protobuf rpc: Put
|
||||
*/
|
||||
put(input: PutUserAttributesRequest, options?: RpcOptions): UnaryCall<PutUserAttributesRequest, PutUserAttributesResult> {
|
||||
const method = this.methods[1], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<PutUserAttributesRequest, PutUserAttributesResult>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: Delete(api.DeleteUserAttributesRequest) returns (api.DeleteUserAttributesResult);
|
||||
* @generated from protobuf rpc: Delete
|
||||
*/
|
||||
delete(input: DeleteUserAttributesRequest, options?: RpcOptions): UnaryCall<DeleteUserAttributesRequest, DeleteUserAttributesResult> {
|
||||
const method = this.methods[2], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<DeleteUserAttributesRequest, DeleteUserAttributesResult>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: List(api.ListUserAttributesRequest) returns (api.ListUserAttributesResult);
|
||||
* @generated from protobuf rpc: List
|
||||
*/
|
||||
list(input: ListUserAttributesRequest, options?: RpcOptions): UnaryCall<ListUserAttributesRequest, ListUserAttributesResult> {
|
||||
const method = this.methods[3], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<ListUserAttributesRequest, ListUserAttributesResult>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: DeleteForProject(api.DeleteForProjectUserAttributesRequest) returns (api.DeleteForProjectUserAttributesResult);
|
||||
* @generated from protobuf rpc: DeleteForProject
|
||||
*/
|
||||
deleteForProject(input: DeleteForProjectUserAttributesRequest, options?: RpcOptions): UnaryCall<DeleteForProjectUserAttributesRequest, DeleteForProjectUserAttributesResult> {
|
||||
const method = this.methods[4], opt = this._transport.mergeOptions(options);
|
||||
|
||||
Reference in New Issue
Block a user