@aws-sdk/client-codeguruprofiler 3.259.0 → 3.262.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.
|
@@ -621,7 +621,7 @@ const deserializeAws_restJson1BatchGetFrameMetricDataCommand = async (output, co
|
|
|
621
621
|
});
|
|
622
622
|
const data = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await parseBody(output.body, context)), "body");
|
|
623
623
|
if (data.endTime != null) {
|
|
624
|
-
contents.endTime = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.
|
|
624
|
+
contents.endTime = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(data.endTime));
|
|
625
625
|
}
|
|
626
626
|
if (data.endTimes != null) {
|
|
627
627
|
contents.endTimes = deserializeAws_restJson1ListOfTimestamps(data.endTimes, context);
|
|
@@ -633,7 +633,7 @@ const deserializeAws_restJson1BatchGetFrameMetricDataCommand = async (output, co
|
|
|
633
633
|
contents.resolution = (0, smithy_client_1.expectString)(data.resolution);
|
|
634
634
|
}
|
|
635
635
|
if (data.startTime != null) {
|
|
636
|
-
contents.startTime = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.
|
|
636
|
+
contents.startTime = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(data.startTime));
|
|
637
637
|
}
|
|
638
638
|
if (data.unprocessedEndTimes != null) {
|
|
639
639
|
contents.unprocessedEndTimes = deserializeAws_restJson1UnprocessedEndTimeMap(data.unprocessedEndTimes, context);
|
|
@@ -1023,10 +1023,10 @@ const deserializeAws_restJson1GetRecommendationsCommand = async (output, context
|
|
|
1023
1023
|
contents.anomalies = deserializeAws_restJson1Anomalies(data.anomalies, context);
|
|
1024
1024
|
}
|
|
1025
1025
|
if (data.profileEndTime != null) {
|
|
1026
|
-
contents.profileEndTime = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.
|
|
1026
|
+
contents.profileEndTime = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(data.profileEndTime));
|
|
1027
1027
|
}
|
|
1028
1028
|
if (data.profileStartTime != null) {
|
|
1029
|
-
contents.profileStartTime = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.
|
|
1029
|
+
contents.profileStartTime = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(data.profileStartTime));
|
|
1030
1030
|
}
|
|
1031
1031
|
if (data.profilingGroupName != null) {
|
|
1032
1032
|
contents.profilingGroupName = (0, smithy_client_1.expectString)(data.profilingGroupName);
|
|
@@ -1755,7 +1755,7 @@ const deserializeAws_restJson1AgentParameters = (output, context) => {
|
|
|
1755
1755
|
const deserializeAws_restJson1AggregatedProfileTime = (output, context) => {
|
|
1756
1756
|
return {
|
|
1757
1757
|
period: (0, smithy_client_1.expectString)(output.period),
|
|
1758
|
-
start: output.start != null ? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.
|
|
1758
|
+
start: output.start != null ? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(output.start)) : undefined,
|
|
1759
1759
|
};
|
|
1760
1760
|
};
|
|
1761
1761
|
const deserializeAws_restJson1Anomalies = (output, context) => {
|
|
@@ -1778,9 +1778,9 @@ const deserializeAws_restJson1Anomaly = (output, context) => {
|
|
|
1778
1778
|
};
|
|
1779
1779
|
const deserializeAws_restJson1AnomalyInstance = (output, context) => {
|
|
1780
1780
|
return {
|
|
1781
|
-
endTime: output.endTime != null ? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.
|
|
1781
|
+
endTime: output.endTime != null ? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(output.endTime)) : undefined,
|
|
1782
1782
|
id: (0, smithy_client_1.expectString)(output.id),
|
|
1783
|
-
startTime: output.startTime != null ? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.
|
|
1783
|
+
startTime: output.startTime != null ? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(output.startTime)) : undefined,
|
|
1784
1784
|
userFeedback: output.userFeedback != null ? deserializeAws_restJson1UserFeedback(output.userFeedback, context) : undefined,
|
|
1785
1785
|
};
|
|
1786
1786
|
};
|
|
@@ -1840,8 +1840,12 @@ const deserializeAws_restJson1FindingsReportSummaries = (output, context) => {
|
|
|
1840
1840
|
const deserializeAws_restJson1FindingsReportSummary = (output, context) => {
|
|
1841
1841
|
return {
|
|
1842
1842
|
id: (0, smithy_client_1.expectString)(output.id),
|
|
1843
|
-
profileEndTime: output.profileEndTime != null
|
|
1844
|
-
|
|
1843
|
+
profileEndTime: output.profileEndTime != null
|
|
1844
|
+
? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(output.profileEndTime))
|
|
1845
|
+
: undefined,
|
|
1846
|
+
profileStartTime: output.profileStartTime != null
|
|
1847
|
+
? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(output.profileStartTime))
|
|
1848
|
+
: undefined,
|
|
1845
1849
|
profilingGroupName: (0, smithy_client_1.expectString)(output.profilingGroupName),
|
|
1846
1850
|
totalNumberOfFindings: (0, smithy_client_1.expectInt32)(output.totalNumberOfFindings),
|
|
1847
1851
|
};
|
|
@@ -1937,7 +1941,7 @@ const deserializeAws_restJson1Pattern = (output, context) => {
|
|
|
1937
1941
|
};
|
|
1938
1942
|
const deserializeAws_restJson1ProfileTime = (output, context) => {
|
|
1939
1943
|
return {
|
|
1940
|
-
start: output.start != null ? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.
|
|
1944
|
+
start: output.start != null ? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(output.start)) : undefined,
|
|
1941
1945
|
};
|
|
1942
1946
|
};
|
|
1943
1947
|
const deserializeAws_restJson1ProfileTimes = (output, context) => {
|
|
@@ -1958,13 +1962,13 @@ const deserializeAws_restJson1ProfilingGroupDescription = (output, context) => {
|
|
|
1958
1962
|
: undefined,
|
|
1959
1963
|
arn: (0, smithy_client_1.expectString)(output.arn),
|
|
1960
1964
|
computePlatform: (0, smithy_client_1.expectString)(output.computePlatform),
|
|
1961
|
-
createdAt: output.createdAt != null ? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.
|
|
1965
|
+
createdAt: output.createdAt != null ? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(output.createdAt)) : undefined,
|
|
1962
1966
|
name: (0, smithy_client_1.expectString)(output.name),
|
|
1963
1967
|
profilingStatus: output.profilingStatus != null
|
|
1964
1968
|
? deserializeAws_restJson1ProfilingStatus(output.profilingStatus, context)
|
|
1965
1969
|
: undefined,
|
|
1966
1970
|
tags: output.tags != null ? deserializeAws_restJson1TagsMap(output.tags, context) : undefined,
|
|
1967
|
-
updatedAt: output.updatedAt != null ? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.
|
|
1971
|
+
updatedAt: output.updatedAt != null ? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(output.updatedAt)) : undefined,
|
|
1968
1972
|
};
|
|
1969
1973
|
};
|
|
1970
1974
|
const deserializeAws_restJson1ProfilingGroupDescriptions = (output, context) => {
|
|
@@ -1992,10 +1996,10 @@ const deserializeAws_restJson1ProfilingGroupNames = (output, context) => {
|
|
|
1992
1996
|
const deserializeAws_restJson1ProfilingStatus = (output, context) => {
|
|
1993
1997
|
return {
|
|
1994
1998
|
latestAgentOrchestratedAt: output.latestAgentOrchestratedAt != null
|
|
1995
|
-
? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.
|
|
1999
|
+
? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(output.latestAgentOrchestratedAt))
|
|
1996
2000
|
: undefined,
|
|
1997
2001
|
latestAgentProfileReportedAt: output.latestAgentProfileReportedAt != null
|
|
1998
|
-
? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.
|
|
2002
|
+
? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(output.latestAgentProfileReportedAt))
|
|
1999
2003
|
: undefined,
|
|
2000
2004
|
latestAggregatedProfile: output.latestAggregatedProfile != null
|
|
2001
2005
|
? deserializeAws_restJson1AggregatedProfileTime(output.latestAggregatedProfile, context)
|
|
@@ -2006,9 +2010,9 @@ const deserializeAws_restJson1Recommendation = (output, context) => {
|
|
|
2006
2010
|
return {
|
|
2007
2011
|
allMatchesCount: (0, smithy_client_1.expectInt32)(output.allMatchesCount),
|
|
2008
2012
|
allMatchesSum: (0, smithy_client_1.limitedParseDouble)(output.allMatchesSum),
|
|
2009
|
-
endTime: output.endTime != null ? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.
|
|
2013
|
+
endTime: output.endTime != null ? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(output.endTime)) : undefined,
|
|
2010
2014
|
pattern: output.pattern != null ? deserializeAws_restJson1Pattern(output.pattern, context) : undefined,
|
|
2011
|
-
startTime: output.startTime != null ? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.
|
|
2015
|
+
startTime: output.startTime != null ? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(output.startTime)) : undefined,
|
|
2012
2016
|
topMatches: output.topMatches != null ? deserializeAws_restJson1Matches(output.topMatches, context) : undefined,
|
|
2013
2017
|
};
|
|
2014
2018
|
};
|
|
@@ -2078,7 +2082,7 @@ const deserializeAws_restJson1ThreadStates = (output, context) => {
|
|
|
2078
2082
|
};
|
|
2079
2083
|
const deserializeAws_restJson1TimestampStructure = (output, context) => {
|
|
2080
2084
|
return {
|
|
2081
|
-
value: output.value != null ? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.
|
|
2085
|
+
value: output.value != null ? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(output.value)) : undefined,
|
|
2082
2086
|
};
|
|
2083
2087
|
};
|
|
2084
2088
|
const deserializeAws_restJson1UnprocessedEndTimeMap = (output, context) => {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { HttpRequest as __HttpRequest } from "@aws-sdk/protocol-http";
|
|
2
|
-
import { decorateServiceException as __decorateServiceException, expectBoolean as __expectBoolean, expectInt32 as __expectInt32, expectNonNull as __expectNonNull, expectObject as __expectObject, expectString as __expectString, limitedParseDouble as __limitedParseDouble, map as __map,
|
|
2
|
+
import { decorateServiceException as __decorateServiceException, expectBoolean as __expectBoolean, expectInt32 as __expectInt32, expectNonNull as __expectNonNull, expectObject as __expectObject, expectString as __expectString, limitedParseDouble as __limitedParseDouble, map as __map, parseRfc3339DateTimeWithOffset as __parseRfc3339DateTimeWithOffset, resolvedPath as __resolvedPath, throwDefaultError, } from "@aws-sdk/smithy-client";
|
|
3
3
|
import { v4 as generateIdempotencyToken } from "uuid";
|
|
4
4
|
import { CodeGuruProfilerServiceException as __BaseException } from "../models/CodeGuruProfilerServiceException";
|
|
5
5
|
import { ConflictException, InternalServerException, ResourceNotFoundException, ServiceQuotaExceededException, ThrottlingException, ValidationException, } from "../models/models_0";
|
|
@@ -594,7 +594,7 @@ export const deserializeAws_restJson1BatchGetFrameMetricDataCommand = async (out
|
|
|
594
594
|
});
|
|
595
595
|
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
596
596
|
if (data.endTime != null) {
|
|
597
|
-
contents.endTime = __expectNonNull(
|
|
597
|
+
contents.endTime = __expectNonNull(__parseRfc3339DateTimeWithOffset(data.endTime));
|
|
598
598
|
}
|
|
599
599
|
if (data.endTimes != null) {
|
|
600
600
|
contents.endTimes = deserializeAws_restJson1ListOfTimestamps(data.endTimes, context);
|
|
@@ -606,7 +606,7 @@ export const deserializeAws_restJson1BatchGetFrameMetricDataCommand = async (out
|
|
|
606
606
|
contents.resolution = __expectString(data.resolution);
|
|
607
607
|
}
|
|
608
608
|
if (data.startTime != null) {
|
|
609
|
-
contents.startTime = __expectNonNull(
|
|
609
|
+
contents.startTime = __expectNonNull(__parseRfc3339DateTimeWithOffset(data.startTime));
|
|
610
610
|
}
|
|
611
611
|
if (data.unprocessedEndTimes != null) {
|
|
612
612
|
contents.unprocessedEndTimes = deserializeAws_restJson1UnprocessedEndTimeMap(data.unprocessedEndTimes, context);
|
|
@@ -987,10 +987,10 @@ export const deserializeAws_restJson1GetRecommendationsCommand = async (output,
|
|
|
987
987
|
contents.anomalies = deserializeAws_restJson1Anomalies(data.anomalies, context);
|
|
988
988
|
}
|
|
989
989
|
if (data.profileEndTime != null) {
|
|
990
|
-
contents.profileEndTime = __expectNonNull(
|
|
990
|
+
contents.profileEndTime = __expectNonNull(__parseRfc3339DateTimeWithOffset(data.profileEndTime));
|
|
991
991
|
}
|
|
992
992
|
if (data.profileStartTime != null) {
|
|
993
|
-
contents.profileStartTime = __expectNonNull(
|
|
993
|
+
contents.profileStartTime = __expectNonNull(__parseRfc3339DateTimeWithOffset(data.profileStartTime));
|
|
994
994
|
}
|
|
995
995
|
if (data.profilingGroupName != null) {
|
|
996
996
|
contents.profilingGroupName = __expectString(data.profilingGroupName);
|
|
@@ -1706,7 +1706,7 @@ const deserializeAws_restJson1AgentParameters = (output, context) => {
|
|
|
1706
1706
|
const deserializeAws_restJson1AggregatedProfileTime = (output, context) => {
|
|
1707
1707
|
return {
|
|
1708
1708
|
period: __expectString(output.period),
|
|
1709
|
-
start: output.start != null ? __expectNonNull(
|
|
1709
|
+
start: output.start != null ? __expectNonNull(__parseRfc3339DateTimeWithOffset(output.start)) : undefined,
|
|
1710
1710
|
};
|
|
1711
1711
|
};
|
|
1712
1712
|
const deserializeAws_restJson1Anomalies = (output, context) => {
|
|
@@ -1729,9 +1729,9 @@ const deserializeAws_restJson1Anomaly = (output, context) => {
|
|
|
1729
1729
|
};
|
|
1730
1730
|
const deserializeAws_restJson1AnomalyInstance = (output, context) => {
|
|
1731
1731
|
return {
|
|
1732
|
-
endTime: output.endTime != null ? __expectNonNull(
|
|
1732
|
+
endTime: output.endTime != null ? __expectNonNull(__parseRfc3339DateTimeWithOffset(output.endTime)) : undefined,
|
|
1733
1733
|
id: __expectString(output.id),
|
|
1734
|
-
startTime: output.startTime != null ? __expectNonNull(
|
|
1734
|
+
startTime: output.startTime != null ? __expectNonNull(__parseRfc3339DateTimeWithOffset(output.startTime)) : undefined,
|
|
1735
1735
|
userFeedback: output.userFeedback != null ? deserializeAws_restJson1UserFeedback(output.userFeedback, context) : undefined,
|
|
1736
1736
|
};
|
|
1737
1737
|
};
|
|
@@ -1791,8 +1791,12 @@ const deserializeAws_restJson1FindingsReportSummaries = (output, context) => {
|
|
|
1791
1791
|
const deserializeAws_restJson1FindingsReportSummary = (output, context) => {
|
|
1792
1792
|
return {
|
|
1793
1793
|
id: __expectString(output.id),
|
|
1794
|
-
profileEndTime: output.profileEndTime != null
|
|
1795
|
-
|
|
1794
|
+
profileEndTime: output.profileEndTime != null
|
|
1795
|
+
? __expectNonNull(__parseRfc3339DateTimeWithOffset(output.profileEndTime))
|
|
1796
|
+
: undefined,
|
|
1797
|
+
profileStartTime: output.profileStartTime != null
|
|
1798
|
+
? __expectNonNull(__parseRfc3339DateTimeWithOffset(output.profileStartTime))
|
|
1799
|
+
: undefined,
|
|
1796
1800
|
profilingGroupName: __expectString(output.profilingGroupName),
|
|
1797
1801
|
totalNumberOfFindings: __expectInt32(output.totalNumberOfFindings),
|
|
1798
1802
|
};
|
|
@@ -1888,7 +1892,7 @@ const deserializeAws_restJson1Pattern = (output, context) => {
|
|
|
1888
1892
|
};
|
|
1889
1893
|
const deserializeAws_restJson1ProfileTime = (output, context) => {
|
|
1890
1894
|
return {
|
|
1891
|
-
start: output.start != null ? __expectNonNull(
|
|
1895
|
+
start: output.start != null ? __expectNonNull(__parseRfc3339DateTimeWithOffset(output.start)) : undefined,
|
|
1892
1896
|
};
|
|
1893
1897
|
};
|
|
1894
1898
|
const deserializeAws_restJson1ProfileTimes = (output, context) => {
|
|
@@ -1909,13 +1913,13 @@ const deserializeAws_restJson1ProfilingGroupDescription = (output, context) => {
|
|
|
1909
1913
|
: undefined,
|
|
1910
1914
|
arn: __expectString(output.arn),
|
|
1911
1915
|
computePlatform: __expectString(output.computePlatform),
|
|
1912
|
-
createdAt: output.createdAt != null ? __expectNonNull(
|
|
1916
|
+
createdAt: output.createdAt != null ? __expectNonNull(__parseRfc3339DateTimeWithOffset(output.createdAt)) : undefined,
|
|
1913
1917
|
name: __expectString(output.name),
|
|
1914
1918
|
profilingStatus: output.profilingStatus != null
|
|
1915
1919
|
? deserializeAws_restJson1ProfilingStatus(output.profilingStatus, context)
|
|
1916
1920
|
: undefined,
|
|
1917
1921
|
tags: output.tags != null ? deserializeAws_restJson1TagsMap(output.tags, context) : undefined,
|
|
1918
|
-
updatedAt: output.updatedAt != null ? __expectNonNull(
|
|
1922
|
+
updatedAt: output.updatedAt != null ? __expectNonNull(__parseRfc3339DateTimeWithOffset(output.updatedAt)) : undefined,
|
|
1919
1923
|
};
|
|
1920
1924
|
};
|
|
1921
1925
|
const deserializeAws_restJson1ProfilingGroupDescriptions = (output, context) => {
|
|
@@ -1943,10 +1947,10 @@ const deserializeAws_restJson1ProfilingGroupNames = (output, context) => {
|
|
|
1943
1947
|
const deserializeAws_restJson1ProfilingStatus = (output, context) => {
|
|
1944
1948
|
return {
|
|
1945
1949
|
latestAgentOrchestratedAt: output.latestAgentOrchestratedAt != null
|
|
1946
|
-
? __expectNonNull(
|
|
1950
|
+
? __expectNonNull(__parseRfc3339DateTimeWithOffset(output.latestAgentOrchestratedAt))
|
|
1947
1951
|
: undefined,
|
|
1948
1952
|
latestAgentProfileReportedAt: output.latestAgentProfileReportedAt != null
|
|
1949
|
-
? __expectNonNull(
|
|
1953
|
+
? __expectNonNull(__parseRfc3339DateTimeWithOffset(output.latestAgentProfileReportedAt))
|
|
1950
1954
|
: undefined,
|
|
1951
1955
|
latestAggregatedProfile: output.latestAggregatedProfile != null
|
|
1952
1956
|
? deserializeAws_restJson1AggregatedProfileTime(output.latestAggregatedProfile, context)
|
|
@@ -1957,9 +1961,9 @@ const deserializeAws_restJson1Recommendation = (output, context) => {
|
|
|
1957
1961
|
return {
|
|
1958
1962
|
allMatchesCount: __expectInt32(output.allMatchesCount),
|
|
1959
1963
|
allMatchesSum: __limitedParseDouble(output.allMatchesSum),
|
|
1960
|
-
endTime: output.endTime != null ? __expectNonNull(
|
|
1964
|
+
endTime: output.endTime != null ? __expectNonNull(__parseRfc3339DateTimeWithOffset(output.endTime)) : undefined,
|
|
1961
1965
|
pattern: output.pattern != null ? deserializeAws_restJson1Pattern(output.pattern, context) : undefined,
|
|
1962
|
-
startTime: output.startTime != null ? __expectNonNull(
|
|
1966
|
+
startTime: output.startTime != null ? __expectNonNull(__parseRfc3339DateTimeWithOffset(output.startTime)) : undefined,
|
|
1963
1967
|
topMatches: output.topMatches != null ? deserializeAws_restJson1Matches(output.topMatches, context) : undefined,
|
|
1964
1968
|
};
|
|
1965
1969
|
};
|
|
@@ -2029,7 +2033,7 @@ const deserializeAws_restJson1ThreadStates = (output, context) => {
|
|
|
2029
2033
|
};
|
|
2030
2034
|
const deserializeAws_restJson1TimestampStructure = (output, context) => {
|
|
2031
2035
|
return {
|
|
2032
|
-
value: output.value != null ? __expectNonNull(
|
|
2036
|
+
value: output.value != null ? __expectNonNull(__parseRfc3339DateTimeWithOffset(output.value)) : undefined,
|
|
2033
2037
|
};
|
|
2034
2038
|
};
|
|
2035
2039
|
const deserializeAws_restJson1UnprocessedEndTimeMap = (output, context) => {
|
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.262.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",
|
|
@@ -20,9 +20,9 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.262.0",
|
|
24
24
|
"@aws-sdk/config-resolver": "3.259.0",
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.261.0",
|
|
26
26
|
"@aws-sdk/fetch-http-handler": "3.257.0",
|
|
27
27
|
"@aws-sdk/hash-node": "3.257.0",
|
|
28
28
|
"@aws-sdk/invalid-dependency": "3.257.0",
|
|
@@ -39,14 +39,14 @@
|
|
|
39
39
|
"@aws-sdk/node-config-provider": "3.259.0",
|
|
40
40
|
"@aws-sdk/node-http-handler": "3.257.0",
|
|
41
41
|
"@aws-sdk/protocol-http": "3.257.0",
|
|
42
|
-
"@aws-sdk/smithy-client": "3.
|
|
42
|
+
"@aws-sdk/smithy-client": "3.261.0",
|
|
43
43
|
"@aws-sdk/types": "3.257.0",
|
|
44
44
|
"@aws-sdk/url-parser": "3.257.0",
|
|
45
45
|
"@aws-sdk/util-base64": "3.208.0",
|
|
46
46
|
"@aws-sdk/util-body-length-browser": "3.188.0",
|
|
47
47
|
"@aws-sdk/util-body-length-node": "3.208.0",
|
|
48
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
48
|
+
"@aws-sdk/util-defaults-mode-browser": "3.261.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-node": "3.261.0",
|
|
50
50
|
"@aws-sdk/util-endpoints": "3.257.0",
|
|
51
51
|
"@aws-sdk/util-retry": "3.257.0",
|
|
52
52
|
"@aws-sdk/util-user-agent-browser": "3.257.0",
|