@aws-sdk/client-connect 3.713.0 → 3.715.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.
Files changed (51) hide show
  1. package/README.md +8 -0
  2. package/dist-cjs/index.js +65 -1
  3. package/dist-cjs/runtimeConfig.js +8 -6
  4. package/dist-es/Connect.js +2 -0
  5. package/dist-es/commands/StartChatContactCommand.js +2 -1
  6. package/dist-es/commands/UpdateParticipantAuthenticationCommand.js +23 -0
  7. package/dist-es/commands/index.js +1 -0
  8. package/dist-es/models/models_0.js +1 -0
  9. package/dist-es/models/models_1.js +1 -0
  10. package/dist-es/models/models_2.js +6 -0
  11. package/dist-es/models/models_3.js +4 -0
  12. package/dist-es/protocols/Aws_restJson1.js +29 -0
  13. package/dist-es/runtimeConfig.js +8 -6
  14. package/dist-types/Connect.d.ts +7 -0
  15. package/dist-types/ConnectClient.d.ts +21 -2
  16. package/dist-types/commands/CreateIntegrationAssociationCommand.d.ts +1 -1
  17. package/dist-types/commands/CreatePushNotificationRegistrationCommand.d.ts +1 -1
  18. package/dist-types/commands/DescribeContactCommand.d.ts +1 -0
  19. package/dist-types/commands/DescribeInstanceAttributeCommand.d.ts +2 -2
  20. package/dist-types/commands/ListBotsCommand.d.ts +1 -1
  21. package/dist-types/commands/ListInstanceAttributesCommand.d.ts +1 -1
  22. package/dist-types/commands/ListIntegrationAssociationsCommand.d.ts +2 -2
  23. package/dist-types/commands/StartChatContactCommand.d.ts +1 -0
  24. package/dist-types/commands/UpdateInstanceAttributeCommand.d.ts +1 -1
  25. package/dist-types/commands/UpdateParticipantAuthenticationCommand.d.ts +109 -0
  26. package/dist-types/commands/UpdateSecurityProfileCommand.d.ts +1 -1
  27. package/dist-types/commands/UpdateTaskTemplateCommand.d.ts +1 -2
  28. package/dist-types/commands/index.d.ts +1 -0
  29. package/dist-types/models/models_0.d.ts +1 -0
  30. package/dist-types/models/models_1.d.ts +1 -0
  31. package/dist-types/models/models_2.d.ts +48 -112
  32. package/dist-types/models/models_3.d.ts +129 -1
  33. package/dist-types/protocols/Aws_restJson1.d.ts +9 -0
  34. package/dist-types/runtimeConfig.browser.d.ts +1 -0
  35. package/dist-types/runtimeConfig.d.ts +1 -0
  36. package/dist-types/runtimeConfig.native.d.ts +1 -0
  37. package/dist-types/ts3.4/Connect.d.ts +17 -0
  38. package/dist-types/ts3.4/ConnectClient.d.ts +7 -0
  39. package/dist-types/ts3.4/commands/UpdateParticipantAuthenticationCommand.d.ts +51 -0
  40. package/dist-types/ts3.4/commands/UpdateSecurityProfileCommand.d.ts +1 -1
  41. package/dist-types/ts3.4/commands/UpdateTaskTemplateCommand.d.ts +4 -2
  42. package/dist-types/ts3.4/commands/index.d.ts +1 -0
  43. package/dist-types/ts3.4/models/models_0.d.ts +1 -0
  44. package/dist-types/ts3.4/models/models_1.d.ts +1 -0
  45. package/dist-types/ts3.4/models/models_2.d.ts +11 -26
  46. package/dist-types/ts3.4/models/models_3.d.ts +29 -0
  47. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +12 -0
  48. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -0
  49. package/dist-types/ts3.4/runtimeConfig.d.ts +1 -0
  50. package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -0
  51. package/package.json +14 -14
@@ -987,6 +987,10 @@ import {
987
987
  UpdateInstanceStorageConfigCommandInput,
988
988
  UpdateInstanceStorageConfigCommandOutput,
989
989
  } from "./commands/UpdateInstanceStorageConfigCommand";
990
+ import {
991
+ UpdateParticipantAuthenticationCommandInput,
992
+ UpdateParticipantAuthenticationCommandOutput,
993
+ } from "./commands/UpdateParticipantAuthenticationCommand";
990
994
  import {
991
995
  UpdateParticipantRoleConfigCommandInput,
992
996
  UpdateParticipantRoleConfigCommandOutput,
@@ -4391,6 +4395,19 @@ export interface Connect {
4391
4395
  options: __HttpHandlerOptions,
4392
4396
  cb: (err: any, data?: UpdateInstanceStorageConfigCommandOutput) => void
4393
4397
  ): void;
4398
+ updateParticipantAuthentication(
4399
+ args: UpdateParticipantAuthenticationCommandInput,
4400
+ options?: __HttpHandlerOptions
4401
+ ): Promise<UpdateParticipantAuthenticationCommandOutput>;
4402
+ updateParticipantAuthentication(
4403
+ args: UpdateParticipantAuthenticationCommandInput,
4404
+ cb: (err: any, data?: UpdateParticipantAuthenticationCommandOutput) => void
4405
+ ): void;
4406
+ updateParticipantAuthentication(
4407
+ args: UpdateParticipantAuthenticationCommandInput,
4408
+ options: __HttpHandlerOptions,
4409
+ cb: (err: any, data?: UpdateParticipantAuthenticationCommandOutput) => void
4410
+ ): void;
4394
4411
  updateParticipantRoleConfig(
4395
4412
  args: UpdateParticipantRoleConfigCommandInput,
4396
4413
  options?: __HttpHandlerOptions
@@ -1033,6 +1033,10 @@ import {
1033
1033
  UpdateInstanceStorageConfigCommandInput,
1034
1034
  UpdateInstanceStorageConfigCommandOutput,
1035
1035
  } from "./commands/UpdateInstanceStorageConfigCommand";
1036
+ import {
1037
+ UpdateParticipantAuthenticationCommandInput,
1038
+ UpdateParticipantAuthenticationCommandOutput,
1039
+ } from "./commands/UpdateParticipantAuthenticationCommand";
1036
1040
  import {
1037
1041
  UpdateParticipantRoleConfigCommandInput,
1038
1042
  UpdateParticipantRoleConfigCommandOutput,
@@ -1416,6 +1420,7 @@ export type ServiceInputTypes =
1416
1420
  | UpdateHoursOfOperationOverrideCommandInput
1417
1421
  | UpdateInstanceAttributeCommandInput
1418
1422
  | UpdateInstanceStorageConfigCommandInput
1423
+ | UpdateParticipantAuthenticationCommandInput
1419
1424
  | UpdateParticipantRoleConfigCommandInput
1420
1425
  | UpdatePhoneNumberCommandInput
1421
1426
  | UpdatePhoneNumberMetadataCommandInput
@@ -1696,6 +1701,7 @@ export type ServiceOutputTypes =
1696
1701
  | UpdateHoursOfOperationOverrideCommandOutput
1697
1702
  | UpdateInstanceAttributeCommandOutput
1698
1703
  | UpdateInstanceStorageConfigCommandOutput
1704
+ | UpdateParticipantAuthenticationCommandOutput
1699
1705
  | UpdateParticipantRoleConfigCommandOutput
1700
1706
  | UpdatePhoneNumberCommandOutput
1701
1707
  | UpdatePhoneNumberMetadataCommandOutput
@@ -1745,6 +1751,7 @@ export interface ClientDefaults
1745
1751
  useDualstackEndpoint?: boolean | __Provider<boolean>;
1746
1752
  useFipsEndpoint?: boolean | __Provider<boolean>;
1747
1753
  region?: string | __Provider<string>;
1754
+ profile?: string;
1748
1755
  defaultUserAgentProvider?: Provider<__UserAgent>;
1749
1756
  credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider;
1750
1757
  maxAttempts?: number | __Provider<number>;
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ConnectClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../ConnectClient";
8
+ import {
9
+ UpdateParticipantAuthenticationRequest,
10
+ UpdateParticipantAuthenticationResponse,
11
+ } from "../models/models_2";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface UpdateParticipantAuthenticationCommandInput
15
+ extends UpdateParticipantAuthenticationRequest {}
16
+ export interface UpdateParticipantAuthenticationCommandOutput
17
+ extends UpdateParticipantAuthenticationResponse,
18
+ __MetadataBearer {}
19
+ declare const UpdateParticipantAuthenticationCommand_base: {
20
+ new (
21
+ input: UpdateParticipantAuthenticationCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ UpdateParticipantAuthenticationCommandInput,
24
+ UpdateParticipantAuthenticationCommandOutput,
25
+ ConnectClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: UpdateParticipantAuthenticationCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ UpdateParticipantAuthenticationCommandInput,
33
+ UpdateParticipantAuthenticationCommandOutput,
34
+ ConnectClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class UpdateParticipantAuthenticationCommand extends UpdateParticipantAuthenticationCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: UpdateParticipantAuthenticationRequest;
44
+ output: {};
45
+ };
46
+ sdk: {
47
+ input: UpdateParticipantAuthenticationCommandInput;
48
+ output: UpdateParticipantAuthenticationCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -5,7 +5,7 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../ConnectClient";
8
- import { UpdateSecurityProfileRequest } from "../models/models_2";
8
+ import { UpdateSecurityProfileRequest } from "../models/models_3";
9
9
  export { __MetadataBearer };
10
10
  export { $Command };
11
11
  export interface UpdateSecurityProfileCommandInput
@@ -5,8 +5,10 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../ConnectClient";
8
- import { UpdateTaskTemplateRequest } from "../models/models_2";
9
- import { UpdateTaskTemplateResponse } from "../models/models_3";
8
+ import {
9
+ UpdateTaskTemplateRequest,
10
+ UpdateTaskTemplateResponse,
11
+ } from "../models/models_3";
10
12
  export { __MetadataBearer };
11
13
  export { $Command };
12
14
  export interface UpdateTaskTemplateCommandInput
@@ -245,6 +245,7 @@ export * from "./UpdateHoursOfOperationCommand";
245
245
  export * from "./UpdateHoursOfOperationOverrideCommand";
246
246
  export * from "./UpdateInstanceAttributeCommand";
247
247
  export * from "./UpdateInstanceStorageConfigCommand";
248
+ export * from "./UpdateParticipantAuthenticationCommand";
248
249
  export * from "./UpdateParticipantRoleConfigCommand";
249
250
  export * from "./UpdatePhoneNumberCommand";
250
251
  export * from "./UpdatePhoneNumberMetadataCommand";
@@ -1169,6 +1169,7 @@ export declare const IntegrationType: {
1169
1169
  readonly APPLICATION: "APPLICATION";
1170
1170
  readonly CALL_TRANSFER_CONNECTOR: "CALL_TRANSFER_CONNECTOR";
1171
1171
  readonly CASES_DOMAIN: "CASES_DOMAIN";
1172
+ readonly COGNITO_USER_POOL: "COGNITO_USER_POOL";
1172
1173
  readonly EVENT: "EVENT";
1173
1174
  readonly FILE_SCANNER: "FILE_SCANNER";
1174
1175
  readonly PINPOINT_APP: "PINPOINT_APP";
@@ -472,6 +472,7 @@ export declare const InstanceAttributeType: {
472
472
  readonly ENHANCED_CONTACT_MONITORING: "ENHANCED_CONTACT_MONITORING";
473
473
  readonly HIGH_VOLUME_OUTBOUND: "HIGH_VOLUME_OUTBOUND";
474
474
  readonly INBOUND_CALLS: "INBOUND_CALLS";
475
+ readonly MULTI_PARTY_CHAT_CONFERENCE: "MULTI_PARTY_CHAT_CONFERENCE";
475
476
  readonly MULTI_PARTY_CONFERENCE: "MULTI_PARTY_CONFERENCE";
476
477
  readonly OUTBOUND_CALLS: "OUTBOUND_CALLS";
477
478
  readonly USE_CUSTOM_TTS_VOICES: "USE_CUSTOM_TTS_VOICES";
@@ -34,9 +34,6 @@ import {
34
34
  StringComparisonType,
35
35
  StringCondition,
36
36
  TagCondition,
37
- TaskTemplateConstraints,
38
- TaskTemplateDefaults,
39
- TaskTemplateField,
40
37
  TaskTemplateStatus,
41
38
  UseCaseType,
42
39
  UserPhoneConfig,
@@ -1568,6 +1565,14 @@ export interface UpdateInstanceStorageConfigRequest {
1568
1565
  ResourceType: InstanceStorageResourceType | undefined;
1569
1566
  StorageConfig: InstanceStorageConfig | undefined;
1570
1567
  }
1568
+ export interface UpdateParticipantAuthenticationRequest {
1569
+ State: string | undefined;
1570
+ InstanceId: string | undefined;
1571
+ Code?: string | undefined;
1572
+ Error?: string | undefined;
1573
+ ErrorDescription?: string | undefined;
1574
+ }
1575
+ export interface UpdateParticipantAuthenticationResponse {}
1571
1576
  export declare const TimerEligibleParticipantRoles: {
1572
1577
  readonly AGENT: "AGENT";
1573
1578
  readonly CUSTOMER: "CUSTOMER";
@@ -1754,29 +1759,6 @@ export interface UpdateRuleRequest {
1754
1759
  Actions: RuleAction[] | undefined;
1755
1760
  PublishStatus: RulePublishStatus | undefined;
1756
1761
  }
1757
- export interface UpdateSecurityProfileRequest {
1758
- Description?: string | undefined;
1759
- Permissions?: string[] | undefined;
1760
- SecurityProfileId: string | undefined;
1761
- InstanceId: string | undefined;
1762
- AllowedAccessControlTags?: Record<string, string> | undefined;
1763
- TagRestrictedResources?: string[] | undefined;
1764
- Applications?: Application[] | undefined;
1765
- HierarchyRestrictedResources?: string[] | undefined;
1766
- AllowedAccessControlHierarchyGroupId?: string | undefined;
1767
- }
1768
- export interface UpdateTaskTemplateRequest {
1769
- TaskTemplateId: string | undefined;
1770
- InstanceId: string | undefined;
1771
- Name?: string | undefined;
1772
- Description?: string | undefined;
1773
- ContactFlowId?: string | undefined;
1774
- SelfAssignFlowId?: string | undefined;
1775
- Constraints?: TaskTemplateConstraints | undefined;
1776
- Defaults?: TaskTemplateDefaults | undefined;
1777
- Status?: TaskTemplateStatus | undefined;
1778
- Fields?: TaskTemplateField[] | undefined;
1779
- }
1780
1762
  export declare const ViewSummaryFilterSensitiveLog: (obj: ViewSummary) => any;
1781
1763
  export declare const ListViewsResponseFilterSensitiveLog: (
1782
1764
  obj: ListViewsResponse
@@ -1873,3 +1855,6 @@ export declare const StartWebRTCContactResponseFilterSensitiveLog: (
1873
1855
  export declare const UpdateEmailAddressMetadataRequestFilterSensitiveLog: (
1874
1856
  obj: UpdateEmailAddressMetadataRequest
1875
1857
  ) => any;
1858
+ export declare const UpdateParticipantAuthenticationRequestFilterSensitiveLog: (
1859
+ obj: UpdateParticipantAuthenticationRequest
1860
+ ) => any;
@@ -3,6 +3,7 @@ import {
3
3
  AgentConfig,
4
4
  AgentInfo,
5
5
  AgentStatusSearchFilter,
6
+ Application,
6
7
  Campaign,
7
8
  Channel,
8
9
  ContactFlowStatus,
@@ -72,6 +73,29 @@ import {
72
73
  UserHierarchyGroupSearchFilter,
73
74
  UserSearchFilter,
74
75
  } from "./models_2";
76
+ export interface UpdateSecurityProfileRequest {
77
+ Description?: string | undefined;
78
+ Permissions?: string[] | undefined;
79
+ SecurityProfileId: string | undefined;
80
+ InstanceId: string | undefined;
81
+ AllowedAccessControlTags?: Record<string, string> | undefined;
82
+ TagRestrictedResources?: string[] | undefined;
83
+ Applications?: Application[] | undefined;
84
+ HierarchyRestrictedResources?: string[] | undefined;
85
+ AllowedAccessControlHierarchyGroupId?: string | undefined;
86
+ }
87
+ export interface UpdateTaskTemplateRequest {
88
+ TaskTemplateId: string | undefined;
89
+ InstanceId: string | undefined;
90
+ Name?: string | undefined;
91
+ Description?: string | undefined;
92
+ ContactFlowId?: string | undefined;
93
+ SelfAssignFlowId?: string | undefined;
94
+ Constraints?: TaskTemplateConstraints | undefined;
95
+ Defaults?: TaskTemplateDefaults | undefined;
96
+ Status?: TaskTemplateStatus | undefined;
97
+ Fields?: TaskTemplateField[] | undefined;
98
+ }
75
99
  export interface UpdateTaskTemplateResponse {
76
100
  InstanceId?: string | undefined;
77
101
  Id?: string | undefined;
@@ -330,6 +354,7 @@ export interface StartChatContactRequest {
330
354
  PersistentChat?: PersistentChat | undefined;
331
355
  RelatedContactId?: string | undefined;
332
356
  SegmentAttributes?: Record<string, SegmentAttributeValue> | undefined;
357
+ CustomerId?: string | undefined;
333
358
  }
334
359
  export interface StartEmailContactRequest {
335
360
  InstanceId: string | undefined;
@@ -561,6 +586,7 @@ export interface Contact {
561
586
  ScheduledTimestamp?: Date | undefined;
562
587
  RelatedContactId?: string | undefined;
563
588
  WisdomInfo?: WisdomInfo | undefined;
589
+ CustomerId?: string | undefined;
564
590
  CustomerEndpoint?: EndpointInfo | undefined;
565
591
  SystemEndpoint?: EndpointInfo | undefined;
566
592
  QueueTimeAdjustmentSeconds?: number | undefined;
@@ -595,6 +621,9 @@ export declare const UpdateViewMetadataRequestFilterSensitiveLog: (
595
621
  export declare const CreateContactRequestFilterSensitiveLog: (
596
622
  obj: CreateContactRequest
597
623
  ) => any;
624
+ export declare const StartChatContactRequestFilterSensitiveLog: (
625
+ obj: StartChatContactRequest
626
+ ) => any;
598
627
  export declare const StartEmailContactRequestFilterSensitiveLog: (
599
628
  obj: StartEmailContactRequest
600
629
  ) => any;
@@ -991,6 +991,10 @@ import {
991
991
  UpdateInstanceStorageConfigCommandInput,
992
992
  UpdateInstanceStorageConfigCommandOutput,
993
993
  } from "../commands/UpdateInstanceStorageConfigCommand";
994
+ import {
995
+ UpdateParticipantAuthenticationCommandInput,
996
+ UpdateParticipantAuthenticationCommandOutput,
997
+ } from "../commands/UpdateParticipantAuthenticationCommand";
994
998
  import {
995
999
  UpdateParticipantRoleConfigCommandInput,
996
1000
  UpdateParticipantRoleConfigCommandOutput,
@@ -2107,6 +2111,10 @@ export declare const se_UpdateInstanceStorageConfigCommand: (
2107
2111
  input: UpdateInstanceStorageConfigCommandInput,
2108
2112
  context: __SerdeContext
2109
2113
  ) => Promise<__HttpRequest>;
2114
+ export declare const se_UpdateParticipantAuthenticationCommand: (
2115
+ input: UpdateParticipantAuthenticationCommandInput,
2116
+ context: __SerdeContext
2117
+ ) => Promise<__HttpRequest>;
2110
2118
  export declare const se_UpdateParticipantRoleConfigCommand: (
2111
2119
  input: UpdateParticipantRoleConfigCommandInput,
2112
2120
  context: __SerdeContext
@@ -3223,6 +3231,10 @@ export declare const de_UpdateInstanceStorageConfigCommand: (
3223
3231
  output: __HttpResponse,
3224
3232
  context: __SerdeContext
3225
3233
  ) => Promise<UpdateInstanceStorageConfigCommandOutput>;
3234
+ export declare const de_UpdateParticipantAuthenticationCommand: (
3235
+ output: __HttpResponse,
3236
+ context: __SerdeContext
3237
+ ) => Promise<UpdateParticipantAuthenticationCommandOutput>;
3226
3238
  export declare const de_UpdateParticipantRoleConfigCommand: (
3227
3239
  output: __HttpResponse,
3228
3240
  context: __SerdeContext
@@ -33,6 +33,7 @@ export declare const getRuntimeConfig: (config: ConnectClientConfig) => {
33
33
  utf8Encoder: (input: string | Uint8Array) => string;
34
34
  disableHostPrefix: boolean;
35
35
  serviceId: string;
36
+ profile?: string | undefined;
36
37
  logger: import("@smithy/types").Logger;
37
38
  extensions: import("./runtimeExtensions").RuntimeExtension[];
38
39
  customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
@@ -38,6 +38,7 @@ export declare const getRuntimeConfig: (config: ConnectClientConfig) => {
38
38
  utf8Encoder: (input: string | Uint8Array) => string;
39
39
  disableHostPrefix: boolean;
40
40
  serviceId: string;
41
+ profile?: string | undefined;
41
42
  logger: import("@smithy/types").Logger;
42
43
  extensions: import("./runtimeExtensions").RuntimeExtension[];
43
44
  customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
@@ -22,6 +22,7 @@ export declare const getRuntimeConfig: (config: ConnectClientConfig) => {
22
22
  useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
23
23
  useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
24
24
  region: string | import("@smithy/types").Provider<any>;
25
+ profile?: string | undefined;
25
26
  defaultUserAgentProvider: (
26
27
  config?:
27
28
  | import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-connect",
3
3
  "description": "AWS SDK for JavaScript Connect Client for Node.js, Browser and React Native",
4
- "version": "3.713.0",
4
+ "version": "3.715.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-connect",
@@ -20,19 +20,19 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.713.0",
24
- "@aws-sdk/client-sts": "3.713.0",
25
- "@aws-sdk/core": "3.713.0",
26
- "@aws-sdk/credential-provider-node": "3.713.0",
27
- "@aws-sdk/middleware-host-header": "3.713.0",
28
- "@aws-sdk/middleware-logger": "3.713.0",
29
- "@aws-sdk/middleware-recursion-detection": "3.713.0",
30
- "@aws-sdk/middleware-user-agent": "3.713.0",
31
- "@aws-sdk/region-config-resolver": "3.713.0",
32
- "@aws-sdk/types": "3.713.0",
33
- "@aws-sdk/util-endpoints": "3.713.0",
34
- "@aws-sdk/util-user-agent-browser": "3.713.0",
35
- "@aws-sdk/util-user-agent-node": "3.713.0",
23
+ "@aws-sdk/client-sso-oidc": "3.714.0",
24
+ "@aws-sdk/client-sts": "3.714.0",
25
+ "@aws-sdk/core": "3.714.0",
26
+ "@aws-sdk/credential-provider-node": "3.714.0",
27
+ "@aws-sdk/middleware-host-header": "3.714.0",
28
+ "@aws-sdk/middleware-logger": "3.714.0",
29
+ "@aws-sdk/middleware-recursion-detection": "3.714.0",
30
+ "@aws-sdk/middleware-user-agent": "3.714.0",
31
+ "@aws-sdk/region-config-resolver": "3.714.0",
32
+ "@aws-sdk/types": "3.714.0",
33
+ "@aws-sdk/util-endpoints": "3.714.0",
34
+ "@aws-sdk/util-user-agent-browser": "3.714.0",
35
+ "@aws-sdk/util-user-agent-node": "3.714.0",
36
36
  "@smithy/config-resolver": "^3.0.13",
37
37
  "@smithy/core": "^2.5.5",
38
38
  "@smithy/fetch-http-handler": "^4.1.2",