@adobe/aio-commerce-lib-app 0.1.1 → 0.3.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 (50) hide show
  1. package/CHANGELOG.md +46 -0
  2. package/dist/cjs/actions/index.cjs +824 -0
  3. package/dist/cjs/actions/index.d.cts +18 -0
  4. package/dist/cjs/app-Dx0ca6oL.d.cts +181 -0
  5. package/dist/cjs/commands/generate/actions/templates/app-management/custom-scripts.js.template +28 -0
  6. package/dist/cjs/commands/generate/actions/templates/app-management/get-app-config.js.template +62 -0
  7. package/dist/cjs/commands/generate/actions/templates/app-management/installation.js.template +21 -0
  8. package/dist/cjs/commands/generate/actions/templates/{get-app-config.js.template → business-configuration/get-config-schema.js.template} +13 -11
  9. package/dist/cjs/commands/generate/actions/templates/business-configuration/get-configuration.js.template +104 -0
  10. package/dist/cjs/commands/generate/actions/templates/business-configuration/get-scope-tree.js.template +69 -0
  11. package/dist/cjs/commands/generate/actions/templates/business-configuration/set-configuration.js.template +125 -0
  12. package/dist/cjs/commands/generate/actions/templates/business-configuration/set-custom-scope-tree.js.template +83 -0
  13. package/dist/cjs/commands/generate/actions/templates/business-configuration/sync-commerce-scopes.js.template +113 -0
  14. package/dist/cjs/commands/generate/actions/templates/business-configuration/unsync-commerce-scopes.js.template +56 -0
  15. package/dist/cjs/commands/index.cjs +1075 -117
  16. package/dist/cjs/config/index.cjs +20 -1
  17. package/dist/cjs/config/index.d.cts +591 -364
  18. package/dist/cjs/config-JQ_n-5Nk.cjs +565 -0
  19. package/dist/cjs/error-Byj1DVHZ.cjs +344 -0
  20. package/dist/cjs/index-C5SutkJQ.d.cts +345 -0
  21. package/dist/cjs/logging-DYwr5WQk.cjs +25 -0
  22. package/dist/cjs/management/index.cjs +9 -0
  23. package/dist/cjs/management/index.d.cts +2 -0
  24. package/dist/cjs/management-Dm5h0E6l.cjs +1246 -0
  25. package/dist/es/actions/index.d.mts +18 -0
  26. package/dist/es/actions/index.mjs +822 -0
  27. package/dist/es/app-Cx1-6dn0.d.mts +181 -0
  28. package/dist/es/commands/generate/actions/templates/app-management/custom-scripts.js.template +28 -0
  29. package/dist/es/commands/generate/actions/templates/app-management/get-app-config.js.template +62 -0
  30. package/dist/es/commands/generate/actions/templates/app-management/installation.js.template +21 -0
  31. package/dist/es/commands/generate/actions/templates/{get-app-config.js.template → business-configuration/get-config-schema.js.template} +13 -11
  32. package/dist/es/commands/generate/actions/templates/business-configuration/get-configuration.js.template +104 -0
  33. package/dist/es/commands/generate/actions/templates/business-configuration/get-scope-tree.js.template +69 -0
  34. package/dist/es/commands/generate/actions/templates/business-configuration/set-configuration.js.template +125 -0
  35. package/dist/es/commands/generate/actions/templates/business-configuration/set-custom-scope-tree.js.template +83 -0
  36. package/dist/es/commands/generate/actions/templates/business-configuration/sync-commerce-scopes.js.template +113 -0
  37. package/dist/es/commands/generate/actions/templates/business-configuration/unsync-commerce-scopes.js.template +56 -0
  38. package/dist/es/commands/index.mjs +1070 -117
  39. package/dist/es/config/index.d.mts +591 -364
  40. package/dist/es/config/index.mjs +4 -1
  41. package/dist/es/config-BSGerqCG.mjs +457 -0
  42. package/dist/es/error-P7JgUTds.mjs +251 -0
  43. package/dist/es/index-Bxr3zvCT.d.mts +345 -0
  44. package/dist/es/logging-VgerMhp6.mjs +18 -0
  45. package/dist/es/management/index.d.mts +3 -0
  46. package/dist/es/management/index.mjs +3 -0
  47. package/dist/es/management-Y7pwEbNI.mjs +1204 -0
  48. package/package.json +46 -6
  49. package/dist/cjs/parser-x_oUOtEM.cjs +0 -1
  50. package/dist/es/parser-djQHmDCQ.mjs +0 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,51 @@
1
1
  # @adobe/aio-commerce-lib-app
2
2
 
3
+ ## 0.3.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#259](https://github.com/adobe/aio-commerce-sdk/pull/259) [`f05088d`](https://github.com/adobe/aio-commerce-sdk/commit/f05088dfb3392bb8d6c41cdc4216dc40f94ae705) Thanks [@iivvaannxx](https://github.com/iivvaannxx)! - Add new `hooks` and `init` scripts. Make code generation process smart based on application configuration.
8
+
9
+ ### Patch Changes
10
+
11
+ - [#254](https://github.com/adobe/aio-commerce-sdk/pull/254) [`d437000`](https://github.com/adobe/aio-commerce-sdk/commit/d4370008bafe2540ff654bdab1381beab4be85e1) Thanks [@iivvaannxx](https://github.com/iivvaannxx)! - Relax casing constraints for display names in schema. Ensure custom steps can't have duplicate names.
12
+
13
+ - Updated dependencies []:
14
+ - @adobe/aio-commerce-lib-auth@0.8.1
15
+ - @adobe/aio-commerce-lib-events@0.6.0
16
+
17
+ ## 0.2.0
18
+
19
+ ### Minor Changes
20
+
21
+ - [#246](https://github.com/adobe/aio-commerce-sdk/pull/246) [`b3b41f5`](https://github.com/adobe/aio-commerce-sdk/commit/b3b41f576cf0341bbb4a19bb534bfe35fb562aad) Thanks [@iivvaannxx](https://github.com/iivvaannxx)! - Fix `installation` action template to use the new `HttpActionRouter`
22
+
23
+ - [#252](https://github.com/adobe/aio-commerce-sdk/pull/252) [`f6663ff`](https://github.com/adobe/aio-commerce-sdk/commit/f6663ffd2a508ac0128ef8fc573ed1c10427a836) Thanks [@iivvaannxx](https://github.com/iivvaannxx)! - Add support for configuring Commerce Eventing module during installation
24
+
25
+ - [#236](https://github.com/adobe/aio-commerce-sdk/pull/236) [`50c5538`](https://github.com/adobe/aio-commerce-sdk/commit/50c553809c7c699026d4952487295f5c25b7d1f0) Thanks [@jnatherley](https://github.com/jnatherley)! - Add support for installing commerce event subscriptions.
26
+
27
+ - [#221](https://github.com/adobe/aio-commerce-sdk/pull/221) [`24b391f`](https://github.com/adobe/aio-commerce-sdk/commit/24b391f911a64786df0e6ef695d6baaf4c467ea2) Thanks [@iivvaannxx](https://github.com/iivvaannxx)! - Add `eventing` section in configuration schema of `app.commerce.config`
28
+
29
+ - [#241](https://github.com/adobe/aio-commerce-sdk/pull/241) [`2707605`](https://github.com/adobe/aio-commerce-sdk/commit/2707605b914b7aab3f7700f845bc8e27f48958ca) Thanks [@iivvaannxx](https://github.com/iivvaannxx)! - Implement installation flow for I/O Providers and Event Metadata.
30
+
31
+ - [#242](https://github.com/adobe/aio-commerce-sdk/pull/242) [`4a9a407`](https://github.com/adobe/aio-commerce-sdk/commit/4a9a407e8141687e7507ba1f4bc85bfb3e4a144e) Thanks [@iivvaannxx](https://github.com/iivvaannxx)! - Add support for installing event registrations.
32
+
33
+ - [#251](https://github.com/adobe/aio-commerce-sdk/pull/251) [`9566d2b`](https://github.com/adobe/aio-commerce-sdk/commit/9566d2b7c19c583e090be87c297384d1a49449b5) Thanks [@jcuerdo](https://github.com/jcuerdo)! - Enhance App Metadata Detail for Events:
34
+ - Add rules to schema
35
+ - Add source to fieldSchema
36
+
37
+ ### Patch Changes
38
+
39
+ - [#247](https://github.com/adobe/aio-commerce-sdk/pull/247) [`74eae28`](https://github.com/adobe/aio-commerce-sdk/commit/74eae28a3a3145452cf9051ef6b51c1aa84ece96) Thanks [@oshmyheliuk](https://github.com/oshmyheliuk)! - Added support for pre and post install messages in the configuration schema
40
+
41
+ - [#243](https://github.com/adobe/aio-commerce-sdk/pull/243) [`3fc7bfe`](https://github.com/adobe/aio-commerce-sdk/commit/3fc7bfe523092c10edabc017a0b3cbeb0fbee383) Thanks [@oshmyheliuk](https://github.com/oshmyheliuk)! - Added support for custom installation steps
42
+
43
+ - Updated dependencies [[`4a9a407`](https://github.com/adobe/aio-commerce-sdk/commit/4a9a407e8141687e7507ba1f4bc85bfb3e4a144e), [`2707605`](https://github.com/adobe/aio-commerce-sdk/commit/2707605b914b7aab3f7700f845bc8e27f48958ca), [`50c5538`](https://github.com/adobe/aio-commerce-sdk/commit/50c553809c7c699026d4952487295f5c25b7d1f0), [`f6663ff`](https://github.com/adobe/aio-commerce-sdk/commit/f6663ffd2a508ac0128ef8fc573ed1c10427a836), [`9566d2b`](https://github.com/adobe/aio-commerce-sdk/commit/9566d2b7c19c583e090be87c297384d1a49449b5), [`b3b41f5`](https://github.com/adobe/aio-commerce-sdk/commit/b3b41f576cf0341bbb4a19bb534bfe35fb562aad), [`b3b41f5`](https://github.com/adobe/aio-commerce-sdk/commit/b3b41f576cf0341bbb4a19bb534bfe35fb562aad), [`b7fb4da`](https://github.com/adobe/aio-commerce-sdk/commit/b7fb4da5b8a9f468d4c33a25194dcc0a6e4d16a1)]:
44
+ - @adobe/aio-commerce-lib-events@0.6.0
45
+ - @adobe/aio-commerce-lib-core@0.6.1
46
+ - @adobe/aio-commerce-lib-auth@0.8.1
47
+ - @adobe/aio-commerce-lib-api@0.6.1
48
+
3
49
  ## 0.1.1
4
50
 
5
51
  ### Patch Changes