@epilot/pricing-client 3.36.4 → 3.36.5

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 CHANGED
@@ -2377,6 +2377,16 @@ declare namespace Components {
2377
2377
  * journey name
2378
2378
  */
2379
2379
  journey_name: string;
2380
+ /**
2381
+ * The tags of the journey.
2382
+ */
2383
+ journey_tags?: string[];
2384
+ /**
2385
+ * The URL parameters of the journey.
2386
+ */
2387
+ journey_url_params?: {
2388
+ [name: string]: any;
2389
+ };
2380
2390
  /**
2381
2391
  * The name of the step where the products selection is happening.
2382
2392
  * example:
package/dist/openapi.json CHANGED
@@ -5414,6 +5414,18 @@
5414
5414
  "description": "The name of the journey.",
5415
5415
  "example": "journey name"
5416
5416
  },
5417
+ "journey_tags": {
5418
+ "type": "array",
5419
+ "items": {
5420
+ "type": "string"
5421
+ },
5422
+ "description": "The tags of the journey."
5423
+ },
5424
+ "journey_url_params": {
5425
+ "type": "object",
5426
+ "description": "The URL parameters of the journey.",
5427
+ "additionalProperties": true
5428
+ },
5417
5429
  "current_step_name": {
5418
5430
  "description": "The name of the step where the products selection is happening.",
5419
5431
  "type": "string",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/pricing-client",
3
- "version": "3.36.4",
3
+ "version": "3.36.5",
4
4
  "description": "Client for epilot Pricing APIs",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",