@walkeros/cli 4.4.0-next-1785261149472 → 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/dist/index.d.ts CHANGED
@@ -9849,6 +9849,7 @@ interface components {
9849
9849
  /** Format: uri */
9850
9850
  bundleUrl: string;
9851
9851
  activationUrl: string | null;
9852
+ tagMode: boolean;
9852
9853
  createdBy: string;
9853
9854
  /** Format: date-time */
9854
9855
  createdAt: string;
@@ -9872,6 +9873,8 @@ interface components {
9872
9873
  kind: 'deployment-version';
9873
9874
  deploymentVersionId: string;
9874
9875
  };
9876
+ /** @default true */
9877
+ tagMode: boolean;
9875
9878
  };
9876
9879
  MintGrantRequest: {
9877
9880
  origins: string[];
@@ -9954,6 +9957,7 @@ interface components {
9954
9957
  replace?: boolean;
9955
9958
  level?: components['schemas']['ObserveLevel'];
9956
9959
  origins?: string[];
9960
+ tagMode?: boolean;
9957
9961
  };
9958
9962
  /** @enum {string} */
9959
9963
  ObserveLevel: 'off' | 'standard' | 'trace';
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-next-1785261149472";
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.2.0" : PLACEHOLDER;
8818
- var bakedContractHash = true ? "33057bb31612c8102f8e638e49dc33a0800e0130a717a50d8449a7a06d10967b" : "";
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.2.0",
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",
@@ -2199,6 +2199,9 @@
2199
2199
  "activationUrl": {
2200
2200
  "type": ["string", "null"]
2201
2201
  },
2202
+ "tagMode": {
2203
+ "type": "boolean"
2204
+ },
2202
2205
  "createdBy": {
2203
2206
  "type": "string"
2204
2207
  },
@@ -2214,6 +2217,7 @@
2214
2217
  "projectId",
2215
2218
  "bundleUrl",
2216
2219
  "activationUrl",
2220
+ "tagMode",
2217
2221
  "createdBy",
2218
2222
  "createdAt"
2219
2223
  ]
@@ -2282,6 +2286,10 @@
2282
2286
  "required": ["kind", "deploymentVersionId"]
2283
2287
  }
2284
2288
  ]
2289
+ },
2290
+ "tagMode": {
2291
+ "type": "boolean",
2292
+ "default": true
2285
2293
  }
2286
2294
  },
2287
2295
  "required": ["flowSettingsId"]
@@ -2533,6 +2541,9 @@
2533
2541
  "example": "https://shop.example.com"
2534
2542
  },
2535
2543
  "maxItems": 20
2544
+ },
2545
+ "tagMode": {
2546
+ "type": "boolean"
2536
2547
  }
2537
2548
  },
2538
2549
  "required": ["settingsName"]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@walkeros/cli",
3
- "version": "4.4.0-next-1785261149472",
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-next-1785261149472",
57
- "@walkeros/core": "4.4.0-next-1785261149472",
58
- "@walkeros/server-core": "4.4.0-next-1785261149472",
59
- "@walkeros/server-destination-api": "4.4.0-next-1785261149472",
60
- "@walkeros/transformer-validate": "4.4.0-next-1785261149472",
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-next-1785261149472",
88
- "@walkeros/core": "4.4.0-next-1785261149472",
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"