@thefittingroom/sdk 1.1.5 → 1.1.7

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.
@@ -65,3 +65,17 @@ export interface FirestoreUser {
65
65
  export interface FirestoreStyleCategory {
66
66
  style_garment_category_id: number;
67
67
  }
68
+ export interface FirestoreStyleGarmentCategory {
69
+ garment_category: string;
70
+ garment_category_label: string;
71
+ garment_measurement_locations: {
72
+ female: string[];
73
+ male: string[];
74
+ };
75
+ style_category: string;
76
+ style_category_label: string;
77
+ }
78
+ export interface FirestoreGarmentMeasurementLocation {
79
+ label: string;
80
+ name: string;
81
+ }
@@ -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 {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thefittingroom/sdk",
3
- "version": "1.1.5",
3
+ "version": "1.1.7",
4
4
  "description": "the fitting room SDK",
5
5
  "type": "module",
6
6
  "main": "./dist/esm/index.js",