@aws-sdk/client-appsync 3.338.0 → 3.339.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.
Files changed (60) hide show
  1. package/README.md +72 -0
  2. package/dist-cjs/AppSync.js +18 -0
  3. package/dist-cjs/commands/AssociateMergedGraphqlApiCommand.js +46 -0
  4. package/dist-cjs/commands/AssociateSourceGraphqlApiCommand.js +46 -0
  5. package/dist-cjs/commands/DisassociateMergedGraphqlApiCommand.js +46 -0
  6. package/dist-cjs/commands/DisassociateSourceGraphqlApiCommand.js +46 -0
  7. package/dist-cjs/commands/GetSourceApiAssociationCommand.js +46 -0
  8. package/dist-cjs/commands/ListSourceApiAssociationsCommand.js +46 -0
  9. package/dist-cjs/commands/ListTypesByAssociationCommand.js +46 -0
  10. package/dist-cjs/commands/StartSchemaMergeCommand.js +46 -0
  11. package/dist-cjs/commands/UpdateSourceApiAssociationCommand.js +46 -0
  12. package/dist-cjs/commands/index.js +9 -0
  13. package/dist-cjs/models/models_0.js +35 -13
  14. package/dist-cjs/protocols/Aws_restJson1.js +652 -16
  15. package/dist-es/AppSync.js +18 -0
  16. package/dist-es/commands/AssociateMergedGraphqlApiCommand.js +42 -0
  17. package/dist-es/commands/AssociateSourceGraphqlApiCommand.js +42 -0
  18. package/dist-es/commands/DisassociateMergedGraphqlApiCommand.js +42 -0
  19. package/dist-es/commands/DisassociateSourceGraphqlApiCommand.js +42 -0
  20. package/dist-es/commands/GetSourceApiAssociationCommand.js +42 -0
  21. package/dist-es/commands/ListSourceApiAssociationsCommand.js +42 -0
  22. package/dist-es/commands/ListTypesByAssociationCommand.js +42 -0
  23. package/dist-es/commands/StartSchemaMergeCommand.js +42 -0
  24. package/dist-es/commands/UpdateSourceApiAssociationCommand.js +42 -0
  25. package/dist-es/commands/index.js +9 -0
  26. package/dist-es/models/models_0.js +32 -10
  27. package/dist-es/protocols/Aws_restJson1.js +632 -14
  28. package/dist-types/AppSync.d.ts +63 -0
  29. package/dist-types/AppSyncClient.d.ts +11 -2
  30. package/dist-types/commands/AssociateMergedGraphqlApiCommand.d.ts +113 -0
  31. package/dist-types/commands/AssociateSourceGraphqlApiCommand.d.ts +113 -0
  32. package/dist-types/commands/CreateGraphqlApiCommand.d.ts +7 -0
  33. package/dist-types/commands/DisassociateMergedGraphqlApiCommand.d.ts +93 -0
  34. package/dist-types/commands/DisassociateSourceGraphqlApiCommand.d.ts +93 -0
  35. package/dist-types/commands/GetGraphqlApiCommand.d.ts +4 -0
  36. package/dist-types/commands/GetSourceApiAssociationCommand.d.ts +102 -0
  37. package/dist-types/commands/ListGraphqlApisCommand.d.ts +6 -0
  38. package/dist-types/commands/ListSourceApiAssociationsCommand.d.ts +100 -0
  39. package/dist-types/commands/ListTypesByAssociationCommand.d.ts +104 -0
  40. package/dist-types/commands/StartSchemaMergeCommand.d.ts +92 -0
  41. package/dist-types/commands/UpdateGraphqlApiCommand.d.ts +6 -0
  42. package/dist-types/commands/UpdateSourceApiAssociationCommand.d.ts +110 -0
  43. package/dist-types/commands/index.d.ts +9 -0
  44. package/dist-types/models/models_0.d.ts +516 -39
  45. package/dist-types/protocols/Aws_restJson1.d.ts +81 -0
  46. package/dist-types/ts3.4/AppSync.d.ts +153 -0
  47. package/dist-types/ts3.4/AppSyncClient.d.ts +54 -0
  48. package/dist-types/ts3.4/commands/AssociateMergedGraphqlApiCommand.d.ts +42 -0
  49. package/dist-types/ts3.4/commands/AssociateSourceGraphqlApiCommand.d.ts +42 -0
  50. package/dist-types/ts3.4/commands/DisassociateMergedGraphqlApiCommand.d.ts +42 -0
  51. package/dist-types/ts3.4/commands/DisassociateSourceGraphqlApiCommand.d.ts +42 -0
  52. package/dist-types/ts3.4/commands/GetSourceApiAssociationCommand.d.ts +42 -0
  53. package/dist-types/ts3.4/commands/ListSourceApiAssociationsCommand.d.ts +42 -0
  54. package/dist-types/ts3.4/commands/ListTypesByAssociationCommand.d.ts +42 -0
  55. package/dist-types/ts3.4/commands/StartSchemaMergeCommand.d.ts +38 -0
  56. package/dist-types/ts3.4/commands/UpdateSourceApiAssociationCommand.d.ts +42 -0
  57. package/dist-types/ts3.4/commands/index.d.ts +9 -0
  58. package/dist-types/ts3.4/models/models_0.d.ts +163 -24
  59. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +108 -0
  60. package/package.json +1 -1
@@ -1,4 +1,6 @@
1
1
  export * from "./AssociateApiCommand";
2
+ export * from "./AssociateMergedGraphqlApiCommand";
3
+ export * from "./AssociateSourceGraphqlApiCommand";
2
4
  export * from "./CreateApiCacheCommand";
3
5
  export * from "./CreateApiKeyCommand";
4
6
  export * from "./CreateDataSourceCommand";
@@ -16,6 +18,8 @@ export * from "./DeleteGraphqlApiCommand";
16
18
  export * from "./DeleteResolverCommand";
17
19
  export * from "./DeleteTypeCommand";
18
20
  export * from "./DisassociateApiCommand";
21
+ export * from "./DisassociateMergedGraphqlApiCommand";
22
+ export * from "./DisassociateSourceGraphqlApiCommand";
19
23
  export * from "./EvaluateCodeCommand";
20
24
  export * from "./EvaluateMappingTemplateCommand";
21
25
  export * from "./FlushApiCacheCommand";
@@ -28,6 +32,7 @@ export * from "./GetGraphqlApiCommand";
28
32
  export * from "./GetIntrospectionSchemaCommand";
29
33
  export * from "./GetResolverCommand";
30
34
  export * from "./GetSchemaCreationStatusCommand";
35
+ export * from "./GetSourceApiAssociationCommand";
31
36
  export * from "./GetTypeCommand";
32
37
  export * from "./ListApiKeysCommand";
33
38
  export * from "./ListDataSourcesCommand";
@@ -36,9 +41,12 @@ export * from "./ListFunctionsCommand";
36
41
  export * from "./ListGraphqlApisCommand";
37
42
  export * from "./ListResolversByFunctionCommand";
38
43
  export * from "./ListResolversCommand";
44
+ export * from "./ListSourceApiAssociationsCommand";
39
45
  export * from "./ListTagsForResourceCommand";
46
+ export * from "./ListTypesByAssociationCommand";
40
47
  export * from "./ListTypesCommand";
41
48
  export * from "./StartSchemaCreationCommand";
49
+ export * from "./StartSchemaMergeCommand";
42
50
  export * from "./TagResourceCommand";
43
51
  export * from "./UntagResourceCommand";
44
52
  export * from "./UpdateApiCacheCommand";
@@ -48,4 +56,5 @@ export * from "./UpdateDomainNameCommand";
48
56
  export * from "./UpdateFunctionCommand";
49
57
  export * from "./UpdateGraphqlApiCommand";
50
58
  export * from "./UpdateResolverCommand";
59
+ export * from "./UpdateSourceApiAssociationCommand";
51
60
  export * from "./UpdateTypeCommand";