@thefittingroom/sdk 2.0.5 → 2.0.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.
- package/.rollup.cache/home/runner/work/shop-sdk/shop-sdk/dist/esm/api/common.d.ts +1 -0
- package/.rollup.cache/home/runner/work/shop-sdk/shop-sdk/dist/esm/api/common.js +3 -0
- package/.rollup.cache/home/runner/work/shop-sdk/shop-sdk/dist/esm/api/common.js.map +1 -0
- package/.rollup.cache/home/runner/work/shop-sdk/shop-sdk/dist/esm/api/enums.d.ts +219 -0
- package/.rollup.cache/home/runner/work/shop-sdk/shop-sdk/dist/esm/api/enums.js +211 -0
- package/.rollup.cache/home/runner/work/shop-sdk/shop-sdk/dist/esm/api/enums.js.map +1 -0
- package/.rollup.cache/home/runner/work/shop-sdk/shop-sdk/dist/esm/api/requests.d.ts +193 -71
- package/.rollup.cache/home/runner/work/shop-sdk/shop-sdk/dist/esm/api/responses.d.ts +346 -54
- package/.rollup.cache/home/runner/work/shop-sdk/shop-sdk/dist/esm/api/responses.js +1 -0
- package/.rollup.cache/home/runner/work/shop-sdk/shop-sdk/dist/esm/api/responses.js.map +1 -1
- package/.rollup.cache/home/runner/work/shop-sdk/shop-sdk/dist/esm/api/shop.d.ts +2 -2
- package/.rollup.cache/home/runner/work/shop-sdk/shop-sdk/dist/esm/api/shop.js.map +1 -1
- package/.rollup.cache/home/runner/work/shop-sdk/shop-sdk/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/esm/api/common.d.ts +1 -0
- package/dist/esm/api/enums.d.ts +219 -0
- package/dist/esm/api/requests.d.ts +193 -71
- package/dist/esm/api/responses.d.ts +346 -54
- package/dist/esm/api/shop.d.ts +2 -2
- package/dist/esm/index.js +21 -19
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/index.min.js +2 -2
- package/dist/esm/index.min.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/eslint.config.js +39 -0
- package/go.mod +7 -0
- package/package.json +12 -3
- package/tygo.yaml +25 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type ScannerString = string;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"common.js","sourceRoot":"","sources":["../../../src/api/common.ts"],"names":[],"mappings":"AAAA,uCAAuC"}
|
|
@@ -0,0 +1,219 @@
|
|
|
1
|
+
export type AvatarStatus = string;
|
|
2
|
+
export declare const AvatarStatusNotCreated: AvatarStatus;
|
|
3
|
+
export declare const AvatarStatusPending: AvatarStatus;
|
|
4
|
+
export declare const AvatarStatusCreated: AvatarStatus;
|
|
5
|
+
export declare const Byte: number;
|
|
6
|
+
export declare const Kilobyte: number;
|
|
7
|
+
export declare const Megabyte: number;
|
|
8
|
+
export declare const Gigabyte: number;
|
|
9
|
+
export declare const Terabyte: number;
|
|
10
|
+
export declare const Petabyte: number;
|
|
11
|
+
export type Season = string;
|
|
12
|
+
export declare const SeasonSummer: Season;
|
|
13
|
+
export declare const SeasonFall: Season;
|
|
14
|
+
export declare const SeasonWinter: Season;
|
|
15
|
+
export declare const SeasonSpringSummer: Season;
|
|
16
|
+
export declare const SeasonFallWinter: Season;
|
|
17
|
+
export declare const SeasonResort: Season;
|
|
18
|
+
export declare const SeasonSpring: Season;
|
|
19
|
+
export declare const GLBExtension: string;
|
|
20
|
+
export type Fit = string;
|
|
21
|
+
export type HorizontalFit = Fit;
|
|
22
|
+
export declare const HorizontalFitTooTight: HorizontalFit;
|
|
23
|
+
export declare const HorizontalFitTight: HorizontalFit;
|
|
24
|
+
export declare const HorizontalFitSlightlyTight: HorizontalFit;
|
|
25
|
+
export declare const HorizontalFitPerfectFit: HorizontalFit;
|
|
26
|
+
export declare const HorizontalFitSlightlyLoose: HorizontalFit;
|
|
27
|
+
export declare const HorizontalFitLoose: HorizontalFit;
|
|
28
|
+
export declare const HorizontalFitOversized: HorizontalFit;
|
|
29
|
+
export type VerticalFit = Fit;
|
|
30
|
+
export declare const VerticalFitTooShort: VerticalFit;
|
|
31
|
+
export declare const VerticalFitShort: VerticalFit;
|
|
32
|
+
export declare const VerticalFitSlightlyShort: VerticalFit;
|
|
33
|
+
export declare const VerticalFitPerfectFit: VerticalFit;
|
|
34
|
+
export declare const VerticalFitSlightlyLong: VerticalFit;
|
|
35
|
+
export declare const VerticalFitLong: VerticalFit;
|
|
36
|
+
export declare const VerticalFitTooLong: VerticalFit;
|
|
37
|
+
export interface FitLabel {
|
|
38
|
+
Fit: Fit;
|
|
39
|
+
Label: string;
|
|
40
|
+
}
|
|
41
|
+
export type FitClassification = string;
|
|
42
|
+
export declare const FitClassificationFormFitting: FitClassification;
|
|
43
|
+
export declare const FitClassificationSlimFit: FitClassification;
|
|
44
|
+
export declare const FitClassificationRegularFit: FitClassification;
|
|
45
|
+
export declare const FitClassificationRelaxedFit: FitClassification;
|
|
46
|
+
export declare const FitClassificationOversizedFit: FitClassification;
|
|
47
|
+
export type StyleCategory = string;
|
|
48
|
+
export declare const StyleCategoryBodysuits: StyleCategory;
|
|
49
|
+
export declare const StyleCategoryCoatsJacketsParkas: StyleCategory;
|
|
50
|
+
export declare const StyleCategoryDressShirts: StyleCategory;
|
|
51
|
+
export declare const StyleCategoryDresses: StyleCategory;
|
|
52
|
+
export declare const StyleCategoryPants: StyleCategory;
|
|
53
|
+
export declare const StyleCategoryLongSleeveTopsAndSweaters: StyleCategory;
|
|
54
|
+
export declare const StyleCategoryRompers: StyleCategory;
|
|
55
|
+
export declare const StyleCategoryShortSleeveTops: StyleCategory;
|
|
56
|
+
export declare const StyleCategoryShortsAndCapris: StyleCategory;
|
|
57
|
+
export declare const StyleCategorySkirts: StyleCategory;
|
|
58
|
+
export declare const StyleCategorySleevelessTops: StyleCategory;
|
|
59
|
+
export declare const StyleCategorySuitJacketsAndBlazers: StyleCategory;
|
|
60
|
+
export type GarmentCategory = string;
|
|
61
|
+
export declare const GarmentCategoryALine: GarmentCategory;
|
|
62
|
+
export declare const GarmentCategoryALineFlared: GarmentCategory;
|
|
63
|
+
export declare const GarmentCategoryBlazers: GarmentCategory;
|
|
64
|
+
export declare const GarmentCategoryBodycon: GarmentCategory;
|
|
65
|
+
export declare const GarmentCategoryBodysuits: GarmentCategory;
|
|
66
|
+
export declare const GarmentCategoryBoilersuits: GarmentCategory;
|
|
67
|
+
export declare const GarmentCategoryJumpsuits: GarmentCategory;
|
|
68
|
+
export declare const GarmentCategoryOveralls: GarmentCategory;
|
|
69
|
+
export declare const GarmentCategoryUnitards: GarmentCategory;
|
|
70
|
+
export declare const GarmentCategoryCorsets: GarmentCategory;
|
|
71
|
+
export declare const GarmentCategoryBustiers: GarmentCategory;
|
|
72
|
+
export declare const GarmentCategoryCropTops: GarmentCategory;
|
|
73
|
+
export declare const GarmentCategoryFitAndFlare: GarmentCategory;
|
|
74
|
+
export declare const GarmentCategoryFlared: GarmentCategory;
|
|
75
|
+
export declare const GarmentCategoryHoodies: GarmentCategory;
|
|
76
|
+
export declare const GarmentCategoryJoggers: GarmentCategory;
|
|
77
|
+
export declare const GarmentCategoryKnit: GarmentCategory;
|
|
78
|
+
export declare const GarmentCategoryLeggings: GarmentCategory;
|
|
79
|
+
export declare const GarmentCategoryPencil: GarmentCategory;
|
|
80
|
+
export declare const GarmentCategoryPleated: GarmentCategory;
|
|
81
|
+
export declare const GarmentCategoryPolos: GarmentCategory;
|
|
82
|
+
export declare const GarmentCategoryCoats: GarmentCategory;
|
|
83
|
+
export declare const GarmentCategoryJackets: GarmentCategory;
|
|
84
|
+
export declare const GarmentCategoryParkas: GarmentCategory;
|
|
85
|
+
export declare const GarmentCategoryPufferJackets: GarmentCategory;
|
|
86
|
+
export declare const GarmentCategoryRelaxed: GarmentCategory;
|
|
87
|
+
export declare const GarmentCategoryRompers: GarmentCategory;
|
|
88
|
+
export declare const GarmentCategoryShackets: GarmentCategory;
|
|
89
|
+
export declare const GarmentCategoryShirts: GarmentCategory;
|
|
90
|
+
export declare const GarmentCategoryBlouses: GarmentCategory;
|
|
91
|
+
export declare const GarmentCategorySkater: GarmentCategory;
|
|
92
|
+
export declare const GarmentCategorySkinny: GarmentCategory;
|
|
93
|
+
export declare const GarmentCategorySlim: GarmentCategory;
|
|
94
|
+
export declare const GarmentCategorySlip: GarmentCategory;
|
|
95
|
+
export declare const GarmentCategoryStraight: GarmentCategory;
|
|
96
|
+
export declare const GarmentCategorySuitJackets: GarmentCategory;
|
|
97
|
+
export declare const GarmentCategorySweatshirts: GarmentCategory;
|
|
98
|
+
export declare const GarmentCategorySweaters: GarmentCategory;
|
|
99
|
+
export declare const GarmentCategoryTShirts: GarmentCategory;
|
|
100
|
+
export declare const GarmentCategoryTankTops: GarmentCategory;
|
|
101
|
+
export declare const GarmentCategoryCamisoles: GarmentCategory;
|
|
102
|
+
export declare const GarmentCategoryTapered: GarmentCategory;
|
|
103
|
+
export declare const GarmentCategoryTrousers: GarmentCategory;
|
|
104
|
+
export declare const GarmentCategoryTurtlenecks: GarmentCategory;
|
|
105
|
+
export declare const GarmentCategoryHoodiesAndZipups: GarmentCategory;
|
|
106
|
+
export declare const GarmentCategoryWrap: GarmentCategory;
|
|
107
|
+
export declare const GarmentCategoryShorts: GarmentCategory;
|
|
108
|
+
export declare const GarmentCategoryCapris: GarmentCategory;
|
|
109
|
+
export declare const GarmentCategoryJeans: GarmentCategory;
|
|
110
|
+
export declare const GarmentCategorySlacks: GarmentCategory;
|
|
111
|
+
export type Gender = string;
|
|
112
|
+
export declare const GenderNeutral: Gender;
|
|
113
|
+
export declare const GenderFemale: Gender;
|
|
114
|
+
export declare const GenderMale: Gender;
|
|
115
|
+
export type MeasurementLocation = any;
|
|
116
|
+
export declare const MeasurementNeckBase: MeasurementLocation;
|
|
117
|
+
export declare const MeasurementAcrossShoulder: MeasurementLocation;
|
|
118
|
+
export declare const MeasurementCenterBackNeckToWrist: MeasurementLocation;
|
|
119
|
+
export declare const MeasurementSleeveLengthFromShoulderPoint: MeasurementLocation;
|
|
120
|
+
export declare const MeasurementBust: MeasurementLocation;
|
|
121
|
+
export declare const MeasurementWaist: MeasurementLocation;
|
|
122
|
+
export declare const MeasurementLowWaist: MeasurementLocation;
|
|
123
|
+
export declare const MeasurementLowHip: MeasurementLocation;
|
|
124
|
+
export declare const MeasurementHighHip: MeasurementLocation;
|
|
125
|
+
export declare const MeasurementThigh: MeasurementLocation;
|
|
126
|
+
export declare const MeasurementInseam: MeasurementLocation;
|
|
127
|
+
export declare const MeasurementHspToLowHip: MeasurementLocation;
|
|
128
|
+
export declare const MeasurementHspToCrotch: MeasurementLocation;
|
|
129
|
+
export declare const MeasurementLowHipBottoms: MeasurementLocation;
|
|
130
|
+
export declare const MeasurementHighHipBottoms: MeasurementLocation;
|
|
131
|
+
export type MeasurementUnit = any;
|
|
132
|
+
export declare const Inches: MeasurementUnit;
|
|
133
|
+
export declare const Centimeters: MeasurementUnit;
|
|
134
|
+
export type Role = string;
|
|
135
|
+
export declare const RoleUser: Role;
|
|
136
|
+
export declare const RoleBrandAdmin: Role;
|
|
137
|
+
export declare const RoleAdmin: Role;
|
|
138
|
+
export type SaleType = string;
|
|
139
|
+
export declare const SaleTypeMenswear: SaleType;
|
|
140
|
+
export declare const SaleTypeWomenswear: SaleType;
|
|
141
|
+
export declare const FlaredAndRelaxedEaseStart: number;
|
|
142
|
+
export declare const ReferenceEaseEnd: number;
|
|
143
|
+
export declare const OversizedEaseStart: number;
|
|
144
|
+
export declare const SizeDeformationHalfingLimit: number;
|
|
145
|
+
export type SizeValueID = number;
|
|
146
|
+
export declare const AlphaXXXXS: SizeValueID;
|
|
147
|
+
export declare const AlphaXXXS: SizeValueID;
|
|
148
|
+
export declare const AlphaXXS: SizeValueID;
|
|
149
|
+
export declare const AlphaXS: SizeValueID;
|
|
150
|
+
export declare const AlphaS: SizeValueID;
|
|
151
|
+
export declare const AlphaM: SizeValueID;
|
|
152
|
+
export declare const AlphaL: SizeValueID;
|
|
153
|
+
export declare const AlphaXL: SizeValueID;
|
|
154
|
+
export declare const AlphaXXL: SizeValueID;
|
|
155
|
+
export declare const Alpha3XL: SizeValueID;
|
|
156
|
+
export declare const Alpha4XL: SizeValueID;
|
|
157
|
+
export declare const Alpha5XL: SizeValueID;
|
|
158
|
+
export declare const US00: SizeValueID;
|
|
159
|
+
export declare const US0: SizeValueID;
|
|
160
|
+
export declare const US2: SizeValueID;
|
|
161
|
+
export declare const US4: SizeValueID;
|
|
162
|
+
export declare const US6: SizeValueID;
|
|
163
|
+
export declare const US8: SizeValueID;
|
|
164
|
+
export declare const US10: SizeValueID;
|
|
165
|
+
export declare const US12: SizeValueID;
|
|
166
|
+
export declare const US14: SizeValueID;
|
|
167
|
+
export declare const US16: SizeValueID;
|
|
168
|
+
export declare const US18: SizeValueID;
|
|
169
|
+
export declare const US20: SizeValueID;
|
|
170
|
+
export declare const US22: SizeValueID;
|
|
171
|
+
export declare const US24: SizeValueID;
|
|
172
|
+
export declare const US26: SizeValueID;
|
|
173
|
+
export declare const UK2: SizeValueID;
|
|
174
|
+
export declare const UK4: SizeValueID;
|
|
175
|
+
export declare const UK6: SizeValueID;
|
|
176
|
+
export declare const UK8: SizeValueID;
|
|
177
|
+
export declare const UK10: SizeValueID;
|
|
178
|
+
export declare const UK12: SizeValueID;
|
|
179
|
+
export declare const UK14: SizeValueID;
|
|
180
|
+
export declare const UK16: SizeValueID;
|
|
181
|
+
export declare const UK18: SizeValueID;
|
|
182
|
+
export declare const UK20: SizeValueID;
|
|
183
|
+
export declare const UK22: SizeValueID;
|
|
184
|
+
export declare const UK24: SizeValueID;
|
|
185
|
+
export declare const UK26: SizeValueID;
|
|
186
|
+
export declare const UK28: SizeValueID;
|
|
187
|
+
export declare const UK30: SizeValueID;
|
|
188
|
+
export declare const EU30: SizeValueID;
|
|
189
|
+
export declare const EU32: SizeValueID;
|
|
190
|
+
export declare const EU34: SizeValueID;
|
|
191
|
+
export declare const EU36: SizeValueID;
|
|
192
|
+
export declare const EU38: SizeValueID;
|
|
193
|
+
export declare const EU40: SizeValueID;
|
|
194
|
+
export declare const EU42: SizeValueID;
|
|
195
|
+
export declare const EU44: SizeValueID;
|
|
196
|
+
export declare const EU46: SizeValueID;
|
|
197
|
+
export declare const EU48: SizeValueID;
|
|
198
|
+
export declare const EU50: SizeValueID;
|
|
199
|
+
export declare const EU52: SizeValueID;
|
|
200
|
+
export declare const EU54: SizeValueID;
|
|
201
|
+
export declare const EU56: SizeValueID;
|
|
202
|
+
export declare const EU58: SizeValueID;
|
|
203
|
+
export declare const AUS2: SizeValueID;
|
|
204
|
+
export declare const AUS4: SizeValueID;
|
|
205
|
+
export declare const AUS6: SizeValueID;
|
|
206
|
+
export declare const AUS8: SizeValueID;
|
|
207
|
+
export declare const AUS10: SizeValueID;
|
|
208
|
+
export declare const AUS12: SizeValueID;
|
|
209
|
+
export declare const AUS14: SizeValueID;
|
|
210
|
+
export declare const AUS16: SizeValueID;
|
|
211
|
+
export declare const AUS18: SizeValueID;
|
|
212
|
+
export declare const AUS20: SizeValueID;
|
|
213
|
+
export declare const AUS22: SizeValueID;
|
|
214
|
+
export declare const AUS24: SizeValueID;
|
|
215
|
+
export declare const AUS26: SizeValueID;
|
|
216
|
+
export declare const AUS28: SizeValueID;
|
|
217
|
+
export declare const AUS30: SizeValueID;
|
|
218
|
+
export declare const ColorwaySizeAssetSizeLimit: number;
|
|
219
|
+
export declare const ColorwayPropertiesSizeLimit: number;
|
|
@@ -0,0 +1,211 @@
|
|
|
1
|
+
// Code generated by tygo. DO NOT EDIT.
|
|
2
|
+
export const AvatarStatusNotCreated = "NOT_CREATED";
|
|
3
|
+
export const AvatarStatusPending = "PENDING";
|
|
4
|
+
export const AvatarStatusCreated = "CREATED";
|
|
5
|
+
//////////
|
|
6
|
+
// source: bytes.go
|
|
7
|
+
export const Byte /* int64 */ = 1 << (10 * 0);
|
|
8
|
+
export const Kilobyte /* int64 */ = 1 << (10 * 1);
|
|
9
|
+
export const Megabyte /* int64 */ = 1 << (10 * 2);
|
|
10
|
+
export const Gigabyte /* int64 */ = 1 << (10 * 3);
|
|
11
|
+
export const Terabyte /* int64 */ = 1 << (10 * 4);
|
|
12
|
+
export const Petabyte /* int64 */ = 1 << (10 * 5);
|
|
13
|
+
export const SeasonSummer = "summer";
|
|
14
|
+
export const SeasonFall = "fall";
|
|
15
|
+
export const SeasonWinter = "winter";
|
|
16
|
+
export const SeasonSpringSummer = "spring_summer";
|
|
17
|
+
export const SeasonFallWinter = "fall_winter";
|
|
18
|
+
export const SeasonResort = "resort";
|
|
19
|
+
export const SeasonSpring = "spring";
|
|
20
|
+
//////////
|
|
21
|
+
// source: file_extensions.go
|
|
22
|
+
export const GLBExtension = ".glb";
|
|
23
|
+
export const HorizontalFitTooTight = "too_tight";
|
|
24
|
+
export const HorizontalFitTight = "tight";
|
|
25
|
+
export const HorizontalFitSlightlyTight = "slightly_tight";
|
|
26
|
+
export const HorizontalFitPerfectFit = "perfect_fit";
|
|
27
|
+
export const HorizontalFitSlightlyLoose = "slightly_loose";
|
|
28
|
+
export const HorizontalFitLoose = "loose";
|
|
29
|
+
export const HorizontalFitOversized = "oversized";
|
|
30
|
+
export const VerticalFitTooShort = "too_short";
|
|
31
|
+
export const VerticalFitShort = "short";
|
|
32
|
+
export const VerticalFitSlightlyShort = "slightly_short";
|
|
33
|
+
export const VerticalFitPerfectFit = "perfect_fit";
|
|
34
|
+
export const VerticalFitSlightlyLong = "slightly_long";
|
|
35
|
+
export const VerticalFitLong = "long";
|
|
36
|
+
export const VerticalFitTooLong = "too_long";
|
|
37
|
+
export const FitClassificationFormFitting = "form_fitting";
|
|
38
|
+
export const FitClassificationSlimFit = "slim_fit";
|
|
39
|
+
export const FitClassificationRegularFit = "regular_fit";
|
|
40
|
+
export const FitClassificationRelaxedFit = "relaxed_fit";
|
|
41
|
+
export const FitClassificationOversizedFit = "oversized_fit";
|
|
42
|
+
export const StyleCategoryBodysuits = "bodysuits";
|
|
43
|
+
export const StyleCategoryCoatsJacketsParkas = "coats_jackets_parkas";
|
|
44
|
+
export const StyleCategoryDressShirts = "dress_shirts";
|
|
45
|
+
export const StyleCategoryDresses = "dresses";
|
|
46
|
+
export const StyleCategoryPants = "pants";
|
|
47
|
+
export const StyleCategoryLongSleeveTopsAndSweaters = "long_sleeve_tops_and_sweaters";
|
|
48
|
+
export const StyleCategoryRompers = "rompers";
|
|
49
|
+
export const StyleCategoryShortSleeveTops = "short_sleeve_tops";
|
|
50
|
+
export const StyleCategoryShortsAndCapris = "shorts_and_capris";
|
|
51
|
+
export const StyleCategorySkirts = "skirts";
|
|
52
|
+
export const StyleCategorySleevelessTops = "sleeveless_tops";
|
|
53
|
+
export const StyleCategorySuitJacketsAndBlazers = "suit_jackets_and_blazers";
|
|
54
|
+
export const GarmentCategoryALine = "a_line";
|
|
55
|
+
export const GarmentCategoryALineFlared = "a_line_flared";
|
|
56
|
+
export const GarmentCategoryBlazers = "blazers";
|
|
57
|
+
export const GarmentCategoryBodycon = "bodycon";
|
|
58
|
+
export const GarmentCategoryBodysuits = "bodysuits";
|
|
59
|
+
export const GarmentCategoryBoilersuits = "boilersuits";
|
|
60
|
+
export const GarmentCategoryJumpsuits = "jumpsuits";
|
|
61
|
+
export const GarmentCategoryOveralls = "overalls";
|
|
62
|
+
export const GarmentCategoryUnitards = "unitards";
|
|
63
|
+
export const GarmentCategoryCorsets = "corsets";
|
|
64
|
+
export const GarmentCategoryBustiers = "bustiers";
|
|
65
|
+
export const GarmentCategoryCropTops = "crop_tops";
|
|
66
|
+
export const GarmentCategoryFitAndFlare = "fit_and_flare";
|
|
67
|
+
export const GarmentCategoryFlared = "flared";
|
|
68
|
+
export const GarmentCategoryHoodies = "hoodies";
|
|
69
|
+
export const GarmentCategoryJoggers = "joggers";
|
|
70
|
+
export const GarmentCategoryKnit = "knit";
|
|
71
|
+
export const GarmentCategoryLeggings = "leggings";
|
|
72
|
+
export const GarmentCategoryPencil = "pencil";
|
|
73
|
+
export const GarmentCategoryPleated = "pleated";
|
|
74
|
+
export const GarmentCategoryPolos = "polos";
|
|
75
|
+
export const GarmentCategoryCoats = "coats";
|
|
76
|
+
export const GarmentCategoryJackets = "jackets";
|
|
77
|
+
export const GarmentCategoryParkas = "parkas";
|
|
78
|
+
export const GarmentCategoryPufferJackets = "puffer_jackets";
|
|
79
|
+
export const GarmentCategoryRelaxed = "relaxed";
|
|
80
|
+
export const GarmentCategoryRompers = "relaxed";
|
|
81
|
+
export const GarmentCategoryShackets = "shackets";
|
|
82
|
+
export const GarmentCategoryShirts = "shirts";
|
|
83
|
+
export const GarmentCategoryBlouses = "blouses";
|
|
84
|
+
export const GarmentCategorySkater = "skater";
|
|
85
|
+
export const GarmentCategorySkinny = "skinny";
|
|
86
|
+
export const GarmentCategorySlim = "slim";
|
|
87
|
+
export const GarmentCategorySlip = "slip";
|
|
88
|
+
export const GarmentCategoryStraight = "straight";
|
|
89
|
+
export const GarmentCategorySuitJackets = "suit_jackets";
|
|
90
|
+
export const GarmentCategorySweatshirts = "sweatshirts";
|
|
91
|
+
export const GarmentCategorySweaters = "sweaters";
|
|
92
|
+
export const GarmentCategoryTShirts = "t_shirts";
|
|
93
|
+
export const GarmentCategoryTankTops = "tank_tops";
|
|
94
|
+
export const GarmentCategoryCamisoles = "camisoles";
|
|
95
|
+
export const GarmentCategoryTapered = "tapered";
|
|
96
|
+
export const GarmentCategoryTrousers = "trousers";
|
|
97
|
+
export const GarmentCategoryTurtlenecks = "turtlenecks";
|
|
98
|
+
export const GarmentCategoryHoodiesAndZipups = "hoodies_and_zipups";
|
|
99
|
+
export const GarmentCategoryWrap = "wrap";
|
|
100
|
+
export const GarmentCategoryShorts = "shorts";
|
|
101
|
+
export const GarmentCategoryCapris = "capris";
|
|
102
|
+
export const GarmentCategoryJeans = "jeans";
|
|
103
|
+
export const GarmentCategorySlacks = "slacks";
|
|
104
|
+
export const GenderNeutral = "neutral";
|
|
105
|
+
export const GenderFemale = "female";
|
|
106
|
+
export const GenderMale = "male";
|
|
107
|
+
export const MeasurementNeckBase = "neck_base";
|
|
108
|
+
export const MeasurementAcrossShoulder = "across_shoulder";
|
|
109
|
+
export const MeasurementCenterBackNeckToWrist = "cb_neck_to_wrist";
|
|
110
|
+
export const MeasurementSleeveLengthFromShoulderPoint = "sleeve_length_from_shoulder_point";
|
|
111
|
+
export const MeasurementBust = "bust";
|
|
112
|
+
export const MeasurementWaist = "waist";
|
|
113
|
+
export const MeasurementLowWaist = "low_waist";
|
|
114
|
+
export const MeasurementLowHip = "low_hip";
|
|
115
|
+
export const MeasurementHighHip = "high_hip";
|
|
116
|
+
export const MeasurementThigh = "thigh";
|
|
117
|
+
export const MeasurementInseam = "inseam";
|
|
118
|
+
export const MeasurementHspToLowHip = "hsp_to_low_hip";
|
|
119
|
+
export const MeasurementHspToCrotch = "hsp_to_crotch";
|
|
120
|
+
export const MeasurementLowHipBottoms = "low_hip_bottoms";
|
|
121
|
+
export const MeasurementHighHipBottoms = "high_hip_bottoms";
|
|
122
|
+
export const Inches = "in";
|
|
123
|
+
export const Centimeters = "cm";
|
|
124
|
+
export const RoleUser = "user";
|
|
125
|
+
export const RoleBrandAdmin = "brand_admin";
|
|
126
|
+
export const RoleAdmin = "admin";
|
|
127
|
+
export const SaleTypeMenswear = "menswear";
|
|
128
|
+
export const SaleTypeWomenswear = "womenswear";
|
|
129
|
+
//////////
|
|
130
|
+
// source: size_recommendation.go
|
|
131
|
+
export const FlaredAndRelaxedEaseStart /* float64 */ = 10.2;
|
|
132
|
+
export const ReferenceEaseEnd /* float64 */ = 20;
|
|
133
|
+
export const OversizedEaseStart /* float64 */ = 30;
|
|
134
|
+
export const SizeDeformationHalfingLimit /* float64 */ = 3.5;
|
|
135
|
+
export const AlphaXXXXS = 0 + 1;
|
|
136
|
+
export const AlphaXXXS = 1 + 1;
|
|
137
|
+
export const AlphaXXS = 2 + 1;
|
|
138
|
+
export const AlphaXS = 3 + 1;
|
|
139
|
+
export const AlphaS = 4 + 1;
|
|
140
|
+
export const AlphaM = 5 + 1;
|
|
141
|
+
export const AlphaL = 6 + 1;
|
|
142
|
+
export const AlphaXL = 7 + 1;
|
|
143
|
+
export const AlphaXXL = 8 + 1;
|
|
144
|
+
export const Alpha3XL = 9 + 1;
|
|
145
|
+
export const Alpha4XL = 10 + 1;
|
|
146
|
+
export const Alpha5XL = 11 + 1;
|
|
147
|
+
export const US00 = 12 + 1;
|
|
148
|
+
export const US0 = 13 + 1;
|
|
149
|
+
export const US2 = 14 + 1;
|
|
150
|
+
export const US4 = 15 + 1;
|
|
151
|
+
export const US6 = 16 + 1;
|
|
152
|
+
export const US8 = 17 + 1;
|
|
153
|
+
export const US10 = 18 + 1;
|
|
154
|
+
export const US12 = 19 + 1;
|
|
155
|
+
export const US14 = 20 + 1;
|
|
156
|
+
export const US16 = 21 + 1;
|
|
157
|
+
export const US18 = 22 + 1;
|
|
158
|
+
export const US20 = 23 + 1;
|
|
159
|
+
export const US22 = 24 + 1;
|
|
160
|
+
export const US24 = 25 + 1;
|
|
161
|
+
export const US26 = 26 + 1;
|
|
162
|
+
export const UK2 = 27 + 1;
|
|
163
|
+
export const UK4 = 28 + 1;
|
|
164
|
+
export const UK6 = 29 + 1;
|
|
165
|
+
export const UK8 = 30 + 1;
|
|
166
|
+
export const UK10 = 31 + 1;
|
|
167
|
+
export const UK12 = 32 + 1;
|
|
168
|
+
export const UK14 = 33 + 1;
|
|
169
|
+
export const UK16 = 34 + 1;
|
|
170
|
+
export const UK18 = 35 + 1;
|
|
171
|
+
export const UK20 = 36 + 1;
|
|
172
|
+
export const UK22 = 37 + 1;
|
|
173
|
+
export const UK24 = 38 + 1;
|
|
174
|
+
export const UK26 = 39 + 1;
|
|
175
|
+
export const UK28 = 40 + 1;
|
|
176
|
+
export const UK30 = 41 + 1;
|
|
177
|
+
export const EU30 = 42 + 1;
|
|
178
|
+
export const EU32 = 43 + 1;
|
|
179
|
+
export const EU34 = 44 + 1;
|
|
180
|
+
export const EU36 = 45 + 1;
|
|
181
|
+
export const EU38 = 46 + 1;
|
|
182
|
+
export const EU40 = 47 + 1;
|
|
183
|
+
export const EU42 = 48 + 1;
|
|
184
|
+
export const EU44 = 49 + 1;
|
|
185
|
+
export const EU46 = 50 + 1;
|
|
186
|
+
export const EU48 = 51 + 1;
|
|
187
|
+
export const EU50 = 52 + 1;
|
|
188
|
+
export const EU52 = 53 + 1;
|
|
189
|
+
export const EU54 = 54 + 1;
|
|
190
|
+
export const EU56 = 55 + 1;
|
|
191
|
+
export const EU58 = 56 + 1;
|
|
192
|
+
export const AUS2 = 57 + 1;
|
|
193
|
+
export const AUS4 = 58 + 1;
|
|
194
|
+
export const AUS6 = 59 + 1;
|
|
195
|
+
export const AUS8 = 60 + 1;
|
|
196
|
+
export const AUS10 = 61 + 1;
|
|
197
|
+
export const AUS12 = 62 + 1;
|
|
198
|
+
export const AUS14 = 63 + 1;
|
|
199
|
+
export const AUS16 = 64 + 1;
|
|
200
|
+
export const AUS18 = 65 + 1;
|
|
201
|
+
export const AUS20 = 66 + 1;
|
|
202
|
+
export const AUS22 = 67 + 1;
|
|
203
|
+
export const AUS24 = 68 + 1;
|
|
204
|
+
export const AUS26 = 69 + 1;
|
|
205
|
+
export const AUS28 = 70 + 1;
|
|
206
|
+
export const AUS30 = 71 + 1;
|
|
207
|
+
//////////
|
|
208
|
+
// source: upload_limits.go
|
|
209
|
+
export const ColorwaySizeAssetSizeLimit /* int64 */ = Megabyte * 40;
|
|
210
|
+
export const ColorwayPropertiesSizeLimit /* int64 */ = Megabyte * 100;
|
|
211
|
+
//# sourceMappingURL=enums.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"enums.js","sourceRoot":"","sources":["../../../src/api/enums.ts"],"names":[],"mappings":"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AG,CAAC,CAAC;AACxC,MAAM,CAAC,MAAM,IAAI,GAAgB,EAAE,GAAG,CAAC,CAAC;AACxC,MAAM,CAAC,MAAM,IAAI,GAAgB,EAAE,GAAG,CAAC,CAAC;AACxC,MAAM,CAAC,MAAM,GAAG,GAAgB,EAAE,GAAG,CAAC,CAAC;AACvC,MAAM,CAAC,MAAM,GAAG,GAAgB,EAAE,GAAG,CAAC,CAAC;AACvC,MAAM,CAAC,MAAM,GAAG,GAAgB,EAAE,GAAG,CAAC,CAAC;AACvC,MAAM,CAAC,MAAM,GAAG,GAAgB,EAAE,GAAG,CAAC,CAAC;AACvC,MAAM,CAAC,MAAM,IAAI,GAAgB,EAAE,GAAG,CAAC,CAAC;AACxC,MAAM,CAAC,MAAM,IAAI,GAAgB,EAAE,GAAG,CAAC,CAAC;AACxC,MAAM,CAAC,MAAM,IAAI,GAAgB,EAAE,GAAG,CAAC,CAAC;AACxC,MAAM,CAAC,MAAM,IAAI,GAAgB,EAAE,GAAG,CAAC,CAAC;AACxC,MAAM,CAAC,MAAM,IAAI,GAAgB,EAAE,GAAG,CAAC,CAAC;AACxC,MAAM,CAAC,MAAM,IAAI,GAAgB,EAAE,GAAG,CAAC,CAAC;AACxC,MAAM,CAAC,MAAM,IAAI,GAAgB,EAAE,GAAG,CAAC,CAAC;AACxC,MAAM,CAAC,MAAM,IAAI,GAAgB,EAAE,GAAG,CAAC,CAAC;AACxC,MAAM,CAAC,MAAM,IAAI,GAAgB,EAAE,GAAG,CAAC,CAAC;AACxC,MAAM,CAAC,MAAM,IAAI,GAAgB,EAAE,GAAG,CAAC,CAAC;AACxC,MAAM,CAAC,MAAM,IAAI,GAAgB,EAAE,GAAG,CAAC,CAAC;AACxC,MAAM,CAAC,MAAM,IAAI,GAAgB,EAAE,GAAG,CAAC,CAAC;AACxC,MAAM,CAAC,MAAM,IAAI,GAAgB,EAAE,GAAG,CAAC,CAAC;AACxC,MAAM,CAAC,MAAM,IAAI,GAAgB,EAAE,GAAG,CAAC,CAAC;AACxC,MAAM,CAAC,MAAM,IAAI,GAAgB,EAAE,GAAG,CAAC,CAAC;AACxC,MAAM,CAAC,MAAM,IAAI,GAAgB,EAAE,GAAG,CAAC,CAAC;AACxC,MAAM,CAAC,MAAM,IAAI,GAAgB,EAAE,GAAG,CAAC,CAAC;AACxC,MAAM,CAAC,MAAM,IAAI,GAAgB,EAAE,GAAG,CAAC,CAAC;AACxC,MAAM,CAAC,MAAM,IAAI,GAAgB,EAAE,GAAG,CAAC,CAAC;AACxC,MAAM,CAAC,MAAM,IAAI,GAAgB,EAAE,GAAG,CAAC,CAAC;AACxC,MAAM,CAAC,MAAM,IAAI,GAAgB,EAAE,GAAG,CAAC,CAAC;AACxC,MAAM,CAAC,MAAM,IAAI,GAAgB,EAAE,GAAG,CAAC,CAAC;AACxC,MAAM,CAAC,MAAM,IAAI,GAAgB,EAAE,GAAG,CAAC,CAAC;AACxC,MAAM,CAAC,MAAM,IAAI,GAAgB,EAAE,GAAG,CAAC,CAAC;AACxC,MAAM,CAAC,MAAM,IAAI,GAAgB,EAAE,GAAG,CAAC,CAAC;AACxC,MAAM,CAAC,MAAM,IAAI,GAAgB,EAAE,GAAG,CAAC,CAAC;AACxC,MAAM,CAAC,MAAM,IAAI,GAAgB,EAAE,GAAG,CAAC,CAAC;AACxC,MAAM,CAAC,MAAM,IAAI,GAAgB,EAAE,GAAG,CAAC,CAAC;AACxC,MAAM,CAAC,MAAM,IAAI,GAAgB,EAAE,GAAG,CAAC,CAAC;AACxC,MAAM,CAAC,MAAM,IAAI,GAAgB,EAAE,GAAG,CAAC,CAAC;AACxC,MAAM,CAAC,MAAM,KAAK,GAAgB,EAAE,GAAG,CAAC,CAAC;AACzC,MAAM,CAAC,MAAM,KAAK,GAAgB,EAAE,GAAG,CAAC,CAAC;AACzC,MAAM,CAAC,MAAM,KAAK,GAAgB,EAAE,GAAG,CAAC,CAAC;AACzC,MAAM,CAAC,MAAM,KAAK,GAAgB,EAAE,GAAG,CAAC,CAAC;AACzC,MAAM,CAAC,MAAM,KAAK,GAAgB,EAAE,GAAG,CAAC,CAAC;AACzC,MAAM,CAAC,MAAM,KAAK,GAAgB,EAAE,GAAG,CAAC,CAAC;AACzC,MAAM,CAAC,MAAM,KAAK,GAAgB,EAAE,GAAG,CAAC,CAAC;AACzC,MAAM,CAAC,MAAM,KAAK,GAAgB,EAAE,GAAG,CAAC,CAAC;AACzC,MAAM,CAAC,MAAM,KAAK,GAAgB,EAAE,GAAG,CAAC,CAAC;AACzC,MAAM,CAAC,MAAM,KAAK,GAAgB,EAAE,GAAG,CAAC,CAAC;AACzC,MAAM,CAAC,MAAM,KAAK,GAAgB,EAAE,GAAG,CAAC,CAAC;AAEzC,UAAU;AACV,2BAA2B;AAE3B,MAAM,CAAC,MAAM,0BAA0B,CAAS,WAAW,GAAG,QAAQ,GAAG,EAAE,CAAC;AAC5E,MAAM,CAAC,MAAM,2BAA2B,CAAS,WAAW,GAAG,QAAQ,GAAG,GAAG,CAAC"}
|