@epilot/pricing-client 3.47.4 → 3.48.0-alpha.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/openapi.d.ts +28 -0
- package/dist/openapi.json +4 -0
- package/package.json +1 -1
package/dist/openapi.d.ts
CHANGED
|
@@ -464,6 +464,10 @@ declare namespace Components {
|
|
|
464
464
|
* An arbitrary string attached to the price item. Often useful for displaying to users. Defaults to product name.
|
|
465
465
|
*/
|
|
466
466
|
description?: string;
|
|
467
|
+
/**
|
|
468
|
+
* A detailed description of the price. This is shown on the order document and order table.
|
|
469
|
+
*/
|
|
470
|
+
long_description?: string;
|
|
467
471
|
price_mappings?: /**
|
|
468
472
|
* example:
|
|
469
473
|
* [
|
|
@@ -778,6 +782,10 @@ declare namespace Components {
|
|
|
778
782
|
* An arbitrary string attached to the price item. Often useful for displaying to users. Defaults to product name.
|
|
779
783
|
*/
|
|
780
784
|
description?: string;
|
|
785
|
+
/**
|
|
786
|
+
* A detailed description of the price. This is shown on the order document and order table.
|
|
787
|
+
*/
|
|
788
|
+
long_description?: string;
|
|
781
789
|
/**
|
|
782
790
|
* Price mapping information required to compute totals
|
|
783
791
|
*/
|
|
@@ -927,6 +935,10 @@ declare namespace Components {
|
|
|
927
935
|
* An arbitrary string attached to the price item. Often useful for displaying to users. Defaults to product name.
|
|
928
936
|
*/
|
|
929
937
|
description?: string;
|
|
938
|
+
/**
|
|
939
|
+
* A detailed description of the price. This is shown on the order document and order table.
|
|
940
|
+
*/
|
|
941
|
+
long_description?: string;
|
|
930
942
|
price_mappings?: /**
|
|
931
943
|
* example:
|
|
932
944
|
* [
|
|
@@ -1608,6 +1620,10 @@ declare namespace Components {
|
|
|
1608
1620
|
* An arbitrary string attached to the price item. Often useful for displaying to users. Defaults to product name.
|
|
1609
1621
|
*/
|
|
1610
1622
|
description?: string;
|
|
1623
|
+
/**
|
|
1624
|
+
* A detailed description of the price. This is shown on the order document and order table.
|
|
1625
|
+
*/
|
|
1626
|
+
long_description?: string;
|
|
1611
1627
|
price_mappings?: /**
|
|
1612
1628
|
* example:
|
|
1613
1629
|
* [
|
|
@@ -1934,6 +1950,10 @@ declare namespace Components {
|
|
|
1934
1950
|
* An arbitrary string attached to the price item. Often useful for displaying to users. Defaults to product name.
|
|
1935
1951
|
*/
|
|
1936
1952
|
description?: string;
|
|
1953
|
+
/**
|
|
1954
|
+
* A detailed description of the price. This is shown on the order document and order table.
|
|
1955
|
+
*/
|
|
1956
|
+
long_description?: string;
|
|
1937
1957
|
price_mappings?: /**
|
|
1938
1958
|
* example:
|
|
1939
1959
|
* [
|
|
@@ -3867,6 +3887,10 @@ declare namespace Components {
|
|
|
3867
3887
|
* An arbitrary string attached to the price item. Often useful for displaying to users. Defaults to product name.
|
|
3868
3888
|
*/
|
|
3869
3889
|
description?: string;
|
|
3890
|
+
/**
|
|
3891
|
+
* A detailed description of the price. This is shown on the order document and order table.
|
|
3892
|
+
*/
|
|
3893
|
+
long_description?: string;
|
|
3870
3894
|
price_mappings?: /**
|
|
3871
3895
|
* example:
|
|
3872
3896
|
* [
|
|
@@ -4203,6 +4227,10 @@ declare namespace Components {
|
|
|
4203
4227
|
* An arbitrary string attached to the price item. Often useful for displaying to users. Defaults to product name.
|
|
4204
4228
|
*/
|
|
4205
4229
|
description?: string;
|
|
4230
|
+
/**
|
|
4231
|
+
* A detailed description of the price. This is shown on the order document and order table.
|
|
4232
|
+
*/
|
|
4233
|
+
long_description?: string;
|
|
4206
4234
|
price_mappings?: /**
|
|
4207
4235
|
* example:
|
|
4208
4236
|
* [
|
package/dist/openapi.json
CHANGED
|
@@ -4100,6 +4100,10 @@
|
|
|
4100
4100
|
"type": "string",
|
|
4101
4101
|
"description": "An arbitrary string attached to the price item. Often useful for displaying to users. Defaults to product name."
|
|
4102
4102
|
},
|
|
4103
|
+
"long_description": {
|
|
4104
|
+
"type": "string",
|
|
4105
|
+
"description": "A detailed description of the price. This is shown on the order document and order table."
|
|
4106
|
+
},
|
|
4103
4107
|
"price_mappings": {
|
|
4104
4108
|
"description": "Price mapping information required to compute totals",
|
|
4105
4109
|
"$ref": "#/components/schemas/PriceInputMappings"
|