@epilot/pricing-client 3.36.3 → 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
@@ -425,14 +425,34 @@ declare namespace Components {
425
425
  * The unit amount value
426
426
  */
427
427
  unit_amount?: number;
428
+ /**
429
+ * The unit amount in cents to be charged, represented as a decimal string with at most 12 decimal places.
430
+ */
431
+ unit_amount_decimal?: string;
428
432
  /**
429
433
  * The unit amount before any discount is applied
430
434
  */
431
435
  before_discount_unit_amount?: number;
432
436
  /**
433
- * The unit amount in cents to be charged, represented as a decimal string with at most 12 decimal places.
437
+ * The unit amount before any discount is applied, represented as a decimal string with at most 12 decimal places.
434
438
  */
435
- unit_amount_decimal?: string;
439
+ before_discount_unit_amount_decimal?: string;
440
+ /**
441
+ * The unit gross amount before any discount is applied
442
+ */
443
+ before_discount_unit_amount_gross?: number;
444
+ /**
445
+ * The unit gross amount before any discount is applied, represented as a decimal string with at most 12 decimal places.
446
+ */
447
+ before_discount_unit_amount_gross_decimal?: string;
448
+ /**
449
+ * The unit net amount before any discount is applied
450
+ */
451
+ before_discount_unit_amount_net?: number;
452
+ /**
453
+ * The unit net amount before any discount is applied, represented as a decimal string with at most 12 decimal places.
454
+ */
455
+ before_discount_unit_amount_net_decimal?: string;
436
456
  /**
437
457
  * The discount amount applied for each unit
438
458
  */
@@ -1457,14 +1477,34 @@ declare namespace Components {
1457
1477
  * The unit amount value
1458
1478
  */
1459
1479
  unit_amount?: number;
1480
+ /**
1481
+ * The unit amount in cents to be charged, represented as a decimal string with at most 12 decimal places.
1482
+ */
1483
+ unit_amount_decimal?: string;
1460
1484
  /**
1461
1485
  * The unit amount before any discount is applied
1462
1486
  */
1463
1487
  before_discount_unit_amount?: number;
1464
1488
  /**
1465
- * The unit amount in cents to be charged, represented as a decimal string with at most 12 decimal places.
1489
+ * The unit amount before any discount is applied, represented as a decimal string with at most 12 decimal places.
1466
1490
  */
1467
- unit_amount_decimal?: string;
1491
+ before_discount_unit_amount_decimal?: string;
1492
+ /**
1493
+ * The unit gross amount before any discount is applied
1494
+ */
1495
+ before_discount_unit_amount_gross?: number;
1496
+ /**
1497
+ * The unit gross amount before any discount is applied, represented as a decimal string with at most 12 decimal places.
1498
+ */
1499
+ before_discount_unit_amount_gross_decimal?: string;
1500
+ /**
1501
+ * The unit net amount before any discount is applied
1502
+ */
1503
+ before_discount_unit_amount_net?: number;
1504
+ /**
1505
+ * The unit net amount before any discount is applied, represented as a decimal string with at most 12 decimal places.
1506
+ */
1507
+ before_discount_unit_amount_net_decimal?: string;
1468
1508
  /**
1469
1509
  * The discount amount applied for each unit
1470
1510
  */
@@ -2337,6 +2377,16 @@ declare namespace Components {
2337
2377
  * journey name
2338
2378
  */
2339
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
+ };
2340
2390
  /**
2341
2391
  * The name of the step where the products selection is happening.
2342
2392
  * example:
@@ -3315,14 +3365,34 @@ declare namespace Components {
3315
3365
  * The unit amount value
3316
3366
  */
3317
3367
  unit_amount?: number;
3368
+ /**
3369
+ * The unit amount in cents to be charged, represented as a decimal string with at most 12 decimal places.
3370
+ */
3371
+ unit_amount_decimal?: string;
3318
3372
  /**
3319
3373
  * The unit amount before any discount is applied
3320
3374
  */
3321
3375
  before_discount_unit_amount?: number;
3322
3376
  /**
3323
- * The unit amount in cents to be charged, represented as a decimal string with at most 12 decimal places.
3377
+ * The unit amount before any discount is applied, represented as a decimal string with at most 12 decimal places.
3324
3378
  */
3325
- unit_amount_decimal?: string;
3379
+ before_discount_unit_amount_decimal?: string;
3380
+ /**
3381
+ * The unit gross amount before any discount is applied
3382
+ */
3383
+ before_discount_unit_amount_gross?: number;
3384
+ /**
3385
+ * The unit gross amount before any discount is applied, represented as a decimal string with at most 12 decimal places.
3386
+ */
3387
+ before_discount_unit_amount_gross_decimal?: string;
3388
+ /**
3389
+ * The unit net amount before any discount is applied
3390
+ */
3391
+ before_discount_unit_amount_net?: number;
3392
+ /**
3393
+ * The unit net amount before any discount is applied, represented as a decimal string with at most 12 decimal places.
3394
+ */
3395
+ before_discount_unit_amount_net_decimal?: string;
3326
3396
  /**
3327
3397
  * The discount amount applied for each unit
3328
3398
  */
package/dist/openapi.json CHANGED
@@ -3979,14 +3979,39 @@
3979
3979
  "description": "The unit amount value",
3980
3980
  "readOnly": true
3981
3981
  },
3982
+ "unit_amount_decimal": {
3983
+ "description": "The unit amount in cents to be charged, represented as a decimal string with at most 12 decimal places.",
3984
+ "type": "string",
3985
+ "readOnly": true
3986
+ },
3982
3987
  "before_discount_unit_amount": {
3983
3988
  "type": "integer",
3984
3989
  "description": "The unit amount before any discount is applied",
3985
3990
  "readOnly": true
3986
3991
  },
3987
- "unit_amount_decimal": {
3988
- "description": "The unit amount in cents to be charged, represented as a decimal string with at most 12 decimal places.",
3992
+ "before_discount_unit_amount_decimal": {
3989
3993
  "type": "string",
3994
+ "description": "The unit amount before any discount is applied, represented as a decimal string with at most 12 decimal places.",
3995
+ "readOnly": true
3996
+ },
3997
+ "before_discount_unit_amount_gross": {
3998
+ "type": "integer",
3999
+ "description": "The unit gross amount before any discount is applied",
4000
+ "readOnly": true
4001
+ },
4002
+ "before_discount_unit_amount_gross_decimal": {
4003
+ "type": "string",
4004
+ "description": "The unit gross amount before any discount is applied, represented as a decimal string with at most 12 decimal places.",
4005
+ "readOnly": true
4006
+ },
4007
+ "before_discount_unit_amount_net": {
4008
+ "type": "integer",
4009
+ "description": "The unit net amount before any discount is applied",
4010
+ "readOnly": true
4011
+ },
4012
+ "before_discount_unit_amount_net_decimal": {
4013
+ "type": "string",
4014
+ "description": "The unit net amount before any discount is applied, represented as a decimal string with at most 12 decimal places.",
3990
4015
  "readOnly": true
3991
4016
  },
3992
4017
  "unit_discount_amount": {
@@ -5389,6 +5414,18 @@
5389
5414
  "description": "The name of the journey.",
5390
5415
  "example": "journey name"
5391
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
+ },
5392
5429
  "current_step_name": {
5393
5430
  "description": "The name of the step where the products selection is happening.",
5394
5431
  "type": "string",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/pricing-client",
3
- "version": "3.36.3",
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",