You've already forked npm-core-sdk
Latest generation
This commit is contained in:
68
org.ts
68
org.ts
@@ -50,7 +50,7 @@ export interface Organisation {
|
||||
export interface DeleteOrganisationRequest {
|
||||
// RequestOrganisationHeader Header = 2
|
||||
// [
|
||||
// (validate.rules).message.required = true
|
||||
// (n1validate.rules).message.required = true
|
||||
// ];
|
||||
|
||||
/**
|
||||
@@ -90,7 +90,7 @@ export interface UpdateOrganisationRequest {
|
||||
Header?: RequestOrganisationHeader;
|
||||
// Organisation Organisation = 1
|
||||
// [
|
||||
// (validate.rules).message.required = true
|
||||
// (n1validate.rules).message.required = true
|
||||
// ];
|
||||
|
||||
/**
|
||||
@@ -206,7 +206,7 @@ export interface UpdateOrganisationStatusResult {
|
||||
export interface StartStreamingJobsRequest {
|
||||
// RequestOrganisationHeader Header = 1
|
||||
// [
|
||||
// (validate.rules).message.required = true
|
||||
// (n1validate.rules).message.required = true
|
||||
// ];
|
||||
|
||||
/**
|
||||
@@ -220,7 +220,7 @@ export interface StartStreamingJobsRequest {
|
||||
export interface StopStreamingJobsRequest {
|
||||
// RequestOrganisationHeader Header = 1
|
||||
// [
|
||||
// (validate.rules).message.required = true
|
||||
// (n1validate.rules).message.required = true
|
||||
// ];
|
||||
|
||||
/**
|
||||
@@ -392,7 +392,7 @@ export interface StopStreamingMetricsJobResult {
|
||||
export interface CheckStreamingStatusRequest {
|
||||
// RequestOrganisationHeader Header = 3
|
||||
// [
|
||||
// (validate.rules).message.required = true
|
||||
// (n1validate.rules).message.required = true
|
||||
// ];
|
||||
|
||||
/**
|
||||
@@ -524,12 +524,12 @@ export enum StatusEnum {
|
||||
class Organisation$Type extends MessageType<Organisation> {
|
||||
constructor() {
|
||||
super("api.Organisation", [
|
||||
{ no: 1, name: "ID", kind: "scalar", localName: "ID", jsonName: "ID", T: 9 /*ScalarType.STRING*/, options: { "validate.rules": { string: { minLen: "1", pattern: "^[a-z0-9]+(?:-[a-z0-9]+)*$" } }, "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { pattern: "^[a-z0-9]+(?:-[a-z0-9]+)*$" } } },
|
||||
{ no: 2, name: "Name", kind: "scalar", localName: "Name", jsonName: "Name", T: 9 /*ScalarType.STRING*/, options: { "validate.rules": { string: { minLen: "1" } } } },
|
||||
{ no: 1, name: "ID", kind: "scalar", localName: "ID", jsonName: "ID", T: 9 /*ScalarType.STRING*/, options: { "n1validate.rules": { string: { minLen: "1", pattern: "^[a-z0-9]+(?:-[a-z0-9]+)*$" } }, "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { pattern: "^[a-z0-9]+(?:-[a-z0-9]+)*$" } } },
|
||||
{ no: 2, name: "Name", kind: "scalar", localName: "Name", jsonName: "Name", T: 9 /*ScalarType.STRING*/, options: { "n1validate.rules": { string: { minLen: "1" } } } },
|
||||
{ no: 3, name: "IDPs", kind: "message", localName: "IDPs", jsonName: "IDPs", repeat: 2 /*RepeatType.UNPACKED*/, T: () => IDP },
|
||||
{ no: 4, name: "status", kind: "enum", T: () => ["api.StatusEnum", StatusEnum], options: { "validate.rules": { enum: { definedOnly: true } } } },
|
||||
{ no: 4, name: "status", kind: "enum", T: () => ["api.StatusEnum", StatusEnum], options: { "n1validate.rules": { enum: { definedOnly: true } } } },
|
||||
{ no: 5, name: "Modules", kind: "message", localName: "Modules", jsonName: "Modules", repeat: 2 /*RepeatType.UNPACKED*/, T: () => Module },
|
||||
{ no: 6, name: "DefaultLanguageISO6391", kind: "scalar", localName: "DefaultLanguageISO6391", jsonName: "DefaultLanguageISO6391", T: 9 /*ScalarType.STRING*/, options: { "validate.rules": { string: { minLen: "2", maxLen: "3", languageIso639: true } }, "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "<a href='https://en.wikipedia.org/wiki/List_of_ISO_639_language_codes'>ISO 639 code</a> message language", example: "\"en\"" } } }
|
||||
{ no: 6, name: "DefaultLanguageISO6391", kind: "scalar", localName: "DefaultLanguageISO6391", jsonName: "DefaultLanguageISO6391", T: 9 /*ScalarType.STRING*/, options: { "n1validate.rules": { string: { minLen: "2", maxLen: "3", languageIso639: true } }, "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "<a href='https://en.wikipedia.org/wiki/List_of_ISO_639_language_codes'>ISO 639 code</a> message language", example: "\"en\"" } } }
|
||||
]);
|
||||
}
|
||||
create(value?: PartialMessage<Organisation>): Organisation {
|
||||
@@ -611,7 +611,7 @@ export const Organisation = new Organisation$Type();
|
||||
class DeleteOrganisationRequest$Type extends MessageType<DeleteOrganisationRequest> {
|
||||
constructor() {
|
||||
super("api.DeleteOrganisationRequest", [
|
||||
{ no: 1, name: "ID", kind: "scalar", localName: "ID", jsonName: "ID", T: 9 /*ScalarType.STRING*/, options: { "validate.rules": { string: { minLen: "1" } } } }
|
||||
{ no: 1, name: "ID", kind: "scalar", localName: "ID", jsonName: "ID", T: 9 /*ScalarType.STRING*/, options: { "n1validate.rules": { string: { minLen: "1" } } } }
|
||||
]);
|
||||
}
|
||||
create(value?: PartialMessage<DeleteOrganisationRequest>): DeleteOrganisationRequest {
|
||||
@@ -658,7 +658,7 @@ export const DeleteOrganisationRequest = new DeleteOrganisationRequest$Type();
|
||||
class GetOrganisationRequest$Type extends MessageType<GetOrganisationRequest> {
|
||||
constructor() {
|
||||
super("api.GetOrganisationRequest", [
|
||||
{ no: 2, name: "Header", kind: "message", localName: "Header", jsonName: "Header", T: () => RequestOrganisationHeader, options: { "validate.rules": { message: { required: true } } } }
|
||||
{ no: 2, name: "Header", kind: "message", localName: "Header", jsonName: "Header", T: () => RequestOrganisationHeader, options: { "n1validate.rules": { message: { required: true } } } }
|
||||
]);
|
||||
}
|
||||
create(value?: PartialMessage<GetOrganisationRequest>): GetOrganisationRequest {
|
||||
@@ -704,8 +704,8 @@ export const GetOrganisationRequest = new GetOrganisationRequest$Type();
|
||||
class CreateOrganisationRequest$Type extends MessageType<CreateOrganisationRequest> {
|
||||
constructor() {
|
||||
super("api.CreateOrganisationRequest", [
|
||||
{ no: 1, name: "Organisation", kind: "message", localName: "Organisation", jsonName: "Organisation", T: () => Organisation, options: { "validate.rules": { message: { required: true } } } },
|
||||
{ no: 2, name: "ManagerMail", kind: "scalar", localName: "ManagerMail", jsonName: "ManagerMail", T: 9 /*ScalarType.STRING*/, options: { "validate.rules": { string: { email: true } } } }
|
||||
{ no: 1, name: "Organisation", kind: "message", localName: "Organisation", jsonName: "Organisation", T: () => Organisation, options: { "n1validate.rules": { message: { required: true } } } },
|
||||
{ no: 2, name: "ManagerMail", kind: "scalar", localName: "ManagerMail", jsonName: "ManagerMail", T: 9 /*ScalarType.STRING*/, options: { "n1validate.rules": { string: { email: true } } } }
|
||||
]);
|
||||
}
|
||||
create(value?: PartialMessage<CreateOrganisationRequest>): CreateOrganisationRequest {
|
||||
@@ -758,9 +758,9 @@ export const CreateOrganisationRequest = new CreateOrganisationRequest$Type();
|
||||
class UpdateOrganisationRequest$Type extends MessageType<UpdateOrganisationRequest> {
|
||||
constructor() {
|
||||
super("api.UpdateOrganisationRequest", [
|
||||
{ no: 2, name: "Header", kind: "message", localName: "Header", jsonName: "Header", T: () => RequestOrganisationHeader, options: { "validate.rules": { message: { required: true } } } },
|
||||
{ no: 3, name: "Name", kind: "scalar", localName: "Name", jsonName: "Name", T: 9 /*ScalarType.STRING*/, options: { "validate.rules": { string: { minLen: "1", pattern: "^[a-zA-Z0-9]+(?:[- ][a-zA-Z0-9]+)*$" } }, "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { pattern: "^[a-zA-Z0-9]+(?:[- ][a-zA-Z0-9]+)*$" } } },
|
||||
{ no: 4, name: "DefaultLanguageISO6391", kind: "scalar", localName: "DefaultLanguageISO6391", jsonName: "DefaultLanguageISO6391", T: 9 /*ScalarType.STRING*/, options: { "validate.rules": { string: { minLen: "2", maxLen: "3", languageIso639: true } }, "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "<a href='https://en.wikipedia.org/wiki/List_of_ISO_639_language_codes'>ISO 639 code</a> message language", example: "\"en\"" } } }
|
||||
{ no: 2, name: "Header", kind: "message", localName: "Header", jsonName: "Header", T: () => RequestOrganisationHeader, options: { "n1validate.rules": { message: { required: true } } } },
|
||||
{ no: 3, name: "Name", kind: "scalar", localName: "Name", jsonName: "Name", T: 9 /*ScalarType.STRING*/, options: { "n1validate.rules": { string: { minLen: "1", pattern: "^[a-zA-Z0-9]+(?:[- ][a-zA-Z0-9]+)*$" } }, "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { pattern: "^[a-zA-Z0-9]+(?:[- ][a-zA-Z0-9]+)*$" } } },
|
||||
{ no: 4, name: "DefaultLanguageISO6391", kind: "scalar", localName: "DefaultLanguageISO6391", jsonName: "DefaultLanguageISO6391", T: 9 /*ScalarType.STRING*/, options: { "n1validate.rules": { string: { minLen: "2", maxLen: "3", languageIso639: true } }, "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "<a href='https://en.wikipedia.org/wiki/List_of_ISO_639_language_codes'>ISO 639 code</a> message language", example: "\"en\"" } } }
|
||||
]);
|
||||
}
|
||||
create(value?: PartialMessage<UpdateOrganisationRequest>): UpdateOrganisationRequest {
|
||||
@@ -820,7 +820,7 @@ export const UpdateOrganisationRequest = new UpdateOrganisationRequest$Type();
|
||||
class SetModulesOrganisationRequest$Type extends MessageType<SetModulesOrganisationRequest> {
|
||||
constructor() {
|
||||
super("api.SetModulesOrganisationRequest", [
|
||||
{ no: 1, name: "OrganisationID", kind: "scalar", localName: "OrganisationID", jsonName: "OrganisationID", T: 9 /*ScalarType.STRING*/, options: { "validate.rules": { string: { minLen: "1" } } } },
|
||||
{ no: 1, name: "OrganisationID", kind: "scalar", localName: "OrganisationID", jsonName: "OrganisationID", T: 9 /*ScalarType.STRING*/, options: { "n1validate.rules": { string: { minLen: "1" } } } },
|
||||
{ no: 2, name: "Modules", kind: "message", localName: "Modules", jsonName: "Modules", repeat: 2 /*RepeatType.UNPACKED*/, T: () => Module }
|
||||
], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: { required: ["OrganisationID"] } } });
|
||||
}
|
||||
@@ -875,8 +875,8 @@ export const SetModulesOrganisationRequest = new SetModulesOrganisationRequest$T
|
||||
class UpdateOrganisationStatusRequest$Type extends MessageType<UpdateOrganisationStatusRequest> {
|
||||
constructor() {
|
||||
super("api.UpdateOrganisationStatusRequest", [
|
||||
{ no: 1, name: "OrganisationID", kind: "scalar", localName: "OrganisationID", jsonName: "OrganisationID", T: 9 /*ScalarType.STRING*/, options: { "validate.rules": { string: { minLen: "1" } } } },
|
||||
{ no: 2, name: "status", kind: "enum", T: () => ["api.StatusEnum", StatusEnum], options: { "validate.rules": { enum: { definedOnly: true } } } }
|
||||
{ no: 1, name: "OrganisationID", kind: "scalar", localName: "OrganisationID", jsonName: "OrganisationID", T: 9 /*ScalarType.STRING*/, options: { "n1validate.rules": { string: { minLen: "1" } } } },
|
||||
{ no: 2, name: "status", kind: "enum", T: () => ["api.StatusEnum", StatusEnum], options: { "n1validate.rules": { enum: { definedOnly: true } } } }
|
||||
]);
|
||||
}
|
||||
create(value?: PartialMessage<UpdateOrganisationStatusRequest>): UpdateOrganisationStatusRequest {
|
||||
@@ -1299,7 +1299,7 @@ export const UpdateOrganisationStatusResult = new UpdateOrganisationStatusResult
|
||||
class StartStreamingJobsRequest$Type extends MessageType<StartStreamingJobsRequest> {
|
||||
constructor() {
|
||||
super("api.StartStreamingJobsRequest", [
|
||||
{ no: 2, name: "OrgID", kind: "scalar", localName: "OrgID", jsonName: "OrgID", T: 9 /*ScalarType.STRING*/, options: { "validate.rules": { string: { minLen: "1" } } } }
|
||||
{ no: 2, name: "OrgID", kind: "scalar", localName: "OrgID", jsonName: "OrgID", T: 9 /*ScalarType.STRING*/, options: { "n1validate.rules": { string: { minLen: "1" } } } }
|
||||
]);
|
||||
}
|
||||
create(value?: PartialMessage<StartStreamingJobsRequest>): StartStreamingJobsRequest {
|
||||
@@ -1346,7 +1346,7 @@ export const StartStreamingJobsRequest = new StartStreamingJobsRequest$Type();
|
||||
class StopStreamingJobsRequest$Type extends MessageType<StopStreamingJobsRequest> {
|
||||
constructor() {
|
||||
super("api.StopStreamingJobsRequest", [
|
||||
{ no: 2, name: "OrgID", kind: "scalar", localName: "OrgID", jsonName: "OrgID", T: 9 /*ScalarType.STRING*/, options: { "validate.rules": { string: { minLen: "1" } } } }
|
||||
{ no: 2, name: "OrgID", kind: "scalar", localName: "OrgID", jsonName: "OrgID", T: 9 /*ScalarType.STRING*/, options: { "n1validate.rules": { string: { minLen: "1" } } } }
|
||||
]);
|
||||
}
|
||||
create(value?: PartialMessage<StopStreamingJobsRequest>): StopStreamingJobsRequest {
|
||||
@@ -1393,10 +1393,10 @@ export const StopStreamingJobsRequest = new StopStreamingJobsRequest$Type();
|
||||
class StartIndividualStreamingJobRequest$Type extends MessageType<StartIndividualStreamingJobRequest> {
|
||||
constructor() {
|
||||
super("api.StartIndividualStreamingJobRequest", [
|
||||
{ no: 1, name: "OrgID", kind: "scalar", localName: "OrgID", jsonName: "OrgID", T: 9 /*ScalarType.STRING*/, options: { "validate.rules": { string: { minLen: "1" } } } },
|
||||
{ no: 5, name: "Domain", kind: "scalar", localName: "Domain", jsonName: "Domain", T: 9 /*ScalarType.STRING*/, options: { "validate.rules": { string: { minLen: "1" } } } },
|
||||
{ no: 2, name: "Entity", kind: "scalar", localName: "Entity", jsonName: "Entity", T: 9 /*ScalarType.STRING*/, options: { "validate.rules": { string: { minLen: "1" } } } },
|
||||
{ no: 3, name: "ClassName", kind: "scalar", localName: "ClassName", jsonName: "ClassName", T: 9 /*ScalarType.STRING*/, options: { "validate.rules": { string: { minLen: "1" } } } },
|
||||
{ no: 1, name: "OrgID", kind: "scalar", localName: "OrgID", jsonName: "OrgID", T: 9 /*ScalarType.STRING*/, options: { "n1validate.rules": { string: { minLen: "1" } } } },
|
||||
{ no: 5, name: "Domain", kind: "scalar", localName: "Domain", jsonName: "Domain", T: 9 /*ScalarType.STRING*/, options: { "n1validate.rules": { string: { minLen: "1" } } } },
|
||||
{ no: 2, name: "Entity", kind: "scalar", localName: "Entity", jsonName: "Entity", T: 9 /*ScalarType.STRING*/, options: { "n1validate.rules": { string: { minLen: "1" } } } },
|
||||
{ no: 3, name: "ClassName", kind: "scalar", localName: "ClassName", jsonName: "ClassName", T: 9 /*ScalarType.STRING*/, options: { "n1validate.rules": { string: { minLen: "1" } } } },
|
||||
{ no: 4, name: "Arguments", kind: "scalar", localName: "Arguments", jsonName: "Arguments", T: 9 /*ScalarType.STRING*/ }
|
||||
]);
|
||||
}
|
||||
@@ -1519,10 +1519,10 @@ export const StartIndividualStreamingJobResult = new StartIndividualStreamingJob
|
||||
class StopIndividualStreamingJobRequest$Type extends MessageType<StopIndividualStreamingJobRequest> {
|
||||
constructor() {
|
||||
super("api.StopIndividualStreamingJobRequest", [
|
||||
{ no: 1, name: "OrgID", kind: "scalar", localName: "OrgID", jsonName: "OrgID", T: 9 /*ScalarType.STRING*/, options: { "validate.rules": { string: { minLen: "1" } } } },
|
||||
{ no: 5, name: "Domain", kind: "scalar", localName: "Domain", jsonName: "Domain", T: 9 /*ScalarType.STRING*/, options: { "validate.rules": { string: { minLen: "1" } } } },
|
||||
{ no: 2, name: "Entity", kind: "scalar", localName: "Entity", jsonName: "Entity", T: 9 /*ScalarType.STRING*/, options: { "validate.rules": { string: { minLen: "1" } } } },
|
||||
{ no: 3, name: "ClassName", kind: "scalar", localName: "ClassName", jsonName: "ClassName", T: 9 /*ScalarType.STRING*/, options: { "validate.rules": { string: { minLen: "1" } } } },
|
||||
{ no: 1, name: "OrgID", kind: "scalar", localName: "OrgID", jsonName: "OrgID", T: 9 /*ScalarType.STRING*/, options: { "n1validate.rules": { string: { minLen: "1" } } } },
|
||||
{ no: 5, name: "Domain", kind: "scalar", localName: "Domain", jsonName: "Domain", T: 9 /*ScalarType.STRING*/, options: { "n1validate.rules": { string: { minLen: "1" } } } },
|
||||
{ no: 2, name: "Entity", kind: "scalar", localName: "Entity", jsonName: "Entity", T: 9 /*ScalarType.STRING*/, options: { "n1validate.rules": { string: { minLen: "1" } } } },
|
||||
{ no: 3, name: "ClassName", kind: "scalar", localName: "ClassName", jsonName: "ClassName", T: 9 /*ScalarType.STRING*/, options: { "n1validate.rules": { string: { minLen: "1" } } } },
|
||||
{ no: 4, name: "Force", kind: "scalar", localName: "Force", jsonName: "Force", T: 8 /*ScalarType.BOOL*/ }
|
||||
]);
|
||||
}
|
||||
@@ -2222,7 +2222,7 @@ export const StopStreamingMetricsJobResult = new StopStreamingMetricsJobResult$T
|
||||
class CheckStreamingStatusRequest$Type extends MessageType<CheckStreamingStatusRequest> {
|
||||
constructor() {
|
||||
super("api.CheckStreamingStatusRequest", [
|
||||
{ no: 4, name: "OrgID", kind: "scalar", localName: "OrgID", jsonName: "OrgID", T: 9 /*ScalarType.STRING*/, options: { "validate.rules": { string: { minLen: "1" } } } }
|
||||
{ no: 4, name: "OrgID", kind: "scalar", localName: "OrgID", jsonName: "OrgID", T: 9 /*ScalarType.STRING*/, options: { "n1validate.rules": { string: { minLen: "1" } } } }
|
||||
]);
|
||||
}
|
||||
create(value?: PartialMessage<CheckStreamingStatusRequest>): CheckStreamingStatusRequest {
|
||||
@@ -2307,8 +2307,8 @@ export const CheckStreamingStatusResult = new CheckStreamingStatusResult$Type();
|
||||
class ProvisionGitOrgRequest$Type extends MessageType<ProvisionGitOrgRequest> {
|
||||
constructor() {
|
||||
super("api.ProvisionGitOrgRequest", [
|
||||
{ no: 1, name: "OrgID", kind: "scalar", localName: "OrgID", jsonName: "OrgID", T: 9 /*ScalarType.STRING*/, options: { "validate.rules": { string: { minLen: "1" } } } },
|
||||
{ no: 2, name: "ManagerMail", kind: "scalar", localName: "ManagerMail", jsonName: "ManagerMail", T: 9 /*ScalarType.STRING*/, options: { "validate.rules": { string: { email: true } } } }
|
||||
{ no: 1, name: "OrgID", kind: "scalar", localName: "OrgID", jsonName: "OrgID", T: 9 /*ScalarType.STRING*/, options: { "n1validate.rules": { string: { minLen: "1" } } } },
|
||||
{ no: 2, name: "ManagerMail", kind: "scalar", localName: "ManagerMail", jsonName: "ManagerMail", T: 9 /*ScalarType.STRING*/, options: { "n1validate.rules": { string: { email: true } } } }
|
||||
]);
|
||||
}
|
||||
create(value?: PartialMessage<ProvisionGitOrgRequest>): ProvisionGitOrgRequest {
|
||||
@@ -2400,7 +2400,7 @@ export const ProvisionGitOrgResult = new ProvisionGitOrgResult$Type();
|
||||
class DeprovisionGitOrgRequest$Type extends MessageType<DeprovisionGitOrgRequest> {
|
||||
constructor() {
|
||||
super("api.DeprovisionGitOrgRequest", [
|
||||
{ no: 1, name: "OrgID", kind: "scalar", localName: "OrgID", jsonName: "OrgID", T: 9 /*ScalarType.STRING*/, options: { "validate.rules": { string: { minLen: "1" } } } }
|
||||
{ no: 1, name: "OrgID", kind: "scalar", localName: "OrgID", jsonName: "OrgID", T: 9 /*ScalarType.STRING*/, options: { "n1validate.rules": { string: { minLen: "1" } } } }
|
||||
], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: { required: ["OrgID"] } } });
|
||||
}
|
||||
create(value?: PartialMessage<DeprovisionGitOrgRequest>): DeprovisionGitOrgRequest {
|
||||
@@ -2485,7 +2485,7 @@ export const DeprovisionGitOrgResult = new DeprovisionGitOrgResult$Type();
|
||||
class DeleteOrganisationInDBRequest$Type extends MessageType<DeleteOrganisationInDBRequest> {
|
||||
constructor() {
|
||||
super("api.DeleteOrganisationInDBRequest", [
|
||||
{ no: 1, name: "OrganisationID", kind: "scalar", localName: "OrganisationID", jsonName: "OrganisationID", T: 9 /*ScalarType.STRING*/, options: { "validate.rules": { string: { minLen: "1" } } } }
|
||||
{ no: 1, name: "OrganisationID", kind: "scalar", localName: "OrganisationID", jsonName: "OrganisationID", T: 9 /*ScalarType.STRING*/, options: { "n1validate.rules": { string: { minLen: "1" } } } }
|
||||
], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: { required: ["OrganisationID"] } } });
|
||||
}
|
||||
create(value?: PartialMessage<DeleteOrganisationInDBRequest>): DeleteOrganisationInDBRequest {
|
||||
|
||||
Reference in New Issue
Block a user