wenum 1.20.0 → 1.22.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 +82 -9
- package/dist/index.d.ts +82 -9
- package/dist/index.js +145 -60
- package/dist/index.mjs +135 -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 +3 -2
- package/src/attribute/label.ts +9 -0
- 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,67 @@ 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
|
+
|
|
300
|
+
declare const ATTRIBUTE_LABEL: {
|
|
301
|
+
2: {
|
|
302
|
+
sports: {
|
|
303
|
+
tennis: {
|
|
304
|
+
0: string;
|
|
305
|
+
1: string;
|
|
306
|
+
};
|
|
307
|
+
basketball: {
|
|
308
|
+
0: string;
|
|
309
|
+
};
|
|
310
|
+
};
|
|
311
|
+
};
|
|
312
|
+
5: {
|
|
313
|
+
pets: typeof AttributeLabelCollectionPets;
|
|
314
|
+
};
|
|
315
|
+
};
|
|
316
|
+
|
|
244
317
|
declare enum PageUpdateType {
|
|
245
318
|
None = 0,
|
|
246
319
|
CreatePost = 1,
|
|
@@ -309,4 +382,4 @@ declare enum SportsInterestName {
|
|
|
309
382
|
type InterestName = SportsInterestName | PetsInterestName | MusicInterestName | '';
|
|
310
383
|
declare const InterestNameNone: InterestName;
|
|
311
384
|
|
|
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 };
|
|
385
|
+
export { ATTRIBUTE_LABEL, 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,67 @@ 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
|
+
|
|
300
|
+
declare const ATTRIBUTE_LABEL: {
|
|
301
|
+
2: {
|
|
302
|
+
sports: {
|
|
303
|
+
tennis: {
|
|
304
|
+
0: string;
|
|
305
|
+
1: string;
|
|
306
|
+
};
|
|
307
|
+
basketball: {
|
|
308
|
+
0: string;
|
|
309
|
+
};
|
|
310
|
+
};
|
|
311
|
+
};
|
|
312
|
+
5: {
|
|
313
|
+
pets: typeof AttributeLabelCollectionPets;
|
|
314
|
+
};
|
|
315
|
+
};
|
|
316
|
+
|
|
244
317
|
declare enum PageUpdateType {
|
|
245
318
|
None = 0,
|
|
246
319
|
CreatePost = 1,
|
|
@@ -309,4 +382,4 @@ declare enum SportsInterestName {
|
|
|
309
382
|
type InterestName = SportsInterestName | PetsInterestName | MusicInterestName | '';
|
|
310
383
|
declare const InterestNameNone: InterestName;
|
|
311
384
|
|
|
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 };
|
|
385
|
+
export { ATTRIBUTE_LABEL, 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,19 @@ 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: () => ATTRIBUTE_LABEL,
|
|
24
|
+
ATTRIBUTE_LABEL_COMMON: () => ATTRIBUTE_LABEL_COMMON,
|
|
25
|
+
ATTRIBUTE_LABEL_UOI: () => ATTRIBUTE_LABEL_UOI,
|
|
26
|
+
ATTRIBUTE_LABEL_UOI_SPORTS: () => ATTRIBUTE_LABEL_UOI_SPORTS,
|
|
27
|
+
ATTRIBUTE_LABEL_UOI_SPORTS_BASKETBALL: () => ATTRIBUTE_LABEL_UOI_SPORTS_BASKETBALL,
|
|
28
|
+
ATTRIBUTE_LABEL_UOI_SPORTS_TENNIS: () => ATTRIBUTE_LABEL_UOI_SPORTS_TENNIS,
|
|
23
29
|
AccountStatus: () => AccountStatus,
|
|
24
30
|
AdminAccountStatus: () => AdminAccountStatus,
|
|
25
31
|
AttendanceStatus: () => AttendanceStatus,
|
|
32
|
+
AttributeLabelCollectionPets: () => AttributeLabelCollectionPets,
|
|
33
|
+
AttributeLabelCommon: () => AttributeLabelCommon,
|
|
34
|
+
AttributeLabelUoiSportsBasketball: () => AttributeLabelUoiSportsBasketball,
|
|
35
|
+
AttributeLabelUoiSportsTennis: () => AttributeLabelUoiSportsTennis,
|
|
26
36
|
BasketballPosition: () => BasketballPosition,
|
|
27
37
|
BuddyingStatus: () => BuddyingStatus,
|
|
28
38
|
CategoryName: () => CategoryName,
|
|
@@ -300,7 +310,16 @@ var FollowingStatus = /* @__PURE__ */ ((FollowingStatus2) => {
|
|
|
300
310
|
return FollowingStatus2;
|
|
301
311
|
})(FollowingStatus || {});
|
|
302
312
|
|
|
303
|
-
// src/attribute/common.ts
|
|
313
|
+
// src/attribute/common/label.ts
|
|
314
|
+
var AttributeLabelCommon = /* @__PURE__ */ ((AttributeLabelCommon2) => {
|
|
315
|
+
AttributeLabelCommon2[AttributeLabelCommon2["Handedness"] = 0] = "Handedness";
|
|
316
|
+
return AttributeLabelCommon2;
|
|
317
|
+
})(AttributeLabelCommon || {});
|
|
318
|
+
var ATTRIBUTE_LABEL_COMMON = {
|
|
319
|
+
[0 /* Handedness */]: "Handedness"
|
|
320
|
+
};
|
|
321
|
+
|
|
322
|
+
// src/attribute/common/common.ts
|
|
304
323
|
var Handedness = /* @__PURE__ */ ((Handedness2) => {
|
|
305
324
|
Handedness2[Handedness2["None"] = 0] = "None";
|
|
306
325
|
Handedness2[Handedness2["Left"] = 1] = "Left";
|
|
@@ -308,7 +327,73 @@ var Handedness = /* @__PURE__ */ ((Handedness2) => {
|
|
|
308
327
|
return Handedness2;
|
|
309
328
|
})(Handedness || {});
|
|
310
329
|
|
|
311
|
-
// src/
|
|
330
|
+
// src/interest/category.ts
|
|
331
|
+
var CategoryName = /* @__PURE__ */ ((CategoryName2) => {
|
|
332
|
+
CategoryName2["Sports"] = "sports";
|
|
333
|
+
CategoryName2["Pets"] = "pets";
|
|
334
|
+
CategoryName2["Music"] = "music";
|
|
335
|
+
CategoryName2["Dancing"] = "dancing";
|
|
336
|
+
CategoryName2["Food"] = "food";
|
|
337
|
+
CategoryName2["Photography"] = "photography";
|
|
338
|
+
CategoryName2["Tourism"] = "tourism";
|
|
339
|
+
CategoryName2["Other"] = "other";
|
|
340
|
+
CategoryName2["None"] = "";
|
|
341
|
+
return CategoryName2;
|
|
342
|
+
})(CategoryName || {});
|
|
343
|
+
|
|
344
|
+
// src/interest/interestByCategory/interest.ts
|
|
345
|
+
var InterestNameNone = "";
|
|
346
|
+
|
|
347
|
+
// src/interest/interestByCategory/sports.ts
|
|
348
|
+
var SportsInterestName = /* @__PURE__ */ ((SportsInterestName2) => {
|
|
349
|
+
SportsInterestName2["Tennis"] = "tennis";
|
|
350
|
+
SportsInterestName2["Pickleball"] = "pickleball";
|
|
351
|
+
SportsInterestName2["Basketball"] = "basketball";
|
|
352
|
+
SportsInterestName2["Golf"] = "golf";
|
|
353
|
+
SportsInterestName2["Hiking"] = "hiking";
|
|
354
|
+
SportsInterestName2["Running"] = "running";
|
|
355
|
+
SportsInterestName2["Gym"] = "gym";
|
|
356
|
+
SportsInterestName2["Baseball"] = "baseball";
|
|
357
|
+
SportsInterestName2["Biking"] = "biking";
|
|
358
|
+
SportsInterestName2["Yoga"] = "yoga";
|
|
359
|
+
SportsInterestName2["TableTennis"] = "tabletennis";
|
|
360
|
+
SportsInterestName2["Football"] = "football";
|
|
361
|
+
SportsInterestName2["Soccer"] = "soccer";
|
|
362
|
+
SportsInterestName2["Badminton"] = "badminton";
|
|
363
|
+
SportsInterestName2["Skiing"] = "skiing";
|
|
364
|
+
SportsInterestName2["Surfing"] = "surfing";
|
|
365
|
+
SportsInterestName2["Swimming"] = "swimming";
|
|
366
|
+
SportsInterestName2["Hockey"] = "hockey";
|
|
367
|
+
SportsInterestName2["Other"] = "other";
|
|
368
|
+
return SportsInterestName2;
|
|
369
|
+
})(SportsInterestName || {});
|
|
370
|
+
|
|
371
|
+
// src/interest/interestByCategory/pets.ts
|
|
372
|
+
var PetsInterestName = /* @__PURE__ */ ((PetsInterestName2) => {
|
|
373
|
+
PetsInterestName2["Dog"] = "dog";
|
|
374
|
+
PetsInterestName2["Cat"] = "cat";
|
|
375
|
+
PetsInterestName2["Other"] = "other";
|
|
376
|
+
return PetsInterestName2;
|
|
377
|
+
})(PetsInterestName || {});
|
|
378
|
+
|
|
379
|
+
// src/interest/interestByCategory/music.ts
|
|
380
|
+
var MusicInterestName = /* @__PURE__ */ ((MusicInterestName2) => {
|
|
381
|
+
MusicInterestName2["Guitar"] = "guitar";
|
|
382
|
+
MusicInterestName2["Singing"] = "singing";
|
|
383
|
+
MusicInterestName2["Other"] = "other";
|
|
384
|
+
return MusicInterestName2;
|
|
385
|
+
})(MusicInterestName || {});
|
|
386
|
+
|
|
387
|
+
// src/attribute/uoi/sports/basketball/label.ts
|
|
388
|
+
var AttributeLabelUoiSportsBasketball = /* @__PURE__ */ ((AttributeLabelUoiSportsBasketball2) => {
|
|
389
|
+
AttributeLabelUoiSportsBasketball2[AttributeLabelUoiSportsBasketball2["Positions"] = 0] = "Positions";
|
|
390
|
+
return AttributeLabelUoiSportsBasketball2;
|
|
391
|
+
})(AttributeLabelUoiSportsBasketball || {});
|
|
392
|
+
var ATTRIBUTE_LABEL_UOI_SPORTS_BASKETBALL = {
|
|
393
|
+
[0 /* Positions */]: "Positions"
|
|
394
|
+
};
|
|
395
|
+
|
|
396
|
+
// src/attribute/uoi/sports/basketball/basketball.ts
|
|
312
397
|
var BasketballPosition = /* @__PURE__ */ ((BasketballPosition2) => {
|
|
313
398
|
BasketballPosition2[BasketballPosition2["None"] = 0] = "None";
|
|
314
399
|
BasketballPosition2[BasketballPosition2["SG"] = 1] = "SG";
|
|
@@ -318,6 +403,19 @@ var BasketballPosition = /* @__PURE__ */ ((BasketballPosition2) => {
|
|
|
318
403
|
BasketballPosition2[BasketballPosition2["PF"] = 16] = "PF";
|
|
319
404
|
return BasketballPosition2;
|
|
320
405
|
})(BasketballPosition || {});
|
|
406
|
+
|
|
407
|
+
// src/attribute/uoi/sports/tennis/label.ts
|
|
408
|
+
var AttributeLabelUoiSportsTennis = /* @__PURE__ */ ((AttributeLabelUoiSportsTennis2) => {
|
|
409
|
+
AttributeLabelUoiSportsTennis2[AttributeLabelUoiSportsTennis2["Level"] = 0] = "Level";
|
|
410
|
+
AttributeLabelUoiSportsTennis2[AttributeLabelUoiSportsTennis2["Bankhand"] = 1] = "Bankhand";
|
|
411
|
+
return AttributeLabelUoiSportsTennis2;
|
|
412
|
+
})(AttributeLabelUoiSportsTennis || {});
|
|
413
|
+
var ATTRIBUTE_LABEL_UOI_SPORTS_TENNIS = {
|
|
414
|
+
[0 /* Level */]: "Level",
|
|
415
|
+
[1 /* Bankhand */]: "Bankhand"
|
|
416
|
+
};
|
|
417
|
+
|
|
418
|
+
// src/attribute/uoi/sports/tennis/tennis.ts
|
|
321
419
|
var TennisBackhand = /* @__PURE__ */ ((TennisBackhand2) => {
|
|
322
420
|
TennisBackhand2[TennisBackhand2["None"] = 0] = "None";
|
|
323
421
|
TennisBackhand2[TennisBackhand2["Single"] = 1] = "Single";
|
|
@@ -339,7 +437,18 @@ var TennisLevel = /* @__PURE__ */ ((TennisLevel2) => {
|
|
|
339
437
|
return TennisLevel2;
|
|
340
438
|
})(TennisLevel || {});
|
|
341
439
|
|
|
342
|
-
// src/attribute/
|
|
440
|
+
// src/attribute/uoi/sports/label.ts
|
|
441
|
+
var ATTRIBUTE_LABEL_UOI_SPORTS = {
|
|
442
|
+
["tennis" /* Tennis */]: ATTRIBUTE_LABEL_UOI_SPORTS_TENNIS,
|
|
443
|
+
["basketball" /* Basketball */]: ATTRIBUTE_LABEL_UOI_SPORTS_BASKETBALL
|
|
444
|
+
};
|
|
445
|
+
|
|
446
|
+
// src/attribute/uoi/label.ts
|
|
447
|
+
var ATTRIBUTE_LABEL_UOI = {
|
|
448
|
+
["sports" /* Sports */]: ATTRIBUTE_LABEL_UOI_SPORTS
|
|
449
|
+
};
|
|
450
|
+
|
|
451
|
+
// src/attribute/collection/pets/pets.ts
|
|
343
452
|
var PetGender = /* @__PURE__ */ ((PetGender2) => {
|
|
344
453
|
PetGender2[PetGender2["None"] = 0] = "None";
|
|
345
454
|
PetGender2[PetGender2["Male"] = 1] = "Male";
|
|
@@ -347,6 +456,29 @@ var PetGender = /* @__PURE__ */ ((PetGender2) => {
|
|
|
347
456
|
return PetGender2;
|
|
348
457
|
})(PetGender || {});
|
|
349
458
|
|
|
459
|
+
// src/attribute/collection/pets/label.ts
|
|
460
|
+
var AttributeLabelCollectionPets = /* @__PURE__ */ ((AttributeLabelCollectionPets2) => {
|
|
461
|
+
AttributeLabelCollectionPets2[AttributeLabelCollectionPets2["Breed"] = 0] = "Breed";
|
|
462
|
+
AttributeLabelCollectionPets2[AttributeLabelCollectionPets2["Dob"] = 1] = "Dob";
|
|
463
|
+
AttributeLabelCollectionPets2[AttributeLabelCollectionPets2["Father"] = 2] = "Father";
|
|
464
|
+
AttributeLabelCollectionPets2[AttributeLabelCollectionPets2["Mother"] = 3] = "Mother";
|
|
465
|
+
AttributeLabelCollectionPets2[AttributeLabelCollectionPets2["Gender"] = 4] = "Gender";
|
|
466
|
+
AttributeLabelCollectionPets2[AttributeLabelCollectionPets2["Height"] = 5] = "Height";
|
|
467
|
+
AttributeLabelCollectionPets2[AttributeLabelCollectionPets2["Weight"] = 6] = "Weight";
|
|
468
|
+
return AttributeLabelCollectionPets2;
|
|
469
|
+
})(AttributeLabelCollectionPets || {});
|
|
470
|
+
|
|
471
|
+
// src/attribute/collection/label.ts
|
|
472
|
+
var ATTRIBUTE_LABEL_COLLECTION = {
|
|
473
|
+
["pets" /* Pets */]: AttributeLabelCollectionPets
|
|
474
|
+
};
|
|
475
|
+
|
|
476
|
+
// src/attribute/label.ts
|
|
477
|
+
var ATTRIBUTE_LABEL = {
|
|
478
|
+
[2 /* Uoi */]: ATTRIBUTE_LABEL_UOI,
|
|
479
|
+
[5 /* Collection */]: ATTRIBUTE_LABEL_COLLECTION
|
|
480
|
+
};
|
|
481
|
+
|
|
350
482
|
// src/pageUpdate.ts
|
|
351
483
|
var PageUpdateType = /* @__PURE__ */ ((PageUpdateType2) => {
|
|
352
484
|
PageUpdateType2[PageUpdateType2["None"] = 0] = "None";
|
|
@@ -370,68 +502,21 @@ var SubjectType = /* @__PURE__ */ ((SubjectType2) => {
|
|
|
370
502
|
SubjectType2[SubjectType2["Reply"] = 4] = "Reply";
|
|
371
503
|
return SubjectType2;
|
|
372
504
|
})(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
505
|
// Annotate the CommonJS export names for ESM import in node:
|
|
431
506
|
0 && (module.exports = {
|
|
507
|
+
ATTRIBUTE_LABEL,
|
|
508
|
+
ATTRIBUTE_LABEL_COMMON,
|
|
509
|
+
ATTRIBUTE_LABEL_UOI,
|
|
510
|
+
ATTRIBUTE_LABEL_UOI_SPORTS,
|
|
511
|
+
ATTRIBUTE_LABEL_UOI_SPORTS_BASKETBALL,
|
|
512
|
+
ATTRIBUTE_LABEL_UOI_SPORTS_TENNIS,
|
|
432
513
|
AccountStatus,
|
|
433
514
|
AdminAccountStatus,
|
|
434
515
|
AttendanceStatus,
|
|
516
|
+
AttributeLabelCollectionPets,
|
|
517
|
+
AttributeLabelCommon,
|
|
518
|
+
AttributeLabelUoiSportsBasketball,
|
|
519
|
+
AttributeLabelUoiSportsTennis,
|
|
435
520
|
BasketballPosition,
|
|
436
521
|
BuddyingStatus,
|
|
437
522
|
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,29 @@ 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
|
+
|
|
399
|
+
// src/attribute/collection/label.ts
|
|
400
|
+
var ATTRIBUTE_LABEL_COLLECTION = {
|
|
401
|
+
["pets" /* Pets */]: AttributeLabelCollectionPets
|
|
402
|
+
};
|
|
403
|
+
|
|
404
|
+
// src/attribute/label.ts
|
|
405
|
+
var ATTRIBUTE_LABEL = {
|
|
406
|
+
[2 /* Uoi */]: ATTRIBUTE_LABEL_UOI,
|
|
407
|
+
[5 /* Collection */]: ATTRIBUTE_LABEL_COLLECTION
|
|
408
|
+
};
|
|
409
|
+
|
|
288
410
|
// src/pageUpdate.ts
|
|
289
411
|
var PageUpdateType = /* @__PURE__ */ ((PageUpdateType2) => {
|
|
290
412
|
PageUpdateType2[PageUpdateType2["None"] = 0] = "None";
|
|
@@ -308,67 +430,20 @@ var SubjectType = /* @__PURE__ */ ((SubjectType2) => {
|
|
|
308
430
|
SubjectType2[SubjectType2["Reply"] = 4] = "Reply";
|
|
309
431
|
return SubjectType2;
|
|
310
432
|
})(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
433
|
export {
|
|
434
|
+
ATTRIBUTE_LABEL,
|
|
435
|
+
ATTRIBUTE_LABEL_COMMON,
|
|
436
|
+
ATTRIBUTE_LABEL_UOI,
|
|
437
|
+
ATTRIBUTE_LABEL_UOI_SPORTS,
|
|
438
|
+
ATTRIBUTE_LABEL_UOI_SPORTS_BASKETBALL,
|
|
439
|
+
ATTRIBUTE_LABEL_UOI_SPORTS_TENNIS,
|
|
369
440
|
AccountStatus,
|
|
370
441
|
AdminAccountStatus,
|
|
371
442
|
AttendanceStatus,
|
|
443
|
+
AttributeLabelCollectionPets,
|
|
444
|
+
AttributeLabelCommon,
|
|
445
|
+
AttributeLabelUoiSportsBasketball,
|
|
446
|
+
AttributeLabelUoiSportsTennis,
|
|
372
447
|
BasketballPosition,
|
|
373
448
|
BuddyingStatus,
|
|
374
449
|
CategoryName,
|
package/package.json
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './pets';
|
package/src/attribute/index.ts
CHANGED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
|
|
2
|
+
import { ProfileType } from '../page';
|
|
3
|
+
import { ATTRIBUTE_LABEL_COLLECTION } from './collection/label';
|
|
4
|
+
import { ATTRIBUTE_LABEL_UOI } from './uoi';
|
|
5
|
+
|
|
6
|
+
export const ATTRIBUTE_LABEL = {
|
|
7
|
+
[ProfileType.Uoi]: ATTRIBUTE_LABEL_UOI,
|
|
8
|
+
[ProfileType.Collection]: ATTRIBUTE_LABEL_COLLECTION,
|
|
9
|
+
};
|
|
@@ -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
|