wenum 1.24.1 → 1.24.3

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/index.d.mts CHANGED
@@ -214,6 +214,47 @@ declare enum Handedness {
214
214
  Right = 2
215
215
  }
216
216
 
217
+ declare enum AttributeTypeUoiSportsTennis {
218
+ Level = 0,
219
+ Backhand = 1
220
+ }
221
+
222
+ declare const ATTRIBUTE_LABEL_UOI_SPORTS_TENNIS: Partial<Record<AttributeTypeUoiSportsTennis, any>>;
223
+
224
+ declare enum TennisBackhand {
225
+ None = 0,
226
+ Single = 1,
227
+ Double = 2,
228
+ Both = 3
229
+ }
230
+ declare enum TennisLevel {
231
+ None = 0,
232
+ TwoBelow = 1,
233
+ TwoFive = 2,
234
+ Three = 3,
235
+ ThreeFive = 4,
236
+ Four = 5,
237
+ FourFive = 6,
238
+ Five = 7,
239
+ FiveFive = 8,
240
+ SixAbove = 9
241
+ }
242
+
243
+ declare enum AttributeTypeUoiSportsBasketball {
244
+ Positions = 0
245
+ }
246
+
247
+ declare const ATTRIBUTE_LABEL_UOI_SPORTS_BASKETBALL: Partial<Record<AttributeTypeUoiSportsBasketball, any>>;
248
+
249
+ declare enum BasketballPosition {
250
+ None = 0,
251
+ SG = 1,
252
+ PG = 2,
253
+ C = 4,
254
+ SF = 8,
255
+ PF = 16
256
+ }
257
+
217
258
  declare enum CategoryName {
218
259
  Sports = "sports",
219
260
  Pets = "pets",
@@ -265,48 +306,7 @@ declare const InterestNameNone: InterestName;
265
306
 
266
307
  declare const ATTRIBUTE_LABEL_UOI_SPORTS: Partial<Record<SportsInterestName, any>>;
267
308
 
268
- declare enum AttributeTypeUoiSportsTennis {
269
- Level = 0,
270
- Bankhand = 1
271
- }
272
-
273
- declare const ATTRIBUTE_LABEL_UOI_SPORTS_TENNIS: Partial<Record<AttributeTypeUoiSportsTennis, any>>;
274
-
275
- declare enum TennisBackhand {
276
- None = 0,
277
- Single = 1,
278
- Double = 2,
279
- Both = 3
280
- }
281
- declare enum TennisLevel {
282
- None = 0,
283
- TwoBelow = 1,
284
- TwoFive = 2,
285
- Three = 3,
286
- ThreeFive = 4,
287
- Four = 5,
288
- FourFive = 6,
289
- Five = 7,
290
- FiveFive = 8,
291
- SixAbove = 9
292
- }
293
-
294
- declare enum AttributeTypeUoiSportsBasketball {
295
- Positions = 0
296
- }
297
-
298
- declare const ATTRIBUTE_LABEL_UOI_SPORTS_BASKETBALL: Partial<Record<AttributeTypeUoiSportsBasketball, any>>;
299
-
300
- declare enum BasketballPosition {
301
- None = 0,
302
- SG = 1,
303
- PG = 2,
304
- C = 4,
305
- SF = 8,
306
- PF = 16
307
- }
308
-
309
- type AttributeTypeUoiSports = typeof ATTRIBUTE_LABEL_UOI_SPORTS_TENNIS | typeof ATTRIBUTE_LABEL_UOI_SPORTS_BASKETBALL;
309
+ type AttributeTypeUoiSports = AttributeTypeUoiSportsTennis | AttributeTypeUoiSportsBasketball;
310
310
 
311
311
  declare const ATTRIBUTE_LABEL_UOI: Partial<Record<CategoryName, any>>;
312
312
 
@@ -325,7 +325,8 @@ declare enum AttributeTypeCollectionPets {
325
325
  Mother = 3,
326
326
  Gender = 4,
327
327
  Height = 5,
328
- Weight = 6
328
+ Weight = 6,
329
+ Children = 7
329
330
  }
330
331
 
331
332
  type AttributeTypeCollection = AttributeTypeCollectionPets;
package/dist/index.d.ts CHANGED
@@ -214,6 +214,47 @@ declare enum Handedness {
214
214
  Right = 2
215
215
  }
216
216
 
217
+ declare enum AttributeTypeUoiSportsTennis {
218
+ Level = 0,
219
+ Backhand = 1
220
+ }
221
+
222
+ declare const ATTRIBUTE_LABEL_UOI_SPORTS_TENNIS: Partial<Record<AttributeTypeUoiSportsTennis, any>>;
223
+
224
+ declare enum TennisBackhand {
225
+ None = 0,
226
+ Single = 1,
227
+ Double = 2,
228
+ Both = 3
229
+ }
230
+ declare enum TennisLevel {
231
+ None = 0,
232
+ TwoBelow = 1,
233
+ TwoFive = 2,
234
+ Three = 3,
235
+ ThreeFive = 4,
236
+ Four = 5,
237
+ FourFive = 6,
238
+ Five = 7,
239
+ FiveFive = 8,
240
+ SixAbove = 9
241
+ }
242
+
243
+ declare enum AttributeTypeUoiSportsBasketball {
244
+ Positions = 0
245
+ }
246
+
247
+ declare const ATTRIBUTE_LABEL_UOI_SPORTS_BASKETBALL: Partial<Record<AttributeTypeUoiSportsBasketball, any>>;
248
+
249
+ declare enum BasketballPosition {
250
+ None = 0,
251
+ SG = 1,
252
+ PG = 2,
253
+ C = 4,
254
+ SF = 8,
255
+ PF = 16
256
+ }
257
+
217
258
  declare enum CategoryName {
218
259
  Sports = "sports",
219
260
  Pets = "pets",
@@ -265,48 +306,7 @@ declare const InterestNameNone: InterestName;
265
306
 
266
307
  declare const ATTRIBUTE_LABEL_UOI_SPORTS: Partial<Record<SportsInterestName, any>>;
267
308
 
268
- declare enum AttributeTypeUoiSportsTennis {
269
- Level = 0,
270
- Bankhand = 1
271
- }
272
-
273
- declare const ATTRIBUTE_LABEL_UOI_SPORTS_TENNIS: Partial<Record<AttributeTypeUoiSportsTennis, any>>;
274
-
275
- declare enum TennisBackhand {
276
- None = 0,
277
- Single = 1,
278
- Double = 2,
279
- Both = 3
280
- }
281
- declare enum TennisLevel {
282
- None = 0,
283
- TwoBelow = 1,
284
- TwoFive = 2,
285
- Three = 3,
286
- ThreeFive = 4,
287
- Four = 5,
288
- FourFive = 6,
289
- Five = 7,
290
- FiveFive = 8,
291
- SixAbove = 9
292
- }
293
-
294
- declare enum AttributeTypeUoiSportsBasketball {
295
- Positions = 0
296
- }
297
-
298
- declare const ATTRIBUTE_LABEL_UOI_SPORTS_BASKETBALL: Partial<Record<AttributeTypeUoiSportsBasketball, any>>;
299
-
300
- declare enum BasketballPosition {
301
- None = 0,
302
- SG = 1,
303
- PG = 2,
304
- C = 4,
305
- SF = 8,
306
- PF = 16
307
- }
308
-
309
- type AttributeTypeUoiSports = typeof ATTRIBUTE_LABEL_UOI_SPORTS_TENNIS | typeof ATTRIBUTE_LABEL_UOI_SPORTS_BASKETBALL;
309
+ type AttributeTypeUoiSports = AttributeTypeUoiSportsTennis | AttributeTypeUoiSportsBasketball;
310
310
 
311
311
  declare const ATTRIBUTE_LABEL_UOI: Partial<Record<CategoryName, any>>;
312
312
 
@@ -325,7 +325,8 @@ declare enum AttributeTypeCollectionPets {
325
325
  Mother = 3,
326
326
  Gender = 4,
327
327
  Height = 5,
328
- Weight = 6
328
+ Weight = 6,
329
+ Children = 7
329
330
  }
330
331
 
331
332
  type AttributeTypeCollection = AttributeTypeCollectionPets;
package/dist/index.js CHANGED
@@ -328,6 +328,50 @@ var Handedness = /* @__PURE__ */ ((Handedness2) => {
328
328
  return Handedness2;
329
329
  })(Handedness || {});
330
330
 
331
+ // src/attribute/uoi/sports/tennis/label.ts
332
+ var ATTRIBUTE_LABEL_UOI_SPORTS_TENNIS = {
333
+ [0 /* Level */]: "Level",
334
+ [1 /* Backhand */]: "Backhand"
335
+ };
336
+
337
+ // src/attribute/uoi/sports/tennis/tennis.ts
338
+ var TennisBackhand = /* @__PURE__ */ ((TennisBackhand2) => {
339
+ TennisBackhand2[TennisBackhand2["None"] = 0] = "None";
340
+ TennisBackhand2[TennisBackhand2["Single"] = 1] = "Single";
341
+ TennisBackhand2[TennisBackhand2["Double"] = 2] = "Double";
342
+ TennisBackhand2[TennisBackhand2["Both"] = 3] = "Both";
343
+ return TennisBackhand2;
344
+ })(TennisBackhand || {});
345
+ var TennisLevel = /* @__PURE__ */ ((TennisLevel2) => {
346
+ TennisLevel2[TennisLevel2["None"] = 0] = "None";
347
+ TennisLevel2[TennisLevel2["TwoBelow"] = 1] = "TwoBelow";
348
+ TennisLevel2[TennisLevel2["TwoFive"] = 2] = "TwoFive";
349
+ TennisLevel2[TennisLevel2["Three"] = 3] = "Three";
350
+ TennisLevel2[TennisLevel2["ThreeFive"] = 4] = "ThreeFive";
351
+ TennisLevel2[TennisLevel2["Four"] = 5] = "Four";
352
+ TennisLevel2[TennisLevel2["FourFive"] = 6] = "FourFive";
353
+ TennisLevel2[TennisLevel2["Five"] = 7] = "Five";
354
+ TennisLevel2[TennisLevel2["FiveFive"] = 8] = "FiveFive";
355
+ TennisLevel2[TennisLevel2["SixAbove"] = 9] = "SixAbove";
356
+ return TennisLevel2;
357
+ })(TennisLevel || {});
358
+
359
+ // src/attribute/uoi/sports/basketball/label.ts
360
+ var ATTRIBUTE_LABEL_UOI_SPORTS_BASKETBALL = {
361
+ [0 /* Positions */]: "Positions"
362
+ };
363
+
364
+ // src/attribute/uoi/sports/basketball/basketball.ts
365
+ var BasketballPosition = /* @__PURE__ */ ((BasketballPosition2) => {
366
+ BasketballPosition2[BasketballPosition2["None"] = 0] = "None";
367
+ BasketballPosition2[BasketballPosition2["SG"] = 1] = "SG";
368
+ BasketballPosition2[BasketballPosition2["PG"] = 2] = "PG";
369
+ BasketballPosition2[BasketballPosition2["C"] = 4] = "C";
370
+ BasketballPosition2[BasketballPosition2["SF"] = 8] = "SF";
371
+ BasketballPosition2[BasketballPosition2["PF"] = 16] = "PF";
372
+ return BasketballPosition2;
373
+ })(BasketballPosition || {});
374
+
331
375
  // src/interest/category.ts
332
376
  var CategoryName = /* @__PURE__ */ ((CategoryName2) => {
333
377
  CategoryName2["Sports"] = "sports";
@@ -385,50 +429,6 @@ var MusicInterestName = /* @__PURE__ */ ((MusicInterestName2) => {
385
429
  return MusicInterestName2;
386
430
  })(MusicInterestName || {});
387
431
 
388
- // src/attribute/uoi/sports/basketball/label.ts
389
- var ATTRIBUTE_LABEL_UOI_SPORTS_BASKETBALL = {
390
- [0 /* Positions */]: "Positions"
391
- };
392
-
393
- // src/attribute/uoi/sports/basketball/basketball.ts
394
- var BasketballPosition = /* @__PURE__ */ ((BasketballPosition2) => {
395
- BasketballPosition2[BasketballPosition2["None"] = 0] = "None";
396
- BasketballPosition2[BasketballPosition2["SG"] = 1] = "SG";
397
- BasketballPosition2[BasketballPosition2["PG"] = 2] = "PG";
398
- BasketballPosition2[BasketballPosition2["C"] = 4] = "C";
399
- BasketballPosition2[BasketballPosition2["SF"] = 8] = "SF";
400
- BasketballPosition2[BasketballPosition2["PF"] = 16] = "PF";
401
- return BasketballPosition2;
402
- })(BasketballPosition || {});
403
-
404
- // src/attribute/uoi/sports/tennis/label.ts
405
- var ATTRIBUTE_LABEL_UOI_SPORTS_TENNIS = {
406
- [0 /* Level */]: "Level",
407
- [1 /* Bankhand */]: "Bankhand"
408
- };
409
-
410
- // src/attribute/uoi/sports/tennis/tennis.ts
411
- var TennisBackhand = /* @__PURE__ */ ((TennisBackhand2) => {
412
- TennisBackhand2[TennisBackhand2["None"] = 0] = "None";
413
- TennisBackhand2[TennisBackhand2["Single"] = 1] = "Single";
414
- TennisBackhand2[TennisBackhand2["Double"] = 2] = "Double";
415
- TennisBackhand2[TennisBackhand2["Both"] = 3] = "Both";
416
- return TennisBackhand2;
417
- })(TennisBackhand || {});
418
- var TennisLevel = /* @__PURE__ */ ((TennisLevel2) => {
419
- TennisLevel2[TennisLevel2["None"] = 0] = "None";
420
- TennisLevel2[TennisLevel2["TwoBelow"] = 1] = "TwoBelow";
421
- TennisLevel2[TennisLevel2["TwoFive"] = 2] = "TwoFive";
422
- TennisLevel2[TennisLevel2["Three"] = 3] = "Three";
423
- TennisLevel2[TennisLevel2["ThreeFive"] = 4] = "ThreeFive";
424
- TennisLevel2[TennisLevel2["Four"] = 5] = "Four";
425
- TennisLevel2[TennisLevel2["FourFive"] = 6] = "FourFive";
426
- TennisLevel2[TennisLevel2["Five"] = 7] = "Five";
427
- TennisLevel2[TennisLevel2["FiveFive"] = 8] = "FiveFive";
428
- TennisLevel2[TennisLevel2["SixAbove"] = 9] = "SixAbove";
429
- return TennisLevel2;
430
- })(TennisLevel || {});
431
-
432
432
  // src/attribute/uoi/sports/label.ts
433
433
  var ATTRIBUTE_LABEL_UOI_SPORTS = {
434
434
  ["tennis" /* Tennis */]: ATTRIBUTE_LABEL_UOI_SPORTS_TENNIS,
@@ -457,6 +457,7 @@ var AttributeTypeCollectionPets = /* @__PURE__ */ ((AttributeTypeCollectionPets2
457
457
  AttributeTypeCollectionPets2[AttributeTypeCollectionPets2["Gender"] = 4] = "Gender";
458
458
  AttributeTypeCollectionPets2[AttributeTypeCollectionPets2["Height"] = 5] = "Height";
459
459
  AttributeTypeCollectionPets2[AttributeTypeCollectionPets2["Weight"] = 6] = "Weight";
460
+ AttributeTypeCollectionPets2[AttributeTypeCollectionPets2["Children"] = 7] = "Children";
460
461
  return AttributeTypeCollectionPets2;
461
462
  })(AttributeTypeCollectionPets || {});
462
463
 
package/dist/index.mjs CHANGED
@@ -257,6 +257,50 @@ var Handedness = /* @__PURE__ */ ((Handedness2) => {
257
257
  return Handedness2;
258
258
  })(Handedness || {});
259
259
 
260
+ // src/attribute/uoi/sports/tennis/label.ts
261
+ var ATTRIBUTE_LABEL_UOI_SPORTS_TENNIS = {
262
+ [0 /* Level */]: "Level",
263
+ [1 /* Backhand */]: "Backhand"
264
+ };
265
+
266
+ // src/attribute/uoi/sports/tennis/tennis.ts
267
+ var TennisBackhand = /* @__PURE__ */ ((TennisBackhand2) => {
268
+ TennisBackhand2[TennisBackhand2["None"] = 0] = "None";
269
+ TennisBackhand2[TennisBackhand2["Single"] = 1] = "Single";
270
+ TennisBackhand2[TennisBackhand2["Double"] = 2] = "Double";
271
+ TennisBackhand2[TennisBackhand2["Both"] = 3] = "Both";
272
+ return TennisBackhand2;
273
+ })(TennisBackhand || {});
274
+ var TennisLevel = /* @__PURE__ */ ((TennisLevel2) => {
275
+ TennisLevel2[TennisLevel2["None"] = 0] = "None";
276
+ TennisLevel2[TennisLevel2["TwoBelow"] = 1] = "TwoBelow";
277
+ TennisLevel2[TennisLevel2["TwoFive"] = 2] = "TwoFive";
278
+ TennisLevel2[TennisLevel2["Three"] = 3] = "Three";
279
+ TennisLevel2[TennisLevel2["ThreeFive"] = 4] = "ThreeFive";
280
+ TennisLevel2[TennisLevel2["Four"] = 5] = "Four";
281
+ TennisLevel2[TennisLevel2["FourFive"] = 6] = "FourFive";
282
+ TennisLevel2[TennisLevel2["Five"] = 7] = "Five";
283
+ TennisLevel2[TennisLevel2["FiveFive"] = 8] = "FiveFive";
284
+ TennisLevel2[TennisLevel2["SixAbove"] = 9] = "SixAbove";
285
+ return TennisLevel2;
286
+ })(TennisLevel || {});
287
+
288
+ // src/attribute/uoi/sports/basketball/label.ts
289
+ var ATTRIBUTE_LABEL_UOI_SPORTS_BASKETBALL = {
290
+ [0 /* Positions */]: "Positions"
291
+ };
292
+
293
+ // src/attribute/uoi/sports/basketball/basketball.ts
294
+ var BasketballPosition = /* @__PURE__ */ ((BasketballPosition2) => {
295
+ BasketballPosition2[BasketballPosition2["None"] = 0] = "None";
296
+ BasketballPosition2[BasketballPosition2["SG"] = 1] = "SG";
297
+ BasketballPosition2[BasketballPosition2["PG"] = 2] = "PG";
298
+ BasketballPosition2[BasketballPosition2["C"] = 4] = "C";
299
+ BasketballPosition2[BasketballPosition2["SF"] = 8] = "SF";
300
+ BasketballPosition2[BasketballPosition2["PF"] = 16] = "PF";
301
+ return BasketballPosition2;
302
+ })(BasketballPosition || {});
303
+
260
304
  // src/interest/category.ts
261
305
  var CategoryName = /* @__PURE__ */ ((CategoryName2) => {
262
306
  CategoryName2["Sports"] = "sports";
@@ -314,50 +358,6 @@ var MusicInterestName = /* @__PURE__ */ ((MusicInterestName2) => {
314
358
  return MusicInterestName2;
315
359
  })(MusicInterestName || {});
316
360
 
317
- // src/attribute/uoi/sports/basketball/label.ts
318
- var ATTRIBUTE_LABEL_UOI_SPORTS_BASKETBALL = {
319
- [0 /* Positions */]: "Positions"
320
- };
321
-
322
- // src/attribute/uoi/sports/basketball/basketball.ts
323
- var BasketballPosition = /* @__PURE__ */ ((BasketballPosition2) => {
324
- BasketballPosition2[BasketballPosition2["None"] = 0] = "None";
325
- BasketballPosition2[BasketballPosition2["SG"] = 1] = "SG";
326
- BasketballPosition2[BasketballPosition2["PG"] = 2] = "PG";
327
- BasketballPosition2[BasketballPosition2["C"] = 4] = "C";
328
- BasketballPosition2[BasketballPosition2["SF"] = 8] = "SF";
329
- BasketballPosition2[BasketballPosition2["PF"] = 16] = "PF";
330
- return BasketballPosition2;
331
- })(BasketballPosition || {});
332
-
333
- // src/attribute/uoi/sports/tennis/label.ts
334
- var ATTRIBUTE_LABEL_UOI_SPORTS_TENNIS = {
335
- [0 /* Level */]: "Level",
336
- [1 /* Bankhand */]: "Bankhand"
337
- };
338
-
339
- // src/attribute/uoi/sports/tennis/tennis.ts
340
- var TennisBackhand = /* @__PURE__ */ ((TennisBackhand2) => {
341
- TennisBackhand2[TennisBackhand2["None"] = 0] = "None";
342
- TennisBackhand2[TennisBackhand2["Single"] = 1] = "Single";
343
- TennisBackhand2[TennisBackhand2["Double"] = 2] = "Double";
344
- TennisBackhand2[TennisBackhand2["Both"] = 3] = "Both";
345
- return TennisBackhand2;
346
- })(TennisBackhand || {});
347
- var TennisLevel = /* @__PURE__ */ ((TennisLevel2) => {
348
- TennisLevel2[TennisLevel2["None"] = 0] = "None";
349
- TennisLevel2[TennisLevel2["TwoBelow"] = 1] = "TwoBelow";
350
- TennisLevel2[TennisLevel2["TwoFive"] = 2] = "TwoFive";
351
- TennisLevel2[TennisLevel2["Three"] = 3] = "Three";
352
- TennisLevel2[TennisLevel2["ThreeFive"] = 4] = "ThreeFive";
353
- TennisLevel2[TennisLevel2["Four"] = 5] = "Four";
354
- TennisLevel2[TennisLevel2["FourFive"] = 6] = "FourFive";
355
- TennisLevel2[TennisLevel2["Five"] = 7] = "Five";
356
- TennisLevel2[TennisLevel2["FiveFive"] = 8] = "FiveFive";
357
- TennisLevel2[TennisLevel2["SixAbove"] = 9] = "SixAbove";
358
- return TennisLevel2;
359
- })(TennisLevel || {});
360
-
361
361
  // src/attribute/uoi/sports/label.ts
362
362
  var ATTRIBUTE_LABEL_UOI_SPORTS = {
363
363
  ["tennis" /* Tennis */]: ATTRIBUTE_LABEL_UOI_SPORTS_TENNIS,
@@ -386,6 +386,7 @@ var AttributeTypeCollectionPets = /* @__PURE__ */ ((AttributeTypeCollectionPets2
386
386
  AttributeTypeCollectionPets2[AttributeTypeCollectionPets2["Gender"] = 4] = "Gender";
387
387
  AttributeTypeCollectionPets2[AttributeTypeCollectionPets2["Height"] = 5] = "Height";
388
388
  AttributeTypeCollectionPets2[AttributeTypeCollectionPets2["Weight"] = 6] = "Weight";
389
+ AttributeTypeCollectionPets2[AttributeTypeCollectionPets2["Children"] = 7] = "Children";
389
390
  return AttributeTypeCollectionPets2;
390
391
  })(AttributeTypeCollectionPets || {});
391
392
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wenum",
3
- "version": "1.24.1",
3
+ "version": "1.24.3",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.mjs",
6
6
  "types": "dist/index.d.ts",
@@ -6,4 +6,5 @@ export enum AttributeTypeCollectionPets {
6
6
  Gender,
7
7
  Height,
8
8
  Weight,
9
+ Children,
9
10
  }
@@ -1,4 +1,4 @@
1
- export * from './label';
2
1
  export * from './tennis';
3
2
  export * from './basketball';
3
+ export * from './label';
4
4
  export * from './type';
@@ -2,5 +2,5 @@ import { AttributeTypeUoiSportsTennis } from './type';
2
2
 
3
3
  export const ATTRIBUTE_LABEL_UOI_SPORTS_TENNIS: Partial<Record<AttributeTypeUoiSportsTennis, any>> = {
4
4
  [AttributeTypeUoiSportsTennis.Level]: 'Level',
5
- [AttributeTypeUoiSportsTennis.Bankhand]: 'Bankhand',
5
+ [AttributeTypeUoiSportsTennis.Backhand]: 'Backhand',
6
6
  };
@@ -1,3 +1,3 @@
1
1
  export enum AttributeTypeUoiSportsTennis {
2
- Level, Bankhand,
2
+ Level, Backhand,
3
3
  }
@@ -1,6 +1,6 @@
1
- import { ATTRIBUTE_LABEL_UOI_SPORTS_BASKETBALL } from './basketball';
2
- import { ATTRIBUTE_LABEL_UOI_SPORTS_TENNIS } from './tennis';
1
+ import { AttributeTypeUoiSportsBasketball } from './basketball/type';
2
+ import { AttributeTypeUoiSportsTennis } from './tennis/type';
3
3
 
4
4
  export type AttributeTypeUoiSports =
5
- | typeof ATTRIBUTE_LABEL_UOI_SPORTS_TENNIS
6
- | typeof ATTRIBUTE_LABEL_UOI_SPORTS_BASKETBALL;
5
+ | AttributeTypeUoiSportsTennis
6
+ | AttributeTypeUoiSportsBasketball;