@aws-sdk/client-wickr 3.995.0 → 3.996.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.
@@ -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.995.0",
4
+ "version": "3.996.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,17 +21,17 @@
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.11",
25
- "@aws-sdk/credential-provider-node": "^3.972.10",
24
+ "@aws-sdk/core": "^3.973.12",
25
+ "@aws-sdk/credential-provider-node": "^3.972.11",
26
26
  "@aws-sdk/middleware-host-header": "^3.972.3",
27
27
  "@aws-sdk/middleware-logger": "^3.972.3",
28
28
  "@aws-sdk/middleware-recursion-detection": "^3.972.3",
29
- "@aws-sdk/middleware-user-agent": "^3.972.11",
29
+ "@aws-sdk/middleware-user-agent": "^3.972.12",
30
30
  "@aws-sdk/region-config-resolver": "^3.972.3",
31
31
  "@aws-sdk/types": "^3.973.1",
32
- "@aws-sdk/util-endpoints": "3.995.0",
32
+ "@aws-sdk/util-endpoints": "3.996.0",
33
33
  "@aws-sdk/util-user-agent-browser": "^3.972.3",
34
- "@aws-sdk/util-user-agent-node": "^3.972.10",
34
+ "@aws-sdk/util-user-agent-node": "^3.972.11",
35
35
  "@smithy/config-resolver": "^4.4.6",
36
36
  "@smithy/core": "^3.23.2",
37
37
  "@smithy/fetch-http-handler": "^5.3.9",