wenum 1.20.0 → 1.21.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 +65 -9
- package/dist/index.d.ts +65 -9
- package/dist/index.js +132 -60
- package/dist/index.mjs +123 -60
- package/package.json +1 -1
- package/src/attribute/collection/index.ts +1 -0
- package/src/attribute/collection/label.ts +7 -0
- package/src/attribute/collection/pets/index.ts +2 -0
- package/src/attribute/collection/pets/label.ts +9 -0
- package/src/attribute/{common.ts → common/common.ts} +1 -1
- package/src/attribute/common/index.ts +2 -0
- package/src/attribute/common/label.ts +7 -0
- package/src/attribute/index.ts +2 -2
- package/src/attribute/uoi/index.ts +2 -0
- package/src/attribute/uoi/label.ts +7 -0
- package/src/attribute/uoi/sports/basketball/basketball.ts +8 -0
- package/src/attribute/uoi/sports/basketball/index.ts +2 -0
- package/src/attribute/uoi/sports/basketball/label.ts +8 -0
- package/src/attribute/uoi/sports/index.ts +3 -0
- package/src/attribute/uoi/sports/label.ts +9 -0
- package/src/attribute/uoi/sports/tennis/index.ts +2 -0
- package/src/attribute/uoi/sports/tennis/label.ts +8 -0
- package/src/attribute/{sports.ts → uoi/sports/tennis/tennis.ts} +0 -9
- /package/src/attribute/{pet.ts → collection/pets/pets.ts} +0 -0
package/dist/index.d.mts
CHANGED
|
@@ -202,20 +202,38 @@ declare enum FollowingStatus {
|
|
|
202
202
|
Unfollowed = 5
|
|
203
203
|
}
|
|
204
204
|
|
|
205
|
+
declare enum AttributeLabelCommon {
|
|
206
|
+
Handedness = 0
|
|
207
|
+
}
|
|
208
|
+
declare const ATTRIBUTE_LABEL_COMMON: {
|
|
209
|
+
0: string;
|
|
210
|
+
};
|
|
211
|
+
|
|
205
212
|
declare enum Handedness {
|
|
206
213
|
None = 0,
|
|
207
214
|
Left = 1,
|
|
208
215
|
Right = 2
|
|
209
216
|
}
|
|
210
217
|
|
|
211
|
-
declare
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
}
|
|
218
|
+
declare const ATTRIBUTE_LABEL_UOI_SPORTS: {
|
|
219
|
+
tennis: {
|
|
220
|
+
0: string;
|
|
221
|
+
1: string;
|
|
222
|
+
};
|
|
223
|
+
basketball: {
|
|
224
|
+
0: string;
|
|
225
|
+
};
|
|
226
|
+
};
|
|
227
|
+
|
|
228
|
+
declare enum AttributeLabelUoiSportsTennis {
|
|
229
|
+
Level = 0,
|
|
230
|
+
Bankhand = 1
|
|
231
|
+
}
|
|
232
|
+
declare const ATTRIBUTE_LABEL_UOI_SPORTS_TENNIS: {
|
|
233
|
+
0: string;
|
|
234
|
+
1: string;
|
|
235
|
+
};
|
|
236
|
+
|
|
219
237
|
declare enum TennisBackhand {
|
|
220
238
|
None = 0,
|
|
221
239
|
Single = 1,
|
|
@@ -235,12 +253,50 @@ declare enum TennisLevel {
|
|
|
235
253
|
SixAbove = 9
|
|
236
254
|
}
|
|
237
255
|
|
|
256
|
+
declare enum AttributeLabelUoiSportsBasketball {
|
|
257
|
+
Positions = 0
|
|
258
|
+
}
|
|
259
|
+
declare const ATTRIBUTE_LABEL_UOI_SPORTS_BASKETBALL: {
|
|
260
|
+
0: string;
|
|
261
|
+
};
|
|
262
|
+
|
|
263
|
+
declare enum BasketballPosition {
|
|
264
|
+
None = 0,
|
|
265
|
+
SG = 1,
|
|
266
|
+
PG = 2,
|
|
267
|
+
C = 4,
|
|
268
|
+
SF = 8,
|
|
269
|
+
PF = 16
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
declare const ATTRIBUTE_LABEL_UOI: {
|
|
273
|
+
sports: {
|
|
274
|
+
tennis: {
|
|
275
|
+
0: string;
|
|
276
|
+
1: string;
|
|
277
|
+
};
|
|
278
|
+
basketball: {
|
|
279
|
+
0: string;
|
|
280
|
+
};
|
|
281
|
+
};
|
|
282
|
+
};
|
|
283
|
+
|
|
238
284
|
declare enum PetGender {
|
|
239
285
|
None = 0,
|
|
240
286
|
Male = 1,
|
|
241
287
|
Female = 2
|
|
242
288
|
}
|
|
243
289
|
|
|
290
|
+
declare enum AttributeLabelCollectionPets {
|
|
291
|
+
Breed = 0,
|
|
292
|
+
Dob = 1,
|
|
293
|
+
Father = 2,
|
|
294
|
+
Mother = 3,
|
|
295
|
+
Gender = 4,
|
|
296
|
+
Height = 5,
|
|
297
|
+
Weight = 6
|
|
298
|
+
}
|
|
299
|
+
|
|
244
300
|
declare enum PageUpdateType {
|
|
245
301
|
None = 0,
|
|
246
302
|
CreatePost = 1,
|
|
@@ -309,4 +365,4 @@ declare enum SportsInterestName {
|
|
|
309
365
|
type InterestName = SportsInterestName | PetsInterestName | MusicInterestName | '';
|
|
310
366
|
declare const InterestNameNone: InterestName;
|
|
311
367
|
|
|
312
|
-
export { AccountStatus, AdminAccountStatus, AttendanceStatus, 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 };
|
|
368
|
+
export { ATTRIBUTE_LABEL_COMMON, ATTRIBUTE_LABEL_UOI, ATTRIBUTE_LABEL_UOI_SPORTS, ATTRIBUTE_LABEL_UOI_SPORTS_BASKETBALL, ATTRIBUTE_LABEL_UOI_SPORTS_TENNIS, AccountStatus, AdminAccountStatus, AttendanceStatus, AttributeLabelCollectionPets, AttributeLabelCommon, AttributeLabelUoiSportsBasketball, AttributeLabelUoiSportsTennis, 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
|
@@ -202,20 +202,38 @@ declare enum FollowingStatus {
|
|
|
202
202
|
Unfollowed = 5
|
|
203
203
|
}
|
|
204
204
|
|
|
205
|
+
declare enum AttributeLabelCommon {
|
|
206
|
+
Handedness = 0
|
|
207
|
+
}
|
|
208
|
+
declare const ATTRIBUTE_LABEL_COMMON: {
|
|
209
|
+
0: string;
|
|
210
|
+
};
|
|
211
|
+
|
|
205
212
|
declare enum Handedness {
|
|
206
213
|
None = 0,
|
|
207
214
|
Left = 1,
|
|
208
215
|
Right = 2
|
|
209
216
|
}
|
|
210
217
|
|
|
211
|
-
declare
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
}
|
|
218
|
+
declare const ATTRIBUTE_LABEL_UOI_SPORTS: {
|
|
219
|
+
tennis: {
|
|
220
|
+
0: string;
|
|
221
|
+
1: string;
|
|
222
|
+
};
|
|
223
|
+
basketball: {
|
|
224
|
+
0: string;
|
|
225
|
+
};
|
|
226
|
+
};
|
|
227
|
+
|
|
228
|
+
declare enum AttributeLabelUoiSportsTennis {
|
|
229
|
+
Level = 0,
|
|
230
|
+
Bankhand = 1
|
|
231
|
+
}
|
|
232
|
+
declare const ATTRIBUTE_LABEL_UOI_SPORTS_TENNIS: {
|
|
233
|
+
0: string;
|
|
234
|
+
1: string;
|
|
235
|
+
};
|
|
236
|
+
|
|
219
237
|
declare enum TennisBackhand {
|
|
220
238
|
None = 0,
|
|
221
239
|
Single = 1,
|
|
@@ -235,12 +253,50 @@ declare enum TennisLevel {
|
|
|
235
253
|
SixAbove = 9
|
|
236
254
|
}
|
|
237
255
|
|
|
256
|
+
declare enum AttributeLabelUoiSportsBasketball {
|
|
257
|
+
Positions = 0
|
|
258
|
+
}
|
|
259
|
+
declare const ATTRIBUTE_LABEL_UOI_SPORTS_BASKETBALL: {
|
|
260
|
+
0: string;
|
|
261
|
+
};
|
|
262
|
+
|
|
263
|
+
declare enum BasketballPosition {
|
|
264
|
+
None = 0,
|
|
265
|
+
SG = 1,
|
|
266
|
+
PG = 2,
|
|
267
|
+
C = 4,
|
|
268
|
+
SF = 8,
|
|
269
|
+
PF = 16
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
declare const ATTRIBUTE_LABEL_UOI: {
|
|
273
|
+
sports: {
|
|
274
|
+
tennis: {
|
|
275
|
+
0: string;
|
|
276
|
+
1: string;
|
|
277
|
+
};
|
|
278
|
+
basketball: {
|
|
279
|
+
0: string;
|
|
280
|
+
};
|
|
281
|
+
};
|
|
282
|
+
};
|
|
283
|
+
|
|
238
284
|
declare enum PetGender {
|
|
239
285
|
None = 0,
|
|
240
286
|
Male = 1,
|
|
241
287
|
Female = 2
|
|
242
288
|
}
|
|
243
289
|
|
|
290
|
+
declare enum AttributeLabelCollectionPets {
|
|
291
|
+
Breed = 0,
|
|
292
|
+
Dob = 1,
|
|
293
|
+
Father = 2,
|
|
294
|
+
Mother = 3,
|
|
295
|
+
Gender = 4,
|
|
296
|
+
Height = 5,
|
|
297
|
+
Weight = 6
|
|
298
|
+
}
|
|
299
|
+
|
|
244
300
|
declare enum PageUpdateType {
|
|
245
301
|
None = 0,
|
|
246
302
|
CreatePost = 1,
|
|
@@ -309,4 +365,4 @@ declare enum SportsInterestName {
|
|
|
309
365
|
type InterestName = SportsInterestName | PetsInterestName | MusicInterestName | '';
|
|
310
366
|
declare const InterestNameNone: InterestName;
|
|
311
367
|
|
|
312
|
-
export { AccountStatus, AdminAccountStatus, AttendanceStatus, 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 };
|
|
368
|
+
export { ATTRIBUTE_LABEL_COMMON, ATTRIBUTE_LABEL_UOI, ATTRIBUTE_LABEL_UOI_SPORTS, ATTRIBUTE_LABEL_UOI_SPORTS_BASKETBALL, ATTRIBUTE_LABEL_UOI_SPORTS_TENNIS, AccountStatus, AdminAccountStatus, AttendanceStatus, AttributeLabelCollectionPets, AttributeLabelCommon, AttributeLabelUoiSportsBasketball, AttributeLabelUoiSportsTennis, 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
|
@@ -20,9 +20,18 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
|
|
|
20
20
|
// src/index.ts
|
|
21
21
|
var index_exports = {};
|
|
22
22
|
__export(index_exports, {
|
|
23
|
+
ATTRIBUTE_LABEL_COMMON: () => ATTRIBUTE_LABEL_COMMON,
|
|
24
|
+
ATTRIBUTE_LABEL_UOI: () => ATTRIBUTE_LABEL_UOI,
|
|
25
|
+
ATTRIBUTE_LABEL_UOI_SPORTS: () => ATTRIBUTE_LABEL_UOI_SPORTS,
|
|
26
|
+
ATTRIBUTE_LABEL_UOI_SPORTS_BASKETBALL: () => ATTRIBUTE_LABEL_UOI_SPORTS_BASKETBALL,
|
|
27
|
+
ATTRIBUTE_LABEL_UOI_SPORTS_TENNIS: () => ATTRIBUTE_LABEL_UOI_SPORTS_TENNIS,
|
|
23
28
|
AccountStatus: () => AccountStatus,
|
|
24
29
|
AdminAccountStatus: () => AdminAccountStatus,
|
|
25
30
|
AttendanceStatus: () => AttendanceStatus,
|
|
31
|
+
AttributeLabelCollectionPets: () => AttributeLabelCollectionPets,
|
|
32
|
+
AttributeLabelCommon: () => AttributeLabelCommon,
|
|
33
|
+
AttributeLabelUoiSportsBasketball: () => AttributeLabelUoiSportsBasketball,
|
|
34
|
+
AttributeLabelUoiSportsTennis: () => AttributeLabelUoiSportsTennis,
|
|
26
35
|
BasketballPosition: () => BasketballPosition,
|
|
27
36
|
BuddyingStatus: () => BuddyingStatus,
|
|
28
37
|
CategoryName: () => CategoryName,
|
|
@@ -300,7 +309,16 @@ var FollowingStatus = /* @__PURE__ */ ((FollowingStatus2) => {
|
|
|
300
309
|
return FollowingStatus2;
|
|
301
310
|
})(FollowingStatus || {});
|
|
302
311
|
|
|
303
|
-
// src/attribute/common.ts
|
|
312
|
+
// src/attribute/common/label.ts
|
|
313
|
+
var AttributeLabelCommon = /* @__PURE__ */ ((AttributeLabelCommon2) => {
|
|
314
|
+
AttributeLabelCommon2[AttributeLabelCommon2["Handedness"] = 0] = "Handedness";
|
|
315
|
+
return AttributeLabelCommon2;
|
|
316
|
+
})(AttributeLabelCommon || {});
|
|
317
|
+
var ATTRIBUTE_LABEL_COMMON = {
|
|
318
|
+
[0 /* Handedness */]: "Handedness"
|
|
319
|
+
};
|
|
320
|
+
|
|
321
|
+
// src/attribute/common/common.ts
|
|
304
322
|
var Handedness = /* @__PURE__ */ ((Handedness2) => {
|
|
305
323
|
Handedness2[Handedness2["None"] = 0] = "None";
|
|
306
324
|
Handedness2[Handedness2["Left"] = 1] = "Left";
|
|
@@ -308,7 +326,73 @@ var Handedness = /* @__PURE__ */ ((Handedness2) => {
|
|
|
308
326
|
return Handedness2;
|
|
309
327
|
})(Handedness || {});
|
|
310
328
|
|
|
311
|
-
// src/
|
|
329
|
+
// src/interest/category.ts
|
|
330
|
+
var CategoryName = /* @__PURE__ */ ((CategoryName2) => {
|
|
331
|
+
CategoryName2["Sports"] = "sports";
|
|
332
|
+
CategoryName2["Pets"] = "pets";
|
|
333
|
+
CategoryName2["Music"] = "music";
|
|
334
|
+
CategoryName2["Dancing"] = "dancing";
|
|
335
|
+
CategoryName2["Food"] = "food";
|
|
336
|
+
CategoryName2["Photography"] = "photography";
|
|
337
|
+
CategoryName2["Tourism"] = "tourism";
|
|
338
|
+
CategoryName2["Other"] = "other";
|
|
339
|
+
CategoryName2["None"] = "";
|
|
340
|
+
return CategoryName2;
|
|
341
|
+
})(CategoryName || {});
|
|
342
|
+
|
|
343
|
+
// src/interest/interestByCategory/interest.ts
|
|
344
|
+
var InterestNameNone = "";
|
|
345
|
+
|
|
346
|
+
// src/interest/interestByCategory/sports.ts
|
|
347
|
+
var SportsInterestName = /* @__PURE__ */ ((SportsInterestName2) => {
|
|
348
|
+
SportsInterestName2["Tennis"] = "tennis";
|
|
349
|
+
SportsInterestName2["Pickleball"] = "pickleball";
|
|
350
|
+
SportsInterestName2["Basketball"] = "basketball";
|
|
351
|
+
SportsInterestName2["Golf"] = "golf";
|
|
352
|
+
SportsInterestName2["Hiking"] = "hiking";
|
|
353
|
+
SportsInterestName2["Running"] = "running";
|
|
354
|
+
SportsInterestName2["Gym"] = "gym";
|
|
355
|
+
SportsInterestName2["Baseball"] = "baseball";
|
|
356
|
+
SportsInterestName2["Biking"] = "biking";
|
|
357
|
+
SportsInterestName2["Yoga"] = "yoga";
|
|
358
|
+
SportsInterestName2["TableTennis"] = "tabletennis";
|
|
359
|
+
SportsInterestName2["Football"] = "football";
|
|
360
|
+
SportsInterestName2["Soccer"] = "soccer";
|
|
361
|
+
SportsInterestName2["Badminton"] = "badminton";
|
|
362
|
+
SportsInterestName2["Skiing"] = "skiing";
|
|
363
|
+
SportsInterestName2["Surfing"] = "surfing";
|
|
364
|
+
SportsInterestName2["Swimming"] = "swimming";
|
|
365
|
+
SportsInterestName2["Hockey"] = "hockey";
|
|
366
|
+
SportsInterestName2["Other"] = "other";
|
|
367
|
+
return SportsInterestName2;
|
|
368
|
+
})(SportsInterestName || {});
|
|
369
|
+
|
|
370
|
+
// src/interest/interestByCategory/pets.ts
|
|
371
|
+
var PetsInterestName = /* @__PURE__ */ ((PetsInterestName2) => {
|
|
372
|
+
PetsInterestName2["Dog"] = "dog";
|
|
373
|
+
PetsInterestName2["Cat"] = "cat";
|
|
374
|
+
PetsInterestName2["Other"] = "other";
|
|
375
|
+
return PetsInterestName2;
|
|
376
|
+
})(PetsInterestName || {});
|
|
377
|
+
|
|
378
|
+
// src/interest/interestByCategory/music.ts
|
|
379
|
+
var MusicInterestName = /* @__PURE__ */ ((MusicInterestName2) => {
|
|
380
|
+
MusicInterestName2["Guitar"] = "guitar";
|
|
381
|
+
MusicInterestName2["Singing"] = "singing";
|
|
382
|
+
MusicInterestName2["Other"] = "other";
|
|
383
|
+
return MusicInterestName2;
|
|
384
|
+
})(MusicInterestName || {});
|
|
385
|
+
|
|
386
|
+
// src/attribute/uoi/sports/basketball/label.ts
|
|
387
|
+
var AttributeLabelUoiSportsBasketball = /* @__PURE__ */ ((AttributeLabelUoiSportsBasketball2) => {
|
|
388
|
+
AttributeLabelUoiSportsBasketball2[AttributeLabelUoiSportsBasketball2["Positions"] = 0] = "Positions";
|
|
389
|
+
return AttributeLabelUoiSportsBasketball2;
|
|
390
|
+
})(AttributeLabelUoiSportsBasketball || {});
|
|
391
|
+
var ATTRIBUTE_LABEL_UOI_SPORTS_BASKETBALL = {
|
|
392
|
+
[0 /* Positions */]: "Positions"
|
|
393
|
+
};
|
|
394
|
+
|
|
395
|
+
// src/attribute/uoi/sports/basketball/basketball.ts
|
|
312
396
|
var BasketballPosition = /* @__PURE__ */ ((BasketballPosition2) => {
|
|
313
397
|
BasketballPosition2[BasketballPosition2["None"] = 0] = "None";
|
|
314
398
|
BasketballPosition2[BasketballPosition2["SG"] = 1] = "SG";
|
|
@@ -318,6 +402,19 @@ var BasketballPosition = /* @__PURE__ */ ((BasketballPosition2) => {
|
|
|
318
402
|
BasketballPosition2[BasketballPosition2["PF"] = 16] = "PF";
|
|
319
403
|
return BasketballPosition2;
|
|
320
404
|
})(BasketballPosition || {});
|
|
405
|
+
|
|
406
|
+
// src/attribute/uoi/sports/tennis/label.ts
|
|
407
|
+
var AttributeLabelUoiSportsTennis = /* @__PURE__ */ ((AttributeLabelUoiSportsTennis2) => {
|
|
408
|
+
AttributeLabelUoiSportsTennis2[AttributeLabelUoiSportsTennis2["Level"] = 0] = "Level";
|
|
409
|
+
AttributeLabelUoiSportsTennis2[AttributeLabelUoiSportsTennis2["Bankhand"] = 1] = "Bankhand";
|
|
410
|
+
return AttributeLabelUoiSportsTennis2;
|
|
411
|
+
})(AttributeLabelUoiSportsTennis || {});
|
|
412
|
+
var ATTRIBUTE_LABEL_UOI_SPORTS_TENNIS = {
|
|
413
|
+
[0 /* Level */]: "Level",
|
|
414
|
+
[1 /* Bankhand */]: "Bankhand"
|
|
415
|
+
};
|
|
416
|
+
|
|
417
|
+
// src/attribute/uoi/sports/tennis/tennis.ts
|
|
321
418
|
var TennisBackhand = /* @__PURE__ */ ((TennisBackhand2) => {
|
|
322
419
|
TennisBackhand2[TennisBackhand2["None"] = 0] = "None";
|
|
323
420
|
TennisBackhand2[TennisBackhand2["Single"] = 1] = "Single";
|
|
@@ -339,7 +436,18 @@ var TennisLevel = /* @__PURE__ */ ((TennisLevel2) => {
|
|
|
339
436
|
return TennisLevel2;
|
|
340
437
|
})(TennisLevel || {});
|
|
341
438
|
|
|
342
|
-
// src/attribute/
|
|
439
|
+
// src/attribute/uoi/sports/label.ts
|
|
440
|
+
var ATTRIBUTE_LABEL_UOI_SPORTS = {
|
|
441
|
+
["tennis" /* Tennis */]: ATTRIBUTE_LABEL_UOI_SPORTS_TENNIS,
|
|
442
|
+
["basketball" /* Basketball */]: ATTRIBUTE_LABEL_UOI_SPORTS_BASKETBALL
|
|
443
|
+
};
|
|
444
|
+
|
|
445
|
+
// src/attribute/uoi/label.ts
|
|
446
|
+
var ATTRIBUTE_LABEL_UOI = {
|
|
447
|
+
["sports" /* Sports */]: ATTRIBUTE_LABEL_UOI_SPORTS
|
|
448
|
+
};
|
|
449
|
+
|
|
450
|
+
// src/attribute/collection/pets/pets.ts
|
|
343
451
|
var PetGender = /* @__PURE__ */ ((PetGender2) => {
|
|
344
452
|
PetGender2[PetGender2["None"] = 0] = "None";
|
|
345
453
|
PetGender2[PetGender2["Male"] = 1] = "Male";
|
|
@@ -347,6 +455,18 @@ var PetGender = /* @__PURE__ */ ((PetGender2) => {
|
|
|
347
455
|
return PetGender2;
|
|
348
456
|
})(PetGender || {});
|
|
349
457
|
|
|
458
|
+
// src/attribute/collection/pets/label.ts
|
|
459
|
+
var AttributeLabelCollectionPets = /* @__PURE__ */ ((AttributeLabelCollectionPets2) => {
|
|
460
|
+
AttributeLabelCollectionPets2[AttributeLabelCollectionPets2["Breed"] = 0] = "Breed";
|
|
461
|
+
AttributeLabelCollectionPets2[AttributeLabelCollectionPets2["Dob"] = 1] = "Dob";
|
|
462
|
+
AttributeLabelCollectionPets2[AttributeLabelCollectionPets2["Father"] = 2] = "Father";
|
|
463
|
+
AttributeLabelCollectionPets2[AttributeLabelCollectionPets2["Mother"] = 3] = "Mother";
|
|
464
|
+
AttributeLabelCollectionPets2[AttributeLabelCollectionPets2["Gender"] = 4] = "Gender";
|
|
465
|
+
AttributeLabelCollectionPets2[AttributeLabelCollectionPets2["Height"] = 5] = "Height";
|
|
466
|
+
AttributeLabelCollectionPets2[AttributeLabelCollectionPets2["Weight"] = 6] = "Weight";
|
|
467
|
+
return AttributeLabelCollectionPets2;
|
|
468
|
+
})(AttributeLabelCollectionPets || {});
|
|
469
|
+
|
|
350
470
|
// src/pageUpdate.ts
|
|
351
471
|
var PageUpdateType = /* @__PURE__ */ ((PageUpdateType2) => {
|
|
352
472
|
PageUpdateType2[PageUpdateType2["None"] = 0] = "None";
|
|
@@ -370,68 +490,20 @@ var SubjectType = /* @__PURE__ */ ((SubjectType2) => {
|
|
|
370
490
|
SubjectType2[SubjectType2["Reply"] = 4] = "Reply";
|
|
371
491
|
return SubjectType2;
|
|
372
492
|
})(SubjectType || {});
|
|
373
|
-
|
|
374
|
-
// src/interest/category.ts
|
|
375
|
-
var CategoryName = /* @__PURE__ */ ((CategoryName2) => {
|
|
376
|
-
CategoryName2["Sports"] = "sports";
|
|
377
|
-
CategoryName2["Pets"] = "pets";
|
|
378
|
-
CategoryName2["Music"] = "music";
|
|
379
|
-
CategoryName2["Dancing"] = "dancing";
|
|
380
|
-
CategoryName2["Food"] = "food";
|
|
381
|
-
CategoryName2["Photography"] = "photography";
|
|
382
|
-
CategoryName2["Tourism"] = "tourism";
|
|
383
|
-
CategoryName2["Other"] = "other";
|
|
384
|
-
CategoryName2["None"] = "";
|
|
385
|
-
return CategoryName2;
|
|
386
|
-
})(CategoryName || {});
|
|
387
|
-
|
|
388
|
-
// src/interest/interestByCategory/interest.ts
|
|
389
|
-
var InterestNameNone = "";
|
|
390
|
-
|
|
391
|
-
// src/interest/interestByCategory/sports.ts
|
|
392
|
-
var SportsInterestName = /* @__PURE__ */ ((SportsInterestName2) => {
|
|
393
|
-
SportsInterestName2["Tennis"] = "tennis";
|
|
394
|
-
SportsInterestName2["Pickleball"] = "pickleball";
|
|
395
|
-
SportsInterestName2["Basketball"] = "basketball";
|
|
396
|
-
SportsInterestName2["Golf"] = "golf";
|
|
397
|
-
SportsInterestName2["Hiking"] = "hiking";
|
|
398
|
-
SportsInterestName2["Running"] = "running";
|
|
399
|
-
SportsInterestName2["Gym"] = "gym";
|
|
400
|
-
SportsInterestName2["Baseball"] = "baseball";
|
|
401
|
-
SportsInterestName2["Biking"] = "biking";
|
|
402
|
-
SportsInterestName2["Yoga"] = "yoga";
|
|
403
|
-
SportsInterestName2["TableTennis"] = "tabletennis";
|
|
404
|
-
SportsInterestName2["Football"] = "football";
|
|
405
|
-
SportsInterestName2["Soccer"] = "soccer";
|
|
406
|
-
SportsInterestName2["Badminton"] = "badminton";
|
|
407
|
-
SportsInterestName2["Skiing"] = "skiing";
|
|
408
|
-
SportsInterestName2["Surfing"] = "surfing";
|
|
409
|
-
SportsInterestName2["Swimming"] = "swimming";
|
|
410
|
-
SportsInterestName2["Hockey"] = "hockey";
|
|
411
|
-
SportsInterestName2["Other"] = "other";
|
|
412
|
-
return SportsInterestName2;
|
|
413
|
-
})(SportsInterestName || {});
|
|
414
|
-
|
|
415
|
-
// src/interest/interestByCategory/pets.ts
|
|
416
|
-
var PetsInterestName = /* @__PURE__ */ ((PetsInterestName2) => {
|
|
417
|
-
PetsInterestName2["Dog"] = "dog";
|
|
418
|
-
PetsInterestName2["Cat"] = "cat";
|
|
419
|
-
PetsInterestName2["Other"] = "other";
|
|
420
|
-
return PetsInterestName2;
|
|
421
|
-
})(PetsInterestName || {});
|
|
422
|
-
|
|
423
|
-
// src/interest/interestByCategory/music.ts
|
|
424
|
-
var MusicInterestName = /* @__PURE__ */ ((MusicInterestName2) => {
|
|
425
|
-
MusicInterestName2["Guitar"] = "guitar";
|
|
426
|
-
MusicInterestName2["Singing"] = "singing";
|
|
427
|
-
MusicInterestName2["Other"] = "other";
|
|
428
|
-
return MusicInterestName2;
|
|
429
|
-
})(MusicInterestName || {});
|
|
430
493
|
// Annotate the CommonJS export names for ESM import in node:
|
|
431
494
|
0 && (module.exports = {
|
|
495
|
+
ATTRIBUTE_LABEL_COMMON,
|
|
496
|
+
ATTRIBUTE_LABEL_UOI,
|
|
497
|
+
ATTRIBUTE_LABEL_UOI_SPORTS,
|
|
498
|
+
ATTRIBUTE_LABEL_UOI_SPORTS_BASKETBALL,
|
|
499
|
+
ATTRIBUTE_LABEL_UOI_SPORTS_TENNIS,
|
|
432
500
|
AccountStatus,
|
|
433
501
|
AdminAccountStatus,
|
|
434
502
|
AttendanceStatus,
|
|
503
|
+
AttributeLabelCollectionPets,
|
|
504
|
+
AttributeLabelCommon,
|
|
505
|
+
AttributeLabelUoiSportsBasketball,
|
|
506
|
+
AttributeLabelUoiSportsTennis,
|
|
435
507
|
BasketballPosition,
|
|
436
508
|
BuddyingStatus,
|
|
437
509
|
CategoryName,
|
package/dist/index.mjs
CHANGED
|
@@ -238,7 +238,16 @@ var FollowingStatus = /* @__PURE__ */ ((FollowingStatus2) => {
|
|
|
238
238
|
return FollowingStatus2;
|
|
239
239
|
})(FollowingStatus || {});
|
|
240
240
|
|
|
241
|
-
// src/attribute/common.ts
|
|
241
|
+
// src/attribute/common/label.ts
|
|
242
|
+
var AttributeLabelCommon = /* @__PURE__ */ ((AttributeLabelCommon2) => {
|
|
243
|
+
AttributeLabelCommon2[AttributeLabelCommon2["Handedness"] = 0] = "Handedness";
|
|
244
|
+
return AttributeLabelCommon2;
|
|
245
|
+
})(AttributeLabelCommon || {});
|
|
246
|
+
var ATTRIBUTE_LABEL_COMMON = {
|
|
247
|
+
[0 /* Handedness */]: "Handedness"
|
|
248
|
+
};
|
|
249
|
+
|
|
250
|
+
// src/attribute/common/common.ts
|
|
242
251
|
var Handedness = /* @__PURE__ */ ((Handedness2) => {
|
|
243
252
|
Handedness2[Handedness2["None"] = 0] = "None";
|
|
244
253
|
Handedness2[Handedness2["Left"] = 1] = "Left";
|
|
@@ -246,7 +255,73 @@ var Handedness = /* @__PURE__ */ ((Handedness2) => {
|
|
|
246
255
|
return Handedness2;
|
|
247
256
|
})(Handedness || {});
|
|
248
257
|
|
|
249
|
-
// src/
|
|
258
|
+
// src/interest/category.ts
|
|
259
|
+
var CategoryName = /* @__PURE__ */ ((CategoryName2) => {
|
|
260
|
+
CategoryName2["Sports"] = "sports";
|
|
261
|
+
CategoryName2["Pets"] = "pets";
|
|
262
|
+
CategoryName2["Music"] = "music";
|
|
263
|
+
CategoryName2["Dancing"] = "dancing";
|
|
264
|
+
CategoryName2["Food"] = "food";
|
|
265
|
+
CategoryName2["Photography"] = "photography";
|
|
266
|
+
CategoryName2["Tourism"] = "tourism";
|
|
267
|
+
CategoryName2["Other"] = "other";
|
|
268
|
+
CategoryName2["None"] = "";
|
|
269
|
+
return CategoryName2;
|
|
270
|
+
})(CategoryName || {});
|
|
271
|
+
|
|
272
|
+
// src/interest/interestByCategory/interest.ts
|
|
273
|
+
var InterestNameNone = "";
|
|
274
|
+
|
|
275
|
+
// src/interest/interestByCategory/sports.ts
|
|
276
|
+
var SportsInterestName = /* @__PURE__ */ ((SportsInterestName2) => {
|
|
277
|
+
SportsInterestName2["Tennis"] = "tennis";
|
|
278
|
+
SportsInterestName2["Pickleball"] = "pickleball";
|
|
279
|
+
SportsInterestName2["Basketball"] = "basketball";
|
|
280
|
+
SportsInterestName2["Golf"] = "golf";
|
|
281
|
+
SportsInterestName2["Hiking"] = "hiking";
|
|
282
|
+
SportsInterestName2["Running"] = "running";
|
|
283
|
+
SportsInterestName2["Gym"] = "gym";
|
|
284
|
+
SportsInterestName2["Baseball"] = "baseball";
|
|
285
|
+
SportsInterestName2["Biking"] = "biking";
|
|
286
|
+
SportsInterestName2["Yoga"] = "yoga";
|
|
287
|
+
SportsInterestName2["TableTennis"] = "tabletennis";
|
|
288
|
+
SportsInterestName2["Football"] = "football";
|
|
289
|
+
SportsInterestName2["Soccer"] = "soccer";
|
|
290
|
+
SportsInterestName2["Badminton"] = "badminton";
|
|
291
|
+
SportsInterestName2["Skiing"] = "skiing";
|
|
292
|
+
SportsInterestName2["Surfing"] = "surfing";
|
|
293
|
+
SportsInterestName2["Swimming"] = "swimming";
|
|
294
|
+
SportsInterestName2["Hockey"] = "hockey";
|
|
295
|
+
SportsInterestName2["Other"] = "other";
|
|
296
|
+
return SportsInterestName2;
|
|
297
|
+
})(SportsInterestName || {});
|
|
298
|
+
|
|
299
|
+
// src/interest/interestByCategory/pets.ts
|
|
300
|
+
var PetsInterestName = /* @__PURE__ */ ((PetsInterestName2) => {
|
|
301
|
+
PetsInterestName2["Dog"] = "dog";
|
|
302
|
+
PetsInterestName2["Cat"] = "cat";
|
|
303
|
+
PetsInterestName2["Other"] = "other";
|
|
304
|
+
return PetsInterestName2;
|
|
305
|
+
})(PetsInterestName || {});
|
|
306
|
+
|
|
307
|
+
// src/interest/interestByCategory/music.ts
|
|
308
|
+
var MusicInterestName = /* @__PURE__ */ ((MusicInterestName2) => {
|
|
309
|
+
MusicInterestName2["Guitar"] = "guitar";
|
|
310
|
+
MusicInterestName2["Singing"] = "singing";
|
|
311
|
+
MusicInterestName2["Other"] = "other";
|
|
312
|
+
return MusicInterestName2;
|
|
313
|
+
})(MusicInterestName || {});
|
|
314
|
+
|
|
315
|
+
// src/attribute/uoi/sports/basketball/label.ts
|
|
316
|
+
var AttributeLabelUoiSportsBasketball = /* @__PURE__ */ ((AttributeLabelUoiSportsBasketball2) => {
|
|
317
|
+
AttributeLabelUoiSportsBasketball2[AttributeLabelUoiSportsBasketball2["Positions"] = 0] = "Positions";
|
|
318
|
+
return AttributeLabelUoiSportsBasketball2;
|
|
319
|
+
})(AttributeLabelUoiSportsBasketball || {});
|
|
320
|
+
var ATTRIBUTE_LABEL_UOI_SPORTS_BASKETBALL = {
|
|
321
|
+
[0 /* Positions */]: "Positions"
|
|
322
|
+
};
|
|
323
|
+
|
|
324
|
+
// src/attribute/uoi/sports/basketball/basketball.ts
|
|
250
325
|
var BasketballPosition = /* @__PURE__ */ ((BasketballPosition2) => {
|
|
251
326
|
BasketballPosition2[BasketballPosition2["None"] = 0] = "None";
|
|
252
327
|
BasketballPosition2[BasketballPosition2["SG"] = 1] = "SG";
|
|
@@ -256,6 +331,19 @@ var BasketballPosition = /* @__PURE__ */ ((BasketballPosition2) => {
|
|
|
256
331
|
BasketballPosition2[BasketballPosition2["PF"] = 16] = "PF";
|
|
257
332
|
return BasketballPosition2;
|
|
258
333
|
})(BasketballPosition || {});
|
|
334
|
+
|
|
335
|
+
// src/attribute/uoi/sports/tennis/label.ts
|
|
336
|
+
var AttributeLabelUoiSportsTennis = /* @__PURE__ */ ((AttributeLabelUoiSportsTennis2) => {
|
|
337
|
+
AttributeLabelUoiSportsTennis2[AttributeLabelUoiSportsTennis2["Level"] = 0] = "Level";
|
|
338
|
+
AttributeLabelUoiSportsTennis2[AttributeLabelUoiSportsTennis2["Bankhand"] = 1] = "Bankhand";
|
|
339
|
+
return AttributeLabelUoiSportsTennis2;
|
|
340
|
+
})(AttributeLabelUoiSportsTennis || {});
|
|
341
|
+
var ATTRIBUTE_LABEL_UOI_SPORTS_TENNIS = {
|
|
342
|
+
[0 /* Level */]: "Level",
|
|
343
|
+
[1 /* Bankhand */]: "Bankhand"
|
|
344
|
+
};
|
|
345
|
+
|
|
346
|
+
// src/attribute/uoi/sports/tennis/tennis.ts
|
|
259
347
|
var TennisBackhand = /* @__PURE__ */ ((TennisBackhand2) => {
|
|
260
348
|
TennisBackhand2[TennisBackhand2["None"] = 0] = "None";
|
|
261
349
|
TennisBackhand2[TennisBackhand2["Single"] = 1] = "Single";
|
|
@@ -277,7 +365,18 @@ var TennisLevel = /* @__PURE__ */ ((TennisLevel2) => {
|
|
|
277
365
|
return TennisLevel2;
|
|
278
366
|
})(TennisLevel || {});
|
|
279
367
|
|
|
280
|
-
// src/attribute/
|
|
368
|
+
// src/attribute/uoi/sports/label.ts
|
|
369
|
+
var ATTRIBUTE_LABEL_UOI_SPORTS = {
|
|
370
|
+
["tennis" /* Tennis */]: ATTRIBUTE_LABEL_UOI_SPORTS_TENNIS,
|
|
371
|
+
["basketball" /* Basketball */]: ATTRIBUTE_LABEL_UOI_SPORTS_BASKETBALL
|
|
372
|
+
};
|
|
373
|
+
|
|
374
|
+
// src/attribute/uoi/label.ts
|
|
375
|
+
var ATTRIBUTE_LABEL_UOI = {
|
|
376
|
+
["sports" /* Sports */]: ATTRIBUTE_LABEL_UOI_SPORTS
|
|
377
|
+
};
|
|
378
|
+
|
|
379
|
+
// src/attribute/collection/pets/pets.ts
|
|
281
380
|
var PetGender = /* @__PURE__ */ ((PetGender2) => {
|
|
282
381
|
PetGender2[PetGender2["None"] = 0] = "None";
|
|
283
382
|
PetGender2[PetGender2["Male"] = 1] = "Male";
|
|
@@ -285,6 +384,18 @@ var PetGender = /* @__PURE__ */ ((PetGender2) => {
|
|
|
285
384
|
return PetGender2;
|
|
286
385
|
})(PetGender || {});
|
|
287
386
|
|
|
387
|
+
// src/attribute/collection/pets/label.ts
|
|
388
|
+
var AttributeLabelCollectionPets = /* @__PURE__ */ ((AttributeLabelCollectionPets2) => {
|
|
389
|
+
AttributeLabelCollectionPets2[AttributeLabelCollectionPets2["Breed"] = 0] = "Breed";
|
|
390
|
+
AttributeLabelCollectionPets2[AttributeLabelCollectionPets2["Dob"] = 1] = "Dob";
|
|
391
|
+
AttributeLabelCollectionPets2[AttributeLabelCollectionPets2["Father"] = 2] = "Father";
|
|
392
|
+
AttributeLabelCollectionPets2[AttributeLabelCollectionPets2["Mother"] = 3] = "Mother";
|
|
393
|
+
AttributeLabelCollectionPets2[AttributeLabelCollectionPets2["Gender"] = 4] = "Gender";
|
|
394
|
+
AttributeLabelCollectionPets2[AttributeLabelCollectionPets2["Height"] = 5] = "Height";
|
|
395
|
+
AttributeLabelCollectionPets2[AttributeLabelCollectionPets2["Weight"] = 6] = "Weight";
|
|
396
|
+
return AttributeLabelCollectionPets2;
|
|
397
|
+
})(AttributeLabelCollectionPets || {});
|
|
398
|
+
|
|
288
399
|
// src/pageUpdate.ts
|
|
289
400
|
var PageUpdateType = /* @__PURE__ */ ((PageUpdateType2) => {
|
|
290
401
|
PageUpdateType2[PageUpdateType2["None"] = 0] = "None";
|
|
@@ -308,67 +419,19 @@ var SubjectType = /* @__PURE__ */ ((SubjectType2) => {
|
|
|
308
419
|
SubjectType2[SubjectType2["Reply"] = 4] = "Reply";
|
|
309
420
|
return SubjectType2;
|
|
310
421
|
})(SubjectType || {});
|
|
311
|
-
|
|
312
|
-
// src/interest/category.ts
|
|
313
|
-
var CategoryName = /* @__PURE__ */ ((CategoryName2) => {
|
|
314
|
-
CategoryName2["Sports"] = "sports";
|
|
315
|
-
CategoryName2["Pets"] = "pets";
|
|
316
|
-
CategoryName2["Music"] = "music";
|
|
317
|
-
CategoryName2["Dancing"] = "dancing";
|
|
318
|
-
CategoryName2["Food"] = "food";
|
|
319
|
-
CategoryName2["Photography"] = "photography";
|
|
320
|
-
CategoryName2["Tourism"] = "tourism";
|
|
321
|
-
CategoryName2["Other"] = "other";
|
|
322
|
-
CategoryName2["None"] = "";
|
|
323
|
-
return CategoryName2;
|
|
324
|
-
})(CategoryName || {});
|
|
325
|
-
|
|
326
|
-
// src/interest/interestByCategory/interest.ts
|
|
327
|
-
var InterestNameNone = "";
|
|
328
|
-
|
|
329
|
-
// src/interest/interestByCategory/sports.ts
|
|
330
|
-
var SportsInterestName = /* @__PURE__ */ ((SportsInterestName2) => {
|
|
331
|
-
SportsInterestName2["Tennis"] = "tennis";
|
|
332
|
-
SportsInterestName2["Pickleball"] = "pickleball";
|
|
333
|
-
SportsInterestName2["Basketball"] = "basketball";
|
|
334
|
-
SportsInterestName2["Golf"] = "golf";
|
|
335
|
-
SportsInterestName2["Hiking"] = "hiking";
|
|
336
|
-
SportsInterestName2["Running"] = "running";
|
|
337
|
-
SportsInterestName2["Gym"] = "gym";
|
|
338
|
-
SportsInterestName2["Baseball"] = "baseball";
|
|
339
|
-
SportsInterestName2["Biking"] = "biking";
|
|
340
|
-
SportsInterestName2["Yoga"] = "yoga";
|
|
341
|
-
SportsInterestName2["TableTennis"] = "tabletennis";
|
|
342
|
-
SportsInterestName2["Football"] = "football";
|
|
343
|
-
SportsInterestName2["Soccer"] = "soccer";
|
|
344
|
-
SportsInterestName2["Badminton"] = "badminton";
|
|
345
|
-
SportsInterestName2["Skiing"] = "skiing";
|
|
346
|
-
SportsInterestName2["Surfing"] = "surfing";
|
|
347
|
-
SportsInterestName2["Swimming"] = "swimming";
|
|
348
|
-
SportsInterestName2["Hockey"] = "hockey";
|
|
349
|
-
SportsInterestName2["Other"] = "other";
|
|
350
|
-
return SportsInterestName2;
|
|
351
|
-
})(SportsInterestName || {});
|
|
352
|
-
|
|
353
|
-
// src/interest/interestByCategory/pets.ts
|
|
354
|
-
var PetsInterestName = /* @__PURE__ */ ((PetsInterestName2) => {
|
|
355
|
-
PetsInterestName2["Dog"] = "dog";
|
|
356
|
-
PetsInterestName2["Cat"] = "cat";
|
|
357
|
-
PetsInterestName2["Other"] = "other";
|
|
358
|
-
return PetsInterestName2;
|
|
359
|
-
})(PetsInterestName || {});
|
|
360
|
-
|
|
361
|
-
// src/interest/interestByCategory/music.ts
|
|
362
|
-
var MusicInterestName = /* @__PURE__ */ ((MusicInterestName2) => {
|
|
363
|
-
MusicInterestName2["Guitar"] = "guitar";
|
|
364
|
-
MusicInterestName2["Singing"] = "singing";
|
|
365
|
-
MusicInterestName2["Other"] = "other";
|
|
366
|
-
return MusicInterestName2;
|
|
367
|
-
})(MusicInterestName || {});
|
|
368
422
|
export {
|
|
423
|
+
ATTRIBUTE_LABEL_COMMON,
|
|
424
|
+
ATTRIBUTE_LABEL_UOI,
|
|
425
|
+
ATTRIBUTE_LABEL_UOI_SPORTS,
|
|
426
|
+
ATTRIBUTE_LABEL_UOI_SPORTS_BASKETBALL,
|
|
427
|
+
ATTRIBUTE_LABEL_UOI_SPORTS_TENNIS,
|
|
369
428
|
AccountStatus,
|
|
370
429
|
AdminAccountStatus,
|
|
371
430
|
AttendanceStatus,
|
|
431
|
+
AttributeLabelCollectionPets,
|
|
432
|
+
AttributeLabelCommon,
|
|
433
|
+
AttributeLabelUoiSportsBasketball,
|
|
434
|
+
AttributeLabelUoiSportsTennis,
|
|
372
435
|
BasketballPosition,
|
|
373
436
|
BuddyingStatus,
|
|
374
437
|
CategoryName,
|
package/package.json
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './pets';
|
package/src/attribute/index.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
export * from './common';
|
|
2
|
-
export * from './
|
|
3
|
-
export * from './
|
|
2
|
+
export * from './uoi';
|
|
3
|
+
export * from './collection';
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { SportsInterestName } from '../../../interest';
|
|
2
|
+
import { ATTRIBUTE_LABEL_UOI_SPORTS_BASKETBALL } from './basketball';
|
|
3
|
+
import { ATTRIBUTE_LABEL_UOI_SPORTS_TENNIS } from './tennis';
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
export const ATTRIBUTE_LABEL_UOI_SPORTS = {
|
|
7
|
+
[SportsInterestName.Tennis]: ATTRIBUTE_LABEL_UOI_SPORTS_TENNIS,
|
|
8
|
+
[SportsInterestName.Basketball]: ATTRIBUTE_LABEL_UOI_SPORTS_BASKETBALL,
|
|
9
|
+
};
|
|
File without changes
|