@walkeros/cli 4.3.0 → 4.3.1
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 +28 -0
- package/dist/cli.js +1266 -901
- package/dist/index.d.ts +40 -38
- package/dist/index.js +55 -121
- package/dist/index.js.map +1 -1
- package/openapi/spec.json +77 -13
- 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": "
|
|
5
|
+
"version": "4.0.0",
|
|
6
6
|
"description": "API for managing walkerOS flows, projects, and real-time event observation.",
|
|
7
7
|
"contact": {
|
|
8
8
|
"name": "elbwalker",
|
|
@@ -2192,13 +2192,6 @@
|
|
|
2192
2192
|
"projectId": {
|
|
2193
2193
|
"type": "string"
|
|
2194
2194
|
},
|
|
2195
|
-
"token": {
|
|
2196
|
-
"type": "string",
|
|
2197
|
-
"minLength": 12,
|
|
2198
|
-
"maxLength": 12,
|
|
2199
|
-
"pattern": "^[a-z0-9]+$",
|
|
2200
|
-
"example": "k9x2m4p7abcd"
|
|
2201
|
-
},
|
|
2202
2195
|
"bundleUrl": {
|
|
2203
2196
|
"type": "string",
|
|
2204
2197
|
"format": "uri"
|
|
@@ -2219,7 +2212,6 @@
|
|
|
2219
2212
|
"flowId",
|
|
2220
2213
|
"flowSettingsId",
|
|
2221
2214
|
"projectId",
|
|
2222
|
-
"token",
|
|
2223
2215
|
"bundleUrl",
|
|
2224
2216
|
"activationUrl",
|
|
2225
2217
|
"createdBy",
|
|
@@ -2371,6 +2363,17 @@
|
|
|
2371
2363
|
"web": {
|
|
2372
2364
|
"$ref": "#/components/schemas/ObserveSessionWeb"
|
|
2373
2365
|
},
|
|
2366
|
+
"server": {
|
|
2367
|
+
"$ref": "#/components/schemas/ObserveSessionServer"
|
|
2368
|
+
},
|
|
2369
|
+
"expiresAt": {
|
|
2370
|
+
"type": "string",
|
|
2371
|
+
"format": "date-time"
|
|
2372
|
+
},
|
|
2373
|
+
"recordsReceived": {
|
|
2374
|
+
"type": "integer",
|
|
2375
|
+
"minimum": 0
|
|
2376
|
+
},
|
|
2374
2377
|
"createdBy": {
|
|
2375
2378
|
"type": "string"
|
|
2376
2379
|
},
|
|
@@ -2390,6 +2393,9 @@
|
|
|
2390
2393
|
"serverFlowName",
|
|
2391
2394
|
"serverEndpoint",
|
|
2392
2395
|
"web",
|
|
2396
|
+
"server",
|
|
2397
|
+
"expiresAt",
|
|
2398
|
+
"recordsReceived",
|
|
2393
2399
|
"createdBy",
|
|
2394
2400
|
"createdAt"
|
|
2395
2401
|
]
|
|
@@ -2397,10 +2403,11 @@
|
|
|
2397
2403
|
"ObserveSessionWeb": {
|
|
2398
2404
|
"type": ["object", "null"],
|
|
2399
2405
|
"properties": {
|
|
2400
|
-
"
|
|
2401
|
-
"type": "string"
|
|
2406
|
+
"activationUrl": {
|
|
2407
|
+
"type": ["string", "null"],
|
|
2408
|
+
"format": "uri"
|
|
2402
2409
|
},
|
|
2403
|
-
"
|
|
2410
|
+
"credential": {
|
|
2404
2411
|
"type": "string"
|
|
2405
2412
|
},
|
|
2406
2413
|
"previewEnabled": {
|
|
@@ -2411,7 +2418,45 @@
|
|
|
2411
2418
|
"format": "uri"
|
|
2412
2419
|
}
|
|
2413
2420
|
},
|
|
2414
|
-
"required": [
|
|
2421
|
+
"required": [
|
|
2422
|
+
"activationUrl",
|
|
2423
|
+
"credential",
|
|
2424
|
+
"previewEnabled",
|
|
2425
|
+
"bundleUrl"
|
|
2426
|
+
]
|
|
2427
|
+
},
|
|
2428
|
+
"ObserveSessionServer": {
|
|
2429
|
+
"type": ["object", "null"],
|
|
2430
|
+
"properties": {
|
|
2431
|
+
"endpoint": {
|
|
2432
|
+
"type": ["string", "null"],
|
|
2433
|
+
"format": "uri"
|
|
2434
|
+
},
|
|
2435
|
+
"env": {
|
|
2436
|
+
"$ref": "#/components/schemas/ObserveSessionServerEnv"
|
|
2437
|
+
}
|
|
2438
|
+
},
|
|
2439
|
+
"required": ["endpoint", "env"]
|
|
2440
|
+
},
|
|
2441
|
+
"ObserveSessionServerEnv": {
|
|
2442
|
+
"type": "object",
|
|
2443
|
+
"properties": {
|
|
2444
|
+
"WALKEROS_OBSERVER_URL": {
|
|
2445
|
+
"type": "string",
|
|
2446
|
+
"format": "uri"
|
|
2447
|
+
},
|
|
2448
|
+
"WALKEROS_DEPLOYMENT_ID": {
|
|
2449
|
+
"type": "string"
|
|
2450
|
+
},
|
|
2451
|
+
"WALKEROS_INGEST_TOKEN": {
|
|
2452
|
+
"type": "string"
|
|
2453
|
+
}
|
|
2454
|
+
},
|
|
2455
|
+
"required": [
|
|
2456
|
+
"WALKEROS_OBSERVER_URL",
|
|
2457
|
+
"WALKEROS_DEPLOYMENT_ID",
|
|
2458
|
+
"WALKEROS_INGEST_TOKEN"
|
|
2459
|
+
]
|
|
2415
2460
|
},
|
|
2416
2461
|
"ObserveSessionJourneysResponse": {
|
|
2417
2462
|
"type": "object",
|
|
@@ -2456,10 +2501,29 @@
|
|
|
2456
2501
|
},
|
|
2457
2502
|
"force": {
|
|
2458
2503
|
"type": "boolean"
|
|
2504
|
+
},
|
|
2505
|
+
"replace": {
|
|
2506
|
+
"type": "boolean"
|
|
2507
|
+
},
|
|
2508
|
+
"level": {
|
|
2509
|
+
"$ref": "#/components/schemas/ObserveLevel"
|
|
2510
|
+
},
|
|
2511
|
+
"origins": {
|
|
2512
|
+
"type": "array",
|
|
2513
|
+
"items": {
|
|
2514
|
+
"type": "string",
|
|
2515
|
+
"maxLength": 253,
|
|
2516
|
+
"example": "https://shop.example.com"
|
|
2517
|
+
},
|
|
2518
|
+
"maxItems": 20
|
|
2459
2519
|
}
|
|
2460
2520
|
},
|
|
2461
2521
|
"required": ["settingsName"]
|
|
2462
2522
|
},
|
|
2523
|
+
"ObserveLevel": {
|
|
2524
|
+
"type": "string",
|
|
2525
|
+
"enum": ["off", "standard", "trace"]
|
|
2526
|
+
},
|
|
2463
2527
|
"ObserveSessionHeartbeatResponse": {
|
|
2464
2528
|
"type": "object",
|
|
2465
2529
|
"properties": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@walkeros/cli",
|
|
3
|
-
"version": "4.3.
|
|
3
|
+
"version": "4.3.1",
|
|
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.1",
|
|
57
|
+
"@walkeros/core": "4.3.1",
|
|
58
|
+
"@walkeros/server-core": "4.3.1",
|
|
59
|
+
"@walkeros/server-destination-api": "4.3.1",
|
|
60
|
+
"@walkeros/transformer-validate": "4.3.1",
|
|
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.1",
|
|
88
|
+
"@walkeros/core": "4.3.1",
|
|
89
89
|
"msw": "^2.12.10",
|
|
90
90
|
"openapi-typescript": "^7.13.0",
|
|
91
91
|
"tsx": "^4.21.0"
|