@swiss-ai-hub/web 0.301.7 → 0.303.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components/Event/Display/ConversationTitleEvent.vue +20 -0
- package/components/Event/Display/FollowUpQuestionsEvent.vue +26 -0
- package/composables/event/useEventComponent.ts +4 -0
- package/package.json +1 -1
- package/sdk/client/index.ts +4 -0
- package/sdk/client/schemas.gen.ts +1281 -268
- package/sdk/client/types.gen.ts +550 -4
|
@@ -1288,6 +1288,19 @@ export const AgentSelectorSchema = {
|
|
|
1288
1288
|
"Render with a sibling toggle that sets this field to null when off",
|
|
1289
1289
|
default: false,
|
|
1290
1290
|
},
|
|
1291
|
+
defaultEnabled: {
|
|
1292
|
+
anyOf: [
|
|
1293
|
+
{
|
|
1294
|
+
type: "boolean",
|
|
1295
|
+
},
|
|
1296
|
+
{
|
|
1297
|
+
type: "null",
|
|
1298
|
+
},
|
|
1299
|
+
],
|
|
1300
|
+
title: "Defaultenabled",
|
|
1301
|
+
description:
|
|
1302
|
+
"For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.",
|
|
1303
|
+
},
|
|
1291
1304
|
formkit: {
|
|
1292
1305
|
type: "string",
|
|
1293
1306
|
const: "agentSelector",
|
|
@@ -2465,6 +2478,19 @@ export const CascadeSelectSchema = {
|
|
|
2465
2478
|
"Render with a sibling toggle that sets this field to null when off",
|
|
2466
2479
|
default: false,
|
|
2467
2480
|
},
|
|
2481
|
+
defaultEnabled: {
|
|
2482
|
+
anyOf: [
|
|
2483
|
+
{
|
|
2484
|
+
type: "boolean",
|
|
2485
|
+
},
|
|
2486
|
+
{
|
|
2487
|
+
type: "null",
|
|
2488
|
+
},
|
|
2489
|
+
],
|
|
2490
|
+
title: "Defaultenabled",
|
|
2491
|
+
description:
|
|
2492
|
+
"For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.",
|
|
2493
|
+
},
|
|
2468
2494
|
formkit: {
|
|
2469
2495
|
type: "string",
|
|
2470
2496
|
const: "primeCascadeSelect",
|
|
@@ -4197,255 +4223,281 @@ export const CheckboxSchema = {
|
|
|
4197
4223
|
"Render with a sibling toggle that sets this field to null when off",
|
|
4198
4224
|
default: false,
|
|
4199
4225
|
},
|
|
4200
|
-
|
|
4201
|
-
type: "string",
|
|
4202
|
-
const: "primeCheckbox",
|
|
4203
|
-
title: "Formkit",
|
|
4204
|
-
description: "PrimeVue Checkbox element.",
|
|
4205
|
-
default: "primeCheckbox",
|
|
4206
|
-
},
|
|
4207
|
-
name: {
|
|
4208
|
-
anyOf: [
|
|
4209
|
-
{
|
|
4210
|
-
type: "string",
|
|
4211
|
-
},
|
|
4212
|
-
{
|
|
4213
|
-
type: "null",
|
|
4214
|
-
},
|
|
4215
|
-
],
|
|
4216
|
-
title: "Name",
|
|
4217
|
-
description: "Name of this field",
|
|
4218
|
-
},
|
|
4219
|
-
label: {
|
|
4220
|
-
anyOf: [
|
|
4221
|
-
{
|
|
4222
|
-
$ref: "#/components/schemas/LocaleString",
|
|
4223
|
-
},
|
|
4224
|
-
{
|
|
4225
|
-
type: "string",
|
|
4226
|
-
},
|
|
4227
|
-
],
|
|
4228
|
-
title: "Label",
|
|
4229
|
-
description: "Label of this field",
|
|
4230
|
-
},
|
|
4231
|
-
help: {
|
|
4232
|
-
anyOf: [
|
|
4233
|
-
{
|
|
4234
|
-
$ref: "#/components/schemas/LocaleString",
|
|
4235
|
-
},
|
|
4236
|
-
{
|
|
4237
|
-
type: "string",
|
|
4238
|
-
},
|
|
4239
|
-
{
|
|
4240
|
-
type: "null",
|
|
4241
|
-
},
|
|
4242
|
-
],
|
|
4243
|
-
title: "Help",
|
|
4244
|
-
description: "Help text of this field",
|
|
4245
|
-
},
|
|
4246
|
-
value: {
|
|
4226
|
+
defaultEnabled: {
|
|
4247
4227
|
anyOf: [
|
|
4248
|
-
{
|
|
4249
|
-
type: "string",
|
|
4250
|
-
},
|
|
4251
|
-
{
|
|
4252
|
-
type: "integer",
|
|
4253
|
-
},
|
|
4254
|
-
{
|
|
4255
|
-
type: "number",
|
|
4256
|
-
},
|
|
4257
4228
|
{
|
|
4258
4229
|
type: "boolean",
|
|
4259
4230
|
},
|
|
4260
|
-
{
|
|
4261
|
-
items: {
|
|
4262
|
-
type: "string",
|
|
4263
|
-
},
|
|
4264
|
-
type: "array",
|
|
4265
|
-
},
|
|
4266
|
-
{
|
|
4267
|
-
additionalProperties: {
|
|
4268
|
-
type: "string",
|
|
4269
|
-
},
|
|
4270
|
-
type: "object",
|
|
4271
|
-
},
|
|
4272
4231
|
{
|
|
4273
4232
|
type: "null",
|
|
4274
4233
|
},
|
|
4275
4234
|
],
|
|
4276
|
-
title: "
|
|
4277
|
-
description: "Default value for this field",
|
|
4278
|
-
},
|
|
4279
|
-
required: {
|
|
4280
|
-
type: "boolean",
|
|
4281
|
-
title: "Required",
|
|
4282
|
-
description: "Whether this field is required",
|
|
4283
|
-
default: false,
|
|
4284
|
-
},
|
|
4285
|
-
additional_validation_rules: {
|
|
4286
|
-
anyOf: [
|
|
4287
|
-
{
|
|
4288
|
-
type: "string",
|
|
4289
|
-
},
|
|
4290
|
-
{
|
|
4291
|
-
type: "null",
|
|
4292
|
-
},
|
|
4293
|
-
],
|
|
4294
|
-
title: "Additional Validation Rules",
|
|
4295
|
-
description: "Validation expression",
|
|
4296
|
-
},
|
|
4297
|
-
disabled: {
|
|
4298
|
-
type: "boolean",
|
|
4299
|
-
title: "Disabled",
|
|
4300
|
-
description: "Whether the input is disabled",
|
|
4301
|
-
default: false,
|
|
4302
|
-
},
|
|
4303
|
-
readonly: {
|
|
4304
|
-
type: "boolean",
|
|
4305
|
-
title: "Readonly",
|
|
4306
|
-
description: "Whether the input is readonly",
|
|
4307
|
-
default: false,
|
|
4308
|
-
},
|
|
4309
|
-
binary: {
|
|
4310
|
-
type: "boolean",
|
|
4311
|
-
title: "Binary",
|
|
4312
|
-
description: "Whether the checkbox works in binary mode",
|
|
4313
|
-
default: true,
|
|
4314
|
-
},
|
|
4315
|
-
indeterminate: {
|
|
4316
|
-
type: "boolean",
|
|
4317
|
-
title: "Indeterminate",
|
|
4318
|
-
description: "Whether the checkbox is in indeterminate state",
|
|
4319
|
-
default: false,
|
|
4320
|
-
},
|
|
4321
|
-
trueValue: {
|
|
4322
|
-
anyOf: [
|
|
4323
|
-
{
|
|
4324
|
-
type: "boolean",
|
|
4325
|
-
},
|
|
4326
|
-
{
|
|
4327
|
-
type: "string",
|
|
4328
|
-
},
|
|
4329
|
-
{
|
|
4330
|
-
type: "integer",
|
|
4331
|
-
},
|
|
4332
|
-
{
|
|
4333
|
-
type: "null",
|
|
4334
|
-
},
|
|
4335
|
-
],
|
|
4336
|
-
title: "Truevalue",
|
|
4337
|
-
description: "Value to emit when checked",
|
|
4338
|
-
default: true,
|
|
4339
|
-
},
|
|
4340
|
-
falseValue: {
|
|
4341
|
-
anyOf: [
|
|
4342
|
-
{
|
|
4343
|
-
type: "boolean",
|
|
4344
|
-
},
|
|
4345
|
-
{
|
|
4346
|
-
type: "string",
|
|
4347
|
-
},
|
|
4348
|
-
{
|
|
4349
|
-
type: "integer",
|
|
4350
|
-
},
|
|
4351
|
-
{
|
|
4352
|
-
type: "null",
|
|
4353
|
-
},
|
|
4354
|
-
],
|
|
4355
|
-
title: "Falsevalue",
|
|
4356
|
-
description: "Value to emit when unchecked",
|
|
4357
|
-
default: false,
|
|
4358
|
-
},
|
|
4359
|
-
prefix: {
|
|
4360
|
-
anyOf: [
|
|
4361
|
-
{
|
|
4362
|
-
$ref: "#/components/schemas/LocaleString",
|
|
4363
|
-
},
|
|
4364
|
-
{
|
|
4365
|
-
type: "string",
|
|
4366
|
-
},
|
|
4367
|
-
{
|
|
4368
|
-
type: "null",
|
|
4369
|
-
},
|
|
4370
|
-
],
|
|
4371
|
-
title: "Prefix",
|
|
4372
|
-
description: "Prefix text",
|
|
4373
|
-
},
|
|
4374
|
-
suffix: {
|
|
4375
|
-
anyOf: [
|
|
4376
|
-
{
|
|
4377
|
-
$ref: "#/components/schemas/LocaleString",
|
|
4378
|
-
},
|
|
4379
|
-
{
|
|
4380
|
-
type: "string",
|
|
4381
|
-
},
|
|
4382
|
-
{
|
|
4383
|
-
type: "null",
|
|
4384
|
-
},
|
|
4385
|
-
],
|
|
4386
|
-
title: "Suffix",
|
|
4387
|
-
description: "Suffix text",
|
|
4388
|
-
},
|
|
4389
|
-
validation: {
|
|
4390
|
-
type: "string",
|
|
4391
|
-
title: "Validation",
|
|
4392
|
-
readOnly: true,
|
|
4393
|
-
},
|
|
4394
|
-
},
|
|
4395
|
-
additionalProperties: true,
|
|
4396
|
-
type: "object",
|
|
4397
|
-
required: ["label", "validation"],
|
|
4398
|
-
title: "Checkbox",
|
|
4399
|
-
description: "https://formkit-primevue.netlify.app/inputs/Checkbox",
|
|
4400
|
-
} as const;
|
|
4401
|
-
|
|
4402
|
-
export const ChipsInputSchema = {
|
|
4403
|
-
properties: {
|
|
4404
|
-
is_formkit_element: {
|
|
4405
|
-
type: "boolean",
|
|
4406
|
-
const: true,
|
|
4407
|
-
title: "Is Formkit Element",
|
|
4408
|
-
description: "Indicates that this element is a FormKit element",
|
|
4409
|
-
default: true,
|
|
4410
|
-
},
|
|
4411
|
-
if: {
|
|
4412
|
-
anyOf: [
|
|
4413
|
-
{
|
|
4414
|
-
type: "string",
|
|
4415
|
-
pattern: "^\\$.+",
|
|
4416
|
-
},
|
|
4417
|
-
{
|
|
4418
|
-
type: "null",
|
|
4419
|
-
},
|
|
4420
|
-
],
|
|
4421
|
-
title: "If",
|
|
4422
|
-
description: "Conditional expression to show this element",
|
|
4423
|
-
},
|
|
4424
|
-
id: {
|
|
4425
|
-
anyOf: [
|
|
4426
|
-
{
|
|
4427
|
-
type: "string",
|
|
4428
|
-
},
|
|
4429
|
-
{
|
|
4430
|
-
type: "null",
|
|
4431
|
-
},
|
|
4432
|
-
],
|
|
4433
|
-
title: "Id",
|
|
4434
|
-
description: "Unique identifier for this element",
|
|
4435
|
-
},
|
|
4436
|
-
nullable: {
|
|
4437
|
-
type: "boolean",
|
|
4438
|
-
title: "Nullable",
|
|
4235
|
+
title: "Defaultenabled",
|
|
4439
4236
|
description:
|
|
4440
|
-
"
|
|
4441
|
-
default: false,
|
|
4237
|
+
"For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.",
|
|
4442
4238
|
},
|
|
4443
4239
|
formkit: {
|
|
4444
4240
|
type: "string",
|
|
4445
|
-
const: "
|
|
4241
|
+
const: "primeCheckbox",
|
|
4446
4242
|
title: "Formkit",
|
|
4447
|
-
description: "
|
|
4448
|
-
default: "
|
|
4243
|
+
description: "PrimeVue Checkbox element.",
|
|
4244
|
+
default: "primeCheckbox",
|
|
4245
|
+
},
|
|
4246
|
+
name: {
|
|
4247
|
+
anyOf: [
|
|
4248
|
+
{
|
|
4249
|
+
type: "string",
|
|
4250
|
+
},
|
|
4251
|
+
{
|
|
4252
|
+
type: "null",
|
|
4253
|
+
},
|
|
4254
|
+
],
|
|
4255
|
+
title: "Name",
|
|
4256
|
+
description: "Name of this field",
|
|
4257
|
+
},
|
|
4258
|
+
label: {
|
|
4259
|
+
anyOf: [
|
|
4260
|
+
{
|
|
4261
|
+
$ref: "#/components/schemas/LocaleString",
|
|
4262
|
+
},
|
|
4263
|
+
{
|
|
4264
|
+
type: "string",
|
|
4265
|
+
},
|
|
4266
|
+
],
|
|
4267
|
+
title: "Label",
|
|
4268
|
+
description: "Label of this field",
|
|
4269
|
+
},
|
|
4270
|
+
help: {
|
|
4271
|
+
anyOf: [
|
|
4272
|
+
{
|
|
4273
|
+
$ref: "#/components/schemas/LocaleString",
|
|
4274
|
+
},
|
|
4275
|
+
{
|
|
4276
|
+
type: "string",
|
|
4277
|
+
},
|
|
4278
|
+
{
|
|
4279
|
+
type: "null",
|
|
4280
|
+
},
|
|
4281
|
+
],
|
|
4282
|
+
title: "Help",
|
|
4283
|
+
description: "Help text of this field",
|
|
4284
|
+
},
|
|
4285
|
+
value: {
|
|
4286
|
+
anyOf: [
|
|
4287
|
+
{
|
|
4288
|
+
type: "string",
|
|
4289
|
+
},
|
|
4290
|
+
{
|
|
4291
|
+
type: "integer",
|
|
4292
|
+
},
|
|
4293
|
+
{
|
|
4294
|
+
type: "number",
|
|
4295
|
+
},
|
|
4296
|
+
{
|
|
4297
|
+
type: "boolean",
|
|
4298
|
+
},
|
|
4299
|
+
{
|
|
4300
|
+
items: {
|
|
4301
|
+
type: "string",
|
|
4302
|
+
},
|
|
4303
|
+
type: "array",
|
|
4304
|
+
},
|
|
4305
|
+
{
|
|
4306
|
+
additionalProperties: {
|
|
4307
|
+
type: "string",
|
|
4308
|
+
},
|
|
4309
|
+
type: "object",
|
|
4310
|
+
},
|
|
4311
|
+
{
|
|
4312
|
+
type: "null",
|
|
4313
|
+
},
|
|
4314
|
+
],
|
|
4315
|
+
title: "Value",
|
|
4316
|
+
description: "Default value for this field",
|
|
4317
|
+
},
|
|
4318
|
+
required: {
|
|
4319
|
+
type: "boolean",
|
|
4320
|
+
title: "Required",
|
|
4321
|
+
description: "Whether this field is required",
|
|
4322
|
+
default: false,
|
|
4323
|
+
},
|
|
4324
|
+
additional_validation_rules: {
|
|
4325
|
+
anyOf: [
|
|
4326
|
+
{
|
|
4327
|
+
type: "string",
|
|
4328
|
+
},
|
|
4329
|
+
{
|
|
4330
|
+
type: "null",
|
|
4331
|
+
},
|
|
4332
|
+
],
|
|
4333
|
+
title: "Additional Validation Rules",
|
|
4334
|
+
description: "Validation expression",
|
|
4335
|
+
},
|
|
4336
|
+
disabled: {
|
|
4337
|
+
type: "boolean",
|
|
4338
|
+
title: "Disabled",
|
|
4339
|
+
description: "Whether the input is disabled",
|
|
4340
|
+
default: false,
|
|
4341
|
+
},
|
|
4342
|
+
readonly: {
|
|
4343
|
+
type: "boolean",
|
|
4344
|
+
title: "Readonly",
|
|
4345
|
+
description: "Whether the input is readonly",
|
|
4346
|
+
default: false,
|
|
4347
|
+
},
|
|
4348
|
+
binary: {
|
|
4349
|
+
type: "boolean",
|
|
4350
|
+
title: "Binary",
|
|
4351
|
+
description: "Whether the checkbox works in binary mode",
|
|
4352
|
+
default: true,
|
|
4353
|
+
},
|
|
4354
|
+
indeterminate: {
|
|
4355
|
+
type: "boolean",
|
|
4356
|
+
title: "Indeterminate",
|
|
4357
|
+
description: "Whether the checkbox is in indeterminate state",
|
|
4358
|
+
default: false,
|
|
4359
|
+
},
|
|
4360
|
+
trueValue: {
|
|
4361
|
+
anyOf: [
|
|
4362
|
+
{
|
|
4363
|
+
type: "boolean",
|
|
4364
|
+
},
|
|
4365
|
+
{
|
|
4366
|
+
type: "string",
|
|
4367
|
+
},
|
|
4368
|
+
{
|
|
4369
|
+
type: "integer",
|
|
4370
|
+
},
|
|
4371
|
+
{
|
|
4372
|
+
type: "null",
|
|
4373
|
+
},
|
|
4374
|
+
],
|
|
4375
|
+
title: "Truevalue",
|
|
4376
|
+
description: "Value to emit when checked",
|
|
4377
|
+
default: true,
|
|
4378
|
+
},
|
|
4379
|
+
falseValue: {
|
|
4380
|
+
anyOf: [
|
|
4381
|
+
{
|
|
4382
|
+
type: "boolean",
|
|
4383
|
+
},
|
|
4384
|
+
{
|
|
4385
|
+
type: "string",
|
|
4386
|
+
},
|
|
4387
|
+
{
|
|
4388
|
+
type: "integer",
|
|
4389
|
+
},
|
|
4390
|
+
{
|
|
4391
|
+
type: "null",
|
|
4392
|
+
},
|
|
4393
|
+
],
|
|
4394
|
+
title: "Falsevalue",
|
|
4395
|
+
description: "Value to emit when unchecked",
|
|
4396
|
+
default: false,
|
|
4397
|
+
},
|
|
4398
|
+
prefix: {
|
|
4399
|
+
anyOf: [
|
|
4400
|
+
{
|
|
4401
|
+
$ref: "#/components/schemas/LocaleString",
|
|
4402
|
+
},
|
|
4403
|
+
{
|
|
4404
|
+
type: "string",
|
|
4405
|
+
},
|
|
4406
|
+
{
|
|
4407
|
+
type: "null",
|
|
4408
|
+
},
|
|
4409
|
+
],
|
|
4410
|
+
title: "Prefix",
|
|
4411
|
+
description: "Prefix text",
|
|
4412
|
+
},
|
|
4413
|
+
suffix: {
|
|
4414
|
+
anyOf: [
|
|
4415
|
+
{
|
|
4416
|
+
$ref: "#/components/schemas/LocaleString",
|
|
4417
|
+
},
|
|
4418
|
+
{
|
|
4419
|
+
type: "string",
|
|
4420
|
+
},
|
|
4421
|
+
{
|
|
4422
|
+
type: "null",
|
|
4423
|
+
},
|
|
4424
|
+
],
|
|
4425
|
+
title: "Suffix",
|
|
4426
|
+
description: "Suffix text",
|
|
4427
|
+
},
|
|
4428
|
+
validation: {
|
|
4429
|
+
type: "string",
|
|
4430
|
+
title: "Validation",
|
|
4431
|
+
readOnly: true,
|
|
4432
|
+
},
|
|
4433
|
+
},
|
|
4434
|
+
additionalProperties: true,
|
|
4435
|
+
type: "object",
|
|
4436
|
+
required: ["label", "validation"],
|
|
4437
|
+
title: "Checkbox",
|
|
4438
|
+
description: "https://formkit-primevue.netlify.app/inputs/Checkbox",
|
|
4439
|
+
} as const;
|
|
4440
|
+
|
|
4441
|
+
export const ChipsInputSchema = {
|
|
4442
|
+
properties: {
|
|
4443
|
+
is_formkit_element: {
|
|
4444
|
+
type: "boolean",
|
|
4445
|
+
const: true,
|
|
4446
|
+
title: "Is Formkit Element",
|
|
4447
|
+
description: "Indicates that this element is a FormKit element",
|
|
4448
|
+
default: true,
|
|
4449
|
+
},
|
|
4450
|
+
if: {
|
|
4451
|
+
anyOf: [
|
|
4452
|
+
{
|
|
4453
|
+
type: "string",
|
|
4454
|
+
pattern: "^\\$.+",
|
|
4455
|
+
},
|
|
4456
|
+
{
|
|
4457
|
+
type: "null",
|
|
4458
|
+
},
|
|
4459
|
+
],
|
|
4460
|
+
title: "If",
|
|
4461
|
+
description: "Conditional expression to show this element",
|
|
4462
|
+
},
|
|
4463
|
+
id: {
|
|
4464
|
+
anyOf: [
|
|
4465
|
+
{
|
|
4466
|
+
type: "string",
|
|
4467
|
+
},
|
|
4468
|
+
{
|
|
4469
|
+
type: "null",
|
|
4470
|
+
},
|
|
4471
|
+
],
|
|
4472
|
+
title: "Id",
|
|
4473
|
+
description: "Unique identifier for this element",
|
|
4474
|
+
},
|
|
4475
|
+
nullable: {
|
|
4476
|
+
type: "boolean",
|
|
4477
|
+
title: "Nullable",
|
|
4478
|
+
description:
|
|
4479
|
+
"Render with a sibling toggle that sets this field to null when off",
|
|
4480
|
+
default: false,
|
|
4481
|
+
},
|
|
4482
|
+
defaultEnabled: {
|
|
4483
|
+
anyOf: [
|
|
4484
|
+
{
|
|
4485
|
+
type: "boolean",
|
|
4486
|
+
},
|
|
4487
|
+
{
|
|
4488
|
+
type: "null",
|
|
4489
|
+
},
|
|
4490
|
+
],
|
|
4491
|
+
title: "Defaultenabled",
|
|
4492
|
+
description:
|
|
4493
|
+
"For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.",
|
|
4494
|
+
},
|
|
4495
|
+
formkit: {
|
|
4496
|
+
type: "string",
|
|
4497
|
+
const: "chipsInput",
|
|
4498
|
+
title: "Formkit",
|
|
4499
|
+
description: "Chips input element.",
|
|
4500
|
+
default: "chipsInput",
|
|
4449
4501
|
},
|
|
4450
4502
|
name: {
|
|
4451
4503
|
anyOf: [
|
|
@@ -4844,6 +4896,19 @@ export const ColorPickerSchema = {
|
|
|
4844
4896
|
"Render with a sibling toggle that sets this field to null when off",
|
|
4845
4897
|
default: false,
|
|
4846
4898
|
},
|
|
4899
|
+
defaultEnabled: {
|
|
4900
|
+
anyOf: [
|
|
4901
|
+
{
|
|
4902
|
+
type: "boolean",
|
|
4903
|
+
},
|
|
4904
|
+
{
|
|
4905
|
+
type: "null",
|
|
4906
|
+
},
|
|
4907
|
+
],
|
|
4908
|
+
title: "Defaultenabled",
|
|
4909
|
+
description:
|
|
4910
|
+
"For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.",
|
|
4911
|
+
},
|
|
4847
4912
|
formkit: {
|
|
4848
4913
|
type: "string",
|
|
4849
4914
|
const: "primeColorPicker",
|
|
@@ -5333,6 +5398,12 @@ export const ContextualizedAgentEventSchema = {
|
|
|
5333
5398
|
{
|
|
5334
5399
|
$ref: "#/components/schemas/ThoughtEvent",
|
|
5335
5400
|
},
|
|
5401
|
+
{
|
|
5402
|
+
$ref: "#/components/schemas/ConversationTitleEvent",
|
|
5403
|
+
},
|
|
5404
|
+
{
|
|
5405
|
+
$ref: "#/components/schemas/FollowUpQuestionsEvent",
|
|
5406
|
+
},
|
|
5336
5407
|
{
|
|
5337
5408
|
$ref: "#/components/schemas/GuardEvent",
|
|
5338
5409
|
},
|
|
@@ -5500,6 +5571,71 @@ export const ControlEventSchema = {
|
|
|
5500
5571
|
"Represents a system-level or workflow-level signal, often used to coordinate steps,\nindicate state changes, or trigger specific actions in the event-driven architecture.\n\n### Why ControlEvent?\nWhile `BaseEvent` covers the general structure for any event, `ControlEvent` marks an event as\nparticularly important for controlling the flow of a system. Hence, all events taken as inputs to\nworkflow steps must be of type `ControlEvent`. Even though other type of events can be returned\nfrom workflow steps, only 'ControlEvent' influence the flow of the system.\n\nBy subclassing `BaseEvent`, `ControlEvent` benefits from automatic type registration and\nserialization, ensuring that control signals are as easy to produce and consume as any other event.",
|
|
5501
5572
|
} as const;
|
|
5502
5573
|
|
|
5574
|
+
export const ConversationTitleEventSchema = {
|
|
5575
|
+
properties: {
|
|
5576
|
+
event_id: {
|
|
5577
|
+
type: "string",
|
|
5578
|
+
title: "Event Id",
|
|
5579
|
+
},
|
|
5580
|
+
created_at: {
|
|
5581
|
+
type: "integer",
|
|
5582
|
+
title: "Created At",
|
|
5583
|
+
description:
|
|
5584
|
+
"The time (in ns since epoch) the event was stored in the event store",
|
|
5585
|
+
},
|
|
5586
|
+
display_name: {
|
|
5587
|
+
anyOf: [
|
|
5588
|
+
{
|
|
5589
|
+
$ref: "#/components/schemas/LocaleString",
|
|
5590
|
+
},
|
|
5591
|
+
{
|
|
5592
|
+
type: "null",
|
|
5593
|
+
},
|
|
5594
|
+
],
|
|
5595
|
+
description: "Display name for the event",
|
|
5596
|
+
},
|
|
5597
|
+
display_description: {
|
|
5598
|
+
anyOf: [
|
|
5599
|
+
{
|
|
5600
|
+
$ref: "#/components/schemas/LocaleString",
|
|
5601
|
+
},
|
|
5602
|
+
{
|
|
5603
|
+
type: "null",
|
|
5604
|
+
},
|
|
5605
|
+
],
|
|
5606
|
+
description: "Display description for the event",
|
|
5607
|
+
},
|
|
5608
|
+
title: {
|
|
5609
|
+
type: "string",
|
|
5610
|
+
title: "Title",
|
|
5611
|
+
description: "The generated title for the conversation.",
|
|
5612
|
+
},
|
|
5613
|
+
_event_name: {
|
|
5614
|
+
type: "string",
|
|
5615
|
+
title: "Event Name",
|
|
5616
|
+
description:
|
|
5617
|
+
"The event type name, usually the class name. If unknown, uses _unknown_event_name.\nUsed during deserialization to decide which subclass to instantiate.",
|
|
5618
|
+
readOnly: true,
|
|
5619
|
+
},
|
|
5620
|
+
_parent_event_names: {
|
|
5621
|
+
items: {
|
|
5622
|
+
type: "string",
|
|
5623
|
+
},
|
|
5624
|
+
type: "array",
|
|
5625
|
+
title: "Parent Event Names",
|
|
5626
|
+
description:
|
|
5627
|
+
"Contains the names of all parent classes up until BaseEvent, ordered from deepest to least deep inheritance.",
|
|
5628
|
+
readOnly: true,
|
|
5629
|
+
},
|
|
5630
|
+
},
|
|
5631
|
+
additionalProperties: true,
|
|
5632
|
+
type: "object",
|
|
5633
|
+
required: ["title", "_event_name", "_parent_event_names"],
|
|
5634
|
+
title: "ConversationTitleEvent",
|
|
5635
|
+
description:
|
|
5636
|
+
"Carries a generated title for the whole conversation (thread), produced by the agent once a\ntopic becomes identifiable. The agent has the richest context about the conversation, so it\nowns this metadata instead of leaving it to the chat UI's task model.\n\nA thread receives a single, stable title: the agent emits this event only on the turn where a\ntitle is first determined and never again for that thread.",
|
|
5637
|
+
} as const;
|
|
5638
|
+
|
|
5503
5639
|
export const CreateAgentInstanceRequestSchema = {
|
|
5504
5640
|
properties: {
|
|
5505
5641
|
agent_id: {
|
|
@@ -6127,6 +6263,19 @@ export const DatePickerSchema = {
|
|
|
6127
6263
|
"Render with a sibling toggle that sets this field to null when off",
|
|
6128
6264
|
default: false,
|
|
6129
6265
|
},
|
|
6266
|
+
defaultEnabled: {
|
|
6267
|
+
anyOf: [
|
|
6268
|
+
{
|
|
6269
|
+
type: "boolean",
|
|
6270
|
+
},
|
|
6271
|
+
{
|
|
6272
|
+
type: "null",
|
|
6273
|
+
},
|
|
6274
|
+
],
|
|
6275
|
+
title: "Defaultenabled",
|
|
6276
|
+
description:
|
|
6277
|
+
"For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.",
|
|
6278
|
+
},
|
|
6130
6279
|
formkit: {
|
|
6131
6280
|
type: "string",
|
|
6132
6281
|
const: "primeDatePicker",
|
|
@@ -7563,6 +7712,74 @@ export const FileFileSchema = {
|
|
|
7563
7712
|
title: "FileFile",
|
|
7564
7713
|
} as const;
|
|
7565
7714
|
|
|
7715
|
+
export const FollowUpQuestionsEventSchema = {
|
|
7716
|
+
properties: {
|
|
7717
|
+
event_id: {
|
|
7718
|
+
type: "string",
|
|
7719
|
+
title: "Event Id",
|
|
7720
|
+
},
|
|
7721
|
+
created_at: {
|
|
7722
|
+
type: "integer",
|
|
7723
|
+
title: "Created At",
|
|
7724
|
+
description:
|
|
7725
|
+
"The time (in ns since epoch) the event was stored in the event store",
|
|
7726
|
+
},
|
|
7727
|
+
display_name: {
|
|
7728
|
+
anyOf: [
|
|
7729
|
+
{
|
|
7730
|
+
$ref: "#/components/schemas/LocaleString",
|
|
7731
|
+
},
|
|
7732
|
+
{
|
|
7733
|
+
type: "null",
|
|
7734
|
+
},
|
|
7735
|
+
],
|
|
7736
|
+
description: "Display name for the event",
|
|
7737
|
+
},
|
|
7738
|
+
display_description: {
|
|
7739
|
+
anyOf: [
|
|
7740
|
+
{
|
|
7741
|
+
$ref: "#/components/schemas/LocaleString",
|
|
7742
|
+
},
|
|
7743
|
+
{
|
|
7744
|
+
type: "null",
|
|
7745
|
+
},
|
|
7746
|
+
],
|
|
7747
|
+
description: "Display description for the event",
|
|
7748
|
+
},
|
|
7749
|
+
questions: {
|
|
7750
|
+
items: {
|
|
7751
|
+
type: "string",
|
|
7752
|
+
},
|
|
7753
|
+
type: "array",
|
|
7754
|
+
title: "Questions",
|
|
7755
|
+
description: "The suggested follow-up questions for the user.",
|
|
7756
|
+
},
|
|
7757
|
+
_event_name: {
|
|
7758
|
+
type: "string",
|
|
7759
|
+
title: "Event Name",
|
|
7760
|
+
description:
|
|
7761
|
+
"The event type name, usually the class name. If unknown, uses _unknown_event_name.\nUsed during deserialization to decide which subclass to instantiate.",
|
|
7762
|
+
readOnly: true,
|
|
7763
|
+
},
|
|
7764
|
+
_parent_event_names: {
|
|
7765
|
+
items: {
|
|
7766
|
+
type: "string",
|
|
7767
|
+
},
|
|
7768
|
+
type: "array",
|
|
7769
|
+
title: "Parent Event Names",
|
|
7770
|
+
description:
|
|
7771
|
+
"Contains the names of all parent classes up until BaseEvent, ordered from deepest to least deep inheritance.",
|
|
7772
|
+
readOnly: true,
|
|
7773
|
+
},
|
|
7774
|
+
},
|
|
7775
|
+
additionalProperties: true,
|
|
7776
|
+
type: "object",
|
|
7777
|
+
required: ["questions", "_event_name", "_parent_event_names"],
|
|
7778
|
+
title: "FollowUpQuestionsEvent",
|
|
7779
|
+
description:
|
|
7780
|
+
"Carries follow-up questions the user might want to ask next, produced by the agent after each\nanswer. These are non-blocking UI suggestions — unlike the namespace-selection\n``FollowUpQuestion`` HITL events, the user is never required to answer them.\n\nRegenerated every turn since they depend on the latest answer.",
|
|
7781
|
+
} as const;
|
|
7782
|
+
|
|
7566
7783
|
export const FullAgentInstanceDTOSchema = {
|
|
7567
7784
|
properties: {
|
|
7568
7785
|
agent_class: {
|
|
@@ -7966,6 +8183,19 @@ export const GroupSchema = {
|
|
|
7966
8183
|
"Render with a sibling toggle that sets this field to null when off",
|
|
7967
8184
|
default: false,
|
|
7968
8185
|
},
|
|
8186
|
+
defaultEnabled: {
|
|
8187
|
+
anyOf: [
|
|
8188
|
+
{
|
|
8189
|
+
type: "boolean",
|
|
8190
|
+
},
|
|
8191
|
+
{
|
|
8192
|
+
type: "null",
|
|
8193
|
+
},
|
|
8194
|
+
],
|
|
8195
|
+
title: "Defaultenabled",
|
|
8196
|
+
description:
|
|
8197
|
+
"For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.",
|
|
8198
|
+
},
|
|
7969
8199
|
$formkit: {
|
|
7970
8200
|
type: "string",
|
|
7971
8201
|
const: "group",
|
|
@@ -8389,6 +8619,19 @@ export const HtmlElementSchema = {
|
|
|
8389
8619
|
"Render with a sibling toggle that sets this field to null when off",
|
|
8390
8620
|
default: false,
|
|
8391
8621
|
},
|
|
8622
|
+
defaultEnabled: {
|
|
8623
|
+
anyOf: [
|
|
8624
|
+
{
|
|
8625
|
+
type: "boolean",
|
|
8626
|
+
},
|
|
8627
|
+
{
|
|
8628
|
+
type: "null",
|
|
8629
|
+
},
|
|
8630
|
+
],
|
|
8631
|
+
title: "Defaultenabled",
|
|
8632
|
+
description:
|
|
8633
|
+
"For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.",
|
|
8634
|
+
},
|
|
8392
8635
|
$el: {
|
|
8393
8636
|
type: "string",
|
|
8394
8637
|
title: "$El",
|
|
@@ -9680,6 +9923,19 @@ export const IconSelectorSchema = {
|
|
|
9680
9923
|
"Render with a sibling toggle that sets this field to null when off",
|
|
9681
9924
|
default: false,
|
|
9682
9925
|
},
|
|
9926
|
+
defaultEnabled: {
|
|
9927
|
+
anyOf: [
|
|
9928
|
+
{
|
|
9929
|
+
type: "boolean",
|
|
9930
|
+
},
|
|
9931
|
+
{
|
|
9932
|
+
type: "null",
|
|
9933
|
+
},
|
|
9934
|
+
],
|
|
9935
|
+
title: "Defaultenabled",
|
|
9936
|
+
description:
|
|
9937
|
+
"For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.",
|
|
9938
|
+
},
|
|
9683
9939
|
formkit: {
|
|
9684
9940
|
type: "string",
|
|
9685
9941
|
const: "iconSelector",
|
|
@@ -10585,6 +10841,19 @@ export const InputMaskSchema = {
|
|
|
10585
10841
|
"Render with a sibling toggle that sets this field to null when off",
|
|
10586
10842
|
default: false,
|
|
10587
10843
|
},
|
|
10844
|
+
defaultEnabled: {
|
|
10845
|
+
anyOf: [
|
|
10846
|
+
{
|
|
10847
|
+
type: "boolean",
|
|
10848
|
+
},
|
|
10849
|
+
{
|
|
10850
|
+
type: "null",
|
|
10851
|
+
},
|
|
10852
|
+
],
|
|
10853
|
+
title: "Defaultenabled",
|
|
10854
|
+
description:
|
|
10855
|
+
"For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.",
|
|
10856
|
+
},
|
|
10588
10857
|
formkit: {
|
|
10589
10858
|
type: "string",
|
|
10590
10859
|
const: "primeInputMask",
|
|
@@ -10825,6 +11094,19 @@ export const InputNumberSchema = {
|
|
|
10825
11094
|
"Render with a sibling toggle that sets this field to null when off",
|
|
10826
11095
|
default: false,
|
|
10827
11096
|
},
|
|
11097
|
+
defaultEnabled: {
|
|
11098
|
+
anyOf: [
|
|
11099
|
+
{
|
|
11100
|
+
type: "boolean",
|
|
11101
|
+
},
|
|
11102
|
+
{
|
|
11103
|
+
type: "null",
|
|
11104
|
+
},
|
|
11105
|
+
],
|
|
11106
|
+
title: "Defaultenabled",
|
|
11107
|
+
description:
|
|
11108
|
+
"For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.",
|
|
11109
|
+
},
|
|
10828
11110
|
formkit: {
|
|
10829
11111
|
type: "string",
|
|
10830
11112
|
const: "primeInputNumber",
|
|
@@ -10992,28 +11274,16 @@ export const InputNumberSchema = {
|
|
|
10992
11274
|
default: true,
|
|
10993
11275
|
},
|
|
10994
11276
|
minFractionDigits: {
|
|
10995
|
-
|
|
10996
|
-
{
|
|
10997
|
-
type: "integer",
|
|
10998
|
-
},
|
|
10999
|
-
{
|
|
11000
|
-
type: "null",
|
|
11001
|
-
},
|
|
11002
|
-
],
|
|
11277
|
+
type: "integer",
|
|
11003
11278
|
title: "Minfractiondigits",
|
|
11004
11279
|
description: "Minimum number of fraction digits",
|
|
11280
|
+
default: 0,
|
|
11005
11281
|
},
|
|
11006
11282
|
maxFractionDigits: {
|
|
11007
|
-
|
|
11008
|
-
{
|
|
11009
|
-
type: "integer",
|
|
11010
|
-
},
|
|
11011
|
-
{
|
|
11012
|
-
type: "null",
|
|
11013
|
-
},
|
|
11014
|
-
],
|
|
11283
|
+
type: "integer",
|
|
11015
11284
|
title: "Maxfractiondigits",
|
|
11016
11285
|
description: "Maximum number of fraction digits",
|
|
11286
|
+
default: 6,
|
|
11017
11287
|
},
|
|
11018
11288
|
locale: {
|
|
11019
11289
|
anyOf: [
|
|
@@ -11155,6 +11425,19 @@ export const InputOtpSchema = {
|
|
|
11155
11425
|
"Render with a sibling toggle that sets this field to null when off",
|
|
11156
11426
|
default: false,
|
|
11157
11427
|
},
|
|
11428
|
+
defaultEnabled: {
|
|
11429
|
+
anyOf: [
|
|
11430
|
+
{
|
|
11431
|
+
type: "boolean",
|
|
11432
|
+
},
|
|
11433
|
+
{
|
|
11434
|
+
type: "null",
|
|
11435
|
+
},
|
|
11436
|
+
],
|
|
11437
|
+
title: "Defaultenabled",
|
|
11438
|
+
description:
|
|
11439
|
+
"For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.",
|
|
11440
|
+
},
|
|
11158
11441
|
formkit: {
|
|
11159
11442
|
type: "string",
|
|
11160
11443
|
const: "primeInputOtp",
|
|
@@ -11348,6 +11631,19 @@ export const InputTextSchema = {
|
|
|
11348
11631
|
"Render with a sibling toggle that sets this field to null when off",
|
|
11349
11632
|
default: false,
|
|
11350
11633
|
},
|
|
11634
|
+
defaultEnabled: {
|
|
11635
|
+
anyOf: [
|
|
11636
|
+
{
|
|
11637
|
+
type: "boolean",
|
|
11638
|
+
},
|
|
11639
|
+
{
|
|
11640
|
+
type: "null",
|
|
11641
|
+
},
|
|
11642
|
+
],
|
|
11643
|
+
title: "Defaultenabled",
|
|
11644
|
+
description:
|
|
11645
|
+
"For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.",
|
|
11646
|
+
},
|
|
11351
11647
|
formkit: {
|
|
11352
11648
|
type: "string",
|
|
11353
11649
|
const: "primeInputText",
|
|
@@ -11617,6 +11913,19 @@ export const KnobSchema = {
|
|
|
11617
11913
|
"Render with a sibling toggle that sets this field to null when off",
|
|
11618
11914
|
default: false,
|
|
11619
11915
|
},
|
|
11916
|
+
defaultEnabled: {
|
|
11917
|
+
anyOf: [
|
|
11918
|
+
{
|
|
11919
|
+
type: "boolean",
|
|
11920
|
+
},
|
|
11921
|
+
{
|
|
11922
|
+
type: "null",
|
|
11923
|
+
},
|
|
11924
|
+
],
|
|
11925
|
+
title: "Defaultenabled",
|
|
11926
|
+
description:
|
|
11927
|
+
"For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.",
|
|
11928
|
+
},
|
|
11620
11929
|
formkit: {
|
|
11621
11930
|
type: "string",
|
|
11622
11931
|
const: "primeKnob",
|
|
@@ -11894,6 +12203,19 @@ export const KnowledgeDatabaseSelectorSchema = {
|
|
|
11894
12203
|
"Render with a sibling toggle that sets this field to null when off",
|
|
11895
12204
|
default: false,
|
|
11896
12205
|
},
|
|
12206
|
+
defaultEnabled: {
|
|
12207
|
+
anyOf: [
|
|
12208
|
+
{
|
|
12209
|
+
type: "boolean",
|
|
12210
|
+
},
|
|
12211
|
+
{
|
|
12212
|
+
type: "null",
|
|
12213
|
+
},
|
|
12214
|
+
],
|
|
12215
|
+
title: "Defaultenabled",
|
|
12216
|
+
description:
|
|
12217
|
+
"For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.",
|
|
12218
|
+
},
|
|
11897
12219
|
formkit: {
|
|
11898
12220
|
type: "string",
|
|
11899
12221
|
const: "knowledgeDatabaseSelector",
|
|
@@ -12700,6 +13022,19 @@ export const ListboxSchema = {
|
|
|
12700
13022
|
"Render with a sibling toggle that sets this field to null when off",
|
|
12701
13023
|
default: false,
|
|
12702
13024
|
},
|
|
13025
|
+
defaultEnabled: {
|
|
13026
|
+
anyOf: [
|
|
13027
|
+
{
|
|
13028
|
+
type: "boolean",
|
|
13029
|
+
},
|
|
13030
|
+
{
|
|
13031
|
+
type: "null",
|
|
13032
|
+
},
|
|
13033
|
+
],
|
|
13034
|
+
title: "Defaultenabled",
|
|
13035
|
+
description:
|
|
13036
|
+
"For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.",
|
|
13037
|
+
},
|
|
12703
13038
|
formkit: {
|
|
12704
13039
|
type: "string",
|
|
12705
13040
|
const: "primeListbox",
|
|
@@ -12923,6 +13258,19 @@ export const LocaleInputSchema = {
|
|
|
12923
13258
|
"Render with a sibling toggle that sets this field to null when off",
|
|
12924
13259
|
default: false,
|
|
12925
13260
|
},
|
|
13261
|
+
defaultEnabled: {
|
|
13262
|
+
anyOf: [
|
|
13263
|
+
{
|
|
13264
|
+
type: "boolean",
|
|
13265
|
+
},
|
|
13266
|
+
{
|
|
13267
|
+
type: "null",
|
|
13268
|
+
},
|
|
13269
|
+
],
|
|
13270
|
+
title: "Defaultenabled",
|
|
13271
|
+
description:
|
|
13272
|
+
"For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.",
|
|
13273
|
+
},
|
|
12926
13274
|
formkit: {
|
|
12927
13275
|
type: "string",
|
|
12928
13276
|
const: "localeInput",
|
|
@@ -14570,6 +14918,19 @@ export const ModelSelectSchema = {
|
|
|
14570
14918
|
"Render with a sibling toggle that sets this field to null when off",
|
|
14571
14919
|
default: false,
|
|
14572
14920
|
},
|
|
14921
|
+
defaultEnabled: {
|
|
14922
|
+
anyOf: [
|
|
14923
|
+
{
|
|
14924
|
+
type: "boolean",
|
|
14925
|
+
},
|
|
14926
|
+
{
|
|
14927
|
+
type: "null",
|
|
14928
|
+
},
|
|
14929
|
+
],
|
|
14930
|
+
title: "Defaultenabled",
|
|
14931
|
+
description:
|
|
14932
|
+
"For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.",
|
|
14933
|
+
},
|
|
14573
14934
|
formkit: {
|
|
14574
14935
|
type: "string",
|
|
14575
14936
|
const: "modelSelect",
|
|
@@ -14784,6 +15145,19 @@ export const MultiSelectSchema = {
|
|
|
14784
15145
|
"Render with a sibling toggle that sets this field to null when off",
|
|
14785
15146
|
default: false,
|
|
14786
15147
|
},
|
|
15148
|
+
defaultEnabled: {
|
|
15149
|
+
anyOf: [
|
|
15150
|
+
{
|
|
15151
|
+
type: "boolean",
|
|
15152
|
+
},
|
|
15153
|
+
{
|
|
15154
|
+
type: "null",
|
|
15155
|
+
},
|
|
15156
|
+
],
|
|
15157
|
+
title: "Defaultenabled",
|
|
15158
|
+
description:
|
|
15159
|
+
"For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.",
|
|
15160
|
+
},
|
|
14787
15161
|
formkit: {
|
|
14788
15162
|
type: "string",
|
|
14789
15163
|
const: "primeMultiSelect",
|
|
@@ -15396,6 +15770,19 @@ export const OrgMemoryTenantInputSchema = {
|
|
|
15396
15770
|
"Render with a sibling toggle that sets this field to null when off",
|
|
15397
15771
|
default: false,
|
|
15398
15772
|
},
|
|
15773
|
+
defaultEnabled: {
|
|
15774
|
+
anyOf: [
|
|
15775
|
+
{
|
|
15776
|
+
type: "boolean",
|
|
15777
|
+
},
|
|
15778
|
+
{
|
|
15779
|
+
type: "null",
|
|
15780
|
+
},
|
|
15781
|
+
],
|
|
15782
|
+
title: "Defaultenabled",
|
|
15783
|
+
description:
|
|
15784
|
+
"For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.",
|
|
15785
|
+
},
|
|
15399
15786
|
formkit: {
|
|
15400
15787
|
type: "string",
|
|
15401
15788
|
const: "orgMemoryTenantInput",
|
|
@@ -15922,6 +16309,19 @@ export const PasswordSchema = {
|
|
|
15922
16309
|
"Render with a sibling toggle that sets this field to null when off",
|
|
15923
16310
|
default: false,
|
|
15924
16311
|
},
|
|
16312
|
+
defaultEnabled: {
|
|
16313
|
+
anyOf: [
|
|
16314
|
+
{
|
|
16315
|
+
type: "boolean",
|
|
16316
|
+
},
|
|
16317
|
+
{
|
|
16318
|
+
type: "null",
|
|
16319
|
+
},
|
|
16320
|
+
],
|
|
16321
|
+
title: "Defaultenabled",
|
|
16322
|
+
description:
|
|
16323
|
+
"For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.",
|
|
16324
|
+
},
|
|
15925
16325
|
formkit: {
|
|
15926
16326
|
type: "string",
|
|
15927
16327
|
const: "primePassword",
|
|
@@ -17149,6 +17549,19 @@ export const RadioButtonSchema = {
|
|
|
17149
17549
|
"Render with a sibling toggle that sets this field to null when off",
|
|
17150
17550
|
default: false,
|
|
17151
17551
|
},
|
|
17552
|
+
defaultEnabled: {
|
|
17553
|
+
anyOf: [
|
|
17554
|
+
{
|
|
17555
|
+
type: "boolean",
|
|
17556
|
+
},
|
|
17557
|
+
{
|
|
17558
|
+
type: "null",
|
|
17559
|
+
},
|
|
17560
|
+
],
|
|
17561
|
+
title: "Defaultenabled",
|
|
17562
|
+
description:
|
|
17563
|
+
"For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.",
|
|
17564
|
+
},
|
|
17152
17565
|
formkit: {
|
|
17153
17566
|
type: "string",
|
|
17154
17567
|
const: "primeRadioButton",
|
|
@@ -17357,6 +17770,19 @@ export const RatingSchema = {
|
|
|
17357
17770
|
"Render with a sibling toggle that sets this field to null when off",
|
|
17358
17771
|
default: false,
|
|
17359
17772
|
},
|
|
17773
|
+
defaultEnabled: {
|
|
17774
|
+
anyOf: [
|
|
17775
|
+
{
|
|
17776
|
+
type: "boolean",
|
|
17777
|
+
},
|
|
17778
|
+
{
|
|
17779
|
+
type: "null",
|
|
17780
|
+
},
|
|
17781
|
+
],
|
|
17782
|
+
title: "Defaultenabled",
|
|
17783
|
+
description:
|
|
17784
|
+
"For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.",
|
|
17785
|
+
},
|
|
17360
17786
|
formkit: {
|
|
17361
17787
|
type: "string",
|
|
17362
17788
|
const: "primeRating",
|
|
@@ -17571,6 +17997,19 @@ export const RepeaterSchema = {
|
|
|
17571
17997
|
"Render with a sibling toggle that sets this field to null when off",
|
|
17572
17998
|
default: false,
|
|
17573
17999
|
},
|
|
18000
|
+
defaultEnabled: {
|
|
18001
|
+
anyOf: [
|
|
18002
|
+
{
|
|
18003
|
+
type: "boolean",
|
|
18004
|
+
},
|
|
18005
|
+
{
|
|
18006
|
+
type: "null",
|
|
18007
|
+
},
|
|
18008
|
+
],
|
|
18009
|
+
title: "Defaultenabled",
|
|
18010
|
+
description:
|
|
18011
|
+
"For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.",
|
|
18012
|
+
},
|
|
17574
18013
|
$formkit: {
|
|
17575
18014
|
type: "string",
|
|
17576
18015
|
const: "repeater",
|
|
@@ -18641,6 +19080,19 @@ export const SelectSchema = {
|
|
|
18641
19080
|
"Render with a sibling toggle that sets this field to null when off",
|
|
18642
19081
|
default: false,
|
|
18643
19082
|
},
|
|
19083
|
+
defaultEnabled: {
|
|
19084
|
+
anyOf: [
|
|
19085
|
+
{
|
|
19086
|
+
type: "boolean",
|
|
19087
|
+
},
|
|
19088
|
+
{
|
|
19089
|
+
type: "null",
|
|
19090
|
+
},
|
|
19091
|
+
],
|
|
19092
|
+
title: "Defaultenabled",
|
|
19093
|
+
description:
|
|
19094
|
+
"For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.",
|
|
19095
|
+
},
|
|
18644
19096
|
formkit: {
|
|
18645
19097
|
type: "string",
|
|
18646
19098
|
const: "primeSelect",
|
|
@@ -18908,6 +19360,19 @@ export const SelectButtonSchema = {
|
|
|
18908
19360
|
"Render with a sibling toggle that sets this field to null when off",
|
|
18909
19361
|
default: false,
|
|
18910
19362
|
},
|
|
19363
|
+
defaultEnabled: {
|
|
19364
|
+
anyOf: [
|
|
19365
|
+
{
|
|
19366
|
+
type: "boolean",
|
|
19367
|
+
},
|
|
19368
|
+
{
|
|
19369
|
+
type: "null",
|
|
19370
|
+
},
|
|
19371
|
+
],
|
|
19372
|
+
title: "Defaultenabled",
|
|
19373
|
+
description:
|
|
19374
|
+
"For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.",
|
|
19375
|
+
},
|
|
18911
19376
|
formkit: {
|
|
18912
19377
|
type: "string",
|
|
18913
19378
|
const: "primeSelectButton",
|
|
@@ -19426,6 +19891,19 @@ export const SliderSchema = {
|
|
|
19426
19891
|
"Render with a sibling toggle that sets this field to null when off",
|
|
19427
19892
|
default: false,
|
|
19428
19893
|
},
|
|
19894
|
+
defaultEnabled: {
|
|
19895
|
+
anyOf: [
|
|
19896
|
+
{
|
|
19897
|
+
type: "boolean",
|
|
19898
|
+
},
|
|
19899
|
+
{
|
|
19900
|
+
type: "null",
|
|
19901
|
+
},
|
|
19902
|
+
],
|
|
19903
|
+
title: "Defaultenabled",
|
|
19904
|
+
description:
|
|
19905
|
+
"For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.",
|
|
19906
|
+
},
|
|
19429
19907
|
formkit: {
|
|
19430
19908
|
type: "string",
|
|
19431
19909
|
const: "primeSlider",
|
|
@@ -20282,6 +20760,19 @@ export const TextareaSchema = {
|
|
|
20282
20760
|
"Render with a sibling toggle that sets this field to null when off",
|
|
20283
20761
|
default: false,
|
|
20284
20762
|
},
|
|
20763
|
+
defaultEnabled: {
|
|
20764
|
+
anyOf: [
|
|
20765
|
+
{
|
|
20766
|
+
type: "boolean",
|
|
20767
|
+
},
|
|
20768
|
+
{
|
|
20769
|
+
type: "null",
|
|
20770
|
+
},
|
|
20771
|
+
],
|
|
20772
|
+
title: "Defaultenabled",
|
|
20773
|
+
description:
|
|
20774
|
+
"For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.",
|
|
20775
|
+
},
|
|
20285
20776
|
formkit: {
|
|
20286
20777
|
type: "string",
|
|
20287
20778
|
const: "primeTextarea",
|
|
@@ -20816,6 +21307,19 @@ export const ToggleButtonSchema = {
|
|
|
20816
21307
|
"Render with a sibling toggle that sets this field to null when off",
|
|
20817
21308
|
default: false,
|
|
20818
21309
|
},
|
|
21310
|
+
defaultEnabled: {
|
|
21311
|
+
anyOf: [
|
|
21312
|
+
{
|
|
21313
|
+
type: "boolean",
|
|
21314
|
+
},
|
|
21315
|
+
{
|
|
21316
|
+
type: "null",
|
|
21317
|
+
},
|
|
21318
|
+
],
|
|
21319
|
+
title: "Defaultenabled",
|
|
21320
|
+
description:
|
|
21321
|
+
"For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.",
|
|
21322
|
+
},
|
|
20819
21323
|
formkit: {
|
|
20820
21324
|
type: "string",
|
|
20821
21325
|
const: "primeToggleButton",
|
|
@@ -21048,6 +21552,19 @@ export const ToggleSwitchSchema = {
|
|
|
21048
21552
|
"Render with a sibling toggle that sets this field to null when off",
|
|
21049
21553
|
default: false,
|
|
21050
21554
|
},
|
|
21555
|
+
defaultEnabled: {
|
|
21556
|
+
anyOf: [
|
|
21557
|
+
{
|
|
21558
|
+
type: "boolean",
|
|
21559
|
+
},
|
|
21560
|
+
{
|
|
21561
|
+
type: "null",
|
|
21562
|
+
},
|
|
21563
|
+
],
|
|
21564
|
+
title: "Defaultenabled",
|
|
21565
|
+
description:
|
|
21566
|
+
"For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.",
|
|
21567
|
+
},
|
|
21051
21568
|
formkit: {
|
|
21052
21569
|
type: "string",
|
|
21053
21570
|
const: "primeToggleSwitch",
|
|
@@ -22464,6 +22981,19 @@ export const VectorStoreInputSchema = {
|
|
|
22464
22981
|
"Render with a sibling toggle that sets this field to null when off",
|
|
22465
22982
|
default: false,
|
|
22466
22983
|
},
|
|
22984
|
+
defaultEnabled: {
|
|
22985
|
+
anyOf: [
|
|
22986
|
+
{
|
|
22987
|
+
type: "boolean",
|
|
22988
|
+
},
|
|
22989
|
+
{
|
|
22990
|
+
type: "null",
|
|
22991
|
+
},
|
|
22992
|
+
],
|
|
22993
|
+
title: "Defaultenabled",
|
|
22994
|
+
description:
|
|
22995
|
+
"For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.",
|
|
22996
|
+
},
|
|
22467
22997
|
formkit: {
|
|
22468
22998
|
type: "string",
|
|
22469
22999
|
const: "vectorStoreInput",
|
|
@@ -23748,6 +24278,19 @@ export const AgentSelectorWritableSchema = {
|
|
|
23748
24278
|
"Render with a sibling toggle that sets this field to null when off",
|
|
23749
24279
|
default: false,
|
|
23750
24280
|
},
|
|
24281
|
+
defaultEnabled: {
|
|
24282
|
+
anyOf: [
|
|
24283
|
+
{
|
|
24284
|
+
type: "boolean",
|
|
24285
|
+
},
|
|
24286
|
+
{
|
|
24287
|
+
type: "null",
|
|
24288
|
+
},
|
|
24289
|
+
],
|
|
24290
|
+
title: "Defaultenabled",
|
|
24291
|
+
description:
|
|
24292
|
+
"For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.",
|
|
24293
|
+
},
|
|
23751
24294
|
formkit: {
|
|
23752
24295
|
type: "string",
|
|
23753
24296
|
const: "agentSelector",
|
|
@@ -24390,6 +24933,19 @@ export const CascadeSelectWritableSchema = {
|
|
|
24390
24933
|
"Render with a sibling toggle that sets this field to null when off",
|
|
24391
24934
|
default: false,
|
|
24392
24935
|
},
|
|
24936
|
+
defaultEnabled: {
|
|
24937
|
+
anyOf: [
|
|
24938
|
+
{
|
|
24939
|
+
type: "boolean",
|
|
24940
|
+
},
|
|
24941
|
+
{
|
|
24942
|
+
type: "null",
|
|
24943
|
+
},
|
|
24944
|
+
],
|
|
24945
|
+
title: "Defaultenabled",
|
|
24946
|
+
description:
|
|
24947
|
+
"For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.",
|
|
24948
|
+
},
|
|
24393
24949
|
formkit: {
|
|
24394
24950
|
type: "string",
|
|
24395
24951
|
const: "primeCascadeSelect",
|
|
@@ -24699,6 +25255,19 @@ export const CheckboxWritableSchema = {
|
|
|
24699
25255
|
"Render with a sibling toggle that sets this field to null when off",
|
|
24700
25256
|
default: false,
|
|
24701
25257
|
},
|
|
25258
|
+
defaultEnabled: {
|
|
25259
|
+
anyOf: [
|
|
25260
|
+
{
|
|
25261
|
+
type: "boolean",
|
|
25262
|
+
},
|
|
25263
|
+
{
|
|
25264
|
+
type: "null",
|
|
25265
|
+
},
|
|
25266
|
+
],
|
|
25267
|
+
title: "Defaultenabled",
|
|
25268
|
+
description:
|
|
25269
|
+
"For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.",
|
|
25270
|
+
},
|
|
24702
25271
|
formkit: {
|
|
24703
25272
|
type: "string",
|
|
24704
25273
|
const: "primeCheckbox",
|
|
@@ -24937,6 +25506,19 @@ export const ChipsInputWritableSchema = {
|
|
|
24937
25506
|
"Render with a sibling toggle that sets this field to null when off",
|
|
24938
25507
|
default: false,
|
|
24939
25508
|
},
|
|
25509
|
+
defaultEnabled: {
|
|
25510
|
+
anyOf: [
|
|
25511
|
+
{
|
|
25512
|
+
type: "boolean",
|
|
25513
|
+
},
|
|
25514
|
+
{
|
|
25515
|
+
type: "null",
|
|
25516
|
+
},
|
|
25517
|
+
],
|
|
25518
|
+
title: "Defaultenabled",
|
|
25519
|
+
description:
|
|
25520
|
+
"For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.",
|
|
25521
|
+
},
|
|
24940
25522
|
formkit: {
|
|
24941
25523
|
type: "string",
|
|
24942
25524
|
const: "chipsInput",
|
|
@@ -25153,6 +25735,19 @@ export const ColorPickerWritableSchema = {
|
|
|
25153
25735
|
"Render with a sibling toggle that sets this field to null when off",
|
|
25154
25736
|
default: false,
|
|
25155
25737
|
},
|
|
25738
|
+
defaultEnabled: {
|
|
25739
|
+
anyOf: [
|
|
25740
|
+
{
|
|
25741
|
+
type: "boolean",
|
|
25742
|
+
},
|
|
25743
|
+
{
|
|
25744
|
+
type: "null",
|
|
25745
|
+
},
|
|
25746
|
+
],
|
|
25747
|
+
title: "Defaultenabled",
|
|
25748
|
+
description:
|
|
25749
|
+
"For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.",
|
|
25750
|
+
},
|
|
25156
25751
|
formkit: {
|
|
25157
25752
|
type: "string",
|
|
25158
25753
|
const: "primeColorPicker",
|
|
@@ -25508,6 +26103,12 @@ export const ContextualizedAgentEventWritableSchema = {
|
|
|
25508
26103
|
{
|
|
25509
26104
|
$ref: "#/components/schemas/ThoughtEventWritable",
|
|
25510
26105
|
},
|
|
26106
|
+
{
|
|
26107
|
+
$ref: "#/components/schemas/ConversationTitleEventWritable",
|
|
26108
|
+
},
|
|
26109
|
+
{
|
|
26110
|
+
$ref: "#/components/schemas/FollowUpQuestionsEventWritable",
|
|
26111
|
+
},
|
|
25511
26112
|
{
|
|
25512
26113
|
$ref: "#/components/schemas/GuardEventWritable",
|
|
25513
26114
|
},
|
|
@@ -25657,6 +26258,54 @@ export const ControlEventWritableSchema = {
|
|
|
25657
26258
|
"Represents a system-level or workflow-level signal, often used to coordinate steps,\nindicate state changes, or trigger specific actions in the event-driven architecture.\n\n### Why ControlEvent?\nWhile `BaseEvent` covers the general structure for any event, `ControlEvent` marks an event as\nparticularly important for controlling the flow of a system. Hence, all events taken as inputs to\nworkflow steps must be of type `ControlEvent`. Even though other type of events can be returned\nfrom workflow steps, only 'ControlEvent' influence the flow of the system.\n\nBy subclassing `BaseEvent`, `ControlEvent` benefits from automatic type registration and\nserialization, ensuring that control signals are as easy to produce and consume as any other event.",
|
|
25658
26259
|
} as const;
|
|
25659
26260
|
|
|
26261
|
+
export const ConversationTitleEventWritableSchema = {
|
|
26262
|
+
properties: {
|
|
26263
|
+
event_id: {
|
|
26264
|
+
type: "string",
|
|
26265
|
+
title: "Event Id",
|
|
26266
|
+
},
|
|
26267
|
+
created_at: {
|
|
26268
|
+
type: "integer",
|
|
26269
|
+
title: "Created At",
|
|
26270
|
+
description:
|
|
26271
|
+
"The time (in ns since epoch) the event was stored in the event store",
|
|
26272
|
+
},
|
|
26273
|
+
display_name: {
|
|
26274
|
+
anyOf: [
|
|
26275
|
+
{
|
|
26276
|
+
$ref: "#/components/schemas/LocaleString",
|
|
26277
|
+
},
|
|
26278
|
+
{
|
|
26279
|
+
type: "null",
|
|
26280
|
+
},
|
|
26281
|
+
],
|
|
26282
|
+
description: "Display name for the event",
|
|
26283
|
+
},
|
|
26284
|
+
display_description: {
|
|
26285
|
+
anyOf: [
|
|
26286
|
+
{
|
|
26287
|
+
$ref: "#/components/schemas/LocaleString",
|
|
26288
|
+
},
|
|
26289
|
+
{
|
|
26290
|
+
type: "null",
|
|
26291
|
+
},
|
|
26292
|
+
],
|
|
26293
|
+
description: "Display description for the event",
|
|
26294
|
+
},
|
|
26295
|
+
title: {
|
|
26296
|
+
type: "string",
|
|
26297
|
+
title: "Title",
|
|
26298
|
+
description: "The generated title for the conversation.",
|
|
26299
|
+
},
|
|
26300
|
+
},
|
|
26301
|
+
additionalProperties: true,
|
|
26302
|
+
type: "object",
|
|
26303
|
+
required: ["title"],
|
|
26304
|
+
title: "ConversationTitleEvent",
|
|
26305
|
+
description:
|
|
26306
|
+
"Carries a generated title for the whole conversation (thread), produced by the agent once a\ntopic becomes identifiable. The agent has the richest context about the conversation, so it\nowns this metadata instead of leaving it to the chat UI's task model.\n\nA thread receives a single, stable title: the agent emits this event only on the turn where a\ntitle is first determined and never again for that thread.",
|
|
26307
|
+
} as const;
|
|
26308
|
+
|
|
25660
26309
|
export const DatePickerWritableSchema = {
|
|
25661
26310
|
properties: {
|
|
25662
26311
|
is_formkit_element: {
|
|
@@ -25698,6 +26347,19 @@ export const DatePickerWritableSchema = {
|
|
|
25698
26347
|
"Render with a sibling toggle that sets this field to null when off",
|
|
25699
26348
|
default: false,
|
|
25700
26349
|
},
|
|
26350
|
+
defaultEnabled: {
|
|
26351
|
+
anyOf: [
|
|
26352
|
+
{
|
|
26353
|
+
type: "boolean",
|
|
26354
|
+
},
|
|
26355
|
+
{
|
|
26356
|
+
type: "null",
|
|
26357
|
+
},
|
|
26358
|
+
],
|
|
26359
|
+
title: "Defaultenabled",
|
|
26360
|
+
description:
|
|
26361
|
+
"For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.",
|
|
26362
|
+
},
|
|
25701
26363
|
formkit: {
|
|
25702
26364
|
type: "string",
|
|
25703
26365
|
const: "primeDatePicker",
|
|
@@ -26263,6 +26925,57 @@ export const FewShotRejectEventWritableSchema = {
|
|
|
26263
26925
|
"Event indicating that the few-shot guard rejected the request.\n\nThis event is triggered when the few-shot guard determines that\nthe user query is inappropriate based on analysis of provided examples.\nIt signifies that the request does not match the patterns of acceptable queries\ndemonstrated in the few-shot examples and should be blocked.",
|
|
26264
26926
|
} as const;
|
|
26265
26927
|
|
|
26928
|
+
export const FollowUpQuestionsEventWritableSchema = {
|
|
26929
|
+
properties: {
|
|
26930
|
+
event_id: {
|
|
26931
|
+
type: "string",
|
|
26932
|
+
title: "Event Id",
|
|
26933
|
+
},
|
|
26934
|
+
created_at: {
|
|
26935
|
+
type: "integer",
|
|
26936
|
+
title: "Created At",
|
|
26937
|
+
description:
|
|
26938
|
+
"The time (in ns since epoch) the event was stored in the event store",
|
|
26939
|
+
},
|
|
26940
|
+
display_name: {
|
|
26941
|
+
anyOf: [
|
|
26942
|
+
{
|
|
26943
|
+
$ref: "#/components/schemas/LocaleString",
|
|
26944
|
+
},
|
|
26945
|
+
{
|
|
26946
|
+
type: "null",
|
|
26947
|
+
},
|
|
26948
|
+
],
|
|
26949
|
+
description: "Display name for the event",
|
|
26950
|
+
},
|
|
26951
|
+
display_description: {
|
|
26952
|
+
anyOf: [
|
|
26953
|
+
{
|
|
26954
|
+
$ref: "#/components/schemas/LocaleString",
|
|
26955
|
+
},
|
|
26956
|
+
{
|
|
26957
|
+
type: "null",
|
|
26958
|
+
},
|
|
26959
|
+
],
|
|
26960
|
+
description: "Display description for the event",
|
|
26961
|
+
},
|
|
26962
|
+
questions: {
|
|
26963
|
+
items: {
|
|
26964
|
+
type: "string",
|
|
26965
|
+
},
|
|
26966
|
+
type: "array",
|
|
26967
|
+
title: "Questions",
|
|
26968
|
+
description: "The suggested follow-up questions for the user.",
|
|
26969
|
+
},
|
|
26970
|
+
},
|
|
26971
|
+
additionalProperties: true,
|
|
26972
|
+
type: "object",
|
|
26973
|
+
required: ["questions"],
|
|
26974
|
+
title: "FollowUpQuestionsEvent",
|
|
26975
|
+
description:
|
|
26976
|
+
"Carries follow-up questions the user might want to ask next, produced by the agent after each\nanswer. These are non-blocking UI suggestions — unlike the namespace-selection\n``FollowUpQuestion`` HITL events, the user is never required to answer them.\n\nRegenerated every turn since they depend on the latest answer.",
|
|
26977
|
+
} as const;
|
|
26978
|
+
|
|
26266
26979
|
export const FullAgentInstanceDTOWritableSchema = {
|
|
26267
26980
|
properties: {
|
|
26268
26981
|
agent_class: {
|
|
@@ -26596,6 +27309,19 @@ export const GroupWritableSchema = {
|
|
|
26596
27309
|
"Render with a sibling toggle that sets this field to null when off",
|
|
26597
27310
|
default: false,
|
|
26598
27311
|
},
|
|
27312
|
+
defaultEnabled: {
|
|
27313
|
+
anyOf: [
|
|
27314
|
+
{
|
|
27315
|
+
type: "boolean",
|
|
27316
|
+
},
|
|
27317
|
+
{
|
|
27318
|
+
type: "null",
|
|
27319
|
+
},
|
|
27320
|
+
],
|
|
27321
|
+
title: "Defaultenabled",
|
|
27322
|
+
description:
|
|
27323
|
+
"For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.",
|
|
27324
|
+
},
|
|
26599
27325
|
$formkit: {
|
|
26600
27326
|
type: "string",
|
|
26601
27327
|
const: "group",
|
|
@@ -27692,6 +28418,19 @@ export const IconSelectorWritableSchema = {
|
|
|
27692
28418
|
"Render with a sibling toggle that sets this field to null when off",
|
|
27693
28419
|
default: false,
|
|
27694
28420
|
},
|
|
28421
|
+
defaultEnabled: {
|
|
28422
|
+
anyOf: [
|
|
28423
|
+
{
|
|
28424
|
+
type: "boolean",
|
|
28425
|
+
},
|
|
28426
|
+
{
|
|
28427
|
+
type: "null",
|
|
28428
|
+
},
|
|
28429
|
+
],
|
|
28430
|
+
title: "Defaultenabled",
|
|
28431
|
+
description:
|
|
28432
|
+
"For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.",
|
|
28433
|
+
},
|
|
27695
28434
|
formkit: {
|
|
27696
28435
|
type: "string",
|
|
27697
28436
|
const: "iconSelector",
|
|
@@ -27914,6 +28653,19 @@ export const InputMaskWritableSchema = {
|
|
|
27914
28653
|
"Render with a sibling toggle that sets this field to null when off",
|
|
27915
28654
|
default: false,
|
|
27916
28655
|
},
|
|
28656
|
+
defaultEnabled: {
|
|
28657
|
+
anyOf: [
|
|
28658
|
+
{
|
|
28659
|
+
type: "boolean",
|
|
28660
|
+
},
|
|
28661
|
+
{
|
|
28662
|
+
type: "null",
|
|
28663
|
+
},
|
|
28664
|
+
],
|
|
28665
|
+
title: "Defaultenabled",
|
|
28666
|
+
description:
|
|
28667
|
+
"For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.",
|
|
28668
|
+
},
|
|
27917
28669
|
formkit: {
|
|
27918
28670
|
type: "string",
|
|
27919
28671
|
const: "primeInputMask",
|
|
@@ -28149,6 +28901,19 @@ export const InputNumberWritableSchema = {
|
|
|
28149
28901
|
"Render with a sibling toggle that sets this field to null when off",
|
|
28150
28902
|
default: false,
|
|
28151
28903
|
},
|
|
28904
|
+
defaultEnabled: {
|
|
28905
|
+
anyOf: [
|
|
28906
|
+
{
|
|
28907
|
+
type: "boolean",
|
|
28908
|
+
},
|
|
28909
|
+
{
|
|
28910
|
+
type: "null",
|
|
28911
|
+
},
|
|
28912
|
+
],
|
|
28913
|
+
title: "Defaultenabled",
|
|
28914
|
+
description:
|
|
28915
|
+
"For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.",
|
|
28916
|
+
},
|
|
28152
28917
|
formkit: {
|
|
28153
28918
|
type: "string",
|
|
28154
28919
|
const: "primeInputNumber",
|
|
@@ -28316,28 +29081,16 @@ export const InputNumberWritableSchema = {
|
|
|
28316
29081
|
default: true,
|
|
28317
29082
|
},
|
|
28318
29083
|
minFractionDigits: {
|
|
28319
|
-
|
|
28320
|
-
{
|
|
28321
|
-
type: "integer",
|
|
28322
|
-
},
|
|
28323
|
-
{
|
|
28324
|
-
type: "null",
|
|
28325
|
-
},
|
|
28326
|
-
],
|
|
29084
|
+
type: "integer",
|
|
28327
29085
|
title: "Minfractiondigits",
|
|
28328
29086
|
description: "Minimum number of fraction digits",
|
|
29087
|
+
default: 0,
|
|
28329
29088
|
},
|
|
28330
29089
|
maxFractionDigits: {
|
|
28331
|
-
|
|
28332
|
-
{
|
|
28333
|
-
type: "integer",
|
|
28334
|
-
},
|
|
28335
|
-
{
|
|
28336
|
-
type: "null",
|
|
28337
|
-
},
|
|
28338
|
-
],
|
|
29090
|
+
type: "integer",
|
|
28339
29091
|
title: "Maxfractiondigits",
|
|
28340
29092
|
description: "Maximum number of fraction digits",
|
|
29093
|
+
default: 6,
|
|
28341
29094
|
},
|
|
28342
29095
|
locale: {
|
|
28343
29096
|
anyOf: [
|
|
@@ -28474,6 +29227,19 @@ export const InputOtpWritableSchema = {
|
|
|
28474
29227
|
"Render with a sibling toggle that sets this field to null when off",
|
|
28475
29228
|
default: false,
|
|
28476
29229
|
},
|
|
29230
|
+
defaultEnabled: {
|
|
29231
|
+
anyOf: [
|
|
29232
|
+
{
|
|
29233
|
+
type: "boolean",
|
|
29234
|
+
},
|
|
29235
|
+
{
|
|
29236
|
+
type: "null",
|
|
29237
|
+
},
|
|
29238
|
+
],
|
|
29239
|
+
title: "Defaultenabled",
|
|
29240
|
+
description:
|
|
29241
|
+
"For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.",
|
|
29242
|
+
},
|
|
28477
29243
|
formkit: {
|
|
28478
29244
|
type: "string",
|
|
28479
29245
|
const: "primeInputOtp",
|
|
@@ -28662,6 +29428,19 @@ export const InputTextWritableSchema = {
|
|
|
28662
29428
|
"Render with a sibling toggle that sets this field to null when off",
|
|
28663
29429
|
default: false,
|
|
28664
29430
|
},
|
|
29431
|
+
defaultEnabled: {
|
|
29432
|
+
anyOf: [
|
|
29433
|
+
{
|
|
29434
|
+
type: "boolean",
|
|
29435
|
+
},
|
|
29436
|
+
{
|
|
29437
|
+
type: "null",
|
|
29438
|
+
},
|
|
29439
|
+
],
|
|
29440
|
+
title: "Defaultenabled",
|
|
29441
|
+
description:
|
|
29442
|
+
"For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.",
|
|
29443
|
+
},
|
|
28665
29444
|
formkit: {
|
|
28666
29445
|
type: "string",
|
|
28667
29446
|
const: "primeInputText",
|
|
@@ -28891,6 +29670,19 @@ export const KnobWritableSchema = {
|
|
|
28891
29670
|
"Render with a sibling toggle that sets this field to null when off",
|
|
28892
29671
|
default: false,
|
|
28893
29672
|
},
|
|
29673
|
+
defaultEnabled: {
|
|
29674
|
+
anyOf: [
|
|
29675
|
+
{
|
|
29676
|
+
type: "boolean",
|
|
29677
|
+
},
|
|
29678
|
+
{
|
|
29679
|
+
type: "null",
|
|
29680
|
+
},
|
|
29681
|
+
],
|
|
29682
|
+
title: "Defaultenabled",
|
|
29683
|
+
description:
|
|
29684
|
+
"For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.",
|
|
29685
|
+
},
|
|
28894
29686
|
formkit: {
|
|
28895
29687
|
type: "string",
|
|
28896
29688
|
const: "primeKnob",
|
|
@@ -29163,6 +29955,19 @@ export const KnowledgeDatabaseSelectorWritableSchema = {
|
|
|
29163
29955
|
"Render with a sibling toggle that sets this field to null when off",
|
|
29164
29956
|
default: false,
|
|
29165
29957
|
},
|
|
29958
|
+
defaultEnabled: {
|
|
29959
|
+
anyOf: [
|
|
29960
|
+
{
|
|
29961
|
+
type: "boolean",
|
|
29962
|
+
},
|
|
29963
|
+
{
|
|
29964
|
+
type: "null",
|
|
29965
|
+
},
|
|
29966
|
+
],
|
|
29967
|
+
title: "Defaultenabled",
|
|
29968
|
+
description:
|
|
29969
|
+
"For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.",
|
|
29970
|
+
},
|
|
29166
29971
|
formkit: {
|
|
29167
29972
|
type: "string",
|
|
29168
29973
|
const: "knowledgeDatabaseSelector",
|
|
@@ -29892,6 +30697,19 @@ export const ListboxWritableSchema = {
|
|
|
29892
30697
|
"Render with a sibling toggle that sets this field to null when off",
|
|
29893
30698
|
default: false,
|
|
29894
30699
|
},
|
|
30700
|
+
defaultEnabled: {
|
|
30701
|
+
anyOf: [
|
|
30702
|
+
{
|
|
30703
|
+
type: "boolean",
|
|
30704
|
+
},
|
|
30705
|
+
{
|
|
30706
|
+
type: "null",
|
|
30707
|
+
},
|
|
30708
|
+
],
|
|
30709
|
+
title: "Defaultenabled",
|
|
30710
|
+
description:
|
|
30711
|
+
"For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.",
|
|
30712
|
+
},
|
|
29895
30713
|
formkit: {
|
|
29896
30714
|
type: "string",
|
|
29897
30715
|
const: "primeListbox",
|
|
@@ -30110,6 +30928,19 @@ export const LocaleInputWritableSchema = {
|
|
|
30110
30928
|
"Render with a sibling toggle that sets this field to null when off",
|
|
30111
30929
|
default: false,
|
|
30112
30930
|
},
|
|
30931
|
+
defaultEnabled: {
|
|
30932
|
+
anyOf: [
|
|
30933
|
+
{
|
|
30934
|
+
type: "boolean",
|
|
30935
|
+
},
|
|
30936
|
+
{
|
|
30937
|
+
type: "null",
|
|
30938
|
+
},
|
|
30939
|
+
],
|
|
30940
|
+
title: "Defaultenabled",
|
|
30941
|
+
description:
|
|
30942
|
+
"For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.",
|
|
30943
|
+
},
|
|
30113
30944
|
formkit: {
|
|
30114
30945
|
type: "string",
|
|
30115
30946
|
const: "localeInput",
|
|
@@ -30499,6 +31330,19 @@ export const ModelSelectWritableSchema = {
|
|
|
30499
31330
|
"Render with a sibling toggle that sets this field to null when off",
|
|
30500
31331
|
default: false,
|
|
30501
31332
|
},
|
|
31333
|
+
defaultEnabled: {
|
|
31334
|
+
anyOf: [
|
|
31335
|
+
{
|
|
31336
|
+
type: "boolean",
|
|
31337
|
+
},
|
|
31338
|
+
{
|
|
31339
|
+
type: "null",
|
|
31340
|
+
},
|
|
31341
|
+
],
|
|
31342
|
+
title: "Defaultenabled",
|
|
31343
|
+
description:
|
|
31344
|
+
"For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.",
|
|
31345
|
+
},
|
|
30502
31346
|
formkit: {
|
|
30503
31347
|
type: "string",
|
|
30504
31348
|
const: "modelSelect",
|
|
@@ -30708,6 +31552,19 @@ export const MultiSelectWritableSchema = {
|
|
|
30708
31552
|
"Render with a sibling toggle that sets this field to null when off",
|
|
30709
31553
|
default: false,
|
|
30710
31554
|
},
|
|
31555
|
+
defaultEnabled: {
|
|
31556
|
+
anyOf: [
|
|
31557
|
+
{
|
|
31558
|
+
type: "boolean",
|
|
31559
|
+
},
|
|
31560
|
+
{
|
|
31561
|
+
type: "null",
|
|
31562
|
+
},
|
|
31563
|
+
],
|
|
31564
|
+
title: "Defaultenabled",
|
|
31565
|
+
description:
|
|
31566
|
+
"For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.",
|
|
31567
|
+
},
|
|
30711
31568
|
formkit: {
|
|
30712
31569
|
type: "string",
|
|
30713
31570
|
const: "primeMultiSelect",
|
|
@@ -30948,6 +31805,19 @@ export const OrgMemoryTenantInputWritableSchema = {
|
|
|
30948
31805
|
"Render with a sibling toggle that sets this field to null when off",
|
|
30949
31806
|
default: false,
|
|
30950
31807
|
},
|
|
31808
|
+
defaultEnabled: {
|
|
31809
|
+
anyOf: [
|
|
31810
|
+
{
|
|
31811
|
+
type: "boolean",
|
|
31812
|
+
},
|
|
31813
|
+
{
|
|
31814
|
+
type: "null",
|
|
31815
|
+
},
|
|
31816
|
+
],
|
|
31817
|
+
title: "Defaultenabled",
|
|
31818
|
+
description:
|
|
31819
|
+
"For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.",
|
|
31820
|
+
},
|
|
30951
31821
|
formkit: {
|
|
30952
31822
|
type: "string",
|
|
30953
31823
|
const: "orgMemoryTenantInput",
|
|
@@ -31252,6 +32122,19 @@ export const PasswordWritableSchema = {
|
|
|
31252
32122
|
"Render with a sibling toggle that sets this field to null when off",
|
|
31253
32123
|
default: false,
|
|
31254
32124
|
},
|
|
32125
|
+
defaultEnabled: {
|
|
32126
|
+
anyOf: [
|
|
32127
|
+
{
|
|
32128
|
+
type: "boolean",
|
|
32129
|
+
},
|
|
32130
|
+
{
|
|
32131
|
+
type: "null",
|
|
32132
|
+
},
|
|
32133
|
+
],
|
|
32134
|
+
title: "Defaultenabled",
|
|
32135
|
+
description:
|
|
32136
|
+
"For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.",
|
|
32137
|
+
},
|
|
31255
32138
|
formkit: {
|
|
31256
32139
|
type: "string",
|
|
31257
32140
|
const: "primePassword",
|
|
@@ -32038,6 +32921,19 @@ export const RadioButtonWritableSchema = {
|
|
|
32038
32921
|
"Render with a sibling toggle that sets this field to null when off",
|
|
32039
32922
|
default: false,
|
|
32040
32923
|
},
|
|
32924
|
+
defaultEnabled: {
|
|
32925
|
+
anyOf: [
|
|
32926
|
+
{
|
|
32927
|
+
type: "boolean",
|
|
32928
|
+
},
|
|
32929
|
+
{
|
|
32930
|
+
type: "null",
|
|
32931
|
+
},
|
|
32932
|
+
],
|
|
32933
|
+
title: "Defaultenabled",
|
|
32934
|
+
description:
|
|
32935
|
+
"For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.",
|
|
32936
|
+
},
|
|
32041
32937
|
formkit: {
|
|
32042
32938
|
type: "string",
|
|
32043
32939
|
const: "primeRadioButton",
|
|
@@ -32241,6 +33137,19 @@ export const RatingWritableSchema = {
|
|
|
32241
33137
|
"Render with a sibling toggle that sets this field to null when off",
|
|
32242
33138
|
default: false,
|
|
32243
33139
|
},
|
|
33140
|
+
defaultEnabled: {
|
|
33141
|
+
anyOf: [
|
|
33142
|
+
{
|
|
33143
|
+
type: "boolean",
|
|
33144
|
+
},
|
|
33145
|
+
{
|
|
33146
|
+
type: "null",
|
|
33147
|
+
},
|
|
33148
|
+
],
|
|
33149
|
+
title: "Defaultenabled",
|
|
33150
|
+
description:
|
|
33151
|
+
"For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.",
|
|
33152
|
+
},
|
|
32244
33153
|
formkit: {
|
|
32245
33154
|
type: "string",
|
|
32246
33155
|
const: "primeRating",
|
|
@@ -32450,6 +33359,19 @@ export const RepeaterWritableSchema = {
|
|
|
32450
33359
|
"Render with a sibling toggle that sets this field to null when off",
|
|
32451
33360
|
default: false,
|
|
32452
33361
|
},
|
|
33362
|
+
defaultEnabled: {
|
|
33363
|
+
anyOf: [
|
|
33364
|
+
{
|
|
33365
|
+
type: "boolean",
|
|
33366
|
+
},
|
|
33367
|
+
{
|
|
33368
|
+
type: "null",
|
|
33369
|
+
},
|
|
33370
|
+
],
|
|
33371
|
+
title: "Defaultenabled",
|
|
33372
|
+
description:
|
|
33373
|
+
"For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.",
|
|
33374
|
+
},
|
|
32453
33375
|
$formkit: {
|
|
32454
33376
|
type: "string",
|
|
32455
33377
|
const: "repeater",
|
|
@@ -33242,6 +34164,19 @@ export const SelectWritableSchema = {
|
|
|
33242
34164
|
"Render with a sibling toggle that sets this field to null when off",
|
|
33243
34165
|
default: false,
|
|
33244
34166
|
},
|
|
34167
|
+
defaultEnabled: {
|
|
34168
|
+
anyOf: [
|
|
34169
|
+
{
|
|
34170
|
+
type: "boolean",
|
|
34171
|
+
},
|
|
34172
|
+
{
|
|
34173
|
+
type: "null",
|
|
34174
|
+
},
|
|
34175
|
+
],
|
|
34176
|
+
title: "Defaultenabled",
|
|
34177
|
+
description:
|
|
34178
|
+
"For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.",
|
|
34179
|
+
},
|
|
33245
34180
|
formkit: {
|
|
33246
34181
|
type: "string",
|
|
33247
34182
|
const: "primeSelect",
|
|
@@ -33504,6 +34439,19 @@ export const SelectButtonWritableSchema = {
|
|
|
33504
34439
|
"Render with a sibling toggle that sets this field to null when off",
|
|
33505
34440
|
default: false,
|
|
33506
34441
|
},
|
|
34442
|
+
defaultEnabled: {
|
|
34443
|
+
anyOf: [
|
|
34444
|
+
{
|
|
34445
|
+
type: "boolean",
|
|
34446
|
+
},
|
|
34447
|
+
{
|
|
34448
|
+
type: "null",
|
|
34449
|
+
},
|
|
34450
|
+
],
|
|
34451
|
+
title: "Defaultenabled",
|
|
34452
|
+
description:
|
|
34453
|
+
"For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.",
|
|
34454
|
+
},
|
|
33507
34455
|
formkit: {
|
|
33508
34456
|
type: "string",
|
|
33509
34457
|
const: "primeSelectButton",
|
|
@@ -33903,6 +34851,19 @@ export const SliderWritableSchema = {
|
|
|
33903
34851
|
"Render with a sibling toggle that sets this field to null when off",
|
|
33904
34852
|
default: false,
|
|
33905
34853
|
},
|
|
34854
|
+
defaultEnabled: {
|
|
34855
|
+
anyOf: [
|
|
34856
|
+
{
|
|
34857
|
+
type: "boolean",
|
|
34858
|
+
},
|
|
34859
|
+
{
|
|
34860
|
+
type: "null",
|
|
34861
|
+
},
|
|
34862
|
+
],
|
|
34863
|
+
title: "Defaultenabled",
|
|
34864
|
+
description:
|
|
34865
|
+
"For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.",
|
|
34866
|
+
},
|
|
33906
34867
|
formkit: {
|
|
33907
34868
|
type: "string",
|
|
33908
34869
|
const: "primeSlider",
|
|
@@ -34426,6 +35387,19 @@ export const TextareaWritableSchema = {
|
|
|
34426
35387
|
"Render with a sibling toggle that sets this field to null when off",
|
|
34427
35388
|
default: false,
|
|
34428
35389
|
},
|
|
35390
|
+
defaultEnabled: {
|
|
35391
|
+
anyOf: [
|
|
35392
|
+
{
|
|
35393
|
+
type: "boolean",
|
|
35394
|
+
},
|
|
35395
|
+
{
|
|
35396
|
+
type: "null",
|
|
35397
|
+
},
|
|
35398
|
+
],
|
|
35399
|
+
title: "Defaultenabled",
|
|
35400
|
+
description:
|
|
35401
|
+
"For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.",
|
|
35402
|
+
},
|
|
34429
35403
|
formkit: {
|
|
34430
35404
|
type: "string",
|
|
34431
35405
|
const: "primeTextarea",
|
|
@@ -34869,6 +35843,19 @@ export const ToggleButtonWritableSchema = {
|
|
|
34869
35843
|
"Render with a sibling toggle that sets this field to null when off",
|
|
34870
35844
|
default: false,
|
|
34871
35845
|
},
|
|
35846
|
+
defaultEnabled: {
|
|
35847
|
+
anyOf: [
|
|
35848
|
+
{
|
|
35849
|
+
type: "boolean",
|
|
35850
|
+
},
|
|
35851
|
+
{
|
|
35852
|
+
type: "null",
|
|
35853
|
+
},
|
|
35854
|
+
],
|
|
35855
|
+
title: "Defaultenabled",
|
|
35856
|
+
description:
|
|
35857
|
+
"For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.",
|
|
35858
|
+
},
|
|
34872
35859
|
formkit: {
|
|
34873
35860
|
type: "string",
|
|
34874
35861
|
const: "primeToggleButton",
|
|
@@ -35096,6 +36083,19 @@ export const ToggleSwitchWritableSchema = {
|
|
|
35096
36083
|
"Render with a sibling toggle that sets this field to null when off",
|
|
35097
36084
|
default: false,
|
|
35098
36085
|
},
|
|
36086
|
+
defaultEnabled: {
|
|
36087
|
+
anyOf: [
|
|
36088
|
+
{
|
|
36089
|
+
type: "boolean",
|
|
36090
|
+
},
|
|
36091
|
+
{
|
|
36092
|
+
type: "null",
|
|
36093
|
+
},
|
|
36094
|
+
],
|
|
36095
|
+
title: "Defaultenabled",
|
|
36096
|
+
description:
|
|
36097
|
+
"For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.",
|
|
36098
|
+
},
|
|
35099
36099
|
formkit: {
|
|
35100
36100
|
type: "string",
|
|
35101
36101
|
const: "primeToggleSwitch",
|
|
@@ -35502,6 +36502,19 @@ export const VectorStoreInputWritableSchema = {
|
|
|
35502
36502
|
"Render with a sibling toggle that sets this field to null when off",
|
|
35503
36503
|
default: false,
|
|
35504
36504
|
},
|
|
36505
|
+
defaultEnabled: {
|
|
36506
|
+
anyOf: [
|
|
36507
|
+
{
|
|
36508
|
+
type: "boolean",
|
|
36509
|
+
},
|
|
36510
|
+
{
|
|
36511
|
+
type: "null",
|
|
36512
|
+
},
|
|
36513
|
+
],
|
|
36514
|
+
title: "Defaultenabled",
|
|
36515
|
+
description:
|
|
36516
|
+
"For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.",
|
|
36517
|
+
},
|
|
35505
36518
|
formkit: {
|
|
35506
36519
|
type: "string",
|
|
35507
36520
|
const: "vectorStoreInput",
|