@aws-sdk/client-synthetics 3.817.0 → 3.821.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-cjs/index.js +7 -0
- package/dist-es/models/models_0.js +5 -0
- package/dist-types/commands/CreateCanaryCommand.d.ts +2 -0
- package/dist-types/commands/DescribeCanariesCommand.d.ts +1 -0
- package/dist-types/commands/DescribeCanariesLastRunCommand.d.ts +1 -0
- package/dist-types/commands/GetCanaryCommand.d.ts +1 -0
- package/dist-types/commands/GetCanaryRunsCommand.d.ts +1 -0
- package/dist-types/commands/StartCanaryDryRunCommand.d.ts +1 -0
- package/dist-types/commands/UpdateCanaryCommand.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +51 -17
- package/dist-types/ts3.4/models/models_0.d.ts +10 -0
- package/package.json +33 -33
package/dist-cjs/index.js
CHANGED
|
@@ -26,6 +26,7 @@ __export(index_exports, {
|
|
|
26
26
|
BadRequestException: () => BadRequestException,
|
|
27
27
|
CanaryRunState: () => CanaryRunState,
|
|
28
28
|
CanaryRunStateReasonCode: () => CanaryRunStateReasonCode,
|
|
29
|
+
CanaryRunTestResult: () => CanaryRunTestResult,
|
|
29
30
|
CanaryState: () => CanaryState,
|
|
30
31
|
CanaryStateReasonCode: () => CanaryStateReasonCode,
|
|
31
32
|
ConflictException: () => ConflictException,
|
|
@@ -428,6 +429,11 @@ var CanaryRunStateReasonCode = {
|
|
|
428
429
|
CANARY_FAILURE: "CANARY_FAILURE",
|
|
429
430
|
EXECUTION_FAILURE: "EXECUTION_FAILURE"
|
|
430
431
|
};
|
|
432
|
+
var CanaryRunTestResult = {
|
|
433
|
+
FAILED: "FAILED",
|
|
434
|
+
PASSED: "PASSED",
|
|
435
|
+
UNKNOWN: "UNKNOWN"
|
|
436
|
+
};
|
|
431
437
|
var ResourceToTag = {
|
|
432
438
|
LAMBDA_FUNCTION: "lambda-function"
|
|
433
439
|
};
|
|
@@ -1891,6 +1897,7 @@ var paginateListGroups = (0, import_core.createPaginator)(SyntheticsClient, List
|
|
|
1891
1897
|
CanaryStateReasonCode,
|
|
1892
1898
|
CanaryRunState,
|
|
1893
1899
|
CanaryRunStateReasonCode,
|
|
1900
|
+
CanaryRunTestResult,
|
|
1894
1901
|
ResourceToTag,
|
|
1895
1902
|
RequestEntityTooLargeException,
|
|
1896
1903
|
RunType,
|
|
@@ -139,6 +139,11 @@ export const CanaryRunStateReasonCode = {
|
|
|
139
139
|
CANARY_FAILURE: "CANARY_FAILURE",
|
|
140
140
|
EXECUTION_FAILURE: "EXECUTION_FAILURE",
|
|
141
141
|
};
|
|
142
|
+
export const CanaryRunTestResult = {
|
|
143
|
+
FAILED: "FAILED",
|
|
144
|
+
PASSED: "PASSED",
|
|
145
|
+
UNKNOWN: "UNKNOWN",
|
|
146
|
+
};
|
|
142
147
|
export const ResourceToTag = {
|
|
143
148
|
LAMBDA_FUNCTION: "lambda-function",
|
|
144
149
|
};
|
|
@@ -72,6 +72,7 @@ declare const CreateCanaryCommand_base: {
|
|
|
72
72
|
* EnvironmentVariables: { // EnvironmentVariablesMap
|
|
73
73
|
* "<keys>": "STRING_VALUE",
|
|
74
74
|
* },
|
|
75
|
+
* EphemeralStorage: Number("int"),
|
|
75
76
|
* },
|
|
76
77
|
* SuccessRetentionPeriodInDays: Number("int"),
|
|
77
78
|
* FailureRetentionPeriodInDays: Number("int"),
|
|
@@ -121,6 +122,7 @@ declare const CreateCanaryCommand_base: {
|
|
|
121
122
|
* // TimeoutInSeconds: Number("int"),
|
|
122
123
|
* // MemoryInMB: Number("int"),
|
|
123
124
|
* // ActiveTracing: true || false,
|
|
125
|
+
* // EphemeralStorage: Number("int"),
|
|
124
126
|
* // },
|
|
125
127
|
* // SuccessRetentionPeriodInDays: Number("int"),
|
|
126
128
|
* // FailureRetentionPeriodInDays: Number("int"),
|
|
@@ -73,6 +73,7 @@ declare const DescribeCanariesCommand_base: {
|
|
|
73
73
|
* // TimeoutInSeconds: Number("int"),
|
|
74
74
|
* // MemoryInMB: Number("int"),
|
|
75
75
|
* // ActiveTracing: true || false,
|
|
76
|
+
* // EphemeralStorage: Number("int"),
|
|
76
77
|
* // },
|
|
77
78
|
* // SuccessRetentionPeriodInDays: Number("int"),
|
|
78
79
|
* // FailureRetentionPeriodInDays: Number("int"),
|
|
@@ -64,6 +64,7 @@ declare const DescribeCanariesLastRunCommand_base: {
|
|
|
64
64
|
* // State: "RUNNING" || "PASSED" || "FAILED",
|
|
65
65
|
* // StateReason: "STRING_VALUE",
|
|
66
66
|
* // StateReasonCode: "CANARY_FAILURE" || "EXECUTION_FAILURE",
|
|
67
|
+
* // TestResult: "PASSED" || "FAILED" || "UNKNOWN",
|
|
67
68
|
* // },
|
|
68
69
|
* // Timeline: { // CanaryRunTimeline
|
|
69
70
|
* // Started: new Date("TIMESTAMP"),
|
|
@@ -62,6 +62,7 @@ declare const GetCanaryCommand_base: {
|
|
|
62
62
|
* // TimeoutInSeconds: Number("int"),
|
|
63
63
|
* // MemoryInMB: Number("int"),
|
|
64
64
|
* // ActiveTracing: true || false,
|
|
65
|
+
* // EphemeralStorage: Number("int"),
|
|
65
66
|
* // },
|
|
66
67
|
* // SuccessRetentionPeriodInDays: Number("int"),
|
|
67
68
|
* // FailureRetentionPeriodInDays: Number("int"),
|
|
@@ -54,6 +54,7 @@ declare const GetCanaryRunsCommand_base: {
|
|
|
54
54
|
* // State: "RUNNING" || "PASSED" || "FAILED",
|
|
55
55
|
* // StateReason: "STRING_VALUE",
|
|
56
56
|
* // StateReasonCode: "CANARY_FAILURE" || "EXECUTION_FAILURE",
|
|
57
|
+
* // TestResult: "PASSED" || "FAILED" || "UNKNOWN",
|
|
57
58
|
* // },
|
|
58
59
|
* // Timeline: { // CanaryRunTimeline
|
|
59
60
|
* // Started: new Date("TIMESTAMP"),
|
|
@@ -66,6 +66,7 @@ declare const UpdateCanaryCommand_base: {
|
|
|
66
66
|
* EnvironmentVariables: { // EnvironmentVariablesMap
|
|
67
67
|
* "<keys>": "STRING_VALUE",
|
|
68
68
|
* },
|
|
69
|
+
* EphemeralStorage: Number("int"),
|
|
69
70
|
* },
|
|
70
71
|
* SuccessRetentionPeriodInDays: Number("int"),
|
|
71
72
|
* FailureRetentionPeriodInDays: Number("int"),
|
|
@@ -268,6 +268,11 @@ export interface CanaryRunConfigOutput {
|
|
|
268
268
|
* @public
|
|
269
269
|
*/
|
|
270
270
|
ActiveTracing?: boolean | undefined;
|
|
271
|
+
/**
|
|
272
|
+
* <p>Specifies the amount of ephemeral storage (in MB) to allocate for the canary run during execution. This temporary storage is used for storing canary run artifacts (which are uploaded to an Amazon S3 bucket at the end of the run), and any canary browser operations. This temporary storage is cleared after the run is completed. Default storage value is 1024 MB.</p>
|
|
273
|
+
* @public
|
|
274
|
+
*/
|
|
275
|
+
EphemeralStorage?: number | undefined;
|
|
271
276
|
}
|
|
272
277
|
/**
|
|
273
278
|
* <p>This structure contains information about the canary's retry configuration.</p>
|
|
@@ -614,6 +619,19 @@ export declare const CanaryRunStateReasonCode: {
|
|
|
614
619
|
* @public
|
|
615
620
|
*/
|
|
616
621
|
export type CanaryRunStateReasonCode = (typeof CanaryRunStateReasonCode)[keyof typeof CanaryRunStateReasonCode];
|
|
622
|
+
/**
|
|
623
|
+
* @public
|
|
624
|
+
* @enum
|
|
625
|
+
*/
|
|
626
|
+
export declare const CanaryRunTestResult: {
|
|
627
|
+
readonly FAILED: "FAILED";
|
|
628
|
+
readonly PASSED: "PASSED";
|
|
629
|
+
readonly UNKNOWN: "UNKNOWN";
|
|
630
|
+
};
|
|
631
|
+
/**
|
|
632
|
+
* @public
|
|
633
|
+
*/
|
|
634
|
+
export type CanaryRunTestResult = (typeof CanaryRunTestResult)[keyof typeof CanaryRunTestResult];
|
|
617
635
|
/**
|
|
618
636
|
* <p>This structure contains the status information about a canary run.</p>
|
|
619
637
|
* @public
|
|
@@ -630,12 +648,19 @@ export interface CanaryRunStatus {
|
|
|
630
648
|
*/
|
|
631
649
|
StateReason?: string | undefined;
|
|
632
650
|
/**
|
|
633
|
-
* <p>If this value is <code>CANARY_FAILURE</code>,
|
|
634
|
-
*
|
|
635
|
-
*
|
|
651
|
+
* <p>If this value is <code>CANARY_FAILURE</code>, either the canary script failed or Synthetics ran into a fatal error when running the canary. For example, a canary timeout misconfiguration setting can cause the canary to timeout before Synthetics can evaluate its status.
|
|
652
|
+
* </p>
|
|
653
|
+
* <p> If this value is <code>EXECUTION_FAILURE</code>, a non-critical failure occurred such as failing to save generated debug artifacts (for example, screenshots or har files).</p>
|
|
654
|
+
* <p>If both types of failures occurred, the <code>CANARY_FAILURE</code> takes precedence. To understand the exact error, use the <a href="https://docs.aws.amazon.com/AmazonSynthetics/latest/APIReference/API_CanaryRunStatus.html">StateReason</a> API.</p>
|
|
636
655
|
* @public
|
|
637
656
|
*/
|
|
638
657
|
StateReasonCode?: CanaryRunStateReasonCode | undefined;
|
|
658
|
+
/**
|
|
659
|
+
* <p>Specifies the status of canary script for this run. When Synthetics tries to determine the status but fails, the result is marked as <code>UNKNOWN</code>.
|
|
660
|
+
* For the overall status of canary run, see <a href="https://docs.aws.amazon.com/AmazonSynthetics/latest/APIReference/API_CanaryRunStatus.html">State</a>.</p>
|
|
661
|
+
* @public
|
|
662
|
+
*/
|
|
663
|
+
TestResult?: CanaryRunTestResult | undefined;
|
|
639
664
|
}
|
|
640
665
|
/**
|
|
641
666
|
* <p>This structure contains the start and end times of a single canary run.</p>
|
|
@@ -724,7 +749,7 @@ export interface CanaryLastRun {
|
|
|
724
749
|
/**
|
|
725
750
|
* <p>Use this structure to input your script code for the canary. This structure contains the
|
|
726
751
|
* Lambda handler with the location where the canary should start running the script. If the
|
|
727
|
-
* script is stored in an S3 bucket, the bucket name, key, and version are also included. If
|
|
752
|
+
* script is stored in an Amazon S3 bucket, the bucket name, key, and version are also included. If
|
|
728
753
|
* the script was passed into the canary directly, the script code is contained in the value
|
|
729
754
|
* of <code>Zipfile</code>. </p>
|
|
730
755
|
* <p>If you are uploading your canary scripts with an Amazon S3 bucket, your zip file should include your
|
|
@@ -748,26 +773,26 @@ export interface CanaryLastRun {
|
|
|
748
773
|
*/
|
|
749
774
|
export interface CanaryCodeInput {
|
|
750
775
|
/**
|
|
751
|
-
* <p>If your canary script is located in S3, specify the bucket name here. Do not include <code>s3://</code> as the
|
|
776
|
+
* <p>If your canary script is located in Amazon S3, specify the bucket name here. Do not include <code>s3://</code> as the
|
|
752
777
|
* start of the bucket name.</p>
|
|
753
778
|
* @public
|
|
754
779
|
*/
|
|
755
780
|
S3Bucket?: string | undefined;
|
|
756
781
|
/**
|
|
757
|
-
* <p>The S3 key of your script. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/UsingObjects.html">Working with Amazon S3 Objects</a>.</p>
|
|
782
|
+
* <p>The Amazon S3 key of your script. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/UsingObjects.html">Working with Amazon S3 Objects</a>.</p>
|
|
758
783
|
* @public
|
|
759
784
|
*/
|
|
760
785
|
S3Key?: string | undefined;
|
|
761
786
|
/**
|
|
762
|
-
* <p>The S3 version ID of your script.</p>
|
|
787
|
+
* <p>The Amazon S3 version ID of your script.</p>
|
|
763
788
|
* @public
|
|
764
789
|
*/
|
|
765
790
|
S3Version?: string | undefined;
|
|
766
791
|
/**
|
|
767
|
-
* <p>If you input your canary script directly into the canary instead of referring to an S3
|
|
792
|
+
* <p>If you input your canary script directly into the canary instead of referring to an Amazon S3
|
|
768
793
|
* location, the value of this parameter is the base64-encoded contents of the .zip file that
|
|
769
794
|
* contains the script. It must be smaller than 225 Kb.</p>
|
|
770
|
-
* <p>For large canary scripts, we recommend that you use an S3 location instead of inputting it
|
|
795
|
+
* <p>For large canary scripts, we recommend that you use an Amazon S3 location instead of inputting it
|
|
771
796
|
* directly with this parameter.</p>
|
|
772
797
|
* @public
|
|
773
798
|
*/
|
|
@@ -837,6 +862,11 @@ export interface CanaryRunConfigInput {
|
|
|
837
862
|
* @public
|
|
838
863
|
*/
|
|
839
864
|
EnvironmentVariables?: Record<string, string> | undefined;
|
|
865
|
+
/**
|
|
866
|
+
* <p>Specifies the amount of ephemeral storage (in MB) to allocate for the canary run during execution. This temporary storage is used for storing canary run artifacts (which are uploaded to an Amazon S3 bucket at the end of the run), and any canary browser operations. This temporary storage is cleared after the run is completed. Default storage value is 1024 MB.</p>
|
|
867
|
+
* @public
|
|
868
|
+
*/
|
|
869
|
+
EphemeralStorage?: number | undefined;
|
|
840
870
|
}
|
|
841
871
|
/**
|
|
842
872
|
* <p>This structure contains information about the canary's retry configuration.</p>
|
|
@@ -946,7 +976,7 @@ export interface CreateCanaryRequest {
|
|
|
946
976
|
/**
|
|
947
977
|
* <p>A structure that includes the entry point from which the canary should start
|
|
948
978
|
* running your script. If the script is stored in
|
|
949
|
-
* an S3 bucket, the bucket name, key, and version are also included.
|
|
979
|
+
* an Amazon S3 bucket, the bucket name, key, and version are also included.
|
|
950
980
|
* </p>
|
|
951
981
|
* @public
|
|
952
982
|
*/
|
|
@@ -954,7 +984,7 @@ export interface CreateCanaryRequest {
|
|
|
954
984
|
/**
|
|
955
985
|
* <p>The location in Amazon S3 where Synthetics stores artifacts from the test runs of this
|
|
956
986
|
* canary. Artifacts include the log file, screenshots, and HAR files. The name of the
|
|
957
|
-
* S3 bucket can't include a period (.).</p>
|
|
987
|
+
* Amazon S3 bucket can't include a period (.).</p>
|
|
958
988
|
* @public
|
|
959
989
|
*/
|
|
960
990
|
ArtifactS3Location: string | undefined;
|
|
@@ -1795,7 +1825,7 @@ export interface StartCanaryDryRunRequest {
|
|
|
1795
1825
|
/**
|
|
1796
1826
|
* <p>Use this structure to input your script code for the canary. This structure contains the
|
|
1797
1827
|
* Lambda handler with the location where the canary should start running the script. If the
|
|
1798
|
-
* script is stored in an S3 bucket, the bucket name, key, and version are also included. If
|
|
1828
|
+
* script is stored in an Amazon S3 bucket, the bucket name, key, and version are also included. If
|
|
1799
1829
|
* the script was passed into the canary directly, the script code is contained in the value
|
|
1800
1830
|
* of <code>Zipfile</code>. </p>
|
|
1801
1831
|
* <p>If you are uploading your canary scripts with an Amazon S3 bucket, your zip file should include your
|
|
@@ -1847,7 +1877,8 @@ export interface StartCanaryDryRunRequest {
|
|
|
1847
1877
|
*/
|
|
1848
1878
|
ExecutionRoleArn?: string | undefined;
|
|
1849
1879
|
/**
|
|
1850
|
-
* <p>The number of days to retain data
|
|
1880
|
+
* <p>The number of days to retain data about successful runs of this canary. If you omit
|
|
1881
|
+
* this field, the default of 31 days is used. The valid range is 1 to 455 days.</p>
|
|
1851
1882
|
* <p>This setting affects the range of information returned by <a href="https://docs.aws.amazon.com/AmazonSynthetics/latest/APIReference/API_GetCanaryRuns.html">GetCanaryRuns</a>, as well as
|
|
1852
1883
|
* the range of information displayed in the Synthetics console.
|
|
1853
1884
|
* </p>
|
|
@@ -1855,7 +1886,8 @@ export interface StartCanaryDryRunRequest {
|
|
|
1855
1886
|
*/
|
|
1856
1887
|
SuccessRetentionPeriodInDays?: number | undefined;
|
|
1857
1888
|
/**
|
|
1858
|
-
* <p>The number of days to retain data
|
|
1889
|
+
* <p>The number of days to retain data about failed runs of this canary. If you omit
|
|
1890
|
+
* this field, the default of 31 days is used. The valid range is 1 to 455 days.</p>
|
|
1859
1891
|
* <p>This setting affects the range of information returned by <a href="https://docs.aws.amazon.com/AmazonSynthetics/latest/APIReference/API_GetCanaryRuns.html">GetCanaryRuns</a>, as well as
|
|
1860
1892
|
* the range of information displayed in the Synthetics console.
|
|
1861
1893
|
* </p>
|
|
@@ -1875,6 +1907,7 @@ export interface StartCanaryDryRunRequest {
|
|
|
1875
1907
|
VisualReference?: VisualReferenceInput | undefined;
|
|
1876
1908
|
/**
|
|
1877
1909
|
* <p>The location in Amazon S3 where Synthetics stores artifacts from the test runs of this
|
|
1910
|
+
*
|
|
1878
1911
|
* canary. Artifacts include the log file, screenshots, and HAR files. The name of the
|
|
1879
1912
|
* Amazon S3 bucket can't include a period (.).</p>
|
|
1880
1913
|
* @public
|
|
@@ -1888,7 +1921,8 @@ export interface StartCanaryDryRunRequest {
|
|
|
1888
1921
|
ArtifactConfig?: ArtifactConfigInput | undefined;
|
|
1889
1922
|
/**
|
|
1890
1923
|
* <p>Specifies whether to also delete the Lambda functions and layers used by this canary
|
|
1891
|
-
* when the canary is deleted. If
|
|
1924
|
+
* when the canary is deleted. If you omit this parameter, the default of <code>AUTOMATIC</code> is used, which means
|
|
1925
|
+
*
|
|
1892
1926
|
* that the Lambda functions and layers will be deleted when the canary is deleted.</p>
|
|
1893
1927
|
* <p>If the value of this parameter is <code>OFF</code>, then the value of the <code>DeleteLambda</code> parameter
|
|
1894
1928
|
* of the <a href="https://docs.aws.amazon.com/AmazonSynthetics/latest/APIReference/API_DeleteCanary.html">DeleteCanary</a> operation
|
|
@@ -1991,7 +2025,7 @@ export interface UpdateCanaryRequest {
|
|
|
1991
2025
|
/**
|
|
1992
2026
|
* <p>A structure that includes the entry point from which the canary should start
|
|
1993
2027
|
* running your script. If the script is stored in
|
|
1994
|
-
* an S3 bucket, the bucket name, key, and version are also included.
|
|
2028
|
+
* an Amazon S3 bucket, the bucket name, key, and version are also included.
|
|
1995
2029
|
* </p>
|
|
1996
2030
|
* @public
|
|
1997
2031
|
*/
|
|
@@ -2103,7 +2137,7 @@ export interface UpdateCanaryRequest {
|
|
|
2103
2137
|
/**
|
|
2104
2138
|
* <p>The location in Amazon S3 where Synthetics stores artifacts from the test runs of this canary.
|
|
2105
2139
|
* Artifacts include the log file, screenshots, and HAR files. The name of the
|
|
2106
|
-
* S3 bucket can't include a period (.).</p>
|
|
2140
|
+
* Amazon S3 bucket can't include a period (.).</p>
|
|
2107
2141
|
* @public
|
|
2108
2142
|
*/
|
|
2109
2143
|
ArtifactS3Location?: string | undefined;
|
|
@@ -97,6 +97,7 @@ export interface CanaryRunConfigOutput {
|
|
|
97
97
|
TimeoutInSeconds?: number | undefined;
|
|
98
98
|
MemoryInMB?: number | undefined;
|
|
99
99
|
ActiveTracing?: boolean | undefined;
|
|
100
|
+
EphemeralStorage?: number | undefined;
|
|
100
101
|
}
|
|
101
102
|
export interface RetryConfigOutput {
|
|
102
103
|
MaxRetries?: number | undefined;
|
|
@@ -192,10 +193,18 @@ export declare const CanaryRunStateReasonCode: {
|
|
|
192
193
|
};
|
|
193
194
|
export type CanaryRunStateReasonCode =
|
|
194
195
|
(typeof CanaryRunStateReasonCode)[keyof typeof CanaryRunStateReasonCode];
|
|
196
|
+
export declare const CanaryRunTestResult: {
|
|
197
|
+
readonly FAILED: "FAILED";
|
|
198
|
+
readonly PASSED: "PASSED";
|
|
199
|
+
readonly UNKNOWN: "UNKNOWN";
|
|
200
|
+
};
|
|
201
|
+
export type CanaryRunTestResult =
|
|
202
|
+
(typeof CanaryRunTestResult)[keyof typeof CanaryRunTestResult];
|
|
195
203
|
export interface CanaryRunStatus {
|
|
196
204
|
State?: CanaryRunState | undefined;
|
|
197
205
|
StateReason?: string | undefined;
|
|
198
206
|
StateReasonCode?: CanaryRunStateReasonCode | undefined;
|
|
207
|
+
TestResult?: CanaryRunTestResult | undefined;
|
|
199
208
|
}
|
|
200
209
|
export interface CanaryRunTimeline {
|
|
201
210
|
Started?: Date | undefined;
|
|
@@ -228,6 +237,7 @@ export interface CanaryRunConfigInput {
|
|
|
228
237
|
MemoryInMB?: number | undefined;
|
|
229
238
|
ActiveTracing?: boolean | undefined;
|
|
230
239
|
EnvironmentVariables?: Record<string, string> | undefined;
|
|
240
|
+
EphemeralStorage?: number | undefined;
|
|
231
241
|
}
|
|
232
242
|
export interface RetryConfigInput {
|
|
233
243
|
MaxRetries: number | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-synthetics",
|
|
3
3
|
"description": "AWS SDK for JavaScript Synthetics Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.821.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-synthetics",
|
|
@@ -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/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
26
|
-
"@aws-sdk/middleware-logger": "3.
|
|
27
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
29
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
30
|
-
"@aws-sdk/types": "3.
|
|
31
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
34
|
-
"@smithy/config-resolver": "^4.1.
|
|
35
|
-
"@smithy/core": "^3.
|
|
36
|
-
"@smithy/fetch-http-handler": "^5.0.
|
|
37
|
-
"@smithy/hash-node": "^4.0.
|
|
38
|
-
"@smithy/invalid-dependency": "^4.0.
|
|
39
|
-
"@smithy/middleware-content-length": "^4.0.
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.1.
|
|
41
|
-
"@smithy/middleware-retry": "^4.1.
|
|
42
|
-
"@smithy/middleware-serde": "^4.0.
|
|
43
|
-
"@smithy/middleware-stack": "^4.0.
|
|
44
|
-
"@smithy/node-config-provider": "^4.1.
|
|
45
|
-
"@smithy/node-http-handler": "^4.0.
|
|
46
|
-
"@smithy/protocol-http": "^5.1.
|
|
47
|
-
"@smithy/smithy-client": "^4.
|
|
48
|
-
"@smithy/types": "^4.
|
|
49
|
-
"@smithy/url-parser": "^4.0.
|
|
23
|
+
"@aws-sdk/core": "3.821.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.821.0",
|
|
25
|
+
"@aws-sdk/middleware-host-header": "3.821.0",
|
|
26
|
+
"@aws-sdk/middleware-logger": "3.821.0",
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.821.0",
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.821.0",
|
|
29
|
+
"@aws-sdk/region-config-resolver": "3.821.0",
|
|
30
|
+
"@aws-sdk/types": "3.821.0",
|
|
31
|
+
"@aws-sdk/util-endpoints": "3.821.0",
|
|
32
|
+
"@aws-sdk/util-user-agent-browser": "3.821.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.821.0",
|
|
34
|
+
"@smithy/config-resolver": "^4.1.4",
|
|
35
|
+
"@smithy/core": "^3.5.1",
|
|
36
|
+
"@smithy/fetch-http-handler": "^5.0.4",
|
|
37
|
+
"@smithy/hash-node": "^4.0.4",
|
|
38
|
+
"@smithy/invalid-dependency": "^4.0.4",
|
|
39
|
+
"@smithy/middleware-content-length": "^4.0.4",
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.1.9",
|
|
41
|
+
"@smithy/middleware-retry": "^4.1.10",
|
|
42
|
+
"@smithy/middleware-serde": "^4.0.8",
|
|
43
|
+
"@smithy/middleware-stack": "^4.0.4",
|
|
44
|
+
"@smithy/node-config-provider": "^4.1.3",
|
|
45
|
+
"@smithy/node-http-handler": "^4.0.6",
|
|
46
|
+
"@smithy/protocol-http": "^5.1.2",
|
|
47
|
+
"@smithy/smithy-client": "^4.4.1",
|
|
48
|
+
"@smithy/types": "^4.3.1",
|
|
49
|
+
"@smithy/url-parser": "^4.0.4",
|
|
50
50
|
"@smithy/util-base64": "^4.0.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.0.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.0.0",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.0.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.0.
|
|
55
|
-
"@smithy/util-endpoints": "^3.0.
|
|
56
|
-
"@smithy/util-middleware": "^4.0.
|
|
57
|
-
"@smithy/util-retry": "^4.0.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.0.17",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.0.17",
|
|
55
|
+
"@smithy/util-endpoints": "^3.0.6",
|
|
56
|
+
"@smithy/util-middleware": "^4.0.4",
|
|
57
|
+
"@smithy/util-retry": "^4.0.5",
|
|
58
58
|
"@smithy/util-utf8": "^4.0.0",
|
|
59
59
|
"tslib": "^2.6.2"
|
|
60
60
|
},
|