@aws-sdk/client-rekognition 3.323.0 → 3.326.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 (66) hide show
  1. package/dist-types/commands/CompareFacesCommand.d.ts +88 -0
  2. package/dist-types/commands/CopyProjectVersionCommand.d.ts +6 -0
  3. package/dist-types/commands/CreateCollectionCommand.d.ts +8 -0
  4. package/dist-types/commands/CreateDatasetCommand.d.ts +6 -0
  5. package/dist-types/commands/CreateFaceLivenessSessionCommand.d.ts +6 -0
  6. package/dist-types/commands/CreateProjectCommand.d.ts +6 -0
  7. package/dist-types/commands/CreateProjectVersionCommand.d.ts +6 -0
  8. package/dist-types/commands/CreateStreamProcessorCommand.d.ts +6 -0
  9. package/dist-types/commands/DeleteCollectionCommand.d.ts +6 -0
  10. package/dist-types/commands/DeleteDatasetCommand.d.ts +4 -0
  11. package/dist-types/commands/DeleteFacesCommand.d.ts +8 -0
  12. package/dist-types/commands/DeleteProjectCommand.d.ts +6 -0
  13. package/dist-types/commands/DeleteProjectPolicyCommand.d.ts +4 -0
  14. package/dist-types/commands/DeleteProjectVersionCommand.d.ts +6 -0
  15. package/dist-types/commands/DeleteStreamProcessorCommand.d.ts +4 -0
  16. package/dist-types/commands/DescribeCollectionCommand.d.ts +9 -0
  17. package/dist-types/commands/DescribeDatasetCommand.d.ts +18 -0
  18. package/dist-types/commands/DescribeProjectVersionsCommand.d.ts +105 -0
  19. package/dist-types/commands/DescribeProjectsCommand.d.ts +23 -0
  20. package/dist-types/commands/DescribeStreamProcessorCommand.d.ts +61 -0
  21. package/dist-types/commands/DetectCustomLabelsCommand.d.ts +25 -0
  22. package/dist-types/commands/DetectFacesCommand.d.ts +75 -0
  23. package/dist-types/commands/DetectLabelsCommand.d.ts +84 -0
  24. package/dist-types/commands/DetectModerationLabelsCommand.d.ts +20 -0
  25. package/dist-types/commands/DetectProtectiveEquipmentCommand.d.ts +51 -0
  26. package/dist-types/commands/DetectTextCommand.d.ts +29 -0
  27. package/dist-types/commands/DistributeDatasetEntriesCommand.d.ts +4 -0
  28. package/dist-types/commands/GetCelebrityInfoCommand.d.ts +12 -0
  29. package/dist-types/commands/GetCelebrityRecognitionCommand.d.ts +115 -0
  30. package/dist-types/commands/GetContentModerationCommand.d.ts +44 -0
  31. package/dist-types/commands/GetFaceDetectionCommand.d.ts +98 -0
  32. package/dist-types/commands/GetFaceLivenessSessionResultsCommand.d.ts +38 -0
  33. package/dist-types/commands/GetFaceSearchCommand.d.ts +120 -0
  34. package/dist-types/commands/GetLabelDetectionCommand.d.ts +80 -0
  35. package/dist-types/commands/GetPersonTrackingCommand.d.ts +107 -0
  36. package/dist-types/commands/GetSegmentDetectionCommand.d.ts +64 -0
  37. package/dist-types/commands/GetTextDetectionCommand.d.ts +53 -0
  38. package/dist-types/commands/IndexFacesCommand.d.ts +165 -0
  39. package/dist-types/commands/ListCollectionsCommand.d.ts +12 -0
  40. package/dist-types/commands/ListDatasetEntriesCommand.d.ts +9 -0
  41. package/dist-types/commands/ListDatasetLabelsCommand.d.ts +15 -0
  42. package/dist-types/commands/ListFacesCommand.d.ts +22 -0
  43. package/dist-types/commands/ListProjectPoliciesCommand.d.ts +16 -0
  44. package/dist-types/commands/ListStreamProcessorsCommand.d.ts +12 -0
  45. package/dist-types/commands/ListTagsForResourceCommand.d.ts +8 -0
  46. package/dist-types/commands/PutProjectPolicyCommand.d.ts +6 -0
  47. package/dist-types/commands/RecognizeCelebritiesCommand.d.ts +91 -0
  48. package/dist-types/commands/SearchFacesByImageCommand.d.ts +31 -0
  49. package/dist-types/commands/SearchFacesCommand.d.ts +25 -0
  50. package/dist-types/commands/StartCelebrityRecognitionCommand.d.ts +6 -0
  51. package/dist-types/commands/StartContentModerationCommand.d.ts +6 -0
  52. package/dist-types/commands/StartFaceDetectionCommand.d.ts +6 -0
  53. package/dist-types/commands/StartFaceSearchCommand.d.ts +6 -0
  54. package/dist-types/commands/StartLabelDetectionCommand.d.ts +6 -0
  55. package/dist-types/commands/StartPersonTrackingCommand.d.ts +6 -0
  56. package/dist-types/commands/StartProjectVersionCommand.d.ts +6 -0
  57. package/dist-types/commands/StartSegmentDetectionCommand.d.ts +6 -0
  58. package/dist-types/commands/StartStreamProcessorCommand.d.ts +6 -0
  59. package/dist-types/commands/StartTextDetectionCommand.d.ts +6 -0
  60. package/dist-types/commands/StopProjectVersionCommand.d.ts +6 -0
  61. package/dist-types/commands/StopStreamProcessorCommand.d.ts +4 -0
  62. package/dist-types/commands/TagResourceCommand.d.ts +4 -0
  63. package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
  64. package/dist-types/commands/UpdateDatasetEntriesCommand.d.ts +4 -0
  65. package/dist-types/commands/UpdateStreamProcessorCommand.d.ts +4 -0
  66. package/package.json +16 -16
@@ -53,6 +53,10 @@ export interface StartCelebrityRecognitionCommandOutput extends StartCelebrityRe
53
53
  * };
54
54
  * const command = new StartCelebrityRecognitionCommand(input);
55
55
  * const response = await client.send(command);
56
+ * // { // StartCelebrityRecognitionResponse
57
+ * // JobId: "STRING_VALUE",
58
+ * // };
59
+ *
56
60
  * ```
57
61
  *
58
62
  * @param StartCelebrityRecognitionCommandInput - {@link StartCelebrityRecognitionCommandInput}
@@ -94,6 +98,8 @@ export interface StartCelebrityRecognitionCommandOutput extends StartCelebrityRe
94
98
  * <p>The file size or duration of the supplied media is too large. The maximum file size is 10GB.
95
99
  * The maximum duration is 6 hours. </p>
96
100
  *
101
+ * @throws {@link RekognitionServiceException}
102
+ * <p>Base exception class for all service exceptions from Rekognition service.</p>
97
103
  *
98
104
  */
99
105
  export declare class StartCelebrityRecognitionCommand extends $Command<StartCelebrityRecognitionCommandInput, StartCelebrityRecognitionCommandOutput, RekognitionClientResolvedConfig> {
@@ -54,6 +54,10 @@ export interface StartContentModerationCommandOutput extends StartContentModerat
54
54
  * };
55
55
  * const command = new StartContentModerationCommand(input);
56
56
  * const response = await client.send(command);
57
+ * // { // StartContentModerationResponse
58
+ * // JobId: "STRING_VALUE",
59
+ * // };
60
+ *
57
61
  * ```
58
62
  *
59
63
  * @param StartContentModerationCommandInput - {@link StartContentModerationCommandInput}
@@ -95,6 +99,8 @@ export interface StartContentModerationCommandOutput extends StartContentModerat
95
99
  * <p>The file size or duration of the supplied media is too large. The maximum file size is 10GB.
96
100
  * The maximum duration is 6 hours. </p>
97
101
  *
102
+ * @throws {@link RekognitionServiceException}
103
+ * <p>Base exception class for all service exceptions from Rekognition service.</p>
98
104
  *
99
105
  */
100
106
  export declare class StartContentModerationCommand extends $Command<StartContentModerationCommandInput, StartContentModerationCommandOutput, RekognitionClientResolvedConfig> {
@@ -55,6 +55,10 @@ export interface StartFaceDetectionCommandOutput extends StartFaceDetectionRespo
55
55
  * };
56
56
  * const command = new StartFaceDetectionCommand(input);
57
57
  * const response = await client.send(command);
58
+ * // { // StartFaceDetectionResponse
59
+ * // JobId: "STRING_VALUE",
60
+ * // };
61
+ *
58
62
  * ```
59
63
  *
60
64
  * @param StartFaceDetectionCommandInput - {@link StartFaceDetectionCommandInput}
@@ -96,6 +100,8 @@ export interface StartFaceDetectionCommandOutput extends StartFaceDetectionRespo
96
100
  * <p>The file size or duration of the supplied media is too large. The maximum file size is 10GB.
97
101
  * The maximum duration is 6 hours. </p>
98
102
  *
103
+ * @throws {@link RekognitionServiceException}
104
+ * <p>Base exception class for all service exceptions from Rekognition service.</p>
99
105
  *
100
106
  */
101
107
  export declare class StartFaceDetectionCommand extends $Command<StartFaceDetectionCommandInput, StartFaceDetectionCommandOutput, RekognitionClientResolvedConfig> {
@@ -55,6 +55,10 @@ export interface StartFaceSearchCommandOutput extends StartFaceSearchResponse, _
55
55
  * };
56
56
  * const command = new StartFaceSearchCommand(input);
57
57
  * const response = await client.send(command);
58
+ * // { // StartFaceSearchResponse
59
+ * // JobId: "STRING_VALUE",
60
+ * // };
61
+ *
58
62
  * ```
59
63
  *
60
64
  * @param StartFaceSearchCommandInput - {@link StartFaceSearchCommandInput}
@@ -99,6 +103,8 @@ export interface StartFaceSearchCommandOutput extends StartFaceSearchResponse, _
99
103
  * <p>The file size or duration of the supplied media is too large. The maximum file size is 10GB.
100
104
  * The maximum duration is 6 hours. </p>
101
105
  *
106
+ * @throws {@link RekognitionServiceException}
107
+ * <p>Base exception class for all service exceptions from Rekognition service.</p>
102
108
  *
103
109
  */
104
110
  export declare class StartFaceSearchCommand extends $Command<StartFaceSearchCommandInput, StartFaceSearchCommandOutput, RekognitionClientResolvedConfig> {
@@ -87,6 +87,10 @@ export interface StartLabelDetectionCommandOutput extends StartLabelDetectionRes
87
87
  * };
88
88
  * const command = new StartLabelDetectionCommand(input);
89
89
  * const response = await client.send(command);
90
+ * // { // StartLabelDetectionResponse
91
+ * // JobId: "STRING_VALUE",
92
+ * // };
93
+ *
90
94
  * ```
91
95
  *
92
96
  * @param StartLabelDetectionCommandInput - {@link StartLabelDetectionCommandInput}
@@ -128,6 +132,8 @@ export interface StartLabelDetectionCommandOutput extends StartLabelDetectionRes
128
132
  * <p>The file size or duration of the supplied media is too large. The maximum file size is 10GB.
129
133
  * The maximum duration is 6 hours. </p>
130
134
  *
135
+ * @throws {@link RekognitionServiceException}
136
+ * <p>Base exception class for all service exceptions from Rekognition service.</p>
131
137
  *
132
138
  */
133
139
  export declare class StartLabelDetectionCommand extends $Command<StartLabelDetectionCommandInput, StartLabelDetectionCommandOutput, RekognitionClientResolvedConfig> {
@@ -51,6 +51,10 @@ export interface StartPersonTrackingCommandOutput extends StartPersonTrackingRes
51
51
  * };
52
52
  * const command = new StartPersonTrackingCommand(input);
53
53
  * const response = await client.send(command);
54
+ * // { // StartPersonTrackingResponse
55
+ * // JobId: "STRING_VALUE",
56
+ * // };
57
+ *
54
58
  * ```
55
59
  *
56
60
  * @param StartPersonTrackingCommandInput - {@link StartPersonTrackingCommandInput}
@@ -92,6 +96,8 @@ export interface StartPersonTrackingCommandOutput extends StartPersonTrackingRes
92
96
  * <p>The file size or duration of the supplied media is too large. The maximum file size is 10GB.
93
97
  * The maximum duration is 6 hours. </p>
94
98
  *
99
+ * @throws {@link RekognitionServiceException}
100
+ * <p>Base exception class for all service exceptions from Rekognition service.</p>
95
101
  *
96
102
  */
97
103
  export declare class StartPersonTrackingCommand extends $Command<StartPersonTrackingCommandInput, StartPersonTrackingCommandOutput, RekognitionClientResolvedConfig> {
@@ -43,6 +43,10 @@ export interface StartProjectVersionCommandOutput extends StartProjectVersionRes
43
43
  * };
44
44
  * const command = new StartProjectVersionCommand(input);
45
45
  * const response = await client.send(command);
46
+ * // { // StartProjectVersionResponse
47
+ * // Status: "TRAINING_IN_PROGRESS" || "TRAINING_COMPLETED" || "TRAINING_FAILED" || "STARTING" || "RUNNING" || "FAILED" || "STOPPING" || "STOPPED" || "DELETING" || "COPYING_IN_PROGRESS" || "COPYING_COMPLETED" || "COPYING_FAILED",
48
+ * // };
49
+ *
46
50
  * ```
47
51
  *
48
52
  * @param StartProjectVersionCommandInput - {@link StartProjectVersionCommandInput}
@@ -79,6 +83,8 @@ export interface StartProjectVersionCommandOutput extends StartProjectVersionRes
79
83
  * @throws {@link ThrottlingException} (server fault)
80
84
  * <p>Amazon Rekognition is temporarily unable to process the request. Try your call again.</p>
81
85
  *
86
+ * @throws {@link RekognitionServiceException}
87
+ * <p>Base exception class for all service exceptions from Rekognition service.</p>
82
88
  *
83
89
  */
84
90
  export declare class StartProjectVersionCommand extends $Command<StartProjectVersionCommandInput, StartProjectVersionCommandOutput, RekognitionClientResolvedConfig> {
@@ -71,6 +71,10 @@ export interface StartSegmentDetectionCommandOutput extends StartSegmentDetectio
71
71
  * };
72
72
  * const command = new StartSegmentDetectionCommand(input);
73
73
  * const response = await client.send(command);
74
+ * // { // StartSegmentDetectionResponse
75
+ * // JobId: "STRING_VALUE",
76
+ * // };
77
+ *
74
78
  * ```
75
79
  *
76
80
  * @param StartSegmentDetectionCommandInput - {@link StartSegmentDetectionCommandInput}
@@ -112,6 +116,8 @@ export interface StartSegmentDetectionCommandOutput extends StartSegmentDetectio
112
116
  * <p>The file size or duration of the supplied media is too large. The maximum file size is 10GB.
113
117
  * The maximum duration is 6 hours. </p>
114
118
  *
119
+ * @throws {@link RekognitionServiceException}
120
+ * <p>Base exception class for all service exceptions from Rekognition service.</p>
115
121
  *
116
122
  */
117
123
  export declare class StartSegmentDetectionCommand extends $Command<StartSegmentDetectionCommandInput, StartSegmentDetectionCommandOutput, RekognitionClientResolvedConfig> {
@@ -43,6 +43,10 @@ export interface StartStreamProcessorCommandOutput extends StartStreamProcessorR
43
43
  * };
44
44
  * const command = new StartStreamProcessorCommand(input);
45
45
  * const response = await client.send(command);
46
+ * // { // StartStreamProcessorResponse
47
+ * // SessionId: "STRING_VALUE",
48
+ * // };
49
+ *
46
50
  * ```
47
51
  *
48
52
  * @param StartStreamProcessorCommandInput - {@link StartStreamProcessorCommandInput}
@@ -74,6 +78,8 @@ export interface StartStreamProcessorCommandOutput extends StartStreamProcessorR
74
78
  * @throws {@link ThrottlingException} (server fault)
75
79
  * <p>Amazon Rekognition is temporarily unable to process the request. Try your call again.</p>
76
80
  *
81
+ * @throws {@link RekognitionServiceException}
82
+ * <p>Base exception class for all service exceptions from Rekognition service.</p>
77
83
  *
78
84
  */
79
85
  export declare class StartStreamProcessorCommand extends $Command<StartStreamProcessorCommandInput, StartStreamProcessorCommandOutput, RekognitionClientResolvedConfig> {
@@ -73,6 +73,10 @@ export interface StartTextDetectionCommandOutput extends StartTextDetectionRespo
73
73
  * };
74
74
  * const command = new StartTextDetectionCommand(input);
75
75
  * const response = await client.send(command);
76
+ * // { // StartTextDetectionResponse
77
+ * // JobId: "STRING_VALUE",
78
+ * // };
79
+ *
76
80
  * ```
77
81
  *
78
82
  * @param StartTextDetectionCommandInput - {@link StartTextDetectionCommandInput}
@@ -114,6 +118,8 @@ export interface StartTextDetectionCommandOutput extends StartTextDetectionRespo
114
118
  * <p>The file size or duration of the supplied media is too large. The maximum file size is 10GB.
115
119
  * The maximum duration is 6 hours. </p>
116
120
  *
121
+ * @throws {@link RekognitionServiceException}
122
+ * <p>Base exception class for all service exceptions from Rekognition service.</p>
117
123
  *
118
124
  */
119
125
  export declare class StartTextDetectionCommand extends $Command<StartTextDetectionCommandInput, StartTextDetectionCommandOutput, RekognitionClientResolvedConfig> {
@@ -33,6 +33,10 @@ export interface StopProjectVersionCommandOutput extends StopProjectVersionRespo
33
33
  * };
34
34
  * const command = new StopProjectVersionCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // StopProjectVersionResponse
37
+ * // Status: "TRAINING_IN_PROGRESS" || "TRAINING_COMPLETED" || "TRAINING_FAILED" || "STARTING" || "RUNNING" || "FAILED" || "STOPPING" || "STOPPED" || "DELETING" || "COPYING_IN_PROGRESS" || "COPYING_COMPLETED" || "COPYING_FAILED",
38
+ * // };
39
+ *
36
40
  * ```
37
41
  *
38
42
  * @param StopProjectVersionCommandInput - {@link StopProjectVersionCommandInput}
@@ -64,6 +68,8 @@ export interface StopProjectVersionCommandOutput extends StopProjectVersionRespo
64
68
  * @throws {@link ThrottlingException} (server fault)
65
69
  * <p>Amazon Rekognition is temporarily unable to process the request. Try your call again.</p>
66
70
  *
71
+ * @throws {@link RekognitionServiceException}
72
+ * <p>Base exception class for all service exceptions from Rekognition service.</p>
67
73
  *
68
74
  */
69
75
  export declare class StopProjectVersionCommand extends $Command<StopProjectVersionCommandInput, StopProjectVersionCommandOutput, RekognitionClientResolvedConfig> {
@@ -31,6 +31,8 @@ export interface StopStreamProcessorCommandOutput extends StopStreamProcessorRes
31
31
  * };
32
32
  * const command = new StopStreamProcessorCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // {};
35
+ *
34
36
  * ```
35
37
  *
36
38
  * @param StopStreamProcessorCommandInput - {@link StopStreamProcessorCommandInput}
@@ -62,6 +64,8 @@ export interface StopStreamProcessorCommandOutput extends StopStreamProcessorRes
62
64
  * @throws {@link ThrottlingException} (server fault)
63
65
  * <p>Amazon Rekognition is temporarily unable to process the request. Try your call again.</p>
64
66
  *
67
+ * @throws {@link RekognitionServiceException}
68
+ * <p>Base exception class for all service exceptions from Rekognition service.</p>
65
69
  *
66
70
  */
67
71
  export declare class StopStreamProcessorCommand extends $Command<StopStreamProcessorCommandInput, StopStreamProcessorCommandOutput, RekognitionClientResolvedConfig> {
@@ -38,6 +38,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
38
38
  * };
39
39
  * const command = new TagResourceCommand(input);
40
40
  * const response = await client.send(command);
41
+ * // {};
42
+ *
41
43
  * ```
42
44
  *
43
45
  * @param TagResourceCommandInput - {@link TagResourceCommandInput}
@@ -71,6 +73,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
71
73
  * @throws {@link ThrottlingException} (server fault)
72
74
  * <p>Amazon Rekognition is temporarily unable to process the request. Try your call again.</p>
73
75
  *
76
+ * @throws {@link RekognitionServiceException}
77
+ * <p>Base exception class for all service exceptions from Rekognition service.</p>
74
78
  *
75
79
  */
76
80
  export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, RekognitionClientResolvedConfig> {
@@ -37,6 +37,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
37
37
  * };
38
38
  * const command = new UntagResourceCommand(input);
39
39
  * const response = await client.send(command);
40
+ * // {};
41
+ *
40
42
  * ```
41
43
  *
42
44
  * @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
@@ -65,6 +67,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
65
67
  * @throws {@link ThrottlingException} (server fault)
66
68
  * <p>Amazon Rekognition is temporarily unable to process the request. Try your call again.</p>
67
69
  *
70
+ * @throws {@link RekognitionServiceException}
71
+ * <p>Base exception class for all service exceptions from Rekognition service.</p>
68
72
  *
69
73
  */
70
74
  export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, RekognitionClientResolvedConfig> {
@@ -55,6 +55,8 @@ export interface UpdateDatasetEntriesCommandOutput extends UpdateDatasetEntriesR
55
55
  * };
56
56
  * const command = new UpdateDatasetEntriesCommand(input);
57
57
  * const response = await client.send(command);
58
+ * // {};
59
+ *
58
60
  * ```
59
61
  *
60
62
  * @param UpdateDatasetEntriesCommandInput - {@link UpdateDatasetEntriesCommandInput}
@@ -91,6 +93,8 @@ export interface UpdateDatasetEntriesCommandOutput extends UpdateDatasetEntriesR
91
93
  * @throws {@link ThrottlingException} (server fault)
92
94
  * <p>Amazon Rekognition is temporarily unable to process the request. Try your call again.</p>
93
95
  *
96
+ * @throws {@link RekognitionServiceException}
97
+ * <p>Base exception class for all service exceptions from Rekognition service.</p>
94
98
  *
95
99
  */
96
100
  export declare class UpdateDatasetEntriesCommand extends $Command<UpdateDatasetEntriesCommandInput, UpdateDatasetEntriesCommandOutput, RekognitionClientResolvedConfig> {
@@ -63,6 +63,8 @@ export interface UpdateStreamProcessorCommandOutput extends UpdateStreamProcesso
63
63
  * };
64
64
  * const command = new UpdateStreamProcessorCommand(input);
65
65
  * const response = await client.send(command);
66
+ * // {};
67
+ *
66
68
  * ```
67
69
  *
68
70
  * @param UpdateStreamProcessorCommandInput - {@link UpdateStreamProcessorCommandInput}
@@ -94,6 +96,8 @@ export interface UpdateStreamProcessorCommandOutput extends UpdateStreamProcesso
94
96
  * @throws {@link ThrottlingException} (server fault)
95
97
  * <p>Amazon Rekognition is temporarily unable to process the request. Try your call again.</p>
96
98
  *
99
+ * @throws {@link RekognitionServiceException}
100
+ * <p>Base exception class for all service exceptions from Rekognition service.</p>
97
101
  *
98
102
  */
99
103
  export declare class UpdateStreamProcessorCommand extends $Command<UpdateStreamProcessorCommandInput, UpdateStreamProcessorCommandOutput, RekognitionClientResolvedConfig> {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-rekognition",
3
3
  "description": "AWS SDK for JavaScript Rekognition Client for Node.js, Browser and React Native",
4
- "version": "3.323.0",
4
+ "version": "3.326.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,33 +21,33 @@
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.321.1",
24
+ "@aws-sdk/client-sts": "3.326.0",
25
25
  "@aws-sdk/config-resolver": "3.310.0",
26
- "@aws-sdk/credential-provider-node": "3.321.1",
26
+ "@aws-sdk/credential-provider-node": "3.326.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.310.0",
28
28
  "@aws-sdk/hash-node": "3.310.0",
29
29
  "@aws-sdk/invalid-dependency": "3.310.0",
30
- "@aws-sdk/middleware-content-length": "3.310.0",
31
- "@aws-sdk/middleware-endpoint": "3.310.0",
32
- "@aws-sdk/middleware-host-header": "3.310.0",
33
- "@aws-sdk/middleware-logger": "3.310.0",
34
- "@aws-sdk/middleware-recursion-detection": "3.310.0",
35
- "@aws-sdk/middleware-retry": "3.310.0",
36
- "@aws-sdk/middleware-serde": "3.310.0",
37
- "@aws-sdk/middleware-signing": "3.310.0",
38
- "@aws-sdk/middleware-stack": "3.310.0",
39
- "@aws-sdk/middleware-user-agent": "3.319.0",
30
+ "@aws-sdk/middleware-content-length": "3.325.0",
31
+ "@aws-sdk/middleware-endpoint": "3.325.0",
32
+ "@aws-sdk/middleware-host-header": "3.325.0",
33
+ "@aws-sdk/middleware-logger": "3.325.0",
34
+ "@aws-sdk/middleware-recursion-detection": "3.325.0",
35
+ "@aws-sdk/middleware-retry": "3.325.0",
36
+ "@aws-sdk/middleware-serde": "3.325.0",
37
+ "@aws-sdk/middleware-signing": "3.325.0",
38
+ "@aws-sdk/middleware-stack": "3.325.0",
39
+ "@aws-sdk/middleware-user-agent": "3.325.0",
40
40
  "@aws-sdk/node-config-provider": "3.310.0",
41
41
  "@aws-sdk/node-http-handler": "3.321.1",
42
42
  "@aws-sdk/protocol-http": "3.310.0",
43
- "@aws-sdk/smithy-client": "3.316.0",
43
+ "@aws-sdk/smithy-client": "3.325.0",
44
44
  "@aws-sdk/types": "3.310.0",
45
45
  "@aws-sdk/url-parser": "3.310.0",
46
46
  "@aws-sdk/util-base64": "3.310.0",
47
47
  "@aws-sdk/util-body-length-browser": "3.310.0",
48
48
  "@aws-sdk/util-body-length-node": "3.310.0",
49
- "@aws-sdk/util-defaults-mode-browser": "3.316.0",
50
- "@aws-sdk/util-defaults-mode-node": "3.316.0",
49
+ "@aws-sdk/util-defaults-mode-browser": "3.325.0",
50
+ "@aws-sdk/util-defaults-mode-node": "3.325.0",
51
51
  "@aws-sdk/util-endpoints": "3.319.0",
52
52
  "@aws-sdk/util-retry": "3.310.0",
53
53
  "@aws-sdk/util-user-agent-browser": "3.310.0",