wenum 1.19.3 → 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 +72 -10
- package/dist/index.d.ts +72 -10
- package/dist/index.js +134 -52
- package/dist/index.mjs +124 -52
- 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/interest/interestByCategory/index.ts +2 -1
- package/src/interest/interestByCategory/interest.ts +2 -1
- package/src/interest/interestByCategory/music.ts +5 -0
- /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,
|
|
@@ -272,6 +328,12 @@ declare enum CategoryName {
|
|
|
272
328
|
None = ""
|
|
273
329
|
}
|
|
274
330
|
|
|
331
|
+
declare enum MusicInterestName {
|
|
332
|
+
Guitar = "guitar",
|
|
333
|
+
Singing = "singing",
|
|
334
|
+
Other = "other"
|
|
335
|
+
}
|
|
336
|
+
|
|
275
337
|
declare enum PetsInterestName {
|
|
276
338
|
Dog = "dog",
|
|
277
339
|
Cat = "cat",
|
|
@@ -300,7 +362,7 @@ declare enum SportsInterestName {
|
|
|
300
362
|
Other = "other"
|
|
301
363
|
}
|
|
302
364
|
|
|
303
|
-
type InterestName = SportsInterestName | PetsInterestName | '';
|
|
365
|
+
type InterestName = SportsInterestName | PetsInterestName | MusicInterestName | '';
|
|
304
366
|
declare const InterestNameNone: InterestName;
|
|
305
367
|
|
|
306
|
-
export { AccountStatus, AdminAccountStatus, AttendanceStatus, BasketballPosition, BuddyingStatus, CategoryName, ChallengeStatus, CollectionMetaStatus, CollectionType, ConnectionType, DuelGameResultType, FollowingStatus, GameType, Handedness, type InterestName, InterestNameNone, LeaderboardOrder, LeaderboardType, LocationType, MarketMetaStatus, MarketType, MemberingStatus, 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,
|
|
@@ -272,6 +328,12 @@ declare enum CategoryName {
|
|
|
272
328
|
None = ""
|
|
273
329
|
}
|
|
274
330
|
|
|
331
|
+
declare enum MusicInterestName {
|
|
332
|
+
Guitar = "guitar",
|
|
333
|
+
Singing = "singing",
|
|
334
|
+
Other = "other"
|
|
335
|
+
}
|
|
336
|
+
|
|
275
337
|
declare enum PetsInterestName {
|
|
276
338
|
Dog = "dog",
|
|
277
339
|
Cat = "cat",
|
|
@@ -300,7 +362,7 @@ declare enum SportsInterestName {
|
|
|
300
362
|
Other = "other"
|
|
301
363
|
}
|
|
302
364
|
|
|
303
|
-
type InterestName = SportsInterestName | PetsInterestName | '';
|
|
365
|
+
type InterestName = SportsInterestName | PetsInterestName | MusicInterestName | '';
|
|
304
366
|
declare const InterestNameNone: InterestName;
|
|
305
367
|
|
|
306
|
-
export { AccountStatus, AdminAccountStatus, AttendanceStatus, BasketballPosition, BuddyingStatus, CategoryName, ChallengeStatus, CollectionMetaStatus, CollectionType, ConnectionType, DuelGameResultType, FollowingStatus, GameType, Handedness, type InterestName, InterestNameNone, LeaderboardOrder, LeaderboardType, LocationType, MarketMetaStatus, MarketType, MemberingStatus, 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,
|
|
@@ -41,6 +50,7 @@ __export(index_exports, {
|
|
|
41
50
|
MarketMetaStatus: () => MarketMetaStatus,
|
|
42
51
|
MarketType: () => MarketType,
|
|
43
52
|
MemberingStatus: () => MemberingStatus,
|
|
53
|
+
MusicInterestName: () => MusicInterestName,
|
|
44
54
|
PageType: () => PageType,
|
|
45
55
|
PageUpdateType: () => PageUpdateType,
|
|
46
56
|
PetGender: () => PetGender,
|
|
@@ -299,7 +309,16 @@ var FollowingStatus = /* @__PURE__ */ ((FollowingStatus2) => {
|
|
|
299
309
|
return FollowingStatus2;
|
|
300
310
|
})(FollowingStatus || {});
|
|
301
311
|
|
|
302
|
-
// 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
|
|
303
322
|
var Handedness = /* @__PURE__ */ ((Handedness2) => {
|
|
304
323
|
Handedness2[Handedness2["None"] = 0] = "None";
|
|
305
324
|
Handedness2[Handedness2["Left"] = 1] = "Left";
|
|
@@ -307,7 +326,73 @@ var Handedness = /* @__PURE__ */ ((Handedness2) => {
|
|
|
307
326
|
return Handedness2;
|
|
308
327
|
})(Handedness || {});
|
|
309
328
|
|
|
310
|
-
// 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
|
|
311
396
|
var BasketballPosition = /* @__PURE__ */ ((BasketballPosition2) => {
|
|
312
397
|
BasketballPosition2[BasketballPosition2["None"] = 0] = "None";
|
|
313
398
|
BasketballPosition2[BasketballPosition2["SG"] = 1] = "SG";
|
|
@@ -317,6 +402,19 @@ var BasketballPosition = /* @__PURE__ */ ((BasketballPosition2) => {
|
|
|
317
402
|
BasketballPosition2[BasketballPosition2["PF"] = 16] = "PF";
|
|
318
403
|
return BasketballPosition2;
|
|
319
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
|
|
320
418
|
var TennisBackhand = /* @__PURE__ */ ((TennisBackhand2) => {
|
|
321
419
|
TennisBackhand2[TennisBackhand2["None"] = 0] = "None";
|
|
322
420
|
TennisBackhand2[TennisBackhand2["Single"] = 1] = "Single";
|
|
@@ -338,7 +436,18 @@ var TennisLevel = /* @__PURE__ */ ((TennisLevel2) => {
|
|
|
338
436
|
return TennisLevel2;
|
|
339
437
|
})(TennisLevel || {});
|
|
340
438
|
|
|
341
|
-
// 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
|
|
342
451
|
var PetGender = /* @__PURE__ */ ((PetGender2) => {
|
|
343
452
|
PetGender2[PetGender2["None"] = 0] = "None";
|
|
344
453
|
PetGender2[PetGender2["Male"] = 1] = "Male";
|
|
@@ -346,6 +455,18 @@ var PetGender = /* @__PURE__ */ ((PetGender2) => {
|
|
|
346
455
|
return PetGender2;
|
|
347
456
|
})(PetGender || {});
|
|
348
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
|
+
|
|
349
470
|
// src/pageUpdate.ts
|
|
350
471
|
var PageUpdateType = /* @__PURE__ */ ((PageUpdateType2) => {
|
|
351
472
|
PageUpdateType2[PageUpdateType2["None"] = 0] = "None";
|
|
@@ -369,60 +490,20 @@ var SubjectType = /* @__PURE__ */ ((SubjectType2) => {
|
|
|
369
490
|
SubjectType2[SubjectType2["Reply"] = 4] = "Reply";
|
|
370
491
|
return SubjectType2;
|
|
371
492
|
})(SubjectType || {});
|
|
372
|
-
|
|
373
|
-
// src/interest/category.ts
|
|
374
|
-
var CategoryName = /* @__PURE__ */ ((CategoryName2) => {
|
|
375
|
-
CategoryName2["Sports"] = "sports";
|
|
376
|
-
CategoryName2["Pets"] = "pets";
|
|
377
|
-
CategoryName2["Music"] = "music";
|
|
378
|
-
CategoryName2["Dancing"] = "dancing";
|
|
379
|
-
CategoryName2["Food"] = "food";
|
|
380
|
-
CategoryName2["Photography"] = "photography";
|
|
381
|
-
CategoryName2["Tourism"] = "tourism";
|
|
382
|
-
CategoryName2["Other"] = "other";
|
|
383
|
-
CategoryName2["None"] = "";
|
|
384
|
-
return CategoryName2;
|
|
385
|
-
})(CategoryName || {});
|
|
386
|
-
|
|
387
|
-
// src/interest/interestByCategory/interest.ts
|
|
388
|
-
var InterestNameNone = "";
|
|
389
|
-
|
|
390
|
-
// src/interest/interestByCategory/sports.ts
|
|
391
|
-
var SportsInterestName = /* @__PURE__ */ ((SportsInterestName2) => {
|
|
392
|
-
SportsInterestName2["Tennis"] = "tennis";
|
|
393
|
-
SportsInterestName2["Pickleball"] = "pickleball";
|
|
394
|
-
SportsInterestName2["Basketball"] = "basketball";
|
|
395
|
-
SportsInterestName2["Golf"] = "golf";
|
|
396
|
-
SportsInterestName2["Hiking"] = "hiking";
|
|
397
|
-
SportsInterestName2["Running"] = "running";
|
|
398
|
-
SportsInterestName2["Gym"] = "gym";
|
|
399
|
-
SportsInterestName2["Baseball"] = "baseball";
|
|
400
|
-
SportsInterestName2["Biking"] = "biking";
|
|
401
|
-
SportsInterestName2["Yoga"] = "yoga";
|
|
402
|
-
SportsInterestName2["TableTennis"] = "tabletennis";
|
|
403
|
-
SportsInterestName2["Football"] = "football";
|
|
404
|
-
SportsInterestName2["Soccer"] = "soccer";
|
|
405
|
-
SportsInterestName2["Badminton"] = "badminton";
|
|
406
|
-
SportsInterestName2["Skiing"] = "skiing";
|
|
407
|
-
SportsInterestName2["Surfing"] = "surfing";
|
|
408
|
-
SportsInterestName2["Swimming"] = "swimming";
|
|
409
|
-
SportsInterestName2["Hockey"] = "hockey";
|
|
410
|
-
SportsInterestName2["Other"] = "other";
|
|
411
|
-
return SportsInterestName2;
|
|
412
|
-
})(SportsInterestName || {});
|
|
413
|
-
|
|
414
|
-
// src/interest/interestByCategory/pets.ts
|
|
415
|
-
var PetsInterestName = /* @__PURE__ */ ((PetsInterestName2) => {
|
|
416
|
-
PetsInterestName2["Dog"] = "dog";
|
|
417
|
-
PetsInterestName2["Cat"] = "cat";
|
|
418
|
-
PetsInterestName2["Other"] = "other";
|
|
419
|
-
return PetsInterestName2;
|
|
420
|
-
})(PetsInterestName || {});
|
|
421
493
|
// Annotate the CommonJS export names for ESM import in node:
|
|
422
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,
|
|
423
500
|
AccountStatus,
|
|
424
501
|
AdminAccountStatus,
|
|
425
502
|
AttendanceStatus,
|
|
503
|
+
AttributeLabelCollectionPets,
|
|
504
|
+
AttributeLabelCommon,
|
|
505
|
+
AttributeLabelUoiSportsBasketball,
|
|
506
|
+
AttributeLabelUoiSportsTennis,
|
|
426
507
|
BasketballPosition,
|
|
427
508
|
BuddyingStatus,
|
|
428
509
|
CategoryName,
|
|
@@ -441,6 +522,7 @@ var PetsInterestName = /* @__PURE__ */ ((PetsInterestName2) => {
|
|
|
441
522
|
MarketMetaStatus,
|
|
442
523
|
MarketType,
|
|
443
524
|
MemberingStatus,
|
|
525
|
+
MusicInterestName,
|
|
444
526
|
PageType,
|
|
445
527
|
PageUpdateType,
|
|
446
528
|
PetGender,
|
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,59 +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
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,
|
|
361
428
|
AccountStatus,
|
|
362
429
|
AdminAccountStatus,
|
|
363
430
|
AttendanceStatus,
|
|
431
|
+
AttributeLabelCollectionPets,
|
|
432
|
+
AttributeLabelCommon,
|
|
433
|
+
AttributeLabelUoiSportsBasketball,
|
|
434
|
+
AttributeLabelUoiSportsTennis,
|
|
364
435
|
BasketballPosition,
|
|
365
436
|
BuddyingStatus,
|
|
366
437
|
CategoryName,
|
|
@@ -379,6 +450,7 @@ export {
|
|
|
379
450
|
MarketMetaStatus,
|
|
380
451
|
MarketType,
|
|
381
452
|
MemberingStatus,
|
|
453
|
+
MusicInterestName,
|
|
382
454
|
PageType,
|
|
383
455
|
PageUpdateType,
|
|
384
456
|
PetGender,
|
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
|
+
};
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
+
import { MusicInterestName } from './music';
|
|
1
2
|
import { PetsInterestName } from './pets';
|
|
2
3
|
import { SportsInterestName } from './sports';
|
|
3
4
|
|
|
4
|
-
export type InterestName = SportsInterestName | PetsInterestName | '';
|
|
5
|
+
export type InterestName = SportsInterestName | PetsInterestName | MusicInterestName | '';
|
|
5
6
|
|
|
6
7
|
export const InterestNameNone: InterestName = '';
|
|
File without changes
|