@aws-sdk/client-appintegrations 3.624.0 → 3.629.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 +47 -4
- package/dist-cjs/index.js +120 -1
- package/dist-es/AppIntegrations.js +4 -0
- package/dist-es/commands/CreateDataIntegrationAssociationCommand.js +24 -0
- package/dist-es/commands/UpdateDataIntegrationAssociationCommand.js +24 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/models/models_0.js +9 -0
- package/dist-es/protocols/Aws_restJson1.js +59 -0
- package/dist-types/AppIntegrations.d.ts +46 -5
- package/dist-types/AppIntegrationsClient.d.ts +36 -7
- package/dist-types/commands/CreateApplicationCommand.d.ts +1 -2
- package/dist-types/commands/CreateDataIntegrationAssociationCommand.d.ts +104 -0
- package/dist-types/commands/CreateDataIntegrationCommand.d.ts +1 -1
- package/dist-types/commands/DeleteApplicationCommand.d.ts +2 -1
- package/dist-types/commands/GetApplicationCommand.d.ts +1 -2
- package/dist-types/commands/ListApplicationsCommand.d.ts +1 -2
- package/dist-types/commands/ListDataIntegrationAssociationsCommand.d.ts +17 -0
- package/dist-types/commands/UpdateApplicationCommand.d.ts +1 -2
- package/dist-types/commands/UpdateDataIntegrationAssociationCommand.d.ts +91 -0
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/index.d.ts +32 -5
- package/dist-types/models/models_0.d.ts +197 -18
- package/dist-types/protocols/Aws_restJson1.d.ts +18 -0
- package/dist-types/ts3.4/AppIntegrations.d.ts +34 -0
- package/dist-types/ts3.4/AppIntegrationsClient.d.ts +12 -0
- package/dist-types/ts3.4/commands/CreateDataIntegrationAssociationCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/UpdateDataIntegrationAssociationCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +56 -9
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +24 -0
- package/package.json +5 -5
|
@@ -7,6 +7,10 @@ import {
|
|
|
7
7
|
CreateApplicationCommandInput,
|
|
8
8
|
CreateApplicationCommandOutput,
|
|
9
9
|
} from "../commands/CreateApplicationCommand";
|
|
10
|
+
import {
|
|
11
|
+
CreateDataIntegrationAssociationCommandInput,
|
|
12
|
+
CreateDataIntegrationAssociationCommandOutput,
|
|
13
|
+
} from "../commands/CreateDataIntegrationAssociationCommand";
|
|
10
14
|
import {
|
|
11
15
|
CreateDataIntegrationCommandInput,
|
|
12
16
|
CreateDataIntegrationCommandOutput,
|
|
@@ -79,6 +83,10 @@ import {
|
|
|
79
83
|
UpdateApplicationCommandInput,
|
|
80
84
|
UpdateApplicationCommandOutput,
|
|
81
85
|
} from "../commands/UpdateApplicationCommand";
|
|
86
|
+
import {
|
|
87
|
+
UpdateDataIntegrationAssociationCommandInput,
|
|
88
|
+
UpdateDataIntegrationAssociationCommandOutput,
|
|
89
|
+
} from "../commands/UpdateDataIntegrationAssociationCommand";
|
|
82
90
|
import {
|
|
83
91
|
UpdateDataIntegrationCommandInput,
|
|
84
92
|
UpdateDataIntegrationCommandOutput,
|
|
@@ -95,6 +103,10 @@ export declare const se_CreateDataIntegrationCommand: (
|
|
|
95
103
|
input: CreateDataIntegrationCommandInput,
|
|
96
104
|
context: __SerdeContext
|
|
97
105
|
) => Promise<__HttpRequest>;
|
|
106
|
+
export declare const se_CreateDataIntegrationAssociationCommand: (
|
|
107
|
+
input: CreateDataIntegrationAssociationCommandInput,
|
|
108
|
+
context: __SerdeContext
|
|
109
|
+
) => Promise<__HttpRequest>;
|
|
98
110
|
export declare const se_CreateEventIntegrationCommand: (
|
|
99
111
|
input: CreateEventIntegrationCommandInput,
|
|
100
112
|
context: __SerdeContext
|
|
@@ -167,6 +179,10 @@ export declare const se_UpdateDataIntegrationCommand: (
|
|
|
167
179
|
input: UpdateDataIntegrationCommandInput,
|
|
168
180
|
context: __SerdeContext
|
|
169
181
|
) => Promise<__HttpRequest>;
|
|
182
|
+
export declare const se_UpdateDataIntegrationAssociationCommand: (
|
|
183
|
+
input: UpdateDataIntegrationAssociationCommandInput,
|
|
184
|
+
context: __SerdeContext
|
|
185
|
+
) => Promise<__HttpRequest>;
|
|
170
186
|
export declare const se_UpdateEventIntegrationCommand: (
|
|
171
187
|
input: UpdateEventIntegrationCommandInput,
|
|
172
188
|
context: __SerdeContext
|
|
@@ -179,6 +195,10 @@ export declare const de_CreateDataIntegrationCommand: (
|
|
|
179
195
|
output: __HttpResponse,
|
|
180
196
|
context: __SerdeContext
|
|
181
197
|
) => Promise<CreateDataIntegrationCommandOutput>;
|
|
198
|
+
export declare const de_CreateDataIntegrationAssociationCommand: (
|
|
199
|
+
output: __HttpResponse,
|
|
200
|
+
context: __SerdeContext
|
|
201
|
+
) => Promise<CreateDataIntegrationAssociationCommandOutput>;
|
|
182
202
|
export declare const de_CreateEventIntegrationCommand: (
|
|
183
203
|
output: __HttpResponse,
|
|
184
204
|
context: __SerdeContext
|
|
@@ -251,6 +271,10 @@ export declare const de_UpdateDataIntegrationCommand: (
|
|
|
251
271
|
output: __HttpResponse,
|
|
252
272
|
context: __SerdeContext
|
|
253
273
|
) => Promise<UpdateDataIntegrationCommandOutput>;
|
|
274
|
+
export declare const de_UpdateDataIntegrationAssociationCommand: (
|
|
275
|
+
output: __HttpResponse,
|
|
276
|
+
context: __SerdeContext
|
|
277
|
+
) => Promise<UpdateDataIntegrationAssociationCommandOutput>;
|
|
254
278
|
export declare const de_UpdateEventIntegrationCommand: (
|
|
255
279
|
output: __HttpResponse,
|
|
256
280
|
context: __SerdeContext
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-appintegrations",
|
|
3
3
|
"description": "AWS SDK for JavaScript Appintegrations Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.629.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-appintegrations",
|
|
@@ -20,10 +20,10 @@
|
|
|
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.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.629.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.629.0",
|
|
25
|
+
"@aws-sdk/core": "3.629.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.629.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.620.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.609.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.620.0",
|