@objectstack/plugin-security 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/index.d.mts +34 -0
- package/dist/index.d.ts +34 -0
- package/package.json +4 -4
package/dist/index.d.mts
CHANGED
|
@@ -533,6 +533,7 @@ declare const securityObjects: ((Omit<{
|
|
|
533
533
|
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
534
534
|
_packageId?: string | undefined;
|
|
535
535
|
_packageVersion?: string | undefined;
|
|
536
|
+
_lockDocsUrl?: string | undefined;
|
|
536
537
|
label?: string | undefined;
|
|
537
538
|
pluralLabel?: string | undefined;
|
|
538
539
|
description?: string | undefined;
|
|
@@ -1025,6 +1026,11 @@ declare const securityObjects: ((Omit<{
|
|
|
1025
1026
|
role?: string | undefined;
|
|
1026
1027
|
} | undefined;
|
|
1027
1028
|
}[] | undefined;
|
|
1029
|
+
protection?: {
|
|
1030
|
+
lock: "full" | "none" | "no-overlay" | "no-delete";
|
|
1031
|
+
reason: string;
|
|
1032
|
+
docsUrl?: string | undefined;
|
|
1033
|
+
} | undefined;
|
|
1028
1034
|
}, "fields"> & Pick<{
|
|
1029
1035
|
readonly name: "sys_role";
|
|
1030
1036
|
readonly label: "Role";
|
|
@@ -1032,6 +1038,11 @@ declare const securityObjects: ((Omit<{
|
|
|
1032
1038
|
readonly icon: "shield";
|
|
1033
1039
|
readonly isSystem: true;
|
|
1034
1040
|
readonly managedBy: "config";
|
|
1041
|
+
readonly protection: {
|
|
1042
|
+
readonly lock: "no-overlay";
|
|
1043
|
+
readonly reason: "RBAC schema is platform-defined \u2014 see ADR-0010.";
|
|
1044
|
+
readonly docsUrl: "https://docs.objectstack.ai/adr/0010-metadata-protection";
|
|
1045
|
+
};
|
|
1035
1046
|
readonly description: "Role definitions for RBAC access control";
|
|
1036
1047
|
readonly displayNameField: "label";
|
|
1037
1048
|
readonly titleFormat: "{label}";
|
|
@@ -2997,6 +3008,7 @@ declare const securityObjects: ((Omit<{
|
|
|
2997
3008
|
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
2998
3009
|
_packageId?: string | undefined;
|
|
2999
3010
|
_packageVersion?: string | undefined;
|
|
3011
|
+
_lockDocsUrl?: string | undefined;
|
|
3000
3012
|
label?: string | undefined;
|
|
3001
3013
|
pluralLabel?: string | undefined;
|
|
3002
3014
|
description?: string | undefined;
|
|
@@ -3489,6 +3501,11 @@ declare const securityObjects: ((Omit<{
|
|
|
3489
3501
|
role?: string | undefined;
|
|
3490
3502
|
} | undefined;
|
|
3491
3503
|
}[] | undefined;
|
|
3504
|
+
protection?: {
|
|
3505
|
+
lock: "full" | "none" | "no-overlay" | "no-delete";
|
|
3506
|
+
reason: string;
|
|
3507
|
+
docsUrl?: string | undefined;
|
|
3508
|
+
} | undefined;
|
|
3492
3509
|
}, "fields"> & Pick<{
|
|
3493
3510
|
readonly name: "sys_permission_set";
|
|
3494
3511
|
readonly label: "Permission Set";
|
|
@@ -3496,6 +3513,11 @@ declare const securityObjects: ((Omit<{
|
|
|
3496
3513
|
readonly icon: "lock";
|
|
3497
3514
|
readonly isSystem: true;
|
|
3498
3515
|
readonly managedBy: "config";
|
|
3516
|
+
readonly protection: {
|
|
3517
|
+
readonly lock: "no-overlay";
|
|
3518
|
+
readonly reason: "RBAC schema is platform-defined \u2014 see ADR-0010.";
|
|
3519
|
+
readonly docsUrl: "https://docs.objectstack.ai/adr/0010-metadata-protection";
|
|
3520
|
+
};
|
|
3499
3521
|
readonly description: "Named permission groupings for fine-grained access control";
|
|
3500
3522
|
readonly displayNameField: "label";
|
|
3501
3523
|
readonly titleFormat: "{label}";
|
|
@@ -5950,6 +5972,7 @@ declare const securityObjects: ((Omit<{
|
|
|
5950
5972
|
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
5951
5973
|
_packageId?: string | undefined;
|
|
5952
5974
|
_packageVersion?: string | undefined;
|
|
5975
|
+
_lockDocsUrl?: string | undefined;
|
|
5953
5976
|
label?: string | undefined;
|
|
5954
5977
|
pluralLabel?: string | undefined;
|
|
5955
5978
|
description?: string | undefined;
|
|
@@ -6442,6 +6465,11 @@ declare const securityObjects: ((Omit<{
|
|
|
6442
6465
|
role?: string | undefined;
|
|
6443
6466
|
} | undefined;
|
|
6444
6467
|
}[] | undefined;
|
|
6468
|
+
protection?: {
|
|
6469
|
+
lock: "full" | "none" | "no-overlay" | "no-delete";
|
|
6470
|
+
reason: string;
|
|
6471
|
+
docsUrl?: string | undefined;
|
|
6472
|
+
} | undefined;
|
|
6445
6473
|
}, "fields"> & Pick<{
|
|
6446
6474
|
readonly name: "sys_user_permission_set";
|
|
6447
6475
|
readonly label: "User Permission Set";
|
|
@@ -7900,6 +7928,7 @@ declare const securityObjects: ((Omit<{
|
|
|
7900
7928
|
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
7901
7929
|
_packageId?: string | undefined;
|
|
7902
7930
|
_packageVersion?: string | undefined;
|
|
7931
|
+
_lockDocsUrl?: string | undefined;
|
|
7903
7932
|
label?: string | undefined;
|
|
7904
7933
|
pluralLabel?: string | undefined;
|
|
7905
7934
|
description?: string | undefined;
|
|
@@ -8392,6 +8421,11 @@ declare const securityObjects: ((Omit<{
|
|
|
8392
8421
|
role?: string | undefined;
|
|
8393
8422
|
} | undefined;
|
|
8394
8423
|
}[] | undefined;
|
|
8424
|
+
protection?: {
|
|
8425
|
+
lock: "full" | "none" | "no-overlay" | "no-delete";
|
|
8426
|
+
reason: string;
|
|
8427
|
+
docsUrl?: string | undefined;
|
|
8428
|
+
} | undefined;
|
|
8395
8429
|
}, "fields"> & Pick<{
|
|
8396
8430
|
readonly name: "sys_role_permission_set";
|
|
8397
8431
|
readonly label: "Role Permission Set";
|
package/dist/index.d.ts
CHANGED
|
@@ -533,6 +533,7 @@ declare const securityObjects: ((Omit<{
|
|
|
533
533
|
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
534
534
|
_packageId?: string | undefined;
|
|
535
535
|
_packageVersion?: string | undefined;
|
|
536
|
+
_lockDocsUrl?: string | undefined;
|
|
536
537
|
label?: string | undefined;
|
|
537
538
|
pluralLabel?: string | undefined;
|
|
538
539
|
description?: string | undefined;
|
|
@@ -1025,6 +1026,11 @@ declare const securityObjects: ((Omit<{
|
|
|
1025
1026
|
role?: string | undefined;
|
|
1026
1027
|
} | undefined;
|
|
1027
1028
|
}[] | undefined;
|
|
1029
|
+
protection?: {
|
|
1030
|
+
lock: "full" | "none" | "no-overlay" | "no-delete";
|
|
1031
|
+
reason: string;
|
|
1032
|
+
docsUrl?: string | undefined;
|
|
1033
|
+
} | undefined;
|
|
1028
1034
|
}, "fields"> & Pick<{
|
|
1029
1035
|
readonly name: "sys_role";
|
|
1030
1036
|
readonly label: "Role";
|
|
@@ -1032,6 +1038,11 @@ declare const securityObjects: ((Omit<{
|
|
|
1032
1038
|
readonly icon: "shield";
|
|
1033
1039
|
readonly isSystem: true;
|
|
1034
1040
|
readonly managedBy: "config";
|
|
1041
|
+
readonly protection: {
|
|
1042
|
+
readonly lock: "no-overlay";
|
|
1043
|
+
readonly reason: "RBAC schema is platform-defined \u2014 see ADR-0010.";
|
|
1044
|
+
readonly docsUrl: "https://docs.objectstack.ai/adr/0010-metadata-protection";
|
|
1045
|
+
};
|
|
1035
1046
|
readonly description: "Role definitions for RBAC access control";
|
|
1036
1047
|
readonly displayNameField: "label";
|
|
1037
1048
|
readonly titleFormat: "{label}";
|
|
@@ -2997,6 +3008,7 @@ declare const securityObjects: ((Omit<{
|
|
|
2997
3008
|
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
2998
3009
|
_packageId?: string | undefined;
|
|
2999
3010
|
_packageVersion?: string | undefined;
|
|
3011
|
+
_lockDocsUrl?: string | undefined;
|
|
3000
3012
|
label?: string | undefined;
|
|
3001
3013
|
pluralLabel?: string | undefined;
|
|
3002
3014
|
description?: string | undefined;
|
|
@@ -3489,6 +3501,11 @@ declare const securityObjects: ((Omit<{
|
|
|
3489
3501
|
role?: string | undefined;
|
|
3490
3502
|
} | undefined;
|
|
3491
3503
|
}[] | undefined;
|
|
3504
|
+
protection?: {
|
|
3505
|
+
lock: "full" | "none" | "no-overlay" | "no-delete";
|
|
3506
|
+
reason: string;
|
|
3507
|
+
docsUrl?: string | undefined;
|
|
3508
|
+
} | undefined;
|
|
3492
3509
|
}, "fields"> & Pick<{
|
|
3493
3510
|
readonly name: "sys_permission_set";
|
|
3494
3511
|
readonly label: "Permission Set";
|
|
@@ -3496,6 +3513,11 @@ declare const securityObjects: ((Omit<{
|
|
|
3496
3513
|
readonly icon: "lock";
|
|
3497
3514
|
readonly isSystem: true;
|
|
3498
3515
|
readonly managedBy: "config";
|
|
3516
|
+
readonly protection: {
|
|
3517
|
+
readonly lock: "no-overlay";
|
|
3518
|
+
readonly reason: "RBAC schema is platform-defined \u2014 see ADR-0010.";
|
|
3519
|
+
readonly docsUrl: "https://docs.objectstack.ai/adr/0010-metadata-protection";
|
|
3520
|
+
};
|
|
3499
3521
|
readonly description: "Named permission groupings for fine-grained access control";
|
|
3500
3522
|
readonly displayNameField: "label";
|
|
3501
3523
|
readonly titleFormat: "{label}";
|
|
@@ -5950,6 +5972,7 @@ declare const securityObjects: ((Omit<{
|
|
|
5950
5972
|
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
5951
5973
|
_packageId?: string | undefined;
|
|
5952
5974
|
_packageVersion?: string | undefined;
|
|
5975
|
+
_lockDocsUrl?: string | undefined;
|
|
5953
5976
|
label?: string | undefined;
|
|
5954
5977
|
pluralLabel?: string | undefined;
|
|
5955
5978
|
description?: string | undefined;
|
|
@@ -6442,6 +6465,11 @@ declare const securityObjects: ((Omit<{
|
|
|
6442
6465
|
role?: string | undefined;
|
|
6443
6466
|
} | undefined;
|
|
6444
6467
|
}[] | undefined;
|
|
6468
|
+
protection?: {
|
|
6469
|
+
lock: "full" | "none" | "no-overlay" | "no-delete";
|
|
6470
|
+
reason: string;
|
|
6471
|
+
docsUrl?: string | undefined;
|
|
6472
|
+
} | undefined;
|
|
6445
6473
|
}, "fields"> & Pick<{
|
|
6446
6474
|
readonly name: "sys_user_permission_set";
|
|
6447
6475
|
readonly label: "User Permission Set";
|
|
@@ -7900,6 +7928,7 @@ declare const securityObjects: ((Omit<{
|
|
|
7900
7928
|
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
7901
7929
|
_packageId?: string | undefined;
|
|
7902
7930
|
_packageVersion?: string | undefined;
|
|
7931
|
+
_lockDocsUrl?: string | undefined;
|
|
7903
7932
|
label?: string | undefined;
|
|
7904
7933
|
pluralLabel?: string | undefined;
|
|
7905
7934
|
description?: string | undefined;
|
|
@@ -8392,6 +8421,11 @@ declare const securityObjects: ((Omit<{
|
|
|
8392
8421
|
role?: string | undefined;
|
|
8393
8422
|
} | undefined;
|
|
8394
8423
|
}[] | undefined;
|
|
8424
|
+
protection?: {
|
|
8425
|
+
lock: "full" | "none" | "no-overlay" | "no-delete";
|
|
8426
|
+
reason: string;
|
|
8427
|
+
docsUrl?: string | undefined;
|
|
8428
|
+
} | undefined;
|
|
8395
8429
|
}, "fields"> & Pick<{
|
|
8396
8430
|
readonly name: "sys_role_permission_set";
|
|
8397
8431
|
readonly label: "Role Permission Set";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@objectstack/plugin-security",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.3.0",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"description": "Security Plugin for ObjectStack — RBAC, RLS, and Field-Level Security Runtime",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -13,9 +13,9 @@
|
|
|
13
13
|
}
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@objectstack/core": "7.
|
|
17
|
-
"@objectstack/platform-objects": "7.
|
|
18
|
-
"@objectstack/spec": "7.
|
|
16
|
+
"@objectstack/core": "7.3.0",
|
|
17
|
+
"@objectstack/platform-objects": "7.3.0",
|
|
18
|
+
"@objectstack/spec": "7.3.0"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
21
|
"@types/node": "^25.9.1",
|