@epilot/pricing-client 3.36.6 → 3.36.7
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/openapi.d.ts +10 -0
- package/dist/openapi.json +12 -0
- package/package.json +1 -1
package/dist/openapi.d.ts
CHANGED
|
@@ -2445,6 +2445,16 @@ declare namespace Components {
|
|
|
2445
2445
|
* journey name
|
|
2446
2446
|
*/
|
|
2447
2447
|
journey_name: string;
|
|
2448
|
+
/**
|
|
2449
|
+
* The tags of the journey.
|
|
2450
|
+
*/
|
|
2451
|
+
journey_tags?: string[];
|
|
2452
|
+
/**
|
|
2453
|
+
* The URL parameters of the journey.
|
|
2454
|
+
*/
|
|
2455
|
+
journey_url_params?: {
|
|
2456
|
+
[name: string]: any;
|
|
2457
|
+
};
|
|
2448
2458
|
/**
|
|
2449
2459
|
* The name of the step where the products selection is happening.
|
|
2450
2460
|
* example:
|
package/dist/openapi.json
CHANGED
|
@@ -5426,6 +5426,18 @@
|
|
|
5426
5426
|
"description": "The name of the journey.",
|
|
5427
5427
|
"example": "journey name"
|
|
5428
5428
|
},
|
|
5429
|
+
"journey_tags": {
|
|
5430
|
+
"type": "array",
|
|
5431
|
+
"items": {
|
|
5432
|
+
"type": "string"
|
|
5433
|
+
},
|
|
5434
|
+
"description": "The tags of the journey."
|
|
5435
|
+
},
|
|
5436
|
+
"journey_url_params": {
|
|
5437
|
+
"type": "object",
|
|
5438
|
+
"description": "The URL parameters of the journey.",
|
|
5439
|
+
"additionalProperties": true
|
|
5440
|
+
},
|
|
5429
5441
|
"current_step_name": {
|
|
5430
5442
|
"description": "The name of the step where the products selection is happening.",
|
|
5431
5443
|
"type": "string",
|