@backstage/plugin-permission-node 0.10.6 → 0.10.7-next.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/CHANGELOG.md +23 -0
- package/dist/alpha.d.ts +2 -1
- package/dist/index.d.ts +2 -1
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# @backstage/plugin-permission-node
|
|
2
2
|
|
|
3
|
+
## 0.10.7-next.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- de96a60: chore(deps): bump `express` from 4.21.2 to 4.22.0
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/plugin-auth-node@0.6.10-next.1
|
|
10
|
+
- @backstage/backend-plugin-api@1.6.0-next.1
|
|
11
|
+
- @backstage/config@1.3.6
|
|
12
|
+
- @backstage/errors@1.2.7
|
|
13
|
+
- @backstage/plugin-permission-common@0.9.3
|
|
14
|
+
|
|
15
|
+
## 0.10.7-next.0
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- Updated dependencies
|
|
20
|
+
- @backstage/plugin-auth-node@0.6.10-next.0
|
|
21
|
+
- @backstage/backend-plugin-api@1.5.1-next.0
|
|
22
|
+
- @backstage/config@1.3.6
|
|
23
|
+
- @backstage/errors@1.2.7
|
|
24
|
+
- @backstage/plugin-permission-common@0.9.3
|
|
25
|
+
|
|
3
26
|
## 0.10.6
|
|
4
27
|
|
|
5
28
|
### Patch Changes
|
package/dist/alpha.d.ts
CHANGED
|
@@ -16,4 +16,5 @@ type PolicyExtensionPoint = {
|
|
|
16
16
|
*/
|
|
17
17
|
declare const policyExtensionPoint: _backstage_backend_plugin_api.ExtensionPoint<PolicyExtensionPoint>;
|
|
18
18
|
|
|
19
|
-
export {
|
|
19
|
+
export { policyExtensionPoint };
|
|
20
|
+
export type { PolicyExtensionPoint };
|
package/dist/index.d.ts
CHANGED
|
@@ -493,4 +493,5 @@ declare class ServerPermissionClient implements PermissionsService {
|
|
|
493
493
|
authorize(requests: AuthorizePermissionRequest[], options?: PermissionsServiceRequestOptions): Promise<AuthorizePermissionResponse[]>;
|
|
494
494
|
}
|
|
495
495
|
|
|
496
|
-
export {
|
|
496
|
+
export { ServerPermissionClient, createConditionAuthorizer, createConditionExports, createConditionFactory, createConditionTransformer, createPermissionIntegrationRouter, createPermissionResourceRef, createPermissionRule, isAndCriteria, isNotCriteria, isOrCriteria, makeCreatePermissionRule };
|
|
497
|
+
export type { ApplyConditionsRequest, ApplyConditionsRequestEntry, ApplyConditionsResponse, ApplyConditionsResponseEntry, Condition, ConditionTransformer, Conditions, CreatePermissionIntegrationRouterResourceOptions, CreatePermissionRuleOptions, MetadataResponse, MetadataResponseSerializedRule, PermissionIntegrationRouterOptions, PermissionPolicy, PermissionResourceRef, PermissionRule, PermissionRuleset, PolicyQuery, PolicyQueryUser };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-permission-node",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.7-next.1",
|
|
4
4
|
"description": "Common permission and authorization utilities for backend plugins",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "node-library",
|
|
@@ -64,21 +64,21 @@
|
|
|
64
64
|
"test": "backstage-cli package test"
|
|
65
65
|
},
|
|
66
66
|
"dependencies": {
|
|
67
|
-
"@backstage/backend-plugin-api": "
|
|
68
|
-
"@backstage/config": "
|
|
69
|
-
"@backstage/errors": "
|
|
70
|
-
"@backstage/plugin-auth-node": "
|
|
71
|
-
"@backstage/plugin-permission-common": "
|
|
67
|
+
"@backstage/backend-plugin-api": "1.6.0-next.1",
|
|
68
|
+
"@backstage/config": "1.3.6",
|
|
69
|
+
"@backstage/errors": "1.2.7",
|
|
70
|
+
"@backstage/plugin-auth-node": "0.6.10-next.1",
|
|
71
|
+
"@backstage/plugin-permission-common": "0.9.3",
|
|
72
72
|
"@types/express": "^4.17.6",
|
|
73
|
-
"express": "^4.
|
|
73
|
+
"express": "^4.22.0",
|
|
74
74
|
"express-promise-router": "^4.1.0",
|
|
75
75
|
"zod": "^3.22.4",
|
|
76
76
|
"zod-to-json-schema": "^3.20.4"
|
|
77
77
|
},
|
|
78
78
|
"devDependencies": {
|
|
79
|
-
"@backstage/backend-defaults": "
|
|
80
|
-
"@backstage/backend-test-utils": "
|
|
81
|
-
"@backstage/cli": "
|
|
79
|
+
"@backstage/backend-defaults": "0.14.0-next.1",
|
|
80
|
+
"@backstage/backend-test-utils": "1.10.2-next.1",
|
|
81
|
+
"@backstage/cli": "0.35.0-next.2",
|
|
82
82
|
"@types/supertest": "^2.0.8",
|
|
83
83
|
"msw": "^1.0.0",
|
|
84
84
|
"supertest": "^7.0.0"
|