@thefittingroom/sdk 1.1.6 → 1.1.8
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/dist/esm/api/responses.d.ts +2 -2
- package/dist/esm/api/shop.d.ts +4 -1
- package/dist/esm/index.js +179 -152
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/index.min.js +80 -80
- package/dist/esm/index.min.js.map +1 -1
- package/dist/esm/types/index.d.ts +15 -0
- package/dist/esm/types/measurement.d.ts +13 -1
- package/package.json +1 -1
|
@@ -63,5 +63,20 @@ export interface FirestoreUser {
|
|
|
63
63
|
vto: FirestoreVTO;
|
|
64
64
|
}
|
|
65
65
|
export interface FirestoreStyleCategory {
|
|
66
|
+
is_published: boolean;
|
|
66
67
|
style_garment_category_id: number;
|
|
67
68
|
}
|
|
69
|
+
export interface FirestoreStyleGarmentCategory {
|
|
70
|
+
garment_category: string;
|
|
71
|
+
garment_category_label: string;
|
|
72
|
+
garment_measurement_locations: {
|
|
73
|
+
female: string[];
|
|
74
|
+
male: string[];
|
|
75
|
+
};
|
|
76
|
+
style_category: string;
|
|
77
|
+
style_category_label: string;
|
|
78
|
+
}
|
|
79
|
+
export interface FirestoreGarmentMeasurementLocation {
|
|
80
|
+
label: string;
|
|
81
|
+
name: string;
|
|
82
|
+
}
|
|
@@ -266,7 +266,13 @@ export declare enum Fit {
|
|
|
266
266
|
PERFECT_FIT = "perfect_fit",
|
|
267
267
|
SLIGHTLY_LOOSE = "slightly_loose",
|
|
268
268
|
LOOSE = "loose",
|
|
269
|
-
OVERSIZED = "oversized"
|
|
269
|
+
OVERSIZED = "oversized",
|
|
270
|
+
TOO_SHORT = "too_short",
|
|
271
|
+
SHORT = "short",
|
|
272
|
+
SLIGHTLY_SHORT = "slightly_short",
|
|
273
|
+
SLIGHTLY_LONG = "slightly_long",
|
|
274
|
+
LONG = "long",
|
|
275
|
+
TOO_LONG = "too_long"
|
|
270
276
|
}
|
|
271
277
|
export declare const FitNames: {
|
|
272
278
|
too_tight: string;
|
|
@@ -276,5 +282,11 @@ export declare const FitNames: {
|
|
|
276
282
|
slightly_loose: string;
|
|
277
283
|
loose: string;
|
|
278
284
|
oversized: string;
|
|
285
|
+
too_short: string;
|
|
286
|
+
short: string;
|
|
287
|
+
slightly_short: string;
|
|
288
|
+
slightly_long: string;
|
|
289
|
+
long: string;
|
|
290
|
+
too_long: string;
|
|
279
291
|
};
|
|
280
292
|
export {};
|