@aws-sdk/client-appsync 3.474.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
package/README.md
CHANGED
|
@@ -6,8 +6,8 @@
|
|
|
6
6
|
|
|
7
7
|
AWS SDK for JavaScript AppSync Client for Node.js, Browser and React Native.
|
|
8
8
|
|
|
9
|
-
<p>AppSync provides API actions for creating and interacting with data
|
|
10
|
-
|
|
9
|
+
<p>AppSync provides API actions for creating and interacting with data sources using GraphQL
|
|
10
|
+
from your application.</p>
|
|
11
11
|
|
|
12
12
|
## Installing
|
|
13
13
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.Ownership = exports.SchemaStatus = exports.GraphQLSchemaException = exports.OutputType = exports.DataSourceIntrospectionStatus = exports.TypeDefinitionFormat = exports.ResolverKind = exports.GraphQLApiVisibility = exports.DefaultAction = exports.FieldLogLevel = exports.GraphQLApiType = exports.ConflictHandlerType = exports.ConflictDetectionType = exports.DataSourceType = exports.RelationalDatabaseSourceType = exports.AuthorizationType = exports.UnauthorizedException = exports.LimitExceededException = exports.ConcurrentModificationException = exports.SourceApiAssociationStatus = exports.MergeType = exports.NotFoundException = exports.InternalFailureException = exports.BadRequestException = exports.BadRequestReason = exports.RuntimeName = exports.ApiLimitExceededException = exports.ApiKeyValidityOutOfBoundsException = exports.ApiKeyLimitExceededException = exports.ApiCacheType = exports.ApiCacheStatus = exports.ApiCachingBehavior = exports.AssociationStatus = exports.AuthenticationType = exports.AccessDeniedException = void 0;
|
|
3
|
+
exports.Ownership = exports.SchemaStatus = exports.GraphQLSchemaException = exports.OutputType = exports.DataSourceIntrospectionStatus = exports.TypeDefinitionFormat = exports.ResolverKind = exports.GraphQLApiVisibility = exports.DefaultAction = exports.FieldLogLevel = exports.GraphQLApiIntrospectionConfig = exports.GraphQLApiType = exports.ConflictHandlerType = exports.ConflictDetectionType = exports.DataSourceType = exports.RelationalDatabaseSourceType = exports.AuthorizationType = exports.UnauthorizedException = exports.LimitExceededException = exports.ConcurrentModificationException = exports.SourceApiAssociationStatus = exports.MergeType = exports.NotFoundException = exports.InternalFailureException = exports.BadRequestException = exports.BadRequestReason = exports.RuntimeName = exports.ApiLimitExceededException = exports.ApiKeyValidityOutOfBoundsException = exports.ApiKeyLimitExceededException = exports.ApiCacheType = exports.ApiCacheStatus = exports.ApiCachingBehavior = exports.AssociationStatus = exports.AuthenticationType = exports.AccessDeniedException = void 0;
|
|
4
4
|
const AppSyncServiceException_1 = require("./AppSyncServiceException");
|
|
5
5
|
class AccessDeniedException extends AppSyncServiceException_1.AppSyncServiceException {
|
|
6
6
|
constructor(opts) {
|
|
@@ -224,6 +224,10 @@ exports.GraphQLApiType = {
|
|
|
224
224
|
GRAPHQL: "GRAPHQL",
|
|
225
225
|
MERGED: "MERGED",
|
|
226
226
|
};
|
|
227
|
+
exports.GraphQLApiIntrospectionConfig = {
|
|
228
|
+
DISABLED: "DISABLED",
|
|
229
|
+
ENABLED: "ENABLED",
|
|
230
|
+
};
|
|
227
231
|
exports.FieldLogLevel = {
|
|
228
232
|
ALL: "ALL",
|
|
229
233
|
ERROR: "ERROR",
|