@secondcloset/types 2.7.37-beta-new-item-profiling-4 → 2.7.39

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@secondcloset/types",
3
- "version": "2.7.37-beta-new-item-profiling-4",
3
+ "version": "2.7.39",
4
4
  "description": "secondcloset type declaration and definitions",
5
5
  "main": "src/index.ts",
6
6
  "scripts": {
@@ -65,6 +65,7 @@ export interface Appointment {
65
65
  verification_images?: BaseImage[];
66
66
  delivery_type?: DeliveryType;
67
67
  shipping_labels?: LastMileShippingLabel[];
68
+ signature_required?: boolean;
68
69
  }
69
70
 
70
71
  export interface Location {
@@ -77,6 +77,7 @@ export interface SecondClosetShippingMethod {
77
77
  verification_images?: BaseImage[];
78
78
  delivery_type?: DeliveryType;
79
79
  shipping_labels?: LastMileShippingLabel[];
80
+ signature_required?: boolean;
80
81
  source?: {
81
82
  id: string;
82
83
  type: string;
@@ -57,6 +57,7 @@ export interface Appointment {
57
57
  items: AppointmentItem[];
58
58
  verification_images?: BaseImage[];
59
59
  delivery_type?: DeliveryType;
60
+ signature_required?: boolean;
60
61
  }
61
62
 
62
63
  export type AppointmentSlot =
@@ -1,30 +1,25 @@
1
1
  import { Product } from "./product";
2
2
 
3
- export enum ProductQuantumTypeEnum {
3
+ enum ProductQuantumTypeEnum {
4
4
  EACH = "EACH",
5
5
  CASE = "CASE",
6
6
  INNER_PACK = "INNER_PACK",
7
7
  MASTER_PACK = "MASTER_PACK",
8
8
  }
9
9
 
10
- export enum CaseTypeEnum {
11
- INNER_PACK = "INNER_PACK",
12
- MASTER_PACK = "MASTER_PACK",
13
- }
14
-
15
- export enum ContainsTypeEnum {
10
+ enum ContainsTypeEnum {
16
11
  EACH = "EACH",
17
12
  INNER_PACK = "INNER_PACK",
18
13
  }
19
14
 
20
- export enum WeightUnitEnum {
15
+ enum WeightUnitEnum {
21
16
  LB = "LB",
22
17
  OZ = "OZ",
23
18
  G = "G",
24
19
  KG = "KG",
25
20
  }
26
21
 
27
- export enum DimensionsUnitEnum {
22
+ enum DimensionsUnitEnum {
28
23
  IN = "IN",
29
24
  FT = "FT",
30
25
  CM = "CM",