ingeniuscliq-core 0.3.34 → 0.3.35

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.
@@ -33,16 +33,26 @@ export interface CoreShippingCalculationForm {
33
33
  disabled: boolean;
34
34
  }
35
35
  export interface CoreShippingAddress extends BaseType {
36
- label: string;
37
36
  address: string;
37
+ }
38
+ export interface CoreShippingAddressLocalPickup extends CoreShippingAddress {
39
+ }
40
+ export interface CoreShippingAddressHomeDelivery extends CoreShippingAddress {
41
+ label: string;
42
+ is_default: boolean;
43
+ }
44
+ export interface CoreShippingAddressProvinceMunicipality extends CoreShippingAddressHomeDelivery {
38
45
  province: string;
39
46
  municipality: string;
40
- is_default: boolean;
41
47
  }
42
48
  export interface CoreShippingAddressForm extends BaseType {
43
- label: string;
44
49
  address: string;
50
+ }
51
+ export interface CoreShippingAddressHomeDeliveryForm extends CoreShippingAddressForm {
52
+ label: string;
53
+ is_default: boolean;
54
+ }
55
+ export interface CoreShippingAddressProvinceMunicipalityForm extends CoreShippingAddressHomeDeliveryForm {
45
56
  province: string;
46
57
  municipality: string;
47
- is_default: boolean;
48
58
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ingeniuscliq-core",
3
- "version": "0.3.34",
3
+ "version": "0.3.35",
4
4
  "description": "IngeniusCliq Core UI y lógica compartida",
5
5
  "license": "MIT",
6
6
  "type": "module",