@secondcloset/types 2.7.17-bolt-parcel.0 → 2.7.17-bolt-parcel.2
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
|
@@ -61,6 +61,7 @@ export interface Appointment {
|
|
|
61
61
|
user_lastname: string;
|
|
62
62
|
verification_images?: BaseImage[];
|
|
63
63
|
delivery_type?: DeliveryType;
|
|
64
|
+
shipping_labels?: LastMileShippingLabel[];
|
|
64
65
|
}
|
|
65
66
|
|
|
66
67
|
export interface Location {
|
|
@@ -81,3 +82,11 @@ export interface Location {
|
|
|
81
82
|
service_area: ServiceArea | null;
|
|
82
83
|
updated_at: string;
|
|
83
84
|
}
|
|
85
|
+
|
|
86
|
+
interface LastMileShippingLabel {
|
|
87
|
+
id: string;
|
|
88
|
+
label_id?: string;
|
|
89
|
+
tracking_number?: string;
|
|
90
|
+
tracking_url?: string;
|
|
91
|
+
label_download?: string;
|
|
92
|
+
}
|
|
@@ -76,6 +76,7 @@ export interface SecondClosetShippingMethod {
|
|
|
76
76
|
field_ops_notes?: BaseNote[];
|
|
77
77
|
verification_images?: BaseImage[];
|
|
78
78
|
delivery_type?: DeliveryType;
|
|
79
|
+
shipping_labels?: LastMileShippingLabel[];
|
|
79
80
|
source?: {
|
|
80
81
|
id: string;
|
|
81
82
|
type: string;
|
|
@@ -128,6 +129,14 @@ export interface ExternalCarrierShippingLabel {
|
|
|
128
129
|
voided_at: string | null;
|
|
129
130
|
}
|
|
130
131
|
|
|
132
|
+
export interface LastMileShippingLabel {
|
|
133
|
+
id: string;
|
|
134
|
+
label_id?: string;
|
|
135
|
+
tracking_number?: string;
|
|
136
|
+
tracking_url?: string;
|
|
137
|
+
label_download?: string;
|
|
138
|
+
}
|
|
139
|
+
|
|
131
140
|
export interface ExternalCarrierShippingMethod {
|
|
132
141
|
id: string;
|
|
133
142
|
status: ExternalCarrierShipmentStatus;
|