Latest generation

This commit is contained in:
ci core model
2026-07-10 08:58:27 +00:00
parent 701abbef8f
commit b5d741aaf8
2 changed files with 5 additions and 5 deletions

View File

@@ -34,7 +34,7 @@ export interface MessagingSettings {
/**
* @generated from protobuf field: string SenderLabel = 4
*/
SenderLabel: string; // SenderLabel is the label for the sender that will be displayed in messaging communications. Must be an alphanumeric sender ID (up to 11 chars, ASCII letters/digits/spaces)If not set, will use the default Hardis SCN label.
SenderLabel: string; // SenderLabel is the label for the sender that will be displayed in messaging communications. Must be uppercase letters only (up to 11 chars). If not set, will use the default Hardis SCN label.
}
/**
* MessagingSettingsHistory represents a record of changes made to the messaging settings for a specific project. It contains information about the user who made the change, the details of the messaging settings that were changed, and the timestamp of when the change was made.
@@ -110,7 +110,7 @@ export interface PutMessagingSettingsRequest {
/**
* @generated from protobuf field: string SenderLabel = 4
*/
SenderLabel: string; // SenderLabel is the label for the sender that will be displayed in messaging communications. Must be an alphanumeric sender ID (up to 11 chars, ASCII letters/digits/spaces). If not set, will use the default Hardis SCN label.
SenderLabel: string; // SenderLabel is the label for the sender that will be displayed in messaging communications. Must be uppercase letters only (up to 11 chars). If not set, will use the default Hardis SCN label.
}
/**
* @generated from protobuf message api.PutMessagingSettingsResponse
@@ -152,7 +152,7 @@ class MessagingSettings$Type extends MessageType<MessagingSettings> {
{ no: 1, name: "ProjectID", kind: "scalar", localName: "ProjectID", jsonName: "ProjectID", T: 9 /*ScalarType.STRING*/, options: { "n1validate.rules": { string: { minLen: "1" } } } },
{ no: 2, name: "MaxUsage", kind: "scalar", localName: "MaxUsage", jsonName: "MaxUsage", T: 2 /*ScalarType.FLOAT*/, options: { "n1validate.rules": { float: { gte: 0 } } } },
{ no: 3, name: "Currency", kind: "enum", localName: "Currency", jsonName: "Currency", T: () => ["api.Currency", Currency], options: { "n1validate.rules": { enum: { definedOnly: true } }, "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "<a href='https://en.wikipedia.org/wiki/ISO_4217'>ISO 4217</a> currency code", example: "[\"EUR\", \"USD\"]" } } },
{ no: 4, name: "SenderLabel", kind: "scalar", localName: "SenderLabel", jsonName: "SenderLabel", T: 9 /*ScalarType.STRING*/, options: { "n1validate.rules": { string: { pattern: "^[a-zA-Z0-9 &]{1,11}$", ignoreEmpty: true } } } }
{ no: 4, name: "SenderLabel", kind: "scalar", localName: "SenderLabel", jsonName: "SenderLabel", T: 9 /*ScalarType.STRING*/, options: { "n1validate.rules": { string: { pattern: "^[A-Z]{1,11}$", ignoreEmpty: true } } } }
]);
}
create(value?: PartialMessage<MessagingSettings>): MessagingSettings {
@@ -470,7 +470,7 @@ class PutMessagingSettingsRequest$Type extends MessageType<PutMessagingSettingsR
{ no: 1, name: "Header", kind: "message", localName: "Header", jsonName: "Header", T: () => RequestProjectHeader, options: { "n1validate.rules": { message: { required: true } } } },
{ no: 2, name: "MaxUsage", kind: "scalar", localName: "MaxUsage", jsonName: "MaxUsage", T: 2 /*ScalarType.FLOAT*/, options: { "n1validate.rules": { float: { gte: 0 } } } },
{ no: 3, name: "Currency", kind: "enum", localName: "Currency", jsonName: "Currency", T: () => ["api.Currency", Currency], options: { "n1validate.rules": { enum: { definedOnly: true } }, "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "<a href='https://en.wikipedia.org/wiki/ISO_4217'>ISO 4217</a> currency code", example: "[\"EUR\", \"USD\"]" } } },
{ no: 4, name: "SenderLabel", kind: "scalar", localName: "SenderLabel", jsonName: "SenderLabel", T: 9 /*ScalarType.STRING*/, options: { "n1validate.rules": { string: { pattern: "^[a-zA-Z0-9 &]{1,11}$", ignoreEmpty: true } } } }
{ no: 4, name: "SenderLabel", kind: "scalar", localName: "SenderLabel", jsonName: "SenderLabel", T: 9 /*ScalarType.STRING*/, options: { "n1validate.rules": { string: { pattern: "^[A-Z]{1,11}$", ignoreEmpty: true } } } }
], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: { required: ["Header", "MaxUsage", "Currency", "SenderLabel"] } } });
}
create(value?: PartialMessage<PutMessagingSettingsRequest>): PutMessagingSettingsRequest {

View File

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