wenum 1.19.1 → 1.19.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +11 -6
- package/dist/index.d.ts +11 -6
- package/dist/index.js +16 -7
- package/dist/index.mjs +14 -6
- package/package.json +1 -1
- package/src/interest/category.ts +3 -1
- package/src/interest/interestByCategory/interest.ts +4 -2
- package/src/interest/interestByCategory/pets.ts +2 -1
- package/src/interest/interestByCategory/sports.ts +2 -1
package/dist/index.d.mts
CHANGED
|
@@ -267,12 +267,15 @@ declare enum CategoryName {
|
|
|
267
267
|
Dancing = "dancing",
|
|
268
268
|
Food = "food",
|
|
269
269
|
Photography = "photography",
|
|
270
|
-
Tourism = "tourism"
|
|
270
|
+
Tourism = "tourism",
|
|
271
|
+
Other = "other",
|
|
272
|
+
None = ""
|
|
271
273
|
}
|
|
272
274
|
|
|
273
|
-
declare enum
|
|
275
|
+
declare enum PetsInterestName {
|
|
274
276
|
Dog = "dog",
|
|
275
|
-
Cat = "cat"
|
|
277
|
+
Cat = "cat",
|
|
278
|
+
Other = "other"
|
|
276
279
|
}
|
|
277
280
|
|
|
278
281
|
declare enum SportsInterestName {
|
|
@@ -293,9 +296,11 @@ declare enum SportsInterestName {
|
|
|
293
296
|
Skiing = "skiing",
|
|
294
297
|
Surfing = "surfing",
|
|
295
298
|
Swimming = "swimming",
|
|
296
|
-
Hockey = "hockey"
|
|
299
|
+
Hockey = "hockey",
|
|
300
|
+
Other = "other"
|
|
297
301
|
}
|
|
298
302
|
|
|
299
|
-
type InterestName = SportsInterestName |
|
|
303
|
+
type InterestName = SportsInterestName | PetsInterestName | '';
|
|
304
|
+
declare const InterestNameNone: InterestName;
|
|
300
305
|
|
|
301
|
-
export { AccountStatus, AdminAccountStatus, AttendanceStatus, BasketballPosition, BuddyingStatus, CategoryName, ChallengeStatus, CollectionMetaStatus, CollectionType, ConnectionType, DuelGameResultType, FollowingStatus, GameType, Handedness, type InterestName, LeaderboardOrder, LeaderboardType, LocationType, MarketMetaStatus, MarketType, MemberingStatus, PageType, PageUpdateType,
|
|
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 };
|
package/dist/index.d.ts
CHANGED
|
@@ -267,12 +267,15 @@ declare enum CategoryName {
|
|
|
267
267
|
Dancing = "dancing",
|
|
268
268
|
Food = "food",
|
|
269
269
|
Photography = "photography",
|
|
270
|
-
Tourism = "tourism"
|
|
270
|
+
Tourism = "tourism",
|
|
271
|
+
Other = "other",
|
|
272
|
+
None = ""
|
|
271
273
|
}
|
|
272
274
|
|
|
273
|
-
declare enum
|
|
275
|
+
declare enum PetsInterestName {
|
|
274
276
|
Dog = "dog",
|
|
275
|
-
Cat = "cat"
|
|
277
|
+
Cat = "cat",
|
|
278
|
+
Other = "other"
|
|
276
279
|
}
|
|
277
280
|
|
|
278
281
|
declare enum SportsInterestName {
|
|
@@ -293,9 +296,11 @@ declare enum SportsInterestName {
|
|
|
293
296
|
Skiing = "skiing",
|
|
294
297
|
Surfing = "surfing",
|
|
295
298
|
Swimming = "swimming",
|
|
296
|
-
Hockey = "hockey"
|
|
299
|
+
Hockey = "hockey",
|
|
300
|
+
Other = "other"
|
|
297
301
|
}
|
|
298
302
|
|
|
299
|
-
type InterestName = SportsInterestName |
|
|
303
|
+
type InterestName = SportsInterestName | PetsInterestName | '';
|
|
304
|
+
declare const InterestNameNone: InterestName;
|
|
300
305
|
|
|
301
|
-
export { AccountStatus, AdminAccountStatus, AttendanceStatus, BasketballPosition, BuddyingStatus, CategoryName, ChallengeStatus, CollectionMetaStatus, CollectionType, ConnectionType, DuelGameResultType, FollowingStatus, GameType, Handedness, type InterestName, LeaderboardOrder, LeaderboardType, LocationType, MarketMetaStatus, MarketType, MemberingStatus, PageType, PageUpdateType,
|
|
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 };
|
package/dist/index.js
CHANGED
|
@@ -34,6 +34,7 @@ __export(index_exports, {
|
|
|
34
34
|
FollowingStatus: () => FollowingStatus,
|
|
35
35
|
GameType: () => GameType,
|
|
36
36
|
Handedness: () => Handedness,
|
|
37
|
+
InterestNameNone: () => InterestNameNone,
|
|
37
38
|
LeaderboardOrder: () => LeaderboardOrder,
|
|
38
39
|
LeaderboardType: () => LeaderboardType,
|
|
39
40
|
LocationType: () => LocationType,
|
|
@@ -42,8 +43,8 @@ __export(index_exports, {
|
|
|
42
43
|
MemberingStatus: () => MemberingStatus,
|
|
43
44
|
PageType: () => PageType,
|
|
44
45
|
PageUpdateType: () => PageUpdateType,
|
|
45
|
-
PentsInterestName: () => PentsInterestName,
|
|
46
46
|
PetGender: () => PetGender,
|
|
47
|
+
PetsInterestName: () => PetsInterestName,
|
|
47
48
|
PostPrivacy: () => PostPrivacy,
|
|
48
49
|
PostType: () => PostType,
|
|
49
50
|
ProfilePermission: () => ProfilePermission,
|
|
@@ -378,9 +379,14 @@ var CategoryName = /* @__PURE__ */ ((CategoryName2) => {
|
|
|
378
379
|
CategoryName2["Food"] = "food";
|
|
379
380
|
CategoryName2["Photography"] = "photography";
|
|
380
381
|
CategoryName2["Tourism"] = "tourism";
|
|
382
|
+
CategoryName2["Other"] = "other";
|
|
383
|
+
CategoryName2["None"] = "";
|
|
381
384
|
return CategoryName2;
|
|
382
385
|
})(CategoryName || {});
|
|
383
386
|
|
|
387
|
+
// src/interest/interestByCategory/interest.ts
|
|
388
|
+
var InterestNameNone = "";
|
|
389
|
+
|
|
384
390
|
// src/interest/interestByCategory/sports.ts
|
|
385
391
|
var SportsInterestName = /* @__PURE__ */ ((SportsInterestName2) => {
|
|
386
392
|
SportsInterestName2["Tennis"] = "tennis";
|
|
@@ -401,15 +407,17 @@ var SportsInterestName = /* @__PURE__ */ ((SportsInterestName2) => {
|
|
|
401
407
|
SportsInterestName2["Surfing"] = "surfing";
|
|
402
408
|
SportsInterestName2["Swimming"] = "swimming";
|
|
403
409
|
SportsInterestName2["Hockey"] = "hockey";
|
|
410
|
+
SportsInterestName2["Other"] = "other";
|
|
404
411
|
return SportsInterestName2;
|
|
405
412
|
})(SportsInterestName || {});
|
|
406
413
|
|
|
407
414
|
// src/interest/interestByCategory/pets.ts
|
|
408
|
-
var
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
415
|
+
var PetsInterestName = /* @__PURE__ */ ((PetsInterestName2) => {
|
|
416
|
+
PetsInterestName2["Dog"] = "dog";
|
|
417
|
+
PetsInterestName2["Cat"] = "cat";
|
|
418
|
+
PetsInterestName2["Other"] = "other";
|
|
419
|
+
return PetsInterestName2;
|
|
420
|
+
})(PetsInterestName || {});
|
|
413
421
|
// Annotate the CommonJS export names for ESM import in node:
|
|
414
422
|
0 && (module.exports = {
|
|
415
423
|
AccountStatus,
|
|
@@ -426,6 +434,7 @@ var PentsInterestName = /* @__PURE__ */ ((PentsInterestName2) => {
|
|
|
426
434
|
FollowingStatus,
|
|
427
435
|
GameType,
|
|
428
436
|
Handedness,
|
|
437
|
+
InterestNameNone,
|
|
429
438
|
LeaderboardOrder,
|
|
430
439
|
LeaderboardType,
|
|
431
440
|
LocationType,
|
|
@@ -434,8 +443,8 @@ var PentsInterestName = /* @__PURE__ */ ((PentsInterestName2) => {
|
|
|
434
443
|
MemberingStatus,
|
|
435
444
|
PageType,
|
|
436
445
|
PageUpdateType,
|
|
437
|
-
PentsInterestName,
|
|
438
446
|
PetGender,
|
|
447
|
+
PetsInterestName,
|
|
439
448
|
PostPrivacy,
|
|
440
449
|
PostType,
|
|
441
450
|
ProfilePermission,
|
package/dist/index.mjs
CHANGED
|
@@ -318,9 +318,14 @@ var CategoryName = /* @__PURE__ */ ((CategoryName2) => {
|
|
|
318
318
|
CategoryName2["Food"] = "food";
|
|
319
319
|
CategoryName2["Photography"] = "photography";
|
|
320
320
|
CategoryName2["Tourism"] = "tourism";
|
|
321
|
+
CategoryName2["Other"] = "other";
|
|
322
|
+
CategoryName2["None"] = "";
|
|
321
323
|
return CategoryName2;
|
|
322
324
|
})(CategoryName || {});
|
|
323
325
|
|
|
326
|
+
// src/interest/interestByCategory/interest.ts
|
|
327
|
+
var InterestNameNone = "";
|
|
328
|
+
|
|
324
329
|
// src/interest/interestByCategory/sports.ts
|
|
325
330
|
var SportsInterestName = /* @__PURE__ */ ((SportsInterestName2) => {
|
|
326
331
|
SportsInterestName2["Tennis"] = "tennis";
|
|
@@ -341,15 +346,17 @@ var SportsInterestName = /* @__PURE__ */ ((SportsInterestName2) => {
|
|
|
341
346
|
SportsInterestName2["Surfing"] = "surfing";
|
|
342
347
|
SportsInterestName2["Swimming"] = "swimming";
|
|
343
348
|
SportsInterestName2["Hockey"] = "hockey";
|
|
349
|
+
SportsInterestName2["Other"] = "other";
|
|
344
350
|
return SportsInterestName2;
|
|
345
351
|
})(SportsInterestName || {});
|
|
346
352
|
|
|
347
353
|
// src/interest/interestByCategory/pets.ts
|
|
348
|
-
var
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
354
|
+
var PetsInterestName = /* @__PURE__ */ ((PetsInterestName2) => {
|
|
355
|
+
PetsInterestName2["Dog"] = "dog";
|
|
356
|
+
PetsInterestName2["Cat"] = "cat";
|
|
357
|
+
PetsInterestName2["Other"] = "other";
|
|
358
|
+
return PetsInterestName2;
|
|
359
|
+
})(PetsInterestName || {});
|
|
353
360
|
export {
|
|
354
361
|
AccountStatus,
|
|
355
362
|
AdminAccountStatus,
|
|
@@ -365,6 +372,7 @@ export {
|
|
|
365
372
|
FollowingStatus,
|
|
366
373
|
GameType,
|
|
367
374
|
Handedness,
|
|
375
|
+
InterestNameNone,
|
|
368
376
|
LeaderboardOrder,
|
|
369
377
|
LeaderboardType,
|
|
370
378
|
LocationType,
|
|
@@ -373,8 +381,8 @@ export {
|
|
|
373
381
|
MemberingStatus,
|
|
374
382
|
PageType,
|
|
375
383
|
PageUpdateType,
|
|
376
|
-
PentsInterestName,
|
|
377
384
|
PetGender,
|
|
385
|
+
PetsInterestName,
|
|
378
386
|
PostPrivacy,
|
|
379
387
|
PostType,
|
|
380
388
|
ProfilePermission,
|
package/package.json
CHANGED
package/src/interest/category.ts
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { PetsInterestName } from './pets';
|
|
2
2
|
import { SportsInterestName } from './sports';
|
|
3
3
|
|
|
4
|
-
export type InterestName = SportsInterestName |
|
|
4
|
+
export type InterestName = SportsInterestName | PetsInterestName | '';
|
|
5
|
+
|
|
6
|
+
export const InterestNameNone: InterestName = '';
|