@objectstack/platform-objects 7.0.0 → 7.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/apps/index.js +25 -29
- package/dist/apps/index.js.map +1 -1
- package/dist/apps/index.mjs +25 -29
- package/dist/apps/index.mjs.map +1 -1
- package/dist/audit/index.d.mts +192 -96
- package/dist/audit/index.d.ts +192 -96
- package/dist/identity/index.d.mts +244 -122
- package/dist/identity/index.d.ts +244 -122
- package/dist/identity/index.js +5 -2
- package/dist/identity/index.js.map +1 -1
- package/dist/identity/index.mjs +5 -2
- package/dist/identity/index.mjs.map +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +180 -31
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +180 -32
- package/dist/index.mjs.map +1 -1
- package/dist/integration/index.d.mts +12 -6
- package/dist/integration/index.d.ts +12 -6
- package/dist/metadata/index.d.mts +3252 -13
- package/dist/metadata/index.d.ts +3252 -13
- package/dist/metadata/index.js +130 -0
- package/dist/metadata/index.js.map +1 -1
- package/dist/metadata/index.mjs +130 -1
- package/dist/metadata/index.mjs.map +1 -1
- package/dist/pages/index.d.mts +8 -3
- package/dist/pages/index.d.ts +8 -3
- package/dist/pages/index.js.map +1 -1
- package/dist/pages/index.mjs.map +1 -1
- package/dist/plugin.js +4 -8
- package/dist/plugin.js.map +1 -1
- package/dist/plugin.mjs +4 -8
- package/dist/plugin.mjs.map +1 -1
- package/dist/security/index.d.mts +84 -42
- package/dist/security/index.d.ts +84 -42
- package/dist/security/index.js +20 -0
- package/dist/security/index.js.map +1 -1
- package/dist/security/index.mjs +20 -0
- package/dist/security/index.mjs.map +1 -1
- package/dist/system/index.d.mts +36 -18
- package/dist/system/index.d.ts +36 -18
- package/package.json +2 -2
|
@@ -18,7 +18,7 @@ declare const SysRole: Omit<{
|
|
|
18
18
|
abstract: boolean;
|
|
19
19
|
datasource: string;
|
|
20
20
|
fields: Record<string, {
|
|
21
|
-
type: "number" | "boolean" | "tags" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
21
|
+
type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
22
22
|
required: boolean;
|
|
23
23
|
searchable: boolean;
|
|
24
24
|
multiple: boolean;
|
|
@@ -157,7 +157,7 @@ declare const SysRole: Omit<{
|
|
|
157
157
|
autoRotate: boolean;
|
|
158
158
|
} | undefined;
|
|
159
159
|
};
|
|
160
|
-
scope: "
|
|
160
|
+
scope: "record" | "field" | "table" | "database";
|
|
161
161
|
deterministicEncryption: boolean;
|
|
162
162
|
searchableEncryption: boolean;
|
|
163
163
|
} | undefined;
|
|
@@ -208,6 +208,12 @@ declare const SysRole: Omit<{
|
|
|
208
208
|
caseSensitive?: boolean | undefined;
|
|
209
209
|
autonumberFormat?: string | undefined;
|
|
210
210
|
}>;
|
|
211
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
212
|
+
_lockReason?: string | undefined;
|
|
213
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
214
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
215
|
+
_packageId?: string | undefined;
|
|
216
|
+
_packageVersion?: string | undefined;
|
|
211
217
|
label?: string | undefined;
|
|
212
218
|
pluralLabel?: string | undefined;
|
|
213
219
|
description?: string | undefined;
|
|
@@ -353,7 +359,7 @@ declare const SysRole: Omit<{
|
|
|
353
359
|
wrap?: boolean | undefined;
|
|
354
360
|
type?: string | undefined;
|
|
355
361
|
pinned?: "left" | "right" | undefined;
|
|
356
|
-
summary?: "min" | "max" | "count" | "sum" | "avg" | "
|
|
362
|
+
summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
|
|
357
363
|
link?: boolean | undefined;
|
|
358
364
|
action?: string | undefined;
|
|
359
365
|
}[];
|
|
@@ -402,7 +408,7 @@ declare const SysRole: Omit<{
|
|
|
402
408
|
bordered?: boolean | undefined;
|
|
403
409
|
compactToolbar?: boolean | undefined;
|
|
404
410
|
selection?: {
|
|
405
|
-
type: "
|
|
411
|
+
type: "none" | "multiple" | "single";
|
|
406
412
|
} | undefined;
|
|
407
413
|
navigation?: {
|
|
408
414
|
mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
@@ -597,7 +603,7 @@ declare const SysRole: Omit<{
|
|
|
597
603
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
|
|
598
604
|
} | undefined;
|
|
599
605
|
recordTypes?: string[] | undefined;
|
|
600
|
-
sharingModel?: "
|
|
606
|
+
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
601
607
|
publicSharing?: {
|
|
602
608
|
enabled: boolean;
|
|
603
609
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -640,7 +646,7 @@ declare const SysRole: Omit<{
|
|
|
640
646
|
field?: string | undefined;
|
|
641
647
|
objectOverride?: string | undefined;
|
|
642
648
|
label?: string | undefined;
|
|
643
|
-
type?: "number" | "boolean" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
649
|
+
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
644
650
|
options?: {
|
|
645
651
|
label: string;
|
|
646
652
|
value: string;
|
|
@@ -2487,7 +2493,7 @@ declare const SysPermissionSet: Omit<{
|
|
|
2487
2493
|
abstract: boolean;
|
|
2488
2494
|
datasource: string;
|
|
2489
2495
|
fields: Record<string, {
|
|
2490
|
-
type: "number" | "boolean" | "tags" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
2496
|
+
type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
2491
2497
|
required: boolean;
|
|
2492
2498
|
searchable: boolean;
|
|
2493
2499
|
multiple: boolean;
|
|
@@ -2626,7 +2632,7 @@ declare const SysPermissionSet: Omit<{
|
|
|
2626
2632
|
autoRotate: boolean;
|
|
2627
2633
|
} | undefined;
|
|
2628
2634
|
};
|
|
2629
|
-
scope: "
|
|
2635
|
+
scope: "record" | "field" | "table" | "database";
|
|
2630
2636
|
deterministicEncryption: boolean;
|
|
2631
2637
|
searchableEncryption: boolean;
|
|
2632
2638
|
} | undefined;
|
|
@@ -2677,6 +2683,12 @@ declare const SysPermissionSet: Omit<{
|
|
|
2677
2683
|
caseSensitive?: boolean | undefined;
|
|
2678
2684
|
autonumberFormat?: string | undefined;
|
|
2679
2685
|
}>;
|
|
2686
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
2687
|
+
_lockReason?: string | undefined;
|
|
2688
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
2689
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
2690
|
+
_packageId?: string | undefined;
|
|
2691
|
+
_packageVersion?: string | undefined;
|
|
2680
2692
|
label?: string | undefined;
|
|
2681
2693
|
pluralLabel?: string | undefined;
|
|
2682
2694
|
description?: string | undefined;
|
|
@@ -2822,7 +2834,7 @@ declare const SysPermissionSet: Omit<{
|
|
|
2822
2834
|
wrap?: boolean | undefined;
|
|
2823
2835
|
type?: string | undefined;
|
|
2824
2836
|
pinned?: "left" | "right" | undefined;
|
|
2825
|
-
summary?: "min" | "max" | "count" | "sum" | "avg" | "
|
|
2837
|
+
summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
|
|
2826
2838
|
link?: boolean | undefined;
|
|
2827
2839
|
action?: string | undefined;
|
|
2828
2840
|
}[];
|
|
@@ -2871,7 +2883,7 @@ declare const SysPermissionSet: Omit<{
|
|
|
2871
2883
|
bordered?: boolean | undefined;
|
|
2872
2884
|
compactToolbar?: boolean | undefined;
|
|
2873
2885
|
selection?: {
|
|
2874
|
-
type: "
|
|
2886
|
+
type: "none" | "multiple" | "single";
|
|
2875
2887
|
} | undefined;
|
|
2876
2888
|
navigation?: {
|
|
2877
2889
|
mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
@@ -3066,7 +3078,7 @@ declare const SysPermissionSet: Omit<{
|
|
|
3066
3078
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
|
|
3067
3079
|
} | undefined;
|
|
3068
3080
|
recordTypes?: string[] | undefined;
|
|
3069
|
-
sharingModel?: "
|
|
3081
|
+
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
3070
3082
|
publicSharing?: {
|
|
3071
3083
|
enabled: boolean;
|
|
3072
3084
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -3109,7 +3121,7 @@ declare const SysPermissionSet: Omit<{
|
|
|
3109
3121
|
field?: string | undefined;
|
|
3110
3122
|
objectOverride?: string | undefined;
|
|
3111
3123
|
label?: string | undefined;
|
|
3112
|
-
type?: "number" | "boolean" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
3124
|
+
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
3113
3125
|
options?: {
|
|
3114
3126
|
label: string;
|
|
3115
3127
|
value: string;
|
|
@@ -5451,7 +5463,7 @@ declare const SysUserPermissionSet: Omit<{
|
|
|
5451
5463
|
abstract: boolean;
|
|
5452
5464
|
datasource: string;
|
|
5453
5465
|
fields: Record<string, {
|
|
5454
|
-
type: "number" | "boolean" | "tags" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
5466
|
+
type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
5455
5467
|
required: boolean;
|
|
5456
5468
|
searchable: boolean;
|
|
5457
5469
|
multiple: boolean;
|
|
@@ -5590,7 +5602,7 @@ declare const SysUserPermissionSet: Omit<{
|
|
|
5590
5602
|
autoRotate: boolean;
|
|
5591
5603
|
} | undefined;
|
|
5592
5604
|
};
|
|
5593
|
-
scope: "
|
|
5605
|
+
scope: "record" | "field" | "table" | "database";
|
|
5594
5606
|
deterministicEncryption: boolean;
|
|
5595
5607
|
searchableEncryption: boolean;
|
|
5596
5608
|
} | undefined;
|
|
@@ -5641,6 +5653,12 @@ declare const SysUserPermissionSet: Omit<{
|
|
|
5641
5653
|
caseSensitive?: boolean | undefined;
|
|
5642
5654
|
autonumberFormat?: string | undefined;
|
|
5643
5655
|
}>;
|
|
5656
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
5657
|
+
_lockReason?: string | undefined;
|
|
5658
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
5659
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
5660
|
+
_packageId?: string | undefined;
|
|
5661
|
+
_packageVersion?: string | undefined;
|
|
5644
5662
|
label?: string | undefined;
|
|
5645
5663
|
pluralLabel?: string | undefined;
|
|
5646
5664
|
description?: string | undefined;
|
|
@@ -5786,7 +5804,7 @@ declare const SysUserPermissionSet: Omit<{
|
|
|
5786
5804
|
wrap?: boolean | undefined;
|
|
5787
5805
|
type?: string | undefined;
|
|
5788
5806
|
pinned?: "left" | "right" | undefined;
|
|
5789
|
-
summary?: "min" | "max" | "count" | "sum" | "avg" | "
|
|
5807
|
+
summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
|
|
5790
5808
|
link?: boolean | undefined;
|
|
5791
5809
|
action?: string | undefined;
|
|
5792
5810
|
}[];
|
|
@@ -5835,7 +5853,7 @@ declare const SysUserPermissionSet: Omit<{
|
|
|
5835
5853
|
bordered?: boolean | undefined;
|
|
5836
5854
|
compactToolbar?: boolean | undefined;
|
|
5837
5855
|
selection?: {
|
|
5838
|
-
type: "
|
|
5856
|
+
type: "none" | "multiple" | "single";
|
|
5839
5857
|
} | undefined;
|
|
5840
5858
|
navigation?: {
|
|
5841
5859
|
mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
@@ -6030,7 +6048,7 @@ declare const SysUserPermissionSet: Omit<{
|
|
|
6030
6048
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
|
|
6031
6049
|
} | undefined;
|
|
6032
6050
|
recordTypes?: string[] | undefined;
|
|
6033
|
-
sharingModel?: "
|
|
6051
|
+
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
6034
6052
|
publicSharing?: {
|
|
6035
6053
|
enabled: boolean;
|
|
6036
6054
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -6073,7 +6091,7 @@ declare const SysUserPermissionSet: Omit<{
|
|
|
6073
6091
|
field?: string | undefined;
|
|
6074
6092
|
objectOverride?: string | undefined;
|
|
6075
6093
|
label?: string | undefined;
|
|
6076
|
-
type?: "number" | "boolean" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
6094
|
+
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
6077
6095
|
options?: {
|
|
6078
6096
|
label: string;
|
|
6079
6097
|
value: string;
|
|
@@ -7408,7 +7426,7 @@ declare const SysRolePermissionSet: Omit<{
|
|
|
7408
7426
|
abstract: boolean;
|
|
7409
7427
|
datasource: string;
|
|
7410
7428
|
fields: Record<string, {
|
|
7411
|
-
type: "number" | "boolean" | "tags" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
7429
|
+
type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
7412
7430
|
required: boolean;
|
|
7413
7431
|
searchable: boolean;
|
|
7414
7432
|
multiple: boolean;
|
|
@@ -7547,7 +7565,7 @@ declare const SysRolePermissionSet: Omit<{
|
|
|
7547
7565
|
autoRotate: boolean;
|
|
7548
7566
|
} | undefined;
|
|
7549
7567
|
};
|
|
7550
|
-
scope: "
|
|
7568
|
+
scope: "record" | "field" | "table" | "database";
|
|
7551
7569
|
deterministicEncryption: boolean;
|
|
7552
7570
|
searchableEncryption: boolean;
|
|
7553
7571
|
} | undefined;
|
|
@@ -7598,6 +7616,12 @@ declare const SysRolePermissionSet: Omit<{
|
|
|
7598
7616
|
caseSensitive?: boolean | undefined;
|
|
7599
7617
|
autonumberFormat?: string | undefined;
|
|
7600
7618
|
}>;
|
|
7619
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
7620
|
+
_lockReason?: string | undefined;
|
|
7621
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
7622
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
7623
|
+
_packageId?: string | undefined;
|
|
7624
|
+
_packageVersion?: string | undefined;
|
|
7601
7625
|
label?: string | undefined;
|
|
7602
7626
|
pluralLabel?: string | undefined;
|
|
7603
7627
|
description?: string | undefined;
|
|
@@ -7743,7 +7767,7 @@ declare const SysRolePermissionSet: Omit<{
|
|
|
7743
7767
|
wrap?: boolean | undefined;
|
|
7744
7768
|
type?: string | undefined;
|
|
7745
7769
|
pinned?: "left" | "right" | undefined;
|
|
7746
|
-
summary?: "min" | "max" | "count" | "sum" | "avg" | "
|
|
7770
|
+
summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
|
|
7747
7771
|
link?: boolean | undefined;
|
|
7748
7772
|
action?: string | undefined;
|
|
7749
7773
|
}[];
|
|
@@ -7792,7 +7816,7 @@ declare const SysRolePermissionSet: Omit<{
|
|
|
7792
7816
|
bordered?: boolean | undefined;
|
|
7793
7817
|
compactToolbar?: boolean | undefined;
|
|
7794
7818
|
selection?: {
|
|
7795
|
-
type: "
|
|
7819
|
+
type: "none" | "multiple" | "single";
|
|
7796
7820
|
} | undefined;
|
|
7797
7821
|
navigation?: {
|
|
7798
7822
|
mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
@@ -7987,7 +8011,7 @@ declare const SysRolePermissionSet: Omit<{
|
|
|
7987
8011
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
|
|
7988
8012
|
} | undefined;
|
|
7989
8013
|
recordTypes?: string[] | undefined;
|
|
7990
|
-
sharingModel?: "
|
|
8014
|
+
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
7991
8015
|
publicSharing?: {
|
|
7992
8016
|
enabled: boolean;
|
|
7993
8017
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -8030,7 +8054,7 @@ declare const SysRolePermissionSet: Omit<{
|
|
|
8030
8054
|
field?: string | undefined;
|
|
8031
8055
|
objectOverride?: string | undefined;
|
|
8032
8056
|
label?: string | undefined;
|
|
8033
|
-
type?: "number" | "boolean" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
8057
|
+
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
8034
8058
|
options?: {
|
|
8035
8059
|
label: string;
|
|
8036
8060
|
value: string;
|
|
@@ -9030,7 +9054,7 @@ declare const SysRecordShare: Omit<{
|
|
|
9030
9054
|
abstract: boolean;
|
|
9031
9055
|
datasource: string;
|
|
9032
9056
|
fields: Record<string, {
|
|
9033
|
-
type: "number" | "boolean" | "tags" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
9057
|
+
type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
9034
9058
|
required: boolean;
|
|
9035
9059
|
searchable: boolean;
|
|
9036
9060
|
multiple: boolean;
|
|
@@ -9169,7 +9193,7 @@ declare const SysRecordShare: Omit<{
|
|
|
9169
9193
|
autoRotate: boolean;
|
|
9170
9194
|
} | undefined;
|
|
9171
9195
|
};
|
|
9172
|
-
scope: "
|
|
9196
|
+
scope: "record" | "field" | "table" | "database";
|
|
9173
9197
|
deterministicEncryption: boolean;
|
|
9174
9198
|
searchableEncryption: boolean;
|
|
9175
9199
|
} | undefined;
|
|
@@ -9220,6 +9244,12 @@ declare const SysRecordShare: Omit<{
|
|
|
9220
9244
|
caseSensitive?: boolean | undefined;
|
|
9221
9245
|
autonumberFormat?: string | undefined;
|
|
9222
9246
|
}>;
|
|
9247
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
9248
|
+
_lockReason?: string | undefined;
|
|
9249
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
9250
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
9251
|
+
_packageId?: string | undefined;
|
|
9252
|
+
_packageVersion?: string | undefined;
|
|
9223
9253
|
label?: string | undefined;
|
|
9224
9254
|
pluralLabel?: string | undefined;
|
|
9225
9255
|
description?: string | undefined;
|
|
@@ -9365,7 +9395,7 @@ declare const SysRecordShare: Omit<{
|
|
|
9365
9395
|
wrap?: boolean | undefined;
|
|
9366
9396
|
type?: string | undefined;
|
|
9367
9397
|
pinned?: "left" | "right" | undefined;
|
|
9368
|
-
summary?: "min" | "max" | "count" | "sum" | "avg" | "
|
|
9398
|
+
summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
|
|
9369
9399
|
link?: boolean | undefined;
|
|
9370
9400
|
action?: string | undefined;
|
|
9371
9401
|
}[];
|
|
@@ -9414,7 +9444,7 @@ declare const SysRecordShare: Omit<{
|
|
|
9414
9444
|
bordered?: boolean | undefined;
|
|
9415
9445
|
compactToolbar?: boolean | undefined;
|
|
9416
9446
|
selection?: {
|
|
9417
|
-
type: "
|
|
9447
|
+
type: "none" | "multiple" | "single";
|
|
9418
9448
|
} | undefined;
|
|
9419
9449
|
navigation?: {
|
|
9420
9450
|
mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
@@ -9609,7 +9639,7 @@ declare const SysRecordShare: Omit<{
|
|
|
9609
9639
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
|
|
9610
9640
|
} | undefined;
|
|
9611
9641
|
recordTypes?: string[] | undefined;
|
|
9612
|
-
sharingModel?: "
|
|
9642
|
+
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
9613
9643
|
publicSharing?: {
|
|
9614
9644
|
enabled: boolean;
|
|
9615
9645
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -9652,7 +9682,7 @@ declare const SysRecordShare: Omit<{
|
|
|
9652
9682
|
field?: string | undefined;
|
|
9653
9683
|
objectOverride?: string | undefined;
|
|
9654
9684
|
label?: string | undefined;
|
|
9655
|
-
type?: "number" | "boolean" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
9685
|
+
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
9656
9686
|
options?: {
|
|
9657
9687
|
label: string;
|
|
9658
9688
|
value: string;
|
|
@@ -12004,7 +12034,7 @@ declare const SysSharingRule: Omit<{
|
|
|
12004
12034
|
abstract: boolean;
|
|
12005
12035
|
datasource: string;
|
|
12006
12036
|
fields: Record<string, {
|
|
12007
|
-
type: "number" | "boolean" | "tags" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
12037
|
+
type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
12008
12038
|
required: boolean;
|
|
12009
12039
|
searchable: boolean;
|
|
12010
12040
|
multiple: boolean;
|
|
@@ -12143,7 +12173,7 @@ declare const SysSharingRule: Omit<{
|
|
|
12143
12173
|
autoRotate: boolean;
|
|
12144
12174
|
} | undefined;
|
|
12145
12175
|
};
|
|
12146
|
-
scope: "
|
|
12176
|
+
scope: "record" | "field" | "table" | "database";
|
|
12147
12177
|
deterministicEncryption: boolean;
|
|
12148
12178
|
searchableEncryption: boolean;
|
|
12149
12179
|
} | undefined;
|
|
@@ -12194,6 +12224,12 @@ declare const SysSharingRule: Omit<{
|
|
|
12194
12224
|
caseSensitive?: boolean | undefined;
|
|
12195
12225
|
autonumberFormat?: string | undefined;
|
|
12196
12226
|
}>;
|
|
12227
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
12228
|
+
_lockReason?: string | undefined;
|
|
12229
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
12230
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
12231
|
+
_packageId?: string | undefined;
|
|
12232
|
+
_packageVersion?: string | undefined;
|
|
12197
12233
|
label?: string | undefined;
|
|
12198
12234
|
pluralLabel?: string | undefined;
|
|
12199
12235
|
description?: string | undefined;
|
|
@@ -12339,7 +12375,7 @@ declare const SysSharingRule: Omit<{
|
|
|
12339
12375
|
wrap?: boolean | undefined;
|
|
12340
12376
|
type?: string | undefined;
|
|
12341
12377
|
pinned?: "left" | "right" | undefined;
|
|
12342
|
-
summary?: "min" | "max" | "count" | "sum" | "avg" | "
|
|
12378
|
+
summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
|
|
12343
12379
|
link?: boolean | undefined;
|
|
12344
12380
|
action?: string | undefined;
|
|
12345
12381
|
}[];
|
|
@@ -12388,7 +12424,7 @@ declare const SysSharingRule: Omit<{
|
|
|
12388
12424
|
bordered?: boolean | undefined;
|
|
12389
12425
|
compactToolbar?: boolean | undefined;
|
|
12390
12426
|
selection?: {
|
|
12391
|
-
type: "
|
|
12427
|
+
type: "none" | "multiple" | "single";
|
|
12392
12428
|
} | undefined;
|
|
12393
12429
|
navigation?: {
|
|
12394
12430
|
mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
@@ -12583,7 +12619,7 @@ declare const SysSharingRule: Omit<{
|
|
|
12583
12619
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
|
|
12584
12620
|
} | undefined;
|
|
12585
12621
|
recordTypes?: string[] | undefined;
|
|
12586
|
-
sharingModel?: "
|
|
12622
|
+
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
12587
12623
|
publicSharing?: {
|
|
12588
12624
|
enabled: boolean;
|
|
12589
12625
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -12626,7 +12662,7 @@ declare const SysSharingRule: Omit<{
|
|
|
12626
12662
|
field?: string | undefined;
|
|
12627
12663
|
objectOverride?: string | undefined;
|
|
12628
12664
|
label?: string | undefined;
|
|
12629
|
-
type?: "number" | "boolean" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
12665
|
+
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
12630
12666
|
options?: {
|
|
12631
12667
|
label: string;
|
|
12632
12668
|
value: string;
|
|
@@ -15128,7 +15164,7 @@ declare const SysShareLink: Omit<{
|
|
|
15128
15164
|
abstract: boolean;
|
|
15129
15165
|
datasource: string;
|
|
15130
15166
|
fields: Record<string, {
|
|
15131
|
-
type: "number" | "boolean" | "tags" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
15167
|
+
type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
15132
15168
|
required: boolean;
|
|
15133
15169
|
searchable: boolean;
|
|
15134
15170
|
multiple: boolean;
|
|
@@ -15267,7 +15303,7 @@ declare const SysShareLink: Omit<{
|
|
|
15267
15303
|
autoRotate: boolean;
|
|
15268
15304
|
} | undefined;
|
|
15269
15305
|
};
|
|
15270
|
-
scope: "
|
|
15306
|
+
scope: "record" | "field" | "table" | "database";
|
|
15271
15307
|
deterministicEncryption: boolean;
|
|
15272
15308
|
searchableEncryption: boolean;
|
|
15273
15309
|
} | undefined;
|
|
@@ -15318,6 +15354,12 @@ declare const SysShareLink: Omit<{
|
|
|
15318
15354
|
caseSensitive?: boolean | undefined;
|
|
15319
15355
|
autonumberFormat?: string | undefined;
|
|
15320
15356
|
}>;
|
|
15357
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
15358
|
+
_lockReason?: string | undefined;
|
|
15359
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
15360
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
15361
|
+
_packageId?: string | undefined;
|
|
15362
|
+
_packageVersion?: string | undefined;
|
|
15321
15363
|
label?: string | undefined;
|
|
15322
15364
|
pluralLabel?: string | undefined;
|
|
15323
15365
|
description?: string | undefined;
|
|
@@ -15463,7 +15505,7 @@ declare const SysShareLink: Omit<{
|
|
|
15463
15505
|
wrap?: boolean | undefined;
|
|
15464
15506
|
type?: string | undefined;
|
|
15465
15507
|
pinned?: "left" | "right" | undefined;
|
|
15466
|
-
summary?: "min" | "max" | "count" | "sum" | "avg" | "
|
|
15508
|
+
summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
|
|
15467
15509
|
link?: boolean | undefined;
|
|
15468
15510
|
action?: string | undefined;
|
|
15469
15511
|
}[];
|
|
@@ -15512,7 +15554,7 @@ declare const SysShareLink: Omit<{
|
|
|
15512
15554
|
bordered?: boolean | undefined;
|
|
15513
15555
|
compactToolbar?: boolean | undefined;
|
|
15514
15556
|
selection?: {
|
|
15515
|
-
type: "
|
|
15557
|
+
type: "none" | "multiple" | "single";
|
|
15516
15558
|
} | undefined;
|
|
15517
15559
|
navigation?: {
|
|
15518
15560
|
mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
@@ -15707,7 +15749,7 @@ declare const SysShareLink: Omit<{
|
|
|
15707
15749
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
|
|
15708
15750
|
} | undefined;
|
|
15709
15751
|
recordTypes?: string[] | undefined;
|
|
15710
|
-
sharingModel?: "
|
|
15752
|
+
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
15711
15753
|
publicSharing?: {
|
|
15712
15754
|
enabled: boolean;
|
|
15713
15755
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -15750,7 +15792,7 @@ declare const SysShareLink: Omit<{
|
|
|
15750
15792
|
field?: string | undefined;
|
|
15751
15793
|
objectOverride?: string | undefined;
|
|
15752
15794
|
label?: string | undefined;
|
|
15753
|
-
type?: "number" | "boolean" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
15795
|
+
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
15754
15796
|
options?: {
|
|
15755
15797
|
label: string;
|
|
15756
15798
|
value: string;
|