@aws-sdk/client-connect 3.613.0 → 3.616.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 (53) hide show
  1. package/README.md +17 -2
  2. package/dist-cjs/index.js +204 -31
  3. package/dist-es/Connect.js +4 -0
  4. package/dist-es/ConnectClient.js +5 -5
  5. package/dist-es/commands/SearchAgentStatusesCommand.js +24 -0
  6. package/dist-es/commands/SearchUserHierarchyGroupsCommand.js +24 -0
  7. package/dist-es/commands/index.js +2 -0
  8. package/dist-es/models/models_0.js +5 -18
  9. package/dist-es/models/models_1.js +18 -0
  10. package/dist-es/models/models_2.js +12 -5
  11. package/dist-es/pagination/SearchAgentStatusesPaginator.js +4 -0
  12. package/dist-es/pagination/SearchUserHierarchyGroupsPaginator.js +4 -0
  13. package/dist-es/pagination/index.js +2 -0
  14. package/dist-es/protocols/Aws_restJson1.js +113 -2
  15. package/dist-types/Connect.d.ts +16 -3
  16. package/dist-types/ConnectClient.d.ts +8 -7
  17. package/dist-types/commands/DescribeContactEvaluationCommand.d.ts +1 -1
  18. package/dist-types/commands/ListTrafficDistributionGroupUsersCommand.d.ts +1 -1
  19. package/dist-types/commands/ListUseCasesCommand.d.ts +1 -1
  20. package/dist-types/commands/SearchAgentStatusesCommand.d.ts +142 -0
  21. package/dist-types/commands/SearchUserHierarchyGroupsCommand.d.ts +181 -0
  22. package/dist-types/commands/SearchUsersCommand.d.ts +32 -4
  23. package/dist-types/commands/index.d.ts +2 -0
  24. package/dist-types/index.d.ts +2 -3
  25. package/dist-types/models/models_0.d.ts +128 -133
  26. package/dist-types/models/models_1.d.ts +128 -118
  27. package/dist-types/models/models_2.d.ts +431 -73
  28. package/dist-types/pagination/SearchAgentStatusesPaginator.d.ts +7 -0
  29. package/dist-types/pagination/SearchUserHierarchyGroupsPaginator.d.ts +7 -0
  30. package/dist-types/pagination/index.d.ts +2 -0
  31. package/dist-types/protocols/Aws_restJson1.d.ts +18 -0
  32. package/dist-types/runtimeConfig.browser.d.ts +1 -1
  33. package/dist-types/runtimeConfig.d.ts +1 -1
  34. package/dist-types/runtimeConfig.native.d.ts +1 -1
  35. package/dist-types/ts3.4/Connect.d.ts +34 -0
  36. package/dist-types/ts3.4/ConnectClient.d.ts +14 -2
  37. package/dist-types/ts3.4/commands/DescribeContactEvaluationCommand.d.ts +1 -1
  38. package/dist-types/ts3.4/commands/ListTrafficDistributionGroupUsersCommand.d.ts +1 -1
  39. package/dist-types/ts3.4/commands/ListUseCasesCommand.d.ts +1 -1
  40. package/dist-types/ts3.4/commands/SearchAgentStatusesCommand.d.ts +40 -0
  41. package/dist-types/ts3.4/commands/SearchUserHierarchyGroupsCommand.d.ts +40 -0
  42. package/dist-types/ts3.4/commands/index.d.ts +2 -0
  43. package/dist-types/ts3.4/models/models_0.d.ts +27 -60
  44. package/dist-types/ts3.4/models/models_1.d.ts +60 -29
  45. package/dist-types/ts3.4/models/models_2.d.ts +107 -20
  46. package/dist-types/ts3.4/pagination/SearchAgentStatusesPaginator.d.ts +11 -0
  47. package/dist-types/ts3.4/pagination/SearchUserHierarchyGroupsPaginator.d.ts +11 -0
  48. package/dist-types/ts3.4/pagination/index.d.ts +2 -0
  49. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +24 -0
  50. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
  51. package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
  52. package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
  53. package/package.json +24 -24
@@ -5,6 +5,8 @@ import {
5
5
  AgentConfig,
6
6
  AgentHierarchyGroups,
7
7
  AgentInfo,
8
+ AgentStatus,
9
+ AgentStatusSearchFilter,
8
10
  AgentStatusState,
9
11
  AllowedCapabilities,
10
12
  AnsweringMachineDetectionStatus,
@@ -15,11 +17,11 @@ import {
15
17
  ContactFlowStatus,
16
18
  ContactFlowType,
17
19
  ContactInitiationMethod,
20
+ ControlPlaneAttributeFilter,
18
21
  CreatedByInfo,
19
22
  Customer,
20
23
  CustomerVoiceActivity,
21
24
  DisconnectDetails,
22
- EvaluationAnswerData,
23
25
  EvaluationFormQuestion,
24
26
  EvaluationFormScoringStrategy,
25
27
  Expiry,
@@ -38,15 +40,17 @@ import {
38
40
  QuickConnectConfig,
39
41
  Reference,
40
42
  RehydrationType,
41
- RoutingCriteriaStepStatus,
42
43
  RoutingProfileQueueConfig,
43
44
  RuleAction,
44
45
  RulePublishStatus,
45
- SegmentAttributeValue,
46
+ StringComparisonType,
47
+ StringCondition,
48
+ TagCondition,
46
49
  TaskTemplateConstraints,
47
50
  TaskTemplateDefaults,
48
51
  TaskTemplateField,
49
52
  TaskTemplateStatus,
53
+ UseCaseType,
50
54
  UserIdentityInfo,
51
55
  UserPhoneConfig,
52
56
  UserProficiency,
@@ -56,7 +60,6 @@ import {
56
60
  ViewType,
57
61
  VocabularyLanguageCode,
58
62
  VocabularyState,
59
- WisdomInfo,
60
63
  } from "./models_0";
61
64
  import {
62
65
  ContactFlow,
@@ -64,8 +67,10 @@ import {
64
67
  ContactFlowModuleState,
65
68
  ContactFlowState,
66
69
  Evaluation,
70
+ EvaluationAnswerData,
67
71
  EvaluationFormVersionStatus,
68
72
  EvaluationNote,
73
+ HierarchyGroup,
69
74
  HierarchyGroupSummary,
70
75
  HoursOfOperation,
71
76
  InstanceAttributeType,
@@ -76,11 +81,41 @@ import {
76
81
  Queue,
77
82
  QueueStatus,
78
83
  QuickConnect,
84
+ RoutingCriteriaStepStatus,
79
85
  RoutingProfile,
86
+ SegmentAttributeValue,
80
87
  SignInConfig,
81
88
  SortOrder,
82
89
  TelephonyConfig,
90
+ WisdomInfo,
83
91
  } from "./models_1";
92
+ export interface ListTrafficDistributionGroupUsersRequest {
93
+ TrafficDistributionGroupId: string | undefined;
94
+ MaxResults?: number;
95
+ NextToken?: string;
96
+ }
97
+ export interface TrafficDistributionGroupUserSummary {
98
+ UserId?: string;
99
+ }
100
+ export interface ListTrafficDistributionGroupUsersResponse {
101
+ NextToken?: string;
102
+ TrafficDistributionGroupUserSummaryList?: TrafficDistributionGroupUserSummary[];
103
+ }
104
+ export interface ListUseCasesRequest {
105
+ InstanceId: string | undefined;
106
+ IntegrationAssociationId: string | undefined;
107
+ NextToken?: string;
108
+ MaxResults?: number;
109
+ }
110
+ export interface UseCase {
111
+ UseCaseId?: string;
112
+ UseCaseArn?: string;
113
+ UseCaseType?: UseCaseType;
114
+ }
115
+ export interface ListUseCasesResponse {
116
+ UseCaseSummaryList?: UseCase[];
117
+ NextToken?: string;
118
+ }
84
119
  export interface ListUserHierarchyGroupsRequest {
85
120
  InstanceId: string | undefined;
86
121
  NextToken?: string;
@@ -210,6 +245,11 @@ export interface ResumeContactRecordingRequest {
210
245
  InitialContactId: string | undefined;
211
246
  }
212
247
  export interface ResumeContactRecordingResponse {}
248
+ export interface SearchAgentStatusesResponse {
249
+ AgentStatuses?: AgentStatus[];
250
+ NextToken?: string;
251
+ ApproximateTotalCount?: number;
252
+ }
213
253
  export interface SearchAvailablePhoneNumbersRequest {
214
254
  TargetArn?: string;
215
255
  InstanceId?: string;
@@ -228,22 +268,6 @@ export interface SearchAvailablePhoneNumbersResponse {
228
268
  NextToken?: string;
229
269
  AvailableNumbersList?: AvailableNumberSummary[];
230
270
  }
231
- export declare const StringComparisonType: {
232
- readonly CONTAINS: "CONTAINS";
233
- readonly EXACT: "EXACT";
234
- readonly STARTS_WITH: "STARTS_WITH";
235
- };
236
- export type StringComparisonType =
237
- (typeof StringComparisonType)[keyof typeof StringComparisonType];
238
- export interface StringCondition {
239
- FieldName?: string;
240
- Value?: string;
241
- ComparisonType?: StringComparisonType;
242
- }
243
- export interface TagCondition {
244
- TagKey?: string;
245
- TagValue?: string;
246
- }
247
271
  export interface ControlPlaneTagFilter {
248
272
  OrConditions?: TagCondition[][];
249
273
  AndConditions?: TagCondition[];
@@ -459,6 +483,14 @@ export interface SearchSecurityProfilesResponse {
459
483
  NextToken?: string;
460
484
  ApproximateTotalCount?: number;
461
485
  }
486
+ export interface UserHierarchyGroupSearchFilter {
487
+ AttributeFilter?: ControlPlaneAttributeFilter;
488
+ }
489
+ export interface SearchUserHierarchyGroupsResponse {
490
+ UserHierarchyGroups?: HierarchyGroup[];
491
+ NextToken?: string;
492
+ ApproximateTotalCount?: number;
493
+ }
462
494
  export declare const HierarchyGroupMatchType: {
463
495
  readonly EXACT: "EXACT";
464
496
  readonly WITH_CHILD_GROUPS: "WITH_CHILD_GROUPS";
@@ -469,6 +501,36 @@ export interface HierarchyGroupCondition {
469
501
  Value?: string;
470
502
  HierarchyGroupMatchType?: HierarchyGroupMatchType;
471
503
  }
504
+ export declare const NumberComparisonType: {
505
+ readonly EQUAL: "EQUAL";
506
+ readonly GREATER: "GREATER";
507
+ readonly GREATER_OR_EQUAL: "GREATER_OR_EQUAL";
508
+ readonly LESSER: "LESSER";
509
+ readonly LESSER_OR_EQUAL: "LESSER_OR_EQUAL";
510
+ readonly NOT_EQUAL: "NOT_EQUAL";
511
+ readonly RANGE: "RANGE";
512
+ };
513
+ export type NumberComparisonType =
514
+ (typeof NumberComparisonType)[keyof typeof NumberComparisonType];
515
+ export interface NumberCondition {
516
+ FieldName?: string;
517
+ MinValue?: number;
518
+ MaxValue?: number;
519
+ ComparisonType?: NumberComparisonType;
520
+ }
521
+ export interface Condition {
522
+ StringCondition?: StringCondition;
523
+ NumberCondition?: NumberCondition;
524
+ }
525
+ export declare const TargetListType: {
526
+ readonly PROFICIENCIES: "PROFICIENCIES";
527
+ };
528
+ export type TargetListType =
529
+ (typeof TargetListType)[keyof typeof TargetListType];
530
+ export interface ListCondition {
531
+ TargetListType?: TargetListType;
532
+ Conditions?: Condition[];
533
+ }
472
534
  export interface AttributeAndCondition {
473
535
  TagConditions?: TagCondition[];
474
536
  HierarchyGroupCondition?: HierarchyGroupCondition;
@@ -1277,6 +1339,11 @@ export interface EvaluationFormSection {
1277
1339
  Items: EvaluationFormItem[] | undefined;
1278
1340
  Weight?: number;
1279
1341
  }
1342
+ export interface AgentStatusSearchCriteria {
1343
+ OrConditions?: AgentStatusSearchCriteria[];
1344
+ AndConditions?: AgentStatusSearchCriteria[];
1345
+ StringCondition?: StringCondition;
1346
+ }
1280
1347
  export interface ContactFlowModuleSearchCriteria {
1281
1348
  OrConditions?: ContactFlowModuleSearchCriteria[];
1282
1349
  AndConditions?: ContactFlowModuleSearchCriteria[];
@@ -1375,10 +1442,16 @@ export interface UpdateEvaluationFormRequest {
1375
1442
  ScoringStrategy?: EvaluationFormScoringStrategy;
1376
1443
  ClientToken?: string;
1377
1444
  }
1445
+ export interface UserHierarchyGroupSearchCriteria {
1446
+ OrConditions?: UserHierarchyGroupSearchCriteria[];
1447
+ AndConditions?: UserHierarchyGroupSearchCriteria[];
1448
+ StringCondition?: StringCondition;
1449
+ }
1378
1450
  export interface UserSearchCriteria {
1379
1451
  OrConditions?: UserSearchCriteria[];
1380
1452
  AndConditions?: UserSearchCriteria[];
1381
1453
  StringCondition?: StringCondition;
1454
+ ListCondition?: ListCondition;
1382
1455
  HierarchyGroupCondition?: HierarchyGroupCondition;
1383
1456
  }
1384
1457
  export interface DescribeContactEvaluationResponse {
@@ -1388,6 +1461,13 @@ export interface DescribeContactEvaluationResponse {
1388
1461
  export interface DescribeEvaluationFormResponse {
1389
1462
  EvaluationForm: EvaluationForm | undefined;
1390
1463
  }
1464
+ export interface SearchAgentStatusesRequest {
1465
+ InstanceId: string | undefined;
1466
+ NextToken?: string;
1467
+ MaxResults?: number;
1468
+ SearchFilter?: AgentStatusSearchFilter;
1469
+ SearchCriteria?: AgentStatusSearchCriteria;
1470
+ }
1391
1471
  export interface SearchContactFlowModulesRequest {
1392
1472
  InstanceId: string | undefined;
1393
1473
  NextToken?: string;
@@ -1450,6 +1530,13 @@ export interface SearchSecurityProfilesRequest {
1450
1530
  SearchCriteria?: SecurityProfileSearchCriteria;
1451
1531
  SearchFilter?: SecurityProfilesSearchFilter;
1452
1532
  }
1533
+ export interface SearchUserHierarchyGroupsRequest {
1534
+ InstanceId: string | undefined;
1535
+ NextToken?: string;
1536
+ MaxResults?: number;
1537
+ SearchFilter?: UserHierarchyGroupSearchFilter;
1538
+ SearchCriteria?: UserHierarchyGroupSearchCriteria;
1539
+ }
1453
1540
  export interface SearchUsersRequest {
1454
1541
  InstanceId: string | undefined;
1455
1542
  NextToken?: string;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ SearchAgentStatusesCommandInput,
4
+ SearchAgentStatusesCommandOutput,
5
+ } from "../commands/SearchAgentStatusesCommand";
6
+ import { ConnectPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateSearchAgentStatuses: (
8
+ config: ConnectPaginationConfiguration,
9
+ input: SearchAgentStatusesCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<SearchAgentStatusesCommandOutput>;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ SearchUserHierarchyGroupsCommandInput,
4
+ SearchUserHierarchyGroupsCommandOutput,
5
+ } from "../commands/SearchUserHierarchyGroupsCommand";
6
+ import { ConnectPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateSearchUserHierarchyGroups: (
8
+ config: ConnectPaginationConfiguration,
9
+ input: SearchUserHierarchyGroupsCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<SearchUserHierarchyGroupsCommandOutput>;
@@ -46,6 +46,7 @@ export * from "./ListUserProficienciesPaginator";
46
46
  export * from "./ListUsersPaginator";
47
47
  export * from "./ListViewVersionsPaginator";
48
48
  export * from "./ListViewsPaginator";
49
+ export * from "./SearchAgentStatusesPaginator";
49
50
  export * from "./SearchAvailablePhoneNumbersPaginator";
50
51
  export * from "./SearchContactFlowModulesPaginator";
51
52
  export * from "./SearchContactFlowsPaginator";
@@ -58,5 +59,6 @@ export * from "./SearchQuickConnectsPaginator";
58
59
  export * from "./SearchResourceTagsPaginator";
59
60
  export * from "./SearchRoutingProfilesPaginator";
60
61
  export * from "./SearchSecurityProfilesPaginator";
62
+ export * from "./SearchUserHierarchyGroupsPaginator";
61
63
  export * from "./SearchUsersPaginator";
62
64
  export * from "./SearchVocabulariesPaginator";
@@ -695,6 +695,10 @@ import {
695
695
  ResumeContactRecordingCommandInput,
696
696
  ResumeContactRecordingCommandOutput,
697
697
  } from "../commands/ResumeContactRecordingCommand";
698
+ import {
699
+ SearchAgentStatusesCommandInput,
700
+ SearchAgentStatusesCommandOutput,
701
+ } from "../commands/SearchAgentStatusesCommand";
698
702
  import {
699
703
  SearchAvailablePhoneNumbersCommandInput,
700
704
  SearchAvailablePhoneNumbersCommandOutput,
@@ -743,6 +747,10 @@ import {
743
747
  SearchSecurityProfilesCommandInput,
744
748
  SearchSecurityProfilesCommandOutput,
745
749
  } from "../commands/SearchSecurityProfilesCommand";
750
+ import {
751
+ SearchUserHierarchyGroupsCommandInput,
752
+ SearchUserHierarchyGroupsCommandOutput,
753
+ } from "../commands/SearchUserHierarchyGroupsCommand";
746
754
  import {
747
755
  SearchUsersCommandInput,
748
756
  SearchUsersCommandOutput,
@@ -1707,6 +1715,10 @@ export declare const se_ResumeContactRecordingCommand: (
1707
1715
  input: ResumeContactRecordingCommandInput,
1708
1716
  context: __SerdeContext
1709
1717
  ) => Promise<__HttpRequest>;
1718
+ export declare const se_SearchAgentStatusesCommand: (
1719
+ input: SearchAgentStatusesCommandInput,
1720
+ context: __SerdeContext
1721
+ ) => Promise<__HttpRequest>;
1710
1722
  export declare const se_SearchAvailablePhoneNumbersCommand: (
1711
1723
  input: SearchAvailablePhoneNumbersCommandInput,
1712
1724
  context: __SerdeContext
@@ -1755,6 +1767,10 @@ export declare const se_SearchSecurityProfilesCommand: (
1755
1767
  input: SearchSecurityProfilesCommandInput,
1756
1768
  context: __SerdeContext
1757
1769
  ) => Promise<__HttpRequest>;
1770
+ export declare const se_SearchUserHierarchyGroupsCommand: (
1771
+ input: SearchUserHierarchyGroupsCommandInput,
1772
+ context: __SerdeContext
1773
+ ) => Promise<__HttpRequest>;
1758
1774
  export declare const se_SearchUsersCommand: (
1759
1775
  input: SearchUsersCommandInput,
1760
1776
  context: __SerdeContext
@@ -2719,6 +2735,10 @@ export declare const de_ResumeContactRecordingCommand: (
2719
2735
  output: __HttpResponse,
2720
2736
  context: __SerdeContext
2721
2737
  ) => Promise<ResumeContactRecordingCommandOutput>;
2738
+ export declare const de_SearchAgentStatusesCommand: (
2739
+ output: __HttpResponse,
2740
+ context: __SerdeContext
2741
+ ) => Promise<SearchAgentStatusesCommandOutput>;
2722
2742
  export declare const de_SearchAvailablePhoneNumbersCommand: (
2723
2743
  output: __HttpResponse,
2724
2744
  context: __SerdeContext
@@ -2767,6 +2787,10 @@ export declare const de_SearchSecurityProfilesCommand: (
2767
2787
  output: __HttpResponse,
2768
2788
  context: __SerdeContext
2769
2789
  ) => Promise<SearchSecurityProfilesCommandOutput>;
2790
+ export declare const de_SearchUserHierarchyGroupsCommand: (
2791
+ output: __HttpResponse,
2792
+ context: __SerdeContext
2793
+ ) => Promise<SearchUserHierarchyGroupsCommandOutput>;
2770
2794
  export declare const de_SearchUsersCommand: (
2771
2795
  output: __HttpResponse,
2772
2796
  context: __SerdeContext
@@ -56,11 +56,11 @@ export declare const getRuntimeConfig: (config: ConnectClientConfig) => {
56
56
  }
57
57
  ) => import("@smithy/types").EndpointV2;
58
58
  tls?: boolean | undefined;
59
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
59
60
  retryStrategy?:
60
61
  | import("@smithy/types").RetryStrategy
61
62
  | import("@smithy/types").RetryStrategyV2
62
63
  | undefined;
63
- customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
64
64
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
65
65
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").ConnectHttpAuthSchemeProvider;
66
66
  credentials?:
@@ -60,11 +60,11 @@ export declare const getRuntimeConfig: (config: ConnectClientConfig) => {
60
60
  }
61
61
  ) => import("@smithy/types").EndpointV2;
62
62
  tls?: boolean | undefined;
63
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
63
64
  retryStrategy?:
64
65
  | import("@smithy/types").RetryStrategy
65
66
  | import("@smithy/types").RetryStrategyV2
66
67
  | undefined;
67
- customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
68
68
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
69
69
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").ConnectHttpAuthSchemeProvider;
70
70
  credentials?:
@@ -50,11 +50,11 @@ export declare const getRuntimeConfig: (config: ConnectClientConfig) => {
50
50
  }
51
51
  ) => import("@smithy/types").EndpointV2;
52
52
  tls?: boolean | undefined;
53
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
53
54
  retryStrategy?:
54
55
  | import("@smithy/types").RetryStrategy
55
56
  | import("@smithy/types").RetryStrategyV2
56
57
  | undefined;
57
- customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
58
58
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
59
59
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").ConnectHttpAuthSchemeProvider;
60
60
  credentials?:
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.613.0",
4
+ "version": "3.616.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,41 +20,41 @@
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.613.0",
24
- "@aws-sdk/client-sts": "3.613.0",
25
- "@aws-sdk/core": "3.609.0",
26
- "@aws-sdk/credential-provider-node": "3.613.0",
27
- "@aws-sdk/middleware-host-header": "3.609.0",
23
+ "@aws-sdk/client-sso-oidc": "3.616.0",
24
+ "@aws-sdk/client-sts": "3.616.0",
25
+ "@aws-sdk/core": "3.616.0",
26
+ "@aws-sdk/credential-provider-node": "3.616.0",
27
+ "@aws-sdk/middleware-host-header": "3.616.0",
28
28
  "@aws-sdk/middleware-logger": "3.609.0",
29
- "@aws-sdk/middleware-recursion-detection": "3.609.0",
30
- "@aws-sdk/middleware-user-agent": "3.609.0",
31
- "@aws-sdk/region-config-resolver": "3.609.0",
29
+ "@aws-sdk/middleware-recursion-detection": "3.616.0",
30
+ "@aws-sdk/middleware-user-agent": "3.616.0",
31
+ "@aws-sdk/region-config-resolver": "3.614.0",
32
32
  "@aws-sdk/types": "3.609.0",
33
- "@aws-sdk/util-endpoints": "3.609.0",
33
+ "@aws-sdk/util-endpoints": "3.614.0",
34
34
  "@aws-sdk/util-user-agent-browser": "3.609.0",
35
- "@aws-sdk/util-user-agent-node": "3.609.0",
36
- "@smithy/config-resolver": "^3.0.4",
37
- "@smithy/core": "^2.2.4",
38
- "@smithy/fetch-http-handler": "^3.2.0",
35
+ "@aws-sdk/util-user-agent-node": "3.614.0",
36
+ "@smithy/config-resolver": "^3.0.5",
37
+ "@smithy/core": "^2.2.7",
38
+ "@smithy/fetch-http-handler": "^3.2.2",
39
39
  "@smithy/hash-node": "^3.0.3",
40
40
  "@smithy/invalid-dependency": "^3.0.3",
41
- "@smithy/middleware-content-length": "^3.0.3",
42
- "@smithy/middleware-endpoint": "^3.0.4",
43
- "@smithy/middleware-retry": "^3.0.7",
41
+ "@smithy/middleware-content-length": "^3.0.4",
42
+ "@smithy/middleware-endpoint": "^3.0.5",
43
+ "@smithy/middleware-retry": "^3.0.10",
44
44
  "@smithy/middleware-serde": "^3.0.3",
45
45
  "@smithy/middleware-stack": "^3.0.3",
46
- "@smithy/node-config-provider": "^3.1.3",
47
- "@smithy/node-http-handler": "^3.1.1",
48
- "@smithy/protocol-http": "^4.0.3",
49
- "@smithy/smithy-client": "^3.1.5",
46
+ "@smithy/node-config-provider": "^3.1.4",
47
+ "@smithy/node-http-handler": "^3.1.3",
48
+ "@smithy/protocol-http": "^4.0.4",
49
+ "@smithy/smithy-client": "^3.1.8",
50
50
  "@smithy/types": "^3.3.0",
51
51
  "@smithy/url-parser": "^3.0.3",
52
52
  "@smithy/util-base64": "^3.0.0",
53
53
  "@smithy/util-body-length-browser": "^3.0.0",
54
54
  "@smithy/util-body-length-node": "^3.0.0",
55
- "@smithy/util-defaults-mode-browser": "^3.0.7",
56
- "@smithy/util-defaults-mode-node": "^3.0.7",
57
- "@smithy/util-endpoints": "^2.0.4",
55
+ "@smithy/util-defaults-mode-browser": "^3.0.10",
56
+ "@smithy/util-defaults-mode-node": "^3.0.10",
57
+ "@smithy/util-endpoints": "^2.0.5",
58
58
  "@smithy/util-middleware": "^3.0.3",
59
59
  "@smithy/util-retry": "^3.0.3",
60
60
  "@smithy/util-utf8": "^3.0.0",