@adobe/aio-commerce-lib-app 0.1.1 → 0.2.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/CHANGELOG.md +32 -0
- package/dist/cjs/actions/index.cjs +179 -0
- package/dist/cjs/actions/index.d.cts +18 -0
- package/dist/cjs/app-C4HhkXbP.d.cts +451 -0
- package/dist/cjs/commands/generate/actions/templates/custom-scripts.js.template +28 -0
- package/dist/cjs/commands/generate/actions/templates/get-app-config.js.template +11 -10
- package/dist/cjs/commands/generate/actions/templates/installation.js.template +21 -0
- package/dist/cjs/commands/index.cjs +23 -21
- package/dist/cjs/config/index.cjs +1 -1
- package/dist/cjs/config/index.d.cts +107 -409
- package/dist/cjs/error-yAk1zzvx.cjs +1 -0
- package/dist/cjs/index-DS3IlISO.d.cts +345 -0
- package/dist/cjs/management/index.cjs +1 -0
- package/dist/cjs/management/index.d.cts +2 -0
- package/dist/cjs/management-CE3_DJw4.cjs +2 -0
- package/dist/cjs/parser-Dovux8ce.cjs +1 -0
- package/dist/cjs/schemas-CdaP-Exw.cjs +1 -0
- package/dist/es/actions/index.d.mts +18 -0
- package/dist/es/actions/index.mjs +179 -0
- package/dist/es/app-CMpx3D7Y.d.mts +451 -0
- package/dist/es/chunk-VmiN0kV1.mjs +1 -0
- package/dist/es/commands/generate/actions/templates/custom-scripts.js.template +28 -0
- package/dist/es/commands/generate/actions/templates/get-app-config.js.template +11 -10
- package/dist/es/commands/generate/actions/templates/installation.js.template +21 -0
- package/dist/es/commands/index.mjs +4 -2
- package/dist/es/config/index.d.mts +107 -409
- package/dist/es/config/index.mjs +1 -1
- package/dist/es/error-hBHRgZ9R.mjs +1 -0
- package/dist/es/index-DQepSWYP.d.mts +345 -0
- package/dist/es/management/index.d.mts +3 -0
- package/dist/es/management/index.mjs +1 -0
- package/dist/es/management-BM2WcbV6.mjs +2 -0
- package/dist/es/parser-DOVfvr9l.mjs +1 -0
- package/dist/es/schemas-eemlD-xS.mjs +1 -0
- package/package.json +32 -4
- package/dist/cjs/parser-x_oUOtEM.cjs +0 -1
- package/dist/es/parser-djQHmDCQ.mjs +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,37 @@
|
|
|
1
1
|
# @adobe/aio-commerce-lib-app
|
|
2
2
|
|
|
3
|
+
## 0.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#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`
|
|
8
|
+
|
|
9
|
+
- [#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
|
|
10
|
+
|
|
11
|
+
- [#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.
|
|
12
|
+
|
|
13
|
+
- [#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`
|
|
14
|
+
|
|
15
|
+
- [#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.
|
|
16
|
+
|
|
17
|
+
- [#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.
|
|
18
|
+
|
|
19
|
+
- [#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:
|
|
20
|
+
- Add rules to schema
|
|
21
|
+
- Add source to fieldSchema
|
|
22
|
+
|
|
23
|
+
### Patch Changes
|
|
24
|
+
|
|
25
|
+
- [#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
|
|
26
|
+
|
|
27
|
+
- [#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
|
|
28
|
+
|
|
29
|
+
- 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)]:
|
|
30
|
+
- @adobe/aio-commerce-lib-events@0.6.0
|
|
31
|
+
- @adobe/aio-commerce-lib-core@0.6.1
|
|
32
|
+
- @adobe/aio-commerce-lib-auth@0.8.1
|
|
33
|
+
- @adobe/aio-commerce-lib-api@0.6.1
|
|
34
|
+
|
|
3
35
|
## 0.1.1
|
|
4
36
|
|
|
5
37
|
### Patch Changes
|