@nicefer/types 1.0.105 → 1.0.107

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.
@@ -78,6 +78,7 @@ export interface ConfirmOrderPayload {
78
78
  */
79
79
  export interface OrderReady {
80
80
  warehouseId: string;
81
+ warehouseCountryId: Country['id'];
81
82
  products: ProductWithVariantInBag[];
82
83
  paymentMethod?: OrderInDB['paymentMethod'];
83
84
  shippingMethod?: DeliveryMethod;
@@ -13,9 +13,8 @@ export interface ProductOptionValue {
13
13
  }
14
14
  type clothesOptions = 'talla' | 'color';
15
15
  type giftsOptions = 'color' | 'tipo de flor';
16
- type electricOptions = 'estilo';
17
16
  export interface ProductOptionToSelect {
18
- option: clothesOptions | giftsOptions | electricOptions;
17
+ option: clothesOptions | giftsOptions;
19
18
  valuesAllowed: ProductOptionValue[];
20
19
  }
21
20
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nicefer/types",
3
- "version": "1.0.105",
3
+ "version": "1.0.107",
4
4
  "description": "Tipos compartidos para Nicefer",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",