@walkeros/cli 4.4.0-next-1785285516008 → 4.4.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 +8 -6
- package/dist/cli.js +1008 -961
- package/dist/index.d.ts +1 -0
- package/dist/index.js +3 -3
- package/openapi/spec.json +4 -1
- package/package.json +8 -8
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -8249,7 +8249,7 @@ function validateMapping(input) {
|
|
|
8249
8249
|
// src/commands/validate/validators/entry.ts
|
|
8250
8250
|
import Ajv from "ajv";
|
|
8251
8251
|
import { fetchPackageSchema } from "@walkeros/core";
|
|
8252
|
-
var CLIENT_HEADER = "walkeros-cli/4.4.0
|
|
8252
|
+
var CLIENT_HEADER = "walkeros-cli/4.4.0";
|
|
8253
8253
|
var SECTIONS = ["destinations", "sources", "transformers"];
|
|
8254
8254
|
function resolveEntry(path20, flowConfig) {
|
|
8255
8255
|
const flows = flowConfig.flows;
|
|
@@ -8814,8 +8814,8 @@ import createClient from "openapi-fetch";
|
|
|
8814
8814
|
init_config_file();
|
|
8815
8815
|
import { createHash } from "crypto";
|
|
8816
8816
|
import semver4 from "semver";
|
|
8817
|
-
var bakedContractVersion = true ? "4.
|
|
8818
|
-
var bakedContractHash = true ? "
|
|
8817
|
+
var bakedContractVersion = true ? "4.3.0" : PLACEHOLDER;
|
|
8818
|
+
var bakedContractHash = true ? "921ca196fc71f3bf88bb0104338240438eb9411b274641d35c82b1462b4865b5" : "";
|
|
8819
8819
|
function isRecord3(value) {
|
|
8820
8820
|
return value !== null && typeof value === "object" && !Array.isArray(value);
|
|
8821
8821
|
}
|
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.3.0",
|
|
6
6
|
"description": "API for managing walkerOS flows, projects, and real-time event observation.",
|
|
7
7
|
"contact": {
|
|
8
8
|
"name": "elbwalker",
|
|
@@ -2541,6 +2541,9 @@
|
|
|
2541
2541
|
"example": "https://shop.example.com"
|
|
2542
2542
|
},
|
|
2543
2543
|
"maxItems": 20
|
|
2544
|
+
},
|
|
2545
|
+
"tagMode": {
|
|
2546
|
+
"type": "boolean"
|
|
2544
2547
|
}
|
|
2545
2548
|
},
|
|
2546
2549
|
"required": ["settingsName"]
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@walkeros/cli",
|
|
3
|
-
"version": "4.4.0
|
|
3
|
+
"version": "4.4.0",
|
|
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.4.0
|
|
57
|
-
"@walkeros/core": "4.4.0
|
|
58
|
-
"@walkeros/server-core": "4.4.0
|
|
59
|
-
"@walkeros/server-destination-api": "4.4.0
|
|
60
|
-
"@walkeros/transformer-validate": "4.4.0
|
|
56
|
+
"@walkeros/collector": "4.4.0",
|
|
57
|
+
"@walkeros/core": "4.4.0",
|
|
58
|
+
"@walkeros/server-core": "4.4.0",
|
|
59
|
+
"@walkeros/server-destination-api": "4.4.0",
|
|
60
|
+
"@walkeros/transformer-validate": "4.4.0",
|
|
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.4.0
|
|
88
|
-
"@walkeros/core": "4.4.0
|
|
87
|
+
"@walkeros/config": "4.4.0",
|
|
88
|
+
"@walkeros/core": "4.4.0",
|
|
89
89
|
"msw": "^2.12.10",
|
|
90
90
|
"openapi-typescript": "^7.13.0",
|
|
91
91
|
"tsx": "^4.21.0"
|