@walkeros/cli 4.3.1 → 4.3.2
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 +15 -0
- package/dist/cli.js +19 -4
- package/dist/index.d.ts +46 -1
- package/dist/index.js +62 -3
- package/dist/index.js.map +1 -1
- package/openapi/spec.json +11 -1
- package/package.json +8 -8
package/openapi/spec.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"openapi": "3.1.0",
|
|
3
3
|
"info": {
|
|
4
4
|
"title": "walkerOS Tag Manager API",
|
|
5
|
-
"version": "4.
|
|
5
|
+
"version": "4.1.0",
|
|
6
6
|
"description": "API for managing walkerOS flows, projects, and real-time event observation.",
|
|
7
7
|
"contact": {
|
|
8
8
|
"name": "elbwalker",
|
|
@@ -2321,6 +2321,9 @@
|
|
|
2321
2321
|
},
|
|
2322
2322
|
"sessionGrant": {
|
|
2323
2323
|
"type": "string"
|
|
2324
|
+
},
|
|
2325
|
+
"sessionId": {
|
|
2326
|
+
"type": "string"
|
|
2324
2327
|
}
|
|
2325
2328
|
},
|
|
2326
2329
|
"required": ["grant", "activationUrl", "sessionExpiresAt"]
|
|
@@ -2416,6 +2419,13 @@
|
|
|
2416
2419
|
"bundleUrl": {
|
|
2417
2420
|
"type": "string",
|
|
2418
2421
|
"format": "uri"
|
|
2422
|
+
},
|
|
2423
|
+
"url": {
|
|
2424
|
+
"type": "string",
|
|
2425
|
+
"format": "uri"
|
|
2426
|
+
},
|
|
2427
|
+
"binding": {
|
|
2428
|
+
"type": "string"
|
|
2419
2429
|
}
|
|
2420
2430
|
},
|
|
2421
2431
|
"required": [
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@walkeros/cli",
|
|
3
|
-
"version": "4.3.
|
|
3
|
+
"version": "4.3.2",
|
|
4
4
|
"description": "walkerOS CLI - Bundle and deploy walkerOS components",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -53,11 +53,11 @@
|
|
|
53
53
|
},
|
|
54
54
|
"dependencies": {
|
|
55
55
|
"@vercel/nft": "^1.10.2",
|
|
56
|
-
"@walkeros/collector": "4.3.
|
|
57
|
-
"@walkeros/core": "4.3.
|
|
58
|
-
"@walkeros/server-core": "4.3.
|
|
59
|
-
"@walkeros/server-destination-api": "4.3.
|
|
60
|
-
"@walkeros/transformer-validate": "4.3.
|
|
56
|
+
"@walkeros/collector": "4.3.2",
|
|
57
|
+
"@walkeros/core": "4.3.2",
|
|
58
|
+
"@walkeros/server-core": "4.3.2",
|
|
59
|
+
"@walkeros/server-destination-api": "4.3.2",
|
|
60
|
+
"@walkeros/transformer-validate": "4.3.2",
|
|
61
61
|
"ajv": "^8.17.1",
|
|
62
62
|
"chalk": "^5.6.2",
|
|
63
63
|
"ci-info": "^4.4.0",
|
|
@@ -84,8 +84,8 @@
|
|
|
84
84
|
"@types/pacote": "^11.1.8",
|
|
85
85
|
"@types/picomatch": "4.0.3",
|
|
86
86
|
"@types/semver": "^7.7.1",
|
|
87
|
-
"@walkeros/config": "4.3.
|
|
88
|
-
"@walkeros/core": "4.3.
|
|
87
|
+
"@walkeros/config": "4.3.2",
|
|
88
|
+
"@walkeros/core": "4.3.2",
|
|
89
89
|
"msw": "^2.12.10",
|
|
90
90
|
"openapi-typescript": "^7.13.0",
|
|
91
91
|
"tsx": "^4.21.0"
|