@aws-sdk/client-codeguruprofiler 3.300.0 → 3.301.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/dist-types/commands/AddNotificationChannelsCommand.d.ts +4 -4
- package/dist-types/commands/BatchGetFrameMetricDataCommand.d.ts +4 -4
- package/dist-types/commands/ConfigureAgentCommand.d.ts +2 -2
- package/dist-types/commands/CreateProfilingGroupCommand.d.ts +3 -3
- package/dist-types/commands/DeleteProfilingGroupCommand.d.ts +1 -1
- package/dist-types/commands/DescribeProfilingGroupCommand.d.ts +1 -1
- package/dist-types/commands/GetFindingsReportAccountSummaryCommand.d.ts +1 -1
- package/dist-types/commands/GetNotificationConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/GetPolicyCommand.d.ts +1 -1
- package/dist-types/commands/GetProfileCommand.d.ts +1 -1
- package/dist-types/commands/GetRecommendationsCommand.d.ts +1 -1
- package/dist-types/commands/ListFindingsReportsCommand.d.ts +1 -1
- package/dist-types/commands/ListProfileTimesCommand.d.ts +1 -1
- package/dist-types/commands/ListProfilingGroupsCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/PostAgentProfileCommand.d.ts +1 -1
- package/dist-types/commands/PutPermissionCommand.d.ts +2 -2
- package/dist-types/commands/RemoveNotificationChannelCommand.d.ts +1 -1
- package/dist-types/commands/RemovePermissionCommand.d.ts +1 -1
- package/dist-types/commands/SubmitFeedbackCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateProfilingGroupCommand.d.ts +2 -2
- package/package.json +3 -3
|
@@ -26,13 +26,13 @@ export interface AddNotificationChannelsCommandOutput extends AddNotificationCha
|
|
|
26
26
|
* import { CodeGuruProfilerClient, AddNotificationChannelsCommand } from "@aws-sdk/client-codeguruprofiler"; // ES Modules import
|
|
27
27
|
* // const { CodeGuruProfilerClient, AddNotificationChannelsCommand } = require("@aws-sdk/client-codeguruprofiler"); // CommonJS import
|
|
28
28
|
* const client = new CodeGuruProfilerClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // AddNotificationChannelsRequest
|
|
30
30
|
* profilingGroupName: "STRING_VALUE", // required
|
|
31
|
-
* channels: [ // required
|
|
32
|
-
* {
|
|
31
|
+
* channels: [ // Channels // required
|
|
32
|
+
* { // Channel
|
|
33
33
|
* id: "STRING_VALUE",
|
|
34
34
|
* uri: "STRING_VALUE", // required
|
|
35
|
-
* eventPublishers: [ // required
|
|
35
|
+
* eventPublishers: [ // EventPublishers // required
|
|
36
36
|
* "STRING_VALUE",
|
|
37
37
|
* ],
|
|
38
38
|
* },
|
|
@@ -28,17 +28,17 @@ export interface BatchGetFrameMetricDataCommandOutput extends BatchGetFrameMetri
|
|
|
28
28
|
* import { CodeGuruProfilerClient, BatchGetFrameMetricDataCommand } from "@aws-sdk/client-codeguruprofiler"; // ES Modules import
|
|
29
29
|
* // const { CodeGuruProfilerClient, BatchGetFrameMetricDataCommand } = require("@aws-sdk/client-codeguruprofiler"); // CommonJS import
|
|
30
30
|
* const client = new CodeGuruProfilerClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // BatchGetFrameMetricDataRequest
|
|
32
32
|
* profilingGroupName: "STRING_VALUE", // required
|
|
33
33
|
* startTime: new Date("TIMESTAMP"),
|
|
34
34
|
* endTime: new Date("TIMESTAMP"),
|
|
35
35
|
* period: "STRING_VALUE",
|
|
36
36
|
* targetResolution: "STRING_VALUE",
|
|
37
|
-
* frameMetrics: [
|
|
38
|
-
* {
|
|
37
|
+
* frameMetrics: [ // FrameMetrics
|
|
38
|
+
* { // FrameMetric
|
|
39
39
|
* frameName: "STRING_VALUE", // required
|
|
40
40
|
* type: "STRING_VALUE", // required
|
|
41
|
-
* threadStates: [ // required
|
|
41
|
+
* threadStates: [ // ThreadStates // required
|
|
42
42
|
* "STRING_VALUE",
|
|
43
43
|
* ],
|
|
44
44
|
* },
|
|
@@ -30,10 +30,10 @@ export interface ConfigureAgentCommandOutput extends ConfigureAgentResponse, __M
|
|
|
30
30
|
* import { CodeGuruProfilerClient, ConfigureAgentCommand } from "@aws-sdk/client-codeguruprofiler"; // ES Modules import
|
|
31
31
|
* // const { CodeGuruProfilerClient, ConfigureAgentCommand } = require("@aws-sdk/client-codeguruprofiler"); // CommonJS import
|
|
32
32
|
* const client = new CodeGuruProfilerClient(config);
|
|
33
|
-
* const input = {
|
|
33
|
+
* const input = { // ConfigureAgentRequest
|
|
34
34
|
* profilingGroupName: "STRING_VALUE", // required
|
|
35
35
|
* fleetInstanceId: "STRING_VALUE",
|
|
36
|
-
* metadata: {
|
|
36
|
+
* metadata: { // Metadata
|
|
37
37
|
* "<keys>": "STRING_VALUE",
|
|
38
38
|
* },
|
|
39
39
|
* };
|
|
@@ -26,14 +26,14 @@ export interface CreateProfilingGroupCommandOutput extends CreateProfilingGroupR
|
|
|
26
26
|
* import { CodeGuruProfilerClient, CreateProfilingGroupCommand } from "@aws-sdk/client-codeguruprofiler"; // ES Modules import
|
|
27
27
|
* // const { CodeGuruProfilerClient, CreateProfilingGroupCommand } = require("@aws-sdk/client-codeguruprofiler"); // CommonJS import
|
|
28
28
|
* const client = new CodeGuruProfilerClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // CreateProfilingGroupRequest
|
|
30
30
|
* profilingGroupName: "STRING_VALUE", // required
|
|
31
31
|
* computePlatform: "STRING_VALUE",
|
|
32
32
|
* clientToken: "STRING_VALUE", // required
|
|
33
|
-
* agentOrchestrationConfig: {
|
|
33
|
+
* agentOrchestrationConfig: { // AgentOrchestrationConfig
|
|
34
34
|
* profilingEnabled: true || false, // required
|
|
35
35
|
* },
|
|
36
|
-
* tags: {
|
|
36
|
+
* tags: { // TagsMap
|
|
37
37
|
* "<keys>": "STRING_VALUE",
|
|
38
38
|
* },
|
|
39
39
|
* };
|
|
@@ -26,7 +26,7 @@ export interface DeleteProfilingGroupCommandOutput extends DeleteProfilingGroupR
|
|
|
26
26
|
* import { CodeGuruProfilerClient, DeleteProfilingGroupCommand } from "@aws-sdk/client-codeguruprofiler"; // ES Modules import
|
|
27
27
|
* // const { CodeGuruProfilerClient, DeleteProfilingGroupCommand } = require("@aws-sdk/client-codeguruprofiler"); // CommonJS import
|
|
28
28
|
* const client = new CodeGuruProfilerClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeleteProfilingGroupRequest
|
|
30
30
|
* profilingGroupName: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteProfilingGroupCommand(input);
|
|
@@ -31,7 +31,7 @@ export interface DescribeProfilingGroupCommandOutput extends DescribeProfilingGr
|
|
|
31
31
|
* import { CodeGuruProfilerClient, DescribeProfilingGroupCommand } from "@aws-sdk/client-codeguruprofiler"; // ES Modules import
|
|
32
32
|
* // const { CodeGuruProfilerClient, DescribeProfilingGroupCommand } = require("@aws-sdk/client-codeguruprofiler"); // CommonJS import
|
|
33
33
|
* const client = new CodeGuruProfilerClient(config);
|
|
34
|
-
* const input = {
|
|
34
|
+
* const input = { // DescribeProfilingGroupRequest
|
|
35
35
|
* profilingGroupName: "STRING_VALUE", // required
|
|
36
36
|
* };
|
|
37
37
|
* const command = new DescribeProfilingGroupCommand(input);
|
|
@@ -32,7 +32,7 @@ export interface GetFindingsReportAccountSummaryCommandOutput extends GetFinding
|
|
|
32
32
|
* import { CodeGuruProfilerClient, GetFindingsReportAccountSummaryCommand } from "@aws-sdk/client-codeguruprofiler"; // ES Modules import
|
|
33
33
|
* // const { CodeGuruProfilerClient, GetFindingsReportAccountSummaryCommand } = require("@aws-sdk/client-codeguruprofiler"); // CommonJS import
|
|
34
34
|
* const client = new CodeGuruProfilerClient(config);
|
|
35
|
-
* const input = {
|
|
35
|
+
* const input = { // GetFindingsReportAccountSummaryRequest
|
|
36
36
|
* nextToken: "STRING_VALUE",
|
|
37
37
|
* maxResults: Number("int"),
|
|
38
38
|
* dailyReportsOnly: true || false,
|
|
@@ -26,7 +26,7 @@ export interface GetNotificationConfigurationCommandOutput extends GetNotificati
|
|
|
26
26
|
* import { CodeGuruProfilerClient, GetNotificationConfigurationCommand } from "@aws-sdk/client-codeguruprofiler"; // ES Modules import
|
|
27
27
|
* // const { CodeGuruProfilerClient, GetNotificationConfigurationCommand } = require("@aws-sdk/client-codeguruprofiler"); // CommonJS import
|
|
28
28
|
* const client = new CodeGuruProfilerClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // GetNotificationConfigurationRequest
|
|
30
30
|
* profilingGroupName: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetNotificationConfigurationCommand(input);
|
|
@@ -28,7 +28,7 @@ export interface GetPolicyCommandOutput extends GetPolicyResponse, __MetadataBea
|
|
|
28
28
|
* import { CodeGuruProfilerClient, GetPolicyCommand } from "@aws-sdk/client-codeguruprofiler"; // ES Modules import
|
|
29
29
|
* // const { CodeGuruProfilerClient, GetPolicyCommand } = require("@aws-sdk/client-codeguruprofiler"); // CommonJS import
|
|
30
30
|
* const client = new CodeGuruProfilerClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // GetPolicyRequest
|
|
32
32
|
* profilingGroupName: "STRING_VALUE", // required
|
|
33
33
|
* };
|
|
34
34
|
* const command = new GetPolicyCommand(input);
|
|
@@ -97,7 +97,7 @@ export interface GetProfileCommandOutput extends GetProfileResponse, __MetadataB
|
|
|
97
97
|
* import { CodeGuruProfilerClient, GetProfileCommand } from "@aws-sdk/client-codeguruprofiler"; // ES Modules import
|
|
98
98
|
* // const { CodeGuruProfilerClient, GetProfileCommand } = require("@aws-sdk/client-codeguruprofiler"); // CommonJS import
|
|
99
99
|
* const client = new CodeGuruProfilerClient(config);
|
|
100
|
-
* const input = {
|
|
100
|
+
* const input = { // GetProfileRequest
|
|
101
101
|
* profilingGroupName: "STRING_VALUE", // required
|
|
102
102
|
* startTime: new Date("TIMESTAMP"),
|
|
103
103
|
* period: "STRING_VALUE",
|
|
@@ -37,7 +37,7 @@ export interface GetRecommendationsCommandOutput extends GetRecommendationsRespo
|
|
|
37
37
|
* import { CodeGuruProfilerClient, GetRecommendationsCommand } from "@aws-sdk/client-codeguruprofiler"; // ES Modules import
|
|
38
38
|
* // const { CodeGuruProfilerClient, GetRecommendationsCommand } = require("@aws-sdk/client-codeguruprofiler"); // CommonJS import
|
|
39
39
|
* const client = new CodeGuruProfilerClient(config);
|
|
40
|
-
* const input = {
|
|
40
|
+
* const input = { // GetRecommendationsRequest
|
|
41
41
|
* profilingGroupName: "STRING_VALUE", // required
|
|
42
42
|
* startTime: new Date("TIMESTAMP"), // required
|
|
43
43
|
* endTime: new Date("TIMESTAMP"), // required
|
|
@@ -26,7 +26,7 @@ export interface ListFindingsReportsCommandOutput extends ListFindingsReportsRes
|
|
|
26
26
|
* import { CodeGuruProfilerClient, ListFindingsReportsCommand } from "@aws-sdk/client-codeguruprofiler"; // ES Modules import
|
|
27
27
|
* // const { CodeGuruProfilerClient, ListFindingsReportsCommand } = require("@aws-sdk/client-codeguruprofiler"); // CommonJS import
|
|
28
28
|
* const client = new CodeGuruProfilerClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListFindingsReportsRequest
|
|
30
30
|
* profilingGroupName: "STRING_VALUE", // required
|
|
31
31
|
* startTime: new Date("TIMESTAMP"), // required
|
|
32
32
|
* endTime: new Date("TIMESTAMP"), // required
|
|
@@ -27,7 +27,7 @@ export interface ListProfileTimesCommandOutput extends ListProfileTimesResponse,
|
|
|
27
27
|
* import { CodeGuruProfilerClient, ListProfileTimesCommand } from "@aws-sdk/client-codeguruprofiler"; // ES Modules import
|
|
28
28
|
* // const { CodeGuruProfilerClient, ListProfileTimesCommand } = require("@aws-sdk/client-codeguruprofiler"); // CommonJS import
|
|
29
29
|
* const client = new CodeGuruProfilerClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // ListProfileTimesRequest
|
|
31
31
|
* profilingGroupName: "STRING_VALUE", // required
|
|
32
32
|
* startTime: new Date("TIMESTAMP"), // required
|
|
33
33
|
* endTime: new Date("TIMESTAMP"), // required
|
|
@@ -32,7 +32,7 @@ export interface ListProfilingGroupsCommandOutput extends ListProfilingGroupsRes
|
|
|
32
32
|
* import { CodeGuruProfilerClient, ListProfilingGroupsCommand } from "@aws-sdk/client-codeguruprofiler"; // ES Modules import
|
|
33
33
|
* // const { CodeGuruProfilerClient, ListProfilingGroupsCommand } = require("@aws-sdk/client-codeguruprofiler"); // CommonJS import
|
|
34
34
|
* const client = new CodeGuruProfilerClient(config);
|
|
35
|
-
* const input = {
|
|
35
|
+
* const input = { // ListProfilingGroupsRequest
|
|
36
36
|
* nextToken: "STRING_VALUE",
|
|
37
37
|
* maxResults: Number("int"),
|
|
38
38
|
* includeDescription: true || false,
|
|
@@ -28,7 +28,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
28
28
|
* import { CodeGuruProfilerClient, ListTagsForResourceCommand } from "@aws-sdk/client-codeguruprofiler"; // ES Modules import
|
|
29
29
|
* // const { CodeGuruProfilerClient, ListTagsForResourceCommand } = require("@aws-sdk/client-codeguruprofiler"); // CommonJS import
|
|
30
30
|
* const client = new CodeGuruProfilerClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // ListTagsForResourceRequest
|
|
32
32
|
* resourceArn: "STRING_VALUE", // required
|
|
33
33
|
* };
|
|
34
34
|
* const command = new ListTagsForResourceCommand(input);
|
|
@@ -32,7 +32,7 @@ export interface PostAgentProfileCommandOutput extends PostAgentProfileResponse,
|
|
|
32
32
|
* import { CodeGuruProfilerClient, PostAgentProfileCommand } from "@aws-sdk/client-codeguruprofiler"; // ES Modules import
|
|
33
33
|
* // const { CodeGuruProfilerClient, PostAgentProfileCommand } = require("@aws-sdk/client-codeguruprofiler"); // CommonJS import
|
|
34
34
|
* const client = new CodeGuruProfilerClient(config);
|
|
35
|
-
* const input = {
|
|
35
|
+
* const input = { // PostAgentProfileRequest
|
|
36
36
|
* profilingGroupName: "STRING_VALUE", // required
|
|
37
37
|
* agentProfile: "BLOB_VALUE", // required
|
|
38
38
|
* profileToken: "STRING_VALUE",
|
|
@@ -51,10 +51,10 @@ export interface PutPermissionCommandOutput extends PutPermissionResponse, __Met
|
|
|
51
51
|
* import { CodeGuruProfilerClient, PutPermissionCommand } from "@aws-sdk/client-codeguruprofiler"; // ES Modules import
|
|
52
52
|
* // const { CodeGuruProfilerClient, PutPermissionCommand } = require("@aws-sdk/client-codeguruprofiler"); // CommonJS import
|
|
53
53
|
* const client = new CodeGuruProfilerClient(config);
|
|
54
|
-
* const input = {
|
|
54
|
+
* const input = { // PutPermissionRequest
|
|
55
55
|
* profilingGroupName: "STRING_VALUE", // required
|
|
56
56
|
* actionGroup: "STRING_VALUE", // required
|
|
57
|
-
* principals: [ // required
|
|
57
|
+
* principals: [ // Principals // required
|
|
58
58
|
* "STRING_VALUE",
|
|
59
59
|
* ],
|
|
60
60
|
* revisionId: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ export interface RemoveNotificationChannelCommandOutput extends RemoveNotificati
|
|
|
26
26
|
* import { CodeGuruProfilerClient, RemoveNotificationChannelCommand } from "@aws-sdk/client-codeguruprofiler"; // ES Modules import
|
|
27
27
|
* // const { CodeGuruProfilerClient, RemoveNotificationChannelCommand } = require("@aws-sdk/client-codeguruprofiler"); // CommonJS import
|
|
28
28
|
* const client = new CodeGuruProfilerClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // RemoveNotificationChannelRequest
|
|
30
30
|
* profilingGroupName: "STRING_VALUE", // required
|
|
31
31
|
* channelId: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
@@ -34,7 +34,7 @@ export interface RemovePermissionCommandOutput extends RemovePermissionResponse,
|
|
|
34
34
|
* import { CodeGuruProfilerClient, RemovePermissionCommand } from "@aws-sdk/client-codeguruprofiler"; // ES Modules import
|
|
35
35
|
* // const { CodeGuruProfilerClient, RemovePermissionCommand } = require("@aws-sdk/client-codeguruprofiler"); // CommonJS import
|
|
36
36
|
* const client = new CodeGuruProfilerClient(config);
|
|
37
|
-
* const input = {
|
|
37
|
+
* const input = { // RemovePermissionRequest
|
|
38
38
|
* profilingGroupName: "STRING_VALUE", // required
|
|
39
39
|
* actionGroup: "STRING_VALUE", // required
|
|
40
40
|
* revisionId: "STRING_VALUE", // required
|
|
@@ -27,7 +27,7 @@ export interface SubmitFeedbackCommandOutput extends SubmitFeedbackResponse, __M
|
|
|
27
27
|
* import { CodeGuruProfilerClient, SubmitFeedbackCommand } from "@aws-sdk/client-codeguruprofiler"; // ES Modules import
|
|
28
28
|
* // const { CodeGuruProfilerClient, SubmitFeedbackCommand } = require("@aws-sdk/client-codeguruprofiler"); // CommonJS import
|
|
29
29
|
* const client = new CodeGuruProfilerClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // SubmitFeedbackRequest
|
|
31
31
|
* profilingGroupName: "STRING_VALUE", // required
|
|
32
32
|
* anomalyInstanceId: "STRING_VALUE", // required
|
|
33
33
|
* type: "STRING_VALUE", // required
|
|
@@ -28,9 +28,9 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
28
28
|
* import { CodeGuruProfilerClient, TagResourceCommand } from "@aws-sdk/client-codeguruprofiler"; // ES Modules import
|
|
29
29
|
* // const { CodeGuruProfilerClient, TagResourceCommand } = require("@aws-sdk/client-codeguruprofiler"); // CommonJS import
|
|
30
30
|
* const client = new CodeGuruProfilerClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // TagResourceRequest
|
|
32
32
|
* resourceArn: "STRING_VALUE", // required
|
|
33
|
-
* tags: { // required
|
|
33
|
+
* tags: { // TagsMap // required
|
|
34
34
|
* "<keys>": "STRING_VALUE",
|
|
35
35
|
* },
|
|
36
36
|
* };
|
|
@@ -28,9 +28,9 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
28
28
|
* import { CodeGuruProfilerClient, UntagResourceCommand } from "@aws-sdk/client-codeguruprofiler"; // ES Modules import
|
|
29
29
|
* // const { CodeGuruProfilerClient, UntagResourceCommand } = require("@aws-sdk/client-codeguruprofiler"); // CommonJS import
|
|
30
30
|
* const client = new CodeGuruProfilerClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // UntagResourceRequest
|
|
32
32
|
* resourceArn: "STRING_VALUE", // required
|
|
33
|
-
* tagKeys: [ // required
|
|
33
|
+
* tagKeys: [ // TagKeys // required
|
|
34
34
|
* "STRING_VALUE",
|
|
35
35
|
* ],
|
|
36
36
|
* };
|
|
@@ -26,9 +26,9 @@ export interface UpdateProfilingGroupCommandOutput extends UpdateProfilingGroupR
|
|
|
26
26
|
* import { CodeGuruProfilerClient, UpdateProfilingGroupCommand } from "@aws-sdk/client-codeguruprofiler"; // ES Modules import
|
|
27
27
|
* // const { CodeGuruProfilerClient, UpdateProfilingGroupCommand } = require("@aws-sdk/client-codeguruprofiler"); // CommonJS import
|
|
28
28
|
* const client = new CodeGuruProfilerClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UpdateProfilingGroupRequest
|
|
30
30
|
* profilingGroupName: "STRING_VALUE", // required
|
|
31
|
-
* agentOrchestrationConfig: {
|
|
31
|
+
* agentOrchestrationConfig: { // AgentOrchestrationConfig
|
|
32
32
|
* profilingEnabled: true || false, // required
|
|
33
33
|
* },
|
|
34
34
|
* };
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-codeguruprofiler",
|
|
3
3
|
"description": "AWS SDK for JavaScript Codeguruprofiler Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.301.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,9 +21,9 @@
|
|
|
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.
|
|
24
|
+
"@aws-sdk/client-sts": "3.301.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.300.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.301.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.296.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.296.0",
|