wenum 1.24.2 → 1.25.0

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
 
@@ -356,4 +356,4 @@ declare enum SubjectType {
356
356
  Reply = 4
357
357
  }
358
358
 
359
- export { ATTRIBUTE_LABEL, ATTRIBUTE_LABEL_COLLECTION, ATTRIBUTE_LABEL_COMMON, ATTRIBUTE_LABEL_UOI, ATTRIBUTE_LABEL_UOI_SPORTS, ATTRIBUTE_LABEL_UOI_SPORTS_BASKETBALL, ATTRIBUTE_LABEL_UOI_SPORTS_TENNIS, AccountStatus, AdminAccountStatus, AttendanceStatus, type AttributeType, type AttributeTypeCollection, AttributeTypeCollectionPets, AttributeTypeCommon, type AttributeTypeUoi, type AttributeTypeUoiSports, BasketballPosition, BuddyingStatus, CategoryName, ChallengeStatus, CollectionMetaStatus, CollectionType, ConnectionType, DuelGameResultType, FollowingStatus, GameType, Handedness, type InterestName, InterestNameNone, LeaderboardOrder, LeaderboardType, LocationType, MarketMetaStatus, MarketType, MemberingStatus, MusicInterestName, PageType, PageUpdateType, PetGender, PetsInterestName, PostPrivacy, PostType, ProfilePermission, ProfilePrivacy, ProfileStatus, ProfileType, Pronoun, SportsInterestName, SubjectType, TennisBackhand, TennisLevel };
359
+ export { ATTRIBUTE_LABEL, ATTRIBUTE_LABEL_COLLECTION, ATTRIBUTE_LABEL_COMMON, ATTRIBUTE_LABEL_UOI, ATTRIBUTE_LABEL_UOI_SPORTS, ATTRIBUTE_LABEL_UOI_SPORTS_BASKETBALL, ATTRIBUTE_LABEL_UOI_SPORTS_TENNIS, AccountStatus, AdminAccountStatus, AttendanceStatus, type AttributeType, type AttributeTypeCollection, AttributeTypeCollectionPets, AttributeTypeCommon, type AttributeTypeUoi, type AttributeTypeUoiSports, AttributeTypeUoiSportsBasketball, AttributeTypeUoiSportsTennis, BasketballPosition, BuddyingStatus, CategoryName, ChallengeStatus, CollectionMetaStatus, CollectionType, ConnectionType, DuelGameResultType, FollowingStatus, GameType, Handedness, type InterestName, InterestNameNone, LeaderboardOrder, LeaderboardType, LocationType, MarketMetaStatus, MarketType, MemberingStatus, MusicInterestName, PageType, PageUpdateType, PetGender, PetsInterestName, PostPrivacy, PostType, ProfilePermission, ProfilePrivacy, ProfileStatus, ProfileType, Pronoun, SportsInterestName, SubjectType, TennisBackhand, TennisLevel };
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
 
@@ -356,4 +356,4 @@ declare enum SubjectType {
356
356
  Reply = 4
357
357
  }
358
358
 
359
- export { ATTRIBUTE_LABEL, ATTRIBUTE_LABEL_COLLECTION, ATTRIBUTE_LABEL_COMMON, ATTRIBUTE_LABEL_UOI, ATTRIBUTE_LABEL_UOI_SPORTS, ATTRIBUTE_LABEL_UOI_SPORTS_BASKETBALL, ATTRIBUTE_LABEL_UOI_SPORTS_TENNIS, AccountStatus, AdminAccountStatus, AttendanceStatus, type AttributeType, type AttributeTypeCollection, AttributeTypeCollectionPets, AttributeTypeCommon, type AttributeTypeUoi, type AttributeTypeUoiSports, BasketballPosition, BuddyingStatus, CategoryName, ChallengeStatus, CollectionMetaStatus, CollectionType, ConnectionType, DuelGameResultType, FollowingStatus, GameType, Handedness, type InterestName, InterestNameNone, LeaderboardOrder, LeaderboardType, LocationType, MarketMetaStatus, MarketType, MemberingStatus, MusicInterestName, PageType, PageUpdateType, PetGender, PetsInterestName, PostPrivacy, PostType, ProfilePermission, ProfilePrivacy, ProfileStatus, ProfileType, Pronoun, SportsInterestName, SubjectType, TennisBackhand, TennisLevel };
359
+ export { ATTRIBUTE_LABEL, ATTRIBUTE_LABEL_COLLECTION, ATTRIBUTE_LABEL_COMMON, ATTRIBUTE_LABEL_UOI, ATTRIBUTE_LABEL_UOI_SPORTS, ATTRIBUTE_LABEL_UOI_SPORTS_BASKETBALL, ATTRIBUTE_LABEL_UOI_SPORTS_TENNIS, AccountStatus, AdminAccountStatus, AttendanceStatus, type AttributeType, type AttributeTypeCollection, AttributeTypeCollectionPets, AttributeTypeCommon, type AttributeTypeUoi, type AttributeTypeUoiSports, AttributeTypeUoiSportsBasketball, AttributeTypeUoiSportsTennis, BasketballPosition, BuddyingStatus, CategoryName, ChallengeStatus, CollectionMetaStatus, CollectionType, ConnectionType, DuelGameResultType, FollowingStatus, GameType, Handedness, type InterestName, InterestNameNone, LeaderboardOrder, LeaderboardType, LocationType, MarketMetaStatus, MarketType, MemberingStatus, MusicInterestName, PageType, PageUpdateType, PetGender, PetsInterestName, PostPrivacy, PostType, ProfilePermission, ProfilePrivacy, ProfileStatus, ProfileType, Pronoun, SportsInterestName, SubjectType, TennisBackhand, TennisLevel };
package/dist/index.js CHANGED
@@ -32,6 +32,8 @@ __export(index_exports, {
32
32
  AttendanceStatus: () => AttendanceStatus,
33
33
  AttributeTypeCollectionPets: () => AttributeTypeCollectionPets,
34
34
  AttributeTypeCommon: () => AttributeTypeCommon,
35
+ AttributeTypeUoiSportsBasketball: () => AttributeTypeUoiSportsBasketball,
36
+ AttributeTypeUoiSportsTennis: () => AttributeTypeUoiSportsTennis,
35
37
  BasketballPosition: () => BasketballPosition,
36
38
  BuddyingStatus: () => BuddyingStatus,
37
39
  CategoryName: () => CategoryName,
@@ -328,6 +330,63 @@ var Handedness = /* @__PURE__ */ ((Handedness2) => {
328
330
  return Handedness2;
329
331
  })(Handedness || {});
330
332
 
333
+ // src/attribute/uoi/sports/tennis/type.ts
334
+ var AttributeTypeUoiSportsTennis = /* @__PURE__ */ ((AttributeTypeUoiSportsTennis2) => {
335
+ AttributeTypeUoiSportsTennis2[AttributeTypeUoiSportsTennis2["Level"] = 0] = "Level";
336
+ AttributeTypeUoiSportsTennis2[AttributeTypeUoiSportsTennis2["Backhand"] = 1] = "Backhand";
337
+ return AttributeTypeUoiSportsTennis2;
338
+ })(AttributeTypeUoiSportsTennis || {});
339
+
340
+ // src/attribute/uoi/sports/tennis/label.ts
341
+ var ATTRIBUTE_LABEL_UOI_SPORTS_TENNIS = {
342
+ [0 /* Level */]: "Level",
343
+ [1 /* Backhand */]: "Backhand"
344
+ };
345
+
346
+ // src/attribute/uoi/sports/tennis/tennis.ts
347
+ var TennisBackhand = /* @__PURE__ */ ((TennisBackhand2) => {
348
+ TennisBackhand2[TennisBackhand2["None"] = 0] = "None";
349
+ TennisBackhand2[TennisBackhand2["Single"] = 1] = "Single";
350
+ TennisBackhand2[TennisBackhand2["Double"] = 2] = "Double";
351
+ TennisBackhand2[TennisBackhand2["Both"] = 3] = "Both";
352
+ return TennisBackhand2;
353
+ })(TennisBackhand || {});
354
+ var TennisLevel = /* @__PURE__ */ ((TennisLevel2) => {
355
+ TennisLevel2[TennisLevel2["None"] = 0] = "None";
356
+ TennisLevel2[TennisLevel2["TwoBelow"] = 1] = "TwoBelow";
357
+ TennisLevel2[TennisLevel2["TwoFive"] = 2] = "TwoFive";
358
+ TennisLevel2[TennisLevel2["Three"] = 3] = "Three";
359
+ TennisLevel2[TennisLevel2["ThreeFive"] = 4] = "ThreeFive";
360
+ TennisLevel2[TennisLevel2["Four"] = 5] = "Four";
361
+ TennisLevel2[TennisLevel2["FourFive"] = 6] = "FourFive";
362
+ TennisLevel2[TennisLevel2["Five"] = 7] = "Five";
363
+ TennisLevel2[TennisLevel2["FiveFive"] = 8] = "FiveFive";
364
+ TennisLevel2[TennisLevel2["SixAbove"] = 9] = "SixAbove";
365
+ return TennisLevel2;
366
+ })(TennisLevel || {});
367
+
368
+ // src/attribute/uoi/sports/basketball/type.ts
369
+ var AttributeTypeUoiSportsBasketball = /* @__PURE__ */ ((AttributeTypeUoiSportsBasketball2) => {
370
+ AttributeTypeUoiSportsBasketball2[AttributeTypeUoiSportsBasketball2["Positions"] = 0] = "Positions";
371
+ return AttributeTypeUoiSportsBasketball2;
372
+ })(AttributeTypeUoiSportsBasketball || {});
373
+
374
+ // src/attribute/uoi/sports/basketball/label.ts
375
+ var ATTRIBUTE_LABEL_UOI_SPORTS_BASKETBALL = {
376
+ [0 /* Positions */]: "Positions"
377
+ };
378
+
379
+ // src/attribute/uoi/sports/basketball/basketball.ts
380
+ var BasketballPosition = /* @__PURE__ */ ((BasketballPosition2) => {
381
+ BasketballPosition2[BasketballPosition2["None"] = 0] = "None";
382
+ BasketballPosition2[BasketballPosition2["SG"] = 1] = "SG";
383
+ BasketballPosition2[BasketballPosition2["PG"] = 2] = "PG";
384
+ BasketballPosition2[BasketballPosition2["C"] = 4] = "C";
385
+ BasketballPosition2[BasketballPosition2["SF"] = 8] = "SF";
386
+ BasketballPosition2[BasketballPosition2["PF"] = 16] = "PF";
387
+ return BasketballPosition2;
388
+ })(BasketballPosition || {});
389
+
331
390
  // src/interest/category.ts
332
391
  var CategoryName = /* @__PURE__ */ ((CategoryName2) => {
333
392
  CategoryName2["Sports"] = "sports";
@@ -385,50 +444,6 @@ var MusicInterestName = /* @__PURE__ */ ((MusicInterestName2) => {
385
444
  return MusicInterestName2;
386
445
  })(MusicInterestName || {});
387
446
 
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
447
  // src/attribute/uoi/sports/label.ts
433
448
  var ATTRIBUTE_LABEL_UOI_SPORTS = {
434
449
  ["tennis" /* Tennis */]: ATTRIBUTE_LABEL_UOI_SPORTS_TENNIS,
@@ -510,6 +525,8 @@ var SubjectType = /* @__PURE__ */ ((SubjectType2) => {
510
525
  AttendanceStatus,
511
526
  AttributeTypeCollectionPets,
512
527
  AttributeTypeCommon,
528
+ AttributeTypeUoiSportsBasketball,
529
+ AttributeTypeUoiSportsTennis,
513
530
  BasketballPosition,
514
531
  BuddyingStatus,
515
532
  CategoryName,
package/dist/index.mjs CHANGED
@@ -257,6 +257,63 @@ var Handedness = /* @__PURE__ */ ((Handedness2) => {
257
257
  return Handedness2;
258
258
  })(Handedness || {});
259
259
 
260
+ // src/attribute/uoi/sports/tennis/type.ts
261
+ var AttributeTypeUoiSportsTennis = /* @__PURE__ */ ((AttributeTypeUoiSportsTennis2) => {
262
+ AttributeTypeUoiSportsTennis2[AttributeTypeUoiSportsTennis2["Level"] = 0] = "Level";
263
+ AttributeTypeUoiSportsTennis2[AttributeTypeUoiSportsTennis2["Backhand"] = 1] = "Backhand";
264
+ return AttributeTypeUoiSportsTennis2;
265
+ })(AttributeTypeUoiSportsTennis || {});
266
+
267
+ // src/attribute/uoi/sports/tennis/label.ts
268
+ var ATTRIBUTE_LABEL_UOI_SPORTS_TENNIS = {
269
+ [0 /* Level */]: "Level",
270
+ [1 /* Backhand */]: "Backhand"
271
+ };
272
+
273
+ // src/attribute/uoi/sports/tennis/tennis.ts
274
+ var TennisBackhand = /* @__PURE__ */ ((TennisBackhand2) => {
275
+ TennisBackhand2[TennisBackhand2["None"] = 0] = "None";
276
+ TennisBackhand2[TennisBackhand2["Single"] = 1] = "Single";
277
+ TennisBackhand2[TennisBackhand2["Double"] = 2] = "Double";
278
+ TennisBackhand2[TennisBackhand2["Both"] = 3] = "Both";
279
+ return TennisBackhand2;
280
+ })(TennisBackhand || {});
281
+ var TennisLevel = /* @__PURE__ */ ((TennisLevel2) => {
282
+ TennisLevel2[TennisLevel2["None"] = 0] = "None";
283
+ TennisLevel2[TennisLevel2["TwoBelow"] = 1] = "TwoBelow";
284
+ TennisLevel2[TennisLevel2["TwoFive"] = 2] = "TwoFive";
285
+ TennisLevel2[TennisLevel2["Three"] = 3] = "Three";
286
+ TennisLevel2[TennisLevel2["ThreeFive"] = 4] = "ThreeFive";
287
+ TennisLevel2[TennisLevel2["Four"] = 5] = "Four";
288
+ TennisLevel2[TennisLevel2["FourFive"] = 6] = "FourFive";
289
+ TennisLevel2[TennisLevel2["Five"] = 7] = "Five";
290
+ TennisLevel2[TennisLevel2["FiveFive"] = 8] = "FiveFive";
291
+ TennisLevel2[TennisLevel2["SixAbove"] = 9] = "SixAbove";
292
+ return TennisLevel2;
293
+ })(TennisLevel || {});
294
+
295
+ // src/attribute/uoi/sports/basketball/type.ts
296
+ var AttributeTypeUoiSportsBasketball = /* @__PURE__ */ ((AttributeTypeUoiSportsBasketball2) => {
297
+ AttributeTypeUoiSportsBasketball2[AttributeTypeUoiSportsBasketball2["Positions"] = 0] = "Positions";
298
+ return AttributeTypeUoiSportsBasketball2;
299
+ })(AttributeTypeUoiSportsBasketball || {});
300
+
301
+ // src/attribute/uoi/sports/basketball/label.ts
302
+ var ATTRIBUTE_LABEL_UOI_SPORTS_BASKETBALL = {
303
+ [0 /* Positions */]: "Positions"
304
+ };
305
+
306
+ // src/attribute/uoi/sports/basketball/basketball.ts
307
+ var BasketballPosition = /* @__PURE__ */ ((BasketballPosition2) => {
308
+ BasketballPosition2[BasketballPosition2["None"] = 0] = "None";
309
+ BasketballPosition2[BasketballPosition2["SG"] = 1] = "SG";
310
+ BasketballPosition2[BasketballPosition2["PG"] = 2] = "PG";
311
+ BasketballPosition2[BasketballPosition2["C"] = 4] = "C";
312
+ BasketballPosition2[BasketballPosition2["SF"] = 8] = "SF";
313
+ BasketballPosition2[BasketballPosition2["PF"] = 16] = "PF";
314
+ return BasketballPosition2;
315
+ })(BasketballPosition || {});
316
+
260
317
  // src/interest/category.ts
261
318
  var CategoryName = /* @__PURE__ */ ((CategoryName2) => {
262
319
  CategoryName2["Sports"] = "sports";
@@ -314,50 +371,6 @@ var MusicInterestName = /* @__PURE__ */ ((MusicInterestName2) => {
314
371
  return MusicInterestName2;
315
372
  })(MusicInterestName || {});
316
373
 
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
374
  // src/attribute/uoi/sports/label.ts
362
375
  var ATTRIBUTE_LABEL_UOI_SPORTS = {
363
376
  ["tennis" /* Tennis */]: ATTRIBUTE_LABEL_UOI_SPORTS_TENNIS,
@@ -438,6 +451,8 @@ export {
438
451
  AttendanceStatus,
439
452
  AttributeTypeCollectionPets,
440
453
  AttributeTypeCommon,
454
+ AttributeTypeUoiSportsBasketball,
455
+ AttributeTypeUoiSportsTennis,
441
456
  BasketballPosition,
442
457
  BuddyingStatus,
443
458
  CategoryName,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wenum",
3
- "version": "1.24.2",
3
+ "version": "1.25.0",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.mjs",
6
6
  "types": "dist/index.d.ts",
@@ -1,2 +1,3 @@
1
1
  export * from './label';
2
- export * from './basketball';
2
+ export * from './basketball';
3
+ export * from './type';
@@ -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';
@@ -1,2 +1,3 @@
1
1
  export * from './label';
2
2
  export * from './tennis';
3
+ 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;