@objectstack/platform-objects 7.2.0 → 7.3.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.d.mts +12 -0
- package/dist/apps/index.d.ts +12 -0
- package/dist/apps/index.js +60 -19
- package/dist/apps/index.js.map +1 -1
- package/dist/apps/index.mjs +60 -19
- package/dist/apps/index.mjs.map +1 -1
- package/dist/audit/index.d.mts +96 -0
- package/dist/audit/index.d.ts +96 -0
- package/dist/identity/index.d.mts +205 -2
- package/dist/identity/index.d.ts +205 -2
- package/dist/identity/index.js +134 -3
- package/dist/identity/index.js.map +1 -1
- package/dist/identity/index.mjs +134 -3
- package/dist/identity/index.mjs.map +1 -1
- package/dist/index.js +208 -22
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +208 -22
- package/dist/index.mjs.map +1 -1
- package/dist/integration/index.d.mts +6 -0
- package/dist/integration/index.d.ts +6 -0
- package/dist/metadata/index.d.mts +18 -0
- package/dist/metadata/index.d.ts +18 -0
- package/dist/security/index.d.mts +52 -0
- package/dist/security/index.d.ts +52 -0
- 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 +18 -0
- package/dist/system/index.d.ts +18 -0
- package/package.json +2 -2
package/dist/system/index.d.ts
CHANGED
|
@@ -234,6 +234,7 @@ declare const SysSetting: Omit<{
|
|
|
234
234
|
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
235
235
|
_packageId?: string | undefined;
|
|
236
236
|
_packageVersion?: string | undefined;
|
|
237
|
+
_lockDocsUrl?: string | undefined;
|
|
237
238
|
label?: string | undefined;
|
|
238
239
|
pluralLabel?: string | undefined;
|
|
239
240
|
description?: string | undefined;
|
|
@@ -726,6 +727,11 @@ declare const SysSetting: Omit<{
|
|
|
726
727
|
role?: string | undefined;
|
|
727
728
|
} | undefined;
|
|
728
729
|
}[] | undefined;
|
|
730
|
+
protection?: {
|
|
731
|
+
lock: "full" | "none" | "no-overlay" | "no-delete";
|
|
732
|
+
reason: string;
|
|
733
|
+
docsUrl?: string | undefined;
|
|
734
|
+
} | undefined;
|
|
729
735
|
}, "fields"> & Pick<{
|
|
730
736
|
readonly name: "sys_setting";
|
|
731
737
|
readonly label: "Setting";
|
|
@@ -3360,6 +3366,7 @@ declare const SysSecret: Omit<{
|
|
|
3360
3366
|
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
3361
3367
|
_packageId?: string | undefined;
|
|
3362
3368
|
_packageVersion?: string | undefined;
|
|
3369
|
+
_lockDocsUrl?: string | undefined;
|
|
3363
3370
|
label?: string | undefined;
|
|
3364
3371
|
pluralLabel?: string | undefined;
|
|
3365
3372
|
description?: string | undefined;
|
|
@@ -3852,6 +3859,11 @@ declare const SysSecret: Omit<{
|
|
|
3852
3859
|
role?: string | undefined;
|
|
3853
3860
|
} | undefined;
|
|
3854
3861
|
}[] | undefined;
|
|
3862
|
+
protection?: {
|
|
3863
|
+
lock: "full" | "none" | "no-overlay" | "no-delete";
|
|
3864
|
+
reason: string;
|
|
3865
|
+
docsUrl?: string | undefined;
|
|
3866
|
+
} | undefined;
|
|
3855
3867
|
}, "fields"> & Pick<{
|
|
3856
3868
|
readonly name: "sys_secret";
|
|
3857
3869
|
readonly label: "Secret";
|
|
@@ -5697,6 +5709,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
5697
5709
|
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
5698
5710
|
_packageId?: string | undefined;
|
|
5699
5711
|
_packageVersion?: string | undefined;
|
|
5712
|
+
_lockDocsUrl?: string | undefined;
|
|
5700
5713
|
label?: string | undefined;
|
|
5701
5714
|
pluralLabel?: string | undefined;
|
|
5702
5715
|
description?: string | undefined;
|
|
@@ -6189,6 +6202,11 @@ declare const SysSettingAudit: Omit<{
|
|
|
6189
6202
|
role?: string | undefined;
|
|
6190
6203
|
} | undefined;
|
|
6191
6204
|
}[] | undefined;
|
|
6205
|
+
protection?: {
|
|
6206
|
+
lock: "full" | "none" | "no-overlay" | "no-delete";
|
|
6207
|
+
reason: string;
|
|
6208
|
+
docsUrl?: string | undefined;
|
|
6209
|
+
} | undefined;
|
|
6192
6210
|
}, "fields"> & Pick<{
|
|
6193
6211
|
readonly name: "sys_setting_audit";
|
|
6194
6212
|
readonly label: "Setting Audit Entry";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@objectstack/platform-objects",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.3.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.3.0"
|
|
67
67
|
},
|
|
68
68
|
"devDependencies": {
|
|
69
69
|
"@types/node": "^25.9.1",
|