@aws-sdk/client-transfer 3.699.0 → 3.709.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/README.md +64 -0
- package/dist-cjs/index.js +377 -5
- package/dist-es/Transfer.js +16 -0
- package/dist-es/commands/CreateWebAppCommand.js +22 -0
- package/dist-es/commands/DeleteWebAppCommand.js +22 -0
- package/dist-es/commands/DeleteWebAppCustomizationCommand.js +22 -0
- package/dist-es/commands/DescribeWebAppCommand.js +22 -0
- package/dist-es/commands/DescribeWebAppCustomizationCommand.js +23 -0
- package/dist-es/commands/ListWebAppsCommand.js +22 -0
- package/dist-es/commands/UpdateWebAppCommand.js +22 -0
- package/dist-es/commands/UpdateWebAppCustomizationCommand.js +23 -0
- package/dist-es/commands/index.js +8 -0
- package/dist-es/models/models_0.js +48 -0
- package/dist-es/pagination/ListWebAppsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_json1_1.js +171 -3
- package/dist-types/Transfer.d.ts +57 -0
- package/dist-types/TransferClient.d.ts +10 -2
- package/dist-types/commands/CreateWebAppCommand.d.ts +102 -0
- package/dist-types/commands/DeleteWebAppCommand.d.ts +85 -0
- package/dist-types/commands/DeleteWebAppCustomizationCommand.d.ts +90 -0
- package/dist-types/commands/DescribeWebAppCommand.d.ts +108 -0
- package/dist-types/commands/DescribeWebAppCustomizationCommand.d.ts +93 -0
- package/dist-types/commands/ListWebAppsCommand.d.ts +92 -0
- package/dist-types/commands/UpdateWebAppCommand.d.ts +101 -0
- package/dist-types/commands/UpdateWebAppCustomizationCommand.d.ts +95 -0
- package/dist-types/commands/index.d.ts +8 -0
- package/dist-types/models/models_0.d.ts +490 -12
- package/dist-types/pagination/ListWebAppsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +72 -0
- package/dist-types/ts3.4/Transfer.d.ts +137 -0
- package/dist-types/ts3.4/TransferClient.d.ts +50 -2
- package/dist-types/ts3.4/commands/CreateWebAppCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DeleteWebAppCommand.d.ts +45 -0
- package/dist-types/ts3.4/commands/DeleteWebAppCustomizationCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DescribeWebAppCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DescribeWebAppCustomizationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListWebAppsCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UpdateWebAppCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UpdateWebAppCustomizationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +8 -0
- package/dist-types/ts3.4/models/models_0.d.ts +179 -0
- package/dist-types/ts3.4/pagination/ListWebAppsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +96 -0
- package/package.json +36 -36
|
@@ -27,6 +27,10 @@ import {
|
|
|
27
27
|
CreateUserCommandInput,
|
|
28
28
|
CreateUserCommandOutput,
|
|
29
29
|
} from "../commands/CreateUserCommand";
|
|
30
|
+
import {
|
|
31
|
+
CreateWebAppCommandInput,
|
|
32
|
+
CreateWebAppCommandOutput,
|
|
33
|
+
} from "../commands/CreateWebAppCommand";
|
|
30
34
|
import {
|
|
31
35
|
CreateWorkflowCommandInput,
|
|
32
36
|
CreateWorkflowCommandOutput,
|
|
@@ -67,6 +71,14 @@ import {
|
|
|
67
71
|
DeleteUserCommandInput,
|
|
68
72
|
DeleteUserCommandOutput,
|
|
69
73
|
} from "../commands/DeleteUserCommand";
|
|
74
|
+
import {
|
|
75
|
+
DeleteWebAppCommandInput,
|
|
76
|
+
DeleteWebAppCommandOutput,
|
|
77
|
+
} from "../commands/DeleteWebAppCommand";
|
|
78
|
+
import {
|
|
79
|
+
DeleteWebAppCustomizationCommandInput,
|
|
80
|
+
DeleteWebAppCustomizationCommandOutput,
|
|
81
|
+
} from "../commands/DeleteWebAppCustomizationCommand";
|
|
70
82
|
import {
|
|
71
83
|
DeleteWorkflowCommandInput,
|
|
72
84
|
DeleteWorkflowCommandOutput,
|
|
@@ -111,6 +123,14 @@ import {
|
|
|
111
123
|
DescribeUserCommandInput,
|
|
112
124
|
DescribeUserCommandOutput,
|
|
113
125
|
} from "../commands/DescribeUserCommand";
|
|
126
|
+
import {
|
|
127
|
+
DescribeWebAppCommandInput,
|
|
128
|
+
DescribeWebAppCommandOutput,
|
|
129
|
+
} from "../commands/DescribeWebAppCommand";
|
|
130
|
+
import {
|
|
131
|
+
DescribeWebAppCustomizationCommandInput,
|
|
132
|
+
DescribeWebAppCustomizationCommandOutput,
|
|
133
|
+
} from "../commands/DescribeWebAppCustomizationCommand";
|
|
114
134
|
import {
|
|
115
135
|
DescribeWorkflowCommandInput,
|
|
116
136
|
DescribeWorkflowCommandOutput,
|
|
@@ -175,6 +195,10 @@ import {
|
|
|
175
195
|
ListUsersCommandInput,
|
|
176
196
|
ListUsersCommandOutput,
|
|
177
197
|
} from "../commands/ListUsersCommand";
|
|
198
|
+
import {
|
|
199
|
+
ListWebAppsCommandInput,
|
|
200
|
+
ListWebAppsCommandOutput,
|
|
201
|
+
} from "../commands/ListWebAppsCommand";
|
|
178
202
|
import {
|
|
179
203
|
ListWorkflowsCommandInput,
|
|
180
204
|
ListWorkflowsCommandOutput,
|
|
@@ -247,6 +271,14 @@ import {
|
|
|
247
271
|
UpdateUserCommandInput,
|
|
248
272
|
UpdateUserCommandOutput,
|
|
249
273
|
} from "../commands/UpdateUserCommand";
|
|
274
|
+
import {
|
|
275
|
+
UpdateWebAppCommandInput,
|
|
276
|
+
UpdateWebAppCommandOutput,
|
|
277
|
+
} from "../commands/UpdateWebAppCommand";
|
|
278
|
+
import {
|
|
279
|
+
UpdateWebAppCustomizationCommandInput,
|
|
280
|
+
UpdateWebAppCustomizationCommandOutput,
|
|
281
|
+
} from "../commands/UpdateWebAppCustomizationCommand";
|
|
250
282
|
export declare const se_CreateAccessCommand: (
|
|
251
283
|
input: CreateAccessCommandInput,
|
|
252
284
|
context: __SerdeContext
|
|
@@ -271,6 +303,10 @@ export declare const se_CreateUserCommand: (
|
|
|
271
303
|
input: CreateUserCommandInput,
|
|
272
304
|
context: __SerdeContext
|
|
273
305
|
) => Promise<__HttpRequest>;
|
|
306
|
+
export declare const se_CreateWebAppCommand: (
|
|
307
|
+
input: CreateWebAppCommandInput,
|
|
308
|
+
context: __SerdeContext
|
|
309
|
+
) => Promise<__HttpRequest>;
|
|
274
310
|
export declare const se_CreateWorkflowCommand: (
|
|
275
311
|
input: CreateWorkflowCommandInput,
|
|
276
312
|
context: __SerdeContext
|
|
@@ -311,6 +347,14 @@ export declare const se_DeleteUserCommand: (
|
|
|
311
347
|
input: DeleteUserCommandInput,
|
|
312
348
|
context: __SerdeContext
|
|
313
349
|
) => Promise<__HttpRequest>;
|
|
350
|
+
export declare const se_DeleteWebAppCommand: (
|
|
351
|
+
input: DeleteWebAppCommandInput,
|
|
352
|
+
context: __SerdeContext
|
|
353
|
+
) => Promise<__HttpRequest>;
|
|
354
|
+
export declare const se_DeleteWebAppCustomizationCommand: (
|
|
355
|
+
input: DeleteWebAppCustomizationCommandInput,
|
|
356
|
+
context: __SerdeContext
|
|
357
|
+
) => Promise<__HttpRequest>;
|
|
314
358
|
export declare const se_DeleteWorkflowCommand: (
|
|
315
359
|
input: DeleteWorkflowCommandInput,
|
|
316
360
|
context: __SerdeContext
|
|
@@ -355,6 +399,14 @@ export declare const se_DescribeUserCommand: (
|
|
|
355
399
|
input: DescribeUserCommandInput,
|
|
356
400
|
context: __SerdeContext
|
|
357
401
|
) => Promise<__HttpRequest>;
|
|
402
|
+
export declare const se_DescribeWebAppCommand: (
|
|
403
|
+
input: DescribeWebAppCommandInput,
|
|
404
|
+
context: __SerdeContext
|
|
405
|
+
) => Promise<__HttpRequest>;
|
|
406
|
+
export declare const se_DescribeWebAppCustomizationCommand: (
|
|
407
|
+
input: DescribeWebAppCustomizationCommandInput,
|
|
408
|
+
context: __SerdeContext
|
|
409
|
+
) => Promise<__HttpRequest>;
|
|
358
410
|
export declare const se_DescribeWorkflowCommand: (
|
|
359
411
|
input: DescribeWorkflowCommandInput,
|
|
360
412
|
context: __SerdeContext
|
|
@@ -419,6 +471,10 @@ export declare const se_ListUsersCommand: (
|
|
|
419
471
|
input: ListUsersCommandInput,
|
|
420
472
|
context: __SerdeContext
|
|
421
473
|
) => Promise<__HttpRequest>;
|
|
474
|
+
export declare const se_ListWebAppsCommand: (
|
|
475
|
+
input: ListWebAppsCommandInput,
|
|
476
|
+
context: __SerdeContext
|
|
477
|
+
) => Promise<__HttpRequest>;
|
|
422
478
|
export declare const se_ListWorkflowsCommand: (
|
|
423
479
|
input: ListWorkflowsCommandInput,
|
|
424
480
|
context: __SerdeContext
|
|
@@ -491,6 +547,14 @@ export declare const se_UpdateUserCommand: (
|
|
|
491
547
|
input: UpdateUserCommandInput,
|
|
492
548
|
context: __SerdeContext
|
|
493
549
|
) => Promise<__HttpRequest>;
|
|
550
|
+
export declare const se_UpdateWebAppCommand: (
|
|
551
|
+
input: UpdateWebAppCommandInput,
|
|
552
|
+
context: __SerdeContext
|
|
553
|
+
) => Promise<__HttpRequest>;
|
|
554
|
+
export declare const se_UpdateWebAppCustomizationCommand: (
|
|
555
|
+
input: UpdateWebAppCustomizationCommandInput,
|
|
556
|
+
context: __SerdeContext
|
|
557
|
+
) => Promise<__HttpRequest>;
|
|
494
558
|
export declare const de_CreateAccessCommand: (
|
|
495
559
|
output: __HttpResponse,
|
|
496
560
|
context: __SerdeContext
|
|
@@ -515,6 +579,10 @@ export declare const de_CreateUserCommand: (
|
|
|
515
579
|
output: __HttpResponse,
|
|
516
580
|
context: __SerdeContext
|
|
517
581
|
) => Promise<CreateUserCommandOutput>;
|
|
582
|
+
export declare const de_CreateWebAppCommand: (
|
|
583
|
+
output: __HttpResponse,
|
|
584
|
+
context: __SerdeContext
|
|
585
|
+
) => Promise<CreateWebAppCommandOutput>;
|
|
518
586
|
export declare const de_CreateWorkflowCommand: (
|
|
519
587
|
output: __HttpResponse,
|
|
520
588
|
context: __SerdeContext
|
|
@@ -555,6 +623,14 @@ export declare const de_DeleteUserCommand: (
|
|
|
555
623
|
output: __HttpResponse,
|
|
556
624
|
context: __SerdeContext
|
|
557
625
|
) => Promise<DeleteUserCommandOutput>;
|
|
626
|
+
export declare const de_DeleteWebAppCommand: (
|
|
627
|
+
output: __HttpResponse,
|
|
628
|
+
context: __SerdeContext
|
|
629
|
+
) => Promise<DeleteWebAppCommandOutput>;
|
|
630
|
+
export declare const de_DeleteWebAppCustomizationCommand: (
|
|
631
|
+
output: __HttpResponse,
|
|
632
|
+
context: __SerdeContext
|
|
633
|
+
) => Promise<DeleteWebAppCustomizationCommandOutput>;
|
|
558
634
|
export declare const de_DeleteWorkflowCommand: (
|
|
559
635
|
output: __HttpResponse,
|
|
560
636
|
context: __SerdeContext
|
|
@@ -599,6 +675,14 @@ export declare const de_DescribeUserCommand: (
|
|
|
599
675
|
output: __HttpResponse,
|
|
600
676
|
context: __SerdeContext
|
|
601
677
|
) => Promise<DescribeUserCommandOutput>;
|
|
678
|
+
export declare const de_DescribeWebAppCommand: (
|
|
679
|
+
output: __HttpResponse,
|
|
680
|
+
context: __SerdeContext
|
|
681
|
+
) => Promise<DescribeWebAppCommandOutput>;
|
|
682
|
+
export declare const de_DescribeWebAppCustomizationCommand: (
|
|
683
|
+
output: __HttpResponse,
|
|
684
|
+
context: __SerdeContext
|
|
685
|
+
) => Promise<DescribeWebAppCustomizationCommandOutput>;
|
|
602
686
|
export declare const de_DescribeWorkflowCommand: (
|
|
603
687
|
output: __HttpResponse,
|
|
604
688
|
context: __SerdeContext
|
|
@@ -663,6 +747,10 @@ export declare const de_ListUsersCommand: (
|
|
|
663
747
|
output: __HttpResponse,
|
|
664
748
|
context: __SerdeContext
|
|
665
749
|
) => Promise<ListUsersCommandOutput>;
|
|
750
|
+
export declare const de_ListWebAppsCommand: (
|
|
751
|
+
output: __HttpResponse,
|
|
752
|
+
context: __SerdeContext
|
|
753
|
+
) => Promise<ListWebAppsCommandOutput>;
|
|
666
754
|
export declare const de_ListWorkflowsCommand: (
|
|
667
755
|
output: __HttpResponse,
|
|
668
756
|
context: __SerdeContext
|
|
@@ -735,3 +823,11 @@ export declare const de_UpdateUserCommand: (
|
|
|
735
823
|
output: __HttpResponse,
|
|
736
824
|
context: __SerdeContext
|
|
737
825
|
) => Promise<UpdateUserCommandOutput>;
|
|
826
|
+
export declare const de_UpdateWebAppCommand: (
|
|
827
|
+
output: __HttpResponse,
|
|
828
|
+
context: __SerdeContext
|
|
829
|
+
) => Promise<UpdateWebAppCommandOutput>;
|
|
830
|
+
export declare const de_UpdateWebAppCustomizationCommand: (
|
|
831
|
+
output: __HttpResponse,
|
|
832
|
+
context: __SerdeContext
|
|
833
|
+
) => Promise<UpdateWebAppCustomizationCommandOutput>;
|
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.709.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",
|
|
@@ -20,45 +20,45 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^3.0.
|
|
37
|
-
"@smithy/core": "^2.5.
|
|
38
|
-
"@smithy/fetch-http-handler": "^4.1.
|
|
39
|
-
"@smithy/hash-node": "^3.0.
|
|
40
|
-
"@smithy/invalid-dependency": "^3.0.
|
|
41
|
-
"@smithy/middleware-content-length": "^3.0.
|
|
42
|
-
"@smithy/middleware-endpoint": "^3.2.
|
|
43
|
-
"@smithy/middleware-retry": "^3.0.
|
|
44
|
-
"@smithy/middleware-serde": "^3.0.
|
|
45
|
-
"@smithy/middleware-stack": "^3.0.
|
|
46
|
-
"@smithy/node-config-provider": "^3.1.
|
|
47
|
-
"@smithy/node-http-handler": "^3.3.
|
|
48
|
-
"@smithy/protocol-http": "^4.1.
|
|
49
|
-
"@smithy/smithy-client": "^3.
|
|
50
|
-
"@smithy/types": "^3.7.
|
|
51
|
-
"@smithy/url-parser": "^3.0.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.709.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.709.0",
|
|
25
|
+
"@aws-sdk/core": "3.709.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.709.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.709.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.709.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.709.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.709.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.709.0",
|
|
32
|
+
"@aws-sdk/types": "3.709.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.709.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.709.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.709.0",
|
|
36
|
+
"@smithy/config-resolver": "^3.0.13",
|
|
37
|
+
"@smithy/core": "^2.5.5",
|
|
38
|
+
"@smithy/fetch-http-handler": "^4.1.2",
|
|
39
|
+
"@smithy/hash-node": "^3.0.11",
|
|
40
|
+
"@smithy/invalid-dependency": "^3.0.11",
|
|
41
|
+
"@smithy/middleware-content-length": "^3.0.13",
|
|
42
|
+
"@smithy/middleware-endpoint": "^3.2.5",
|
|
43
|
+
"@smithy/middleware-retry": "^3.0.30",
|
|
44
|
+
"@smithy/middleware-serde": "^3.0.11",
|
|
45
|
+
"@smithy/middleware-stack": "^3.0.11",
|
|
46
|
+
"@smithy/node-config-provider": "^3.1.12",
|
|
47
|
+
"@smithy/node-http-handler": "^3.3.2",
|
|
48
|
+
"@smithy/protocol-http": "^4.1.8",
|
|
49
|
+
"@smithy/smithy-client": "^3.5.0",
|
|
50
|
+
"@smithy/types": "^3.7.2",
|
|
51
|
+
"@smithy/url-parser": "^3.0.11",
|
|
52
52
|
"@smithy/util-base64": "^3.0.0",
|
|
53
53
|
"@smithy/util-body-length-browser": "^3.0.0",
|
|
54
54
|
"@smithy/util-body-length-node": "^3.0.0",
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^3.0.
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^3.0.
|
|
57
|
-
"@smithy/util-endpoints": "^2.1.
|
|
58
|
-
"@smithy/util-middleware": "^3.0.
|
|
59
|
-
"@smithy/util-retry": "^3.0.
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^3.0.30",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^3.0.30",
|
|
57
|
+
"@smithy/util-endpoints": "^2.1.7",
|
|
58
|
+
"@smithy/util-middleware": "^3.0.11",
|
|
59
|
+
"@smithy/util-retry": "^3.0.11",
|
|
60
60
|
"@smithy/util-utf8": "^3.0.0",
|
|
61
|
-
"@smithy/util-waiter": "^3.
|
|
61
|
+
"@smithy/util-waiter": "^3.2.0",
|
|
62
62
|
"tslib": "^2.6.2"
|
|
63
63
|
},
|
|
64
64
|
"devDependencies": {
|