@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
|
@@ -32,7 +32,7 @@ declare const SysWebhook: Omit<{
|
|
|
32
32
|
abstract: boolean;
|
|
33
33
|
datasource: string;
|
|
34
34
|
fields: Record<string, {
|
|
35
|
-
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";
|
|
35
|
+
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";
|
|
36
36
|
required: boolean;
|
|
37
37
|
searchable: boolean;
|
|
38
38
|
multiple: boolean;
|
|
@@ -171,7 +171,7 @@ declare const SysWebhook: Omit<{
|
|
|
171
171
|
autoRotate: boolean;
|
|
172
172
|
} | undefined;
|
|
173
173
|
};
|
|
174
|
-
scope: "
|
|
174
|
+
scope: "record" | "field" | "table" | "database";
|
|
175
175
|
deterministicEncryption: boolean;
|
|
176
176
|
searchableEncryption: boolean;
|
|
177
177
|
} | undefined;
|
|
@@ -222,6 +222,12 @@ declare const SysWebhook: Omit<{
|
|
|
222
222
|
caseSensitive?: boolean | undefined;
|
|
223
223
|
autonumberFormat?: string | undefined;
|
|
224
224
|
}>;
|
|
225
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
226
|
+
_lockReason?: string | undefined;
|
|
227
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
228
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
229
|
+
_packageId?: string | undefined;
|
|
230
|
+
_packageVersion?: string | undefined;
|
|
225
231
|
label?: string | undefined;
|
|
226
232
|
pluralLabel?: string | undefined;
|
|
227
233
|
description?: string | undefined;
|
|
@@ -367,7 +373,7 @@ declare const SysWebhook: Omit<{
|
|
|
367
373
|
wrap?: boolean | undefined;
|
|
368
374
|
type?: string | undefined;
|
|
369
375
|
pinned?: "left" | "right" | undefined;
|
|
370
|
-
summary?: "min" | "max" | "count" | "sum" | "avg" | "
|
|
376
|
+
summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
|
|
371
377
|
link?: boolean | undefined;
|
|
372
378
|
action?: string | undefined;
|
|
373
379
|
}[];
|
|
@@ -416,7 +422,7 @@ declare const SysWebhook: Omit<{
|
|
|
416
422
|
bordered?: boolean | undefined;
|
|
417
423
|
compactToolbar?: boolean | undefined;
|
|
418
424
|
selection?: {
|
|
419
|
-
type: "
|
|
425
|
+
type: "none" | "multiple" | "single";
|
|
420
426
|
} | undefined;
|
|
421
427
|
navigation?: {
|
|
422
428
|
mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
@@ -611,7 +617,7 @@ declare const SysWebhook: Omit<{
|
|
|
611
617
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
|
|
612
618
|
} | undefined;
|
|
613
619
|
recordTypes?: string[] | undefined;
|
|
614
|
-
sharingModel?: "
|
|
620
|
+
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
615
621
|
publicSharing?: {
|
|
616
622
|
enabled: boolean;
|
|
617
623
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -654,7 +660,7 @@ declare const SysWebhook: Omit<{
|
|
|
654
660
|
field?: string | undefined;
|
|
655
661
|
objectOverride?: string | undefined;
|
|
656
662
|
label?: string | undefined;
|
|
657
|
-
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;
|
|
663
|
+
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;
|
|
658
664
|
options?: {
|
|
659
665
|
label: string;
|
|
660
666
|
value: string;
|
|
@@ -32,7 +32,7 @@ declare const SysWebhook: Omit<{
|
|
|
32
32
|
abstract: boolean;
|
|
33
33
|
datasource: string;
|
|
34
34
|
fields: Record<string, {
|
|
35
|
-
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";
|
|
35
|
+
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";
|
|
36
36
|
required: boolean;
|
|
37
37
|
searchable: boolean;
|
|
38
38
|
multiple: boolean;
|
|
@@ -171,7 +171,7 @@ declare const SysWebhook: Omit<{
|
|
|
171
171
|
autoRotate: boolean;
|
|
172
172
|
} | undefined;
|
|
173
173
|
};
|
|
174
|
-
scope: "
|
|
174
|
+
scope: "record" | "field" | "table" | "database";
|
|
175
175
|
deterministicEncryption: boolean;
|
|
176
176
|
searchableEncryption: boolean;
|
|
177
177
|
} | undefined;
|
|
@@ -222,6 +222,12 @@ declare const SysWebhook: Omit<{
|
|
|
222
222
|
caseSensitive?: boolean | undefined;
|
|
223
223
|
autonumberFormat?: string | undefined;
|
|
224
224
|
}>;
|
|
225
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
226
|
+
_lockReason?: string | undefined;
|
|
227
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
228
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
229
|
+
_packageId?: string | undefined;
|
|
230
|
+
_packageVersion?: string | undefined;
|
|
225
231
|
label?: string | undefined;
|
|
226
232
|
pluralLabel?: string | undefined;
|
|
227
233
|
description?: string | undefined;
|
|
@@ -367,7 +373,7 @@ declare const SysWebhook: Omit<{
|
|
|
367
373
|
wrap?: boolean | undefined;
|
|
368
374
|
type?: string | undefined;
|
|
369
375
|
pinned?: "left" | "right" | undefined;
|
|
370
|
-
summary?: "min" | "max" | "count" | "sum" | "avg" | "
|
|
376
|
+
summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
|
|
371
377
|
link?: boolean | undefined;
|
|
372
378
|
action?: string | undefined;
|
|
373
379
|
}[];
|
|
@@ -416,7 +422,7 @@ declare const SysWebhook: Omit<{
|
|
|
416
422
|
bordered?: boolean | undefined;
|
|
417
423
|
compactToolbar?: boolean | undefined;
|
|
418
424
|
selection?: {
|
|
419
|
-
type: "
|
|
425
|
+
type: "none" | "multiple" | "single";
|
|
420
426
|
} | undefined;
|
|
421
427
|
navigation?: {
|
|
422
428
|
mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
@@ -611,7 +617,7 @@ declare const SysWebhook: Omit<{
|
|
|
611
617
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
|
|
612
618
|
} | undefined;
|
|
613
619
|
recordTypes?: string[] | undefined;
|
|
614
|
-
sharingModel?: "
|
|
620
|
+
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
615
621
|
publicSharing?: {
|
|
616
622
|
enabled: boolean;
|
|
617
623
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -654,7 +660,7 @@ declare const SysWebhook: Omit<{
|
|
|
654
660
|
field?: string | undefined;
|
|
655
661
|
objectOverride?: string | undefined;
|
|
656
662
|
label?: string | undefined;
|
|
657
|
-
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;
|
|
663
|
+
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;
|
|
658
664
|
options?: {
|
|
659
665
|
label: string;
|
|
660
666
|
value: string;
|