@epilot/pricing-client 3.47.5 → 3.47.6

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
@@ -464,6 +464,14 @@ 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
+ * The description for the product.
469
+ */
470
+ product_description?: string;
471
+ /**
472
+ * The name for the product.
473
+ */
474
+ product_name?: string;
467
475
  price_mappings?: /**
468
476
  * example:
469
477
  * [
@@ -778,6 +786,14 @@ declare namespace Components {
778
786
  * An arbitrary string attached to the price item. Often useful for displaying to users. Defaults to product name.
779
787
  */
780
788
  description?: string;
789
+ /**
790
+ * The description for the product.
791
+ */
792
+ product_description?: string;
793
+ /**
794
+ * The name for the product.
795
+ */
796
+ product_name?: string;
781
797
  /**
782
798
  * Price mapping information required to compute totals
783
799
  */
@@ -927,6 +943,14 @@ declare namespace Components {
927
943
  * An arbitrary string attached to the price item. Often useful for displaying to users. Defaults to product name.
928
944
  */
929
945
  description?: string;
946
+ /**
947
+ * The description for the product.
948
+ */
949
+ product_description?: string;
950
+ /**
951
+ * The name for the product.
952
+ */
953
+ product_name?: string;
930
954
  price_mappings?: /**
931
955
  * example:
932
956
  * [
@@ -1608,6 +1632,14 @@ declare namespace Components {
1608
1632
  * An arbitrary string attached to the price item. Often useful for displaying to users. Defaults to product name.
1609
1633
  */
1610
1634
  description?: string;
1635
+ /**
1636
+ * The description for the product.
1637
+ */
1638
+ product_description?: string;
1639
+ /**
1640
+ * The name for the product.
1641
+ */
1642
+ product_name?: string;
1611
1643
  price_mappings?: /**
1612
1644
  * example:
1613
1645
  * [
@@ -1934,6 +1966,14 @@ declare namespace Components {
1934
1966
  * An arbitrary string attached to the price item. Often useful for displaying to users. Defaults to product name.
1935
1967
  */
1936
1968
  description?: string;
1969
+ /**
1970
+ * The description for the product.
1971
+ */
1972
+ product_description?: string;
1973
+ /**
1974
+ * The name for the product.
1975
+ */
1976
+ product_name?: string;
1937
1977
  price_mappings?: /**
1938
1978
  * example:
1939
1979
  * [
@@ -3867,6 +3907,14 @@ declare namespace Components {
3867
3907
  * An arbitrary string attached to the price item. Often useful for displaying to users. Defaults to product name.
3868
3908
  */
3869
3909
  description?: string;
3910
+ /**
3911
+ * The description for the product.
3912
+ */
3913
+ product_description?: string;
3914
+ /**
3915
+ * The name for the product.
3916
+ */
3917
+ product_name?: string;
3870
3918
  price_mappings?: /**
3871
3919
  * example:
3872
3920
  * [
@@ -4203,6 +4251,14 @@ declare namespace Components {
4203
4251
  * An arbitrary string attached to the price item. Often useful for displaying to users. Defaults to product name.
4204
4252
  */
4205
4253
  description?: string;
4254
+ /**
4255
+ * The description for the product.
4256
+ */
4257
+ product_description?: string;
4258
+ /**
4259
+ * The name for the product.
4260
+ */
4261
+ product_name?: string;
4206
4262
  price_mappings?: /**
4207
4263
  * example:
4208
4264
  * [
package/dist/openapi.json CHANGED
@@ -4100,6 +4100,14 @@
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
+ "product_description": {
4104
+ "type": "string",
4105
+ "description": "The description for the product."
4106
+ },
4107
+ "product_name": {
4108
+ "type": "string",
4109
+ "description": "The name for the product."
4110
+ },
4103
4111
  "price_mappings": {
4104
4112
  "description": "Price mapping information required to compute totals",
4105
4113
  "$ref": "#/components/schemas/PriceInputMappings"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/pricing-client",
3
- "version": "3.47.5",
3
+ "version": "3.47.6",
4
4
  "description": "Client for epilot Pricing APIs",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",