@objectstack/platform-objects 7.1.0 → 7.2.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/dist/apps/index.d.mts +12 -0
- package/dist/apps/index.d.ts +12 -0
- package/dist/apps/index.js +48 -16
- package/dist/apps/index.js.map +1 -1
- package/dist/apps/index.mjs +48 -16
- package/dist/apps/index.mjs.map +1 -1
- package/dist/audit/index.d.mts +240 -48
- package/dist/audit/index.d.ts +240 -48
- package/dist/identity/index.d.mts +386 -61
- package/dist/identity/index.d.ts +386 -61
- package/dist/identity/index.js +135 -1
- package/dist/identity/index.js.map +1 -1
- package/dist/identity/index.mjs +135 -1
- 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 +327 -17
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +327 -18
- package/dist/index.mjs.map +1 -1
- package/dist/integration/index.d.mts +15 -3
- package/dist/integration/index.d.ts +15 -3
- package/dist/metadata/index.d.mts +3264 -7
- package/dist/metadata/index.d.ts +3264 -7
- 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/security/index.d.mts +115 -21
- package/dist/security/index.d.ts +115 -21
- package/dist/security/index.js +14 -0
- package/dist/security/index.js.map +1 -1
- package/dist/security/index.mjs +14 -0
- package/dist/security/index.mjs.map +1 -1
- package/dist/system/index.d.mts +45 -9
- package/dist/system/index.d.ts +45 -9
- package/package.json +2 -2
|
@@ -222,6 +222,13 @@ 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;
|
|
231
|
+
_lockDocsUrl?: string | undefined;
|
|
225
232
|
label?: string | undefined;
|
|
226
233
|
pluralLabel?: string | undefined;
|
|
227
234
|
description?: string | undefined;
|
|
@@ -367,7 +374,7 @@ declare const SysWebhook: Omit<{
|
|
|
367
374
|
wrap?: boolean | undefined;
|
|
368
375
|
type?: string | undefined;
|
|
369
376
|
pinned?: "left" | "right" | undefined;
|
|
370
|
-
summary?: "min" | "max" | "count" | "sum" | "avg" | "
|
|
377
|
+
summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
|
|
371
378
|
link?: boolean | undefined;
|
|
372
379
|
action?: string | undefined;
|
|
373
380
|
}[];
|
|
@@ -416,7 +423,7 @@ declare const SysWebhook: Omit<{
|
|
|
416
423
|
bordered?: boolean | undefined;
|
|
417
424
|
compactToolbar?: boolean | undefined;
|
|
418
425
|
selection?: {
|
|
419
|
-
type: "
|
|
426
|
+
type: "none" | "multiple" | "single";
|
|
420
427
|
} | undefined;
|
|
421
428
|
navigation?: {
|
|
422
429
|
mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
@@ -611,7 +618,7 @@ declare const SysWebhook: Omit<{
|
|
|
611
618
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
|
|
612
619
|
} | undefined;
|
|
613
620
|
recordTypes?: string[] | undefined;
|
|
614
|
-
sharingModel?: "
|
|
621
|
+
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
615
622
|
publicSharing?: {
|
|
616
623
|
enabled: boolean;
|
|
617
624
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -714,6 +721,11 @@ declare const SysWebhook: Omit<{
|
|
|
714
721
|
role?: string | undefined;
|
|
715
722
|
} | undefined;
|
|
716
723
|
}[] | undefined;
|
|
724
|
+
protection?: {
|
|
725
|
+
lock: "full" | "none" | "no-overlay" | "no-delete";
|
|
726
|
+
reason: string;
|
|
727
|
+
docsUrl?: string | undefined;
|
|
728
|
+
} | undefined;
|
|
717
729
|
}, "fields"> & Pick<{
|
|
718
730
|
readonly name: "sys_webhook";
|
|
719
731
|
readonly label: "Webhook";
|
|
@@ -222,6 +222,13 @@ 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;
|
|
231
|
+
_lockDocsUrl?: string | undefined;
|
|
225
232
|
label?: string | undefined;
|
|
226
233
|
pluralLabel?: string | undefined;
|
|
227
234
|
description?: string | undefined;
|
|
@@ -367,7 +374,7 @@ declare const SysWebhook: Omit<{
|
|
|
367
374
|
wrap?: boolean | undefined;
|
|
368
375
|
type?: string | undefined;
|
|
369
376
|
pinned?: "left" | "right" | undefined;
|
|
370
|
-
summary?: "min" | "max" | "count" | "sum" | "avg" | "
|
|
377
|
+
summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
|
|
371
378
|
link?: boolean | undefined;
|
|
372
379
|
action?: string | undefined;
|
|
373
380
|
}[];
|
|
@@ -416,7 +423,7 @@ declare const SysWebhook: Omit<{
|
|
|
416
423
|
bordered?: boolean | undefined;
|
|
417
424
|
compactToolbar?: boolean | undefined;
|
|
418
425
|
selection?: {
|
|
419
|
-
type: "
|
|
426
|
+
type: "none" | "multiple" | "single";
|
|
420
427
|
} | undefined;
|
|
421
428
|
navigation?: {
|
|
422
429
|
mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
@@ -611,7 +618,7 @@ declare const SysWebhook: Omit<{
|
|
|
611
618
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
|
|
612
619
|
} | undefined;
|
|
613
620
|
recordTypes?: string[] | undefined;
|
|
614
|
-
sharingModel?: "
|
|
621
|
+
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
615
622
|
publicSharing?: {
|
|
616
623
|
enabled: boolean;
|
|
617
624
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -714,6 +721,11 @@ declare const SysWebhook: Omit<{
|
|
|
714
721
|
role?: string | undefined;
|
|
715
722
|
} | undefined;
|
|
716
723
|
}[] | undefined;
|
|
724
|
+
protection?: {
|
|
725
|
+
lock: "full" | "none" | "no-overlay" | "no-delete";
|
|
726
|
+
reason: string;
|
|
727
|
+
docsUrl?: string | undefined;
|
|
728
|
+
} | undefined;
|
|
717
729
|
}, "fields"> & Pick<{
|
|
718
730
|
readonly name: "sys_webhook";
|
|
719
731
|
readonly label: "Webhook";
|