@aws-sdk/client-appflow 3.212.0 → 3.214.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/Appflow.js +15 -0
- package/dist-cjs/commands/UpdateConnectorRegistrationCommand.js +46 -0
- package/dist-cjs/commands/index.js +1 -0
- package/dist-cjs/models/models_0.js +40 -5
- package/dist-cjs/protocols/Aws_restJson1.js +186 -1
- package/dist-es/Appflow.js +15 -0
- package/dist-es/commands/UpdateConnectorRegistrationCommand.js +42 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/models_0.js +29 -0
- package/dist-es/protocols/Aws_restJson1.js +183 -0
- package/dist-types/Appflow.d.ts +18 -3
- package/dist-types/AppflowClient.d.ts +3 -2
- package/dist-types/commands/RegisterConnectorCommand.d.ts +2 -2
- package/dist-types/commands/UnregisterConnectorCommand.d.ts +1 -1
- package/dist-types/commands/UpdateConnectorRegistrationCommand.d.ts +45 -0
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +244 -7
- package/dist-types/protocols/Aws_restJson1.d.ts +3 -0
- package/dist-types/ts3.4/Appflow.d.ts +17 -0
- package/dist-types/ts3.4/AppflowClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/UpdateConnectorRegistrationCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +62 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +12 -0
- package/package.json +2 -2
|
@@ -87,6 +87,10 @@ import {
|
|
|
87
87
|
UpdateConnectorProfileCommandInput,
|
|
88
88
|
UpdateConnectorProfileCommandOutput,
|
|
89
89
|
} from "../commands/UpdateConnectorProfileCommand";
|
|
90
|
+
import {
|
|
91
|
+
UpdateConnectorRegistrationCommandInput,
|
|
92
|
+
UpdateConnectorRegistrationCommandOutput,
|
|
93
|
+
} from "../commands/UpdateConnectorRegistrationCommand";
|
|
90
94
|
import {
|
|
91
95
|
UpdateFlowCommandInput,
|
|
92
96
|
UpdateFlowCommandOutput,
|
|
@@ -175,6 +179,10 @@ export declare const serializeAws_restJson1UpdateConnectorProfileCommand: (
|
|
|
175
179
|
input: UpdateConnectorProfileCommandInput,
|
|
176
180
|
context: __SerdeContext
|
|
177
181
|
) => Promise<__HttpRequest>;
|
|
182
|
+
export declare const serializeAws_restJson1UpdateConnectorRegistrationCommand: (
|
|
183
|
+
input: UpdateConnectorRegistrationCommandInput,
|
|
184
|
+
context: __SerdeContext
|
|
185
|
+
) => Promise<__HttpRequest>;
|
|
178
186
|
export declare const serializeAws_restJson1UpdateFlowCommand: (
|
|
179
187
|
input: UpdateFlowCommandInput,
|
|
180
188
|
context: __SerdeContext
|
|
@@ -263,6 +271,10 @@ export declare const deserializeAws_restJson1UpdateConnectorProfileCommand: (
|
|
|
263
271
|
output: __HttpResponse,
|
|
264
272
|
context: __SerdeContext
|
|
265
273
|
) => Promise<UpdateConnectorProfileCommandOutput>;
|
|
274
|
+
export declare const deserializeAws_restJson1UpdateConnectorRegistrationCommand: (
|
|
275
|
+
output: __HttpResponse,
|
|
276
|
+
context: __SerdeContext
|
|
277
|
+
) => Promise<UpdateConnectorRegistrationCommandOutput>;
|
|
266
278
|
export declare const deserializeAws_restJson1UpdateFlowCommand: (
|
|
267
279
|
output: __HttpResponse,
|
|
268
280
|
context: __SerdeContext
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-appflow",
|
|
3
3
|
"description": "AWS SDK for JavaScript Appflow Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.214.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",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
21
21
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
22
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
+
"@aws-sdk/client-sts": "3.213.0",
|
|
23
23
|
"@aws-sdk/config-resolver": "3.212.0",
|
|
24
24
|
"@aws-sdk/credential-provider-node": "3.212.0",
|
|
25
25
|
"@aws-sdk/fetch-http-handler": "3.212.0",
|