@aws-sdk/client-appsync 3.476.0 → 3.477.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 +2 -2
- package/dist-cjs/models/models_0.js +5 -1
- package/dist-cjs/protocols/Aws_restJson1.js +376 -828
- package/dist-es/models/models_0.js +4 -0
- package/dist-es/protocols/Aws_restJson1.js +377 -829
- package/dist-types/AppSync.d.ts +2 -2
- package/dist-types/AppSyncClient.d.ts +2 -2
- package/dist-types/commands/AssociateApiCommand.d.ts +3 -4
- package/dist-types/commands/AssociateMergedGraphqlApiCommand.d.ts +5 -6
- package/dist-types/commands/AssociateSourceGraphqlApiCommand.d.ts +5 -6
- package/dist-types/commands/CreateApiCacheCommand.d.ts +5 -6
- package/dist-types/commands/CreateApiKeyCommand.d.ts +3 -4
- package/dist-types/commands/CreateDataSourceCommand.d.ts +5 -6
- package/dist-types/commands/CreateDomainNameCommand.d.ts +2 -2
- package/dist-types/commands/CreateFunctionCommand.d.ts +4 -6
- package/dist-types/commands/CreateGraphqlApiCommand.d.ts +10 -4
- package/dist-types/commands/CreateResolverCommand.d.ts +7 -8
- package/dist-types/commands/CreateTypeCommand.d.ts +5 -6
- package/dist-types/commands/DeleteApiCacheCommand.d.ts +5 -6
- package/dist-types/commands/DeleteApiKeyCommand.d.ts +3 -4
- package/dist-types/commands/DeleteDataSourceCommand.d.ts +5 -6
- package/dist-types/commands/DeleteDomainNameCommand.d.ts +5 -6
- package/dist-types/commands/DeleteFunctionCommand.d.ts +3 -4
- package/dist-types/commands/DeleteGraphqlApiCommand.d.ts +5 -6
- package/dist-types/commands/DeleteResolverCommand.d.ts +5 -6
- package/dist-types/commands/DeleteTypeCommand.d.ts +5 -6
- package/dist-types/commands/DisassociateApiCommand.d.ts +5 -6
- package/dist-types/commands/DisassociateMergedGraphqlApiCommand.d.ts +5 -6
- package/dist-types/commands/DisassociateSourceGraphqlApiCommand.d.ts +5 -6
- package/dist-types/commands/EvaluateCodeCommand.d.ts +7 -8
- package/dist-types/commands/EvaluateMappingTemplateCommand.d.ts +7 -8
- package/dist-types/commands/FlushApiCacheCommand.d.ts +5 -6
- package/dist-types/commands/GetApiAssociationCommand.d.ts +3 -4
- package/dist-types/commands/GetApiCacheCommand.d.ts +5 -6
- package/dist-types/commands/GetDataSourceCommand.d.ts +5 -6
- package/dist-types/commands/GetDataSourceIntrospectionCommand.d.ts +3 -4
- package/dist-types/commands/GetDomainNameCommand.d.ts +3 -4
- package/dist-types/commands/GetFunctionCommand.d.ts +3 -4
- package/dist-types/commands/GetGraphqlApiCommand.d.ts +6 -4
- package/dist-types/commands/GetIntrospectionSchemaCommand.d.ts +1 -2
- package/dist-types/commands/GetResolverCommand.d.ts +3 -4
- package/dist-types/commands/GetSchemaCreationStatusCommand.d.ts +3 -4
- package/dist-types/commands/GetSourceApiAssociationCommand.d.ts +3 -4
- package/dist-types/commands/GetTypeCommand.d.ts +5 -6
- package/dist-types/commands/ListApiKeysCommand.d.ts +6 -8
- package/dist-types/commands/ListDataSourcesCommand.d.ts +3 -4
- package/dist-types/commands/ListDomainNamesCommand.d.ts +2 -2
- package/dist-types/commands/ListFunctionsCommand.d.ts +3 -4
- package/dist-types/commands/ListGraphqlApisCommand.d.ts +5 -2
- package/dist-types/commands/ListResolversByFunctionCommand.d.ts +3 -4
- package/dist-types/commands/ListResolversCommand.d.ts +3 -4
- package/dist-types/commands/ListSourceApiAssociationsCommand.d.ts +3 -4
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -4
- package/dist-types/commands/ListTypesByAssociationCommand.d.ts +5 -6
- package/dist-types/commands/ListTypesCommand.d.ts +5 -6
- package/dist-types/commands/StartDataSourceIntrospectionCommand.d.ts +3 -4
- package/dist-types/commands/StartSchemaCreationCommand.d.ts +7 -8
- package/dist-types/commands/StartSchemaMergeCommand.d.ts +5 -6
- package/dist-types/commands/TagResourceCommand.d.ts +3 -4
- package/dist-types/commands/UntagResourceCommand.d.ts +3 -4
- package/dist-types/commands/UpdateApiCacheCommand.d.ts +5 -6
- package/dist-types/commands/UpdateApiKeyCommand.d.ts +3 -4
- package/dist-types/commands/UpdateDataSourceCommand.d.ts +5 -6
- package/dist-types/commands/UpdateDomainNameCommand.d.ts +5 -6
- package/dist-types/commands/UpdateFunctionCommand.d.ts +3 -4
- package/dist-types/commands/UpdateGraphqlApiCommand.d.ts +11 -6
- package/dist-types/commands/UpdateResolverCommand.d.ts +5 -6
- package/dist-types/commands/UpdateSourceApiAssociationCommand.d.ts +5 -6
- package/dist-types/commands/UpdateTypeCommand.d.ts +5 -6
- package/dist-types/index.d.ts +2 -2
- package/dist-types/models/models_0.d.ts +431 -383
- package/dist-types/ts3.4/models/models_0.d.ts +15 -0
- package/package.json +5 -4
|
@@ -445,6 +445,12 @@ export declare const GraphQLApiType: {
|
|
|
445
445
|
};
|
|
446
446
|
export type GraphQLApiType =
|
|
447
447
|
(typeof GraphQLApiType)[keyof typeof GraphQLApiType];
|
|
448
|
+
export declare const GraphQLApiIntrospectionConfig: {
|
|
449
|
+
readonly DISABLED: "DISABLED";
|
|
450
|
+
readonly ENABLED: "ENABLED";
|
|
451
|
+
};
|
|
452
|
+
export type GraphQLApiIntrospectionConfig =
|
|
453
|
+
(typeof GraphQLApiIntrospectionConfig)[keyof typeof GraphQLApiIntrospectionConfig];
|
|
448
454
|
export declare const FieldLogLevel: {
|
|
449
455
|
readonly ALL: "ALL";
|
|
450
456
|
readonly ERROR: "ERROR";
|
|
@@ -487,6 +493,9 @@ export interface CreateGraphqlApiRequest {
|
|
|
487
493
|
apiType?: GraphQLApiType;
|
|
488
494
|
mergedApiExecutionRoleArn?: string;
|
|
489
495
|
ownerContact?: string;
|
|
496
|
+
introspectionConfig?: GraphQLApiIntrospectionConfig;
|
|
497
|
+
queryDepthLimit?: number;
|
|
498
|
+
resolverCountLimit?: number;
|
|
490
499
|
}
|
|
491
500
|
export interface GraphqlApi {
|
|
492
501
|
name?: string;
|
|
@@ -508,6 +517,9 @@ export interface GraphqlApi {
|
|
|
508
517
|
mergedApiExecutionRoleArn?: string;
|
|
509
518
|
owner?: string;
|
|
510
519
|
ownerContact?: string;
|
|
520
|
+
introspectionConfig?: GraphQLApiIntrospectionConfig;
|
|
521
|
+
queryDepthLimit?: number;
|
|
522
|
+
resolverCountLimit?: number;
|
|
511
523
|
}
|
|
512
524
|
export interface CreateGraphqlApiResponse {
|
|
513
525
|
graphqlApi?: GraphqlApi;
|
|
@@ -1002,6 +1014,9 @@ export interface UpdateGraphqlApiRequest {
|
|
|
1002
1014
|
lambdaAuthorizerConfig?: LambdaAuthorizerConfig;
|
|
1003
1015
|
mergedApiExecutionRoleArn?: string;
|
|
1004
1016
|
ownerContact?: string;
|
|
1017
|
+
introspectionConfig?: GraphQLApiIntrospectionConfig;
|
|
1018
|
+
queryDepthLimit?: number;
|
|
1019
|
+
resolverCountLimit?: number;
|
|
1005
1020
|
}
|
|
1006
1021
|
export interface UpdateGraphqlApiResponse {
|
|
1007
1022
|
graphqlApi?: GraphqlApi;
|
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.477.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,9 +20,9 @@
|
|
|
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.
|
|
24
|
-
"@aws-sdk/core": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.477.0",
|
|
24
|
+
"@aws-sdk/core": "3.477.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.477.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",
|
|
@@ -34,6 +34,7 @@
|
|
|
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",
|
|
37
|
+
"@smithy/core": "^1.2.0",
|
|
37
38
|
"@smithy/fetch-http-handler": "^2.3.1",
|
|
38
39
|
"@smithy/hash-node": "^2.0.17",
|
|
39
40
|
"@smithy/invalid-dependency": "^2.0.15",
|