@aws-sdk/client-verifiedpermissions 3.391.0 → 3.397.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-cjs/VerifiedPermissionsClient.js +4 -2
- package/dist-cjs/clientConfiguration.js +2 -0
- package/dist-cjs/commands/CreateIdentitySourceCommand.js +2 -1
- package/dist-cjs/commands/CreatePolicyCommand.js +3 -2
- package/dist-cjs/commands/CreatePolicyTemplateCommand.js +2 -1
- package/dist-cjs/commands/GetIdentitySourceCommand.js +2 -1
- package/dist-cjs/commands/GetPolicyCommand.js +2 -1
- package/dist-cjs/commands/GetPolicyTemplateCommand.js +2 -1
- package/dist-cjs/commands/GetSchemaCommand.js +2 -1
- package/dist-cjs/commands/IsAuthorizedCommand.js +3 -2
- package/dist-cjs/commands/IsAuthorizedWithTokenCommand.js +3 -2
- package/dist-cjs/commands/ListIdentitySourcesCommand.js +3 -2
- package/dist-cjs/commands/ListPoliciesCommand.js +3 -2
- package/dist-cjs/commands/ListPolicyTemplatesCommand.js +2 -1
- package/dist-cjs/commands/PutSchemaCommand.js +3 -2
- package/dist-cjs/commands/UpdateIdentitySourceCommand.js +2 -1
- package/dist-cjs/commands/UpdatePolicyCommand.js +3 -2
- package/dist-cjs/commands/UpdatePolicyTemplateCommand.js +2 -1
- package/dist-cjs/models/models_0.js +361 -1
- package/dist-cjs/runtimeConfig.shared.js +1 -0
- package/dist-cjs/runtimeExtensions.js +16 -0
- package/dist-es/VerifiedPermissionsClient.js +4 -2
- package/dist-es/clientConfiguration.js +1 -0
- package/dist-es/commands/CreateIdentitySourceCommand.js +2 -1
- package/dist-es/commands/CreatePolicyCommand.js +3 -2
- package/dist-es/commands/CreatePolicyTemplateCommand.js +2 -1
- package/dist-es/commands/GetIdentitySourceCommand.js +2 -1
- package/dist-es/commands/GetPolicyCommand.js +2 -1
- package/dist-es/commands/GetPolicyTemplateCommand.js +2 -1
- package/dist-es/commands/GetSchemaCommand.js +2 -1
- package/dist-es/commands/IsAuthorizedCommand.js +3 -2
- package/dist-es/commands/IsAuthorizedWithTokenCommand.js +3 -2
- package/dist-es/commands/ListIdentitySourcesCommand.js +3 -2
- package/dist-es/commands/ListPoliciesCommand.js +3 -2
- package/dist-es/commands/ListPolicyTemplatesCommand.js +2 -1
- package/dist-es/commands/PutSchemaCommand.js +3 -2
- package/dist-es/commands/UpdateIdentitySourceCommand.js +2 -1
- package/dist-es/commands/UpdatePolicyCommand.js +3 -2
- package/dist-es/commands/UpdatePolicyTemplateCommand.js +2 -1
- package/dist-es/models/models_0.js +305 -0
- package/dist-es/runtimeConfig.shared.js +1 -0
- package/dist-es/runtimeExtensions.js +12 -0
- package/dist-types/VerifiedPermissionsClient.d.ts +6 -1
- package/dist-types/clientConfiguration.d.ts +6 -0
- package/dist-types/commands/IsAuthorizedWithTokenCommand.d.ts +19 -5
- package/dist-types/commands/UpdatePolicyCommand.d.ts +40 -3
- package/dist-types/models/models_0.d.ts +276 -42
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/runtimeExtensions.d.ts +17 -0
- package/dist-types/ts3.4/VerifiedPermissionsClient.d.ts +3 -0
- package/dist-types/ts3.4/clientConfiguration.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +156 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/ts3.4/runtimeExtensions.d.ts +13 -0
- package/package.json +3 -3
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { VerifiedPermissionsClientConfiguration } from "./clientConfiguration";
|
|
2
|
+
export interface RuntimeExtension {
|
|
3
|
+
configureClient(
|
|
4
|
+
clientConfiguration: VerifiedPermissionsClientConfiguration
|
|
5
|
+
): void;
|
|
6
|
+
}
|
|
7
|
+
export interface RuntimeExtensionsConfig {
|
|
8
|
+
extensions: RuntimeExtension[];
|
|
9
|
+
}
|
|
10
|
+
export declare const resolveRuntimeExtensions: (
|
|
11
|
+
runtimeConfig: any,
|
|
12
|
+
extensions: RuntimeExtension[]
|
|
13
|
+
) => any;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-verifiedpermissions",
|
|
3
3
|
"description": "AWS SDK for JavaScript Verifiedpermissions Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.397.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.395.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.395.0",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "3.391.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.391.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.391.0",
|