@teemill/product-catalog 1.19.0 → 1.23.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/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## @teemill/product-catalog@1.19.0
1
+ ## @teemill/product-catalog@1.23.0
2
2
 
3
3
  This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:
4
4
 
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
36
36
  _published:_
37
37
 
38
38
  ```
39
- npm install @teemill/product-catalog@1.19.0 --save
39
+ npm install @teemill/product-catalog@1.23.0 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
package/api.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * Product Catalog API
5
5
  * Manage Product Catalog A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
6
6
  *
7
- * The version of the OpenAPI document: 1.19.0
7
+ * The version of the OpenAPI document: 1.23.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -465,6 +465,12 @@ export interface CreateProductRequest {
465
465
  * @memberof CreateProductRequest
466
466
  */
467
467
  'applicationSets'?: Array<string>;
468
+ /**
469
+ * Whether the product should be included in data feeds that can be provided to Google, Meta etc for advertising.
470
+ * @type {boolean}
471
+ * @memberof CreateProductRequest
472
+ */
473
+ 'includeInDataFeeds'?: boolean;
468
474
  }
469
475
  /**
470
476
  *
@@ -504,6 +510,12 @@ export interface CreateProductRequestSeoMetadata {
504
510
  * @memberof CreateProductRequestSeoMetadata
505
511
  */
506
512
  'title'?: string;
513
+ /**
514
+ * Meta description for the product. This appears in search engine results and social shares. If not provided, the product description will be used.
515
+ * @type {string}
516
+ * @memberof CreateProductRequestSeoMetadata
517
+ */
518
+ 'description'?: string | null;
507
519
  }
508
520
  /**
509
521
  *
@@ -523,6 +535,12 @@ export interface CreateProductVariant {
523
535
  * @memberof CreateProductVariant
524
536
  */
525
537
  'retailPrice': CreateProductVariantRetailPrice;
538
+ /**
539
+ *
540
+ * @type {CreateProductVariantSalePrice}
541
+ * @memberof CreateProductVariant
542
+ */
543
+ 'salePrice'?: CreateProductVariantSalePrice;
526
544
  /**
527
545
  * A custom stock keeping unit for the variant.
528
546
  * @type {string}
@@ -614,6 +632,32 @@ export const CreateProductVariantRetailPriceCurrencyCodeEnum = {
614
632
 
615
633
  export type CreateProductVariantRetailPriceCurrencyCodeEnum = typeof CreateProductVariantRetailPriceCurrencyCodeEnum[keyof typeof CreateProductVariantRetailPriceCurrencyCodeEnum];
616
634
 
635
+ /**
636
+ * Variant discounted price including tax.
637
+ * @export
638
+ * @interface CreateProductVariantSalePrice
639
+ */
640
+ export interface CreateProductVariantSalePrice {
641
+ /**
642
+ * Sale price including tax in the specified currency.
643
+ * @type {number}
644
+ * @memberof CreateProductVariantSalePrice
645
+ */
646
+ 'amount': number;
647
+ /**
648
+ * Currency code for the currency the sale price is valued in.
649
+ * @type {string}
650
+ * @memberof CreateProductVariantSalePrice
651
+ */
652
+ 'currencyCode': CreateProductVariantSalePriceCurrencyCodeEnum;
653
+ }
654
+
655
+ export const CreateProductVariantSalePriceCurrencyCodeEnum = {
656
+ Gbp: 'GBP'
657
+ } as const;
658
+
659
+ export type CreateProductVariantSalePriceCurrencyCodeEnum = typeof CreateProductVariantSalePriceCurrencyCodeEnum[keyof typeof CreateProductVariantSalePriceCurrencyCodeEnum];
660
+
617
661
  /**
618
662
  * Image description
619
663
  * @export
@@ -817,6 +861,12 @@ export interface Product {
817
861
  * @memberof Product
818
862
  */
819
863
  'applicationSets'?: Array<ProductApplicationSetsInner>;
864
+ /**
865
+ *
866
+ * @type {boolean}
867
+ * @memberof Product
868
+ */
869
+ 'includeInDataFeeds'?: boolean;
820
870
  }
821
871
  /**
822
872
  *
@@ -893,6 +943,12 @@ export interface SeoMetadata {
893
943
  * @memberof SeoMetadata
894
944
  */
895
945
  'title'?: string;
946
+ /**
947
+ * Meta description for the product. This appears in search engine results and social shares. If not provided, the product description will be used.
948
+ * @type {string}
949
+ * @memberof SeoMetadata
950
+ */
951
+ 'description'?: string | null;
896
952
  }
897
953
  /**
898
954
  *
@@ -1072,6 +1128,12 @@ export interface UpdateProductRequest {
1072
1128
  * @memberof UpdateProductRequest
1073
1129
  */
1074
1130
  'applicationSets'?: Array<string>;
1131
+ /**
1132
+ * Whether the product should be included in data feeds that can be provided to Google, Meta etc for advertising.
1133
+ * @type {boolean}
1134
+ * @memberof UpdateProductRequest
1135
+ */
1136
+ 'includeInDataFeeds'?: boolean;
1075
1137
  }
1076
1138
  /**
1077
1139
  *
package/base.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * Product Catalog API
5
5
  * Manage Product Catalog A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
6
6
  *
7
- * The version of the OpenAPI document: 1.19.0
7
+ * The version of the OpenAPI document: 1.23.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/common.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * Product Catalog API
5
5
  * Manage Product Catalog A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
6
6
  *
7
- * The version of the OpenAPI document: 1.19.0
7
+ * The version of the OpenAPI document: 1.23.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/configuration.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * Product Catalog API
5
5
  * Manage Product Catalog A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
6
6
  *
7
- * The version of the OpenAPI document: 1.19.0
7
+ * The version of the OpenAPI document: 1.23.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/api.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * Product Catalog API
3
3
  * Manage Product Catalog A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
4
4
  *
5
- * The version of the OpenAPI document: 1.19.0
5
+ * The version of the OpenAPI document: 1.23.0
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -448,6 +448,12 @@ export interface CreateProductRequest {
448
448
  * @memberof CreateProductRequest
449
449
  */
450
450
  'applicationSets'?: Array<string>;
451
+ /**
452
+ * Whether the product should be included in data feeds that can be provided to Google, Meta etc for advertising.
453
+ * @type {boolean}
454
+ * @memberof CreateProductRequest
455
+ */
456
+ 'includeInDataFeeds'?: boolean;
451
457
  }
452
458
  /**
453
459
  *
@@ -487,6 +493,12 @@ export interface CreateProductRequestSeoMetadata {
487
493
  * @memberof CreateProductRequestSeoMetadata
488
494
  */
489
495
  'title'?: string;
496
+ /**
497
+ * Meta description for the product. This appears in search engine results and social shares. If not provided, the product description will be used.
498
+ * @type {string}
499
+ * @memberof CreateProductRequestSeoMetadata
500
+ */
501
+ 'description'?: string | null;
490
502
  }
491
503
  /**
492
504
  *
@@ -506,6 +518,12 @@ export interface CreateProductVariant {
506
518
  * @memberof CreateProductVariant
507
519
  */
508
520
  'retailPrice': CreateProductVariantRetailPrice;
521
+ /**
522
+ *
523
+ * @type {CreateProductVariantSalePrice}
524
+ * @memberof CreateProductVariant
525
+ */
526
+ 'salePrice'?: CreateProductVariantSalePrice;
509
527
  /**
510
528
  * A custom stock keeping unit for the variant.
511
529
  * @type {string}
@@ -591,6 +609,29 @@ export declare const CreateProductVariantRetailPriceCurrencyCodeEnum: {
591
609
  readonly Gbp: "GBP";
592
610
  };
593
611
  export type CreateProductVariantRetailPriceCurrencyCodeEnum = typeof CreateProductVariantRetailPriceCurrencyCodeEnum[keyof typeof CreateProductVariantRetailPriceCurrencyCodeEnum];
612
+ /**
613
+ * Variant discounted price including tax.
614
+ * @export
615
+ * @interface CreateProductVariantSalePrice
616
+ */
617
+ export interface CreateProductVariantSalePrice {
618
+ /**
619
+ * Sale price including tax in the specified currency.
620
+ * @type {number}
621
+ * @memberof CreateProductVariantSalePrice
622
+ */
623
+ 'amount': number;
624
+ /**
625
+ * Currency code for the currency the sale price is valued in.
626
+ * @type {string}
627
+ * @memberof CreateProductVariantSalePrice
628
+ */
629
+ 'currencyCode': CreateProductVariantSalePriceCurrencyCodeEnum;
630
+ }
631
+ export declare const CreateProductVariantSalePriceCurrencyCodeEnum: {
632
+ readonly Gbp: "GBP";
633
+ };
634
+ export type CreateProductVariantSalePriceCurrencyCodeEnum = typeof CreateProductVariantSalePriceCurrencyCodeEnum[keyof typeof CreateProductVariantSalePriceCurrencyCodeEnum];
594
635
  /**
595
636
  * Image description
596
637
  * @export
@@ -791,6 +832,12 @@ export interface Product {
791
832
  * @memberof Product
792
833
  */
793
834
  'applicationSets'?: Array<ProductApplicationSetsInner>;
835
+ /**
836
+ *
837
+ * @type {boolean}
838
+ * @memberof Product
839
+ */
840
+ 'includeInDataFeeds'?: boolean;
794
841
  }
795
842
  /**
796
843
  *
@@ -867,6 +914,12 @@ export interface SeoMetadata {
867
914
  * @memberof SeoMetadata
868
915
  */
869
916
  'title'?: string;
917
+ /**
918
+ * Meta description for the product. This appears in search engine results and social shares. If not provided, the product description will be used.
919
+ * @type {string}
920
+ * @memberof SeoMetadata
921
+ */
922
+ 'description'?: string | null;
870
923
  }
871
924
  /**
872
925
  *
@@ -1046,6 +1099,12 @@ export interface UpdateProductRequest {
1046
1099
  * @memberof UpdateProductRequest
1047
1100
  */
1048
1101
  'applicationSets'?: Array<string>;
1102
+ /**
1103
+ * Whether the product should be included in data feeds that can be provided to Google, Meta etc for advertising.
1104
+ * @type {boolean}
1105
+ * @memberof UpdateProductRequest
1106
+ */
1107
+ 'includeInDataFeeds'?: boolean;
1049
1108
  }
1050
1109
  /**
1051
1110
  *
package/dist/api.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * Product Catalog API
6
6
  * Manage Product Catalog A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
7
7
  *
8
- * The version of the OpenAPI document: 1.19.0
8
+ * The version of the OpenAPI document: 1.23.0
9
9
  * Contact: hello@teemill.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -22,7 +22,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
22
22
  });
23
23
  };
24
24
  Object.defineProperty(exports, "__esModule", { value: true });
25
- exports.VariantsApi = exports.VariantsApiFactory = exports.VariantsApiFp = exports.VariantsApiAxiosParamCreator = exports.ProductsApi = exports.ProductsApiFactory = exports.ProductsApiFp = exports.ProductsApiAxiosParamCreator = exports.ApplicationSetsApi = exports.ApplicationSetsApiFactory = exports.ApplicationSetsApiFp = exports.ApplicationSetsApiAxiosParamCreator = exports.PriceCurrencyCodeEnum = exports.CreateProductVariantRetailPriceCurrencyCodeEnum = exports.CreateProductVariantAttributesInnerNameEnum = exports.CreateApplicationSetRequestRecordsInnerAttributesInnerThumbnailTypeEnum = exports.ApplicationPlacementEnum = exports.ApplicationTechnologyEnum = void 0;
25
+ exports.VariantsApi = exports.VariantsApiFactory = exports.VariantsApiFp = exports.VariantsApiAxiosParamCreator = exports.ProductsApi = exports.ProductsApiFactory = exports.ProductsApiFp = exports.ProductsApiAxiosParamCreator = exports.ApplicationSetsApi = exports.ApplicationSetsApiFactory = exports.ApplicationSetsApiFp = exports.ApplicationSetsApiAxiosParamCreator = exports.PriceCurrencyCodeEnum = exports.CreateProductVariantSalePriceCurrencyCodeEnum = exports.CreateProductVariantRetailPriceCurrencyCodeEnum = exports.CreateProductVariantAttributesInnerNameEnum = exports.CreateApplicationSetRequestRecordsInnerAttributesInnerThumbnailTypeEnum = exports.ApplicationPlacementEnum = exports.ApplicationTechnologyEnum = void 0;
26
26
  const axios_1 = require("axios");
27
27
  // Some imports not used depending on template conditions
28
28
  // @ts-ignore
@@ -59,6 +59,9 @@ exports.CreateProductVariantAttributesInnerNameEnum = {
59
59
  exports.CreateProductVariantRetailPriceCurrencyCodeEnum = {
60
60
  Gbp: 'GBP'
61
61
  };
62
+ exports.CreateProductVariantSalePriceCurrencyCodeEnum = {
63
+ Gbp: 'GBP'
64
+ };
62
65
  exports.PriceCurrencyCodeEnum = {
63
66
  Gbp: 'GBP'
64
67
  };
package/dist/base.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * Product Catalog API
3
3
  * Manage Product Catalog A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
4
4
  *
5
- * The version of the OpenAPI document: 1.19.0
5
+ * The version of the OpenAPI document: 1.23.0
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/base.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * Product Catalog API
6
6
  * Manage Product Catalog A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
7
7
  *
8
- * The version of the OpenAPI document: 1.19.0
8
+ * The version of the OpenAPI document: 1.23.0
9
9
  * Contact: hello@teemill.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/common.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * Product Catalog API
3
3
  * Manage Product Catalog A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
4
4
  *
5
- * The version of the OpenAPI document: 1.19.0
5
+ * The version of the OpenAPI document: 1.23.0
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/common.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * Product Catalog API
6
6
  * Manage Product Catalog A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
7
7
  *
8
- * The version of the OpenAPI document: 1.19.0
8
+ * The version of the OpenAPI document: 1.23.0
9
9
  * Contact: hello@teemill.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Product Catalog API
3
3
  * Manage Product Catalog A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
4
4
  *
5
- * The version of the OpenAPI document: 1.19.0
5
+ * The version of the OpenAPI document: 1.23.0
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Product Catalog API
6
6
  * Manage Product Catalog A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
7
7
  *
8
- * The version of the OpenAPI document: 1.19.0
8
+ * The version of the OpenAPI document: 1.23.0
9
9
  * Contact: hello@teemill.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/esm/api.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * Product Catalog API
3
3
  * Manage Product Catalog A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
4
4
  *
5
- * The version of the OpenAPI document: 1.19.0
5
+ * The version of the OpenAPI document: 1.23.0
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -448,6 +448,12 @@ export interface CreateProductRequest {
448
448
  * @memberof CreateProductRequest
449
449
  */
450
450
  'applicationSets'?: Array<string>;
451
+ /**
452
+ * Whether the product should be included in data feeds that can be provided to Google, Meta etc for advertising.
453
+ * @type {boolean}
454
+ * @memberof CreateProductRequest
455
+ */
456
+ 'includeInDataFeeds'?: boolean;
451
457
  }
452
458
  /**
453
459
  *
@@ -487,6 +493,12 @@ export interface CreateProductRequestSeoMetadata {
487
493
  * @memberof CreateProductRequestSeoMetadata
488
494
  */
489
495
  'title'?: string;
496
+ /**
497
+ * Meta description for the product. This appears in search engine results and social shares. If not provided, the product description will be used.
498
+ * @type {string}
499
+ * @memberof CreateProductRequestSeoMetadata
500
+ */
501
+ 'description'?: string | null;
490
502
  }
491
503
  /**
492
504
  *
@@ -506,6 +518,12 @@ export interface CreateProductVariant {
506
518
  * @memberof CreateProductVariant
507
519
  */
508
520
  'retailPrice': CreateProductVariantRetailPrice;
521
+ /**
522
+ *
523
+ * @type {CreateProductVariantSalePrice}
524
+ * @memberof CreateProductVariant
525
+ */
526
+ 'salePrice'?: CreateProductVariantSalePrice;
509
527
  /**
510
528
  * A custom stock keeping unit for the variant.
511
529
  * @type {string}
@@ -591,6 +609,29 @@ export declare const CreateProductVariantRetailPriceCurrencyCodeEnum: {
591
609
  readonly Gbp: "GBP";
592
610
  };
593
611
  export type CreateProductVariantRetailPriceCurrencyCodeEnum = typeof CreateProductVariantRetailPriceCurrencyCodeEnum[keyof typeof CreateProductVariantRetailPriceCurrencyCodeEnum];
612
+ /**
613
+ * Variant discounted price including tax.
614
+ * @export
615
+ * @interface CreateProductVariantSalePrice
616
+ */
617
+ export interface CreateProductVariantSalePrice {
618
+ /**
619
+ * Sale price including tax in the specified currency.
620
+ * @type {number}
621
+ * @memberof CreateProductVariantSalePrice
622
+ */
623
+ 'amount': number;
624
+ /**
625
+ * Currency code for the currency the sale price is valued in.
626
+ * @type {string}
627
+ * @memberof CreateProductVariantSalePrice
628
+ */
629
+ 'currencyCode': CreateProductVariantSalePriceCurrencyCodeEnum;
630
+ }
631
+ export declare const CreateProductVariantSalePriceCurrencyCodeEnum: {
632
+ readonly Gbp: "GBP";
633
+ };
634
+ export type CreateProductVariantSalePriceCurrencyCodeEnum = typeof CreateProductVariantSalePriceCurrencyCodeEnum[keyof typeof CreateProductVariantSalePriceCurrencyCodeEnum];
594
635
  /**
595
636
  * Image description
596
637
  * @export
@@ -791,6 +832,12 @@ export interface Product {
791
832
  * @memberof Product
792
833
  */
793
834
  'applicationSets'?: Array<ProductApplicationSetsInner>;
835
+ /**
836
+ *
837
+ * @type {boolean}
838
+ * @memberof Product
839
+ */
840
+ 'includeInDataFeeds'?: boolean;
794
841
  }
795
842
  /**
796
843
  *
@@ -867,6 +914,12 @@ export interface SeoMetadata {
867
914
  * @memberof SeoMetadata
868
915
  */
869
916
  'title'?: string;
917
+ /**
918
+ * Meta description for the product. This appears in search engine results and social shares. If not provided, the product description will be used.
919
+ * @type {string}
920
+ * @memberof SeoMetadata
921
+ */
922
+ 'description'?: string | null;
870
923
  }
871
924
  /**
872
925
  *
@@ -1046,6 +1099,12 @@ export interface UpdateProductRequest {
1046
1099
  * @memberof UpdateProductRequest
1047
1100
  */
1048
1101
  'applicationSets'?: Array<string>;
1102
+ /**
1103
+ * Whether the product should be included in data feeds that can be provided to Google, Meta etc for advertising.
1104
+ * @type {boolean}
1105
+ * @memberof UpdateProductRequest
1106
+ */
1107
+ 'includeInDataFeeds'?: boolean;
1049
1108
  }
1050
1109
  /**
1051
1110
  *
package/dist/esm/api.js CHANGED
@@ -4,7 +4,7 @@
4
4
  * Product Catalog API
5
5
  * Manage Product Catalog A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
6
6
  *
7
- * The version of the OpenAPI document: 1.19.0
7
+ * The version of the OpenAPI document: 1.23.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -56,6 +56,9 @@ export const CreateProductVariantAttributesInnerNameEnum = {
56
56
  export const CreateProductVariantRetailPriceCurrencyCodeEnum = {
57
57
  Gbp: 'GBP'
58
58
  };
59
+ export const CreateProductVariantSalePriceCurrencyCodeEnum = {
60
+ Gbp: 'GBP'
61
+ };
59
62
  export const PriceCurrencyCodeEnum = {
60
63
  Gbp: 'GBP'
61
64
  };
@@ -2,7 +2,7 @@
2
2
  * Product Catalog API
3
3
  * Manage Product Catalog A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
4
4
  *
5
- * The version of the OpenAPI document: 1.19.0
5
+ * The version of the OpenAPI document: 1.23.0
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/esm/base.js CHANGED
@@ -4,7 +4,7 @@
4
4
  * Product Catalog API
5
5
  * Manage Product Catalog A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
6
6
  *
7
- * The version of the OpenAPI document: 1.19.0
7
+ * The version of the OpenAPI document: 1.23.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Product Catalog API
3
3
  * Manage Product Catalog A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
4
4
  *
5
- * The version of the OpenAPI document: 1.19.0
5
+ * The version of the OpenAPI document: 1.23.0
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -4,7 +4,7 @@
4
4
  * Product Catalog API
5
5
  * Manage Product Catalog A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
6
6
  *
7
- * The version of the OpenAPI document: 1.19.0
7
+ * The version of the OpenAPI document: 1.23.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Product Catalog API
3
3
  * Manage Product Catalog A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
4
4
  *
5
- * The version of the OpenAPI document: 1.19.0
5
+ * The version of the OpenAPI document: 1.23.0
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -4,7 +4,7 @@
4
4
  * Product Catalog API
5
5
  * Manage Product Catalog A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
6
6
  *
7
- * The version of the OpenAPI document: 1.19.0
7
+ * The version of the OpenAPI document: 1.23.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Product Catalog API
3
3
  * Manage Product Catalog A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
4
4
  *
5
- * The version of the OpenAPI document: 1.19.0
5
+ * The version of the OpenAPI document: 1.23.0
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/esm/index.js CHANGED
@@ -4,7 +4,7 @@
4
4
  * Product Catalog API
5
5
  * Manage Product Catalog A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
6
6
  *
7
- * The version of the OpenAPI document: 1.19.0
7
+ * The version of the OpenAPI document: 1.23.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/index.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * Product Catalog API
3
3
  * Manage Product Catalog A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
4
4
  *
5
- * The version of the OpenAPI document: 1.19.0
5
+ * The version of the OpenAPI document: 1.23.0
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/index.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * Product Catalog API
6
6
  * Manage Product Catalog A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
7
7
  *
8
- * The version of the OpenAPI document: 1.19.0
8
+ * The version of the OpenAPI document: 1.23.0
9
9
  * Contact: hello@teemill.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/index.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * Product Catalog API
5
5
  * Manage Product Catalog A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
6
6
  *
7
- * The version of the OpenAPI document: 1.19.0
7
+ * The version of the OpenAPI document: 1.23.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@teemill/product-catalog",
3
- "version": "1.19.0",
3
+ "version": "1.23.0",
4
4
  "description": "OpenAPI client for @teemill/product-catalog",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {