@spotify/backstage-plugin-rbac-common 0.5.11 → 0.5.12
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/CHANGELOG.md +6 -0
- package/README.md +3 -1
- package/dist/index.d.ts +6 -6
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
1
|
# Spotify Plugins for Backstage: Role-Based Access Control (RBAC) - Common
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
This plugin is part of [Spotify Plugins for Backstage](https://backstage.spotify.com/marketplace/spotify/bundle/spotify-plugins-bundle/).
|
|
4
|
+
|
|
5
|
+
If you are already a customer, you can find detailed documentation about the RBAC Plugins [here](https://backstage.spotify.com/docs/rbac).
|
package/dist/index.d.ts
CHANGED
|
@@ -3520,11 +3520,11 @@ declare const MemberResponseParser: z.ZodObject<{
|
|
|
3520
3520
|
type: z.ZodEnum<["user", "group", "all", "unknown"]>;
|
|
3521
3521
|
entityRef: z.ZodString;
|
|
3522
3522
|
}, "strip", z.ZodTypeAny, {
|
|
3523
|
-
type: "
|
|
3523
|
+
type: "unknown" | "all" | "group" | "user";
|
|
3524
3524
|
entityRef: string;
|
|
3525
3525
|
name?: string | undefined;
|
|
3526
3526
|
}, {
|
|
3527
|
-
type: "
|
|
3527
|
+
type: "unknown" | "all" | "group" | "user";
|
|
3528
3528
|
entityRef: string;
|
|
3529
3529
|
name?: string | undefined;
|
|
3530
3530
|
}>;
|
|
@@ -3542,23 +3542,23 @@ declare const SearchMemberResponseParser: z.ZodObject<{
|
|
|
3542
3542
|
type: z.ZodEnum<["user", "group", "all", "unknown"]>;
|
|
3543
3543
|
entityRef: z.ZodString;
|
|
3544
3544
|
}, "strip", z.ZodTypeAny, {
|
|
3545
|
-
type: "
|
|
3545
|
+
type: "unknown" | "all" | "group" | "user";
|
|
3546
3546
|
entityRef: string;
|
|
3547
3547
|
name?: string | undefined;
|
|
3548
3548
|
}, {
|
|
3549
|
-
type: "
|
|
3549
|
+
type: "unknown" | "all" | "group" | "user";
|
|
3550
3550
|
entityRef: string;
|
|
3551
3551
|
name?: string | undefined;
|
|
3552
3552
|
}>, "many">;
|
|
3553
3553
|
}, "strip", z.ZodTypeAny, {
|
|
3554
3554
|
members: {
|
|
3555
|
-
type: "
|
|
3555
|
+
type: "unknown" | "all" | "group" | "user";
|
|
3556
3556
|
entityRef: string;
|
|
3557
3557
|
name?: string | undefined;
|
|
3558
3558
|
}[];
|
|
3559
3559
|
}, {
|
|
3560
3560
|
members: {
|
|
3561
|
-
type: "
|
|
3561
|
+
type: "unknown" | "all" | "group" | "user";
|
|
3562
3562
|
entityRef: string;
|
|
3563
3563
|
name?: string | undefined;
|
|
3564
3564
|
}[];
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@spotify/backstage-plugin-rbac-common",
|
|
3
3
|
"description": "Control access to actions and data in Backstage with ease.",
|
|
4
|
-
"version": "0.5.
|
|
4
|
+
"version": "0.5.12",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"homepage": "https://backstage.spotify.com",
|
|
7
7
|
"main": "dist/index.cjs.js",
|
|
@@ -24,14 +24,14 @@
|
|
|
24
24
|
"postpack": "backstage-cli package postpack"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@backstage/catalog-model": "^1.4.
|
|
28
|
-
"@backstage/plugin-permission-common": "^0.7.
|
|
27
|
+
"@backstage/catalog-model": "^1.4.5",
|
|
28
|
+
"@backstage/plugin-permission-common": "^0.7.13",
|
|
29
29
|
"@backstage/types": "^1.1.1",
|
|
30
30
|
"uuid": "^9.0.0",
|
|
31
31
|
"zod": "^3.20.0"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
|
-
"@backstage/cli": "^0.
|
|
34
|
+
"@backstage/cli": "^0.26.0"
|
|
35
35
|
},
|
|
36
36
|
"files": [
|
|
37
37
|
"dist",
|