@aws-sdk/client-wickr 3.995.0 → 3.997.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/README.md +14 -0
- package/dist-cjs/index.js +45 -18
- package/dist-cjs/schemas/schemas_0.js +46 -11
- package/dist-es/Wickr.js +4 -0
- package/dist-es/commands/GetOpentdfConfigCommand.js +16 -0
- package/dist-es/commands/RegisterOpentdfConfigCommand.js +16 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/schemas/schemas_0.js +43 -8
- package/dist-types/Wickr.d.ts +14 -0
- package/dist-types/WickrClient.d.ts +4 -2
- package/dist-types/commands/GetOpentdfConfigCommand.d.ts +134 -0
- package/dist-types/commands/RegisterOpentdfConfigCommand.d.ts +200 -0
- package/dist-types/commands/UpdateNetworkSettingsCommand.d.ts +1 -0
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +100 -0
- package/dist-types/schemas/schemas_0.d.ts +6 -0
- package/dist-types/ts3.4/Wickr.d.ts +34 -0
- package/dist-types/ts3.4/WickrClient.d.ts +12 -0
- package/dist-types/ts3.4/commands/GetOpentdfConfigCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/RegisterOpentdfConfigCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +24 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +6 -0
- package/package.json +37 -37
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
RegisterOpentdfConfigRequest,
|
|
5
|
+
RegisterOpentdfConfigResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
WickrClientResolvedConfig,
|
|
11
|
+
} from "../WickrClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface RegisterOpentdfConfigCommandInput
|
|
15
|
+
extends RegisterOpentdfConfigRequest {}
|
|
16
|
+
export interface RegisterOpentdfConfigCommandOutput
|
|
17
|
+
extends RegisterOpentdfConfigResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const RegisterOpentdfConfigCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: RegisterOpentdfConfigCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
RegisterOpentdfConfigCommandInput,
|
|
24
|
+
RegisterOpentdfConfigCommandOutput,
|
|
25
|
+
WickrClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: RegisterOpentdfConfigCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
RegisterOpentdfConfigCommandInput,
|
|
33
|
+
RegisterOpentdfConfigCommandOutput,
|
|
34
|
+
WickrClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class RegisterOpentdfConfigCommand extends RegisterOpentdfConfigCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: RegisterOpentdfConfigRequest;
|
|
44
|
+
output: RegisterOpentdfConfigResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: RegisterOpentdfConfigCommandInput;
|
|
48
|
+
output: RegisterOpentdfConfigCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -20,6 +20,7 @@ export * from "./GetGuestUserHistoryCountCommand";
|
|
|
20
20
|
export * from "./GetNetworkCommand";
|
|
21
21
|
export * from "./GetNetworkSettingsCommand";
|
|
22
22
|
export * from "./GetOidcInfoCommand";
|
|
23
|
+
export * from "./GetOpentdfConfigCommand";
|
|
23
24
|
export * from "./GetSecurityGroupCommand";
|
|
24
25
|
export * from "./GetUserCommand";
|
|
25
26
|
export * from "./GetUsersCountCommand";
|
|
@@ -33,6 +34,7 @@ export * from "./ListSecurityGroupsCommand";
|
|
|
33
34
|
export * from "./ListUsersCommand";
|
|
34
35
|
export * from "./RegisterOidcConfigCommand";
|
|
35
36
|
export * from "./RegisterOidcConfigTestCommand";
|
|
37
|
+
export * from "./RegisterOpentdfConfigCommand";
|
|
36
38
|
export * from "./UpdateBotCommand";
|
|
37
39
|
export * from "./UpdateDataRetentionCommand";
|
|
38
40
|
export * from "./UpdateGuestUserCommand";
|
|
@@ -424,6 +424,15 @@ export interface GetOidcInfoResponse {
|
|
|
424
424
|
openidConnectInfo?: OidcConfigInfo | undefined;
|
|
425
425
|
tokenInfo?: OidcTokenInfo | undefined;
|
|
426
426
|
}
|
|
427
|
+
export interface GetOpentdfConfigRequest {
|
|
428
|
+
networkId: string | undefined;
|
|
429
|
+
}
|
|
430
|
+
export interface GetOpentdfConfigResponse {
|
|
431
|
+
clientId: string | undefined;
|
|
432
|
+
domain: string | undefined;
|
|
433
|
+
clientSecret: string | undefined;
|
|
434
|
+
provider: string | undefined;
|
|
435
|
+
}
|
|
427
436
|
export interface GetSecurityGroupRequest {
|
|
428
437
|
networkId: string | undefined;
|
|
429
438
|
groupId: string | undefined;
|
|
@@ -584,6 +593,7 @@ export interface NetworkSettings {
|
|
|
584
593
|
enableClientMetrics?: boolean | undefined;
|
|
585
594
|
readReceiptConfig?: ReadReceiptConfig | undefined;
|
|
586
595
|
dataRetention?: boolean | undefined;
|
|
596
|
+
enableTrustedDataFormat?: boolean | undefined;
|
|
587
597
|
}
|
|
588
598
|
export interface RegisterOidcConfigRequest {
|
|
589
599
|
networkId: string | undefined;
|
|
@@ -633,6 +643,20 @@ export interface RegisterOidcConfigTestResponse {
|
|
|
633
643
|
tokenEndpointAuthMethodsSupported?: string[] | undefined;
|
|
634
644
|
microsoftMultiRefreshToken?: boolean | undefined;
|
|
635
645
|
}
|
|
646
|
+
export interface RegisterOpentdfConfigRequest {
|
|
647
|
+
networkId: string | undefined;
|
|
648
|
+
clientId: string | undefined;
|
|
649
|
+
clientSecret: string | undefined;
|
|
650
|
+
domain: string | undefined;
|
|
651
|
+
provider: string | undefined;
|
|
652
|
+
dryRun?: boolean | undefined;
|
|
653
|
+
}
|
|
654
|
+
export interface RegisterOpentdfConfigResponse {
|
|
655
|
+
clientId: string | undefined;
|
|
656
|
+
domain: string | undefined;
|
|
657
|
+
clientSecret: string | undefined;
|
|
658
|
+
provider: string | undefined;
|
|
659
|
+
}
|
|
636
660
|
export interface UpdateBotRequest {
|
|
637
661
|
networkId: string | undefined;
|
|
638
662
|
botId: string | undefined;
|
|
@@ -69,6 +69,8 @@ export declare var GetNetworkSettingsRequest$: StaticStructureSchema;
|
|
|
69
69
|
export declare var GetNetworkSettingsResponse$: StaticStructureSchema;
|
|
70
70
|
export declare var GetOidcInfoRequest$: StaticStructureSchema;
|
|
71
71
|
export declare var GetOidcInfoResponse$: StaticStructureSchema;
|
|
72
|
+
export declare var GetOpentdfConfigRequest$: StaticStructureSchema;
|
|
73
|
+
export declare var GetOpentdfConfigResponse$: StaticStructureSchema;
|
|
72
74
|
export declare var GetSecurityGroupRequest$: StaticStructureSchema;
|
|
73
75
|
export declare var GetSecurityGroupResponse$: StaticStructureSchema;
|
|
74
76
|
export declare var GetUserRequest$: StaticStructureSchema;
|
|
@@ -104,6 +106,8 @@ export declare var RegisterOidcConfigRequest$: StaticStructureSchema;
|
|
|
104
106
|
export declare var RegisterOidcConfigResponse$: StaticStructureSchema;
|
|
105
107
|
export declare var RegisterOidcConfigTestRequest$: StaticStructureSchema;
|
|
106
108
|
export declare var RegisterOidcConfigTestResponse$: StaticStructureSchema;
|
|
109
|
+
export declare var RegisterOpentdfConfigRequest$: StaticStructureSchema;
|
|
110
|
+
export declare var RegisterOpentdfConfigResponse$: StaticStructureSchema;
|
|
107
111
|
export declare var SecurityGroup$: StaticStructureSchema;
|
|
108
112
|
export declare var SecurityGroupSettings$: StaticStructureSchema;
|
|
109
113
|
export declare var SecurityGroupSettingsRequest$: StaticStructureSchema;
|
|
@@ -148,6 +152,7 @@ export declare var GetGuestUserHistoryCount$: StaticOperationSchema;
|
|
|
148
152
|
export declare var GetNetwork$: StaticOperationSchema;
|
|
149
153
|
export declare var GetNetworkSettings$: StaticOperationSchema;
|
|
150
154
|
export declare var GetOidcInfo$: StaticOperationSchema;
|
|
155
|
+
export declare var GetOpentdfConfig$: StaticOperationSchema;
|
|
151
156
|
export declare var GetSecurityGroup$: StaticOperationSchema;
|
|
152
157
|
export declare var GetUser$: StaticOperationSchema;
|
|
153
158
|
export declare var GetUsersCount$: StaticOperationSchema;
|
|
@@ -161,6 +166,7 @@ export declare var ListSecurityGroupUsers$: StaticOperationSchema;
|
|
|
161
166
|
export declare var ListUsers$: StaticOperationSchema;
|
|
162
167
|
export declare var RegisterOidcConfig$: StaticOperationSchema;
|
|
163
168
|
export declare var RegisterOidcConfigTest$: StaticOperationSchema;
|
|
169
|
+
export declare var RegisterOpentdfConfig$: StaticOperationSchema;
|
|
164
170
|
export declare var UpdateBot$: StaticOperationSchema;
|
|
165
171
|
export declare var UpdateDataRetention$: StaticOperationSchema;
|
|
166
172
|
export declare var UpdateGuestUser$: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-wickr",
|
|
3
3
|
"description": "AWS SDK for JavaScript Wickr Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.997.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-wickr",
|
|
@@ -21,42 +21,42 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.973.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "^3.972.
|
|
27
|
-
"@aws-sdk/middleware-logger": "^3.972.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "^3.972.
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
30
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
31
|
-
"@aws-sdk/types": "^3.973.
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "^3.972.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.972.
|
|
35
|
-
"@smithy/config-resolver": "^4.4.
|
|
36
|
-
"@smithy/core": "^3.23.
|
|
37
|
-
"@smithy/fetch-http-handler": "^5.3.
|
|
38
|
-
"@smithy/hash-node": "^4.2.
|
|
39
|
-
"@smithy/invalid-dependency": "^4.2.
|
|
40
|
-
"@smithy/middleware-content-length": "^4.2.
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
42
|
-
"@smithy/middleware-retry": "^4.4.
|
|
43
|
-
"@smithy/middleware-serde": "^4.2.
|
|
44
|
-
"@smithy/middleware-stack": "^4.2.
|
|
45
|
-
"@smithy/node-config-provider": "^4.3.
|
|
46
|
-
"@smithy/node-http-handler": "^4.4.
|
|
47
|
-
"@smithy/protocol-http": "^5.3.
|
|
48
|
-
"@smithy/smithy-client": "^4.11.
|
|
49
|
-
"@smithy/types": "^4.12.
|
|
50
|
-
"@smithy/url-parser": "^4.2.
|
|
51
|
-
"@smithy/util-base64": "^4.3.
|
|
52
|
-
"@smithy/util-body-length-browser": "^4.2.
|
|
53
|
-
"@smithy/util-body-length-node": "^4.2.
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
56
|
-
"@smithy/util-endpoints": "^3.2.
|
|
57
|
-
"@smithy/util-middleware": "^4.2.
|
|
58
|
-
"@smithy/util-retry": "^4.2.
|
|
59
|
-
"@smithy/util-utf8": "^4.2.
|
|
24
|
+
"@aws-sdk/core": "^3.973.13",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.12",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "^3.972.4",
|
|
27
|
+
"@aws-sdk/middleware-logger": "^3.972.4",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.4",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.13",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "^3.972.4",
|
|
31
|
+
"@aws-sdk/types": "^3.973.2",
|
|
32
|
+
"@aws-sdk/util-endpoints": "^3.996.1",
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "^3.972.4",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.972.12",
|
|
35
|
+
"@smithy/config-resolver": "^4.4.7",
|
|
36
|
+
"@smithy/core": "^3.23.4",
|
|
37
|
+
"@smithy/fetch-http-handler": "^5.3.10",
|
|
38
|
+
"@smithy/hash-node": "^4.2.9",
|
|
39
|
+
"@smithy/invalid-dependency": "^4.2.9",
|
|
40
|
+
"@smithy/middleware-content-length": "^4.2.9",
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.4.18",
|
|
42
|
+
"@smithy/middleware-retry": "^4.4.35",
|
|
43
|
+
"@smithy/middleware-serde": "^4.2.10",
|
|
44
|
+
"@smithy/middleware-stack": "^4.2.9",
|
|
45
|
+
"@smithy/node-config-provider": "^4.3.9",
|
|
46
|
+
"@smithy/node-http-handler": "^4.4.11",
|
|
47
|
+
"@smithy/protocol-http": "^5.3.9",
|
|
48
|
+
"@smithy/smithy-client": "^4.11.7",
|
|
49
|
+
"@smithy/types": "^4.12.1",
|
|
50
|
+
"@smithy/url-parser": "^4.2.9",
|
|
51
|
+
"@smithy/util-base64": "^4.3.1",
|
|
52
|
+
"@smithy/util-body-length-browser": "^4.2.1",
|
|
53
|
+
"@smithy/util-body-length-node": "^4.2.2",
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.34",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.37",
|
|
56
|
+
"@smithy/util-endpoints": "^3.2.9",
|
|
57
|
+
"@smithy/util-middleware": "^4.2.9",
|
|
58
|
+
"@smithy/util-retry": "^4.2.9",
|
|
59
|
+
"@smithy/util-utf8": "^4.2.1",
|
|
60
60
|
"tslib": "^2.6.2"
|
|
61
61
|
},
|
|
62
62
|
"devDependencies": {
|