@aws-sdk/client-transfer 3.714.0 → 3.715.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 +18 -0
- package/dist-es/models/models_0.js +12 -0
- package/dist-types/commands/CreateAgreementCommand.d.ts +2 -0
- package/dist-types/commands/CreateConnectorCommand.d.ts +1 -0
- package/dist-types/commands/DescribeAgreementCommand.d.ts +2 -0
- package/dist-types/commands/DescribeConnectorCommand.d.ts +1 -0
- package/dist-types/commands/UpdateAgreementCommand.d.ts +2 -0
- package/dist-types/commands/UpdateConnectorCommand.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +152 -3
- package/dist-types/ts3.4/models/models_0.d.ts +25 -0
- package/package.json +1 -1
package/dist-cjs/index.js
CHANGED
|
@@ -74,6 +74,7 @@ __export(src_exports, {
|
|
|
74
74
|
EncryptionAlg: () => EncryptionAlg,
|
|
75
75
|
EncryptionType: () => EncryptionType,
|
|
76
76
|
EndpointType: () => EndpointType,
|
|
77
|
+
EnforceMessageSigningType: () => EnforceMessageSigningType,
|
|
77
78
|
ExecutionErrorType: () => ExecutionErrorType,
|
|
78
79
|
ExecutionStatus: () => ExecutionStatus,
|
|
79
80
|
HomeDirectoryType: () => HomeDirectoryType,
|
|
@@ -104,6 +105,8 @@ __export(src_exports, {
|
|
|
104
105
|
MdnResponse: () => MdnResponse,
|
|
105
106
|
MdnSigningAlg: () => MdnSigningAlg,
|
|
106
107
|
OverwriteExisting: () => OverwriteExisting,
|
|
108
|
+
PreserveContentType: () => PreserveContentType,
|
|
109
|
+
PreserveFilenameType: () => PreserveFilenameType,
|
|
107
110
|
ProfileType: () => ProfileType,
|
|
108
111
|
Protocol: () => Protocol,
|
|
109
112
|
ResourceExistsException: () => ResourceExistsException,
|
|
@@ -354,6 +357,14 @@ var _AccessDeniedException = class _AccessDeniedException extends TransferServic
|
|
|
354
357
|
};
|
|
355
358
|
__name(_AccessDeniedException, "AccessDeniedException");
|
|
356
359
|
var AccessDeniedException = _AccessDeniedException;
|
|
360
|
+
var EnforceMessageSigningType = {
|
|
361
|
+
DISABLED: "DISABLED",
|
|
362
|
+
ENABLED: "ENABLED"
|
|
363
|
+
};
|
|
364
|
+
var PreserveFilenameType = {
|
|
365
|
+
DISABLED: "DISABLED",
|
|
366
|
+
ENABLED: "ENABLED"
|
|
367
|
+
};
|
|
357
368
|
var AgreementStatusType = {
|
|
358
369
|
ACTIVE: "ACTIVE",
|
|
359
370
|
INACTIVE: "INACTIVE"
|
|
@@ -511,6 +522,10 @@ var MdnSigningAlg = {
|
|
|
511
522
|
SHA384: "SHA384",
|
|
512
523
|
SHA512: "SHA512"
|
|
513
524
|
};
|
|
525
|
+
var PreserveContentType = {
|
|
526
|
+
DISABLED: "DISABLED",
|
|
527
|
+
ENABLED: "ENABLED"
|
|
528
|
+
};
|
|
514
529
|
var SigningAlg = {
|
|
515
530
|
NONE: "NONE",
|
|
516
531
|
SHA1: "SHA1",
|
|
@@ -3590,6 +3605,8 @@ var waitUntilServerOnline = /* @__PURE__ */ __name(async (params, input) => {
|
|
|
3590
3605
|
waitForServerOnline,
|
|
3591
3606
|
waitUntilServerOnline,
|
|
3592
3607
|
AccessDeniedException,
|
|
3608
|
+
EnforceMessageSigningType,
|
|
3609
|
+
PreserveFilenameType,
|
|
3593
3610
|
AgreementStatusType,
|
|
3594
3611
|
InternalServiceError,
|
|
3595
3612
|
InvalidRequestException,
|
|
@@ -3602,6 +3619,7 @@ var waitUntilServerOnline = /* @__PURE__ */ __name(async (params, input) => {
|
|
|
3602
3619
|
EncryptionAlg,
|
|
3603
3620
|
MdnResponse,
|
|
3604
3621
|
MdnSigningAlg,
|
|
3622
|
+
PreserveContentType,
|
|
3605
3623
|
SigningAlg,
|
|
3606
3624
|
As2Transport,
|
|
3607
3625
|
CertificateStatusType,
|
|
@@ -13,6 +13,14 @@ export class AccessDeniedException extends __BaseException {
|
|
|
13
13
|
this.Message = opts.Message;
|
|
14
14
|
}
|
|
15
15
|
}
|
|
16
|
+
export const EnforceMessageSigningType = {
|
|
17
|
+
DISABLED: "DISABLED",
|
|
18
|
+
ENABLED: "ENABLED",
|
|
19
|
+
};
|
|
20
|
+
export const PreserveFilenameType = {
|
|
21
|
+
DISABLED: "DISABLED",
|
|
22
|
+
ENABLED: "ENABLED",
|
|
23
|
+
};
|
|
16
24
|
export const AgreementStatusType = {
|
|
17
25
|
ACTIVE: "ACTIVE",
|
|
18
26
|
INACTIVE: "INACTIVE",
|
|
@@ -135,6 +143,10 @@ export const MdnSigningAlg = {
|
|
|
135
143
|
SHA384: "SHA384",
|
|
136
144
|
SHA512: "SHA512",
|
|
137
145
|
};
|
|
146
|
+
export const PreserveContentType = {
|
|
147
|
+
DISABLED: "DISABLED",
|
|
148
|
+
ENABLED: "ENABLED",
|
|
149
|
+
};
|
|
138
150
|
export const SigningAlg = {
|
|
139
151
|
NONE: "NONE",
|
|
140
152
|
SHA1: "SHA1",
|
|
@@ -53,6 +53,8 @@ declare const CreateAgreementCommand_base: {
|
|
|
53
53
|
* Value: "STRING_VALUE", // required
|
|
54
54
|
* },
|
|
55
55
|
* ],
|
|
56
|
+
* PreserveFilename: "ENABLED" || "DISABLED",
|
|
57
|
+
* EnforceMessageSigning: "ENABLED" || "DISABLED",
|
|
56
58
|
* };
|
|
57
59
|
* const command = new CreateAgreementCommand(input);
|
|
58
60
|
* const response = await client.send(command);
|
|
@@ -51,6 +51,7 @@ declare const CreateConnectorCommand_base: {
|
|
|
51
51
|
* MdnSigningAlgorithm: "SHA256" || "SHA384" || "SHA512" || "SHA1" || "NONE" || "DEFAULT",
|
|
52
52
|
* MdnResponse: "SYNC" || "NONE",
|
|
53
53
|
* BasicAuthSecretId: "STRING_VALUE",
|
|
54
|
+
* PreserveContentType: "ENABLED" || "DISABLED",
|
|
54
55
|
* },
|
|
55
56
|
* AccessRole: "STRING_VALUE", // required
|
|
56
57
|
* LoggingRole: "STRING_VALUE",
|
|
@@ -55,6 +55,7 @@ declare const DescribeConnectorCommand_base: {
|
|
|
55
55
|
* // MdnSigningAlgorithm: "SHA256" || "SHA384" || "SHA512" || "SHA1" || "NONE" || "DEFAULT",
|
|
56
56
|
* // MdnResponse: "SYNC" || "NONE",
|
|
57
57
|
* // BasicAuthSecretId: "STRING_VALUE",
|
|
58
|
+
* // PreserveContentType: "ENABLED" || "DISABLED",
|
|
58
59
|
* // },
|
|
59
60
|
* // AccessRole: "STRING_VALUE",
|
|
60
61
|
* // LoggingRole: "STRING_VALUE",
|
|
@@ -45,6 +45,8 @@ declare const UpdateAgreementCommand_base: {
|
|
|
45
45
|
* PartnerProfileId: "STRING_VALUE",
|
|
46
46
|
* BaseDirectory: "STRING_VALUE",
|
|
47
47
|
* AccessRole: "STRING_VALUE",
|
|
48
|
+
* PreserveFilename: "ENABLED" || "DISABLED",
|
|
49
|
+
* EnforceMessageSigning: "ENABLED" || "DISABLED",
|
|
48
50
|
* };
|
|
49
51
|
* const command = new UpdateAgreementCommand(input);
|
|
50
52
|
* const response = await client.send(command);
|
|
@@ -49,6 +49,7 @@ declare const UpdateConnectorCommand_base: {
|
|
|
49
49
|
* MdnSigningAlgorithm: "SHA256" || "SHA384" || "SHA512" || "SHA1" || "NONE" || "DEFAULT",
|
|
50
50
|
* MdnResponse: "SYNC" || "NONE",
|
|
51
51
|
* BasicAuthSecretId: "STRING_VALUE",
|
|
52
|
+
* PreserveContentType: "ENABLED" || "DISABLED",
|
|
52
53
|
* },
|
|
53
54
|
* AccessRole: "STRING_VALUE",
|
|
54
55
|
* LoggingRole: "STRING_VALUE",
|
|
@@ -13,6 +13,30 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
13
13
|
*/
|
|
14
14
|
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
15
15
|
}
|
|
16
|
+
/**
|
|
17
|
+
* @public
|
|
18
|
+
* @enum
|
|
19
|
+
*/
|
|
20
|
+
export declare const EnforceMessageSigningType: {
|
|
21
|
+
readonly DISABLED: "DISABLED";
|
|
22
|
+
readonly ENABLED: "ENABLED";
|
|
23
|
+
};
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
*/
|
|
27
|
+
export type EnforceMessageSigningType = (typeof EnforceMessageSigningType)[keyof typeof EnforceMessageSigningType];
|
|
28
|
+
/**
|
|
29
|
+
* @public
|
|
30
|
+
* @enum
|
|
31
|
+
*/
|
|
32
|
+
export declare const PreserveFilenameType: {
|
|
33
|
+
readonly DISABLED: "DISABLED";
|
|
34
|
+
readonly ENABLED: "ENABLED";
|
|
35
|
+
};
|
|
36
|
+
/**
|
|
37
|
+
* @public
|
|
38
|
+
*/
|
|
39
|
+
export type PreserveFilenameType = (typeof PreserveFilenameType)[keyof typeof PreserveFilenameType];
|
|
16
40
|
/**
|
|
17
41
|
* @public
|
|
18
42
|
* @enum
|
|
@@ -119,6 +143,42 @@ export interface CreateAgreementRequest {
|
|
|
119
143
|
* @public
|
|
120
144
|
*/
|
|
121
145
|
Tags?: Tag[] | undefined;
|
|
146
|
+
/**
|
|
147
|
+
* <p>
|
|
148
|
+
* Determines whether or not Transfer Family appends a unique string of characters to the end of the AS2 message payload
|
|
149
|
+
* filename when saving it.
|
|
150
|
+
* </p>
|
|
151
|
+
* <ul>
|
|
152
|
+
* <li>
|
|
153
|
+
* <p>
|
|
154
|
+
* <code>ENABLED</code>: the filename provided by your trading parter is preserved when the file is saved.</p>
|
|
155
|
+
* </li>
|
|
156
|
+
* <li>
|
|
157
|
+
* <p>
|
|
158
|
+
* <code>DISABLED</code> (default value): when Transfer Family saves the file, the filename is adjusted, as
|
|
159
|
+
* described in <a href="https://docs.aws.amazon.com/transfer/latest/userguide/send-as2-messages.html#file-names-as2">File names and locations</a>.</p>
|
|
160
|
+
* </li>
|
|
161
|
+
* </ul>
|
|
162
|
+
* @public
|
|
163
|
+
*/
|
|
164
|
+
PreserveFilename?: PreserveFilenameType | undefined;
|
|
165
|
+
/**
|
|
166
|
+
* <p>
|
|
167
|
+
* Determines whether or not unsigned messages from your trading partners will be accepted.
|
|
168
|
+
* </p>
|
|
169
|
+
* <ul>
|
|
170
|
+
* <li>
|
|
171
|
+
* <p>
|
|
172
|
+
* <code>ENABLED</code>: Transfer Family rejects unsigned messages from your trading partner.</p>
|
|
173
|
+
* </li>
|
|
174
|
+
* <li>
|
|
175
|
+
* <p>
|
|
176
|
+
* <code>DISABLED</code> (default value): Transfer Family accepts unsigned messages from your trading partner.</p>
|
|
177
|
+
* </li>
|
|
178
|
+
* </ul>
|
|
179
|
+
* @public
|
|
180
|
+
*/
|
|
181
|
+
EnforceMessageSigning?: EnforceMessageSigningType | undefined;
|
|
122
182
|
}
|
|
123
183
|
/**
|
|
124
184
|
* @public
|
|
@@ -329,6 +389,42 @@ export interface DescribedAgreement {
|
|
|
329
389
|
* @public
|
|
330
390
|
*/
|
|
331
391
|
Tags?: Tag[] | undefined;
|
|
392
|
+
/**
|
|
393
|
+
* <p>
|
|
394
|
+
* Determines whether or not Transfer Family appends a unique string of characters to the end of the AS2 message payload
|
|
395
|
+
* filename when saving it.
|
|
396
|
+
* </p>
|
|
397
|
+
* <ul>
|
|
398
|
+
* <li>
|
|
399
|
+
* <p>
|
|
400
|
+
* <code>ENABLED</code>: the filename provided by your trading parter is preserved when the file is saved.</p>
|
|
401
|
+
* </li>
|
|
402
|
+
* <li>
|
|
403
|
+
* <p>
|
|
404
|
+
* <code>DISABLED</code> (default value): when Transfer Family saves the file, the filename is adjusted, as
|
|
405
|
+
* described in <a href="https://docs.aws.amazon.com/transfer/latest/userguide/send-as2-messages.html#file-names-as2">File names and locations</a>.</p>
|
|
406
|
+
* </li>
|
|
407
|
+
* </ul>
|
|
408
|
+
* @public
|
|
409
|
+
*/
|
|
410
|
+
PreserveFilename?: PreserveFilenameType | undefined;
|
|
411
|
+
/**
|
|
412
|
+
* <p>
|
|
413
|
+
* Determines whether or not unsigned messages from your trading partners will be accepted.
|
|
414
|
+
* </p>
|
|
415
|
+
* <ul>
|
|
416
|
+
* <li>
|
|
417
|
+
* <p>
|
|
418
|
+
* <code>ENABLED</code>: Transfer Family rejects unsigned messages from your trading partner.</p>
|
|
419
|
+
* </li>
|
|
420
|
+
* <li>
|
|
421
|
+
* <p>
|
|
422
|
+
* <code>DISABLED</code> (default value): Transfer Family accepts unsigned messages from your trading partner.</p>
|
|
423
|
+
* </li>
|
|
424
|
+
* </ul>
|
|
425
|
+
* @public
|
|
426
|
+
*/
|
|
427
|
+
EnforceMessageSigning?: EnforceMessageSigningType | undefined;
|
|
332
428
|
}
|
|
333
429
|
/**
|
|
334
430
|
* @public
|
|
@@ -512,6 +608,42 @@ export interface UpdateAgreementRequest {
|
|
|
512
608
|
* @public
|
|
513
609
|
*/
|
|
514
610
|
AccessRole?: string | undefined;
|
|
611
|
+
/**
|
|
612
|
+
* <p>
|
|
613
|
+
* Determines whether or not Transfer Family appends a unique string of characters to the end of the AS2 message payload
|
|
614
|
+
* filename when saving it.
|
|
615
|
+
* </p>
|
|
616
|
+
* <ul>
|
|
617
|
+
* <li>
|
|
618
|
+
* <p>
|
|
619
|
+
* <code>ENABLED</code>: the filename provided by your trading parter is preserved when the file is saved.</p>
|
|
620
|
+
* </li>
|
|
621
|
+
* <li>
|
|
622
|
+
* <p>
|
|
623
|
+
* <code>DISABLED</code> (default value): when Transfer Family saves the file, the filename is adjusted, as
|
|
624
|
+
* described in <a href="https://docs.aws.amazon.com/transfer/latest/userguide/send-as2-messages.html#file-names-as2">File names and locations</a>.</p>
|
|
625
|
+
* </li>
|
|
626
|
+
* </ul>
|
|
627
|
+
* @public
|
|
628
|
+
*/
|
|
629
|
+
PreserveFilename?: PreserveFilenameType | undefined;
|
|
630
|
+
/**
|
|
631
|
+
* <p>
|
|
632
|
+
* Determines whether or not unsigned messages from your trading partners will be accepted.
|
|
633
|
+
* </p>
|
|
634
|
+
* <ul>
|
|
635
|
+
* <li>
|
|
636
|
+
* <p>
|
|
637
|
+
* <code>ENABLED</code>: Transfer Family rejects unsigned messages from your trading partner.</p>
|
|
638
|
+
* </li>
|
|
639
|
+
* <li>
|
|
640
|
+
* <p>
|
|
641
|
+
* <code>DISABLED</code> (default value): Transfer Family accepts unsigned messages from your trading partner.</p>
|
|
642
|
+
* </li>
|
|
643
|
+
* </ul>
|
|
644
|
+
* @public
|
|
645
|
+
*/
|
|
646
|
+
EnforceMessageSigning?: EnforceMessageSigningType | undefined;
|
|
515
647
|
}
|
|
516
648
|
/**
|
|
517
649
|
* @public
|
|
@@ -578,6 +710,18 @@ export declare const MdnSigningAlg: {
|
|
|
578
710
|
* @public
|
|
579
711
|
*/
|
|
580
712
|
export type MdnSigningAlg = (typeof MdnSigningAlg)[keyof typeof MdnSigningAlg];
|
|
713
|
+
/**
|
|
714
|
+
* @public
|
|
715
|
+
* @enum
|
|
716
|
+
*/
|
|
717
|
+
export declare const PreserveContentType: {
|
|
718
|
+
readonly DISABLED: "DISABLED";
|
|
719
|
+
readonly ENABLED: "ENABLED";
|
|
720
|
+
};
|
|
721
|
+
/**
|
|
722
|
+
* @public
|
|
723
|
+
*/
|
|
724
|
+
export type PreserveContentType = (typeof PreserveContentType)[keyof typeof PreserveContentType];
|
|
581
725
|
/**
|
|
582
726
|
* @public
|
|
583
727
|
* @enum
|
|
@@ -692,6 +836,13 @@ export interface As2ConnectorConfig {
|
|
|
692
836
|
* @public
|
|
693
837
|
*/
|
|
694
838
|
BasicAuthSecretId?: string | undefined;
|
|
839
|
+
/**
|
|
840
|
+
* <p>Allows you to use the Amazon S3 <code>Content-Type</code> that is associated with objects in S3 instead of
|
|
841
|
+
* having the content type mapped based on the file extension. This parameter is enabled by default when you create an AS2 connector
|
|
842
|
+
* from the console, but disabled by default when you create an AS2 connector by calling the API directly.</p>
|
|
843
|
+
* @public
|
|
844
|
+
*/
|
|
845
|
+
PreserveContentType?: PreserveContentType | undefined;
|
|
695
846
|
}
|
|
696
847
|
/**
|
|
697
848
|
* @public
|
|
@@ -797,9 +948,7 @@ export interface DescribedCertificate {
|
|
|
797
948
|
*/
|
|
798
949
|
Usage?: CertificateUsageType | undefined;
|
|
799
950
|
/**
|
|
800
|
-
* <p>
|
|
801
|
-
* <code>INACTIVE</code>. <code>PENDING_ROTATION</code> means that this certificate will
|
|
802
|
-
* replace the current certificate when it expires.</p>
|
|
951
|
+
* <p>Currently, the only available status is <code>ACTIVE</code>: all other values are reserved for future use.</p>
|
|
803
952
|
* @public
|
|
804
953
|
*/
|
|
805
954
|
Status?: CertificateStatusType | undefined;
|
|
@@ -8,6 +8,18 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
8
8
|
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
9
9
|
);
|
|
10
10
|
}
|
|
11
|
+
export declare const EnforceMessageSigningType: {
|
|
12
|
+
readonly DISABLED: "DISABLED";
|
|
13
|
+
readonly ENABLED: "ENABLED";
|
|
14
|
+
};
|
|
15
|
+
export type EnforceMessageSigningType =
|
|
16
|
+
(typeof EnforceMessageSigningType)[keyof typeof EnforceMessageSigningType];
|
|
17
|
+
export declare const PreserveFilenameType: {
|
|
18
|
+
readonly DISABLED: "DISABLED";
|
|
19
|
+
readonly ENABLED: "ENABLED";
|
|
20
|
+
};
|
|
21
|
+
export type PreserveFilenameType =
|
|
22
|
+
(typeof PreserveFilenameType)[keyof typeof PreserveFilenameType];
|
|
11
23
|
export declare const AgreementStatusType: {
|
|
12
24
|
readonly ACTIVE: "ACTIVE";
|
|
13
25
|
readonly INACTIVE: "INACTIVE";
|
|
@@ -27,6 +39,8 @@ export interface CreateAgreementRequest {
|
|
|
27
39
|
AccessRole: string | undefined;
|
|
28
40
|
Status?: AgreementStatusType | undefined;
|
|
29
41
|
Tags?: Tag[] | undefined;
|
|
42
|
+
PreserveFilename?: PreserveFilenameType | undefined;
|
|
43
|
+
EnforceMessageSigning?: EnforceMessageSigningType | undefined;
|
|
30
44
|
}
|
|
31
45
|
export interface CreateAgreementResponse {
|
|
32
46
|
AgreementId: string | undefined;
|
|
@@ -102,6 +116,8 @@ export interface DescribedAgreement {
|
|
|
102
116
|
BaseDirectory?: string | undefined;
|
|
103
117
|
AccessRole?: string | undefined;
|
|
104
118
|
Tags?: Tag[] | undefined;
|
|
119
|
+
PreserveFilename?: PreserveFilenameType | undefined;
|
|
120
|
+
EnforceMessageSigning?: EnforceMessageSigningType | undefined;
|
|
105
121
|
}
|
|
106
122
|
export interface DescribeAgreementResponse {
|
|
107
123
|
Agreement: DescribedAgreement | undefined;
|
|
@@ -141,6 +157,8 @@ export interface UpdateAgreementRequest {
|
|
|
141
157
|
PartnerProfileId?: string | undefined;
|
|
142
158
|
BaseDirectory?: string | undefined;
|
|
143
159
|
AccessRole?: string | undefined;
|
|
160
|
+
PreserveFilename?: PreserveFilenameType | undefined;
|
|
161
|
+
EnforceMessageSigning?: EnforceMessageSigningType | undefined;
|
|
144
162
|
}
|
|
145
163
|
export interface UpdateAgreementResponse {
|
|
146
164
|
AgreementId: string | undefined;
|
|
@@ -173,6 +191,12 @@ export declare const MdnSigningAlg: {
|
|
|
173
191
|
readonly SHA512: "SHA512";
|
|
174
192
|
};
|
|
175
193
|
export type MdnSigningAlg = (typeof MdnSigningAlg)[keyof typeof MdnSigningAlg];
|
|
194
|
+
export declare const PreserveContentType: {
|
|
195
|
+
readonly DISABLED: "DISABLED";
|
|
196
|
+
readonly ENABLED: "ENABLED";
|
|
197
|
+
};
|
|
198
|
+
export type PreserveContentType =
|
|
199
|
+
(typeof PreserveContentType)[keyof typeof PreserveContentType];
|
|
176
200
|
export declare const SigningAlg: {
|
|
177
201
|
readonly NONE: "NONE";
|
|
178
202
|
readonly SHA1: "SHA1";
|
|
@@ -191,6 +215,7 @@ export interface As2ConnectorConfig {
|
|
|
191
215
|
MdnSigningAlgorithm?: MdnSigningAlg | undefined;
|
|
192
216
|
MdnResponse?: MdnResponse | undefined;
|
|
193
217
|
BasicAuthSecretId?: string | undefined;
|
|
218
|
+
PreserveContentType?: PreserveContentType | undefined;
|
|
194
219
|
}
|
|
195
220
|
export declare const As2Transport: {
|
|
196
221
|
readonly HTTP: "HTTP";
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-transfer",
|
|
3
3
|
"description": "AWS SDK for JavaScript Transfer Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.715.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-transfer",
|