@thefittingroom/sdk 1.0.0 → 1.0.1

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.
@@ -259,4 +259,22 @@ type Taxonomy = {
259
259
  };
260
260
  };
261
261
  export declare const Taxonomy: Taxonomy;
262
+ export declare enum Fit {
263
+ TOO_TIGHT = "too_tight",
264
+ TIGHT = "tight",
265
+ SLIGHTLY_TIGHT = "slightly_tight",
266
+ PERFECT_FIT = "perfect_fit",
267
+ SLIGHTLY_LOOSE = "slightly_loose",
268
+ LOOSE = "loose",
269
+ OVERSIZED = "oversized"
270
+ }
271
+ export declare const FitNames: {
272
+ too_tight: string;
273
+ tight: string;
274
+ slightly_tight: string;
275
+ perfect_fit: string;
276
+ slightly_loose: string;
277
+ loose: string;
278
+ oversized: string;
279
+ };
262
280
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thefittingroom/sdk",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "the fitting room SDK",
5
5
  "type": "module",
6
6
  "main": "./dist/esm/index.js",