@epilot/pricing-client 2.3.1 → 3.0.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/definition.js +1 -1
- package/dist/openapi.d.ts +12 -14
- package/dist/openapi.json +19 -38
- package/package.json +1 -1
- package/CHANGELOG.md +0 -253
- package/package-lock.json +0 -8451
package/dist/openapi.d.ts
CHANGED
|
@@ -1509,6 +1509,10 @@ declare namespace Components {
|
|
|
1509
1509
|
* A brief description of the price.
|
|
1510
1510
|
*/
|
|
1511
1511
|
description?: string;
|
|
1512
|
+
/**
|
|
1513
|
+
* A detailed description of the price. This is shown on the order document and order table.
|
|
1514
|
+
*/
|
|
1515
|
+
long_description?: string;
|
|
1512
1516
|
/**
|
|
1513
1517
|
* The default tax rate applicable to the product.
|
|
1514
1518
|
* This field is deprecated, use the new `tax` attribute.
|
|
@@ -1532,7 +1536,6 @@ declare namespace Components {
|
|
|
1532
1536
|
* "_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
|
|
1533
1537
|
* "type": "VAT",
|
|
1534
1538
|
* "description": "Tax description",
|
|
1535
|
-
* "behavior": "Exclusive",
|
|
1536
1539
|
* "active": "true",
|
|
1537
1540
|
* "region": "DE",
|
|
1538
1541
|
* "region_label": "Germany",
|
|
@@ -1548,11 +1551,9 @@ declare namespace Components {
|
|
|
1548
1551
|
*/
|
|
1549
1552
|
Tax[];
|
|
1550
1553
|
/**
|
|
1551
|
-
* Specifies whether the price is considered `inclusive` of taxes or
|
|
1552
|
-
* One of `inclusive`, `exclusive`, or `unspecified`.
|
|
1553
|
-
*
|
|
1554
|
+
* Specifies whether the price is considered `inclusive` of taxes or not.
|
|
1554
1555
|
*/
|
|
1555
|
-
|
|
1556
|
+
is_tax_inclusive?: boolean;
|
|
1556
1557
|
/**
|
|
1557
1558
|
* Defines the tiered pricing type of the price.
|
|
1558
1559
|
*/
|
|
@@ -2018,6 +2019,10 @@ declare namespace Components {
|
|
|
2018
2019
|
* A brief description of the price.
|
|
2019
2020
|
*/
|
|
2020
2021
|
description?: string;
|
|
2022
|
+
/**
|
|
2023
|
+
* A detailed description of the price. This is shown on the order document and order table.
|
|
2024
|
+
*/
|
|
2025
|
+
long_description?: string;
|
|
2021
2026
|
/**
|
|
2022
2027
|
* The default tax rate applicable to the product.
|
|
2023
2028
|
* This field is deprecated, use the new `tax` attribute.
|
|
@@ -2041,7 +2046,6 @@ declare namespace Components {
|
|
|
2041
2046
|
* "_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
|
|
2042
2047
|
* "type": "VAT",
|
|
2043
2048
|
* "description": "Tax description",
|
|
2044
|
-
* "behavior": "Exclusive",
|
|
2045
2049
|
* "active": "true",
|
|
2046
2050
|
* "region": "DE",
|
|
2047
2051
|
* "region_label": "Germany",
|
|
@@ -2057,11 +2061,9 @@ declare namespace Components {
|
|
|
2057
2061
|
*/
|
|
2058
2062
|
Tax[];
|
|
2059
2063
|
/**
|
|
2060
|
-
* Specifies whether the price is considered `inclusive` of taxes or
|
|
2061
|
-
* One of `inclusive`, `exclusive`, or `unspecified`.
|
|
2062
|
-
*
|
|
2064
|
+
* Specifies whether the price is considered `inclusive` of taxes or not.
|
|
2063
2065
|
*/
|
|
2064
|
-
|
|
2066
|
+
is_tax_inclusive?: boolean;
|
|
2065
2067
|
/**
|
|
2066
2068
|
* Defines the tiered pricing type of the price.
|
|
2067
2069
|
*/
|
|
@@ -2359,7 +2361,6 @@ declare namespace Components {
|
|
|
2359
2361
|
* "_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
|
|
2360
2362
|
* "type": "VAT",
|
|
2361
2363
|
* "description": "Tax description",
|
|
2362
|
-
* "behavior": "Exclusive",
|
|
2363
2364
|
* "active": "true",
|
|
2364
2365
|
* "region": "DE",
|
|
2365
2366
|
* "region_label": "Germany",
|
|
@@ -2391,7 +2392,6 @@ declare namespace Components {
|
|
|
2391
2392
|
type: "VAT" | "GST" | "Custom";
|
|
2392
2393
|
description?: string;
|
|
2393
2394
|
rate: number;
|
|
2394
|
-
behavior: "Exclusive" | "Inclusive" | "exclusive" | "inclusive";
|
|
2395
2395
|
active?: boolean;
|
|
2396
2396
|
region?: string;
|
|
2397
2397
|
region_label?: string;
|
|
@@ -2426,7 +2426,6 @@ declare namespace Components {
|
|
|
2426
2426
|
* "_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
|
|
2427
2427
|
* "type": "VAT",
|
|
2428
2428
|
* "description": "Tax description",
|
|
2429
|
-
* "behavior": "Exclusive",
|
|
2430
2429
|
* "active": "true",
|
|
2431
2430
|
* "region": "DE",
|
|
2432
2431
|
* "region_label": "Germany",
|
|
@@ -2477,7 +2476,6 @@ declare namespace Components {
|
|
|
2477
2476
|
* "_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
|
|
2478
2477
|
* "type": "VAT",
|
|
2479
2478
|
* "description": "Tax description",
|
|
2480
|
-
* "behavior": "Exclusive",
|
|
2481
2479
|
* "active": "true",
|
|
2482
2480
|
* "region": "DE",
|
|
2483
2481
|
* "region_label": "Germany",
|
package/dist/openapi.json
CHANGED
|
@@ -1417,6 +1417,10 @@
|
|
|
1417
1417
|
"type": "string",
|
|
1418
1418
|
"description": "A brief description of the price."
|
|
1419
1419
|
},
|
|
1420
|
+
"long_description": {
|
|
1421
|
+
"type": "string",
|
|
1422
|
+
"description": "A detailed description of the price. This is shown on the order document and order table."
|
|
1423
|
+
},
|
|
1420
1424
|
"sales_tax": {
|
|
1421
1425
|
"deprecated": true,
|
|
1422
1426
|
"description": "The default tax rate applicable to the product.\nThis field is deprecated, use the new `tax` attribute.\n",
|
|
@@ -1448,13 +1452,9 @@
|
|
|
1448
1452
|
}
|
|
1449
1453
|
]
|
|
1450
1454
|
},
|
|
1451
|
-
"
|
|
1452
|
-
"type": "
|
|
1453
|
-
"description": "Specifies whether the price is considered `inclusive` of taxes or
|
|
1454
|
-
"enum": [
|
|
1455
|
-
"inclusive",
|
|
1456
|
-
"exclusive"
|
|
1457
|
-
]
|
|
1455
|
+
"is_tax_inclusive": {
|
|
1456
|
+
"type": "boolean",
|
|
1457
|
+
"description": "Specifies whether the price is considered `inclusive` of taxes or not."
|
|
1458
1458
|
},
|
|
1459
1459
|
"tiers_mode": {
|
|
1460
1460
|
"description": "Defines the tiered pricing type of the price.",
|
|
@@ -3092,7 +3092,6 @@
|
|
|
3092
3092
|
"required": [
|
|
3093
3093
|
"type",
|
|
3094
3094
|
"rate",
|
|
3095
|
-
"behavior",
|
|
3096
3095
|
"_id",
|
|
3097
3096
|
"_title",
|
|
3098
3097
|
"_org",
|
|
@@ -3143,15 +3142,6 @@
|
|
|
3143
3142
|
"rate": {
|
|
3144
3143
|
"type": "number"
|
|
3145
3144
|
},
|
|
3146
|
-
"behavior": {
|
|
3147
|
-
"type": "string",
|
|
3148
|
-
"enum": [
|
|
3149
|
-
"Exclusive",
|
|
3150
|
-
"Inclusive",
|
|
3151
|
-
"exclusive",
|
|
3152
|
-
"inclusive"
|
|
3153
|
-
]
|
|
3154
|
-
},
|
|
3155
3145
|
"active": {
|
|
3156
3146
|
"type": "boolean"
|
|
3157
3147
|
},
|
|
@@ -3166,7 +3156,6 @@
|
|
|
3166
3156
|
"_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
|
|
3167
3157
|
"type": "VAT",
|
|
3168
3158
|
"description": "Tax description",
|
|
3169
|
-
"behavior": "Exclusive",
|
|
3170
3159
|
"active": "true",
|
|
3171
3160
|
"region": "DE",
|
|
3172
3161
|
"region_label": "Germany",
|
|
@@ -3301,7 +3290,7 @@
|
|
|
3301
3290
|
"type": "one_time",
|
|
3302
3291
|
"active": true,
|
|
3303
3292
|
"sales_tax": "standard",
|
|
3304
|
-
"
|
|
3293
|
+
"is_tax_inclusive": true,
|
|
3305
3294
|
"description": "Winter Sale",
|
|
3306
3295
|
"billing_scheme": "per_unit",
|
|
3307
3296
|
"tiers_mode": "Standard",
|
|
@@ -3337,7 +3326,7 @@
|
|
|
3337
3326
|
"type": "one_time",
|
|
3338
3327
|
"active": true,
|
|
3339
3328
|
"sales_tax": "standard",
|
|
3340
|
-
"
|
|
3329
|
+
"is_tax_inclusive": true,
|
|
3341
3330
|
"description": "Winter Sale",
|
|
3342
3331
|
"billing_scheme": "per_unit",
|
|
3343
3332
|
"tiers_mode": "Standard",
|
|
@@ -3389,7 +3378,6 @@
|
|
|
3389
3378
|
"tax": {
|
|
3390
3379
|
"_id": "24641e82-0690-4135-8b43-ef12a9b1c5dc",
|
|
3391
3380
|
"rate": "19",
|
|
3392
|
-
"behavior": "Inclusive",
|
|
3393
3381
|
"_schema": "tax",
|
|
3394
3382
|
"_org": "728",
|
|
3395
3383
|
"_created_at": "2021-09-24T15:06:13.859Z",
|
|
@@ -3409,7 +3397,7 @@
|
|
|
3409
3397
|
"unit_amount_currency": "EUR",
|
|
3410
3398
|
"unit_amount_decimal": "1000",
|
|
3411
3399
|
"sales_tax": "standard",
|
|
3412
|
-
"
|
|
3400
|
+
"is_tax_inclusive": true,
|
|
3413
3401
|
"price_display_in_journeys": "show_price",
|
|
3414
3402
|
"type": "one_time",
|
|
3415
3403
|
"billing_period": "weekly",
|
|
@@ -3521,7 +3509,6 @@
|
|
|
3521
3509
|
"tax": {
|
|
3522
3510
|
"_id": "24641e82-0690-4135-8b43-ef12a9b1c5dc",
|
|
3523
3511
|
"rate": "19",
|
|
3524
|
-
"behavior": "Inclusive",
|
|
3525
3512
|
"_schema": "tax",
|
|
3526
3513
|
"_org": "728",
|
|
3527
3514
|
"_created_at": "2021-09-24T15:06:13.859Z",
|
|
@@ -3541,7 +3528,7 @@
|
|
|
3541
3528
|
"unit_amount_currency": "EUR",
|
|
3542
3529
|
"unit_amount_decimal": "500",
|
|
3543
3530
|
"sales_tax": "standard",
|
|
3544
|
-
"
|
|
3531
|
+
"is_tax_inclusive": true,
|
|
3545
3532
|
"price_display_in_journeys": "show_price",
|
|
3546
3533
|
"type": "one_time",
|
|
3547
3534
|
"billing_period": "weekly",
|
|
@@ -3663,7 +3650,7 @@
|
|
|
3663
3650
|
"renewal_duration_unit": "years",
|
|
3664
3651
|
"active": true,
|
|
3665
3652
|
"sales_tax": "reduced",
|
|
3666
|
-
"
|
|
3653
|
+
"is_tax_inclusive": true,
|
|
3667
3654
|
"description": "Monthly",
|
|
3668
3655
|
"billing_scheme": "per_unit",
|
|
3669
3656
|
"tiers_mode": "Standard",
|
|
@@ -3761,7 +3748,7 @@
|
|
|
3761
3748
|
"unit_amount_currency": "EUR",
|
|
3762
3749
|
"unit_amount_decimal": "99",
|
|
3763
3750
|
"sales_tax": "standard",
|
|
3764
|
-
"
|
|
3751
|
+
"is_tax_inclusive": true,
|
|
3765
3752
|
"price_display_in_journeys": "show_price",
|
|
3766
3753
|
"type": "recurring",
|
|
3767
3754
|
"billing_period": "yearly",
|
|
@@ -3822,7 +3809,6 @@
|
|
|
3822
3809
|
"tax": {
|
|
3823
3810
|
"_id": "24641e82-0690-4135-8b43-ef12a9b1c5dc",
|
|
3824
3811
|
"rate": "19",
|
|
3825
|
-
"behavior": "Inclusive",
|
|
3826
3812
|
"_schema": "tax",
|
|
3827
3813
|
"_org": "728",
|
|
3828
3814
|
"_created_at": "2021-09-24T15:06:13.859Z",
|
|
@@ -4053,7 +4039,6 @@
|
|
|
4053
4039
|
"tax": {
|
|
4054
4040
|
"_id": "18bbbc2e-2c37-4f91-924a-07ae60d830e4",
|
|
4055
4041
|
"type": "VAT",
|
|
4056
|
-
"behavior": "Exclusive",
|
|
4057
4042
|
"active": true,
|
|
4058
4043
|
"region": "DE",
|
|
4059
4044
|
"_schema": "tax",
|
|
@@ -4082,7 +4067,6 @@
|
|
|
4082
4067
|
"tax": {
|
|
4083
4068
|
"_id": "18bbbc2e-2c37-4f91-924a-07ae60d830e4",
|
|
4084
4069
|
"type": "VAT",
|
|
4085
|
-
"behavior": "Exclusive",
|
|
4086
4070
|
"active": true,
|
|
4087
4071
|
"region": "DE",
|
|
4088
4072
|
"_schema": "tax",
|
|
@@ -4120,7 +4104,6 @@
|
|
|
4120
4104
|
"unit_amount_currency": "EUR",
|
|
4121
4105
|
"unit_amount_decimal": "100.00",
|
|
4122
4106
|
"sales_tax": "standard",
|
|
4123
|
-
"tax_behavior": "exclusive",
|
|
4124
4107
|
"price_display_in_journeys": "show_price",
|
|
4125
4108
|
"type": "one_time",
|
|
4126
4109
|
"_schema": "price",
|
|
@@ -4155,7 +4138,7 @@
|
|
|
4155
4138
|
"unit_amount_currency": "EUR",
|
|
4156
4139
|
"unit_amount_decimal": "100.00",
|
|
4157
4140
|
"sales_tax": "standard",
|
|
4158
|
-
"
|
|
4141
|
+
"is_tax_inclusive": false,
|
|
4159
4142
|
"price_display_in_journeys": "show_price",
|
|
4160
4143
|
"type": "one_time",
|
|
4161
4144
|
"_schema": "price",
|
|
@@ -4208,7 +4191,7 @@
|
|
|
4208
4191
|
"unit_amount_currency": "EUR",
|
|
4209
4192
|
"unit_amount_decimal": "555666.77",
|
|
4210
4193
|
"sales_tax": "standard",
|
|
4211
|
-
"
|
|
4194
|
+
"is_tax_inclusive": true,
|
|
4212
4195
|
"price_display_in_journeys": "show_as_starting_price",
|
|
4213
4196
|
"type": "one_time",
|
|
4214
4197
|
"_schema": "price",
|
|
@@ -4313,7 +4296,6 @@
|
|
|
4313
4296
|
"tax": {
|
|
4314
4297
|
"_id": "18bbbc2e-2c37-4f91-924a-07ae60d830e4",
|
|
4315
4298
|
"type": "VAT",
|
|
4316
|
-
"behavior": "Exclusive",
|
|
4317
4299
|
"active": true,
|
|
4318
4300
|
"region": "DE",
|
|
4319
4301
|
"_schema": "tax",
|
|
@@ -4539,7 +4521,7 @@
|
|
|
4539
4521
|
"unit_amount_currency": "EUR",
|
|
4540
4522
|
"unit_amount_decimal": "1000",
|
|
4541
4523
|
"sales_tax": "standard",
|
|
4542
|
-
"
|
|
4524
|
+
"is_tax_inclusive": true,
|
|
4543
4525
|
"price_display_in_journeys": "show_price",
|
|
4544
4526
|
"type": "one_time",
|
|
4545
4527
|
"billing_period": "weekly",
|
|
@@ -4587,7 +4569,7 @@
|
|
|
4587
4569
|
"unit_amount_currency": "EUR",
|
|
4588
4570
|
"unit_amount_decimal": "100.00",
|
|
4589
4571
|
"sales_tax": "standard",
|
|
4590
|
-
"
|
|
4572
|
+
"is_tax_inclusive": false,
|
|
4591
4573
|
"price_display_in_journeys": "show_price",
|
|
4592
4574
|
"type": "one_time",
|
|
4593
4575
|
"_schema": "price",
|
|
@@ -4622,7 +4604,7 @@
|
|
|
4622
4604
|
"unit_amount_currency": "EUR",
|
|
4623
4605
|
"unit_amount_decimal": "100.00",
|
|
4624
4606
|
"sales_tax": "standard",
|
|
4625
|
-
"
|
|
4607
|
+
"is_tax_inclusive": false,
|
|
4626
4608
|
"price_display_in_journeys": "show_price",
|
|
4627
4609
|
"type": "one_time",
|
|
4628
4610
|
"_schema": "price",
|
|
@@ -4663,7 +4645,6 @@
|
|
|
4663
4645
|
"amount": 600,
|
|
4664
4646
|
"tax": {
|
|
4665
4647
|
"active": true,
|
|
4666
|
-
"behavior": "Exclusive",
|
|
4667
4648
|
"description": "Without Behaviour",
|
|
4668
4649
|
"rate": 6,
|
|
4669
4650
|
"region": "DE",
|
|
@@ -4684,7 +4665,7 @@
|
|
|
4684
4665
|
"unit_amount_currency": "EUR",
|
|
4685
4666
|
"unit_amount_decimal": "100.00",
|
|
4686
4667
|
"sales_tax": "standard",
|
|
4687
|
-
"
|
|
4668
|
+
"is_tax_inclusive": false,
|
|
4688
4669
|
"price_display_in_journeys": "show_price",
|
|
4689
4670
|
"type": "one_time",
|
|
4690
4671
|
"billing_period": "weekly",
|
package/package.json
CHANGED
package/CHANGELOG.md
DELETED
|
@@ -1,253 +0,0 @@
|
|
|
1
|
-
# Change Log
|
|
2
|
-
|
|
3
|
-
All notable changes to this project will be documented in this file.
|
|
4
|
-
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
|
-
|
|
6
|
-
## [1.12.3](https://gitlab.com/e-pilot/product/checkout-and-pricing/pricing-api/compare/@epilot/pricing-client@1.12.2...@epilot/pricing-client@1.12.3) (2022-05-11)
|
|
7
|
-
|
|
8
|
-
**Note:** Version bump only for package @epilot/pricing-client
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
## [1.12.2](https://gitlab.com/e-pilot/product/checkout-and-pricing/pricing-api/compare/@epilot/pricing-client@1.12.2-alpha.0...@epilot/pricing-client@1.12.2) (2022-05-03)
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
### Reverts
|
|
18
|
-
|
|
19
|
-
* Revert "chore(release): publish" ([79a1d35](https://gitlab.com/e-pilot/product/checkout-and-pricing/pricing-api/commit/79a1d359edd3d0bd3442a9dd3da293b40017d363))
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
## [1.12.1](https://gitlab.com/e-pilot/product/checkout-and-pricing/pricing-api/compare/@epilot/pricing-client@1.10.0...@epilot/pricing-client@1.12.1) (2022-04-28)
|
|
26
|
-
|
|
27
|
-
**Note:** Version bump only for package @epilot/pricing-client
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
# [1.10.0](https://gitlab.com/e-pilot/product/checkout-and-pricing/pricing-api/compare/@epilot/pricing-client@1.9.0...@epilot/pricing-client@1.10.0) (2022-04-25)
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
### Features
|
|
37
|
-
|
|
38
|
-
* prod availability ([ca41cc0](https://gitlab.com/e-pilot/product/checkout-and-pricing/pricing-api/commit/ca41cc0f87823ffbc6936b3f8b1fe143e512a446))
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
# [1.9.0](https://gitlab.com/e-pilot/product/checkout-and-pricing/pricing-api/compare/@epilot/pricing-client@1.8.0...@epilot/pricing-client@1.9.0) (2022-04-22)
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
### Features
|
|
48
|
-
|
|
49
|
-
* support additional addresses for orders ([4db6f30](https://gitlab.com/e-pilot/product/checkout-and-pricing/pricing-api/commit/4db6f30428ed57233ceccb6d697288354d7b02db))
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
# [1.8.0](https://gitlab.com/e-pilot/product/checkout-and-pricing/pricing-api/compare/@epilot/pricing-client@1.7.0...@epilot/pricing-client@1.8.0) (2022-04-08)
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
### Features
|
|
59
|
-
|
|
60
|
-
* tracing for staging ([2182fed](https://gitlab.com/e-pilot/product/checkout-and-pricing/pricing-api/commit/2182fed2fec3fa108004dceef35ff3f2440bc816))
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
# [1.7.0](https://gitlab.com/e-pilot/product/checkout-and-pricing/pricing-api/compare/@epilot/pricing-client@1.6.5...@epilot/pricing-client@1.7.0) (2022-04-07)
|
|
67
|
-
|
|
68
|
-
**Note:** Version bump only for package @epilot/pricing-client
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
## [1.6.6-alpha.0](https://gitlab.com/e-pilot/product/checkout-and-pricing/pricing-api/compare/@epilot/pricing-client@1.6.5...@epilot/pricing-client@1.6.6-alpha.0) (2022-04-07)
|
|
75
|
-
|
|
76
|
-
**Note:** Version bump only for package @epilot/pricing-client
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
## [1.6.5](https://gitlab.com/e-pilot/product/checkout-and-pricing/pricing-api/compare/@epilot/pricing-client@1.6.4...@epilot/pricing-client@1.6.5) (2022-04-04)
|
|
83
|
-
|
|
84
|
-
**Note:** Version bump only for package @epilot/pricing-client
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
## [1.6.4](https://gitlab.com/e-pilot/product/checkout-and-pricing/pricing-api/compare/@epilot/pricing-client@1.6.3...@epilot/pricing-client@1.6.4) (2022-04-04)
|
|
91
|
-
|
|
92
|
-
**Note:** Version bump only for package @epilot/pricing-client
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
## [1.6.3](https://gitlab.com/e-pilot/product/checkout-and-pricing/pricing-api/compare/@epilot/pricing-client@1.6.2...@epilot/pricing-client@1.6.3) (2022-03-29)
|
|
99
|
-
|
|
100
|
-
**Note:** Version bump only for package @epilot/pricing-client
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
## [1.6.2](https://gitlab.com/e-pilot/product/checkout-and-pricing/pricing-api/compare/@epilot/pricing-client@1.5.4...@epilot/pricing-client@1.6.2) (2022-03-25)
|
|
107
|
-
|
|
108
|
-
**Note:** Version bump only for package @epilot/pricing-client
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
## [1.6.1](https://gitlab.com/e-pilot/product/checkout-and-pricing/pricing-api/compare/@epilot/pricing-client@1.5.7-alpha.0...@epilot/pricing-client@1.6.1) (2022-03-18)
|
|
115
|
-
|
|
116
|
-
**Note:** Version bump only for package @epilot/pricing-client
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
## [1.5.7-alpha.0](https://gitlab.com/e-pilot/product/checkout-and-pricing/pricing-api/compare/@epilot/pricing-client@1.5.4...@epilot/pricing-client@1.5.7-alpha.0) (2022-03-16)
|
|
123
|
-
|
|
124
|
-
**Note:** Version bump only for package @epilot/pricing-client
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
## [1.5.6](https://gitlab.com/e-pilot/product/checkout-and-pricing/pricing-api/compare/@epilot/pricing-client@1.5.4...@epilot/pricing-client@1.5.6) (2022-03-12)
|
|
131
|
-
|
|
132
|
-
**Note:** Version bump only for package @epilot/pricing-client
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
## [1.5.5](https://gitlab.com/e-pilot/product/checkout-and-pricing/pricing-api/compare/@epilot/pricing-client@1.5.4...@epilot/pricing-client@1.5.5) (2022-03-11)
|
|
139
|
-
|
|
140
|
-
**Note:** Version bump only for package @epilot/pricing-client
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
## [1.5.4](https://gitlab.com/e-pilot/product/checkout-and-pricing/pricing-api/compare/@epilot/pricing-client@1.5.2...@epilot/pricing-client@1.5.4) (2022-02-11)
|
|
147
|
-
|
|
148
|
-
**Note:** Version bump only for package @epilot/pricing-client
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
## [1.5.2](https://gitlab.com/e-pilot/product/checkout-and-pricing/pricing-api/compare/@epilot/pricing-client@1.5.1...@epilot/pricing-client@1.5.2) (2022-01-19)
|
|
155
|
-
|
|
156
|
-
**Note:** Version bump only for package @epilot/pricing-client
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
## [1.5.1](https://gitlab.com/e-pilot/product/checkout-and-pricing/pricing-api/compare/@epilot/pricing-client@1.5.0...@epilot/pricing-client@1.5.1) (2022-01-19)
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
### Bug Fixes
|
|
166
|
-
|
|
167
|
-
* create opportunity api spec ([c1480fa](https://gitlab.com/e-pilot/product/checkout-and-pricing/pricing-api/commit/c1480fa810fb018e451773f1805988cad371b669))
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
# [1.5.0](https://gitlab.com/e-pilot/product/checkout-and-pricing/pricing-api/compare/@epilot/pricing-client@1.3.1...@epilot/pricing-client@1.5.0) (2022-01-19)
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
### Bug Fixes
|
|
177
|
-
|
|
178
|
-
* lock files ([cf87d25](https://gitlab.com/e-pilot/product/checkout-and-pricing/pricing-api/commit/cf87d25cb8de79b92e5d9da5904fd9e4ac612099))
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
### Features
|
|
182
|
-
|
|
183
|
-
* adds opportunity support ([d9cd33f](https://gitlab.com/e-pilot/product/checkout-and-pricing/pricing-api/commit/d9cd33fca52e62ae198a64b3fbb4479d41b24be4))
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
## [1.3.1](https://gitlab.com/e-pilot/product/checkout-and-pricing/pricing-api/compare/@epilot/pricing-client@1.3.0...@epilot/pricing-client@1.3.1) (2022-01-19)
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
### Bug Fixes
|
|
193
|
-
|
|
194
|
-
* bug generating orders and updates types with opportunity ([b8c6e64](https://gitlab.com/e-pilot/product/checkout-and-pricing/pricing-api/commit/b8c6e64d414edeb0d9f5b66f7554dea4c56539d9))
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
# [1.3.0](https://gitlab.com/e-pilot/product/checkout-and-pricing/pricing-api/compare/@epilot/pricing-client@1.2.15...@epilot/pricing-client@1.3.0) (2022-01-03)
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
### Features
|
|
204
|
-
|
|
205
|
-
* adds support for files ([709e89f](https://gitlab.com/e-pilot/product/checkout-and-pricing/pricing-api/commit/709e89f98064646d6111f76c2cde255490e5ed79))
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
## [1.2.15](https://gitlab.com/e-pilot/product/checkout-and-pricing/pricing-api/compare/@epilot/pricing-client@1.2.14...@epilot/pricing-client@1.2.15) (2021-12-22)
|
|
212
|
-
|
|
213
|
-
**Note:** Version bump only for package @epilot/pricing-client
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
## [1.2.14](https://gitlab.com/e-pilot/product/checkout-and-pricing/pricing-api/compare/@epilot/pricing-client@1.2.13...@epilot/pricing-client@1.2.14) (2021-12-22)
|
|
220
|
-
|
|
221
|
-
**Note:** Version bump only for package @epilot/pricing-client
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
## [1.2.13](https://gitlab.com/e-pilot/product/checkout-and-pricing/pricing-api/compare/@epilot/pricing-client@1.2.12...@epilot/pricing-client@1.2.13) (2021-12-16)
|
|
228
|
-
|
|
229
|
-
**Note:** Version bump only for package @epilot/pricing-client
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
## [1.2.12](https://gitlab.com/e-pilot/product/checkout-and-pricing/pricing-api/compare/@epilot/pricing-client@1.2.11...@epilot/pricing-client@1.2.12) (2021-12-16)
|
|
236
|
-
|
|
237
|
-
**Note:** Version bump only for package @epilot/pricing-client
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
## [1.2.11](https://gitlab.com/e-pilot/product/checkout-and-pricing/pricing-api/compare/@epilot/pricing-client@1.2.10...@epilot/pricing-client@1.2.11) (2021-12-16)
|
|
244
|
-
|
|
245
|
-
**Note:** Version bump only for package @epilot/pricing-client
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
## [1.2.10](https://gitlab.com/e-pilot/product/checkout-and-pricing/pricing-api/compare/@epilot/pricing-client@1.2.9...@epilot/pricing-client@1.2.10) (2021-12-16)
|
|
252
|
-
|
|
253
|
-
**Note:** Version bump only for package @epilot/pricing-client
|