You've already forked npm-core-sdk
Latest generation
This commit is contained in:
10
client.ts
10
client.ts
@@ -72,9 +72,9 @@ export interface RegisterClientResult {
|
||||
class OpenIDClient$Type extends MessageType<OpenIDClient> {
|
||||
constructor() {
|
||||
super("api.OpenIDClient", [
|
||||
{ no: 1, name: "AppName", kind: "scalar", localName: "AppName", jsonName: "AppName", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "The application name must be lowercase and can only contain letters and numbers. It must be unique within the organisation.", example: "\"reflexvisibility\"", pattern: "^[a-z]+$" }, "validate.rules": { string: { minLen: "1", pattern: "^[a-z]+$" } } } },
|
||||
{ no: 2, name: "DisplayName", kind: "scalar", localName: "DisplayName", jsonName: "DisplayName", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "The display name of the application.", example: "\"Reflex Visibility\"" }, "validate.rules": { string: { minLen: "1" } } } },
|
||||
{ no: 3, name: "RootURI", kind: "scalar", localName: "RootURI", jsonName: "RootURI", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "The root URI of the application.", example: "\"https://localhost\"" }, "validate.rules": { string: { minLen: "1" } } } },
|
||||
{ no: 1, name: "AppName", kind: "scalar", localName: "AppName", jsonName: "AppName", T: 9 /*ScalarType.STRING*/, options: { "validate.rules": { string: { minLen: "1", pattern: "^[a-z]+$" } }, "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "The application name must be lowercase and can only contain letters and numbers. It must be unique within the organisation.", example: "\"reflexvisibility\"", pattern: "^[a-z]+$" } } },
|
||||
{ no: 2, name: "DisplayName", kind: "scalar", localName: "DisplayName", jsonName: "DisplayName", T: 9 /*ScalarType.STRING*/, options: { "validate.rules": { string: { minLen: "1" } }, "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "The display name of the application.", example: "\"Reflex Visibility\"" } } },
|
||||
{ no: 3, name: "RootURI", kind: "scalar", localName: "RootURI", jsonName: "RootURI", T: 9 /*ScalarType.STRING*/, options: { "validate.rules": { string: { minLen: "1" } }, "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "The root URI of the application.", example: "\"https://localhost\"" } } },
|
||||
{ no: 4, name: "RedirectURIs", kind: "scalar", localName: "RedirectURIs", jsonName: "RedirectURIs", repeat: 2 /*RepeatType.UNPACKED*/, T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "The allowed redirect URIs of the application.", example: "\"https://localhost/*\"" } } },
|
||||
{ no: 5, name: "Description", kind: "scalar", localName: "Description", jsonName: "Description", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "The description of the application.", example: "\"Reflex Visibility application from Reflex Platform\"" } } }
|
||||
], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: { required: ["AppName", "RootURI", "DisplayName"] } } });
|
||||
@@ -297,6 +297,6 @@ export const RegisterClientResult = new RegisterClientResult$Type();
|
||||
* @generated ServiceType for protobuf service api.ClientService
|
||||
*/
|
||||
export const ClientService = new ServiceType("api.ClientService", [
|
||||
{ name: "RegisterPlatformClient", options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation": { tags: ["OIDC"], description: "Register a new client for the platform" }, "google.api.method_visibility": { restriction: "INTERNAL" }, "api.rscType": "Platform", "api.roles": "Platform.Permission" }, I: RegisterPlatformClientRequest, O: RegisterClientResult },
|
||||
{ name: "RegisterClient", options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation": { tags: ["OIDC"], description: "Register a new client for an organisation" }, "google.api.method_visibility": { restriction: "SDK" }, "api.rscType": "Organisation", "api.roles": "" }, I: RegisterClientRequest, O: RegisterClientResult }
|
||||
{ name: "RegisterPlatformClient", options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation": { tags: ["OIDC"], description: "Register a new client for the platform" }, "api.rscType": "Platform", "api.roles": "Platform.Permission", "google.api.method_visibility": { restriction: "INTERNAL" } }, I: RegisterPlatformClientRequest, O: RegisterClientResult },
|
||||
{ name: "RegisterClient", options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation": { tags: ["OIDC"], description: "Register a new client for an organisation" }, "api.rscType": "Organisation", "api.roles": "", "google.api.method_visibility": { restriction: "SDK" } }, I: RegisterClientRequest, O: RegisterClientResult }
|
||||
], { "api.k8sService": "authorization-server" });
|
||||
|
||||
Reference in New Issue
Block a user