@objectstack/platform-objects 6.9.0 → 7.0.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.
Files changed (51) hide show
  1. package/dist/apps/index.d.mts +30 -1
  2. package/dist/apps/index.d.ts +30 -1
  3. package/dist/apps/index.js +994 -37
  4. package/dist/apps/index.js.map +1 -1
  5. package/dist/apps/index.mjs +994 -38
  6. package/dist/apps/index.mjs.map +1 -1
  7. package/dist/audit/index.d.mts +192 -16
  8. package/dist/audit/index.d.ts +192 -16
  9. package/dist/identity/index.d.mts +840 -22
  10. package/dist/identity/index.d.ts +840 -22
  11. package/dist/identity/index.js +384 -8
  12. package/dist/identity/index.js.map +1 -1
  13. package/dist/identity/index.mjs +384 -8
  14. package/dist/identity/index.mjs.map +1 -1
  15. package/dist/index.d.mts +4 -1
  16. package/dist/index.d.ts +4 -1
  17. package/dist/index.js +6815 -104
  18. package/dist/index.js.map +1 -1
  19. package/dist/index.mjs +6810 -105
  20. package/dist/index.mjs.map +1 -1
  21. package/dist/integration/index.d.mts +12 -1
  22. package/dist/integration/index.d.ts +12 -1
  23. package/dist/metadata/index.d.mts +24 -2
  24. package/dist/metadata/index.d.ts +24 -2
  25. package/dist/metadata-translations/index.d.mts +20 -0
  26. package/dist/metadata-translations/index.d.ts +20 -0
  27. package/dist/metadata-translations/index.js +4777 -0
  28. package/dist/metadata-translations/index.js.map +1 -0
  29. package/dist/metadata-translations/index.mjs +4775 -0
  30. package/dist/metadata-translations/index.mjs.map +1 -0
  31. package/dist/pages/index.d.mts +68 -0
  32. package/dist/pages/index.d.ts +68 -0
  33. package/dist/pages/index.js +371 -0
  34. package/dist/pages/index.js.map +1 -0
  35. package/dist/pages/index.mjs +368 -0
  36. package/dist/pages/index.mjs.map +1 -0
  37. package/dist/plugin.d.mts +35 -0
  38. package/dist/plugin.d.ts +35 -0
  39. package/dist/plugin.js +17566 -0
  40. package/dist/plugin.js.map +1 -0
  41. package/dist/plugin.mjs +17563 -0
  42. package/dist/plugin.mjs.map +1 -0
  43. package/dist/security/index.d.mts +785 -183
  44. package/dist/security/index.d.ts +785 -183
  45. package/dist/security/index.js +188 -1
  46. package/dist/security/index.js.map +1 -1
  47. package/dist/security/index.mjs +188 -1
  48. package/dist/security/index.mjs.map +1 -1
  49. package/dist/system/index.d.mts +36 -3
  50. package/dist/system/index.d.ts +36 -3
  51. package/package.json +17 -2
@@ -620,7 +620,7 @@ declare const SysRole: Omit<{
620
620
  refreshAfter: boolean;
621
621
  objectName?: string | undefined;
622
622
  icon?: string | undefined;
623
- locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "global_nav")[] | undefined;
623
+ locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
624
624
  component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
625
625
  target?: string | undefined;
626
626
  body?: {
@@ -653,6 +653,17 @@ declare const SysRole: Omit<{
653
653
  variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
654
654
  confirmText?: string | undefined;
655
655
  successMessage?: string | undefined;
656
+ resultDialog?: {
657
+ title?: string | undefined;
658
+ description?: string | undefined;
659
+ acknowledge?: string | undefined;
660
+ format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
661
+ fields?: {
662
+ path: string;
663
+ label?: string | undefined;
664
+ format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
665
+ }[] | undefined;
666
+ } | undefined;
656
667
  visible?: {
657
668
  dialect: "cel" | "js" | "cron" | "template";
658
669
  source?: string | undefined;
@@ -3078,7 +3089,7 @@ declare const SysPermissionSet: Omit<{
3078
3089
  refreshAfter: boolean;
3079
3090
  objectName?: string | undefined;
3080
3091
  icon?: string | undefined;
3081
- locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "global_nav")[] | undefined;
3092
+ locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
3082
3093
  component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
3083
3094
  target?: string | undefined;
3084
3095
  body?: {
@@ -3111,6 +3122,17 @@ declare const SysPermissionSet: Omit<{
3111
3122
  variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
3112
3123
  confirmText?: string | undefined;
3113
3124
  successMessage?: string | undefined;
3125
+ resultDialog?: {
3126
+ title?: string | undefined;
3127
+ description?: string | undefined;
3128
+ acknowledge?: string | undefined;
3129
+ format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
3130
+ fields?: {
3131
+ path: string;
3132
+ label?: string | undefined;
3133
+ format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
3134
+ }[] | undefined;
3135
+ } | undefined;
3114
3136
  visible?: {
3115
3137
  dialect: "cel" | "js" | "cron" | "template";
3116
3138
  source?: string | undefined;
@@ -3119,178 +3141,703 @@ declare const SysPermissionSet: Omit<{
3119
3141
  rationale?: string | undefined;
3120
3142
  generatedBy?: string | undefined;
3121
3143
  } | undefined;
3122
- } | undefined;
3123
- disabled?: boolean | {
3124
- dialect: "cel" | "js" | "cron" | "template";
3125
- source?: string | undefined;
3126
- ast?: unknown;
3127
- meta?: {
3128
- rationale?: string | undefined;
3129
- generatedBy?: string | undefined;
3144
+ } | undefined;
3145
+ disabled?: boolean | {
3146
+ dialect: "cel" | "js" | "cron" | "template";
3147
+ source?: string | undefined;
3148
+ ast?: unknown;
3149
+ meta?: {
3150
+ rationale?: string | undefined;
3151
+ generatedBy?: string | undefined;
3152
+ } | undefined;
3153
+ } | undefined;
3154
+ shortcut?: string | undefined;
3155
+ bulkEnabled?: boolean | undefined;
3156
+ aiExposed?: boolean | undefined;
3157
+ recordIdParam?: string | undefined;
3158
+ recordIdField?: string | undefined;
3159
+ bodyShape?: "flat" | {
3160
+ wrap: string;
3161
+ } | undefined;
3162
+ method?: "POST" | "PATCH" | "PUT" | "DELETE" | undefined;
3163
+ bodyExtra?: Record<string, unknown> | undefined;
3164
+ mode?: "custom" | "delete" | "create" | "edit" | undefined;
3165
+ timeout?: number | undefined;
3166
+ aria?: {
3167
+ ariaLabel?: string | undefined;
3168
+ ariaDescribedBy?: string | undefined;
3169
+ role?: string | undefined;
3170
+ } | undefined;
3171
+ }[] | undefined;
3172
+ }, "fields"> & Pick<{
3173
+ readonly name: "sys_permission_set";
3174
+ readonly label: "Permission Set";
3175
+ readonly pluralLabel: "Permission Sets";
3176
+ readonly icon: "lock";
3177
+ readonly isSystem: true;
3178
+ readonly managedBy: "config";
3179
+ readonly description: "Named permission groupings for fine-grained access control";
3180
+ readonly displayNameField: "label";
3181
+ readonly titleFormat: "{label}";
3182
+ readonly compactLayout: ["label", "name", "active"];
3183
+ readonly actions: [{
3184
+ readonly name: "activate_permission_set";
3185
+ readonly label: "Activate";
3186
+ readonly icon: "circle-check";
3187
+ readonly variant: "secondary";
3188
+ readonly mode: "custom";
3189
+ readonly locations: ["list_item", "record_header"];
3190
+ readonly type: "api";
3191
+ readonly method: "PATCH";
3192
+ readonly target: "/api/v1/data/sys_permission_set/{id}";
3193
+ readonly bodyExtra: {
3194
+ readonly active: true;
3195
+ };
3196
+ readonly successMessage: "Permission set activated";
3197
+ readonly refreshAfter: true;
3198
+ }, {
3199
+ readonly name: "deactivate_permission_set";
3200
+ readonly label: "Deactivate";
3201
+ readonly icon: "circle-off";
3202
+ readonly variant: "danger";
3203
+ readonly mode: "custom";
3204
+ readonly locations: ["list_item", "record_header"];
3205
+ readonly type: "api";
3206
+ readonly method: "PATCH";
3207
+ readonly target: "/api/v1/data/sys_permission_set/{id}";
3208
+ readonly bodyExtra: {
3209
+ readonly active: false;
3210
+ };
3211
+ readonly confirmText: "Deactivate this permission set? Existing assignments stay in place but stop granting access until re-activated.";
3212
+ readonly successMessage: "Permission set deactivated";
3213
+ readonly refreshAfter: true;
3214
+ }, {
3215
+ readonly name: "clone_permission_set";
3216
+ readonly label: "Clone";
3217
+ readonly icon: "copy";
3218
+ readonly variant: "secondary";
3219
+ readonly mode: "custom";
3220
+ readonly locations: ["list_item", "record_header"];
3221
+ readonly type: "api";
3222
+ readonly method: "POST";
3223
+ readonly target: "/api/v1/data/sys_permission_set";
3224
+ readonly bodyExtra: {
3225
+ readonly active: true;
3226
+ };
3227
+ readonly successMessage: "Permission set cloned";
3228
+ readonly refreshAfter: true;
3229
+ readonly params: [{
3230
+ readonly name: "label";
3231
+ readonly label: "New Display Name";
3232
+ readonly type: "text";
3233
+ readonly required: true;
3234
+ }, {
3235
+ readonly name: "name";
3236
+ readonly label: "New API Name";
3237
+ readonly type: "text";
3238
+ readonly required: true;
3239
+ readonly helpText: "Unique snake_case machine name";
3240
+ }, {
3241
+ readonly field: "description";
3242
+ readonly defaultFromRow: true;
3243
+ }, {
3244
+ readonly field: "object_permissions";
3245
+ readonly defaultFromRow: true;
3246
+ }, {
3247
+ readonly field: "field_permissions";
3248
+ readonly defaultFromRow: true;
3249
+ }];
3250
+ }];
3251
+ readonly listViews: {
3252
+ readonly active: {
3253
+ readonly type: "grid";
3254
+ readonly name: "active";
3255
+ readonly label: "Active";
3256
+ readonly data: {
3257
+ readonly provider: "object";
3258
+ readonly object: "sys_permission_set";
3259
+ };
3260
+ readonly columns: ["label", "name", "description", "updated_at"];
3261
+ readonly filter: [{
3262
+ readonly field: "active";
3263
+ readonly operator: "equals";
3264
+ readonly value: true;
3265
+ }];
3266
+ readonly sort: [{
3267
+ readonly field: "label";
3268
+ readonly order: "asc";
3269
+ }];
3270
+ readonly pagination: {
3271
+ readonly pageSize: 50;
3272
+ };
3273
+ };
3274
+ readonly inactive: {
3275
+ readonly type: "grid";
3276
+ readonly name: "inactive";
3277
+ readonly label: "Inactive";
3278
+ readonly data: {
3279
+ readonly provider: "object";
3280
+ readonly object: "sys_permission_set";
3281
+ };
3282
+ readonly columns: ["label", "name", "updated_at"];
3283
+ readonly filter: [{
3284
+ readonly field: "active";
3285
+ readonly operator: "equals";
3286
+ readonly value: false;
3287
+ }];
3288
+ readonly sort: [{
3289
+ readonly field: "label";
3290
+ readonly order: "asc";
3291
+ }];
3292
+ readonly pagination: {
3293
+ readonly pageSize: 50;
3294
+ };
3295
+ };
3296
+ readonly all_permsets: {
3297
+ readonly type: "grid";
3298
+ readonly name: "all_permsets";
3299
+ readonly label: "All";
3300
+ readonly data: {
3301
+ readonly provider: "object";
3302
+ readonly object: "sys_permission_set";
3303
+ };
3304
+ readonly columns: ["label", "name", "active", "updated_at"];
3305
+ readonly sort: [{
3306
+ readonly field: "label";
3307
+ readonly order: "asc";
3308
+ }];
3309
+ readonly pagination: {
3310
+ readonly pageSize: 50;
3311
+ };
3312
+ };
3313
+ };
3314
+ readonly fields: {
3315
+ readonly label: {
3316
+ readonly readonly?: boolean | undefined;
3317
+ readonly format?: string | undefined;
3318
+ readonly options?: {
3319
+ label: string;
3320
+ value: string;
3321
+ color?: string | undefined;
3322
+ default?: boolean | undefined;
3323
+ }[] | undefined;
3324
+ readonly description?: string | undefined;
3325
+ readonly label?: string | undefined;
3326
+ readonly name?: string | undefined;
3327
+ readonly precision?: number | undefined;
3328
+ readonly required?: boolean | undefined;
3329
+ readonly multiple?: boolean | undefined;
3330
+ readonly dependencies?: string[] | undefined;
3331
+ readonly theme?: string | undefined;
3332
+ readonly externalId?: boolean | undefined;
3333
+ readonly system?: boolean | undefined;
3334
+ readonly min?: number | undefined;
3335
+ readonly max?: number | undefined;
3336
+ readonly group?: string | undefined;
3337
+ readonly encryptionConfig?: {
3338
+ enabled: boolean;
3339
+ algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
3340
+ keyManagement: {
3341
+ provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
3342
+ keyId?: string | undefined;
3343
+ rotationPolicy?: {
3344
+ enabled: boolean;
3345
+ frequencyDays: number;
3346
+ retainOldVersions: number;
3347
+ autoRotate: boolean;
3348
+ } | undefined;
3349
+ };
3350
+ scope: "record" | "field" | "table" | "database";
3351
+ deterministicEncryption: boolean;
3352
+ searchableEncryption: boolean;
3353
+ } | undefined;
3354
+ readonly columnName?: string | undefined;
3355
+ readonly searchable?: boolean | undefined;
3356
+ readonly unique?: boolean | undefined;
3357
+ readonly defaultValue?: unknown;
3358
+ readonly maxLength?: number | undefined;
3359
+ readonly minLength?: number | undefined;
3360
+ readonly scale?: number | undefined;
3361
+ readonly reference?: string | undefined;
3362
+ readonly referenceFilters?: string[] | undefined;
3363
+ readonly writeRequiresMasterRead?: boolean | undefined;
3364
+ readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
3365
+ readonly expression?: {
3366
+ dialect: "cel" | "js" | "cron" | "template";
3367
+ source?: string | undefined;
3368
+ ast?: unknown;
3369
+ meta?: {
3370
+ rationale?: string | undefined;
3371
+ generatedBy?: string | undefined;
3372
+ } | undefined;
3373
+ } | undefined;
3374
+ readonly summaryOperations?: {
3375
+ object: string;
3376
+ field: string;
3377
+ function: "min" | "max" | "count" | "sum" | "avg";
3378
+ } | undefined;
3379
+ readonly language?: string | undefined;
3380
+ readonly lineNumbers?: boolean | undefined;
3381
+ readonly maxRating?: number | undefined;
3382
+ readonly allowHalf?: boolean | undefined;
3383
+ readonly displayMap?: boolean | undefined;
3384
+ readonly allowGeocoding?: boolean | undefined;
3385
+ readonly addressFormat?: "us" | "uk" | "international" | undefined;
3386
+ readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
3387
+ readonly allowAlpha?: boolean | undefined;
3388
+ readonly presetColors?: string[] | undefined;
3389
+ readonly step?: number | undefined;
3390
+ readonly showValue?: boolean | undefined;
3391
+ readonly marks?: Record<string, string> | undefined;
3392
+ readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
3393
+ readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
3394
+ readonly displayValue?: boolean | undefined;
3395
+ readonly allowScanning?: boolean | undefined;
3396
+ readonly currencyConfig?: {
3397
+ precision: number;
3398
+ currencyMode: "fixed" | "dynamic";
3399
+ defaultCurrency: string;
3400
+ } | undefined;
3401
+ readonly vectorConfig?: {
3402
+ dimensions: number;
3403
+ distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
3404
+ normalized: boolean;
3405
+ indexed: boolean;
3406
+ indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
3407
+ } | undefined;
3408
+ readonly fileAttachmentConfig?: {
3409
+ virusScan: boolean;
3410
+ virusScanOnUpload: boolean;
3411
+ quarantineOnThreat: boolean;
3412
+ allowMultiple: boolean;
3413
+ allowReplace: boolean;
3414
+ allowDelete: boolean;
3415
+ requireUpload: boolean;
3416
+ extractMetadata: boolean;
3417
+ extractText: boolean;
3418
+ versioningEnabled: boolean;
3419
+ publicRead: boolean;
3420
+ presignedUrlExpiry: number;
3421
+ minSize?: number | undefined;
3422
+ maxSize?: number | undefined;
3423
+ allowedTypes?: string[] | undefined;
3424
+ blockedTypes?: string[] | undefined;
3425
+ allowedMimeTypes?: string[] | undefined;
3426
+ blockedMimeTypes?: string[] | undefined;
3427
+ virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
3428
+ storageProvider?: string | undefined;
3429
+ storageBucket?: string | undefined;
3430
+ storagePrefix?: string | undefined;
3431
+ imageValidation?: {
3432
+ generateThumbnails: boolean;
3433
+ preserveMetadata: boolean;
3434
+ autoRotate: boolean;
3435
+ minWidth?: number | undefined;
3436
+ maxWidth?: number | undefined;
3437
+ minHeight?: number | undefined;
3438
+ maxHeight?: number | undefined;
3439
+ aspectRatio?: string | undefined;
3440
+ thumbnailSizes?: {
3441
+ name: string;
3442
+ width: number;
3443
+ height: number;
3444
+ crop: boolean;
3445
+ }[] | undefined;
3446
+ } | undefined;
3447
+ maxVersions?: number | undefined;
3448
+ } | undefined;
3449
+ readonly maskingRule?: {
3450
+ field: string;
3451
+ strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
3452
+ preserveFormat: boolean;
3453
+ preserveLength: boolean;
3454
+ pattern?: string | undefined;
3455
+ roles?: string[] | undefined;
3456
+ exemptRoles?: string[] | undefined;
3457
+ } | undefined;
3458
+ readonly auditTrail?: boolean | undefined;
3459
+ readonly cached?: {
3460
+ enabled: boolean;
3461
+ ttl: number;
3462
+ invalidateOn: string[];
3463
+ } | undefined;
3464
+ readonly dataQuality?: {
3465
+ uniqueness: boolean;
3466
+ completeness: number;
3467
+ accuracy?: {
3468
+ source: string;
3469
+ threshold: number;
3470
+ } | undefined;
3471
+ } | undefined;
3472
+ readonly conditionalRequired?: {
3473
+ dialect: "cel" | "js" | "cron" | "template";
3474
+ source?: string | undefined;
3475
+ ast?: unknown;
3476
+ meta?: {
3477
+ rationale?: string | undefined;
3478
+ generatedBy?: string | undefined;
3479
+ } | undefined;
3480
+ } | undefined;
3481
+ readonly hidden?: boolean | undefined;
3482
+ readonly sortable?: boolean | undefined;
3483
+ readonly inlineHelpText?: string | undefined;
3484
+ readonly trackFeedHistory?: boolean | undefined;
3485
+ readonly caseSensitive?: boolean | undefined;
3486
+ readonly autonumberFormat?: string | undefined;
3487
+ readonly index?: boolean | undefined;
3488
+ readonly type: "text";
3489
+ };
3490
+ readonly name: {
3491
+ readonly readonly?: boolean | undefined;
3492
+ readonly format?: string | undefined;
3493
+ readonly options?: {
3494
+ label: string;
3495
+ value: string;
3496
+ color?: string | undefined;
3497
+ default?: boolean | undefined;
3498
+ }[] | undefined;
3499
+ readonly description?: string | undefined;
3500
+ readonly label?: string | undefined;
3501
+ readonly name?: string | undefined;
3502
+ readonly precision?: number | undefined;
3503
+ readonly required?: boolean | undefined;
3504
+ readonly multiple?: boolean | undefined;
3505
+ readonly dependencies?: string[] | undefined;
3506
+ readonly theme?: string | undefined;
3507
+ readonly externalId?: boolean | undefined;
3508
+ readonly system?: boolean | undefined;
3509
+ readonly min?: number | undefined;
3510
+ readonly max?: number | undefined;
3511
+ readonly group?: string | undefined;
3512
+ readonly encryptionConfig?: {
3513
+ enabled: boolean;
3514
+ algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
3515
+ keyManagement: {
3516
+ provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
3517
+ keyId?: string | undefined;
3518
+ rotationPolicy?: {
3519
+ enabled: boolean;
3520
+ frequencyDays: number;
3521
+ retainOldVersions: number;
3522
+ autoRotate: boolean;
3523
+ } | undefined;
3524
+ };
3525
+ scope: "record" | "field" | "table" | "database";
3526
+ deterministicEncryption: boolean;
3527
+ searchableEncryption: boolean;
3528
+ } | undefined;
3529
+ readonly columnName?: string | undefined;
3530
+ readonly searchable?: boolean | undefined;
3531
+ readonly unique?: boolean | undefined;
3532
+ readonly defaultValue?: unknown;
3533
+ readonly maxLength?: number | undefined;
3534
+ readonly minLength?: number | undefined;
3535
+ readonly scale?: number | undefined;
3536
+ readonly reference?: string | undefined;
3537
+ readonly referenceFilters?: string[] | undefined;
3538
+ readonly writeRequiresMasterRead?: boolean | undefined;
3539
+ readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
3540
+ readonly expression?: {
3541
+ dialect: "cel" | "js" | "cron" | "template";
3542
+ source?: string | undefined;
3543
+ ast?: unknown;
3544
+ meta?: {
3545
+ rationale?: string | undefined;
3546
+ generatedBy?: string | undefined;
3547
+ } | undefined;
3548
+ } | undefined;
3549
+ readonly summaryOperations?: {
3550
+ object: string;
3551
+ field: string;
3552
+ function: "min" | "max" | "count" | "sum" | "avg";
3553
+ } | undefined;
3554
+ readonly language?: string | undefined;
3555
+ readonly lineNumbers?: boolean | undefined;
3556
+ readonly maxRating?: number | undefined;
3557
+ readonly allowHalf?: boolean | undefined;
3558
+ readonly displayMap?: boolean | undefined;
3559
+ readonly allowGeocoding?: boolean | undefined;
3560
+ readonly addressFormat?: "us" | "uk" | "international" | undefined;
3561
+ readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
3562
+ readonly allowAlpha?: boolean | undefined;
3563
+ readonly presetColors?: string[] | undefined;
3564
+ readonly step?: number | undefined;
3565
+ readonly showValue?: boolean | undefined;
3566
+ readonly marks?: Record<string, string> | undefined;
3567
+ readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
3568
+ readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
3569
+ readonly displayValue?: boolean | undefined;
3570
+ readonly allowScanning?: boolean | undefined;
3571
+ readonly currencyConfig?: {
3572
+ precision: number;
3573
+ currencyMode: "fixed" | "dynamic";
3574
+ defaultCurrency: string;
3575
+ } | undefined;
3576
+ readonly vectorConfig?: {
3577
+ dimensions: number;
3578
+ distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
3579
+ normalized: boolean;
3580
+ indexed: boolean;
3581
+ indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
3582
+ } | undefined;
3583
+ readonly fileAttachmentConfig?: {
3584
+ virusScan: boolean;
3585
+ virusScanOnUpload: boolean;
3586
+ quarantineOnThreat: boolean;
3587
+ allowMultiple: boolean;
3588
+ allowReplace: boolean;
3589
+ allowDelete: boolean;
3590
+ requireUpload: boolean;
3591
+ extractMetadata: boolean;
3592
+ extractText: boolean;
3593
+ versioningEnabled: boolean;
3594
+ publicRead: boolean;
3595
+ presignedUrlExpiry: number;
3596
+ minSize?: number | undefined;
3597
+ maxSize?: number | undefined;
3598
+ allowedTypes?: string[] | undefined;
3599
+ blockedTypes?: string[] | undefined;
3600
+ allowedMimeTypes?: string[] | undefined;
3601
+ blockedMimeTypes?: string[] | undefined;
3602
+ virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
3603
+ storageProvider?: string | undefined;
3604
+ storageBucket?: string | undefined;
3605
+ storagePrefix?: string | undefined;
3606
+ imageValidation?: {
3607
+ generateThumbnails: boolean;
3608
+ preserveMetadata: boolean;
3609
+ autoRotate: boolean;
3610
+ minWidth?: number | undefined;
3611
+ maxWidth?: number | undefined;
3612
+ minHeight?: number | undefined;
3613
+ maxHeight?: number | undefined;
3614
+ aspectRatio?: string | undefined;
3615
+ thumbnailSizes?: {
3616
+ name: string;
3617
+ width: number;
3618
+ height: number;
3619
+ crop: boolean;
3620
+ }[] | undefined;
3621
+ } | undefined;
3622
+ maxVersions?: number | undefined;
3623
+ } | undefined;
3624
+ readonly maskingRule?: {
3625
+ field: string;
3626
+ strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
3627
+ preserveFormat: boolean;
3628
+ preserveLength: boolean;
3629
+ pattern?: string | undefined;
3630
+ roles?: string[] | undefined;
3631
+ exemptRoles?: string[] | undefined;
3632
+ } | undefined;
3633
+ readonly auditTrail?: boolean | undefined;
3634
+ readonly cached?: {
3635
+ enabled: boolean;
3636
+ ttl: number;
3637
+ invalidateOn: string[];
3638
+ } | undefined;
3639
+ readonly dataQuality?: {
3640
+ uniqueness: boolean;
3641
+ completeness: number;
3642
+ accuracy?: {
3643
+ source: string;
3644
+ threshold: number;
3645
+ } | undefined;
3646
+ } | undefined;
3647
+ readonly conditionalRequired?: {
3648
+ dialect: "cel" | "js" | "cron" | "template";
3649
+ source?: string | undefined;
3650
+ ast?: unknown;
3651
+ meta?: {
3652
+ rationale?: string | undefined;
3653
+ generatedBy?: string | undefined;
3654
+ } | undefined;
3655
+ } | undefined;
3656
+ readonly hidden?: boolean | undefined;
3657
+ readonly sortable?: boolean | undefined;
3658
+ readonly inlineHelpText?: string | undefined;
3659
+ readonly trackFeedHistory?: boolean | undefined;
3660
+ readonly caseSensitive?: boolean | undefined;
3661
+ readonly autonumberFormat?: string | undefined;
3662
+ readonly index?: boolean | undefined;
3663
+ readonly type: "text";
3664
+ };
3665
+ readonly description: {
3666
+ readonly readonly?: boolean | undefined;
3667
+ readonly format?: string | undefined;
3668
+ readonly options?: {
3669
+ label: string;
3670
+ value: string;
3671
+ color?: string | undefined;
3672
+ default?: boolean | undefined;
3673
+ }[] | undefined;
3674
+ readonly description?: string | undefined;
3675
+ readonly label?: string | undefined;
3676
+ readonly name?: string | undefined;
3677
+ readonly precision?: number | undefined;
3678
+ readonly required?: boolean | undefined;
3679
+ readonly multiple?: boolean | undefined;
3680
+ readonly dependencies?: string[] | undefined;
3681
+ readonly theme?: string | undefined;
3682
+ readonly externalId?: boolean | undefined;
3683
+ readonly system?: boolean | undefined;
3684
+ readonly min?: number | undefined;
3685
+ readonly max?: number | undefined;
3686
+ readonly group?: string | undefined;
3687
+ readonly encryptionConfig?: {
3688
+ enabled: boolean;
3689
+ algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
3690
+ keyManagement: {
3691
+ provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
3692
+ keyId?: string | undefined;
3693
+ rotationPolicy?: {
3694
+ enabled: boolean;
3695
+ frequencyDays: number;
3696
+ retainOldVersions: number;
3697
+ autoRotate: boolean;
3698
+ } | undefined;
3699
+ };
3700
+ scope: "record" | "field" | "table" | "database";
3701
+ deterministicEncryption: boolean;
3702
+ searchableEncryption: boolean;
3703
+ } | undefined;
3704
+ readonly columnName?: string | undefined;
3705
+ readonly searchable?: boolean | undefined;
3706
+ readonly unique?: boolean | undefined;
3707
+ readonly defaultValue?: unknown;
3708
+ readonly maxLength?: number | undefined;
3709
+ readonly minLength?: number | undefined;
3710
+ readonly scale?: number | undefined;
3711
+ readonly reference?: string | undefined;
3712
+ readonly referenceFilters?: string[] | undefined;
3713
+ readonly writeRequiresMasterRead?: boolean | undefined;
3714
+ readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
3715
+ readonly expression?: {
3716
+ dialect: "cel" | "js" | "cron" | "template";
3717
+ source?: string | undefined;
3718
+ ast?: unknown;
3719
+ meta?: {
3720
+ rationale?: string | undefined;
3721
+ generatedBy?: string | undefined;
3722
+ } | undefined;
3723
+ } | undefined;
3724
+ readonly summaryOperations?: {
3725
+ object: string;
3726
+ field: string;
3727
+ function: "min" | "max" | "count" | "sum" | "avg";
3728
+ } | undefined;
3729
+ readonly language?: string | undefined;
3730
+ readonly lineNumbers?: boolean | undefined;
3731
+ readonly maxRating?: number | undefined;
3732
+ readonly allowHalf?: boolean | undefined;
3733
+ readonly displayMap?: boolean | undefined;
3734
+ readonly allowGeocoding?: boolean | undefined;
3735
+ readonly addressFormat?: "us" | "uk" | "international" | undefined;
3736
+ readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
3737
+ readonly allowAlpha?: boolean | undefined;
3738
+ readonly presetColors?: string[] | undefined;
3739
+ readonly step?: number | undefined;
3740
+ readonly showValue?: boolean | undefined;
3741
+ readonly marks?: Record<string, string> | undefined;
3742
+ readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
3743
+ readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
3744
+ readonly displayValue?: boolean | undefined;
3745
+ readonly allowScanning?: boolean | undefined;
3746
+ readonly currencyConfig?: {
3747
+ precision: number;
3748
+ currencyMode: "fixed" | "dynamic";
3749
+ defaultCurrency: string;
3750
+ } | undefined;
3751
+ readonly vectorConfig?: {
3752
+ dimensions: number;
3753
+ distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
3754
+ normalized: boolean;
3755
+ indexed: boolean;
3756
+ indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
3757
+ } | undefined;
3758
+ readonly fileAttachmentConfig?: {
3759
+ virusScan: boolean;
3760
+ virusScanOnUpload: boolean;
3761
+ quarantineOnThreat: boolean;
3762
+ allowMultiple: boolean;
3763
+ allowReplace: boolean;
3764
+ allowDelete: boolean;
3765
+ requireUpload: boolean;
3766
+ extractMetadata: boolean;
3767
+ extractText: boolean;
3768
+ versioningEnabled: boolean;
3769
+ publicRead: boolean;
3770
+ presignedUrlExpiry: number;
3771
+ minSize?: number | undefined;
3772
+ maxSize?: number | undefined;
3773
+ allowedTypes?: string[] | undefined;
3774
+ blockedTypes?: string[] | undefined;
3775
+ allowedMimeTypes?: string[] | undefined;
3776
+ blockedMimeTypes?: string[] | undefined;
3777
+ virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
3778
+ storageProvider?: string | undefined;
3779
+ storageBucket?: string | undefined;
3780
+ storagePrefix?: string | undefined;
3781
+ imageValidation?: {
3782
+ generateThumbnails: boolean;
3783
+ preserveMetadata: boolean;
3784
+ autoRotate: boolean;
3785
+ minWidth?: number | undefined;
3786
+ maxWidth?: number | undefined;
3787
+ minHeight?: number | undefined;
3788
+ maxHeight?: number | undefined;
3789
+ aspectRatio?: string | undefined;
3790
+ thumbnailSizes?: {
3791
+ name: string;
3792
+ width: number;
3793
+ height: number;
3794
+ crop: boolean;
3795
+ }[] | undefined;
3796
+ } | undefined;
3797
+ maxVersions?: number | undefined;
3798
+ } | undefined;
3799
+ readonly maskingRule?: {
3800
+ field: string;
3801
+ strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
3802
+ preserveFormat: boolean;
3803
+ preserveLength: boolean;
3804
+ pattern?: string | undefined;
3805
+ roles?: string[] | undefined;
3806
+ exemptRoles?: string[] | undefined;
3130
3807
  } | undefined;
3131
- } | undefined;
3132
- shortcut?: string | undefined;
3133
- bulkEnabled?: boolean | undefined;
3134
- aiExposed?: boolean | undefined;
3135
- recordIdParam?: string | undefined;
3136
- recordIdField?: string | undefined;
3137
- bodyShape?: "flat" | {
3138
- wrap: string;
3139
- } | undefined;
3140
- method?: "POST" | "PATCH" | "PUT" | "DELETE" | undefined;
3141
- bodyExtra?: Record<string, unknown> | undefined;
3142
- mode?: "custom" | "delete" | "create" | "edit" | undefined;
3143
- timeout?: number | undefined;
3144
- aria?: {
3145
- ariaLabel?: string | undefined;
3146
- ariaDescribedBy?: string | undefined;
3147
- role?: string | undefined;
3148
- } | undefined;
3149
- }[] | undefined;
3150
- }, "fields"> & Pick<{
3151
- readonly name: "sys_permission_set";
3152
- readonly label: "Permission Set";
3153
- readonly pluralLabel: "Permission Sets";
3154
- readonly icon: "lock";
3155
- readonly isSystem: true;
3156
- readonly managedBy: "config";
3157
- readonly description: "Named permission groupings for fine-grained access control";
3158
- readonly displayNameField: "label";
3159
- readonly titleFormat: "{label}";
3160
- readonly compactLayout: ["label", "name", "active"];
3161
- readonly actions: [{
3162
- readonly name: "activate_permission_set";
3163
- readonly label: "Activate";
3164
- readonly icon: "circle-check";
3165
- readonly variant: "secondary";
3166
- readonly mode: "custom";
3167
- readonly locations: ["list_item", "record_header"];
3168
- readonly type: "api";
3169
- readonly method: "PATCH";
3170
- readonly target: "/api/v1/data/sys_permission_set/{id}";
3171
- readonly bodyExtra: {
3172
- readonly active: true;
3173
- };
3174
- readonly successMessage: "Permission set activated";
3175
- readonly refreshAfter: true;
3176
- }, {
3177
- readonly name: "deactivate_permission_set";
3178
- readonly label: "Deactivate";
3179
- readonly icon: "circle-off";
3180
- readonly variant: "danger";
3181
- readonly mode: "custom";
3182
- readonly locations: ["list_item", "record_header"];
3183
- readonly type: "api";
3184
- readonly method: "PATCH";
3185
- readonly target: "/api/v1/data/sys_permission_set/{id}";
3186
- readonly bodyExtra: {
3187
- readonly active: false;
3188
- };
3189
- readonly confirmText: "Deactivate this permission set? Existing assignments stay in place but stop granting access until re-activated.";
3190
- readonly successMessage: "Permission set deactivated";
3191
- readonly refreshAfter: true;
3192
- }, {
3193
- readonly name: "clone_permission_set";
3194
- readonly label: "Clone";
3195
- readonly icon: "copy";
3196
- readonly variant: "secondary";
3197
- readonly mode: "custom";
3198
- readonly locations: ["list_item", "record_header"];
3199
- readonly type: "api";
3200
- readonly method: "POST";
3201
- readonly target: "/api/v1/data/sys_permission_set";
3202
- readonly bodyExtra: {
3203
- readonly active: true;
3204
- };
3205
- readonly successMessage: "Permission set cloned";
3206
- readonly refreshAfter: true;
3207
- readonly params: [{
3208
- readonly name: "label";
3209
- readonly label: "New Display Name";
3210
- readonly type: "text";
3211
- readonly required: true;
3212
- }, {
3213
- readonly name: "name";
3214
- readonly label: "New API Name";
3215
- readonly type: "text";
3216
- readonly required: true;
3217
- readonly helpText: "Unique snake_case machine name";
3218
- }, {
3219
- readonly field: "description";
3220
- readonly defaultFromRow: true;
3221
- }, {
3222
- readonly field: "object_permissions";
3223
- readonly defaultFromRow: true;
3224
- }, {
3225
- readonly field: "field_permissions";
3226
- readonly defaultFromRow: true;
3227
- }];
3228
- }];
3229
- readonly listViews: {
3230
- readonly active: {
3231
- readonly type: "grid";
3232
- readonly name: "active";
3233
- readonly label: "Active";
3234
- readonly data: {
3235
- readonly provider: "object";
3236
- readonly object: "sys_permission_set";
3237
- };
3238
- readonly columns: ["label", "name", "description", "updated_at"];
3239
- readonly filter: [{
3240
- readonly field: "active";
3241
- readonly operator: "equals";
3242
- readonly value: true;
3243
- }];
3244
- readonly sort: [{
3245
- readonly field: "label";
3246
- readonly order: "asc";
3247
- }];
3248
- readonly pagination: {
3249
- readonly pageSize: 50;
3250
- };
3251
- };
3252
- readonly inactive: {
3253
- readonly type: "grid";
3254
- readonly name: "inactive";
3255
- readonly label: "Inactive";
3256
- readonly data: {
3257
- readonly provider: "object";
3258
- readonly object: "sys_permission_set";
3259
- };
3260
- readonly columns: ["label", "name", "updated_at"];
3261
- readonly filter: [{
3262
- readonly field: "active";
3263
- readonly operator: "equals";
3264
- readonly value: false;
3265
- }];
3266
- readonly sort: [{
3267
- readonly field: "label";
3268
- readonly order: "asc";
3269
- }];
3270
- readonly pagination: {
3271
- readonly pageSize: 50;
3272
- };
3273
- };
3274
- readonly all_permsets: {
3275
- readonly type: "grid";
3276
- readonly name: "all_permsets";
3277
- readonly label: "All";
3278
- readonly data: {
3279
- readonly provider: "object";
3280
- readonly object: "sys_permission_set";
3281
- };
3282
- readonly columns: ["label", "name", "active", "updated_at"];
3283
- readonly sort: [{
3284
- readonly field: "label";
3285
- readonly order: "asc";
3286
- }];
3287
- readonly pagination: {
3288
- readonly pageSize: 50;
3289
- };
3808
+ readonly auditTrail?: boolean | undefined;
3809
+ readonly cached?: {
3810
+ enabled: boolean;
3811
+ ttl: number;
3812
+ invalidateOn: string[];
3813
+ } | undefined;
3814
+ readonly dataQuality?: {
3815
+ uniqueness: boolean;
3816
+ completeness: number;
3817
+ accuracy?: {
3818
+ source: string;
3819
+ threshold: number;
3820
+ } | undefined;
3821
+ } | undefined;
3822
+ readonly conditionalRequired?: {
3823
+ dialect: "cel" | "js" | "cron" | "template";
3824
+ source?: string | undefined;
3825
+ ast?: unknown;
3826
+ meta?: {
3827
+ rationale?: string | undefined;
3828
+ generatedBy?: string | undefined;
3829
+ } | undefined;
3830
+ } | undefined;
3831
+ readonly hidden?: boolean | undefined;
3832
+ readonly sortable?: boolean | undefined;
3833
+ readonly inlineHelpText?: string | undefined;
3834
+ readonly trackFeedHistory?: boolean | undefined;
3835
+ readonly caseSensitive?: boolean | undefined;
3836
+ readonly autonumberFormat?: string | undefined;
3837
+ readonly index?: boolean | undefined;
3838
+ readonly type: "textarea";
3290
3839
  };
3291
- };
3292
- readonly fields: {
3293
- readonly label: {
3840
+ readonly object_permissions: {
3294
3841
  readonly readonly?: boolean | undefined;
3295
3842
  readonly format?: string | undefined;
3296
3843
  readonly options?: {
@@ -3463,9 +4010,9 @@ declare const SysPermissionSet: Omit<{
3463
4010
  readonly caseSensitive?: boolean | undefined;
3464
4011
  readonly autonumberFormat?: string | undefined;
3465
4012
  readonly index?: boolean | undefined;
3466
- readonly type: "text";
4013
+ readonly type: "textarea";
3467
4014
  };
3468
- readonly name: {
4015
+ readonly field_permissions: {
3469
4016
  readonly readonly?: boolean | undefined;
3470
4017
  readonly format?: string | undefined;
3471
4018
  readonly options?: {
@@ -3638,9 +4185,9 @@ declare const SysPermissionSet: Omit<{
3638
4185
  readonly caseSensitive?: boolean | undefined;
3639
4186
  readonly autonumberFormat?: string | undefined;
3640
4187
  readonly index?: boolean | undefined;
3641
- readonly type: "text";
4188
+ readonly type: "textarea";
3642
4189
  };
3643
- readonly description: {
4190
+ readonly system_permissions: {
3644
4191
  readonly readonly?: boolean | undefined;
3645
4192
  readonly format?: string | undefined;
3646
4193
  readonly options?: {
@@ -3815,7 +4362,7 @@ declare const SysPermissionSet: Omit<{
3815
4362
  readonly index?: boolean | undefined;
3816
4363
  readonly type: "textarea";
3817
4364
  };
3818
- readonly object_permissions: {
4365
+ readonly row_level_security: {
3819
4366
  readonly readonly?: boolean | undefined;
3820
4367
  readonly format?: string | undefined;
3821
4368
  readonly options?: {
@@ -3990,7 +4537,7 @@ declare const SysPermissionSet: Omit<{
3990
4537
  readonly index?: boolean | undefined;
3991
4538
  readonly type: "textarea";
3992
4539
  };
3993
- readonly field_permissions: {
4540
+ readonly tab_permissions: {
3994
4541
  readonly readonly?: boolean | undefined;
3995
4542
  readonly format?: string | undefined;
3996
4543
  readonly options?: {
@@ -5506,7 +6053,7 @@ declare const SysUserPermissionSet: Omit<{
5506
6053
  refreshAfter: boolean;
5507
6054
  objectName?: string | undefined;
5508
6055
  icon?: string | undefined;
5509
- locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "global_nav")[] | undefined;
6056
+ locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
5510
6057
  component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
5511
6058
  target?: string | undefined;
5512
6059
  body?: {
@@ -5539,6 +6086,17 @@ declare const SysUserPermissionSet: Omit<{
5539
6086
  variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
5540
6087
  confirmText?: string | undefined;
5541
6088
  successMessage?: string | undefined;
6089
+ resultDialog?: {
6090
+ title?: string | undefined;
6091
+ description?: string | undefined;
6092
+ acknowledge?: string | undefined;
6093
+ format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
6094
+ fields?: {
6095
+ path: string;
6096
+ label?: string | undefined;
6097
+ format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
6098
+ }[] | undefined;
6099
+ } | undefined;
5542
6100
  visible?: {
5543
6101
  dialect: "cel" | "js" | "cron" | "template";
5544
6102
  source?: string | undefined;
@@ -7452,7 +8010,7 @@ declare const SysRolePermissionSet: Omit<{
7452
8010
  refreshAfter: boolean;
7453
8011
  objectName?: string | undefined;
7454
8012
  icon?: string | undefined;
7455
- locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "global_nav")[] | undefined;
8013
+ locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
7456
8014
  component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
7457
8015
  target?: string | undefined;
7458
8016
  body?: {
@@ -7485,6 +8043,17 @@ declare const SysRolePermissionSet: Omit<{
7485
8043
  variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
7486
8044
  confirmText?: string | undefined;
7487
8045
  successMessage?: string | undefined;
8046
+ resultDialog?: {
8047
+ title?: string | undefined;
8048
+ description?: string | undefined;
8049
+ acknowledge?: string | undefined;
8050
+ format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
8051
+ fields?: {
8052
+ path: string;
8053
+ label?: string | undefined;
8054
+ format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
8055
+ }[] | undefined;
8056
+ } | undefined;
7488
8057
  visible?: {
7489
8058
  dialect: "cel" | "js" | "cron" | "template";
7490
8059
  source?: string | undefined;
@@ -9063,7 +9632,7 @@ declare const SysRecordShare: Omit<{
9063
9632
  refreshAfter: boolean;
9064
9633
  objectName?: string | undefined;
9065
9634
  icon?: string | undefined;
9066
- locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "global_nav")[] | undefined;
9635
+ locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
9067
9636
  component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
9068
9637
  target?: string | undefined;
9069
9638
  body?: {
@@ -9096,6 +9665,17 @@ declare const SysRecordShare: Omit<{
9096
9665
  variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
9097
9666
  confirmText?: string | undefined;
9098
9667
  successMessage?: string | undefined;
9668
+ resultDialog?: {
9669
+ title?: string | undefined;
9670
+ description?: string | undefined;
9671
+ acknowledge?: string | undefined;
9672
+ format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
9673
+ fields?: {
9674
+ path: string;
9675
+ label?: string | undefined;
9676
+ format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
9677
+ }[] | undefined;
9678
+ } | undefined;
9099
9679
  visible?: {
9100
9680
  dialect: "cel" | "js" | "cron" | "template";
9101
9681
  source?: string | undefined;
@@ -12026,7 +12606,7 @@ declare const SysSharingRule: Omit<{
12026
12606
  refreshAfter: boolean;
12027
12607
  objectName?: string | undefined;
12028
12608
  icon?: string | undefined;
12029
- locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "global_nav")[] | undefined;
12609
+ locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
12030
12610
  component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
12031
12611
  target?: string | undefined;
12032
12612
  body?: {
@@ -12059,6 +12639,17 @@ declare const SysSharingRule: Omit<{
12059
12639
  variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
12060
12640
  confirmText?: string | undefined;
12061
12641
  successMessage?: string | undefined;
12642
+ resultDialog?: {
12643
+ title?: string | undefined;
12644
+ description?: string | undefined;
12645
+ acknowledge?: string | undefined;
12646
+ format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
12647
+ fields?: {
12648
+ path: string;
12649
+ label?: string | undefined;
12650
+ format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
12651
+ }[] | undefined;
12652
+ } | undefined;
12062
12653
  visible?: {
12063
12654
  dialect: "cel" | "js" | "cron" | "template";
12064
12655
  source?: string | undefined;
@@ -15139,7 +15730,7 @@ declare const SysShareLink: Omit<{
15139
15730
  refreshAfter: boolean;
15140
15731
  objectName?: string | undefined;
15141
15732
  icon?: string | undefined;
15142
- locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "global_nav")[] | undefined;
15733
+ locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
15143
15734
  component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
15144
15735
  target?: string | undefined;
15145
15736
  body?: {
@@ -15172,6 +15763,17 @@ declare const SysShareLink: Omit<{
15172
15763
  variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
15173
15764
  confirmText?: string | undefined;
15174
15765
  successMessage?: string | undefined;
15766
+ resultDialog?: {
15767
+ title?: string | undefined;
15768
+ description?: string | undefined;
15769
+ acknowledge?: string | undefined;
15770
+ format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
15771
+ fields?: {
15772
+ path: string;
15773
+ label?: string | undefined;
15774
+ format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
15775
+ }[] | undefined;
15776
+ } | undefined;
15175
15777
  visible?: {
15176
15778
  dialect: "cel" | "js" | "cron" | "template";
15177
15779
  source?: string | undefined;