@aws-amplify/graphql-api-construct 1.3.0 → 1.4.0-construct-publish-test.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (252) hide show
  1. package/.jsii +903 -176
  2. package/API.md +80 -1
  3. package/CHANGELOG.md +11 -0
  4. package/README.md +623 -10
  5. package/lib/amplify-dynamodb-table-wrapper.d.ts +128 -0
  6. package/lib/amplify-dynamodb-table-wrapper.js +102 -0
  7. package/lib/amplify-graphql-api.d.ts +4 -0
  8. package/lib/amplify-graphql-api.js +10 -3
  9. package/lib/amplify-graphql-definition.d.ts +19 -2
  10. package/lib/amplify-graphql-definition.js +57 -5
  11. package/lib/index.d.ts +2 -1
  12. package/lib/index.js +5 -2
  13. package/lib/internal/construct-exports.js +8 -1
  14. package/lib/internal/data-source-config.d.ts +7 -0
  15. package/lib/internal/data-source-config.js +37 -0
  16. package/lib/internal/index.d.ts +1 -1
  17. package/lib/internal/index.js +2 -2
  18. package/lib/internal/model-type-name.d.ts +8 -0
  19. package/lib/internal/model-type-name.js +27 -0
  20. package/lib/types.d.ts +47 -7
  21. package/lib/types.js +1 -1
  22. package/node_modules/@aws-amplify/backend-output-schemas/lib/auth/index.js +7 -9
  23. package/node_modules/@aws-amplify/backend-output-schemas/lib/auth/v1.js +15 -18
  24. package/node_modules/@aws-amplify/backend-output-schemas/lib/graphql/index.js +10 -16
  25. package/node_modules/@aws-amplify/backend-output-schemas/lib/graphql/v1.js +22 -20
  26. package/node_modules/@aws-amplify/backend-output-schemas/lib/index.d.ts +12 -1
  27. package/node_modules/@aws-amplify/backend-output-schemas/lib/index.js +37 -63
  28. package/node_modules/@aws-amplify/backend-output-schemas/lib/platform/index.js +16 -14
  29. package/node_modules/@aws-amplify/backend-output-schemas/lib/platform/stack_metadata_schemas.js +7 -11
  30. package/node_modules/@aws-amplify/backend-output-schemas/lib/stack/index.d.ts +5 -0
  31. package/node_modules/@aws-amplify/backend-output-schemas/lib/stack/index.js +7 -9
  32. package/node_modules/@aws-amplify/backend-output-schemas/lib/stack/v1.d.ts +5 -0
  33. package/node_modules/@aws-amplify/backend-output-schemas/lib/stack/v1.js +9 -11
  34. package/node_modules/@aws-amplify/backend-output-schemas/lib/storage/index.js +7 -9
  35. package/node_modules/@aws-amplify/backend-output-schemas/lib/storage/v1.js +9 -12
  36. package/node_modules/@aws-amplify/backend-output-schemas/package.json +4 -23
  37. package/node_modules/@aws-amplify/backend-output-storage/lib/index.d.ts +1 -0
  38. package/node_modules/@aws-amplify/backend-output-storage/lib/index.js +17 -14
  39. package/node_modules/@aws-amplify/backend-output-storage/lib/stack_metadata_output_storage_strategy.js +28 -32
  40. package/node_modules/@aws-amplify/backend-output-storage/lib/store_attribution_metadata.d.ts +50 -0
  41. package/node_modules/@aws-amplify/backend-output-storage/lib/store_attribution_metadata.js +104 -0
  42. package/node_modules/@aws-amplify/backend-output-storage/node_modules/@aws-amplify/platform-core/lib/backend_deployment_type.d.ts +5 -0
  43. package/node_modules/@aws-amplify/backend-output-storage/node_modules/@aws-amplify/platform-core/lib/backend_deployment_type.js +9 -0
  44. package/node_modules/@aws-amplify/backend-output-storage/node_modules/@aws-amplify/platform-core/lib/cdk_context_key.d.ts +9 -0
  45. package/node_modules/@aws-amplify/backend-output-storage/node_modules/@aws-amplify/platform-core/lib/cdk_context_key.js +13 -0
  46. package/node_modules/@aws-amplify/backend-output-storage/node_modules/@aws-amplify/platform-core/lib/index.d.ts +4 -0
  47. package/node_modules/@aws-amplify/backend-output-storage/node_modules/@aws-amplify/platform-core/lib/index.js +22 -0
  48. package/node_modules/@aws-amplify/backend-output-storage/node_modules/@aws-amplify/platform-core/lib/unique_backend_identifier.d.ts +53 -0
  49. package/node_modules/@aws-amplify/backend-output-storage/node_modules/@aws-amplify/platform-core/lib/unique_backend_identifier.js +74 -0
  50. package/node_modules/@aws-amplify/backend-output-storage/node_modules/@aws-amplify/platform-core/package.json +23 -0
  51. package/node_modules/@aws-amplify/backend-output-storage/package.json +6 -4
  52. package/node_modules/@aws-amplify/graphql-auth-transformer/CHANGELOG.md +4 -0
  53. package/node_modules/@aws-amplify/graphql-auth-transformer/LICENSE +201 -0
  54. package/node_modules/@aws-amplify/graphql-auth-transformer/package.json +11 -10
  55. package/node_modules/@aws-amplify/graphql-default-value-transformer/CHANGELOG.md +4 -0
  56. package/node_modules/@aws-amplify/graphql-default-value-transformer/LICENSE +201 -0
  57. package/node_modules/@aws-amplify/graphql-default-value-transformer/package.json +8 -7
  58. package/node_modules/@aws-amplify/graphql-function-transformer/CHANGELOG.md +4 -0
  59. package/node_modules/@aws-amplify/graphql-function-transformer/LICENSE +201 -0
  60. package/node_modules/@aws-amplify/graphql-function-transformer/package.json +7 -6
  61. package/node_modules/@aws-amplify/graphql-http-transformer/CHANGELOG.md +4 -0
  62. package/node_modules/@aws-amplify/graphql-http-transformer/LICENSE +201 -0
  63. package/node_modules/@aws-amplify/graphql-http-transformer/package.json +7 -6
  64. package/node_modules/@aws-amplify/graphql-index-transformer/API.md +3 -0
  65. package/node_modules/@aws-amplify/graphql-index-transformer/CHANGELOG.md +6 -0
  66. package/node_modules/@aws-amplify/graphql-index-transformer/LICENSE +201 -0
  67. package/node_modules/@aws-amplify/graphql-index-transformer/lib/graphql-index-transformer.js +4 -0
  68. package/node_modules/@aws-amplify/graphql-index-transformer/lib/graphql-index-transformer.js.map +1 -1
  69. package/node_modules/@aws-amplify/graphql-index-transformer/lib/graphql-primary-key-transformer.d.ts.map +1 -1
  70. package/node_modules/@aws-amplify/graphql-index-transformer/lib/graphql-primary-key-transformer.js.map +1 -1
  71. package/node_modules/@aws-amplify/graphql-index-transformer/lib/index.d.ts +1 -1
  72. package/node_modules/@aws-amplify/graphql-index-transformer/lib/index.d.ts.map +1 -1
  73. package/node_modules/@aws-amplify/graphql-index-transformer/lib/index.js +2 -1
  74. package/node_modules/@aws-amplify/graphql-index-transformer/lib/index.js.map +1 -1
  75. package/node_modules/@aws-amplify/graphql-index-transformer/lib/resolvers/resolvers.d.ts +5 -5
  76. package/node_modules/@aws-amplify/graphql-index-transformer/lib/resolvers/resolvers.d.ts.map +1 -1
  77. package/node_modules/@aws-amplify/graphql-index-transformer/lib/resolvers/resolvers.js +34 -8
  78. package/node_modules/@aws-amplify/graphql-index-transformer/lib/resolvers/resolvers.js.map +1 -1
  79. package/node_modules/@aws-amplify/graphql-index-transformer/package.json +8 -7
  80. package/node_modules/@aws-amplify/graphql-maps-to-transformer/CHANGELOG.md +4 -0
  81. package/node_modules/@aws-amplify/graphql-maps-to-transformer/LICENSE +201 -0
  82. package/node_modules/@aws-amplify/graphql-maps-to-transformer/lib/assets/mapping-lambda.zip +0 -0
  83. package/node_modules/@aws-amplify/graphql-maps-to-transformer/package.json +11 -10
  84. package/node_modules/@aws-amplify/graphql-model-transformer/CHANGELOG.md +6 -0
  85. package/node_modules/@aws-amplify/graphql-model-transformer/LICENSE +201 -0
  86. package/node_modules/@aws-amplify/graphql-model-transformer/lib/graphql-model-transformer.d.ts +2 -1
  87. package/node_modules/@aws-amplify/graphql-model-transformer/lib/graphql-model-transformer.d.ts.map +1 -1
  88. package/node_modules/@aws-amplify/graphql-model-transformer/lib/graphql-model-transformer.js +52 -47
  89. package/node_modules/@aws-amplify/graphql-model-transformer/lib/graphql-model-transformer.js.map +1 -1
  90. package/node_modules/@aws-amplify/graphql-model-transformer/lib/rds-lambda.zip +0 -0
  91. package/node_modules/@aws-amplify/graphql-model-transformer/lib/rds-notification-lambda.zip +0 -0
  92. package/node_modules/@aws-amplify/graphql-model-transformer/lib/rds-patching-lambda.zip +0 -0
  93. package/node_modules/@aws-amplify/graphql-model-transformer/lib/resources/amplify-dynamodb-table/amplify-dynamo-model-resource-generator.d.ts +15 -0
  94. package/node_modules/@aws-amplify/graphql-model-transformer/lib/resources/amplify-dynamodb-table/amplify-dynamo-model-resource-generator.d.ts.map +1 -0
  95. package/node_modules/@aws-amplify/graphql-model-transformer/lib/resources/amplify-dynamodb-table/amplify-dynamo-model-resource-generator.js +169 -0
  96. package/node_modules/@aws-amplify/graphql-model-transformer/lib/resources/amplify-dynamodb-table/amplify-dynamo-model-resource-generator.js.map +1 -0
  97. package/node_modules/@aws-amplify/graphql-model-transformer/lib/resources/amplify-dynamodb-table/amplify-dynamodb-table-construct/index.d.ts +40 -0
  98. package/node_modules/@aws-amplify/graphql-model-transformer/lib/resources/amplify-dynamodb-table/amplify-dynamodb-table-construct/index.d.ts.map +1 -0
  99. package/node_modules/@aws-amplify/graphql-model-transformer/lib/resources/amplify-dynamodb-table/amplify-dynamodb-table-construct/index.js +242 -0
  100. package/node_modules/@aws-amplify/graphql-model-transformer/lib/resources/amplify-dynamodb-table/amplify-dynamodb-table-construct/index.js.map +1 -0
  101. package/node_modules/@aws-amplify/graphql-model-transformer/lib/resources/amplify-dynamodb-table/amplify-table-manager-lambda/amplify-table-manager-handler.d.ts +12 -0
  102. package/node_modules/@aws-amplify/graphql-model-transformer/lib/resources/amplify-dynamodb-table/amplify-table-manager-lambda/amplify-table-manager-handler.d.ts.map +1 -0
  103. package/node_modules/@aws-amplify/graphql-model-transformer/lib/resources/amplify-dynamodb-table/amplify-table-manager-lambda/amplify-table-manager-handler.js +663 -0
  104. package/node_modules/@aws-amplify/graphql-model-transformer/lib/resources/amplify-dynamodb-table/amplify-table-manager-lambda/amplify-table-manager-handler.js.map +1 -0
  105. package/node_modules/@aws-amplify/graphql-model-transformer/lib/resources/dynamo-model-resource-generator.d.ts +5 -2
  106. package/node_modules/@aws-amplify/graphql-model-transformer/lib/resources/dynamo-model-resource-generator.d.ts.map +1 -1
  107. package/node_modules/@aws-amplify/graphql-model-transformer/lib/resources/dynamo-model-resource-generator.js +47 -60
  108. package/node_modules/@aws-amplify/graphql-model-transformer/lib/resources/dynamo-model-resource-generator.js.map +1 -1
  109. package/node_modules/@aws-amplify/graphql-model-transformer/package.json +9 -6
  110. package/node_modules/@aws-amplify/graphql-predictions-transformer/CHANGELOG.md +4 -0
  111. package/node_modules/@aws-amplify/graphql-predictions-transformer/LICENSE +201 -0
  112. package/node_modules/@aws-amplify/graphql-predictions-transformer/lib/predictionsLambdaFunction.zip +0 -0
  113. package/node_modules/@aws-amplify/graphql-predictions-transformer/package.json +7 -6
  114. package/node_modules/@aws-amplify/graphql-relational-transformer/CHANGELOG.md +6 -0
  115. package/node_modules/@aws-amplify/graphql-relational-transformer/LICENSE +201 -0
  116. package/node_modules/@aws-amplify/graphql-relational-transformer/lib/resolvers.d.ts.map +1 -1
  117. package/node_modules/@aws-amplify/graphql-relational-transformer/lib/resolvers.js +3 -10
  118. package/node_modules/@aws-amplify/graphql-relational-transformer/lib/resolvers.js.map +1 -1
  119. package/node_modules/@aws-amplify/graphql-relational-transformer/package.json +9 -8
  120. package/node_modules/@aws-amplify/graphql-searchable-transformer/CHANGELOG.md +4 -0
  121. package/node_modules/@aws-amplify/graphql-searchable-transformer/LICENSE +201 -0
  122. package/node_modules/@aws-amplify/graphql-searchable-transformer/lib/streaming-lambda.zip +0 -0
  123. package/node_modules/@aws-amplify/graphql-searchable-transformer/package.json +8 -7
  124. package/node_modules/@aws-amplify/graphql-transformer/API.md +2 -2
  125. package/node_modules/@aws-amplify/graphql-transformer/CHANGELOG.md +6 -0
  126. package/node_modules/@aws-amplify/graphql-transformer/LICENSE +201 -0
  127. package/node_modules/@aws-amplify/graphql-transformer/lib/graphql-transformer.d.ts +3 -3
  128. package/node_modules/@aws-amplify/graphql-transformer/lib/graphql-transformer.d.ts.map +1 -1
  129. package/node_modules/@aws-amplify/graphql-transformer/lib/graphql-transformer.js.map +1 -1
  130. package/node_modules/@aws-amplify/graphql-transformer/package.json +15 -14
  131. package/node_modules/@aws-amplify/graphql-transformer/src/graphql-transformer.ts +3 -8
  132. package/node_modules/@aws-amplify/graphql-transformer-core/API.md +9 -11
  133. package/node_modules/@aws-amplify/graphql-transformer-core/CHANGELOG.md +6 -0
  134. package/node_modules/@aws-amplify/graphql-transformer-core/LICENSE +201 -0
  135. package/node_modules/@aws-amplify/graphql-transformer-core/lib/config/index.d.ts +0 -1
  136. package/node_modules/@aws-amplify/graphql-transformer-core/lib/config/index.d.ts.map +1 -1
  137. package/node_modules/@aws-amplify/graphql-transformer-core/lib/config/index.js.map +1 -1
  138. package/node_modules/@aws-amplify/graphql-transformer-core/lib/index.d.ts +3 -3
  139. package/node_modules/@aws-amplify/graphql-transformer-core/lib/index.d.ts.map +1 -1
  140. package/node_modules/@aws-amplify/graphql-transformer-core/lib/index.js +3 -1
  141. package/node_modules/@aws-amplify/graphql-transformer-core/lib/index.js.map +1 -1
  142. package/node_modules/@aws-amplify/graphql-transformer-core/lib/transformation/index.d.ts +1 -0
  143. package/node_modules/@aws-amplify/graphql-transformer-core/lib/transformation/index.d.ts.map +1 -1
  144. package/node_modules/@aws-amplify/graphql-transformer-core/lib/transformation/index.js +3 -1
  145. package/node_modules/@aws-amplify/graphql-transformer-core/lib/transformation/index.js.map +1 -1
  146. package/node_modules/@aws-amplify/graphql-transformer-core/lib/transformation/transform.d.ts.map +1 -1
  147. package/node_modules/@aws-amplify/graphql-transformer-core/lib/transformation/transform.js.map +1 -1
  148. package/node_modules/@aws-amplify/graphql-transformer-core/lib/transformation/types.d.ts +2 -3
  149. package/node_modules/@aws-amplify/graphql-transformer-core/lib/transformation/types.d.ts.map +1 -1
  150. package/node_modules/@aws-amplify/graphql-transformer-core/lib/transformation/utils.d.ts +2 -1
  151. package/node_modules/@aws-amplify/graphql-transformer-core/lib/transformation/utils.d.ts.map +1 -1
  152. package/node_modules/@aws-amplify/graphql-transformer-core/lib/transformation/utils.js +12 -1
  153. package/node_modules/@aws-amplify/graphql-transformer-core/lib/transformation/utils.js.map +1 -1
  154. package/node_modules/@aws-amplify/graphql-transformer-core/lib/transformer-context/index.d.ts +3 -4
  155. package/node_modules/@aws-amplify/graphql-transformer-core/lib/transformer-context/index.d.ts.map +1 -1
  156. package/node_modules/@aws-amplify/graphql-transformer-core/lib/utils/index.d.ts +1 -0
  157. package/node_modules/@aws-amplify/graphql-transformer-core/lib/utils/index.d.ts.map +1 -1
  158. package/node_modules/@aws-amplify/graphql-transformer-core/lib/utils/index.js +3 -1
  159. package/node_modules/@aws-amplify/graphql-transformer-core/lib/utils/index.js.map +1 -1
  160. package/node_modules/@aws-amplify/graphql-transformer-core/lib/utils/provision-strategy-utils.d.ts +3 -0
  161. package/node_modules/@aws-amplify/graphql-transformer-core/lib/utils/provision-strategy-utils.d.ts.map +1 -0
  162. package/node_modules/@aws-amplify/graphql-transformer-core/lib/utils/provision-strategy-utils.js +15 -0
  163. package/node_modules/@aws-amplify/graphql-transformer-core/lib/utils/provision-strategy-utils.js.map +1 -0
  164. package/node_modules/@aws-amplify/graphql-transformer-core/package.json +5 -4
  165. package/node_modules/@aws-amplify/graphql-transformer-interfaces/API.md +25 -3
  166. package/node_modules/@aws-amplify/graphql-transformer-interfaces/CHANGELOG.md +6 -0
  167. package/node_modules/@aws-amplify/graphql-transformer-interfaces/LICENSE +201 -0
  168. package/node_modules/@aws-amplify/graphql-transformer-interfaces/lib/transformer-context/index.d.ts +1 -1
  169. package/node_modules/@aws-amplify/graphql-transformer-interfaces/lib/transformer-context/index.d.ts.map +1 -1
  170. package/node_modules/@aws-amplify/graphql-transformer-interfaces/lib/transformer-context/index.js +2 -1
  171. package/node_modules/@aws-amplify/graphql-transformer-interfaces/lib/transformer-context/index.js.map +1 -1
  172. package/node_modules/@aws-amplify/graphql-transformer-interfaces/lib/transformer-context/transformer-context-provider.d.ts +2 -2
  173. package/node_modules/@aws-amplify/graphql-transformer-interfaces/lib/transformer-context/transformer-datasource-provider.d.ts +7 -1
  174. package/node_modules/@aws-amplify/graphql-transformer-interfaces/lib/transformer-context/transformer-datasource-provider.d.ts.map +1 -1
  175. package/node_modules/@aws-amplify/graphql-transformer-interfaces/lib/transformer-context/transformer-datasource-provider.js +6 -1
  176. package/node_modules/@aws-amplify/graphql-transformer-interfaces/lib/transformer-context/transformer-datasource-provider.js.map +1 -1
  177. package/node_modules/@aws-amplify/graphql-transformer-interfaces/package.json +3 -2
  178. package/node_modules/@aws-amplify/graphql-transformer-interfaces/src/transformer-context/index.ts +4 -0
  179. package/node_modules/@aws-amplify/graphql-transformer-interfaces/src/transformer-context/transformer-context-provider.ts +2 -2
  180. package/node_modules/@aws-amplify/graphql-transformer-interfaces/src/transformer-context/transformer-datasource-provider.ts +16 -1
  181. package/node_modules/@aws-amplify/graphql-transformer-interfaces/tsconfig.tsbuildinfo +1 -1
  182. package/node_modules/@aws-amplify/platform-core/lib/backend_deployment_type.d.ts +5 -0
  183. package/node_modules/@aws-amplify/platform-core/lib/backend_deployment_type.js +9 -0
  184. package/node_modules/@aws-amplify/platform-core/lib/cdk_context_key.d.ts +9 -0
  185. package/node_modules/@aws-amplify/platform-core/lib/cdk_context_key.js +13 -0
  186. package/node_modules/@aws-amplify/platform-core/lib/index.d.ts +4 -0
  187. package/node_modules/@aws-amplify/platform-core/lib/index.js +22 -0
  188. package/node_modules/@aws-amplify/platform-core/lib/unique_backend_identifier.d.ts +53 -0
  189. package/node_modules/@aws-amplify/platform-core/lib/unique_backend_identifier.js +74 -0
  190. package/node_modules/@aws-amplify/platform-core/package.json +24 -0
  191. package/node_modules/@aws-amplify/plugin-types/lib/amplify_function.d.ts +4 -0
  192. package/node_modules/@aws-amplify/plugin-types/lib/amplify_function.js +3 -0
  193. package/node_modules/@aws-amplify/plugin-types/lib/amplify_output_writer.d.ts +9 -0
  194. package/node_modules/@aws-amplify/plugin-types/lib/amplify_output_writer.js +3 -0
  195. package/node_modules/@aws-amplify/plugin-types/lib/auth_resources.d.ts +42 -0
  196. package/node_modules/@aws-amplify/plugin-types/lib/auth_resources.js +3 -0
  197. package/node_modules/@aws-amplify/plugin-types/lib/backend_output.d.ts +6 -0
  198. package/node_modules/@aws-amplify/plugin-types/lib/backend_output.js +3 -0
  199. package/node_modules/@aws-amplify/plugin-types/lib/backend_secret_resolver.d.ts +13 -0
  200. package/node_modules/@aws-amplify/plugin-types/lib/backend_secret_resolver.js +3 -0
  201. package/node_modules/@aws-amplify/plugin-types/lib/backend_stack_creator.d.ts +8 -0
  202. package/node_modules/@aws-amplify/plugin-types/lib/backend_stack_creator.js +3 -0
  203. package/node_modules/@aws-amplify/plugin-types/lib/backend_stack_resolver.d.ts +7 -0
  204. package/node_modules/@aws-amplify/plugin-types/lib/backend_stack_resolver.js +3 -0
  205. package/node_modules/@aws-amplify/plugin-types/lib/construct_container.d.ts +26 -0
  206. package/node_modules/@aws-amplify/plugin-types/lib/construct_container.js +3 -0
  207. package/node_modules/@aws-amplify/plugin-types/lib/construct_factory.d.ts +21 -0
  208. package/node_modules/@aws-amplify/plugin-types/lib/construct_factory.js +3 -0
  209. package/node_modules/@aws-amplify/plugin-types/lib/function_resources.d.ts +5 -0
  210. package/node_modules/@aws-amplify/plugin-types/lib/function_resources.js +3 -0
  211. package/node_modules/@aws-amplify/plugin-types/lib/import_path_verifier.d.ts +14 -0
  212. package/node_modules/@aws-amplify/plugin-types/lib/import_path_verifier.js +3 -0
  213. package/node_modules/@aws-amplify/plugin-types/lib/index.d.ts +16 -0
  214. package/node_modules/@aws-amplify/plugin-types/lib/index.js +32 -0
  215. package/node_modules/@aws-amplify/plugin-types/lib/output_retrieval_strategy.d.ts +11 -0
  216. package/node_modules/@aws-amplify/plugin-types/lib/output_retrieval_strategy.js +3 -0
  217. package/node_modules/@aws-amplify/plugin-types/lib/output_storage_strategy.d.ts +8 -0
  218. package/node_modules/@aws-amplify/plugin-types/lib/output_storage_strategy.js +3 -0
  219. package/node_modules/@aws-amplify/plugin-types/lib/resource_provider.d.ts +7 -0
  220. package/node_modules/@aws-amplify/plugin-types/lib/resource_provider.js +3 -0
  221. package/node_modules/@aws-amplify/plugin-types/lib/unique_backend_identifier.d.ts +25 -0
  222. package/node_modules/@aws-amplify/plugin-types/lib/unique_backend_identifier.js +3 -0
  223. package/node_modules/@aws-amplify/plugin-types/package.json +20 -0
  224. package/node_modules/graphql-transformer-common/API.md +3 -0
  225. package/node_modules/graphql-transformer-common/CHANGELOG.md +6 -0
  226. package/node_modules/graphql-transformer-common/LICENSE +201 -0
  227. package/node_modules/graphql-transformer-common/lib/ResourceConstants.d.ts +3 -0
  228. package/node_modules/graphql-transformer-common/lib/ResourceConstants.d.ts.map +1 -1
  229. package/node_modules/graphql-transformer-common/lib/ResourceConstants.js +3 -0
  230. package/node_modules/graphql-transformer-common/lib/ResourceConstants.js.map +1 -1
  231. package/node_modules/graphql-transformer-common/package.json +3 -2
  232. package/package.json +24 -24
  233. package/src/amplify-dynamodb-table-wrapper.ts +177 -0
  234. package/src/amplify-graphql-api.ts +10 -3
  235. package/src/amplify-graphql-definition.ts +63 -3
  236. package/src/index.ts +13 -0
  237. package/src/internal/construct-exports.ts +7 -0
  238. package/src/internal/data-source-config.ts +39 -0
  239. package/src/internal/index.ts +1 -1
  240. package/src/internal/model-type-name.ts +30 -0
  241. package/src/types.ts +54 -7
  242. package/babel.config.js +0 -13
  243. package/lib/internal/amplify-metadata.d.ts +0 -6
  244. package/lib/internal/amplify-metadata.js +0 -58
  245. package/node_modules/@aws-amplify/backend-output-schemas/lib/index.internal.d.ts +0 -3
  246. package/node_modules/@aws-amplify/backend-output-schemas/lib/index.internal.js +0 -27
  247. package/node_modules/@aws-amplify/graphql-transformer-core/lib/config/project-config.d.ts +0 -6
  248. package/node_modules/@aws-amplify/graphql-transformer-core/lib/config/project-config.d.ts.map +0 -1
  249. package/node_modules/@aws-amplify/graphql-transformer-core/lib/config/project-config.js +0 -3
  250. package/node_modules/@aws-amplify/graphql-transformer-core/lib/config/project-config.js.map +0 -1
  251. package/remove-module-type-from-package-json.ts +0 -19
  252. package/src/internal/amplify-metadata.ts +0 -58
@@ -0,0 +1,50 @@
1
+ /// <reference types="node" />
2
+ /// <reference types="node" />
3
+ import { Stack } from 'aws-cdk-lib';
4
+ import * as _os from 'os';
5
+ import * as _fs from 'fs';
6
+ /**
7
+ * Stores BI metrics information in stack descriptions
8
+ */
9
+ export declare class AttributionMetadataStorage {
10
+ private readonly fs;
11
+ private readonly os;
12
+ /**
13
+ * Constructor with props for injecting test mocks
14
+ */
15
+ constructor(fs?: typeof _fs, os?: typeof _os);
16
+ /**
17
+ * Stores an attribution metadata string in the stack description of the provided stack
18
+ * Does nothing if the stack already has a non-empty description
19
+ */
20
+ storeAttributionMetadata: (stack: Stack, stackType: string, libraryPackageJsonAbsolutePath: string, additionalMetadata?: Record<string, string>) => void;
21
+ private getAttributionMetadata;
22
+ private getLibraryVersion;
23
+ private getDeploymentEngineType;
24
+ private getPlatform;
25
+ }
26
+ export type AttributionMetadata = {
27
+ /**
28
+ * The OS that synthesized this stack
29
+ */
30
+ createdOn: Platform;
31
+ /**
32
+ * The synthesis engine that generated this stack
33
+ */
34
+ createdBy: DeploymentEngineType;
35
+ /**
36
+ * The library version that created this metadata
37
+ */
38
+ createdWith: string;
39
+ /**
40
+ * String that identifies what type of stack this metadata is set on
41
+ */
42
+ stackType: string;
43
+ /**
44
+ * Field where constructs can put additional information for BI tracking
45
+ */
46
+ metadata: Record<string, string>;
47
+ };
48
+ export type DeploymentEngineType = 'AmplifyPipelineDeploy' | 'AmplifySandbox' | 'AmplifyCDK';
49
+ export type Platform = 'Mac' | 'Windows' | 'Linux' | 'Other';
50
+ //# sourceMappingURL=store_attribution_metadata.d.ts.map
@@ -0,0 +1,104 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || function (mod) {
19
+ if (mod && mod.__esModule) return mod;
20
+ var result = {};
21
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
+ __setModuleDefault(result, mod);
23
+ return result;
24
+ };
25
+ Object.defineProperty(exports, "__esModule", { value: true });
26
+ exports.AttributionMetadataStorage = void 0;
27
+ const _os = __importStar(require("os"));
28
+ const platform_core_1 = require("@aws-amplify/platform-core");
29
+ const _fs = __importStar(require("fs"));
30
+ /**
31
+ * Stores BI metrics information in stack descriptions
32
+ */
33
+ class AttributionMetadataStorage {
34
+ fs;
35
+ os;
36
+ /**
37
+ * Constructor with props for injecting test mocks
38
+ */
39
+ constructor(fs = _fs, os = _os) {
40
+ this.fs = fs;
41
+ this.os = os;
42
+ }
43
+ /**
44
+ * Stores an attribution metadata string in the stack description of the provided stack
45
+ * Does nothing if the stack already has a non-empty description
46
+ */
47
+ storeAttributionMetadata = (stack, stackType, libraryPackageJsonAbsolutePath, additionalMetadata = {}) => {
48
+ if (typeof stack.templateOptions.description === 'string' &&
49
+ stack.templateOptions.description.length > 0) {
50
+ // don't overwrite an existing description
51
+ return;
52
+ }
53
+ stack.templateOptions.description = JSON.stringify(this.getAttributionMetadata(stack, stackType, libraryPackageJsonAbsolutePath, additionalMetadata));
54
+ };
55
+ getAttributionMetadata = (stack, stackType, libraryPackageJsonAbsolutePath, additionalMetadata) => ({
56
+ createdOn: this.getPlatform(),
57
+ createdBy: this.getDeploymentEngineType(stack),
58
+ createdWith: this.getLibraryVersion(libraryPackageJsonAbsolutePath),
59
+ stackType: stackType,
60
+ metadata: additionalMetadata,
61
+ });
62
+ getLibraryVersion = (absolutePackageJsonPath) => {
63
+ if (!this.fs.existsSync(absolutePackageJsonPath)) {
64
+ throw new Error(`Could not find ${absolutePackageJsonPath} to load library version from`);
65
+ }
66
+ const packageJsonContents = JSON.parse(
67
+ // we have to use sync fs methods here because this is part of cdk synth
68
+ this.fs.readFileSync(absolutePackageJsonPath, 'utf-8'));
69
+ const libraryVersion = packageJsonContents.version;
70
+ if (typeof libraryVersion !== 'string') {
71
+ throw new Error(`Could not parse library version from ${absolutePackageJsonPath}`);
72
+ }
73
+ return libraryVersion;
74
+ };
75
+ getDeploymentEngineType = (stack) => {
76
+ const deploymentType = stack.node.tryGetContext(platform_core_1.CDKContextKey.DEPLOYMENT_TYPE);
77
+ if (deploymentType === undefined) {
78
+ // if no deployment type context value is set, assume the construct is being used in a native CDK project
79
+ return 'AmplifyCDK';
80
+ }
81
+ switch (deploymentType) {
82
+ case platform_core_1.BackendDeploymentType.BRANCH:
83
+ return 'AmplifyPipelineDeploy';
84
+ case platform_core_1.BackendDeploymentType.SANDBOX:
85
+ return 'AmplifySandbox';
86
+ default:
87
+ throw new Error(`Unknown ${platform_core_1.CDKContextKey.DEPLOYMENT_TYPE} CDK context value "${deploymentType}"`);
88
+ }
89
+ };
90
+ getPlatform = () => {
91
+ switch (this.os.platform()) {
92
+ case 'darwin':
93
+ return 'Mac';
94
+ case 'win32':
95
+ return 'Windows';
96
+ case 'linux':
97
+ return 'Linux';
98
+ default:
99
+ return 'Other';
100
+ }
101
+ };
102
+ }
103
+ exports.AttributionMetadataStorage = AttributionMetadataStorage;
104
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3RvcmVfYXR0cmlidXRpb25fbWV0YWRhdGEuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9zcmMvc3RvcmVfYXR0cmlidXRpb25fbWV0YWRhdGEudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7QUFDQSx3Q0FBMEI7QUFDMUIsOERBR29DO0FBQ3BDLHdDQUEwQjtBQUUxQjs7R0FFRztBQUNILE1BQWEsMEJBQTBCO0lBS2xCO0lBQ0E7SUFMbkI7O09BRUc7SUFDSCxZQUNtQixLQUFpQixHQUFHLEVBQ3BCLEtBQWlCLEdBQUc7UUFEcEIsT0FBRSxHQUFGLEVBQUUsQ0FBa0I7UUFDcEIsT0FBRSxHQUFGLEVBQUUsQ0FBa0I7SUFDcEMsQ0FBQztJQUVKOzs7T0FHRztJQUNILHdCQUF3QixHQUFHLENBQ3pCLEtBQVksRUFDWixTQUFpQixFQUNqQiw4QkFBc0MsRUFDdEMscUJBQTZDLEVBQUUsRUFDekMsRUFBRTtRQUNSLElBQ0UsT0FBTyxLQUFLLENBQUMsZUFBZSxDQUFDLFdBQVcsS0FBSyxRQUFRO1lBQ3JELEtBQUssQ0FBQyxlQUFlLENBQUMsV0FBVyxDQUFDLE1BQU0sR0FBRyxDQUFDLEVBQzVDO1lBQ0EsMENBQTBDO1lBQzFDLE9BQU87U0FDUjtRQUNELEtBQUssQ0FBQyxlQUFlLENBQUMsV0FBVyxHQUFHLElBQUksQ0FBQyxTQUFTLENBQ2hELElBQUksQ0FBQyxzQkFBc0IsQ0FDekIsS0FBSyxFQUNMLFNBQVMsRUFDVCw4QkFBOEIsRUFDOUIsa0JBQWtCLENBQ25CLENBQ0YsQ0FBQztJQUNKLENBQUMsQ0FBQztJQUVNLHNCQUFzQixHQUFHLENBQy9CLEtBQVksRUFDWixTQUFpQixFQUNqQiw4QkFBc0MsRUFDdEMsa0JBQTBDLEVBQ3JCLEVBQUUsQ0FBQyxDQUFDO1FBQ3pCLFNBQVMsRUFBRSxJQUFJLENBQUMsV0FBVyxFQUFFO1FBQzdCLFNBQVMsRUFBRSxJQUFJLENBQUMsdUJBQXVCLENBQUMsS0FBSyxDQUFDO1FBQzlDLFdBQVcsRUFBRSxJQUFJLENBQUMsaUJBQWlCLENBQUMsOEJBQThCLENBQUM7UUFDbkUsU0FBUyxFQUFFLFNBQVM7UUFDcEIsUUFBUSxFQUFFLGtCQUFrQjtLQUM3QixDQUFDLENBQUM7SUFFSyxpQkFBaUIsR0FBRyxDQUFDLHVCQUErQixFQUFVLEVBQUU7UUFDdEUsSUFBSSxDQUFDLElBQUksQ0FBQyxFQUFFLENBQUMsVUFBVSxDQUFDLHVCQUF1QixDQUFDLEVBQUU7WUFDaEQsTUFBTSxJQUFJLEtBQUssQ0FDYixrQkFBa0IsdUJBQXVCLCtCQUErQixDQUN6RSxDQUFDO1NBQ0g7UUFDRCxNQUFNLG1CQUFtQixHQUFHLElBQUksQ0FBQyxLQUFLO1FBQ3BDLHdFQUF3RTtRQUN4RSxJQUFJLENBQUMsRUFBRSxDQUFDLFlBQVksQ0FBQyx1QkFBdUIsRUFBRSxPQUFPLENBQUMsQ0FDdkQsQ0FBQztRQUNGLE1BQU0sY0FBYyxHQUFHLG1CQUFtQixDQUFDLE9BQU8sQ0FBQztRQUNuRCxJQUFJLE9BQU8sY0FBYyxLQUFLLFFBQVEsRUFBRTtZQUN0QyxNQUFNLElBQUksS0FBSyxDQUNiLHdDQUF3Qyx1QkFBdUIsRUFBRSxDQUNsRSxDQUFDO1NBQ0g7UUFDRCxPQUFPLGNBQWMsQ0FBQztJQUN4QixDQUFDLENBQUM7SUFFTSx1QkFBdUIsR0FBRyxDQUFDLEtBQVksRUFBd0IsRUFBRTtRQUN2RSxNQUFNLGNBQWMsR0FDbEIsS0FBSyxDQUFDLElBQUksQ0FBQyxhQUFhLENBQUMsNkJBQWEsQ0FBQyxlQUFlLENBQUMsQ0FBQztRQUUxRCxJQUFJLGNBQWMsS0FBSyxTQUFTLEVBQUU7WUFDaEMseUdBQXlHO1lBQ3pHLE9BQU8sWUFBWSxDQUFDO1NBQ3JCO1FBRUQsUUFBUSxjQUFjLEVBQUU7WUFDdEIsS0FBSyxxQ0FBcUIsQ0FBQyxNQUFNO2dCQUMvQixPQUFPLHVCQUF1QixDQUFDO1lBQ2pDLEtBQUsscUNBQXFCLENBQUMsT0FBTztnQkFDaEMsT0FBTyxnQkFBZ0IsQ0FBQztZQUMxQjtnQkFDRSxNQUFNLElBQUksS0FBSyxDQUNiLFdBQVcsNkJBQWEsQ0FBQyxlQUFlLHVCQUN0QyxjQUNGLEdBQUcsQ0FDSixDQUFDO1NBQ0w7SUFDSCxDQUFDLENBQUM7SUFFTSxXQUFXLEdBQUcsR0FBYSxFQUFFO1FBQ25DLFFBQVEsSUFBSSxDQUFDLEVBQUUsQ0FBQyxRQUFRLEVBQUUsRUFBRTtZQUMxQixLQUFLLFFBQVE7Z0JBQ1gsT0FBTyxLQUFLLENBQUM7WUFDZixLQUFLLE9BQU87Z0JBQ1YsT0FBTyxTQUFTLENBQUM7WUFDbkIsS0FBSyxPQUFPO2dCQUNWLE9BQU8sT0FBTyxDQUFDO1lBQ2pCO2dCQUNFLE9BQU8sT0FBTyxDQUFDO1NBQ2xCO0lBQ0gsQ0FBQyxDQUFDO0NBQ0g7QUF2R0QsZ0VBdUdDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgU3RhY2sgfSBmcm9tICdhd3MtY2RrLWxpYic7XG5pbXBvcnQgKiBhcyBfb3MgZnJvbSAnb3MnO1xuaW1wb3J0IHtcbiAgQmFja2VuZERlcGxveW1lbnRUeXBlLFxuICBDREtDb250ZXh0S2V5LFxufSBmcm9tICdAYXdzLWFtcGxpZnkvcGxhdGZvcm0tY29yZSc7XG5pbXBvcnQgKiBhcyBfZnMgZnJvbSAnZnMnO1xuXG4vKipcbiAqIFN0b3JlcyBCSSBtZXRyaWNzIGluZm9ybWF0aW9uIGluIHN0YWNrIGRlc2NyaXB0aW9uc1xuICovXG5leHBvcnQgY2xhc3MgQXR0cmlidXRpb25NZXRhZGF0YVN0b3JhZ2Uge1xuICAvKipcbiAgICogQ29uc3RydWN0b3Igd2l0aCBwcm9wcyBmb3IgaW5qZWN0aW5nIHRlc3QgbW9ja3NcbiAgICovXG4gIGNvbnN0cnVjdG9yKFxuICAgIHByaXZhdGUgcmVhZG9ubHkgZnM6IHR5cGVvZiBfZnMgPSBfZnMsXG4gICAgcHJpdmF0ZSByZWFkb25seSBvczogdHlwZW9mIF9vcyA9IF9vc1xuICApIHt9XG5cbiAgLyoqXG4gICAqIFN0b3JlcyBhbiBhdHRyaWJ1dGlvbiBtZXRhZGF0YSBzdHJpbmcgaW4gdGhlIHN0YWNrIGRlc2NyaXB0aW9uIG9mIHRoZSBwcm92aWRlZCBzdGFja1xuICAgKiBEb2VzIG5vdGhpbmcgaWYgdGhlIHN0YWNrIGFscmVhZHkgaGFzIGEgbm9uLWVtcHR5IGRlc2NyaXB0aW9uXG4gICAqL1xuICBzdG9yZUF0dHJpYnV0aW9uTWV0YWRhdGEgPSAoXG4gICAgc3RhY2s6IFN0YWNrLFxuICAgIHN0YWNrVHlwZTogc3RyaW5nLFxuICAgIGxpYnJhcnlQYWNrYWdlSnNvbkFic29sdXRlUGF0aDogc3RyaW5nLFxuICAgIGFkZGl0aW9uYWxNZXRhZGF0YTogUmVjb3JkPHN0cmluZywgc3RyaW5nPiA9IHt9XG4gICk6IHZvaWQgPT4ge1xuICAgIGlmIChcbiAgICAgIHR5cGVvZiBzdGFjay50ZW1wbGF0ZU9wdGlvbnMuZGVzY3JpcHRpb24gPT09ICdzdHJpbmcnICYmXG4gICAgICBzdGFjay50ZW1wbGF0ZU9wdGlvbnMuZGVzY3JpcHRpb24ubGVuZ3RoID4gMFxuICAgICkge1xuICAgICAgLy8gZG9uJ3Qgb3ZlcndyaXRlIGFuIGV4aXN0aW5nIGRlc2NyaXB0aW9uXG4gICAgICByZXR1cm47XG4gICAgfVxuICAgIHN0YWNrLnRlbXBsYXRlT3B0aW9ucy5kZXNjcmlwdGlvbiA9IEpTT04uc3RyaW5naWZ5KFxuICAgICAgdGhpcy5nZXRBdHRyaWJ1dGlvbk1ldGFkYXRhKFxuICAgICAgICBzdGFjayxcbiAgICAgICAgc3RhY2tUeXBlLFxuICAgICAgICBsaWJyYXJ5UGFja2FnZUpzb25BYnNvbHV0ZVBhdGgsXG4gICAgICAgIGFkZGl0aW9uYWxNZXRhZGF0YVxuICAgICAgKVxuICAgICk7XG4gIH07XG5cbiAgcHJpdmF0ZSBnZXRBdHRyaWJ1dGlvbk1ldGFkYXRhID0gKFxuICAgIHN0YWNrOiBTdGFjayxcbiAgICBzdGFja1R5cGU6IHN0cmluZyxcbiAgICBsaWJyYXJ5UGFja2FnZUpzb25BYnNvbHV0ZVBhdGg6IHN0cmluZyxcbiAgICBhZGRpdGlvbmFsTWV0YWRhdGE6IFJlY29yZDxzdHJpbmcsIHN0cmluZz5cbiAgKTogQXR0cmlidXRpb25NZXRhZGF0YSA9PiAoe1xuICAgIGNyZWF0ZWRPbjogdGhpcy5nZXRQbGF0Zm9ybSgpLFxuICAgIGNyZWF0ZWRCeTogdGhpcy5nZXREZXBsb3ltZW50RW5naW5lVHlwZShzdGFjayksXG4gICAgY3JlYXRlZFdpdGg6IHRoaXMuZ2V0TGlicmFyeVZlcnNpb24obGlicmFyeVBhY2thZ2VKc29uQWJzb2x1dGVQYXRoKSxcbiAgICBzdGFja1R5cGU6IHN0YWNrVHlwZSxcbiAgICBtZXRhZGF0YTogYWRkaXRpb25hbE1ldGFkYXRhLFxuICB9KTtcblxuICBwcml2YXRlIGdldExpYnJhcnlWZXJzaW9uID0gKGFic29sdXRlUGFja2FnZUpzb25QYXRoOiBzdHJpbmcpOiBzdHJpbmcgPT4ge1xuICAgIGlmICghdGhpcy5mcy5leGlzdHNTeW5jKGFic29sdXRlUGFja2FnZUpzb25QYXRoKSkge1xuICAgICAgdGhyb3cgbmV3IEVycm9yKFxuICAgICAgICBgQ291bGQgbm90IGZpbmQgJHthYnNvbHV0ZVBhY2thZ2VKc29uUGF0aH0gdG8gbG9hZCBsaWJyYXJ5IHZlcnNpb24gZnJvbWBcbiAgICAgICk7XG4gICAgfVxuICAgIGNvbnN0IHBhY2thZ2VKc29uQ29udGVudHMgPSBKU09OLnBhcnNlKFxuICAgICAgLy8gd2UgaGF2ZSB0byB1c2Ugc3luYyBmcyBtZXRob2RzIGhlcmUgYmVjYXVzZSB0aGlzIGlzIHBhcnQgb2YgY2RrIHN5bnRoXG4gICAgICB0aGlzLmZzLnJlYWRGaWxlU3luYyhhYnNvbHV0ZVBhY2thZ2VKc29uUGF0aCwgJ3V0Zi04JylcbiAgICApO1xuICAgIGNvbnN0IGxpYnJhcnlWZXJzaW9uID0gcGFja2FnZUpzb25Db250ZW50cy52ZXJzaW9uO1xuICAgIGlmICh0eXBlb2YgbGlicmFyeVZlcnNpb24gIT09ICdzdHJpbmcnKSB7XG4gICAgICB0aHJvdyBuZXcgRXJyb3IoXG4gICAgICAgIGBDb3VsZCBub3QgcGFyc2UgbGlicmFyeSB2ZXJzaW9uIGZyb20gJHthYnNvbHV0ZVBhY2thZ2VKc29uUGF0aH1gXG4gICAgICApO1xuICAgIH1cbiAgICByZXR1cm4gbGlicmFyeVZlcnNpb247XG4gIH07XG5cbiAgcHJpdmF0ZSBnZXREZXBsb3ltZW50RW5naW5lVHlwZSA9IChzdGFjazogU3RhY2spOiBEZXBsb3ltZW50RW5naW5lVHlwZSA9PiB7XG4gICAgY29uc3QgZGVwbG95bWVudFR5cGU6IEJhY2tlbmREZXBsb3ltZW50VHlwZSB8IHVuZGVmaW5lZCA9XG4gICAgICBzdGFjay5ub2RlLnRyeUdldENvbnRleHQoQ0RLQ29udGV4dEtleS5ERVBMT1lNRU5UX1RZUEUpO1xuXG4gICAgaWYgKGRlcGxveW1lbnRUeXBlID09PSB1bmRlZmluZWQpIHtcbiAgICAgIC8vIGlmIG5vIGRlcGxveW1lbnQgdHlwZSBjb250ZXh0IHZhbHVlIGlzIHNldCwgYXNzdW1lIHRoZSBjb25zdHJ1Y3QgaXMgYmVpbmcgdXNlZCBpbiBhIG5hdGl2ZSBDREsgcHJvamVjdFxuICAgICAgcmV0dXJuICdBbXBsaWZ5Q0RLJztcbiAgICB9XG5cbiAgICBzd2l0Y2ggKGRlcGxveW1lbnRUeXBlKSB7XG4gICAgICBjYXNlIEJhY2tlbmREZXBsb3ltZW50VHlwZS5CUkFOQ0g6XG4gICAgICAgIHJldHVybiAnQW1wbGlmeVBpcGVsaW5lRGVwbG95JztcbiAgICAgIGNhc2UgQmFja2VuZERlcGxveW1lbnRUeXBlLlNBTkRCT1g6XG4gICAgICAgIHJldHVybiAnQW1wbGlmeVNhbmRib3gnO1xuICAgICAgZGVmYXVsdDpcbiAgICAgICAgdGhyb3cgbmV3IEVycm9yKFxuICAgICAgICAgIGBVbmtub3duICR7Q0RLQ29udGV4dEtleS5ERVBMT1lNRU5UX1RZUEV9IENESyBjb250ZXh0IHZhbHVlIFwiJHtcbiAgICAgICAgICAgIGRlcGxveW1lbnRUeXBlIGFzIHN0cmluZ1xuICAgICAgICAgIH1cImBcbiAgICAgICAgKTtcbiAgICB9XG4gIH07XG5cbiAgcHJpdmF0ZSBnZXRQbGF0Zm9ybSA9ICgpOiBQbGF0Zm9ybSA9PiB7XG4gICAgc3dpdGNoICh0aGlzLm9zLnBsYXRmb3JtKCkpIHtcbiAgICAgIGNhc2UgJ2Rhcndpbic6XG4gICAgICAgIHJldHVybiAnTWFjJztcbiAgICAgIGNhc2UgJ3dpbjMyJzpcbiAgICAgICAgcmV0dXJuICdXaW5kb3dzJztcbiAgICAgIGNhc2UgJ2xpbnV4JzpcbiAgICAgICAgcmV0dXJuICdMaW51eCc7XG4gICAgICBkZWZhdWx0OlxuICAgICAgICByZXR1cm4gJ090aGVyJztcbiAgICB9XG4gIH07XG59XG5cbmV4cG9ydCB0eXBlIEF0dHJpYnV0aW9uTWV0YWRhdGEgPSB7XG4gIC8qKlxuICAgKiBUaGUgT1MgdGhhdCBzeW50aGVzaXplZCB0aGlzIHN0YWNrXG4gICAqL1xuICBjcmVhdGVkT246IFBsYXRmb3JtO1xuICAvKipcbiAgICogVGhlIHN5bnRoZXNpcyBlbmdpbmUgdGhhdCBnZW5lcmF0ZWQgdGhpcyBzdGFja1xuICAgKi9cbiAgY3JlYXRlZEJ5OiBEZXBsb3ltZW50RW5naW5lVHlwZTtcbiAgLyoqXG4gICAqIFRoZSBsaWJyYXJ5IHZlcnNpb24gdGhhdCBjcmVhdGVkIHRoaXMgbWV0YWRhdGFcbiAgICovXG4gIGNyZWF0ZWRXaXRoOiBzdHJpbmc7XG4gIC8qKlxuICAgKiBTdHJpbmcgdGhhdCBpZGVudGlmaWVzIHdoYXQgdHlwZSBvZiBzdGFjayB0aGlzIG1ldGFkYXRhIGlzIHNldCBvblxuICAgKi9cbiAgc3RhY2tUeXBlOiBzdHJpbmc7XG5cbiAgLyoqXG4gICAqIEZpZWxkIHdoZXJlIGNvbnN0cnVjdHMgY2FuIHB1dCBhZGRpdGlvbmFsIGluZm9ybWF0aW9uIGZvciBCSSB0cmFja2luZ1xuICAgKi9cbiAgbWV0YWRhdGE6IFJlY29yZDxzdHJpbmcsIHN0cmluZz47XG59O1xuXG5leHBvcnQgdHlwZSBEZXBsb3ltZW50RW5naW5lVHlwZSA9XG4gIHwgJ0FtcGxpZnlQaXBlbGluZURlcGxveSdcbiAgfCAnQW1wbGlmeVNhbmRib3gnXG4gIHwgJ0FtcGxpZnlDREsnO1xuXG5leHBvcnQgdHlwZSBQbGF0Zm9ybSA9ICdNYWMnIHwgJ1dpbmRvd3MnIHwgJ0xpbnV4JyB8ICdPdGhlcic7XG4iXX0=
@@ -0,0 +1,5 @@
1
+ export declare enum BackendDeploymentType {
2
+ SANDBOX = "SANDBOX",
3
+ BRANCH = "BRANCH"
4
+ }
5
+ //# sourceMappingURL=backend_deployment_type.d.ts.map
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.BackendDeploymentType = void 0;
4
+ var BackendDeploymentType;
5
+ (function (BackendDeploymentType) {
6
+ BackendDeploymentType["SANDBOX"] = "SANDBOX";
7
+ BackendDeploymentType["BRANCH"] = "BRANCH";
8
+ })(BackendDeploymentType || (exports.BackendDeploymentType = BackendDeploymentType = {}));
9
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYmFja2VuZF9kZXBsb3ltZW50X3R5cGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9zcmMvYmFja2VuZF9kZXBsb3ltZW50X3R5cGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7O0FBQUEsSUFBWSxxQkFHWDtBQUhELFdBQVkscUJBQXFCO0lBQy9CLDRDQUFtQixDQUFBO0lBQ25CLDBDQUFpQixDQUFBO0FBQ25CLENBQUMsRUFIVyxxQkFBcUIscUNBQXJCLHFCQUFxQixRQUdoQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCBlbnVtIEJhY2tlbmREZXBsb3ltZW50VHlwZSB7XG4gIFNBTkRCT1ggPSAnU0FOREJPWCcsXG4gIEJSQU5DSCA9ICdCUkFOQ0gnLFxufVxuIl19
@@ -0,0 +1,9 @@
1
+ /**
2
+ * Keys for values that are passed between the Amplify deployment engine and the CDK synth process via CDK Context
3
+ *
4
+ * This enum does not currently capture all context keys. We can refactor incrementally as we need to use these keys in multiple places
5
+ */
6
+ export declare enum CDKContextKey {
7
+ DEPLOYMENT_TYPE = "deployment-type"
8
+ }
9
+ //# sourceMappingURL=cdk_context_key.d.ts.map
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CDKContextKey = void 0;
4
+ /**
5
+ * Keys for values that are passed between the Amplify deployment engine and the CDK synth process via CDK Context
6
+ *
7
+ * This enum does not currently capture all context keys. We can refactor incrementally as we need to use these keys in multiple places
8
+ */
9
+ var CDKContextKey;
10
+ (function (CDKContextKey) {
11
+ CDKContextKey["DEPLOYMENT_TYPE"] = "deployment-type";
12
+ })(CDKContextKey || (exports.CDKContextKey = CDKContextKey = {}));
13
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2RrX2NvbnRleHRfa2V5LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vc3JjL2Nka19jb250ZXh0X2tleS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7QUFBQTs7OztHQUlHO0FBQ0gsSUFBWSxhQUVYO0FBRkQsV0FBWSxhQUFhO0lBQ3ZCLG9EQUFtQyxDQUFBO0FBQ3JDLENBQUMsRUFGVyxhQUFhLDZCQUFiLGFBQWEsUUFFeEIiLCJzb3VyY2VzQ29udGVudCI6WyIvKipcbiAqIEtleXMgZm9yIHZhbHVlcyB0aGF0IGFyZSBwYXNzZWQgYmV0d2VlbiB0aGUgQW1wbGlmeSBkZXBsb3ltZW50IGVuZ2luZSBhbmQgdGhlIENESyBzeW50aCBwcm9jZXNzIHZpYSBDREsgQ29udGV4dFxuICpcbiAqIFRoaXMgZW51bSBkb2VzIG5vdCBjdXJyZW50bHkgY2FwdHVyZSBhbGwgY29udGV4dCBrZXlzLiBXZSBjYW4gcmVmYWN0b3IgaW5jcmVtZW50YWxseSBhcyB3ZSBuZWVkIHRvIHVzZSB0aGVzZSBrZXlzIGluIG11bHRpcGxlIHBsYWNlc1xuICovXG5leHBvcnQgZW51bSBDREtDb250ZXh0S2V5IHtcbiAgREVQTE9ZTUVOVF9UWVBFID0gJ2RlcGxveW1lbnQtdHlwZScsXG59XG4iXX0=
@@ -0,0 +1,4 @@
1
+ export * from './backend_deployment_type.js';
2
+ export * from './unique_backend_identifier.js';
3
+ export { CDKContextKey } from './cdk_context_key.js';
4
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1,22 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ exports.CDKContextKey = void 0;
18
+ __exportStar(require("./backend_deployment_type.js"), exports);
19
+ __exportStar(require("./unique_backend_identifier.js"), exports);
20
+ var cdk_context_key_js_1 = require("./cdk_context_key.js");
21
+ Object.defineProperty(exports, "CDKContextKey", { enumerable: true, get: function () { return cdk_context_key_js_1.CDKContextKey; } });
22
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7Ozs7Ozs7Ozs7QUFBQSwrREFBNkM7QUFDN0MsaUVBQStDO0FBQy9DLDJEQUFxRDtBQUE1QyxtSEFBQSxhQUFhLE9BQUEiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL2JhY2tlbmRfZGVwbG95bWVudF90eXBlLmpzJztcbmV4cG9ydCAqIGZyb20gJy4vdW5pcXVlX2JhY2tlbmRfaWRlbnRpZmllci5qcyc7XG5leHBvcnQgeyBDREtDb250ZXh0S2V5IH0gZnJvbSAnLi9jZGtfY29udGV4dF9rZXkuanMnO1xuIl19
@@ -0,0 +1,53 @@
1
+ import { BackendId, UniqueBackendIdentifier } from '@aws-amplify/plugin-types';
2
+ /**
3
+ * UniqueBackendIdentifierBase
4
+ */
5
+ export declare abstract class UniqueBackendIdentifierBase implements UniqueBackendIdentifier {
6
+ /**
7
+ * For Amplify branch environments, this is the Amplify app id
8
+ * For sandbox deployments, this is a concatenation of package.json#name and the current local username
9
+ */
10
+ readonly backendId: BackendId;
11
+ /**
12
+ * Disambiguator for the identifier
13
+ */
14
+ readonly disambiguator: string;
15
+ /**
16
+ * UniqueBackendIdentifierBase
17
+ */
18
+ constructor(
19
+ /**
20
+ * For Amplify branch environments, this is the Amplify app id
21
+ * For sandbox deployments, this is a concatenation of package.json#name and the current local username
22
+ */
23
+ backendId: BackendId,
24
+ /**
25
+ * Disambiguator for the identifier
26
+ */
27
+ disambiguator: string);
28
+ }
29
+ /**
30
+ * BranchBackendIdentifier
31
+ */
32
+ export declare class BranchBackendIdentifier extends UniqueBackendIdentifierBase {
33
+ readonly backendId: BackendId;
34
+ /**
35
+ * BranchBackendIdentifier
36
+ */
37
+ constructor(backendId: BackendId, branchName: string);
38
+ }
39
+ /**
40
+ * SandboxBackendIdentifier
41
+ */
42
+ export declare class SandboxBackendIdentifier extends UniqueBackendIdentifierBase {
43
+ readonly backendId: BackendId;
44
+ /**
45
+ * SandboxBackendIdentifier
46
+ */
47
+ constructor(backendId: BackendId);
48
+ /**
49
+ * Parses identifier instance from sandbox name
50
+ */
51
+ static tryParse(sandboxName: string): SandboxBackendIdentifier | undefined;
52
+ }
53
+ //# sourceMappingURL=unique_backend_identifier.d.ts.map
@@ -0,0 +1,74 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.SandboxBackendIdentifier = exports.BranchBackendIdentifier = exports.UniqueBackendIdentifierBase = void 0;
4
+ /**
5
+ * UniqueBackendIdentifierBase
6
+ */
7
+ class UniqueBackendIdentifierBase {
8
+ backendId;
9
+ disambiguator;
10
+ /**
11
+ * UniqueBackendIdentifierBase
12
+ */
13
+ constructor(
14
+ /**
15
+ * For Amplify branch environments, this is the Amplify app id
16
+ * For sandbox deployments, this is a concatenation of package.json#name and the current local username
17
+ */
18
+ backendId,
19
+ /**
20
+ * Disambiguator for the identifier
21
+ */
22
+ disambiguator) {
23
+ this.backendId = backendId;
24
+ this.disambiguator = disambiguator;
25
+ }
26
+ }
27
+ exports.UniqueBackendIdentifierBase = UniqueBackendIdentifierBase;
28
+ /**
29
+ * BranchBackendIdentifier
30
+ */
31
+ class BranchBackendIdentifier extends UniqueBackendIdentifierBase {
32
+ backendId;
33
+ /**
34
+ * BranchBackendIdentifier
35
+ */
36
+ constructor(backendId, branchName) {
37
+ super(backendId, branchName);
38
+ this.backendId = backendId;
39
+ }
40
+ }
41
+ exports.BranchBackendIdentifier = BranchBackendIdentifier;
42
+ /**
43
+ * SandboxBackendIdentifier
44
+ */
45
+ class SandboxBackendIdentifier extends UniqueBackendIdentifierBase {
46
+ backendId;
47
+ /**
48
+ * SandboxBackendIdentifier
49
+ */
50
+ constructor(backendId) {
51
+ /**
52
+ * For sandbox deployments, disambiguator is the string literal "sandbox"
53
+ */
54
+ super(backendId, 'sandbox');
55
+ this.backendId = backendId;
56
+ }
57
+ /**
58
+ * Parses identifier instance from sandbox name
59
+ */
60
+ static tryParse(sandboxName) {
61
+ const expectedSandboxNamePrefix = 'amplify-';
62
+ const expectedSandboxNameSuffix = '-sandbox';
63
+ if (!sandboxName.startsWith(expectedSandboxNamePrefix) ||
64
+ !sandboxName.endsWith(expectedSandboxNameSuffix)) {
65
+ return;
66
+ }
67
+ const backendId = sandboxName
68
+ .replace(expectedSandboxNamePrefix, '')
69
+ .replace(expectedSandboxNameSuffix, '');
70
+ return new SandboxBackendIdentifier(backendId);
71
+ }
72
+ }
73
+ exports.SandboxBackendIdentifier = SandboxBackendIdentifier;
74
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidW5pcXVlX2JhY2tlbmRfaWRlbnRpZmllci5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uL3NyYy91bmlxdWVfYmFja2VuZF9pZGVudGlmaWVyLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7OztBQUVBOztHQUVHO0FBQ0gsTUFBc0IsMkJBQTJCO0lBVzdCO0lBSUE7SUFabEI7O09BRUc7SUFDSDtJQUNFOzs7T0FHRztJQUNhLFNBQW9CO0lBQ3BDOztPQUVHO0lBQ2EsYUFBcUI7UUFKckIsY0FBUyxHQUFULFNBQVMsQ0FBVztRQUlwQixrQkFBYSxHQUFiLGFBQWEsQ0FBUTtJQUNwQyxDQUFDO0NBQ0w7QUFqQkQsa0VBaUJDO0FBRUQ7O0dBRUc7QUFDSCxNQUFhLHVCQUF3QixTQUFRLDJCQUEyQjtJQUkxQztJQUg1Qjs7T0FFRztJQUNILFlBQTRCLFNBQW9CLEVBQUUsVUFBa0I7UUFDbEUsS0FBSyxDQUFDLFNBQVMsRUFBRSxVQUFVLENBQUMsQ0FBQztRQURILGNBQVMsR0FBVCxTQUFTLENBQVc7SUFFaEQsQ0FBQztDQUNGO0FBUEQsMERBT0M7QUFFRDs7R0FFRztBQUNILE1BQWEsd0JBQXlCLFNBQVEsMkJBQTJCO0lBSTNDO0lBSDVCOztPQUVHO0lBQ0gsWUFBNEIsU0FBb0I7UUFDOUM7O1dBRUc7UUFDSCxLQUFLLENBQUMsU0FBUyxFQUFFLFNBQVMsQ0FBQyxDQUFDO1FBSkYsY0FBUyxHQUFULFNBQVMsQ0FBVztJQUtoRCxDQUFDO0lBRUQ7O09BRUc7SUFDSCxNQUFNLENBQUMsUUFBUSxDQUFDLFdBQW1CO1FBQ2pDLE1BQU0seUJBQXlCLEdBQUcsVUFBVSxDQUFDO1FBQzdDLE1BQU0seUJBQXlCLEdBQUcsVUFBVSxDQUFDO1FBQzdDLElBQ0UsQ0FBQyxXQUFXLENBQUMsVUFBVSxDQUFDLHlCQUF5QixDQUFDO1lBQ2xELENBQUMsV0FBVyxDQUFDLFFBQVEsQ0FBQyx5QkFBeUIsQ0FBQyxFQUNoRDtZQUNBLE9BQU87U0FDUjtRQUNELE1BQU0sU0FBUyxHQUFHLFdBQVc7YUFDMUIsT0FBTyxDQUFDLHlCQUF5QixFQUFFLEVBQUUsQ0FBQzthQUN0QyxPQUFPLENBQUMseUJBQXlCLEVBQUUsRUFBRSxDQUFDLENBQUM7UUFDMUMsT0FBTyxJQUFJLHdCQUF3QixDQUFDLFNBQVMsQ0FBQyxDQUFDO0lBQ2pELENBQUM7Q0FDRjtBQTVCRCw0REE0QkMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBCYWNrZW5kSWQsIFVuaXF1ZUJhY2tlbmRJZGVudGlmaWVyIH0gZnJvbSAnQGF3cy1hbXBsaWZ5L3BsdWdpbi10eXBlcyc7XG5cbi8qKlxuICogVW5pcXVlQmFja2VuZElkZW50aWZpZXJCYXNlXG4gKi9cbmV4cG9ydCBhYnN0cmFjdCBjbGFzcyBVbmlxdWVCYWNrZW5kSWRlbnRpZmllckJhc2VcbiAgaW1wbGVtZW50cyBVbmlxdWVCYWNrZW5kSWRlbnRpZmllclxue1xuICAvKipcbiAgICogVW5pcXVlQmFja2VuZElkZW50aWZpZXJCYXNlXG4gICAqL1xuICBjb25zdHJ1Y3RvcihcbiAgICAvKipcbiAgICAgKiBGb3IgQW1wbGlmeSBicmFuY2ggZW52aXJvbm1lbnRzLCB0aGlzIGlzIHRoZSBBbXBsaWZ5IGFwcCBpZFxuICAgICAqIEZvciBzYW5kYm94IGRlcGxveW1lbnRzLCB0aGlzIGlzIGEgY29uY2F0ZW5hdGlvbiBvZiBwYWNrYWdlLmpzb24jbmFtZSBhbmQgdGhlIGN1cnJlbnQgbG9jYWwgdXNlcm5hbWVcbiAgICAgKi9cbiAgICBwdWJsaWMgcmVhZG9ubHkgYmFja2VuZElkOiBCYWNrZW5kSWQsXG4gICAgLyoqXG4gICAgICogRGlzYW1iaWd1YXRvciBmb3IgdGhlIGlkZW50aWZpZXJcbiAgICAgKi9cbiAgICBwdWJsaWMgcmVhZG9ubHkgZGlzYW1iaWd1YXRvcjogc3RyaW5nXG4gICkge31cbn1cblxuLyoqXG4gKiBCcmFuY2hCYWNrZW5kSWRlbnRpZmllclxuICovXG5leHBvcnQgY2xhc3MgQnJhbmNoQmFja2VuZElkZW50aWZpZXIgZXh0ZW5kcyBVbmlxdWVCYWNrZW5kSWRlbnRpZmllckJhc2Uge1xuICAvKipcbiAgICogQnJhbmNoQmFja2VuZElkZW50aWZpZXJcbiAgICovXG4gIGNvbnN0cnVjdG9yKHB1YmxpYyByZWFkb25seSBiYWNrZW5kSWQ6IEJhY2tlbmRJZCwgYnJhbmNoTmFtZTogc3RyaW5nKSB7XG4gICAgc3VwZXIoYmFja2VuZElkLCBicmFuY2hOYW1lKTtcbiAgfVxufVxuXG4vKipcbiAqIFNhbmRib3hCYWNrZW5kSWRlbnRpZmllclxuICovXG5leHBvcnQgY2xhc3MgU2FuZGJveEJhY2tlbmRJZGVudGlmaWVyIGV4dGVuZHMgVW5pcXVlQmFja2VuZElkZW50aWZpZXJCYXNlIHtcbiAgLyoqXG4gICAqIFNhbmRib3hCYWNrZW5kSWRlbnRpZmllclxuICAgKi9cbiAgY29uc3RydWN0b3IocHVibGljIHJlYWRvbmx5IGJhY2tlbmRJZDogQmFja2VuZElkKSB7XG4gICAgLyoqXG4gICAgICogRm9yIHNhbmRib3ggZGVwbG95bWVudHMsIGRpc2FtYmlndWF0b3IgaXMgdGhlIHN0cmluZyBsaXRlcmFsIFwic2FuZGJveFwiXG4gICAgICovXG4gICAgc3VwZXIoYmFja2VuZElkLCAnc2FuZGJveCcpO1xuICB9XG5cbiAgLyoqXG4gICAqIFBhcnNlcyBpZGVudGlmaWVyIGluc3RhbmNlIGZyb20gc2FuZGJveCBuYW1lXG4gICAqL1xuICBzdGF0aWMgdHJ5UGFyc2Uoc2FuZGJveE5hbWU6IHN0cmluZyk6IFNhbmRib3hCYWNrZW5kSWRlbnRpZmllciB8IHVuZGVmaW5lZCB7XG4gICAgY29uc3QgZXhwZWN0ZWRTYW5kYm94TmFtZVByZWZpeCA9ICdhbXBsaWZ5LSc7XG4gICAgY29uc3QgZXhwZWN0ZWRTYW5kYm94TmFtZVN1ZmZpeCA9ICctc2FuZGJveCc7XG4gICAgaWYgKFxuICAgICAgIXNhbmRib3hOYW1lLnN0YXJ0c1dpdGgoZXhwZWN0ZWRTYW5kYm94TmFtZVByZWZpeCkgfHxcbiAgICAgICFzYW5kYm94TmFtZS5lbmRzV2l0aChleHBlY3RlZFNhbmRib3hOYW1lU3VmZml4KVxuICAgICkge1xuICAgICAgcmV0dXJuO1xuICAgIH1cbiAgICBjb25zdCBiYWNrZW5kSWQgPSBzYW5kYm94TmFtZVxuICAgICAgLnJlcGxhY2UoZXhwZWN0ZWRTYW5kYm94TmFtZVByZWZpeCwgJycpXG4gICAgICAucmVwbGFjZShleHBlY3RlZFNhbmRib3hOYW1lU3VmZml4LCAnJyk7XG4gICAgcmV0dXJuIG5ldyBTYW5kYm94QmFja2VuZElkZW50aWZpZXIoYmFja2VuZElkKTtcbiAgfVxufVxuIl19
@@ -0,0 +1,23 @@
1
+ {
2
+ "name": "@aws-amplify/platform-core",
3
+ "version": "0.1.2",
4
+ "type": "commonjs",
5
+ "publishConfig": {
6
+ "access": "public"
7
+ },
8
+ "exports": {
9
+ ".": {
10
+ "types": "./lib/index.d.ts",
11
+ "import": "./lib/index.js",
12
+ "require": "./lib/index.js"
13
+ }
14
+ },
15
+ "types": "lib/index.d.ts",
16
+ "scripts": {
17
+ "update:api": "api-extractor run --local"
18
+ },
19
+ "license": "Apache-2.0",
20
+ "dependencies": {
21
+ "@aws-amplify/plugin-types": "^0.3.0"
22
+ }
23
+ }
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "name": "@aws-amplify/backend-output-storage",
3
- "version": "0.1.1-alpha.2",
3
+ "version": "0.2.0",
4
+ "type": "commonjs",
4
5
  "publishConfig": {
5
6
  "access": "public"
6
7
  },
@@ -18,9 +19,10 @@
18
19
  },
19
20
  "license": "Apache-2.0",
20
21
  "dependencies": {
21
- "@aws-amplify/backend-output-schemas": "^0.2.0-alpha.5"
22
+ "@aws-amplify/backend-output-schemas": "^0.2.0",
23
+ "@aws-amplify/platform-core": "^0.1.1"
22
24
  },
23
25
  "peerDependencies": {
24
- "aws-cdk-lib": "^2.80.0"
26
+ "aws-cdk-lib": "^2.103.0"
25
27
  }
26
- }
28
+ }
@@ -3,6 +3,10 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [3.1.11-construct-publish-test.0](https://github.com/aws-amplify/amplify-category-api/compare/@aws-amplify/graphql-auth-transformer@3.1.10...@aws-amplify/graphql-auth-transformer@3.1.11-construct-publish-test.0) (2023-11-08)
7
+
8
+ **Note:** Version bump only for package @aws-amplify/graphql-auth-transformer
9
+
6
10
  ## [3.1.10](https://github.com/aws-amplify/amplify-category-api/compare/@aws-amplify/graphql-auth-transformer@3.1.9...@aws-amplify/graphql-auth-transformer@3.1.10) (2023-11-02)
7
11
 
8
12
  **Note:** Version bump only for package @aws-amplify/graphql-auth-transformer
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "{}"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright 2017 - 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved.
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.