Latest generation

This commit is contained in:
ci core model
2025-11-03 09:38:37 +00:00
parent 69895e5bdb
commit f029f454b9
61 changed files with 494 additions and 368 deletions

View File

@@ -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: { "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: 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: 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"] } } });