@objectstack/platform-objects 7.1.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 +3 -0
- package/dist/apps/index.js.map +1 -1
- package/dist/apps/index.mjs +3 -0
- package/dist/apps/index.mjs.map +1 -1
- package/dist/audit/index.d.mts +144 -48
- package/dist/audit/index.d.ts +144 -48
- package/dist/identity/index.d.mts +183 -61
- package/dist/identity/index.d.ts +183 -61
- package/dist/identity/index.js +4 -1
- package/dist/identity/index.js.map +1 -1
- package/dist/identity/index.mjs +4 -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 +137 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +137 -2
- package/dist/index.mjs.map +1 -1
- package/dist/integration/index.d.mts +9 -3
- package/dist/integration/index.d.ts +9 -3
- package/dist/metadata/index.d.mts +3246 -7
- package/dist/metadata/index.d.ts +3246 -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 +63 -21
- package/dist/security/index.d.ts +63 -21
- package/dist/system/index.d.mts +27 -9
- package/dist/system/index.d.ts +27 -9
- package/package.json +2 -2
package/dist/system/index.d.mts
CHANGED
|
@@ -228,6 +228,12 @@ declare const SysSetting: Omit<{
|
|
|
228
228
|
caseSensitive?: boolean | undefined;
|
|
229
229
|
autonumberFormat?: string | undefined;
|
|
230
230
|
}>;
|
|
231
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
232
|
+
_lockReason?: string | undefined;
|
|
233
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
234
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
235
|
+
_packageId?: string | undefined;
|
|
236
|
+
_packageVersion?: string | undefined;
|
|
231
237
|
label?: string | undefined;
|
|
232
238
|
pluralLabel?: string | undefined;
|
|
233
239
|
description?: string | undefined;
|
|
@@ -373,7 +379,7 @@ declare const SysSetting: Omit<{
|
|
|
373
379
|
wrap?: boolean | undefined;
|
|
374
380
|
type?: string | undefined;
|
|
375
381
|
pinned?: "left" | "right" | undefined;
|
|
376
|
-
summary?: "min" | "max" | "count" | "sum" | "avg" | "
|
|
382
|
+
summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
|
|
377
383
|
link?: boolean | undefined;
|
|
378
384
|
action?: string | undefined;
|
|
379
385
|
}[];
|
|
@@ -422,7 +428,7 @@ declare const SysSetting: Omit<{
|
|
|
422
428
|
bordered?: boolean | undefined;
|
|
423
429
|
compactToolbar?: boolean | undefined;
|
|
424
430
|
selection?: {
|
|
425
|
-
type: "
|
|
431
|
+
type: "none" | "multiple" | "single";
|
|
426
432
|
} | undefined;
|
|
427
433
|
navigation?: {
|
|
428
434
|
mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
@@ -617,7 +623,7 @@ declare const SysSetting: Omit<{
|
|
|
617
623
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
|
|
618
624
|
} | undefined;
|
|
619
625
|
recordTypes?: string[] | undefined;
|
|
620
|
-
sharingModel?: "
|
|
626
|
+
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
621
627
|
publicSharing?: {
|
|
622
628
|
enabled: boolean;
|
|
623
629
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -3348,6 +3354,12 @@ declare const SysSecret: Omit<{
|
|
|
3348
3354
|
caseSensitive?: boolean | undefined;
|
|
3349
3355
|
autonumberFormat?: string | undefined;
|
|
3350
3356
|
}>;
|
|
3357
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
3358
|
+
_lockReason?: string | undefined;
|
|
3359
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
3360
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
3361
|
+
_packageId?: string | undefined;
|
|
3362
|
+
_packageVersion?: string | undefined;
|
|
3351
3363
|
label?: string | undefined;
|
|
3352
3364
|
pluralLabel?: string | undefined;
|
|
3353
3365
|
description?: string | undefined;
|
|
@@ -3493,7 +3505,7 @@ declare const SysSecret: Omit<{
|
|
|
3493
3505
|
wrap?: boolean | undefined;
|
|
3494
3506
|
type?: string | undefined;
|
|
3495
3507
|
pinned?: "left" | "right" | undefined;
|
|
3496
|
-
summary?: "min" | "max" | "count" | "sum" | "avg" | "
|
|
3508
|
+
summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
|
|
3497
3509
|
link?: boolean | undefined;
|
|
3498
3510
|
action?: string | undefined;
|
|
3499
3511
|
}[];
|
|
@@ -3542,7 +3554,7 @@ declare const SysSecret: Omit<{
|
|
|
3542
3554
|
bordered?: boolean | undefined;
|
|
3543
3555
|
compactToolbar?: boolean | undefined;
|
|
3544
3556
|
selection?: {
|
|
3545
|
-
type: "
|
|
3557
|
+
type: "none" | "multiple" | "single";
|
|
3546
3558
|
} | undefined;
|
|
3547
3559
|
navigation?: {
|
|
3548
3560
|
mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
@@ -3737,7 +3749,7 @@ declare const SysSecret: Omit<{
|
|
|
3737
3749
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
|
|
3738
3750
|
} | undefined;
|
|
3739
3751
|
recordTypes?: string[] | undefined;
|
|
3740
|
-
sharingModel?: "
|
|
3752
|
+
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
3741
3753
|
publicSharing?: {
|
|
3742
3754
|
enabled: boolean;
|
|
3743
3755
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -5679,6 +5691,12 @@ declare const SysSettingAudit: Omit<{
|
|
|
5679
5691
|
caseSensitive?: boolean | undefined;
|
|
5680
5692
|
autonumberFormat?: string | undefined;
|
|
5681
5693
|
}>;
|
|
5694
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
5695
|
+
_lockReason?: string | undefined;
|
|
5696
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
5697
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
5698
|
+
_packageId?: string | undefined;
|
|
5699
|
+
_packageVersion?: string | undefined;
|
|
5682
5700
|
label?: string | undefined;
|
|
5683
5701
|
pluralLabel?: string | undefined;
|
|
5684
5702
|
description?: string | undefined;
|
|
@@ -5824,7 +5842,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
5824
5842
|
wrap?: boolean | undefined;
|
|
5825
5843
|
type?: string | undefined;
|
|
5826
5844
|
pinned?: "left" | "right" | undefined;
|
|
5827
|
-
summary?: "min" | "max" | "count" | "sum" | "avg" | "
|
|
5845
|
+
summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
|
|
5828
5846
|
link?: boolean | undefined;
|
|
5829
5847
|
action?: string | undefined;
|
|
5830
5848
|
}[];
|
|
@@ -5873,7 +5891,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
5873
5891
|
bordered?: boolean | undefined;
|
|
5874
5892
|
compactToolbar?: boolean | undefined;
|
|
5875
5893
|
selection?: {
|
|
5876
|
-
type: "
|
|
5894
|
+
type: "none" | "multiple" | "single";
|
|
5877
5895
|
} | undefined;
|
|
5878
5896
|
navigation?: {
|
|
5879
5897
|
mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
@@ -6068,7 +6086,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
6068
6086
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
|
|
6069
6087
|
} | undefined;
|
|
6070
6088
|
recordTypes?: string[] | undefined;
|
|
6071
|
-
sharingModel?: "
|
|
6089
|
+
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
6072
6090
|
publicSharing?: {
|
|
6073
6091
|
enabled: boolean;
|
|
6074
6092
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
package/dist/system/index.d.ts
CHANGED
|
@@ -228,6 +228,12 @@ declare const SysSetting: Omit<{
|
|
|
228
228
|
caseSensitive?: boolean | undefined;
|
|
229
229
|
autonumberFormat?: string | undefined;
|
|
230
230
|
}>;
|
|
231
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
232
|
+
_lockReason?: string | undefined;
|
|
233
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
234
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
235
|
+
_packageId?: string | undefined;
|
|
236
|
+
_packageVersion?: string | undefined;
|
|
231
237
|
label?: string | undefined;
|
|
232
238
|
pluralLabel?: string | undefined;
|
|
233
239
|
description?: string | undefined;
|
|
@@ -373,7 +379,7 @@ declare const SysSetting: Omit<{
|
|
|
373
379
|
wrap?: boolean | undefined;
|
|
374
380
|
type?: string | undefined;
|
|
375
381
|
pinned?: "left" | "right" | undefined;
|
|
376
|
-
summary?: "min" | "max" | "count" | "sum" | "avg" | "
|
|
382
|
+
summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
|
|
377
383
|
link?: boolean | undefined;
|
|
378
384
|
action?: string | undefined;
|
|
379
385
|
}[];
|
|
@@ -422,7 +428,7 @@ declare const SysSetting: Omit<{
|
|
|
422
428
|
bordered?: boolean | undefined;
|
|
423
429
|
compactToolbar?: boolean | undefined;
|
|
424
430
|
selection?: {
|
|
425
|
-
type: "
|
|
431
|
+
type: "none" | "multiple" | "single";
|
|
426
432
|
} | undefined;
|
|
427
433
|
navigation?: {
|
|
428
434
|
mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
@@ -617,7 +623,7 @@ declare const SysSetting: Omit<{
|
|
|
617
623
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
|
|
618
624
|
} | undefined;
|
|
619
625
|
recordTypes?: string[] | undefined;
|
|
620
|
-
sharingModel?: "
|
|
626
|
+
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
621
627
|
publicSharing?: {
|
|
622
628
|
enabled: boolean;
|
|
623
629
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -3348,6 +3354,12 @@ declare const SysSecret: Omit<{
|
|
|
3348
3354
|
caseSensitive?: boolean | undefined;
|
|
3349
3355
|
autonumberFormat?: string | undefined;
|
|
3350
3356
|
}>;
|
|
3357
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
3358
|
+
_lockReason?: string | undefined;
|
|
3359
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
3360
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
3361
|
+
_packageId?: string | undefined;
|
|
3362
|
+
_packageVersion?: string | undefined;
|
|
3351
3363
|
label?: string | undefined;
|
|
3352
3364
|
pluralLabel?: string | undefined;
|
|
3353
3365
|
description?: string | undefined;
|
|
@@ -3493,7 +3505,7 @@ declare const SysSecret: Omit<{
|
|
|
3493
3505
|
wrap?: boolean | undefined;
|
|
3494
3506
|
type?: string | undefined;
|
|
3495
3507
|
pinned?: "left" | "right" | undefined;
|
|
3496
|
-
summary?: "min" | "max" | "count" | "sum" | "avg" | "
|
|
3508
|
+
summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
|
|
3497
3509
|
link?: boolean | undefined;
|
|
3498
3510
|
action?: string | undefined;
|
|
3499
3511
|
}[];
|
|
@@ -3542,7 +3554,7 @@ declare const SysSecret: Omit<{
|
|
|
3542
3554
|
bordered?: boolean | undefined;
|
|
3543
3555
|
compactToolbar?: boolean | undefined;
|
|
3544
3556
|
selection?: {
|
|
3545
|
-
type: "
|
|
3557
|
+
type: "none" | "multiple" | "single";
|
|
3546
3558
|
} | undefined;
|
|
3547
3559
|
navigation?: {
|
|
3548
3560
|
mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
@@ -3737,7 +3749,7 @@ declare const SysSecret: Omit<{
|
|
|
3737
3749
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
|
|
3738
3750
|
} | undefined;
|
|
3739
3751
|
recordTypes?: string[] | undefined;
|
|
3740
|
-
sharingModel?: "
|
|
3752
|
+
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
3741
3753
|
publicSharing?: {
|
|
3742
3754
|
enabled: boolean;
|
|
3743
3755
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -5679,6 +5691,12 @@ declare const SysSettingAudit: Omit<{
|
|
|
5679
5691
|
caseSensitive?: boolean | undefined;
|
|
5680
5692
|
autonumberFormat?: string | undefined;
|
|
5681
5693
|
}>;
|
|
5694
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
5695
|
+
_lockReason?: string | undefined;
|
|
5696
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
5697
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
5698
|
+
_packageId?: string | undefined;
|
|
5699
|
+
_packageVersion?: string | undefined;
|
|
5682
5700
|
label?: string | undefined;
|
|
5683
5701
|
pluralLabel?: string | undefined;
|
|
5684
5702
|
description?: string | undefined;
|
|
@@ -5824,7 +5842,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
5824
5842
|
wrap?: boolean | undefined;
|
|
5825
5843
|
type?: string | undefined;
|
|
5826
5844
|
pinned?: "left" | "right" | undefined;
|
|
5827
|
-
summary?: "min" | "max" | "count" | "sum" | "avg" | "
|
|
5845
|
+
summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
|
|
5828
5846
|
link?: boolean | undefined;
|
|
5829
5847
|
action?: string | undefined;
|
|
5830
5848
|
}[];
|
|
@@ -5873,7 +5891,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
5873
5891
|
bordered?: boolean | undefined;
|
|
5874
5892
|
compactToolbar?: boolean | undefined;
|
|
5875
5893
|
selection?: {
|
|
5876
|
-
type: "
|
|
5894
|
+
type: "none" | "multiple" | "single";
|
|
5877
5895
|
} | undefined;
|
|
5878
5896
|
navigation?: {
|
|
5879
5897
|
mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
@@ -6068,7 +6086,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
6068
6086
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
|
|
6069
6087
|
} | undefined;
|
|
6070
6088
|
recordTypes?: string[] | undefined;
|
|
6071
|
-
sharingModel?: "
|
|
6089
|
+
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
6072
6090
|
publicSharing?: {
|
|
6073
6091
|
enabled: boolean;
|
|
6074
6092
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@objectstack/platform-objects",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.2.0",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"description": "Core platform object schemas for ObjectStack — identity, security, audit, tenant, and metadata objects",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
}
|
|
64
64
|
},
|
|
65
65
|
"dependencies": {
|
|
66
|
-
"@objectstack/spec": "7.
|
|
66
|
+
"@objectstack/spec": "7.2.0"
|
|
67
67
|
},
|
|
68
68
|
"devDependencies": {
|
|
69
69
|
"@types/node": "^25.9.1",
|