@aws-sdk/client-appintegrations 3.477.0 → 3.479.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 +16 -0
- package/dist-cjs/AppIntegrations.js +4 -0
- package/dist-cjs/commands/DeleteApplicationCommand.js +51 -0
- package/dist-cjs/commands/ListApplicationAssociationsCommand.js +51 -0
- package/dist-cjs/commands/index.js +2 -0
- package/dist-cjs/models/models_0.js +15 -1
- package/dist-cjs/pagination/ListApplicationAssociationsPaginator.js +7 -0
- package/dist-cjs/pagination/ListApplicationsPaginator.js +2 -24
- package/dist-cjs/pagination/ListDataIntegrationAssociationsPaginator.js +2 -24
- package/dist-cjs/pagination/ListDataIntegrationsPaginator.js +2 -24
- package/dist-cjs/pagination/ListEventIntegrationAssociationsPaginator.js +2 -24
- package/dist-cjs/pagination/ListEventIntegrationsPaginator.js +2 -24
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_restJson1.js +136 -1
- package/dist-es/AppIntegrations.js +4 -0
- package/dist-es/commands/DeleteApplicationCommand.js +47 -0
- package/dist-es/commands/ListApplicationAssociationsCommand.js +47 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/models/models_0.js +13 -0
- package/dist-es/pagination/ListApplicationAssociationsPaginator.js +4 -0
- package/dist-es/pagination/ListApplicationsPaginator.js +2 -23
- package/dist-es/pagination/ListDataIntegrationAssociationsPaginator.js +2 -23
- package/dist-es/pagination/ListDataIntegrationsPaginator.js +2 -23
- package/dist-es/pagination/ListEventIntegrationAssociationsPaginator.js +2 -23
- package/dist-es/pagination/ListEventIntegrationsPaginator.js +2 -23
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +132 -1
- package/dist-types/AppIntegrations.d.ts +14 -0
- package/dist-types/AppIntegrationsClient.d.ts +4 -2
- package/dist-types/commands/CreateApplicationCommand.d.ts +6 -0
- package/dist-types/commands/DeleteApplicationCommand.d.ts +86 -0
- package/dist-types/commands/GetApplicationCommand.d.ts +3 -0
- package/dist-types/commands/ListApplicationAssociationsCommand.d.ts +97 -0
- package/dist-types/commands/UpdateApplicationCommand.d.ts +6 -0
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +116 -4
- package/dist-types/pagination/ListApplicationAssociationsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListApplicationsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListDataIntegrationAssociationsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListDataIntegrationsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListEventIntegrationAssociationsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListEventIntegrationsPaginator.d.ts +1 -1
- package/dist-types/pagination/index.d.ts +1 -0
- 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/DeleteApplicationCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListApplicationAssociationsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +32 -3
- package/dist-types/ts3.4/pagination/ListApplicationAssociationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListApplicationsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListDataIntegrationAssociationsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListDataIntegrationsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListEventIntegrationAssociationsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListEventIntegrationsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +24 -0
- package/package.json +5 -5
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
AppIntegrationsClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../AppIntegrationsClient";
|
|
14
|
+
import {
|
|
15
|
+
DeleteApplicationRequest,
|
|
16
|
+
DeleteApplicationResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface DeleteApplicationCommandInput
|
|
20
|
+
extends DeleteApplicationRequest {}
|
|
21
|
+
export interface DeleteApplicationCommandOutput
|
|
22
|
+
extends DeleteApplicationResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class DeleteApplicationCommand extends $Command<
|
|
25
|
+
DeleteApplicationCommandInput,
|
|
26
|
+
DeleteApplicationCommandOutput,
|
|
27
|
+
AppIntegrationsClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: DeleteApplicationCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: DeleteApplicationCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: AppIntegrationsClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<DeleteApplicationCommandInput, DeleteApplicationCommandOutput>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
AppIntegrationsClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../AppIntegrationsClient";
|
|
14
|
+
import {
|
|
15
|
+
ListApplicationAssociationsRequest,
|
|
16
|
+
ListApplicationAssociationsResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface ListApplicationAssociationsCommandInput
|
|
20
|
+
extends ListApplicationAssociationsRequest {}
|
|
21
|
+
export interface ListApplicationAssociationsCommandOutput
|
|
22
|
+
extends ListApplicationAssociationsResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class ListApplicationAssociationsCommand extends $Command<
|
|
25
|
+
ListApplicationAssociationsCommandInput,
|
|
26
|
+
ListApplicationAssociationsCommandOutput,
|
|
27
|
+
AppIntegrationsClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: ListApplicationAssociationsCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: ListApplicationAssociationsCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: AppIntegrationsClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
ListApplicationAssociationsCommandInput,
|
|
38
|
+
ListApplicationAssociationsCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
export * from "./CreateApplicationCommand";
|
|
2
2
|
export * from "./CreateDataIntegrationCommand";
|
|
3
3
|
export * from "./CreateEventIntegrationCommand";
|
|
4
|
+
export * from "./DeleteApplicationCommand";
|
|
4
5
|
export * from "./DeleteDataIntegrationCommand";
|
|
5
6
|
export * from "./DeleteEventIntegrationCommand";
|
|
6
7
|
export * from "./GetApplicationCommand";
|
|
7
8
|
export * from "./GetDataIntegrationCommand";
|
|
8
9
|
export * from "./GetEventIntegrationCommand";
|
|
10
|
+
export * from "./ListApplicationAssociationsCommand";
|
|
9
11
|
export * from "./ListApplicationsCommand";
|
|
10
12
|
export * from "./ListDataIntegrationAssociationsCommand";
|
|
11
13
|
export * from "./ListDataIntegrationsCommand";
|
|
@@ -33,6 +33,7 @@ export interface CreateApplicationRequest {
|
|
|
33
33
|
Publications?: Publication[];
|
|
34
34
|
ClientToken?: string;
|
|
35
35
|
Tags?: Record<string, string>;
|
|
36
|
+
Permissions?: string[];
|
|
36
37
|
}
|
|
37
38
|
export interface CreateApplicationResponse {
|
|
38
39
|
Arn?: string;
|
|
@@ -78,6 +79,14 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
78
79
|
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
79
80
|
);
|
|
80
81
|
}
|
|
82
|
+
export declare class UnsupportedOperationException extends __BaseException {
|
|
83
|
+
readonly name: "UnsupportedOperationException";
|
|
84
|
+
readonly $fault: "client";
|
|
85
|
+
Message?: string;
|
|
86
|
+
constructor(
|
|
87
|
+
opts: __ExceptionOptionType<UnsupportedOperationException, __BaseException>
|
|
88
|
+
);
|
|
89
|
+
}
|
|
81
90
|
export interface FileConfiguration {
|
|
82
91
|
Folders: string[] | undefined;
|
|
83
92
|
Filters?: Record<string, string[]>;
|
|
@@ -125,10 +134,10 @@ export interface CreateEventIntegrationRequest {
|
|
|
125
134
|
export interface CreateEventIntegrationResponse {
|
|
126
135
|
EventIntegrationArn?: string;
|
|
127
136
|
}
|
|
128
|
-
export interface
|
|
129
|
-
|
|
137
|
+
export interface DeleteApplicationRequest {
|
|
138
|
+
Arn: string | undefined;
|
|
130
139
|
}
|
|
131
|
-
export interface
|
|
140
|
+
export interface DeleteApplicationResponse {}
|
|
132
141
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
133
142
|
readonly name: "ResourceNotFoundException";
|
|
134
143
|
readonly $fault: "client";
|
|
@@ -137,6 +146,10 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
137
146
|
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
138
147
|
);
|
|
139
148
|
}
|
|
149
|
+
export interface DeleteDataIntegrationRequest {
|
|
150
|
+
DataIntegrationIdentifier: string | undefined;
|
|
151
|
+
}
|
|
152
|
+
export interface DeleteDataIntegrationResponse {}
|
|
140
153
|
export interface DeleteEventIntegrationRequest {
|
|
141
154
|
Name: string | undefined;
|
|
142
155
|
}
|
|
@@ -156,6 +169,7 @@ export interface GetApplicationResponse {
|
|
|
156
169
|
CreatedTime?: Date;
|
|
157
170
|
LastModifiedTime?: Date;
|
|
158
171
|
Tags?: Record<string, string>;
|
|
172
|
+
Permissions?: string[];
|
|
159
173
|
}
|
|
160
174
|
export interface GetDataIntegrationRequest {
|
|
161
175
|
Identifier: string | undefined;
|
|
@@ -183,6 +197,20 @@ export interface GetEventIntegrationResponse {
|
|
|
183
197
|
EventFilter?: EventFilter;
|
|
184
198
|
Tags?: Record<string, string>;
|
|
185
199
|
}
|
|
200
|
+
export interface ListApplicationAssociationsRequest {
|
|
201
|
+
ApplicationId: string | undefined;
|
|
202
|
+
NextToken?: string;
|
|
203
|
+
MaxResults?: number;
|
|
204
|
+
}
|
|
205
|
+
export interface ApplicationAssociationSummary {
|
|
206
|
+
ApplicationAssociationArn?: string;
|
|
207
|
+
ApplicationArn?: string;
|
|
208
|
+
ClientId?: string;
|
|
209
|
+
}
|
|
210
|
+
export interface ListApplicationAssociationsResponse {
|
|
211
|
+
ApplicationAssociations?: ApplicationAssociationSummary[];
|
|
212
|
+
NextToken?: string;
|
|
213
|
+
}
|
|
186
214
|
export interface ListApplicationsRequest {
|
|
187
215
|
NextToken?: string;
|
|
188
216
|
MaxResults?: number;
|
|
@@ -282,6 +310,7 @@ export interface UpdateApplicationRequest {
|
|
|
282
310
|
ApplicationSourceConfig?: ApplicationSourceConfig;
|
|
283
311
|
Subscriptions?: Subscription[];
|
|
284
312
|
Publications?: Publication[];
|
|
313
|
+
Permissions?: string[];
|
|
285
314
|
}
|
|
286
315
|
export interface UpdateApplicationResponse {}
|
|
287
316
|
export interface UpdateDataIntegrationRequest {
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListApplicationAssociationsCommandInput,
|
|
4
|
+
ListApplicationAssociationsCommandOutput,
|
|
5
|
+
} from "../commands/ListApplicationAssociationsCommand";
|
|
6
|
+
import { AppIntegrationsPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListApplicationAssociations: (
|
|
8
|
+
config: AppIntegrationsPaginationConfiguration,
|
|
9
|
+
input: ListApplicationAssociationsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListApplicationAssociationsCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListApplicationsCommandOutput,
|
|
5
5
|
} from "../commands/ListApplicationsCommand";
|
|
6
6
|
import { AppIntegrationsPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListApplications: (
|
|
8
8
|
config: AppIntegrationsPaginationConfiguration,
|
|
9
9
|
input: ListApplicationsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListApplicationsCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListDataIntegrationAssociationsCommandOutput,
|
|
5
5
|
} from "../commands/ListDataIntegrationAssociationsCommand";
|
|
6
6
|
import { AppIntegrationsPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListDataIntegrationAssociations: (
|
|
8
8
|
config: AppIntegrationsPaginationConfiguration,
|
|
9
9
|
input: ListDataIntegrationAssociationsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListDataIntegrationAssociationsCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListDataIntegrationsCommandOutput,
|
|
5
5
|
} from "../commands/ListDataIntegrationsCommand";
|
|
6
6
|
import { AppIntegrationsPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListDataIntegrations: (
|
|
8
8
|
config: AppIntegrationsPaginationConfiguration,
|
|
9
9
|
input: ListDataIntegrationsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListDataIntegrationsCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListEventIntegrationAssociationsCommandOutput,
|
|
5
5
|
} from "../commands/ListEventIntegrationAssociationsCommand";
|
|
6
6
|
import { AppIntegrationsPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListEventIntegrationAssociations: (
|
|
8
8
|
config: AppIntegrationsPaginationConfiguration,
|
|
9
9
|
input: ListEventIntegrationAssociationsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListEventIntegrationAssociationsCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListEventIntegrationsCommandOutput,
|
|
5
5
|
} from "../commands/ListEventIntegrationsCommand";
|
|
6
6
|
import { AppIntegrationsPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListEventIntegrations: (
|
|
8
8
|
config: AppIntegrationsPaginationConfiguration,
|
|
9
9
|
input: ListEventIntegrationsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListEventIntegrationsCommandOutput>;
|
|
@@ -15,6 +15,10 @@ import {
|
|
|
15
15
|
CreateEventIntegrationCommandInput,
|
|
16
16
|
CreateEventIntegrationCommandOutput,
|
|
17
17
|
} from "../commands/CreateEventIntegrationCommand";
|
|
18
|
+
import {
|
|
19
|
+
DeleteApplicationCommandInput,
|
|
20
|
+
DeleteApplicationCommandOutput,
|
|
21
|
+
} from "../commands/DeleteApplicationCommand";
|
|
18
22
|
import {
|
|
19
23
|
DeleteDataIntegrationCommandInput,
|
|
20
24
|
DeleteDataIntegrationCommandOutput,
|
|
@@ -35,6 +39,10 @@ import {
|
|
|
35
39
|
GetEventIntegrationCommandInput,
|
|
36
40
|
GetEventIntegrationCommandOutput,
|
|
37
41
|
} from "../commands/GetEventIntegrationCommand";
|
|
42
|
+
import {
|
|
43
|
+
ListApplicationAssociationsCommandInput,
|
|
44
|
+
ListApplicationAssociationsCommandOutput,
|
|
45
|
+
} from "../commands/ListApplicationAssociationsCommand";
|
|
38
46
|
import {
|
|
39
47
|
ListApplicationsCommandInput,
|
|
40
48
|
ListApplicationsCommandOutput,
|
|
@@ -91,6 +99,10 @@ export declare const se_CreateEventIntegrationCommand: (
|
|
|
91
99
|
input: CreateEventIntegrationCommandInput,
|
|
92
100
|
context: __SerdeContext
|
|
93
101
|
) => Promise<__HttpRequest>;
|
|
102
|
+
export declare const se_DeleteApplicationCommand: (
|
|
103
|
+
input: DeleteApplicationCommandInput,
|
|
104
|
+
context: __SerdeContext
|
|
105
|
+
) => Promise<__HttpRequest>;
|
|
94
106
|
export declare const se_DeleteDataIntegrationCommand: (
|
|
95
107
|
input: DeleteDataIntegrationCommandInput,
|
|
96
108
|
context: __SerdeContext
|
|
@@ -111,6 +123,10 @@ export declare const se_GetEventIntegrationCommand: (
|
|
|
111
123
|
input: GetEventIntegrationCommandInput,
|
|
112
124
|
context: __SerdeContext
|
|
113
125
|
) => Promise<__HttpRequest>;
|
|
126
|
+
export declare const se_ListApplicationAssociationsCommand: (
|
|
127
|
+
input: ListApplicationAssociationsCommandInput,
|
|
128
|
+
context: __SerdeContext
|
|
129
|
+
) => Promise<__HttpRequest>;
|
|
114
130
|
export declare const se_ListApplicationsCommand: (
|
|
115
131
|
input: ListApplicationsCommandInput,
|
|
116
132
|
context: __SerdeContext
|
|
@@ -167,6 +183,10 @@ export declare const de_CreateEventIntegrationCommand: (
|
|
|
167
183
|
output: __HttpResponse,
|
|
168
184
|
context: __SerdeContext
|
|
169
185
|
) => Promise<CreateEventIntegrationCommandOutput>;
|
|
186
|
+
export declare const de_DeleteApplicationCommand: (
|
|
187
|
+
output: __HttpResponse,
|
|
188
|
+
context: __SerdeContext
|
|
189
|
+
) => Promise<DeleteApplicationCommandOutput>;
|
|
170
190
|
export declare const de_DeleteDataIntegrationCommand: (
|
|
171
191
|
output: __HttpResponse,
|
|
172
192
|
context: __SerdeContext
|
|
@@ -187,6 +207,10 @@ export declare const de_GetEventIntegrationCommand: (
|
|
|
187
207
|
output: __HttpResponse,
|
|
188
208
|
context: __SerdeContext
|
|
189
209
|
) => Promise<GetEventIntegrationCommandOutput>;
|
|
210
|
+
export declare const de_ListApplicationAssociationsCommand: (
|
|
211
|
+
output: __HttpResponse,
|
|
212
|
+
context: __SerdeContext
|
|
213
|
+
) => Promise<ListApplicationAssociationsCommandOutput>;
|
|
190
214
|
export declare const de_ListApplicationsCommand: (
|
|
191
215
|
output: __HttpResponse,
|
|
192
216
|
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.479.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",
|
|
@@ -20,17 +20,17 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.478.0",
|
|
24
24
|
"@aws-sdk/core": "3.477.0",
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.478.0",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "3.468.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.468.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.468.0",
|
|
29
29
|
"@aws-sdk/middleware-signing": "3.468.0",
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.478.0",
|
|
31
31
|
"@aws-sdk/region-config-resolver": "3.470.0",
|
|
32
32
|
"@aws-sdk/types": "3.468.0",
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.478.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "3.468.0",
|
|
35
35
|
"@aws-sdk/util-user-agent-node": "3.470.0",
|
|
36
36
|
"@smithy/config-resolver": "^2.0.21",
|