You've already forked npm-core-sdk
Latest generation
This commit is contained in:
@@ -56,6 +56,10 @@ export interface NotifNotifyByMailPayload {
|
||||
* @generated from protobuf field: string Tags = 8
|
||||
*/
|
||||
Tags: string;
|
||||
/**
|
||||
* @generated from protobuf field: bool GroupSending = 9
|
||||
*/
|
||||
GroupSending: boolean;
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf message api.NotifNotifyByMail
|
||||
@@ -158,7 +162,8 @@ class NotifNotifyByMailPayload$Type extends MessageType<NotifNotifyByMailPayload
|
||||
{ no: 5, name: "EntityDomain", kind: "scalar", localName: "EntityDomain", jsonName: "EntityDomain", T: 9 /*ScalarType.STRING*/ },
|
||||
{ no: 6, name: "EntityType", kind: "scalar", localName: "EntityType", jsonName: "EntityType", T: 9 /*ScalarType.STRING*/ },
|
||||
{ no: 7, name: "EntityRefID", kind: "scalar", localName: "EntityRefID", jsonName: "EntityRefID", T: 9 /*ScalarType.STRING*/ },
|
||||
{ no: 8, name: "Tags", kind: "scalar", localName: "Tags", jsonName: "Tags", T: 9 /*ScalarType.STRING*/ }
|
||||
{ no: 8, name: "Tags", kind: "scalar", localName: "Tags", jsonName: "Tags", T: 9 /*ScalarType.STRING*/ },
|
||||
{ no: 9, name: "GroupSending", kind: "scalar", localName: "GroupSending", jsonName: "GroupSending", T: 8 /*ScalarType.BOOL*/ }
|
||||
], { "api.messageType": "Command", "api.payload": true, "api.action": "NotifyByMail" });
|
||||
}
|
||||
create(value?: PartialMessage<NotifNotifyByMailPayload>): NotifNotifyByMailPayload {
|
||||
@@ -171,6 +176,7 @@ class NotifNotifyByMailPayload$Type extends MessageType<NotifNotifyByMailPayload
|
||||
message.EntityType = "";
|
||||
message.EntityRefID = "";
|
||||
message.Tags = "";
|
||||
message.GroupSending = false;
|
||||
if (value !== undefined)
|
||||
reflectionMergePartial<NotifNotifyByMailPayload>(this, message, value);
|
||||
return message;
|
||||
@@ -204,6 +210,9 @@ class NotifNotifyByMailPayload$Type extends MessageType<NotifNotifyByMailPayload
|
||||
case /* string Tags */ 8:
|
||||
message.Tags = reader.string();
|
||||
break;
|
||||
case /* bool GroupSending */ 9:
|
||||
message.GroupSending = reader.bool();
|
||||
break;
|
||||
default:
|
||||
let u = options.readUnknownField;
|
||||
if (u === "throw")
|
||||
@@ -240,6 +249,9 @@ class NotifNotifyByMailPayload$Type extends MessageType<NotifNotifyByMailPayload
|
||||
/* string Tags = 8; */
|
||||
if (message.Tags !== "")
|
||||
writer.tag(8, WireType.LengthDelimited).string(message.Tags);
|
||||
/* bool GroupSending = 9; */
|
||||
if (message.GroupSending !== false)
|
||||
writer.tag(9, WireType.Varint).bool(message.GroupSending);
|
||||
let u = options.writeUnknownFields;
|
||||
if (u !== false)
|
||||
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|
||||
|
||||
@@ -69,6 +69,12 @@ export interface NotifCreatedPayload {
|
||||
* @generated from protobuf field: string Tags = 8
|
||||
*/
|
||||
Tags: string;
|
||||
/**
|
||||
* List of contacts mail
|
||||
*
|
||||
* @generated from protobuf field: repeated string ContactMails = 9
|
||||
*/
|
||||
ContactMails: string[];
|
||||
}
|
||||
/**
|
||||
* Event message
|
||||
@@ -238,7 +244,8 @@ class NotifCreatedPayload$Type extends MessageType<NotifCreatedPayload> {
|
||||
{ no: 5, name: "EntityDomain", kind: "scalar", localName: "EntityDomain", jsonName: "EntityDomain", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Entity domain" }, "validate.rules": { string: { in: ["trade", "collab"] } } } },
|
||||
{ no: 6, name: "EntityType", kind: "scalar", localName: "EntityType", jsonName: "EntityType", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Type of entity" }, "validate.rules": { string: { minLen: "1" } } } },
|
||||
{ no: 7, name: "EntityRefID", kind: "scalar", localName: "EntityRefID", jsonName: "EntityRefID", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "ID of entity" }, "validate.rules": { string: { minLen: "1" } } } },
|
||||
{ no: 8, name: "Tags", kind: "scalar", localName: "Tags", jsonName: "Tags", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Tags" } } }
|
||||
{ no: 8, name: "Tags", kind: "scalar", localName: "Tags", jsonName: "Tags", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Tags" } } },
|
||||
{ no: 9, name: "ContactMails", kind: "scalar", localName: "ContactMails", jsonName: "ContactMails", repeat: 2 /*RepeatType.UNPACKED*/, T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Mail of the contact to notify" }, "validate.rules": { repeated: { items: { string: { pattern: "^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$" } } } } } }
|
||||
], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: { required: ["NotificationType", "IssuerID", "Contacts", "EntityDomain", "EntityType", "EntityRefID"] } }, "api.messageType": "Event", "api.payload": true, "api.inputEvent": "Created" });
|
||||
}
|
||||
create(value?: PartialMessage<NotifCreatedPayload>): NotifCreatedPayload {
|
||||
@@ -251,6 +258,7 @@ class NotifCreatedPayload$Type extends MessageType<NotifCreatedPayload> {
|
||||
message.EntityType = "";
|
||||
message.EntityRefID = "";
|
||||
message.Tags = "";
|
||||
message.ContactMails = [];
|
||||
if (value !== undefined)
|
||||
reflectionMergePartial<NotifCreatedPayload>(this, message, value);
|
||||
return message;
|
||||
@@ -284,6 +292,9 @@ class NotifCreatedPayload$Type extends MessageType<NotifCreatedPayload> {
|
||||
case /* string Tags */ 8:
|
||||
message.Tags = reader.string();
|
||||
break;
|
||||
case /* repeated string ContactMails */ 9:
|
||||
message.ContactMails.push(reader.string());
|
||||
break;
|
||||
default:
|
||||
let u = options.readUnknownField;
|
||||
if (u === "throw")
|
||||
@@ -320,6 +331,9 @@ class NotifCreatedPayload$Type extends MessageType<NotifCreatedPayload> {
|
||||
/* string Tags = 8; */
|
||||
if (message.Tags !== "")
|
||||
writer.tag(8, WireType.LengthDelimited).string(message.Tags);
|
||||
/* repeated string ContactMails = 9; */
|
||||
for (let i = 0; i < message.ContactMails.length; i++)
|
||||
writer.tag(9, WireType.LengthDelimited).string(message.ContactMails[i]);
|
||||
let u = options.writeUnknownFields;
|
||||
if (u !== false)
|
||||
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@reflex-platform/npm-core-sdk",
|
||||
"version": "1.12.0-SNAPSHOT-251121102417",
|
||||
"version": "1.12.0-SNAPSHOT-251121141259",
|
||||
"description": "npm libs from core model proto files",
|
||||
"homepage": "",
|
||||
"main": "index.ts",
|
||||
|
||||
@@ -33,6 +33,7 @@ import type { ListUserOrganisationRolesResult } from "./user";
|
||||
import type { ListUserOrganisationRolesRequest } from "./user";
|
||||
import type { ListUserPlatformRolesResult } from "./user";
|
||||
import type { ListUserPlatformRolesRequest } from "./user";
|
||||
import type { GetProjectUserByMailRequest } from "./user";
|
||||
import type { GetProjectUserResult } from "./user";
|
||||
import type { GetProjectUserRequest } from "./user";
|
||||
import type { GetOrganisationUserResult } from "./user";
|
||||
@@ -227,6 +228,10 @@ export interface IUserServiceClient {
|
||||
* @generated from protobuf rpc: GetProjectUser
|
||||
*/
|
||||
getProjectUser(input: GetProjectUserRequest, options?: RpcOptions): UnaryCall<GetProjectUserRequest, GetProjectUserResult>;
|
||||
/**
|
||||
* @generated from protobuf rpc: GetProjectUserByMail
|
||||
*/
|
||||
getProjectUserByMail(input: GetProjectUserByMailRequest, options?: RpcOptions): UnaryCall<GetProjectUserByMailRequest, GetProjectUserResult>;
|
||||
/**
|
||||
* @generated from protobuf rpc: ListPlatformRoles
|
||||
*/
|
||||
@@ -535,109 +540,116 @@ export class UserServiceClient implements IUserServiceClient, ServiceInfo {
|
||||
const method = this.methods[33], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<GetProjectUserRequest, GetProjectUserResult>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: GetProjectUserByMail
|
||||
*/
|
||||
getProjectUserByMail(input: GetProjectUserByMailRequest, options?: RpcOptions): UnaryCall<GetProjectUserByMailRequest, GetProjectUserResult> {
|
||||
const method = this.methods[34], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<GetProjectUserByMailRequest, GetProjectUserResult>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: ListPlatformRoles
|
||||
*/
|
||||
listPlatformRoles(input: ListUserPlatformRolesRequest, options?: RpcOptions): UnaryCall<ListUserPlatformRolesRequest, ListUserPlatformRolesResult> {
|
||||
const method = this.methods[34], opt = this._transport.mergeOptions(options);
|
||||
const method = this.methods[35], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<ListUserPlatformRolesRequest, ListUserPlatformRolesResult>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: ListOrganisationRoles
|
||||
*/
|
||||
listOrganisationRoles(input: ListUserOrganisationRolesRequest, options?: RpcOptions): UnaryCall<ListUserOrganisationRolesRequest, ListUserOrganisationRolesResult> {
|
||||
const method = this.methods[35], opt = this._transport.mergeOptions(options);
|
||||
const method = this.methods[36], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<ListUserOrganisationRolesRequest, ListUserOrganisationRolesResult>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: ListProjectRoles
|
||||
*/
|
||||
listProjectRoles(input: ListUserProjectRolesRequest, options?: RpcOptions): UnaryCall<ListUserProjectRolesRequest, ListUserProjectRolesResult> {
|
||||
const method = this.methods[36], opt = this._transport.mergeOptions(options);
|
||||
const method = this.methods[37], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<ListUserProjectRolesRequest, ListUserProjectRolesResult>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: ListPartnerAppRoles
|
||||
*/
|
||||
listPartnerAppRoles(input: ListUserPartnerAppRolesRequest, options?: RpcOptions): UnaryCall<ListUserPartnerAppRolesRequest, ListUserPartnerAppRolesResult> {
|
||||
const method = this.methods[37], opt = this._transport.mergeOptions(options);
|
||||
const method = this.methods[38], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<ListUserPartnerAppRolesRequest, ListUserPartnerAppRolesResult>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: ListConnectionRoles
|
||||
*/
|
||||
listConnectionRoles(input: ListUserConnectionRolesRequest, options?: RpcOptions): UnaryCall<ListUserConnectionRolesRequest, ListUserConnectionRolesResult> {
|
||||
const method = this.methods[38], opt = this._transport.mergeOptions(options);
|
||||
const method = this.methods[39], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<ListUserConnectionRolesRequest, ListUserConnectionRolesResult>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: ListAttachmentTypeRoles
|
||||
*/
|
||||
listAttachmentTypeRoles(input: ListUserAttachmentTypeRolesRequest, options?: RpcOptions): UnaryCall<ListUserAttachmentTypeRolesRequest, ListUserAttachmentTypeRolesResult> {
|
||||
const method = this.methods[39], opt = this._transport.mergeOptions(options);
|
||||
const method = this.methods[40], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<ListUserAttachmentTypeRolesRequest, ListUserAttachmentTypeRolesResult>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: SetPlatformRoles
|
||||
*/
|
||||
setPlatformRoles(input: SetUserPlatformRolesRequest, options?: RpcOptions): UnaryCall<SetUserPlatformRolesRequest, SetUserPlatformRolesResult> {
|
||||
const method = this.methods[40], opt = this._transport.mergeOptions(options);
|
||||
const method = this.methods[41], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<SetUserPlatformRolesRequest, SetUserPlatformRolesResult>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: SetOrganisationRoles
|
||||
*/
|
||||
setOrganisationRoles(input: SetUserOrganisationRolesRequest, options?: RpcOptions): UnaryCall<SetUserOrganisationRolesRequest, SetUserOrganisationRolesResult> {
|
||||
const method = this.methods[41], opt = this._transport.mergeOptions(options);
|
||||
const method = this.methods[42], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<SetUserOrganisationRolesRequest, SetUserOrganisationRolesResult>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: SetProjectRoles
|
||||
*/
|
||||
setProjectRoles(input: SetUserProjectRolesRequest, options?: RpcOptions): UnaryCall<SetUserProjectRolesRequest, SetUserProjectRolesResult> {
|
||||
const method = this.methods[42], opt = this._transport.mergeOptions(options);
|
||||
const method = this.methods[43], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<SetUserProjectRolesRequest, SetUserProjectRolesResult>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: SetPartnerAppRoles
|
||||
*/
|
||||
setPartnerAppRoles(input: SetUserPartnerAppRolesRequest, options?: RpcOptions): UnaryCall<SetUserPartnerAppRolesRequest, SetUserPartnerAppRolesResult> {
|
||||
const method = this.methods[43], opt = this._transport.mergeOptions(options);
|
||||
const method = this.methods[44], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<SetUserPartnerAppRolesRequest, SetUserPartnerAppRolesResult>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: SetConnectionRoles
|
||||
*/
|
||||
setConnectionRoles(input: SetUserConnectionRolesRequest, options?: RpcOptions): UnaryCall<SetUserConnectionRolesRequest, SetUserConnectionRolesResult> {
|
||||
const method = this.methods[44], opt = this._transport.mergeOptions(options);
|
||||
const method = this.methods[45], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<SetUserConnectionRolesRequest, SetUserConnectionRolesResult>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: SetAttachmentTypeRoles
|
||||
*/
|
||||
setAttachmentTypeRoles(input: SetUserAttachmentTypeRolesRequest, options?: RpcOptions): UnaryCall<SetUserAttachmentTypeRolesRequest, SetUserAttachmentTypeRolesResult> {
|
||||
const method = this.methods[45], opt = this._transport.mergeOptions(options);
|
||||
const method = this.methods[46], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<SetUserAttachmentTypeRolesRequest, SetUserAttachmentTypeRolesResult>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: ForceTwoFA
|
||||
*/
|
||||
forceTwoFA(input: ForceTwoFAOrganisationRequest, options?: RpcOptions): UnaryCall<ForceTwoFAOrganisationRequest, ForceTwoFAResult> {
|
||||
const method = this.methods[46], opt = this._transport.mergeOptions(options);
|
||||
const method = this.methods[47], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<ForceTwoFAOrganisationRequest, ForceTwoFAResult>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: ForceProjectUserTwoFA
|
||||
*/
|
||||
forceProjectUserTwoFA(input: ForceProjectUserTwoFARequest, options?: RpcOptions): UnaryCall<ForceProjectUserTwoFARequest, ForceTwoFAResult> {
|
||||
const method = this.methods[47], opt = this._transport.mergeOptions(options);
|
||||
const method = this.methods[48], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<ForceProjectUserTwoFARequest, ForceTwoFAResult>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: UpdatePlatformTwoFA
|
||||
*/
|
||||
updatePlatformTwoFA(input: UpdateTwoFAPlatformRequest, options?: RpcOptions): UnaryCall<UpdateTwoFAPlatformRequest, UpdateTwoFAPlatformResult> {
|
||||
const method = this.methods[48], opt = this._transport.mergeOptions(options);
|
||||
const method = this.methods[49], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<UpdateTwoFAPlatformRequest, UpdateTwoFAPlatformResult>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
}
|
||||
|
||||
69
user.ts
69
user.ts
@@ -377,6 +377,19 @@ export interface GetProjectUserRequest {
|
||||
*/
|
||||
UserID: string;
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf message api.GetProjectUserByMailRequest
|
||||
*/
|
||||
export interface GetProjectUserByMailRequest {
|
||||
/**
|
||||
* @generated from protobuf field: string ProjectID = 1
|
||||
*/
|
||||
ProjectID: string;
|
||||
/**
|
||||
* @generated from protobuf field: string UserMail = 2
|
||||
*/
|
||||
UserMail: string;
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf message api.ListUserPlatformRolesRequest
|
||||
*/
|
||||
@@ -2519,6 +2532,61 @@ class GetProjectUserRequest$Type extends MessageType<GetProjectUserRequest> {
|
||||
*/
|
||||
export const GetProjectUserRequest = new GetProjectUserRequest$Type();
|
||||
// @generated message type with reflection information, may provide speed optimized methods
|
||||
class GetProjectUserByMailRequest$Type extends MessageType<GetProjectUserByMailRequest> {
|
||||
constructor() {
|
||||
super("api.GetProjectUserByMailRequest", [
|
||||
{ no: 1, name: "ProjectID", kind: "scalar", localName: "ProjectID", jsonName: "ProjectID", T: 9 /*ScalarType.STRING*/, options: { "validate.rules": { string: { minLen: "1" } } } },
|
||||
{ no: 2, name: "UserMail", kind: "scalar", localName: "UserMail", jsonName: "UserMail", T: 9 /*ScalarType.STRING*/, options: { "validate.rules": { string: { minLen: "1" } } } }
|
||||
], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: { required: ["Header", "UserID"] } } });
|
||||
}
|
||||
create(value?: PartialMessage<GetProjectUserByMailRequest>): GetProjectUserByMailRequest {
|
||||
const message = globalThis.Object.create((this.messagePrototype!));
|
||||
message.ProjectID = "";
|
||||
message.UserMail = "";
|
||||
if (value !== undefined)
|
||||
reflectionMergePartial<GetProjectUserByMailRequest>(this, message, value);
|
||||
return message;
|
||||
}
|
||||
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: GetProjectUserByMailRequest): GetProjectUserByMailRequest {
|
||||
let message = target ?? this.create(), end = reader.pos + length;
|
||||
while (reader.pos < end) {
|
||||
let [fieldNo, wireType] = reader.tag();
|
||||
switch (fieldNo) {
|
||||
case /* string ProjectID */ 1:
|
||||
message.ProjectID = reader.string();
|
||||
break;
|
||||
case /* string UserMail */ 2:
|
||||
message.UserMail = reader.string();
|
||||
break;
|
||||
default:
|
||||
let u = options.readUnknownField;
|
||||
if (u === "throw")
|
||||
throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);
|
||||
let d = reader.skip(wireType);
|
||||
if (u !== false)
|
||||
(u === true ? UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);
|
||||
}
|
||||
}
|
||||
return message;
|
||||
}
|
||||
internalBinaryWrite(message: GetProjectUserByMailRequest, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter {
|
||||
/* string ProjectID = 1; */
|
||||
if (message.ProjectID !== "")
|
||||
writer.tag(1, WireType.LengthDelimited).string(message.ProjectID);
|
||||
/* string UserMail = 2; */
|
||||
if (message.UserMail !== "")
|
||||
writer.tag(2, WireType.LengthDelimited).string(message.UserMail);
|
||||
let u = options.writeUnknownFields;
|
||||
if (u !== false)
|
||||
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|
||||
return writer;
|
||||
}
|
||||
}
|
||||
/**
|
||||
* @generated MessageType for protobuf message api.GetProjectUserByMailRequest
|
||||
*/
|
||||
export const GetProjectUserByMailRequest = new GetProjectUserByMailRequest$Type();
|
||||
// @generated message type with reflection information, may provide speed optimized methods
|
||||
class ListUserPlatformRolesRequest$Type extends MessageType<ListUserPlatformRolesRequest> {
|
||||
constructor() {
|
||||
super("api.ListUserPlatformRolesRequest", [
|
||||
@@ -5683,6 +5751,7 @@ export const UserService = new ServiceType("api.UserService", [
|
||||
{ name: "GetPlatformUser", options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation": { tags: ["Admin User"], description: "Get user details. The user must have at least a platform role." }, "api.rscType": "Platform", "api.roles": "Platform.User", "google.api.method_visibility": { restriction: "SDK" } }, I: GetPlatformUserRequest, O: GetPlatformUserResult },
|
||||
{ name: "GetOrganisationUser", options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation": { tags: ["Admin User"], description: "Get user details. The user must have at least an organisation role." }, "api.rscType": "Organisation", "api.roles": "", "google.api.method_visibility": { restriction: "SDK" } }, I: GetOrganisationUserRequest, O: GetOrganisationUserResult },
|
||||
{ name: "GetProjectUser", options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation": { tags: ["Admin User"], description: "Get user details. The user must have at least a project role." }, "api.rscType": "Project", "api.roles": "", "google.api.method_visibility": { restriction: "SDK" } }, I: GetProjectUserRequest, O: GetProjectUserResult },
|
||||
{ name: "GetProjectUserByMail", options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation": { tags: ["Admin User"], description: "Get user details." }, "api.rscType": "Platform", "api.roles": "Platform.Project-User", "google.api.method_visibility": { restriction: "INTERNAL" } }, I: GetProjectUserByMailRequest, O: GetProjectUserResult },
|
||||
{ name: "ListPlatformRoles", options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation": { tags: ["Admin User"], description: "List Platform Roles of a user" }, "api.rscType": "Platform", "api.roles": "Platform.Platform-User", "google.api.method_visibility": { restriction: "SDK" } }, I: ListUserPlatformRolesRequest, O: ListUserPlatformRolesResult },
|
||||
{ name: "ListOrganisationRoles", options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation": { tags: ["Admin User"], description: "List Organisation Roles of a user" }, "api.rscType": "Organisation", "api.roles": "", "google.api.method_visibility": { restriction: "SDK" } }, I: ListUserOrganisationRolesRequest, O: ListUserOrganisationRolesResult },
|
||||
{ name: "ListProjectRoles", options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation": { tags: ["Admin User"], description: "List Project Roles of a user" }, "api.rscType": "Project", "api.roles": "Platform.Project-Role", "google.api.method_visibility": { restriction: "SDK" } }, I: ListUserProjectRolesRequest, O: ListUserProjectRolesResult },
|
||||
|
||||
Reference in New Issue
Block a user