@objectstack/plugin-webhooks 16.1.0 → 17.0.0-rc.1
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/CHANGELOG.md +626 -0
- package/dist/{chunk-RBCYKJVL.js → chunk-6EPMRZ7I.js} +28 -2
- package/dist/chunk-6EPMRZ7I.js.map +1 -0
- package/dist/{chunk-PTMJ5BLL.cjs → chunk-QUTQSOQC.cjs} +28 -2
- package/dist/chunk-QUTQSOQC.cjs.map +1 -0
- package/dist/index.cjs +250 -33
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +25 -0
- package/dist/index.d.ts +25 -0
- package/dist/index.js +231 -14
- package/dist/index.js.map +1 -1
- package/dist/schema.cjs +2 -2
- package/dist/schema.d.cts +515 -304
- package/dist/schema.d.ts +515 -304
- package/dist/schema.js +1 -1
- package/dist/translations-CBQRUIS5.cjs +383 -0
- package/dist/translations-CBQRUIS5.cjs.map +1 -0
- package/dist/translations-Y3CXWOTM.js +383 -0
- package/dist/translations-Y3CXWOTM.js.map +1 -0
- package/package.json +11 -5
- package/.turbo/turbo-build.log +0 -36
- package/dist/chunk-PTMJ5BLL.cjs.map +0 -1
- package/dist/chunk-RBCYKJVL.js.map +0 -1
- package/dist/translations-EPJYANXJ.js +0 -727
- package/dist/translations-EPJYANXJ.js.map +0 -1
- package/dist/translations-L2JAQDJB.cjs +0 -727
- package/dist/translations-L2JAQDJB.cjs.map +0 -1
- package/scripts/i18n-extract.config.ts +0 -32
- package/src/auto-enqueuer.test.ts +0 -431
- package/src/auto-enqueuer.ts +0 -383
- package/src/index.ts +0 -29
- package/src/schema.ts +0 -21
- package/src/sys-webhook.object.ts +0 -193
- package/src/translations/en.objects.generated.ts +0 -187
- package/src/translations/es-ES.objects.generated.ts +0 -187
- package/src/translations/index.ts +0 -23
- package/src/translations/ja-JP.objects.generated.ts +0 -187
- package/src/translations/zh-CN.objects.generated.ts +0 -187
- package/src/webhook-outbox-plugin.ts +0 -259
- package/tsconfig.json +0 -10
- package/tsup.config.ts +0 -14
package/dist/schema.d.cts
CHANGED
|
@@ -8,19 +8,25 @@ import * as _objectstack_spec_data from '@objectstack/spec/data';
|
|
|
8
8
|
* Studio UI without code changes. The canonical Zod schema for the
|
|
9
9
|
* `definition_json` envelope lives at `@objectstack/spec/automation/webhook`.
|
|
10
10
|
*
|
|
11
|
-
*
|
|
12
|
-
*
|
|
13
|
-
*
|
|
14
|
-
*
|
|
15
|
-
*
|
|
16
|
-
*
|
|
11
|
+
* ## Two authoring doors, one row
|
|
12
|
+
* Rows land here two ways, distinguished by the `managed_by` provenance column:
|
|
13
|
+
* - **admin** — created/edited directly through this object's CRUD UI.
|
|
14
|
+
* - **package** — declared in code (`defineStack({ webhooks })` /
|
|
15
|
+
* `defineWebhook()`) and materialized on boot by
|
|
16
|
+
* `bootstrapDeclaredWebhooks` (#3461). Re-seeded every boot, but an admin
|
|
17
|
+
* edit stamps `customized: true` and freezes the row (seed-not-clobber,
|
|
18
|
+
* mirrors `sys_sharing_rule` #2909).
|
|
19
|
+
*
|
|
20
|
+
* One row per `name`. This plugin's {@link AutoEnqueuer} loads active rows on
|
|
21
|
+
* boot + on `sys_webhook:changed` events, and turns matching `data.record.*`
|
|
22
|
+
* events into deliveries on the shared `service-messaging` HTTP outbox
|
|
23
|
+
* (ADR-0018 M3 — `sys_http_delivery`, drained by the messaging dispatcher).
|
|
17
24
|
*
|
|
18
25
|
* Ownership (ADR-0029 K2.a): this object is **owned by
|
|
19
|
-
* `@objectstack/plugin-webhooks`** — the plugin that consumes these rows
|
|
20
|
-
*
|
|
21
|
-
*
|
|
22
|
-
*
|
|
23
|
-
* behavior as one unit.
|
|
26
|
+
* `@objectstack/plugin-webhooks`** — the plugin that consumes these rows. It
|
|
27
|
+
* used to live in the `@objectstack/platform-objects` monolith and be imported
|
|
28
|
+
* here; the definition now lives with its owner so the plugin ships both data
|
|
29
|
+
* and behavior as one unit.
|
|
24
30
|
*
|
|
25
31
|
* Platform-wide on purpose: every project (standalone, single-tenant,
|
|
26
32
|
* cloud) can integrate with external systems (Slack, Stripe, internal
|
|
@@ -33,11 +39,11 @@ declare const SysWebhook: Omit<{
|
|
|
33
39
|
isSystem: boolean;
|
|
34
40
|
datasource: string;
|
|
35
41
|
fields: Record<string, {
|
|
36
|
-
type: "number" | "boolean" | "email" | "currency" | "date" | "record" | "file" | "secret" | "user" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "percent" | "
|
|
42
|
+
type: "number" | "boolean" | "email" | "currency" | "date" | "record" | "file" | "secret" | "user" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "percent" | "text" | "textarea" | "phone" | "password" | "markdown" | "html" | "richtext" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector";
|
|
37
43
|
required: boolean;
|
|
38
44
|
searchable: boolean;
|
|
39
45
|
multiple: boolean;
|
|
40
|
-
unique: boolean;
|
|
46
|
+
unique: boolean | "global";
|
|
41
47
|
deleteBehavior: "set_null" | "cascade" | "restrict";
|
|
42
48
|
hidden: boolean;
|
|
43
49
|
readonly: boolean;
|
|
@@ -47,6 +53,9 @@ declare const SysWebhook: Omit<{
|
|
|
47
53
|
label?: string | undefined;
|
|
48
54
|
description?: string | undefined;
|
|
49
55
|
format?: string | undefined;
|
|
56
|
+
storage?: {
|
|
57
|
+
notNull?: boolean | undefined;
|
|
58
|
+
} | undefined;
|
|
50
59
|
defaultValue?: unknown;
|
|
51
60
|
maxLength?: number | undefined;
|
|
52
61
|
minLength?: number | undefined;
|
|
@@ -54,6 +63,8 @@ declare const SysWebhook: Omit<{
|
|
|
54
63
|
scale?: number | undefined;
|
|
55
64
|
min?: number | undefined;
|
|
56
65
|
max?: number | undefined;
|
|
66
|
+
accept?: string[] | undefined;
|
|
67
|
+
maxSize?: number | undefined;
|
|
57
68
|
options?: {
|
|
58
69
|
label: string;
|
|
59
70
|
value: string;
|
|
@@ -96,7 +107,7 @@ declare const SysWebhook: Omit<{
|
|
|
96
107
|
lookupPageSize?: number | undefined;
|
|
97
108
|
lookupFilters?: {
|
|
98
109
|
field: string;
|
|
99
|
-
operator: "in" | "eq" | "ne" | "
|
|
110
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
100
111
|
value: any;
|
|
101
112
|
}[] | undefined;
|
|
102
113
|
dependsOn?: (string | {
|
|
@@ -190,25 +201,10 @@ declare const SysWebhook: Omit<{
|
|
|
190
201
|
generatedBy?: string | undefined;
|
|
191
202
|
} | undefined;
|
|
192
203
|
} | undefined;
|
|
193
|
-
conditionalRequired?:
|
|
194
|
-
dialect: "cel" | "cron" | "template";
|
|
195
|
-
source?: string | undefined;
|
|
196
|
-
ast?: unknown;
|
|
197
|
-
meta?: {
|
|
198
|
-
rationale?: string | undefined;
|
|
199
|
-
generatedBy?: string | undefined;
|
|
200
|
-
} | undefined;
|
|
201
|
-
} | {
|
|
202
|
-
dialect: "cel" | "cron" | "template";
|
|
203
|
-
source?: string | undefined;
|
|
204
|
-
ast?: unknown;
|
|
205
|
-
meta?: {
|
|
206
|
-
rationale?: string | undefined;
|
|
207
|
-
generatedBy?: string | undefined;
|
|
208
|
-
} | undefined;
|
|
209
|
-
} | undefined;
|
|
204
|
+
conditionalRequired?: undefined;
|
|
210
205
|
widget?: string | undefined;
|
|
211
206
|
requiredPermissions?: string[] | undefined;
|
|
207
|
+
ackPlaintextMasking?: boolean | undefined;
|
|
212
208
|
system?: boolean | undefined;
|
|
213
209
|
inlineHelpText?: string | undefined;
|
|
214
210
|
autonumberFormat?: string | undefined;
|
|
@@ -319,8 +315,8 @@ declare const SysWebhook: Omit<{
|
|
|
319
315
|
} | undefined;
|
|
320
316
|
indexes?: {
|
|
321
317
|
fields: string[];
|
|
322
|
-
type: "hash" | "
|
|
323
|
-
unique: boolean;
|
|
318
|
+
type: "hash" | "fulltext" | "btree" | "gin" | "gist";
|
|
319
|
+
unique: boolean | "global";
|
|
324
320
|
name?: string | undefined;
|
|
325
321
|
partial?: string | undefined;
|
|
326
322
|
}[] | undefined;
|
|
@@ -371,6 +367,7 @@ declare const SysWebhook: Omit<{
|
|
|
371
367
|
} | undefined;
|
|
372
368
|
reclaim?: boolean | undefined;
|
|
373
369
|
} | undefined;
|
|
370
|
+
fileAccessDelegate?: string | undefined;
|
|
374
371
|
validations?: _objectstack_spec_data.BaseValidationRuleShape[] | undefined;
|
|
375
372
|
activityMilestones?: {
|
|
376
373
|
field: string;
|
|
@@ -405,14 +402,21 @@ declare const SysWebhook: Omit<{
|
|
|
405
402
|
field: string;
|
|
406
403
|
label?: string | undefined;
|
|
407
404
|
width?: number | undefined;
|
|
408
|
-
align?: "left" | "
|
|
405
|
+
align?: "left" | "right" | "center" | undefined;
|
|
409
406
|
hidden?: boolean | undefined;
|
|
410
407
|
sortable?: boolean | undefined;
|
|
411
408
|
resizable?: boolean | undefined;
|
|
412
409
|
wrap?: boolean | undefined;
|
|
413
410
|
type?: string | undefined;
|
|
414
411
|
pinned?: "left" | "right" | undefined;
|
|
415
|
-
summary?: "min" | "max" | "count" | "sum" | "avg" | "none" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" |
|
|
412
|
+
summary?: "min" | "max" | "count" | "sum" | "avg" | "none" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | {
|
|
413
|
+
type: "min" | "max" | "count" | "sum" | "avg" | "none" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled";
|
|
414
|
+
field?: string | undefined;
|
|
415
|
+
} | undefined;
|
|
416
|
+
prefix?: {
|
|
417
|
+
field: string;
|
|
418
|
+
type: "text" | "badge";
|
|
419
|
+
} | undefined;
|
|
416
420
|
link?: boolean | undefined;
|
|
417
421
|
action?: string | undefined;
|
|
418
422
|
}[];
|
|
@@ -422,49 +426,52 @@ declare const SysWebhook: Omit<{
|
|
|
422
426
|
}[] | undefined;
|
|
423
427
|
filter?: {
|
|
424
428
|
field: string;
|
|
425
|
-
operator: "in" | "contains" | "after" | "
|
|
429
|
+
operator: "in" | "contains" | "after" | "equals" | "not_equals" | "greater_than" | "greater_than_or_equal" | "less_than" | "less_than_or_equal" | "before" | "not_in" | "not_contains" | "starts_with" | "ends_with" | "between" | "is_null" | "is_not_null" | "is_empty" | "is_not_empty";
|
|
426
430
|
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
427
431
|
}[] | undefined;
|
|
428
432
|
description?: string | undefined;
|
|
429
433
|
label?: string | undefined;
|
|
430
434
|
name?: string | undefined;
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
md?: number | undefined;
|
|
438
|
-
lg?: number | undefined;
|
|
439
|
-
xl?: number | undefined;
|
|
440
|
-
'2xl'?: number | undefined;
|
|
441
|
-
} | undefined;
|
|
442
|
-
order?: {
|
|
443
|
-
xs?: number | undefined;
|
|
444
|
-
sm?: number | undefined;
|
|
445
|
-
md?: number | undefined;
|
|
446
|
-
lg?: number | undefined;
|
|
447
|
-
xl?: number | undefined;
|
|
448
|
-
'2xl'?: number | undefined;
|
|
449
|
-
} | undefined;
|
|
435
|
+
tree?: {
|
|
436
|
+
[x: string]: unknown;
|
|
437
|
+
parentField?: string | undefined;
|
|
438
|
+
labelField?: string | undefined;
|
|
439
|
+
fields?: string[] | undefined;
|
|
440
|
+
defaultExpandedDepth?: number | undefined;
|
|
450
441
|
} | undefined;
|
|
442
|
+
inlineEdit?: boolean | undefined;
|
|
451
443
|
navigation?: {
|
|
452
|
-
mode: "none" | "split" | "page" | "
|
|
444
|
+
mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
453
445
|
preventNavigation: boolean;
|
|
454
446
|
openNewTab: boolean;
|
|
455
|
-
size: "full" | "md" | "
|
|
447
|
+
size: "full" | "md" | "auto" | "sm" | "lg" | "xl";
|
|
456
448
|
view?: string | undefined;
|
|
457
449
|
width?: string | number | undefined;
|
|
458
450
|
} | undefined;
|
|
459
|
-
sharing?: {
|
|
460
|
-
type: "personal" | "collaborative";
|
|
461
|
-
lockedBy?: string | undefined;
|
|
462
|
-
} | undefined;
|
|
463
451
|
aria?: {
|
|
464
452
|
ariaLabel?: string | undefined;
|
|
465
453
|
ariaDescribedBy?: string | undefined;
|
|
466
454
|
role?: string | undefined;
|
|
467
455
|
} | undefined;
|
|
456
|
+
sharing?: {
|
|
457
|
+
type: "personal" | "collaborative";
|
|
458
|
+
lockedBy?: string | undefined;
|
|
459
|
+
} | undefined;
|
|
460
|
+
tabs?: {
|
|
461
|
+
name: string;
|
|
462
|
+
pinned: boolean;
|
|
463
|
+
isDefault: boolean;
|
|
464
|
+
visible: boolean;
|
|
465
|
+
label?: string | undefined;
|
|
466
|
+
icon?: string | undefined;
|
|
467
|
+
view?: string | undefined;
|
|
468
|
+
filter?: {
|
|
469
|
+
field: string;
|
|
470
|
+
operator: "in" | "contains" | "after" | "equals" | "not_equals" | "greater_than" | "greater_than_or_equal" | "less_than" | "less_than_or_equal" | "before" | "not_in" | "not_contains" | "starts_with" | "ends_with" | "between" | "is_null" | "is_not_null" | "is_empty" | "is_not_empty";
|
|
471
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
472
|
+
}[] | undefined;
|
|
473
|
+
order?: number | undefined;
|
|
474
|
+
}[] | undefined;
|
|
468
475
|
data?: {
|
|
469
476
|
provider: "object";
|
|
470
477
|
object: string;
|
|
@@ -492,20 +499,17 @@ declare const SysWebhook: Omit<{
|
|
|
492
499
|
schemaId: string;
|
|
493
500
|
schema?: Record<string, unknown> | undefined;
|
|
494
501
|
} | undefined;
|
|
502
|
+
pagination?: {
|
|
503
|
+
pageSize: number;
|
|
504
|
+
pageSizeOptions?: number[] | undefined;
|
|
505
|
+
} | undefined;
|
|
495
506
|
emptyState?: {
|
|
496
507
|
title?: string | undefined;
|
|
497
508
|
message?: string | undefined;
|
|
498
509
|
icon?: string | undefined;
|
|
499
510
|
} | undefined;
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
parentField?: string | undefined;
|
|
503
|
-
labelField?: string | undefined;
|
|
504
|
-
fields?: string[] | undefined;
|
|
505
|
-
defaultExpandedDepth?: number | undefined;
|
|
506
|
-
} | undefined;
|
|
507
|
-
inlineEdit?: boolean | undefined;
|
|
508
|
-
virtualScroll?: boolean | undefined;
|
|
511
|
+
responsive?: undefined;
|
|
512
|
+
performance?: undefined;
|
|
509
513
|
resizable?: boolean | undefined;
|
|
510
514
|
kanban?: {
|
|
511
515
|
groupByField: string;
|
|
@@ -565,27 +569,12 @@ declare const SysWebhook: Omit<{
|
|
|
565
569
|
autoZoomToFilter?: boolean | undefined;
|
|
566
570
|
} | undefined;
|
|
567
571
|
chart?: {
|
|
568
|
-
chartType: "bar" | "line" | "
|
|
572
|
+
chartType: "bar" | "line" | "area" | "pie" | "scatter";
|
|
569
573
|
dataset: string;
|
|
570
574
|
values: string[];
|
|
571
575
|
dimensions?: string[] | undefined;
|
|
572
576
|
} | undefined;
|
|
573
577
|
rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
|
|
574
|
-
tabs?: {
|
|
575
|
-
name: string;
|
|
576
|
-
pinned: boolean;
|
|
577
|
-
isDefault: boolean;
|
|
578
|
-
visible: boolean;
|
|
579
|
-
label?: string | undefined;
|
|
580
|
-
icon?: string | undefined;
|
|
581
|
-
view?: string | undefined;
|
|
582
|
-
filter?: {
|
|
583
|
-
field: string;
|
|
584
|
-
operator: "in" | "contains" | "after" | "starts_with" | "ends_with" | "not_in" | "not_contains" | "between" | "is_null" | "is_not_null" | "is_empty" | "is_not_empty" | "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "before";
|
|
585
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
586
|
-
}[] | undefined;
|
|
587
|
-
order?: number | undefined;
|
|
588
|
-
}[] | undefined;
|
|
589
578
|
searchableFields?: string[] | undefined;
|
|
590
579
|
filterableFields?: string[] | undefined;
|
|
591
580
|
striped?: boolean | undefined;
|
|
@@ -594,10 +583,6 @@ declare const SysWebhook: Omit<{
|
|
|
594
583
|
selection?: {
|
|
595
584
|
type: "none" | "multiple" | "single";
|
|
596
585
|
} | undefined;
|
|
597
|
-
pagination?: {
|
|
598
|
-
pageSize: number;
|
|
599
|
-
pageSizeOptions?: number[] | undefined;
|
|
600
|
-
} | undefined;
|
|
601
586
|
grouping?: {
|
|
602
587
|
fields: {
|
|
603
588
|
field: string;
|
|
@@ -614,6 +599,7 @@ declare const SysWebhook: Omit<{
|
|
|
614
599
|
rowActions?: string[] | undefined;
|
|
615
600
|
bulkActions?: string[] | undefined;
|
|
616
601
|
bulkActionDefs?: Record<string, any>[] | undefined;
|
|
602
|
+
virtualScroll?: boolean | undefined;
|
|
617
603
|
conditionalFormatting?: {
|
|
618
604
|
condition: {
|
|
619
605
|
dialect: "cel" | "cron" | "template";
|
|
@@ -657,18 +643,6 @@ declare const SysWebhook: Omit<{
|
|
|
657
643
|
} | undefined;
|
|
658
644
|
showRecordCount?: boolean | undefined;
|
|
659
645
|
allowPrinting?: boolean | undefined;
|
|
660
|
-
performance?: {
|
|
661
|
-
lazyLoad?: boolean | undefined;
|
|
662
|
-
virtualScroll?: {
|
|
663
|
-
enabled: boolean;
|
|
664
|
-
itemHeight?: number | undefined;
|
|
665
|
-
overscan?: number | undefined;
|
|
666
|
-
} | undefined;
|
|
667
|
-
cacheStrategy?: "none" | "cache-first" | "network-first" | "stale-while-revalidate" | undefined;
|
|
668
|
-
prefetch?: boolean | undefined;
|
|
669
|
-
pageSize?: number | undefined;
|
|
670
|
-
debounceMs?: number | undefined;
|
|
671
|
-
} | undefined;
|
|
672
646
|
userFilters?: {
|
|
673
647
|
element: "toggle" | "dropdown";
|
|
674
648
|
fields?: {
|
|
@@ -693,10 +667,8 @@ declare const SysWebhook: Omit<{
|
|
|
693
667
|
files: boolean;
|
|
694
668
|
feeds: boolean;
|
|
695
669
|
activities: boolean;
|
|
696
|
-
trash: boolean;
|
|
697
|
-
mru: boolean;
|
|
698
670
|
clone: boolean;
|
|
699
|
-
apiMethods?: ("create" | "update" | "delete" | "
|
|
671
|
+
apiMethods?: ("create" | "update" | "delete" | "get" | "list" | "bulk")[] | undefined;
|
|
700
672
|
} | undefined;
|
|
701
673
|
sharingModel?: "private" | "public_read" | "public_read_write" | "controlled_by_parent" | undefined;
|
|
702
674
|
externalSharingModel?: "private" | "public_read" | "public_read_write" | "controlled_by_parent" | undefined;
|
|
@@ -711,7 +683,7 @@ declare const SysWebhook: Omit<{
|
|
|
711
683
|
actions?: Omit<{
|
|
712
684
|
name: string;
|
|
713
685
|
label: string;
|
|
714
|
-
type: "url" | "form" | "
|
|
686
|
+
type: "url" | "form" | "script" | "flow" | "api" | "modal";
|
|
715
687
|
refreshAfter: boolean;
|
|
716
688
|
objectName?: string | undefined;
|
|
717
689
|
icon?: string | undefined;
|
|
@@ -729,14 +701,14 @@ declare const SysWebhook: Omit<{
|
|
|
729
701
|
timeoutMs?: number | undefined;
|
|
730
702
|
memoryMb?: number | undefined;
|
|
731
703
|
} | undefined;
|
|
732
|
-
execute?:
|
|
704
|
+
execute?: undefined;
|
|
733
705
|
params?: Omit<{
|
|
734
706
|
required: boolean;
|
|
735
707
|
name?: string | undefined;
|
|
736
708
|
field?: string | undefined;
|
|
737
709
|
objectOverride?: string | undefined;
|
|
738
710
|
label?: string | undefined;
|
|
739
|
-
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "
|
|
711
|
+
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "text" | "textarea" | "email" | "phone" | "password" | "secret" | "markdown" | "html" | "richtext" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "user" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
740
712
|
options?: {
|
|
741
713
|
label: string;
|
|
742
714
|
value: string;
|
|
@@ -747,6 +719,7 @@ declare const SysWebhook: Omit<{
|
|
|
747
719
|
multiple?: boolean | undefined;
|
|
748
720
|
accept?: string[] | undefined;
|
|
749
721
|
maxSize?: number | undefined;
|
|
722
|
+
reference?: string | undefined;
|
|
750
723
|
defaultFromRow?: boolean | undefined;
|
|
751
724
|
visible?: {
|
|
752
725
|
dialect: "cel" | "cron" | "template";
|
|
@@ -759,7 +732,7 @@ declare const SysWebhook: Omit<{
|
|
|
759
732
|
} | undefined;
|
|
760
733
|
requiresFeature?: "twoFactor" | "passkeys" | "magicLink" | "organization" | "multiOrgEnabled" | "degradedTenancy" | "oidcProvider" | "sso" | "ssoEnforced" | "deviceAuthorization" | "admin" | "phoneNumber" | "phoneNumberOtp" | undefined;
|
|
761
734
|
}, "requiresFeature">[] | undefined;
|
|
762
|
-
variant?: "link" | "
|
|
735
|
+
variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
|
|
763
736
|
order?: number | undefined;
|
|
764
737
|
confirmText?: string | undefined;
|
|
765
738
|
successMessage?: string | undefined;
|
|
@@ -769,11 +742,11 @@ declare const SysWebhook: Omit<{
|
|
|
769
742
|
title?: string | undefined;
|
|
770
743
|
description?: string | undefined;
|
|
771
744
|
acknowledge?: string | undefined;
|
|
772
|
-
format?: "
|
|
745
|
+
format?: "text" | "secret" | "json" | "qrcode" | "code-list" | undefined;
|
|
773
746
|
fields?: {
|
|
774
747
|
path: string;
|
|
775
748
|
label?: string | undefined;
|
|
776
|
-
format?: "
|
|
749
|
+
format?: "text" | "secret" | "json" | "qrcode" | "code-list" | undefined;
|
|
777
750
|
}[] | undefined;
|
|
778
751
|
} | undefined;
|
|
779
752
|
visible?: {
|
|
@@ -796,8 +769,8 @@ declare const SysWebhook: Omit<{
|
|
|
796
769
|
} | undefined;
|
|
797
770
|
} | undefined;
|
|
798
771
|
requiredPermissions?: string[] | undefined;
|
|
799
|
-
shortcut?:
|
|
800
|
-
bulkEnabled?:
|
|
772
|
+
shortcut?: undefined;
|
|
773
|
+
bulkEnabled?: undefined;
|
|
801
774
|
ai?: {
|
|
802
775
|
exposed: boolean;
|
|
803
776
|
description?: string | undefined;
|
|
@@ -844,7 +817,7 @@ declare const SysWebhook: Omit<{
|
|
|
844
817
|
readonly delete: true;
|
|
845
818
|
readonly import: false;
|
|
846
819
|
};
|
|
847
|
-
readonly description: "Outbound HTTP webhook subscription.
|
|
820
|
+
readonly description: "Outbound HTTP webhook subscription. Declared in code via defineStack({ webhooks }) / defineWebhook() (materialized into rows on boot) or authored directly in the Studio editor; dispatched by the webhook auto-enqueuer onto the shared HTTP outbox.";
|
|
848
821
|
readonly displayNameField: "name";
|
|
849
822
|
readonly nameField: "name";
|
|
850
823
|
readonly titleFormat: "{label}";
|
|
@@ -966,14 +939,12 @@ declare const SysWebhook: Omit<{
|
|
|
966
939
|
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
967
940
|
readonly widget?: string | undefined;
|
|
968
941
|
readonly multiple?: boolean | undefined;
|
|
942
|
+
readonly storage?: {
|
|
943
|
+
notNull?: boolean | undefined;
|
|
944
|
+
} | undefined;
|
|
945
|
+
readonly maxSize?: number | undefined;
|
|
969
946
|
readonly externalId?: boolean | undefined;
|
|
970
947
|
readonly defaultValue?: unknown;
|
|
971
|
-
readonly requiredPermissions?: string[] | undefined;
|
|
972
|
-
readonly group?: string | undefined;
|
|
973
|
-
readonly hidden?: boolean | undefined;
|
|
974
|
-
readonly system?: boolean | undefined;
|
|
975
|
-
readonly min?: number | undefined;
|
|
976
|
-
readonly max?: number | undefined;
|
|
977
948
|
readonly visibleWhen?: {
|
|
978
949
|
dialect: "cel" | "cron" | "template";
|
|
979
950
|
source?: string | undefined;
|
|
@@ -984,10 +955,13 @@ declare const SysWebhook: Omit<{
|
|
|
984
955
|
} | undefined;
|
|
985
956
|
} | undefined;
|
|
986
957
|
readonly searchable?: boolean | undefined;
|
|
987
|
-
readonly unique?: boolean | undefined;
|
|
958
|
+
readonly unique?: boolean | "global" | undefined;
|
|
988
959
|
readonly maxLength?: number | undefined;
|
|
989
960
|
readonly minLength?: number | undefined;
|
|
990
961
|
readonly scale?: number | undefined;
|
|
962
|
+
readonly min?: number | undefined;
|
|
963
|
+
readonly max?: number | undefined;
|
|
964
|
+
readonly accept?: string[] | undefined;
|
|
991
965
|
readonly reference?: string | undefined;
|
|
992
966
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
993
967
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
@@ -1008,7 +982,7 @@ declare const SysWebhook: Omit<{
|
|
|
1008
982
|
readonly lookupPageSize?: number | undefined;
|
|
1009
983
|
readonly lookupFilters?: {
|
|
1010
984
|
field: string;
|
|
1011
|
-
operator: "in" | "eq" | "ne" | "
|
|
985
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
1012
986
|
value: any;
|
|
1013
987
|
}[] | undefined;
|
|
1014
988
|
readonly dependsOn?: (string | {
|
|
@@ -1041,6 +1015,7 @@ declare const SysWebhook: Omit<{
|
|
|
1041
1015
|
} | undefined;
|
|
1042
1016
|
readonly dimensions?: number | undefined;
|
|
1043
1017
|
readonly trackHistory?: boolean | undefined;
|
|
1018
|
+
readonly group?: string | undefined;
|
|
1044
1019
|
readonly readonlyWhen?: {
|
|
1045
1020
|
dialect: "cel" | "cron" | "template";
|
|
1046
1021
|
source?: string | undefined;
|
|
@@ -1059,15 +1034,11 @@ declare const SysWebhook: Omit<{
|
|
|
1059
1034
|
generatedBy?: string | undefined;
|
|
1060
1035
|
} | undefined;
|
|
1061
1036
|
} | undefined;
|
|
1062
|
-
readonly conditionalRequired?:
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
rationale?: string | undefined;
|
|
1068
|
-
generatedBy?: string | undefined;
|
|
1069
|
-
} | undefined;
|
|
1070
|
-
} | undefined;
|
|
1037
|
+
readonly conditionalRequired?: undefined;
|
|
1038
|
+
readonly hidden?: boolean | undefined;
|
|
1039
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
1040
|
+
readonly ackPlaintextMasking?: boolean | undefined;
|
|
1041
|
+
readonly system?: boolean | undefined;
|
|
1071
1042
|
readonly sortable?: boolean | undefined;
|
|
1072
1043
|
readonly inlineHelpText?: string | undefined;
|
|
1073
1044
|
readonly autonumberFormat?: string | undefined;
|
|
@@ -1099,14 +1070,12 @@ declare const SysWebhook: Omit<{
|
|
|
1099
1070
|
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
1100
1071
|
readonly widget?: string | undefined;
|
|
1101
1072
|
readonly multiple?: boolean | undefined;
|
|
1073
|
+
readonly storage?: {
|
|
1074
|
+
notNull?: boolean | undefined;
|
|
1075
|
+
} | undefined;
|
|
1076
|
+
readonly maxSize?: number | undefined;
|
|
1102
1077
|
readonly externalId?: boolean | undefined;
|
|
1103
1078
|
readonly defaultValue?: unknown;
|
|
1104
|
-
readonly requiredPermissions?: string[] | undefined;
|
|
1105
|
-
readonly group?: string | undefined;
|
|
1106
|
-
readonly hidden?: boolean | undefined;
|
|
1107
|
-
readonly system?: boolean | undefined;
|
|
1108
|
-
readonly min?: number | undefined;
|
|
1109
|
-
readonly max?: number | undefined;
|
|
1110
1079
|
readonly visibleWhen?: {
|
|
1111
1080
|
dialect: "cel" | "cron" | "template";
|
|
1112
1081
|
source?: string | undefined;
|
|
@@ -1117,10 +1086,13 @@ declare const SysWebhook: Omit<{
|
|
|
1117
1086
|
} | undefined;
|
|
1118
1087
|
} | undefined;
|
|
1119
1088
|
readonly searchable?: boolean | undefined;
|
|
1120
|
-
readonly unique?: boolean | undefined;
|
|
1089
|
+
readonly unique?: boolean | "global" | undefined;
|
|
1121
1090
|
readonly maxLength?: number | undefined;
|
|
1122
1091
|
readonly minLength?: number | undefined;
|
|
1123
1092
|
readonly scale?: number | undefined;
|
|
1093
|
+
readonly min?: number | undefined;
|
|
1094
|
+
readonly max?: number | undefined;
|
|
1095
|
+
readonly accept?: string[] | undefined;
|
|
1124
1096
|
readonly reference?: string | undefined;
|
|
1125
1097
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1126
1098
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
@@ -1141,7 +1113,7 @@ declare const SysWebhook: Omit<{
|
|
|
1141
1113
|
readonly lookupPageSize?: number | undefined;
|
|
1142
1114
|
readonly lookupFilters?: {
|
|
1143
1115
|
field: string;
|
|
1144
|
-
operator: "in" | "eq" | "ne" | "
|
|
1116
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
1145
1117
|
value: any;
|
|
1146
1118
|
}[] | undefined;
|
|
1147
1119
|
readonly dependsOn?: (string | {
|
|
@@ -1174,6 +1146,7 @@ declare const SysWebhook: Omit<{
|
|
|
1174
1146
|
} | undefined;
|
|
1175
1147
|
readonly dimensions?: number | undefined;
|
|
1176
1148
|
readonly trackHistory?: boolean | undefined;
|
|
1149
|
+
readonly group?: string | undefined;
|
|
1177
1150
|
readonly readonlyWhen?: {
|
|
1178
1151
|
dialect: "cel" | "cron" | "template";
|
|
1179
1152
|
source?: string | undefined;
|
|
@@ -1192,15 +1165,11 @@ declare const SysWebhook: Omit<{
|
|
|
1192
1165
|
generatedBy?: string | undefined;
|
|
1193
1166
|
} | undefined;
|
|
1194
1167
|
} | undefined;
|
|
1195
|
-
readonly conditionalRequired?:
|
|
1196
|
-
|
|
1197
|
-
|
|
1198
|
-
|
|
1199
|
-
|
|
1200
|
-
rationale?: string | undefined;
|
|
1201
|
-
generatedBy?: string | undefined;
|
|
1202
|
-
} | undefined;
|
|
1203
|
-
} | undefined;
|
|
1168
|
+
readonly conditionalRequired?: undefined;
|
|
1169
|
+
readonly hidden?: boolean | undefined;
|
|
1170
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
1171
|
+
readonly ackPlaintextMasking?: boolean | undefined;
|
|
1172
|
+
readonly system?: boolean | undefined;
|
|
1204
1173
|
readonly sortable?: boolean | undefined;
|
|
1205
1174
|
readonly inlineHelpText?: string | undefined;
|
|
1206
1175
|
readonly autonumberFormat?: string | undefined;
|
|
@@ -1232,14 +1201,12 @@ declare const SysWebhook: Omit<{
|
|
|
1232
1201
|
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
1233
1202
|
readonly widget?: string | undefined;
|
|
1234
1203
|
readonly multiple?: boolean | undefined;
|
|
1204
|
+
readonly storage?: {
|
|
1205
|
+
notNull?: boolean | undefined;
|
|
1206
|
+
} | undefined;
|
|
1207
|
+
readonly maxSize?: number | undefined;
|
|
1235
1208
|
readonly externalId?: boolean | undefined;
|
|
1236
1209
|
readonly defaultValue?: unknown;
|
|
1237
|
-
readonly requiredPermissions?: string[] | undefined;
|
|
1238
|
-
readonly group?: string | undefined;
|
|
1239
|
-
readonly hidden?: boolean | undefined;
|
|
1240
|
-
readonly system?: boolean | undefined;
|
|
1241
|
-
readonly min?: number | undefined;
|
|
1242
|
-
readonly max?: number | undefined;
|
|
1243
1210
|
readonly visibleWhen?: {
|
|
1244
1211
|
dialect: "cel" | "cron" | "template";
|
|
1245
1212
|
source?: string | undefined;
|
|
@@ -1250,10 +1217,13 @@ declare const SysWebhook: Omit<{
|
|
|
1250
1217
|
} | undefined;
|
|
1251
1218
|
} | undefined;
|
|
1252
1219
|
readonly searchable?: boolean | undefined;
|
|
1253
|
-
readonly unique?: boolean | undefined;
|
|
1220
|
+
readonly unique?: boolean | "global" | undefined;
|
|
1254
1221
|
readonly maxLength?: number | undefined;
|
|
1255
1222
|
readonly minLength?: number | undefined;
|
|
1256
1223
|
readonly scale?: number | undefined;
|
|
1224
|
+
readonly min?: number | undefined;
|
|
1225
|
+
readonly max?: number | undefined;
|
|
1226
|
+
readonly accept?: string[] | undefined;
|
|
1257
1227
|
readonly reference?: string | undefined;
|
|
1258
1228
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1259
1229
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
@@ -1274,7 +1244,7 @@ declare const SysWebhook: Omit<{
|
|
|
1274
1244
|
readonly lookupPageSize?: number | undefined;
|
|
1275
1245
|
readonly lookupFilters?: {
|
|
1276
1246
|
field: string;
|
|
1277
|
-
operator: "in" | "eq" | "ne" | "
|
|
1247
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
1278
1248
|
value: any;
|
|
1279
1249
|
}[] | undefined;
|
|
1280
1250
|
readonly dependsOn?: (string | {
|
|
@@ -1307,6 +1277,7 @@ declare const SysWebhook: Omit<{
|
|
|
1307
1277
|
} | undefined;
|
|
1308
1278
|
readonly dimensions?: number | undefined;
|
|
1309
1279
|
readonly trackHistory?: boolean | undefined;
|
|
1280
|
+
readonly group?: string | undefined;
|
|
1310
1281
|
readonly readonlyWhen?: {
|
|
1311
1282
|
dialect: "cel" | "cron" | "template";
|
|
1312
1283
|
source?: string | undefined;
|
|
@@ -1325,15 +1296,11 @@ declare const SysWebhook: Omit<{
|
|
|
1325
1296
|
generatedBy?: string | undefined;
|
|
1326
1297
|
} | undefined;
|
|
1327
1298
|
} | undefined;
|
|
1328
|
-
readonly conditionalRequired?:
|
|
1329
|
-
|
|
1330
|
-
|
|
1331
|
-
|
|
1332
|
-
|
|
1333
|
-
rationale?: string | undefined;
|
|
1334
|
-
generatedBy?: string | undefined;
|
|
1335
|
-
} | undefined;
|
|
1336
|
-
} | undefined;
|
|
1299
|
+
readonly conditionalRequired?: undefined;
|
|
1300
|
+
readonly hidden?: boolean | undefined;
|
|
1301
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
1302
|
+
readonly ackPlaintextMasking?: boolean | undefined;
|
|
1303
|
+
readonly system?: boolean | undefined;
|
|
1337
1304
|
readonly sortable?: boolean | undefined;
|
|
1338
1305
|
readonly inlineHelpText?: string | undefined;
|
|
1339
1306
|
readonly autonumberFormat?: string | undefined;
|
|
@@ -1365,14 +1332,12 @@ declare const SysWebhook: Omit<{
|
|
|
1365
1332
|
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
1366
1333
|
readonly widget?: string | undefined;
|
|
1367
1334
|
readonly multiple?: boolean | undefined;
|
|
1335
|
+
readonly storage?: {
|
|
1336
|
+
notNull?: boolean | undefined;
|
|
1337
|
+
} | undefined;
|
|
1338
|
+
readonly maxSize?: number | undefined;
|
|
1368
1339
|
readonly externalId?: boolean | undefined;
|
|
1369
1340
|
readonly defaultValue?: unknown;
|
|
1370
|
-
readonly requiredPermissions?: string[] | undefined;
|
|
1371
|
-
readonly group?: string | undefined;
|
|
1372
|
-
readonly hidden?: boolean | undefined;
|
|
1373
|
-
readonly system?: boolean | undefined;
|
|
1374
|
-
readonly min?: number | undefined;
|
|
1375
|
-
readonly max?: number | undefined;
|
|
1376
1341
|
readonly visibleWhen?: {
|
|
1377
1342
|
dialect: "cel" | "cron" | "template";
|
|
1378
1343
|
source?: string | undefined;
|
|
@@ -1383,10 +1348,13 @@ declare const SysWebhook: Omit<{
|
|
|
1383
1348
|
} | undefined;
|
|
1384
1349
|
} | undefined;
|
|
1385
1350
|
readonly searchable?: boolean | undefined;
|
|
1386
|
-
readonly unique?: boolean | undefined;
|
|
1351
|
+
readonly unique?: boolean | "global" | undefined;
|
|
1387
1352
|
readonly maxLength?: number | undefined;
|
|
1388
1353
|
readonly minLength?: number | undefined;
|
|
1389
1354
|
readonly scale?: number | undefined;
|
|
1355
|
+
readonly min?: number | undefined;
|
|
1356
|
+
readonly max?: number | undefined;
|
|
1357
|
+
readonly accept?: string[] | undefined;
|
|
1390
1358
|
readonly reference?: string | undefined;
|
|
1391
1359
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1392
1360
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
@@ -1407,7 +1375,7 @@ declare const SysWebhook: Omit<{
|
|
|
1407
1375
|
readonly lookupPageSize?: number | undefined;
|
|
1408
1376
|
readonly lookupFilters?: {
|
|
1409
1377
|
field: string;
|
|
1410
|
-
operator: "in" | "eq" | "ne" | "
|
|
1378
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
1411
1379
|
value: any;
|
|
1412
1380
|
}[] | undefined;
|
|
1413
1381
|
readonly dependsOn?: (string | {
|
|
@@ -1440,6 +1408,7 @@ declare const SysWebhook: Omit<{
|
|
|
1440
1408
|
} | undefined;
|
|
1441
1409
|
readonly dimensions?: number | undefined;
|
|
1442
1410
|
readonly trackHistory?: boolean | undefined;
|
|
1411
|
+
readonly group?: string | undefined;
|
|
1443
1412
|
readonly readonlyWhen?: {
|
|
1444
1413
|
dialect: "cel" | "cron" | "template";
|
|
1445
1414
|
source?: string | undefined;
|
|
@@ -1458,15 +1427,11 @@ declare const SysWebhook: Omit<{
|
|
|
1458
1427
|
generatedBy?: string | undefined;
|
|
1459
1428
|
} | undefined;
|
|
1460
1429
|
} | undefined;
|
|
1461
|
-
readonly conditionalRequired?:
|
|
1462
|
-
|
|
1463
|
-
|
|
1464
|
-
|
|
1465
|
-
|
|
1466
|
-
rationale?: string | undefined;
|
|
1467
|
-
generatedBy?: string | undefined;
|
|
1468
|
-
} | undefined;
|
|
1469
|
-
} | undefined;
|
|
1430
|
+
readonly conditionalRequired?: undefined;
|
|
1431
|
+
readonly hidden?: boolean | undefined;
|
|
1432
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
1433
|
+
readonly ackPlaintextMasking?: boolean | undefined;
|
|
1434
|
+
readonly system?: boolean | undefined;
|
|
1470
1435
|
readonly sortable?: boolean | undefined;
|
|
1471
1436
|
readonly inlineHelpText?: string | undefined;
|
|
1472
1437
|
readonly autonumberFormat?: string | undefined;
|
|
@@ -1498,14 +1463,12 @@ declare const SysWebhook: Omit<{
|
|
|
1498
1463
|
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
1499
1464
|
readonly widget?: string | undefined;
|
|
1500
1465
|
readonly multiple?: boolean | undefined;
|
|
1466
|
+
readonly storage?: {
|
|
1467
|
+
notNull?: boolean | undefined;
|
|
1468
|
+
} | undefined;
|
|
1469
|
+
readonly maxSize?: number | undefined;
|
|
1501
1470
|
readonly externalId?: boolean | undefined;
|
|
1502
1471
|
readonly defaultValue?: unknown;
|
|
1503
|
-
readonly requiredPermissions?: string[] | undefined;
|
|
1504
|
-
readonly group?: string | undefined;
|
|
1505
|
-
readonly hidden?: boolean | undefined;
|
|
1506
|
-
readonly system?: boolean | undefined;
|
|
1507
|
-
readonly min?: number | undefined;
|
|
1508
|
-
readonly max?: number | undefined;
|
|
1509
1472
|
readonly visibleWhen?: {
|
|
1510
1473
|
dialect: "cel" | "cron" | "template";
|
|
1511
1474
|
source?: string | undefined;
|
|
@@ -1516,10 +1479,13 @@ declare const SysWebhook: Omit<{
|
|
|
1516
1479
|
} | undefined;
|
|
1517
1480
|
} | undefined;
|
|
1518
1481
|
readonly searchable?: boolean | undefined;
|
|
1519
|
-
readonly unique?: boolean | undefined;
|
|
1482
|
+
readonly unique?: boolean | "global" | undefined;
|
|
1520
1483
|
readonly maxLength?: number | undefined;
|
|
1521
1484
|
readonly minLength?: number | undefined;
|
|
1522
1485
|
readonly scale?: number | undefined;
|
|
1486
|
+
readonly min?: number | undefined;
|
|
1487
|
+
readonly max?: number | undefined;
|
|
1488
|
+
readonly accept?: string[] | undefined;
|
|
1523
1489
|
readonly reference?: string | undefined;
|
|
1524
1490
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1525
1491
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
@@ -1540,7 +1506,7 @@ declare const SysWebhook: Omit<{
|
|
|
1540
1506
|
readonly lookupPageSize?: number | undefined;
|
|
1541
1507
|
readonly lookupFilters?: {
|
|
1542
1508
|
field: string;
|
|
1543
|
-
operator: "in" | "eq" | "ne" | "
|
|
1509
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
1544
1510
|
value: any;
|
|
1545
1511
|
}[] | undefined;
|
|
1546
1512
|
readonly dependsOn?: (string | {
|
|
@@ -1573,6 +1539,7 @@ declare const SysWebhook: Omit<{
|
|
|
1573
1539
|
} | undefined;
|
|
1574
1540
|
readonly dimensions?: number | undefined;
|
|
1575
1541
|
readonly trackHistory?: boolean | undefined;
|
|
1542
|
+
readonly group?: string | undefined;
|
|
1576
1543
|
readonly readonlyWhen?: {
|
|
1577
1544
|
dialect: "cel" | "cron" | "template";
|
|
1578
1545
|
source?: string | undefined;
|
|
@@ -1591,15 +1558,11 @@ declare const SysWebhook: Omit<{
|
|
|
1591
1558
|
generatedBy?: string | undefined;
|
|
1592
1559
|
} | undefined;
|
|
1593
1560
|
} | undefined;
|
|
1594
|
-
readonly conditionalRequired?:
|
|
1595
|
-
|
|
1596
|
-
|
|
1597
|
-
|
|
1598
|
-
|
|
1599
|
-
rationale?: string | undefined;
|
|
1600
|
-
generatedBy?: string | undefined;
|
|
1601
|
-
} | undefined;
|
|
1602
|
-
} | undefined;
|
|
1561
|
+
readonly conditionalRequired?: undefined;
|
|
1562
|
+
readonly hidden?: boolean | undefined;
|
|
1563
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
1564
|
+
readonly ackPlaintextMasking?: boolean | undefined;
|
|
1565
|
+
readonly system?: boolean | undefined;
|
|
1603
1566
|
readonly sortable?: boolean | undefined;
|
|
1604
1567
|
readonly inlineHelpText?: string | undefined;
|
|
1605
1568
|
readonly autonumberFormat?: string | undefined;
|
|
@@ -1631,14 +1594,12 @@ declare const SysWebhook: Omit<{
|
|
|
1631
1594
|
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
1632
1595
|
readonly widget?: string | undefined;
|
|
1633
1596
|
readonly multiple?: boolean | undefined;
|
|
1597
|
+
readonly storage?: {
|
|
1598
|
+
notNull?: boolean | undefined;
|
|
1599
|
+
} | undefined;
|
|
1600
|
+
readonly maxSize?: number | undefined;
|
|
1634
1601
|
readonly externalId?: boolean | undefined;
|
|
1635
1602
|
readonly defaultValue?: unknown;
|
|
1636
|
-
readonly requiredPermissions?: string[] | undefined;
|
|
1637
|
-
readonly group?: string | undefined;
|
|
1638
|
-
readonly hidden?: boolean | undefined;
|
|
1639
|
-
readonly system?: boolean | undefined;
|
|
1640
|
-
readonly min?: number | undefined;
|
|
1641
|
-
readonly max?: number | undefined;
|
|
1642
1603
|
readonly visibleWhen?: {
|
|
1643
1604
|
dialect: "cel" | "cron" | "template";
|
|
1644
1605
|
source?: string | undefined;
|
|
@@ -1649,10 +1610,13 @@ declare const SysWebhook: Omit<{
|
|
|
1649
1610
|
} | undefined;
|
|
1650
1611
|
} | undefined;
|
|
1651
1612
|
readonly searchable?: boolean | undefined;
|
|
1652
|
-
readonly unique?: boolean | undefined;
|
|
1613
|
+
readonly unique?: boolean | "global" | undefined;
|
|
1653
1614
|
readonly maxLength?: number | undefined;
|
|
1654
1615
|
readonly minLength?: number | undefined;
|
|
1655
1616
|
readonly scale?: number | undefined;
|
|
1617
|
+
readonly min?: number | undefined;
|
|
1618
|
+
readonly max?: number | undefined;
|
|
1619
|
+
readonly accept?: string[] | undefined;
|
|
1656
1620
|
readonly reference?: string | undefined;
|
|
1657
1621
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1658
1622
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
@@ -1673,7 +1637,7 @@ declare const SysWebhook: Omit<{
|
|
|
1673
1637
|
readonly lookupPageSize?: number | undefined;
|
|
1674
1638
|
readonly lookupFilters?: {
|
|
1675
1639
|
field: string;
|
|
1676
|
-
operator: "in" | "eq" | "ne" | "
|
|
1640
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
1677
1641
|
value: any;
|
|
1678
1642
|
}[] | undefined;
|
|
1679
1643
|
readonly dependsOn?: (string | {
|
|
@@ -1706,6 +1670,7 @@ declare const SysWebhook: Omit<{
|
|
|
1706
1670
|
} | undefined;
|
|
1707
1671
|
readonly dimensions?: number | undefined;
|
|
1708
1672
|
readonly trackHistory?: boolean | undefined;
|
|
1673
|
+
readonly group?: string | undefined;
|
|
1709
1674
|
readonly readonlyWhen?: {
|
|
1710
1675
|
dialect: "cel" | "cron" | "template";
|
|
1711
1676
|
source?: string | undefined;
|
|
@@ -1724,15 +1689,11 @@ declare const SysWebhook: Omit<{
|
|
|
1724
1689
|
generatedBy?: string | undefined;
|
|
1725
1690
|
} | undefined;
|
|
1726
1691
|
} | undefined;
|
|
1727
|
-
readonly conditionalRequired?:
|
|
1728
|
-
|
|
1729
|
-
|
|
1730
|
-
|
|
1731
|
-
|
|
1732
|
-
rationale?: string | undefined;
|
|
1733
|
-
generatedBy?: string | undefined;
|
|
1734
|
-
} | undefined;
|
|
1735
|
-
} | undefined;
|
|
1692
|
+
readonly conditionalRequired?: undefined;
|
|
1693
|
+
readonly hidden?: boolean | undefined;
|
|
1694
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
1695
|
+
readonly ackPlaintextMasking?: boolean | undefined;
|
|
1696
|
+
readonly system?: boolean | undefined;
|
|
1736
1697
|
readonly sortable?: boolean | undefined;
|
|
1737
1698
|
readonly inlineHelpText?: string | undefined;
|
|
1738
1699
|
readonly autonumberFormat?: string | undefined;
|
|
@@ -1764,14 +1725,12 @@ declare const SysWebhook: Omit<{
|
|
|
1764
1725
|
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
1765
1726
|
readonly widget?: string | undefined;
|
|
1766
1727
|
readonly multiple?: boolean | undefined;
|
|
1728
|
+
readonly storage?: {
|
|
1729
|
+
notNull?: boolean | undefined;
|
|
1730
|
+
} | undefined;
|
|
1731
|
+
readonly maxSize?: number | undefined;
|
|
1767
1732
|
readonly externalId?: boolean | undefined;
|
|
1768
1733
|
readonly defaultValue?: unknown;
|
|
1769
|
-
readonly requiredPermissions?: string[] | undefined;
|
|
1770
|
-
readonly group?: string | undefined;
|
|
1771
|
-
readonly hidden?: boolean | undefined;
|
|
1772
|
-
readonly system?: boolean | undefined;
|
|
1773
|
-
readonly min?: number | undefined;
|
|
1774
|
-
readonly max?: number | undefined;
|
|
1775
1734
|
readonly visibleWhen?: {
|
|
1776
1735
|
dialect: "cel" | "cron" | "template";
|
|
1777
1736
|
source?: string | undefined;
|
|
@@ -1782,10 +1741,13 @@ declare const SysWebhook: Omit<{
|
|
|
1782
1741
|
} | undefined;
|
|
1783
1742
|
} | undefined;
|
|
1784
1743
|
readonly searchable?: boolean | undefined;
|
|
1785
|
-
readonly unique?: boolean | undefined;
|
|
1744
|
+
readonly unique?: boolean | "global" | undefined;
|
|
1786
1745
|
readonly maxLength?: number | undefined;
|
|
1787
1746
|
readonly minLength?: number | undefined;
|
|
1788
1747
|
readonly scale?: number | undefined;
|
|
1748
|
+
readonly min?: number | undefined;
|
|
1749
|
+
readonly max?: number | undefined;
|
|
1750
|
+
readonly accept?: string[] | undefined;
|
|
1789
1751
|
readonly reference?: string | undefined;
|
|
1790
1752
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1791
1753
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
@@ -1806,7 +1768,7 @@ declare const SysWebhook: Omit<{
|
|
|
1806
1768
|
readonly lookupPageSize?: number | undefined;
|
|
1807
1769
|
readonly lookupFilters?: {
|
|
1808
1770
|
field: string;
|
|
1809
|
-
operator: "in" | "eq" | "ne" | "
|
|
1771
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
1810
1772
|
value: any;
|
|
1811
1773
|
}[] | undefined;
|
|
1812
1774
|
readonly dependsOn?: (string | {
|
|
@@ -1839,6 +1801,7 @@ declare const SysWebhook: Omit<{
|
|
|
1839
1801
|
} | undefined;
|
|
1840
1802
|
readonly dimensions?: number | undefined;
|
|
1841
1803
|
readonly trackHistory?: boolean | undefined;
|
|
1804
|
+
readonly group?: string | undefined;
|
|
1842
1805
|
readonly readonlyWhen?: {
|
|
1843
1806
|
dialect: "cel" | "cron" | "template";
|
|
1844
1807
|
source?: string | undefined;
|
|
@@ -1857,15 +1820,11 @@ declare const SysWebhook: Omit<{
|
|
|
1857
1820
|
generatedBy?: string | undefined;
|
|
1858
1821
|
} | undefined;
|
|
1859
1822
|
} | undefined;
|
|
1860
|
-
readonly conditionalRequired?:
|
|
1861
|
-
|
|
1862
|
-
|
|
1863
|
-
|
|
1864
|
-
|
|
1865
|
-
rationale?: string | undefined;
|
|
1866
|
-
generatedBy?: string | undefined;
|
|
1867
|
-
} | undefined;
|
|
1868
|
-
} | undefined;
|
|
1823
|
+
readonly conditionalRequired?: undefined;
|
|
1824
|
+
readonly hidden?: boolean | undefined;
|
|
1825
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
1826
|
+
readonly ackPlaintextMasking?: boolean | undefined;
|
|
1827
|
+
readonly system?: boolean | undefined;
|
|
1869
1828
|
readonly sortable?: boolean | undefined;
|
|
1870
1829
|
readonly inlineHelpText?: string | undefined;
|
|
1871
1830
|
readonly autonumberFormat?: string | undefined;
|
|
@@ -1897,14 +1856,12 @@ declare const SysWebhook: Omit<{
|
|
|
1897
1856
|
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
1898
1857
|
readonly widget?: string | undefined;
|
|
1899
1858
|
readonly multiple?: boolean | undefined;
|
|
1859
|
+
readonly storage?: {
|
|
1860
|
+
notNull?: boolean | undefined;
|
|
1861
|
+
} | undefined;
|
|
1862
|
+
readonly maxSize?: number | undefined;
|
|
1900
1863
|
readonly externalId?: boolean | undefined;
|
|
1901
1864
|
readonly defaultValue?: unknown;
|
|
1902
|
-
readonly requiredPermissions?: string[] | undefined;
|
|
1903
|
-
readonly group?: string | undefined;
|
|
1904
|
-
readonly hidden?: boolean | undefined;
|
|
1905
|
-
readonly system?: boolean | undefined;
|
|
1906
|
-
readonly min?: number | undefined;
|
|
1907
|
-
readonly max?: number | undefined;
|
|
1908
1865
|
readonly visibleWhen?: {
|
|
1909
1866
|
dialect: "cel" | "cron" | "template";
|
|
1910
1867
|
source?: string | undefined;
|
|
@@ -1915,10 +1872,13 @@ declare const SysWebhook: Omit<{
|
|
|
1915
1872
|
} | undefined;
|
|
1916
1873
|
} | undefined;
|
|
1917
1874
|
readonly searchable?: boolean | undefined;
|
|
1918
|
-
readonly unique?: boolean | undefined;
|
|
1875
|
+
readonly unique?: boolean | "global" | undefined;
|
|
1919
1876
|
readonly maxLength?: number | undefined;
|
|
1920
1877
|
readonly minLength?: number | undefined;
|
|
1921
1878
|
readonly scale?: number | undefined;
|
|
1879
|
+
readonly min?: number | undefined;
|
|
1880
|
+
readonly max?: number | undefined;
|
|
1881
|
+
readonly accept?: string[] | undefined;
|
|
1922
1882
|
readonly reference?: string | undefined;
|
|
1923
1883
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1924
1884
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
@@ -1939,7 +1899,7 @@ declare const SysWebhook: Omit<{
|
|
|
1939
1899
|
readonly lookupPageSize?: number | undefined;
|
|
1940
1900
|
readonly lookupFilters?: {
|
|
1941
1901
|
field: string;
|
|
1942
|
-
operator: "in" | "eq" | "ne" | "
|
|
1902
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
1943
1903
|
value: any;
|
|
1944
1904
|
}[] | undefined;
|
|
1945
1905
|
readonly dependsOn?: (string | {
|
|
@@ -1972,6 +1932,7 @@ declare const SysWebhook: Omit<{
|
|
|
1972
1932
|
} | undefined;
|
|
1973
1933
|
readonly dimensions?: number | undefined;
|
|
1974
1934
|
readonly trackHistory?: boolean | undefined;
|
|
1935
|
+
readonly group?: string | undefined;
|
|
1975
1936
|
readonly readonlyWhen?: {
|
|
1976
1937
|
dialect: "cel" | "cron" | "template";
|
|
1977
1938
|
source?: string | undefined;
|
|
@@ -1990,15 +1951,11 @@ declare const SysWebhook: Omit<{
|
|
|
1990
1951
|
generatedBy?: string | undefined;
|
|
1991
1952
|
} | undefined;
|
|
1992
1953
|
} | undefined;
|
|
1993
|
-
readonly conditionalRequired?:
|
|
1994
|
-
|
|
1995
|
-
|
|
1996
|
-
|
|
1997
|
-
|
|
1998
|
-
rationale?: string | undefined;
|
|
1999
|
-
generatedBy?: string | undefined;
|
|
2000
|
-
} | undefined;
|
|
2001
|
-
} | undefined;
|
|
1954
|
+
readonly conditionalRequired?: undefined;
|
|
1955
|
+
readonly hidden?: boolean | undefined;
|
|
1956
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
1957
|
+
readonly ackPlaintextMasking?: boolean | undefined;
|
|
1958
|
+
readonly system?: boolean | undefined;
|
|
2002
1959
|
readonly sortable?: boolean | undefined;
|
|
2003
1960
|
readonly inlineHelpText?: string | undefined;
|
|
2004
1961
|
readonly autonumberFormat?: string | undefined;
|
|
@@ -2030,14 +1987,12 @@ declare const SysWebhook: Omit<{
|
|
|
2030
1987
|
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
2031
1988
|
readonly widget?: string | undefined;
|
|
2032
1989
|
readonly multiple?: boolean | undefined;
|
|
1990
|
+
readonly storage?: {
|
|
1991
|
+
notNull?: boolean | undefined;
|
|
1992
|
+
} | undefined;
|
|
1993
|
+
readonly maxSize?: number | undefined;
|
|
2033
1994
|
readonly externalId?: boolean | undefined;
|
|
2034
1995
|
readonly defaultValue?: unknown;
|
|
2035
|
-
readonly requiredPermissions?: string[] | undefined;
|
|
2036
|
-
readonly group?: string | undefined;
|
|
2037
|
-
readonly hidden?: boolean | undefined;
|
|
2038
|
-
readonly system?: boolean | undefined;
|
|
2039
|
-
readonly min?: number | undefined;
|
|
2040
|
-
readonly max?: number | undefined;
|
|
2041
1996
|
readonly visibleWhen?: {
|
|
2042
1997
|
dialect: "cel" | "cron" | "template";
|
|
2043
1998
|
source?: string | undefined;
|
|
@@ -2048,10 +2003,13 @@ declare const SysWebhook: Omit<{
|
|
|
2048
2003
|
} | undefined;
|
|
2049
2004
|
} | undefined;
|
|
2050
2005
|
readonly searchable?: boolean | undefined;
|
|
2051
|
-
readonly unique?: boolean | undefined;
|
|
2006
|
+
readonly unique?: boolean | "global" | undefined;
|
|
2052
2007
|
readonly maxLength?: number | undefined;
|
|
2053
2008
|
readonly minLength?: number | undefined;
|
|
2054
2009
|
readonly scale?: number | undefined;
|
|
2010
|
+
readonly min?: number | undefined;
|
|
2011
|
+
readonly max?: number | undefined;
|
|
2012
|
+
readonly accept?: string[] | undefined;
|
|
2055
2013
|
readonly reference?: string | undefined;
|
|
2056
2014
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2057
2015
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
@@ -2072,7 +2030,7 @@ declare const SysWebhook: Omit<{
|
|
|
2072
2030
|
readonly lookupPageSize?: number | undefined;
|
|
2073
2031
|
readonly lookupFilters?: {
|
|
2074
2032
|
field: string;
|
|
2075
|
-
operator: "in" | "eq" | "ne" | "
|
|
2033
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
2076
2034
|
value: any;
|
|
2077
2035
|
}[] | undefined;
|
|
2078
2036
|
readonly dependsOn?: (string | {
|
|
@@ -2105,6 +2063,7 @@ declare const SysWebhook: Omit<{
|
|
|
2105
2063
|
} | undefined;
|
|
2106
2064
|
readonly dimensions?: number | undefined;
|
|
2107
2065
|
readonly trackHistory?: boolean | undefined;
|
|
2066
|
+
readonly group?: string | undefined;
|
|
2108
2067
|
readonly readonlyWhen?: {
|
|
2109
2068
|
dialect: "cel" | "cron" | "template";
|
|
2110
2069
|
source?: string | undefined;
|
|
@@ -2123,15 +2082,11 @@ declare const SysWebhook: Omit<{
|
|
|
2123
2082
|
generatedBy?: string | undefined;
|
|
2124
2083
|
} | undefined;
|
|
2125
2084
|
} | undefined;
|
|
2126
|
-
readonly conditionalRequired?:
|
|
2127
|
-
|
|
2128
|
-
|
|
2129
|
-
|
|
2130
|
-
|
|
2131
|
-
rationale?: string | undefined;
|
|
2132
|
-
generatedBy?: string | undefined;
|
|
2133
|
-
} | undefined;
|
|
2134
|
-
} | undefined;
|
|
2085
|
+
readonly conditionalRequired?: undefined;
|
|
2086
|
+
readonly hidden?: boolean | undefined;
|
|
2087
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
2088
|
+
readonly ackPlaintextMasking?: boolean | undefined;
|
|
2089
|
+
readonly system?: boolean | undefined;
|
|
2135
2090
|
readonly sortable?: boolean | undefined;
|
|
2136
2091
|
readonly inlineHelpText?: string | undefined;
|
|
2137
2092
|
readonly autonumberFormat?: string | undefined;
|
|
@@ -2163,14 +2118,12 @@ declare const SysWebhook: Omit<{
|
|
|
2163
2118
|
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
2164
2119
|
readonly widget?: string | undefined;
|
|
2165
2120
|
readonly multiple?: boolean | undefined;
|
|
2121
|
+
readonly storage?: {
|
|
2122
|
+
notNull?: boolean | undefined;
|
|
2123
|
+
} | undefined;
|
|
2124
|
+
readonly maxSize?: number | undefined;
|
|
2166
2125
|
readonly externalId?: boolean | undefined;
|
|
2167
2126
|
readonly defaultValue?: unknown;
|
|
2168
|
-
readonly requiredPermissions?: string[] | undefined;
|
|
2169
|
-
readonly group?: string | undefined;
|
|
2170
|
-
readonly hidden?: boolean | undefined;
|
|
2171
|
-
readonly system?: boolean | undefined;
|
|
2172
|
-
readonly min?: number | undefined;
|
|
2173
|
-
readonly max?: number | undefined;
|
|
2174
2127
|
readonly visibleWhen?: {
|
|
2175
2128
|
dialect: "cel" | "cron" | "template";
|
|
2176
2129
|
source?: string | undefined;
|
|
@@ -2181,10 +2134,13 @@ declare const SysWebhook: Omit<{
|
|
|
2181
2134
|
} | undefined;
|
|
2182
2135
|
} | undefined;
|
|
2183
2136
|
readonly searchable?: boolean | undefined;
|
|
2184
|
-
readonly unique?: boolean | undefined;
|
|
2137
|
+
readonly unique?: boolean | "global" | undefined;
|
|
2185
2138
|
readonly maxLength?: number | undefined;
|
|
2186
2139
|
readonly minLength?: number | undefined;
|
|
2187
2140
|
readonly scale?: number | undefined;
|
|
2141
|
+
readonly min?: number | undefined;
|
|
2142
|
+
readonly max?: number | undefined;
|
|
2143
|
+
readonly accept?: string[] | undefined;
|
|
2188
2144
|
readonly reference?: string | undefined;
|
|
2189
2145
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2190
2146
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
@@ -2205,7 +2161,7 @@ declare const SysWebhook: Omit<{
|
|
|
2205
2161
|
readonly lookupPageSize?: number | undefined;
|
|
2206
2162
|
readonly lookupFilters?: {
|
|
2207
2163
|
field: string;
|
|
2208
|
-
operator: "in" | "eq" | "ne" | "
|
|
2164
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
2209
2165
|
value: any;
|
|
2210
2166
|
}[] | undefined;
|
|
2211
2167
|
readonly dependsOn?: (string | {
|
|
@@ -2238,6 +2194,7 @@ declare const SysWebhook: Omit<{
|
|
|
2238
2194
|
} | undefined;
|
|
2239
2195
|
readonly dimensions?: number | undefined;
|
|
2240
2196
|
readonly trackHistory?: boolean | undefined;
|
|
2197
|
+
readonly group?: string | undefined;
|
|
2241
2198
|
readonly readonlyWhen?: {
|
|
2242
2199
|
dialect: "cel" | "cron" | "template";
|
|
2243
2200
|
source?: string | undefined;
|
|
@@ -2256,7 +2213,49 @@ declare const SysWebhook: Omit<{
|
|
|
2256
2213
|
generatedBy?: string | undefined;
|
|
2257
2214
|
} | undefined;
|
|
2258
2215
|
} | undefined;
|
|
2259
|
-
readonly conditionalRequired?:
|
|
2216
|
+
readonly conditionalRequired?: undefined;
|
|
2217
|
+
readonly hidden?: boolean | undefined;
|
|
2218
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
2219
|
+
readonly ackPlaintextMasking?: boolean | undefined;
|
|
2220
|
+
readonly system?: boolean | undefined;
|
|
2221
|
+
readonly sortable?: boolean | undefined;
|
|
2222
|
+
readonly inlineHelpText?: string | undefined;
|
|
2223
|
+
readonly autonumberFormat?: string | undefined;
|
|
2224
|
+
readonly type: "textarea";
|
|
2225
|
+
};
|
|
2226
|
+
readonly managed_by: {
|
|
2227
|
+
readonly readonly?: boolean | undefined;
|
|
2228
|
+
readonly format?: string | undefined;
|
|
2229
|
+
options: {
|
|
2230
|
+
label: string;
|
|
2231
|
+
value: string;
|
|
2232
|
+
color?: string | undefined;
|
|
2233
|
+
default?: boolean | undefined;
|
|
2234
|
+
visibleWhen?: {
|
|
2235
|
+
dialect: "cel" | "cron" | "template";
|
|
2236
|
+
source?: string | undefined;
|
|
2237
|
+
ast?: unknown;
|
|
2238
|
+
meta?: {
|
|
2239
|
+
rationale?: string | undefined;
|
|
2240
|
+
generatedBy?: string | undefined;
|
|
2241
|
+
} | undefined;
|
|
2242
|
+
} | undefined;
|
|
2243
|
+
}[];
|
|
2244
|
+
readonly description?: string | undefined;
|
|
2245
|
+
readonly label?: string | undefined;
|
|
2246
|
+
readonly name?: string | undefined;
|
|
2247
|
+
readonly precision?: number | undefined;
|
|
2248
|
+
readonly required?: boolean | undefined;
|
|
2249
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
2250
|
+
readonly widget?: string | undefined;
|
|
2251
|
+
readonly multiple?: boolean | undefined;
|
|
2252
|
+
readonly storage?: {
|
|
2253
|
+
notNull?: boolean | undefined;
|
|
2254
|
+
} | undefined;
|
|
2255
|
+
readonly maxSize?: number | undefined;
|
|
2256
|
+
readonly externalId?: boolean | undefined;
|
|
2257
|
+
readonly defaultValue?: unknown;
|
|
2258
|
+
readonly visibleWhen?: {
|
|
2260
2259
|
dialect: "cel" | "cron" | "template";
|
|
2261
2260
|
source?: string | undefined;
|
|
2262
2261
|
ast?: unknown;
|
|
@@ -2265,12 +2264,97 @@ declare const SysWebhook: Omit<{
|
|
|
2265
2264
|
generatedBy?: string | undefined;
|
|
2266
2265
|
} | undefined;
|
|
2267
2266
|
} | undefined;
|
|
2267
|
+
readonly searchable?: boolean | undefined;
|
|
2268
|
+
readonly unique?: boolean | "global" | undefined;
|
|
2269
|
+
readonly maxLength?: number | undefined;
|
|
2270
|
+
readonly minLength?: number | undefined;
|
|
2271
|
+
readonly scale?: number | undefined;
|
|
2272
|
+
readonly min?: number | undefined;
|
|
2273
|
+
readonly max?: number | undefined;
|
|
2274
|
+
readonly accept?: string[] | undefined;
|
|
2275
|
+
readonly reference?: string | undefined;
|
|
2276
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2277
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2278
|
+
readonly inlineTitle?: string | undefined;
|
|
2279
|
+
readonly inlineColumns?: any[] | undefined;
|
|
2280
|
+
readonly inlineAmountField?: string | undefined;
|
|
2281
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
2282
|
+
readonly relatedListTitle?: string | undefined;
|
|
2283
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
2284
|
+
readonly displayField?: string | undefined;
|
|
2285
|
+
readonly descriptionField?: string | undefined;
|
|
2286
|
+
readonly lookupColumns?: (string | {
|
|
2287
|
+
field: string;
|
|
2288
|
+
label?: string | undefined;
|
|
2289
|
+
width?: string | undefined;
|
|
2290
|
+
type?: string | undefined;
|
|
2291
|
+
})[] | undefined;
|
|
2292
|
+
readonly lookupPageSize?: number | undefined;
|
|
2293
|
+
readonly lookupFilters?: {
|
|
2294
|
+
field: string;
|
|
2295
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
2296
|
+
value: any;
|
|
2297
|
+
}[] | undefined;
|
|
2298
|
+
readonly dependsOn?: (string | {
|
|
2299
|
+
field: string;
|
|
2300
|
+
param?: string | undefined;
|
|
2301
|
+
})[] | undefined;
|
|
2302
|
+
readonly allowCreate?: boolean | undefined;
|
|
2303
|
+
readonly expression?: {
|
|
2304
|
+
dialect: "cel" | "cron" | "template";
|
|
2305
|
+
source?: string | undefined;
|
|
2306
|
+
ast?: unknown;
|
|
2307
|
+
meta?: {
|
|
2308
|
+
rationale?: string | undefined;
|
|
2309
|
+
generatedBy?: string | undefined;
|
|
2310
|
+
} | undefined;
|
|
2311
|
+
} | undefined;
|
|
2312
|
+
readonly summaryOperations?: {
|
|
2313
|
+
object: string;
|
|
2314
|
+
field: string;
|
|
2315
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
2316
|
+
relationshipField?: string | undefined;
|
|
2317
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2318
|
+
} | undefined;
|
|
2319
|
+
readonly language?: string | undefined;
|
|
2320
|
+
readonly step?: number | undefined;
|
|
2321
|
+
readonly currencyConfig?: {
|
|
2322
|
+
precision: number;
|
|
2323
|
+
currencyMode: "fixed" | "dynamic";
|
|
2324
|
+
defaultCurrency: string;
|
|
2325
|
+
} | undefined;
|
|
2326
|
+
readonly dimensions?: number | undefined;
|
|
2327
|
+
readonly trackHistory?: boolean | undefined;
|
|
2328
|
+
readonly group?: string | undefined;
|
|
2329
|
+
readonly readonlyWhen?: {
|
|
2330
|
+
dialect: "cel" | "cron" | "template";
|
|
2331
|
+
source?: string | undefined;
|
|
2332
|
+
ast?: unknown;
|
|
2333
|
+
meta?: {
|
|
2334
|
+
rationale?: string | undefined;
|
|
2335
|
+
generatedBy?: string | undefined;
|
|
2336
|
+
} | undefined;
|
|
2337
|
+
} | undefined;
|
|
2338
|
+
readonly requiredWhen?: {
|
|
2339
|
+
dialect: "cel" | "cron" | "template";
|
|
2340
|
+
source?: string | undefined;
|
|
2341
|
+
ast?: unknown;
|
|
2342
|
+
meta?: {
|
|
2343
|
+
rationale?: string | undefined;
|
|
2344
|
+
generatedBy?: string | undefined;
|
|
2345
|
+
} | undefined;
|
|
2346
|
+
} | undefined;
|
|
2347
|
+
readonly conditionalRequired?: undefined;
|
|
2348
|
+
readonly hidden?: boolean | undefined;
|
|
2349
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
2350
|
+
readonly ackPlaintextMasking?: boolean | undefined;
|
|
2351
|
+
readonly system?: boolean | undefined;
|
|
2268
2352
|
readonly sortable?: boolean | undefined;
|
|
2269
2353
|
readonly inlineHelpText?: string | undefined;
|
|
2270
2354
|
readonly autonumberFormat?: string | undefined;
|
|
2271
|
-
readonly type: "
|
|
2355
|
+
readonly type: "select";
|
|
2272
2356
|
};
|
|
2273
|
-
readonly
|
|
2357
|
+
readonly customized: {
|
|
2274
2358
|
readonly readonly?: boolean | undefined;
|
|
2275
2359
|
readonly format?: string | undefined;
|
|
2276
2360
|
readonly options?: {
|
|
@@ -2296,14 +2380,12 @@ declare const SysWebhook: Omit<{
|
|
|
2296
2380
|
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
2297
2381
|
readonly widget?: string | undefined;
|
|
2298
2382
|
readonly multiple?: boolean | undefined;
|
|
2383
|
+
readonly storage?: {
|
|
2384
|
+
notNull?: boolean | undefined;
|
|
2385
|
+
} | undefined;
|
|
2386
|
+
readonly maxSize?: number | undefined;
|
|
2299
2387
|
readonly externalId?: boolean | undefined;
|
|
2300
2388
|
readonly defaultValue?: unknown;
|
|
2301
|
-
readonly requiredPermissions?: string[] | undefined;
|
|
2302
|
-
readonly group?: string | undefined;
|
|
2303
|
-
readonly hidden?: boolean | undefined;
|
|
2304
|
-
readonly system?: boolean | undefined;
|
|
2305
|
-
readonly min?: number | undefined;
|
|
2306
|
-
readonly max?: number | undefined;
|
|
2307
2389
|
readonly visibleWhen?: {
|
|
2308
2390
|
dialect: "cel" | "cron" | "template";
|
|
2309
2391
|
source?: string | undefined;
|
|
@@ -2314,10 +2396,13 @@ declare const SysWebhook: Omit<{
|
|
|
2314
2396
|
} | undefined;
|
|
2315
2397
|
} | undefined;
|
|
2316
2398
|
readonly searchable?: boolean | undefined;
|
|
2317
|
-
readonly unique?: boolean | undefined;
|
|
2399
|
+
readonly unique?: boolean | "global" | undefined;
|
|
2318
2400
|
readonly maxLength?: number | undefined;
|
|
2319
2401
|
readonly minLength?: number | undefined;
|
|
2320
2402
|
readonly scale?: number | undefined;
|
|
2403
|
+
readonly min?: number | undefined;
|
|
2404
|
+
readonly max?: number | undefined;
|
|
2405
|
+
readonly accept?: string[] | undefined;
|
|
2321
2406
|
readonly reference?: string | undefined;
|
|
2322
2407
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2323
2408
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
@@ -2338,7 +2423,7 @@ declare const SysWebhook: Omit<{
|
|
|
2338
2423
|
readonly lookupPageSize?: number | undefined;
|
|
2339
2424
|
readonly lookupFilters?: {
|
|
2340
2425
|
field: string;
|
|
2341
|
-
operator: "in" | "eq" | "ne" | "
|
|
2426
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
2342
2427
|
value: any;
|
|
2343
2428
|
}[] | undefined;
|
|
2344
2429
|
readonly dependsOn?: (string | {
|
|
@@ -2371,6 +2456,7 @@ declare const SysWebhook: Omit<{
|
|
|
2371
2456
|
} | undefined;
|
|
2372
2457
|
readonly dimensions?: number | undefined;
|
|
2373
2458
|
readonly trackHistory?: boolean | undefined;
|
|
2459
|
+
readonly group?: string | undefined;
|
|
2374
2460
|
readonly readonlyWhen?: {
|
|
2375
2461
|
dialect: "cel" | "cron" | "template";
|
|
2376
2462
|
source?: string | undefined;
|
|
@@ -2389,7 +2475,129 @@ declare const SysWebhook: Omit<{
|
|
|
2389
2475
|
generatedBy?: string | undefined;
|
|
2390
2476
|
} | undefined;
|
|
2391
2477
|
} | undefined;
|
|
2392
|
-
readonly conditionalRequired?:
|
|
2478
|
+
readonly conditionalRequired?: undefined;
|
|
2479
|
+
readonly hidden?: boolean | undefined;
|
|
2480
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
2481
|
+
readonly ackPlaintextMasking?: boolean | undefined;
|
|
2482
|
+
readonly system?: boolean | undefined;
|
|
2483
|
+
readonly sortable?: boolean | undefined;
|
|
2484
|
+
readonly inlineHelpText?: string | undefined;
|
|
2485
|
+
readonly autonumberFormat?: string | undefined;
|
|
2486
|
+
readonly type: "boolean";
|
|
2487
|
+
};
|
|
2488
|
+
readonly created_at: {
|
|
2489
|
+
readonly readonly?: boolean | undefined;
|
|
2490
|
+
readonly format?: string | undefined;
|
|
2491
|
+
readonly options?: {
|
|
2492
|
+
label: string;
|
|
2493
|
+
value: string;
|
|
2494
|
+
color?: string | undefined;
|
|
2495
|
+
default?: boolean | undefined;
|
|
2496
|
+
visibleWhen?: {
|
|
2497
|
+
dialect: "cel" | "cron" | "template";
|
|
2498
|
+
source?: string | undefined;
|
|
2499
|
+
ast?: unknown;
|
|
2500
|
+
meta?: {
|
|
2501
|
+
rationale?: string | undefined;
|
|
2502
|
+
generatedBy?: string | undefined;
|
|
2503
|
+
} | undefined;
|
|
2504
|
+
} | undefined;
|
|
2505
|
+
}[] | undefined;
|
|
2506
|
+
readonly description?: string | undefined;
|
|
2507
|
+
readonly label?: string | undefined;
|
|
2508
|
+
readonly name?: string | undefined;
|
|
2509
|
+
readonly precision?: number | undefined;
|
|
2510
|
+
readonly required?: boolean | undefined;
|
|
2511
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
2512
|
+
readonly widget?: string | undefined;
|
|
2513
|
+
readonly multiple?: boolean | undefined;
|
|
2514
|
+
readonly storage?: {
|
|
2515
|
+
notNull?: boolean | undefined;
|
|
2516
|
+
} | undefined;
|
|
2517
|
+
readonly maxSize?: number | undefined;
|
|
2518
|
+
readonly externalId?: boolean | undefined;
|
|
2519
|
+
readonly defaultValue?: unknown;
|
|
2520
|
+
readonly visibleWhen?: {
|
|
2521
|
+
dialect: "cel" | "cron" | "template";
|
|
2522
|
+
source?: string | undefined;
|
|
2523
|
+
ast?: unknown;
|
|
2524
|
+
meta?: {
|
|
2525
|
+
rationale?: string | undefined;
|
|
2526
|
+
generatedBy?: string | undefined;
|
|
2527
|
+
} | undefined;
|
|
2528
|
+
} | undefined;
|
|
2529
|
+
readonly searchable?: boolean | undefined;
|
|
2530
|
+
readonly unique?: boolean | "global" | undefined;
|
|
2531
|
+
readonly maxLength?: number | undefined;
|
|
2532
|
+
readonly minLength?: number | undefined;
|
|
2533
|
+
readonly scale?: number | undefined;
|
|
2534
|
+
readonly min?: number | undefined;
|
|
2535
|
+
readonly max?: number | undefined;
|
|
2536
|
+
readonly accept?: string[] | undefined;
|
|
2537
|
+
readonly reference?: string | undefined;
|
|
2538
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2539
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2540
|
+
readonly inlineTitle?: string | undefined;
|
|
2541
|
+
readonly inlineColumns?: any[] | undefined;
|
|
2542
|
+
readonly inlineAmountField?: string | undefined;
|
|
2543
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
2544
|
+
readonly relatedListTitle?: string | undefined;
|
|
2545
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
2546
|
+
readonly displayField?: string | undefined;
|
|
2547
|
+
readonly descriptionField?: string | undefined;
|
|
2548
|
+
readonly lookupColumns?: (string | {
|
|
2549
|
+
field: string;
|
|
2550
|
+
label?: string | undefined;
|
|
2551
|
+
width?: string | undefined;
|
|
2552
|
+
type?: string | undefined;
|
|
2553
|
+
})[] | undefined;
|
|
2554
|
+
readonly lookupPageSize?: number | undefined;
|
|
2555
|
+
readonly lookupFilters?: {
|
|
2556
|
+
field: string;
|
|
2557
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
2558
|
+
value: any;
|
|
2559
|
+
}[] | undefined;
|
|
2560
|
+
readonly dependsOn?: (string | {
|
|
2561
|
+
field: string;
|
|
2562
|
+
param?: string | undefined;
|
|
2563
|
+
})[] | undefined;
|
|
2564
|
+
readonly allowCreate?: boolean | undefined;
|
|
2565
|
+
readonly expression?: {
|
|
2566
|
+
dialect: "cel" | "cron" | "template";
|
|
2567
|
+
source?: string | undefined;
|
|
2568
|
+
ast?: unknown;
|
|
2569
|
+
meta?: {
|
|
2570
|
+
rationale?: string | undefined;
|
|
2571
|
+
generatedBy?: string | undefined;
|
|
2572
|
+
} | undefined;
|
|
2573
|
+
} | undefined;
|
|
2574
|
+
readonly summaryOperations?: {
|
|
2575
|
+
object: string;
|
|
2576
|
+
field: string;
|
|
2577
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
2578
|
+
relationshipField?: string | undefined;
|
|
2579
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2580
|
+
} | undefined;
|
|
2581
|
+
readonly language?: string | undefined;
|
|
2582
|
+
readonly step?: number | undefined;
|
|
2583
|
+
readonly currencyConfig?: {
|
|
2584
|
+
precision: number;
|
|
2585
|
+
currencyMode: "fixed" | "dynamic";
|
|
2586
|
+
defaultCurrency: string;
|
|
2587
|
+
} | undefined;
|
|
2588
|
+
readonly dimensions?: number | undefined;
|
|
2589
|
+
readonly trackHistory?: boolean | undefined;
|
|
2590
|
+
readonly group?: string | undefined;
|
|
2591
|
+
readonly readonlyWhen?: {
|
|
2592
|
+
dialect: "cel" | "cron" | "template";
|
|
2593
|
+
source?: string | undefined;
|
|
2594
|
+
ast?: unknown;
|
|
2595
|
+
meta?: {
|
|
2596
|
+
rationale?: string | undefined;
|
|
2597
|
+
generatedBy?: string | undefined;
|
|
2598
|
+
} | undefined;
|
|
2599
|
+
} | undefined;
|
|
2600
|
+
readonly requiredWhen?: {
|
|
2393
2601
|
dialect: "cel" | "cron" | "template";
|
|
2394
2602
|
source?: string | undefined;
|
|
2395
2603
|
ast?: unknown;
|
|
@@ -2398,6 +2606,11 @@ declare const SysWebhook: Omit<{
|
|
|
2398
2606
|
generatedBy?: string | undefined;
|
|
2399
2607
|
} | undefined;
|
|
2400
2608
|
} | undefined;
|
|
2609
|
+
readonly conditionalRequired?: undefined;
|
|
2610
|
+
readonly hidden?: boolean | undefined;
|
|
2611
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
2612
|
+
readonly ackPlaintextMasking?: boolean | undefined;
|
|
2613
|
+
readonly system?: boolean | undefined;
|
|
2401
2614
|
readonly sortable?: boolean | undefined;
|
|
2402
2615
|
readonly inlineHelpText?: string | undefined;
|
|
2403
2616
|
readonly autonumberFormat?: string | undefined;
|
|
@@ -2429,14 +2642,12 @@ declare const SysWebhook: Omit<{
|
|
|
2429
2642
|
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
2430
2643
|
readonly widget?: string | undefined;
|
|
2431
2644
|
readonly multiple?: boolean | undefined;
|
|
2645
|
+
readonly storage?: {
|
|
2646
|
+
notNull?: boolean | undefined;
|
|
2647
|
+
} | undefined;
|
|
2648
|
+
readonly maxSize?: number | undefined;
|
|
2432
2649
|
readonly externalId?: boolean | undefined;
|
|
2433
2650
|
readonly defaultValue?: unknown;
|
|
2434
|
-
readonly requiredPermissions?: string[] | undefined;
|
|
2435
|
-
readonly group?: string | undefined;
|
|
2436
|
-
readonly hidden?: boolean | undefined;
|
|
2437
|
-
readonly system?: boolean | undefined;
|
|
2438
|
-
readonly min?: number | undefined;
|
|
2439
|
-
readonly max?: number | undefined;
|
|
2440
2651
|
readonly visibleWhen?: {
|
|
2441
2652
|
dialect: "cel" | "cron" | "template";
|
|
2442
2653
|
source?: string | undefined;
|
|
@@ -2447,10 +2658,13 @@ declare const SysWebhook: Omit<{
|
|
|
2447
2658
|
} | undefined;
|
|
2448
2659
|
} | undefined;
|
|
2449
2660
|
readonly searchable?: boolean | undefined;
|
|
2450
|
-
readonly unique?: boolean | undefined;
|
|
2661
|
+
readonly unique?: boolean | "global" | undefined;
|
|
2451
2662
|
readonly maxLength?: number | undefined;
|
|
2452
2663
|
readonly minLength?: number | undefined;
|
|
2453
2664
|
readonly scale?: number | undefined;
|
|
2665
|
+
readonly min?: number | undefined;
|
|
2666
|
+
readonly max?: number | undefined;
|
|
2667
|
+
readonly accept?: string[] | undefined;
|
|
2454
2668
|
readonly reference?: string | undefined;
|
|
2455
2669
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2456
2670
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
@@ -2471,7 +2685,7 @@ declare const SysWebhook: Omit<{
|
|
|
2471
2685
|
readonly lookupPageSize?: number | undefined;
|
|
2472
2686
|
readonly lookupFilters?: {
|
|
2473
2687
|
field: string;
|
|
2474
|
-
operator: "in" | "eq" | "ne" | "
|
|
2688
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
2475
2689
|
value: any;
|
|
2476
2690
|
}[] | undefined;
|
|
2477
2691
|
readonly dependsOn?: (string | {
|
|
@@ -2504,6 +2718,7 @@ declare const SysWebhook: Omit<{
|
|
|
2504
2718
|
} | undefined;
|
|
2505
2719
|
readonly dimensions?: number | undefined;
|
|
2506
2720
|
readonly trackHistory?: boolean | undefined;
|
|
2721
|
+
readonly group?: string | undefined;
|
|
2507
2722
|
readonly readonlyWhen?: {
|
|
2508
2723
|
dialect: "cel" | "cron" | "template";
|
|
2509
2724
|
source?: string | undefined;
|
|
@@ -2522,15 +2737,11 @@ declare const SysWebhook: Omit<{
|
|
|
2522
2737
|
generatedBy?: string | undefined;
|
|
2523
2738
|
} | undefined;
|
|
2524
2739
|
} | undefined;
|
|
2525
|
-
readonly conditionalRequired?:
|
|
2526
|
-
|
|
2527
|
-
|
|
2528
|
-
|
|
2529
|
-
|
|
2530
|
-
rationale?: string | undefined;
|
|
2531
|
-
generatedBy?: string | undefined;
|
|
2532
|
-
} | undefined;
|
|
2533
|
-
} | undefined;
|
|
2740
|
+
readonly conditionalRequired?: undefined;
|
|
2741
|
+
readonly hidden?: boolean | undefined;
|
|
2742
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
2743
|
+
readonly ackPlaintextMasking?: boolean | undefined;
|
|
2744
|
+
readonly system?: boolean | undefined;
|
|
2534
2745
|
readonly sortable?: boolean | undefined;
|
|
2535
2746
|
readonly inlineHelpText?: string | undefined;
|
|
2536
2747
|
readonly autonumberFormat?: string | undefined;
|