@aws-sdk/client-appsync 3.975.0 → 3.978.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 +39 -25
- package/dist-es/AppSync.js +27 -1
- package/dist-types/AppSync.d.ts +85 -1
- package/dist-types/ts3.4/AppSync.d.ts +89 -1
- package/package.json +17 -17
package/dist-cjs/index.js
CHANGED
|
@@ -3068,6 +3068,30 @@ class UpdateTypeCommand extends smithyClient.Command
|
|
|
3068
3068
|
.build() {
|
|
3069
3069
|
}
|
|
3070
3070
|
|
|
3071
|
+
const paginateListApiKeys = core.createPaginator(AppSyncClient, ListApiKeysCommand, "nextToken", "nextToken", "maxResults");
|
|
3072
|
+
|
|
3073
|
+
const paginateListApis = core.createPaginator(AppSyncClient, ListApisCommand, "nextToken", "nextToken", "maxResults");
|
|
3074
|
+
|
|
3075
|
+
const paginateListChannelNamespaces = core.createPaginator(AppSyncClient, ListChannelNamespacesCommand, "nextToken", "nextToken", "maxResults");
|
|
3076
|
+
|
|
3077
|
+
const paginateListDataSources = core.createPaginator(AppSyncClient, ListDataSourcesCommand, "nextToken", "nextToken", "maxResults");
|
|
3078
|
+
|
|
3079
|
+
const paginateListDomainNames = core.createPaginator(AppSyncClient, ListDomainNamesCommand, "nextToken", "nextToken", "maxResults");
|
|
3080
|
+
|
|
3081
|
+
const paginateListFunctions = core.createPaginator(AppSyncClient, ListFunctionsCommand, "nextToken", "nextToken", "maxResults");
|
|
3082
|
+
|
|
3083
|
+
const paginateListGraphqlApis = core.createPaginator(AppSyncClient, ListGraphqlApisCommand, "nextToken", "nextToken", "maxResults");
|
|
3084
|
+
|
|
3085
|
+
const paginateListResolversByFunction = core.createPaginator(AppSyncClient, ListResolversByFunctionCommand, "nextToken", "nextToken", "maxResults");
|
|
3086
|
+
|
|
3087
|
+
const paginateListResolvers = core.createPaginator(AppSyncClient, ListResolversCommand, "nextToken", "nextToken", "maxResults");
|
|
3088
|
+
|
|
3089
|
+
const paginateListSourceApiAssociations = core.createPaginator(AppSyncClient, ListSourceApiAssociationsCommand, "nextToken", "nextToken", "maxResults");
|
|
3090
|
+
|
|
3091
|
+
const paginateListTypesByAssociation = core.createPaginator(AppSyncClient, ListTypesByAssociationCommand, "nextToken", "nextToken", "maxResults");
|
|
3092
|
+
|
|
3093
|
+
const paginateListTypes = core.createPaginator(AppSyncClient, ListTypesCommand, "nextToken", "nextToken", "maxResults");
|
|
3094
|
+
|
|
3071
3095
|
const commands = {
|
|
3072
3096
|
AssociateApiCommand,
|
|
3073
3097
|
AssociateMergedGraphqlApiCommand,
|
|
@@ -3144,33 +3168,23 @@ const commands = {
|
|
|
3144
3168
|
UpdateSourceApiAssociationCommand,
|
|
3145
3169
|
UpdateTypeCommand,
|
|
3146
3170
|
};
|
|
3171
|
+
const paginators = {
|
|
3172
|
+
paginateListApiKeys,
|
|
3173
|
+
paginateListApis,
|
|
3174
|
+
paginateListChannelNamespaces,
|
|
3175
|
+
paginateListDataSources,
|
|
3176
|
+
paginateListDomainNames,
|
|
3177
|
+
paginateListFunctions,
|
|
3178
|
+
paginateListGraphqlApis,
|
|
3179
|
+
paginateListResolvers,
|
|
3180
|
+
paginateListResolversByFunction,
|
|
3181
|
+
paginateListSourceApiAssociations,
|
|
3182
|
+
paginateListTypes,
|
|
3183
|
+
paginateListTypesByAssociation,
|
|
3184
|
+
};
|
|
3147
3185
|
class AppSync extends AppSyncClient {
|
|
3148
3186
|
}
|
|
3149
|
-
smithyClient.createAggregatedClient(commands, AppSync);
|
|
3150
|
-
|
|
3151
|
-
const paginateListApiKeys = core.createPaginator(AppSyncClient, ListApiKeysCommand, "nextToken", "nextToken", "maxResults");
|
|
3152
|
-
|
|
3153
|
-
const paginateListApis = core.createPaginator(AppSyncClient, ListApisCommand, "nextToken", "nextToken", "maxResults");
|
|
3154
|
-
|
|
3155
|
-
const paginateListChannelNamespaces = core.createPaginator(AppSyncClient, ListChannelNamespacesCommand, "nextToken", "nextToken", "maxResults");
|
|
3156
|
-
|
|
3157
|
-
const paginateListDataSources = core.createPaginator(AppSyncClient, ListDataSourcesCommand, "nextToken", "nextToken", "maxResults");
|
|
3158
|
-
|
|
3159
|
-
const paginateListDomainNames = core.createPaginator(AppSyncClient, ListDomainNamesCommand, "nextToken", "nextToken", "maxResults");
|
|
3160
|
-
|
|
3161
|
-
const paginateListFunctions = core.createPaginator(AppSyncClient, ListFunctionsCommand, "nextToken", "nextToken", "maxResults");
|
|
3162
|
-
|
|
3163
|
-
const paginateListGraphqlApis = core.createPaginator(AppSyncClient, ListGraphqlApisCommand, "nextToken", "nextToken", "maxResults");
|
|
3164
|
-
|
|
3165
|
-
const paginateListResolvers = core.createPaginator(AppSyncClient, ListResolversCommand, "nextToken", "nextToken", "maxResults");
|
|
3166
|
-
|
|
3167
|
-
const paginateListResolversByFunction = core.createPaginator(AppSyncClient, ListResolversByFunctionCommand, "nextToken", "nextToken", "maxResults");
|
|
3168
|
-
|
|
3169
|
-
const paginateListSourceApiAssociations = core.createPaginator(AppSyncClient, ListSourceApiAssociationsCommand, "nextToken", "nextToken", "maxResults");
|
|
3170
|
-
|
|
3171
|
-
const paginateListTypes = core.createPaginator(AppSyncClient, ListTypesCommand, "nextToken", "nextToken", "maxResults");
|
|
3172
|
-
|
|
3173
|
-
const paginateListTypesByAssociation = core.createPaginator(AppSyncClient, ListTypesByAssociationCommand, "nextToken", "nextToken", "maxResults");
|
|
3187
|
+
smithyClient.createAggregatedClient(commands, AppSync, { paginators });
|
|
3174
3188
|
|
|
3175
3189
|
const AuthenticationType = {
|
|
3176
3190
|
AMAZON_COGNITO_USER_POOLS: "AMAZON_COGNITO_USER_POOLS",
|
package/dist-es/AppSync.js
CHANGED
|
@@ -74,6 +74,18 @@ import { UpdateGraphqlApiCommand, } from "./commands/UpdateGraphqlApiCommand";
|
|
|
74
74
|
import { UpdateResolverCommand, } from "./commands/UpdateResolverCommand";
|
|
75
75
|
import { UpdateSourceApiAssociationCommand, } from "./commands/UpdateSourceApiAssociationCommand";
|
|
76
76
|
import { UpdateTypeCommand } from "./commands/UpdateTypeCommand";
|
|
77
|
+
import { paginateListApiKeys } from "./pagination/ListApiKeysPaginator";
|
|
78
|
+
import { paginateListApis } from "./pagination/ListApisPaginator";
|
|
79
|
+
import { paginateListChannelNamespaces } from "./pagination/ListChannelNamespacesPaginator";
|
|
80
|
+
import { paginateListDataSources } from "./pagination/ListDataSourcesPaginator";
|
|
81
|
+
import { paginateListDomainNames } from "./pagination/ListDomainNamesPaginator";
|
|
82
|
+
import { paginateListFunctions } from "./pagination/ListFunctionsPaginator";
|
|
83
|
+
import { paginateListGraphqlApis } from "./pagination/ListGraphqlApisPaginator";
|
|
84
|
+
import { paginateListResolversByFunction } from "./pagination/ListResolversByFunctionPaginator";
|
|
85
|
+
import { paginateListResolvers } from "./pagination/ListResolversPaginator";
|
|
86
|
+
import { paginateListSourceApiAssociations } from "./pagination/ListSourceApiAssociationsPaginator";
|
|
87
|
+
import { paginateListTypesByAssociation } from "./pagination/ListTypesByAssociationPaginator";
|
|
88
|
+
import { paginateListTypes } from "./pagination/ListTypesPaginator";
|
|
77
89
|
const commands = {
|
|
78
90
|
AssociateApiCommand,
|
|
79
91
|
AssociateMergedGraphqlApiCommand,
|
|
@@ -150,6 +162,20 @@ const commands = {
|
|
|
150
162
|
UpdateSourceApiAssociationCommand,
|
|
151
163
|
UpdateTypeCommand,
|
|
152
164
|
};
|
|
165
|
+
const paginators = {
|
|
166
|
+
paginateListApiKeys,
|
|
167
|
+
paginateListApis,
|
|
168
|
+
paginateListChannelNamespaces,
|
|
169
|
+
paginateListDataSources,
|
|
170
|
+
paginateListDomainNames,
|
|
171
|
+
paginateListFunctions,
|
|
172
|
+
paginateListGraphqlApis,
|
|
173
|
+
paginateListResolvers,
|
|
174
|
+
paginateListResolversByFunction,
|
|
175
|
+
paginateListSourceApiAssociations,
|
|
176
|
+
paginateListTypes,
|
|
177
|
+
paginateListTypesByAssociation,
|
|
178
|
+
};
|
|
153
179
|
export class AppSync extends AppSyncClient {
|
|
154
180
|
}
|
|
155
|
-
createAggregatedClient(commands, AppSync);
|
|
181
|
+
createAggregatedClient(commands, AppSync, { paginators });
|
package/dist-types/AppSync.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
1
|
+
import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator } from "@smithy/types";
|
|
2
2
|
import { AppSyncClient } from "./AppSyncClient";
|
|
3
3
|
import { AssociateApiCommandInput, AssociateApiCommandOutput } from "./commands/AssociateApiCommand";
|
|
4
4
|
import { AssociateMergedGraphqlApiCommandInput, AssociateMergedGraphqlApiCommandOutput } from "./commands/AssociateMergedGraphqlApiCommand";
|
|
@@ -523,6 +523,90 @@ export interface AppSync {
|
|
|
523
523
|
updateType(args: UpdateTypeCommandInput, options?: __HttpHandlerOptions): Promise<UpdateTypeCommandOutput>;
|
|
524
524
|
updateType(args: UpdateTypeCommandInput, cb: (err: any, data?: UpdateTypeCommandOutput) => void): void;
|
|
525
525
|
updateType(args: UpdateTypeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateTypeCommandOutput) => void): void;
|
|
526
|
+
/**
|
|
527
|
+
* @see {@link ListApiKeysCommand}
|
|
528
|
+
* @param args - command input.
|
|
529
|
+
* @param paginationConfig - optional pagination config.
|
|
530
|
+
* @returns AsyncIterable of {@link ListApiKeysCommandOutput}.
|
|
531
|
+
*/
|
|
532
|
+
paginateListApiKeys(args: ListApiKeysCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListApiKeysCommandOutput>;
|
|
533
|
+
/**
|
|
534
|
+
* @see {@link ListApisCommand}
|
|
535
|
+
* @param args - command input.
|
|
536
|
+
* @param paginationConfig - optional pagination config.
|
|
537
|
+
* @returns AsyncIterable of {@link ListApisCommandOutput}.
|
|
538
|
+
*/
|
|
539
|
+
paginateListApis(args?: ListApisCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListApisCommandOutput>;
|
|
540
|
+
/**
|
|
541
|
+
* @see {@link ListChannelNamespacesCommand}
|
|
542
|
+
* @param args - command input.
|
|
543
|
+
* @param paginationConfig - optional pagination config.
|
|
544
|
+
* @returns AsyncIterable of {@link ListChannelNamespacesCommandOutput}.
|
|
545
|
+
*/
|
|
546
|
+
paginateListChannelNamespaces(args: ListChannelNamespacesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListChannelNamespacesCommandOutput>;
|
|
547
|
+
/**
|
|
548
|
+
* @see {@link ListDataSourcesCommand}
|
|
549
|
+
* @param args - command input.
|
|
550
|
+
* @param paginationConfig - optional pagination config.
|
|
551
|
+
* @returns AsyncIterable of {@link ListDataSourcesCommandOutput}.
|
|
552
|
+
*/
|
|
553
|
+
paginateListDataSources(args: ListDataSourcesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListDataSourcesCommandOutput>;
|
|
554
|
+
/**
|
|
555
|
+
* @see {@link ListDomainNamesCommand}
|
|
556
|
+
* @param args - command input.
|
|
557
|
+
* @param paginationConfig - optional pagination config.
|
|
558
|
+
* @returns AsyncIterable of {@link ListDomainNamesCommandOutput}.
|
|
559
|
+
*/
|
|
560
|
+
paginateListDomainNames(args?: ListDomainNamesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListDomainNamesCommandOutput>;
|
|
561
|
+
/**
|
|
562
|
+
* @see {@link ListFunctionsCommand}
|
|
563
|
+
* @param args - command input.
|
|
564
|
+
* @param paginationConfig - optional pagination config.
|
|
565
|
+
* @returns AsyncIterable of {@link ListFunctionsCommandOutput}.
|
|
566
|
+
*/
|
|
567
|
+
paginateListFunctions(args: ListFunctionsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListFunctionsCommandOutput>;
|
|
568
|
+
/**
|
|
569
|
+
* @see {@link ListGraphqlApisCommand}
|
|
570
|
+
* @param args - command input.
|
|
571
|
+
* @param paginationConfig - optional pagination config.
|
|
572
|
+
* @returns AsyncIterable of {@link ListGraphqlApisCommandOutput}.
|
|
573
|
+
*/
|
|
574
|
+
paginateListGraphqlApis(args?: ListGraphqlApisCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListGraphqlApisCommandOutput>;
|
|
575
|
+
/**
|
|
576
|
+
* @see {@link ListResolversCommand}
|
|
577
|
+
* @param args - command input.
|
|
578
|
+
* @param paginationConfig - optional pagination config.
|
|
579
|
+
* @returns AsyncIterable of {@link ListResolversCommandOutput}.
|
|
580
|
+
*/
|
|
581
|
+
paginateListResolvers(args: ListResolversCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListResolversCommandOutput>;
|
|
582
|
+
/**
|
|
583
|
+
* @see {@link ListResolversByFunctionCommand}
|
|
584
|
+
* @param args - command input.
|
|
585
|
+
* @param paginationConfig - optional pagination config.
|
|
586
|
+
* @returns AsyncIterable of {@link ListResolversByFunctionCommandOutput}.
|
|
587
|
+
*/
|
|
588
|
+
paginateListResolversByFunction(args: ListResolversByFunctionCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListResolversByFunctionCommandOutput>;
|
|
589
|
+
/**
|
|
590
|
+
* @see {@link ListSourceApiAssociationsCommand}
|
|
591
|
+
* @param args - command input.
|
|
592
|
+
* @param paginationConfig - optional pagination config.
|
|
593
|
+
* @returns AsyncIterable of {@link ListSourceApiAssociationsCommandOutput}.
|
|
594
|
+
*/
|
|
595
|
+
paginateListSourceApiAssociations(args: ListSourceApiAssociationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListSourceApiAssociationsCommandOutput>;
|
|
596
|
+
/**
|
|
597
|
+
* @see {@link ListTypesCommand}
|
|
598
|
+
* @param args - command input.
|
|
599
|
+
* @param paginationConfig - optional pagination config.
|
|
600
|
+
* @returns AsyncIterable of {@link ListTypesCommandOutput}.
|
|
601
|
+
*/
|
|
602
|
+
paginateListTypes(args: ListTypesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListTypesCommandOutput>;
|
|
603
|
+
/**
|
|
604
|
+
* @see {@link ListTypesByAssociationCommand}
|
|
605
|
+
* @param args - command input.
|
|
606
|
+
* @param paginationConfig - optional pagination config.
|
|
607
|
+
* @returns AsyncIterable of {@link ListTypesByAssociationCommandOutput}.
|
|
608
|
+
*/
|
|
609
|
+
paginateListTypesByAssociation(args: ListTypesByAssociationCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListTypesByAssociationCommandOutput>;
|
|
526
610
|
}
|
|
527
611
|
/**
|
|
528
612
|
* <p>AppSync provides API actions for creating and interacting with data
|
|
@@ -1,4 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import {
|
|
2
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
3
|
+
PaginationConfiguration,
|
|
4
|
+
Paginator,
|
|
5
|
+
} from "@smithy/types";
|
|
2
6
|
import { AppSyncClient } from "./AppSyncClient";
|
|
3
7
|
import {
|
|
4
8
|
AssociateApiCommandInput,
|
|
@@ -1275,5 +1279,89 @@ export interface AppSync {
|
|
|
1275
1279
|
options: __HttpHandlerOptions,
|
|
1276
1280
|
cb: (err: any, data?: UpdateTypeCommandOutput) => void
|
|
1277
1281
|
): void;
|
|
1282
|
+
paginateListApiKeys(
|
|
1283
|
+
args: ListApiKeysCommandInput,
|
|
1284
|
+
paginationConfig?: Pick<
|
|
1285
|
+
PaginationConfiguration,
|
|
1286
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1287
|
+
>
|
|
1288
|
+
): Paginator<ListApiKeysCommandOutput>;
|
|
1289
|
+
paginateListApis(
|
|
1290
|
+
args?: ListApisCommandInput,
|
|
1291
|
+
paginationConfig?: Pick<
|
|
1292
|
+
PaginationConfiguration,
|
|
1293
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1294
|
+
>
|
|
1295
|
+
): Paginator<ListApisCommandOutput>;
|
|
1296
|
+
paginateListChannelNamespaces(
|
|
1297
|
+
args: ListChannelNamespacesCommandInput,
|
|
1298
|
+
paginationConfig?: Pick<
|
|
1299
|
+
PaginationConfiguration,
|
|
1300
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1301
|
+
>
|
|
1302
|
+
): Paginator<ListChannelNamespacesCommandOutput>;
|
|
1303
|
+
paginateListDataSources(
|
|
1304
|
+
args: ListDataSourcesCommandInput,
|
|
1305
|
+
paginationConfig?: Pick<
|
|
1306
|
+
PaginationConfiguration,
|
|
1307
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1308
|
+
>
|
|
1309
|
+
): Paginator<ListDataSourcesCommandOutput>;
|
|
1310
|
+
paginateListDomainNames(
|
|
1311
|
+
args?: ListDomainNamesCommandInput,
|
|
1312
|
+
paginationConfig?: Pick<
|
|
1313
|
+
PaginationConfiguration,
|
|
1314
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1315
|
+
>
|
|
1316
|
+
): Paginator<ListDomainNamesCommandOutput>;
|
|
1317
|
+
paginateListFunctions(
|
|
1318
|
+
args: ListFunctionsCommandInput,
|
|
1319
|
+
paginationConfig?: Pick<
|
|
1320
|
+
PaginationConfiguration,
|
|
1321
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1322
|
+
>
|
|
1323
|
+
): Paginator<ListFunctionsCommandOutput>;
|
|
1324
|
+
paginateListGraphqlApis(
|
|
1325
|
+
args?: ListGraphqlApisCommandInput,
|
|
1326
|
+
paginationConfig?: Pick<
|
|
1327
|
+
PaginationConfiguration,
|
|
1328
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1329
|
+
>
|
|
1330
|
+
): Paginator<ListGraphqlApisCommandOutput>;
|
|
1331
|
+
paginateListResolvers(
|
|
1332
|
+
args: ListResolversCommandInput,
|
|
1333
|
+
paginationConfig?: Pick<
|
|
1334
|
+
PaginationConfiguration,
|
|
1335
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1336
|
+
>
|
|
1337
|
+
): Paginator<ListResolversCommandOutput>;
|
|
1338
|
+
paginateListResolversByFunction(
|
|
1339
|
+
args: ListResolversByFunctionCommandInput,
|
|
1340
|
+
paginationConfig?: Pick<
|
|
1341
|
+
PaginationConfiguration,
|
|
1342
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1343
|
+
>
|
|
1344
|
+
): Paginator<ListResolversByFunctionCommandOutput>;
|
|
1345
|
+
paginateListSourceApiAssociations(
|
|
1346
|
+
args: ListSourceApiAssociationsCommandInput,
|
|
1347
|
+
paginationConfig?: Pick<
|
|
1348
|
+
PaginationConfiguration,
|
|
1349
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1350
|
+
>
|
|
1351
|
+
): Paginator<ListSourceApiAssociationsCommandOutput>;
|
|
1352
|
+
paginateListTypes(
|
|
1353
|
+
args: ListTypesCommandInput,
|
|
1354
|
+
paginationConfig?: Pick<
|
|
1355
|
+
PaginationConfiguration,
|
|
1356
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1357
|
+
>
|
|
1358
|
+
): Paginator<ListTypesCommandOutput>;
|
|
1359
|
+
paginateListTypesByAssociation(
|
|
1360
|
+
args: ListTypesByAssociationCommandInput,
|
|
1361
|
+
paginationConfig?: Pick<
|
|
1362
|
+
PaginationConfiguration,
|
|
1363
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1364
|
+
>
|
|
1365
|
+
): Paginator<ListTypesByAssociationCommandOutput>;
|
|
1278
1366
|
}
|
|
1279
1367
|
export declare class AppSync extends AppSyncClient implements AppSync {}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-appsync",
|
|
3
3
|
"description": "AWS SDK for JavaScript Appsync Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.978.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-appsync",
|
|
@@ -21,38 +21,38 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.973.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "^3.972.
|
|
27
|
-
"@aws-sdk/middleware-logger": "^3.972.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "^3.972.
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
30
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
31
|
-
"@aws-sdk/types": "^3.973.
|
|
24
|
+
"@aws-sdk/core": "^3.973.4",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.2",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "^3.972.2",
|
|
27
|
+
"@aws-sdk/middleware-logger": "^3.972.2",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.2",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.4",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "^3.972.2",
|
|
31
|
+
"@aws-sdk/types": "^3.973.1",
|
|
32
32
|
"@aws-sdk/util-endpoints": "3.972.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "^3.972.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.972.
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "^3.972.2",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.972.2",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.6",
|
|
36
|
-
"@smithy/core": "^3.
|
|
36
|
+
"@smithy/core": "^3.22.0",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.9",
|
|
38
38
|
"@smithy/hash-node": "^4.2.8",
|
|
39
39
|
"@smithy/invalid-dependency": "^4.2.8",
|
|
40
40
|
"@smithy/middleware-content-length": "^4.2.8",
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
42
|
-
"@smithy/middleware-retry": "^4.4.
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.4.12",
|
|
42
|
+
"@smithy/middleware-retry": "^4.4.29",
|
|
43
43
|
"@smithy/middleware-serde": "^4.2.9",
|
|
44
44
|
"@smithy/middleware-stack": "^4.2.8",
|
|
45
45
|
"@smithy/node-config-provider": "^4.3.8",
|
|
46
46
|
"@smithy/node-http-handler": "^4.4.8",
|
|
47
47
|
"@smithy/protocol-http": "^5.3.8",
|
|
48
|
-
"@smithy/smithy-client": "^4.
|
|
48
|
+
"@smithy/smithy-client": "^4.11.1",
|
|
49
49
|
"@smithy/types": "^4.12.0",
|
|
50
50
|
"@smithy/url-parser": "^4.2.8",
|
|
51
51
|
"@smithy/util-base64": "^4.3.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.28",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.31",
|
|
56
56
|
"@smithy/util-endpoints": "^3.2.8",
|
|
57
57
|
"@smithy/util-middleware": "^4.2.8",
|
|
58
58
|
"@smithy/util-retry": "^4.2.8",
|