Latest generation

This commit is contained in:
ci core model
2026-03-09 10:30:09 +00:00
parent 7d8528b55f
commit 2aeb0b6380
2 changed files with 3 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "@reflex-platform/npm-core-sdk",
"version": "1.13.0-SNAPSHOT-260306153520",
"version": "1.13.0-SNAPSHOT-260309102925",
"description": "npm libs from core model proto files",
"homepage": "",
"main": "index.ts",

View File

@@ -191,7 +191,7 @@ export interface GetLanguagesResult {
class Translation$Type extends MessageType<Translation> {
constructor() {
super("api.Translation", [
{ no: 1, name: "LanguageCode", kind: "scalar", localName: "LanguageCode", jsonName: "LanguageCode", T: 9 /*ScalarType.STRING*/ },
{ no: 1, name: "LanguageCode", kind: "scalar", localName: "LanguageCode", jsonName: "LanguageCode", T: 9 /*ScalarType.STRING*/, options: { "validate.rules": { string: { minLen: "2", maxLen: "3", languageIso639: true } } } },
{ no: 2, name: "Translation", kind: "scalar", localName: "Translation", jsonName: "Translation", T: 9 /*ScalarType.STRING*/ }
]);
}
@@ -683,7 +683,7 @@ class ListTranslationsRequest$Type extends MessageType<ListTranslationsRequest>
constructor() {
super("api.ListTranslationsRequest", [
{ no: 1, name: "Header", kind: "message", localName: "Header", jsonName: "Header", T: () => RequestProjectHeader, options: { "validate.rules": { message: { required: true } } } },
{ no: 2, name: "LanguageCode", kind: "scalar", localName: "LanguageCode", jsonName: "LanguageCode", T: 9 /*ScalarType.STRING*/, options: { "validate.rules": { string: { minLen: "1" } } } }
{ no: 2, name: "LanguageCode", kind: "scalar", localName: "LanguageCode", jsonName: "LanguageCode", T: 9 /*ScalarType.STRING*/, options: { "validate.rules": { string: { minLen: "2", maxLen: "3", languageIso639: true } } } }
], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: { description: "Message request for the ListTranslations method", required: ["Header", "LanguageCode"] } } });
}
create(value?: PartialMessage<ListTranslationsRequest>): ListTranslationsRequest {