@adobe-commerce/aio-toolkit 1.0.15 → 1.0.16
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 +53 -0
- package/README.md +124 -13
- package/dist/aio-toolkit-cursor-context/bin/cli.js +145 -66
- package/dist/aio-toolkit-cursor-context/bin/cli.js.map +1 -1
- package/dist/aio-toolkit-onboard-events/bin/cli.js +14611 -0
- package/dist/aio-toolkit-onboard-events/bin/cli.js.map +1 -0
- package/onboard.config.default.yaml +31 -0
- package/package.json +4 -2
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# Configuration file version
|
|
2
|
+
version: "1.0"
|
|
3
|
+
|
|
4
|
+
# Application metadata
|
|
5
|
+
application:
|
|
6
|
+
name: "App Builder Application"
|
|
7
|
+
# Description is optional
|
|
8
|
+
# description: "App Builder Application for Adobe Commerce"
|
|
9
|
+
|
|
10
|
+
# Events configuration
|
|
11
|
+
events:
|
|
12
|
+
# Adobe I/O Events configuration
|
|
13
|
+
io:
|
|
14
|
+
config: io-events.json # File path to I/O events configuration
|
|
15
|
+
|
|
16
|
+
# Adobe Commerce Events configuration
|
|
17
|
+
commerce:
|
|
18
|
+
providerKey: commerce
|
|
19
|
+
config: commerce-events.json # File path to Commerce events configuration
|
|
20
|
+
|
|
21
|
+
# Deployment settings
|
|
22
|
+
deployment:
|
|
23
|
+
# Instance type: paas | cloud
|
|
24
|
+
# paas = Adobe Commerce Cloud/On-premise (OAuth)
|
|
25
|
+
# cloud = Adobe Commerce as Cloud Service (IMS)
|
|
26
|
+
type: paas
|
|
27
|
+
|
|
28
|
+
# Authentication type (optional, auto-detected from type if not specified)
|
|
29
|
+
# Allowed values: oauth | ims
|
|
30
|
+
# Auto-detection: paas → oauth, cloud → ims
|
|
31
|
+
# authType: oauth
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adobe-commerce/aio-toolkit",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.16",
|
|
4
4
|
"description": "A comprehensive TypeScript toolkit for Adobe App Builder applications providing standardized Adobe Commerce integrations, I/O Events orchestration, file storage utilities, authentication helpers, and robust backend development tools with 100% test coverage.",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -15,12 +15,14 @@
|
|
|
15
15
|
"files": [
|
|
16
16
|
"dist/**/*",
|
|
17
17
|
"files/**/*",
|
|
18
|
+
"onboard.config.default.yaml",
|
|
18
19
|
"README.md",
|
|
19
20
|
"CHANGELOG.md",
|
|
20
21
|
"LICENSE"
|
|
21
22
|
],
|
|
22
23
|
"bin": {
|
|
23
|
-
"aio-toolkit-cursor-context": "dist/aio-toolkit-cursor-context/bin/cli.js"
|
|
24
|
+
"aio-toolkit-cursor-context": "dist/aio-toolkit-cursor-context/bin/cli.js",
|
|
25
|
+
"aio-toolkit-onboard-events": "dist/aio-toolkit-onboard-events/bin/cli.js"
|
|
24
26
|
},
|
|
25
27
|
"scripts": {
|
|
26
28
|
"build": "tsup",
|