wenum 1.19.0 → 1.19.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -267,12 +267,16 @@ 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 PentsInterestName {
275
+ declare enum PetsInterestName {
274
276
  Dog = "dog",
275
- Cat = "cat"
277
+ Cat = "cat",
278
+ Other = "other",
279
+ None = ""
276
280
  }
277
281
 
278
282
  declare enum SportsInterestName {
@@ -290,12 +294,14 @@ declare enum SportsInterestName {
290
294
  Football = "football",
291
295
  Soccer = "soccer",
292
296
  Badminton = "badminton",
293
- Ski = "ski",
294
- Surf = "surf",
295
- Swim = "swim",
296
- Hockey = "hockey"
297
+ Skiing = "skiing",
298
+ Surfing = "surfing",
299
+ Swimming = "swimming",
300
+ Hockey = "hockey",
301
+ Other = "other",
302
+ None = ""
297
303
  }
298
304
 
299
- type InterestName = SportsInterestName | PentsInterestName;
305
+ type InterestName = SportsInterestName | PetsInterestName;
300
306
 
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, PentsInterestName, PetGender, PostPrivacy, PostType, ProfilePermission, ProfilePrivacy, ProfileStatus, ProfileType, Pronoun, SportsInterestName, SubjectType, TennisBackhand, TennisLevel };
307
+ 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, PetGender, PetsInterestName, PostPrivacy, PostType, ProfilePermission, ProfilePrivacy, ProfileStatus, ProfileType, Pronoun, SportsInterestName, SubjectType, TennisBackhand, TennisLevel };
package/dist/index.d.ts CHANGED
@@ -267,12 +267,16 @@ 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 PentsInterestName {
275
+ declare enum PetsInterestName {
274
276
  Dog = "dog",
275
- Cat = "cat"
277
+ Cat = "cat",
278
+ Other = "other",
279
+ None = ""
276
280
  }
277
281
 
278
282
  declare enum SportsInterestName {
@@ -290,12 +294,14 @@ declare enum SportsInterestName {
290
294
  Football = "football",
291
295
  Soccer = "soccer",
292
296
  Badminton = "badminton",
293
- Ski = "ski",
294
- Surf = "surf",
295
- Swim = "swim",
296
- Hockey = "hockey"
297
+ Skiing = "skiing",
298
+ Surfing = "surfing",
299
+ Swimming = "swimming",
300
+ Hockey = "hockey",
301
+ Other = "other",
302
+ None = ""
297
303
  }
298
304
 
299
- type InterestName = SportsInterestName | PentsInterestName;
305
+ type InterestName = SportsInterestName | PetsInterestName;
300
306
 
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, PentsInterestName, PetGender, PostPrivacy, PostType, ProfilePermission, ProfilePrivacy, ProfileStatus, ProfileType, Pronoun, SportsInterestName, SubjectType, TennisBackhand, TennisLevel };
307
+ 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, PetGender, PetsInterestName, PostPrivacy, PostType, ProfilePermission, ProfilePrivacy, ProfileStatus, ProfileType, Pronoun, SportsInterestName, SubjectType, TennisBackhand, TennisLevel };
package/dist/index.js CHANGED
@@ -42,8 +42,8 @@ __export(index_exports, {
42
42
  MemberingStatus: () => MemberingStatus,
43
43
  PageType: () => PageType,
44
44
  PageUpdateType: () => PageUpdateType,
45
- PentsInterestName: () => PentsInterestName,
46
45
  PetGender: () => PetGender,
46
+ PetsInterestName: () => PetsInterestName,
47
47
  PostPrivacy: () => PostPrivacy,
48
48
  PostType: () => PostType,
49
49
  ProfilePermission: () => ProfilePermission,
@@ -378,6 +378,8 @@ var CategoryName = /* @__PURE__ */ ((CategoryName2) => {
378
378
  CategoryName2["Food"] = "food";
379
379
  CategoryName2["Photography"] = "photography";
380
380
  CategoryName2["Tourism"] = "tourism";
381
+ CategoryName2["Other"] = "other";
382
+ CategoryName2["None"] = "";
381
383
  return CategoryName2;
382
384
  })(CategoryName || {});
383
385
 
@@ -397,19 +399,23 @@ var SportsInterestName = /* @__PURE__ */ ((SportsInterestName2) => {
397
399
  SportsInterestName2["Football"] = "football";
398
400
  SportsInterestName2["Soccer"] = "soccer";
399
401
  SportsInterestName2["Badminton"] = "badminton";
400
- SportsInterestName2["Ski"] = "ski";
401
- SportsInterestName2["Surf"] = "surf";
402
- SportsInterestName2["Swim"] = "swim";
402
+ SportsInterestName2["Skiing"] = "skiing";
403
+ SportsInterestName2["Surfing"] = "surfing";
404
+ SportsInterestName2["Swimming"] = "swimming";
403
405
  SportsInterestName2["Hockey"] = "hockey";
406
+ SportsInterestName2["Other"] = "other";
407
+ SportsInterestName2["None"] = "";
404
408
  return SportsInterestName2;
405
409
  })(SportsInterestName || {});
406
410
 
407
411
  // src/interest/interestByCategory/pets.ts
408
- var PentsInterestName = /* @__PURE__ */ ((PentsInterestName2) => {
409
- PentsInterestName2["Dog"] = "dog";
410
- PentsInterestName2["Cat"] = "cat";
411
- return PentsInterestName2;
412
- })(PentsInterestName || {});
412
+ var PetsInterestName = /* @__PURE__ */ ((PetsInterestName2) => {
413
+ PetsInterestName2["Dog"] = "dog";
414
+ PetsInterestName2["Cat"] = "cat";
415
+ PetsInterestName2["Other"] = "other";
416
+ PetsInterestName2["None"] = "";
417
+ return PetsInterestName2;
418
+ })(PetsInterestName || {});
413
419
  // Annotate the CommonJS export names for ESM import in node:
414
420
  0 && (module.exports = {
415
421
  AccountStatus,
@@ -434,8 +440,8 @@ var PentsInterestName = /* @__PURE__ */ ((PentsInterestName2) => {
434
440
  MemberingStatus,
435
441
  PageType,
436
442
  PageUpdateType,
437
- PentsInterestName,
438
443
  PetGender,
444
+ PetsInterestName,
439
445
  PostPrivacy,
440
446
  PostType,
441
447
  ProfilePermission,
package/dist/index.mjs CHANGED
@@ -318,6 +318,8 @@ 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
 
@@ -337,19 +339,23 @@ var SportsInterestName = /* @__PURE__ */ ((SportsInterestName2) => {
337
339
  SportsInterestName2["Football"] = "football";
338
340
  SportsInterestName2["Soccer"] = "soccer";
339
341
  SportsInterestName2["Badminton"] = "badminton";
340
- SportsInterestName2["Ski"] = "ski";
341
- SportsInterestName2["Surf"] = "surf";
342
- SportsInterestName2["Swim"] = "swim";
342
+ SportsInterestName2["Skiing"] = "skiing";
343
+ SportsInterestName2["Surfing"] = "surfing";
344
+ SportsInterestName2["Swimming"] = "swimming";
343
345
  SportsInterestName2["Hockey"] = "hockey";
346
+ SportsInterestName2["Other"] = "other";
347
+ SportsInterestName2["None"] = "";
344
348
  return SportsInterestName2;
345
349
  })(SportsInterestName || {});
346
350
 
347
351
  // src/interest/interestByCategory/pets.ts
348
- var PentsInterestName = /* @__PURE__ */ ((PentsInterestName2) => {
349
- PentsInterestName2["Dog"] = "dog";
350
- PentsInterestName2["Cat"] = "cat";
351
- return PentsInterestName2;
352
- })(PentsInterestName || {});
352
+ var PetsInterestName = /* @__PURE__ */ ((PetsInterestName2) => {
353
+ PetsInterestName2["Dog"] = "dog";
354
+ PetsInterestName2["Cat"] = "cat";
355
+ PetsInterestName2["Other"] = "other";
356
+ PetsInterestName2["None"] = "";
357
+ return PetsInterestName2;
358
+ })(PetsInterestName || {});
353
359
  export {
354
360
  AccountStatus,
355
361
  AdminAccountStatus,
@@ -373,8 +379,8 @@ export {
373
379
  MemberingStatus,
374
380
  PageType,
375
381
  PageUpdateType,
376
- PentsInterestName,
377
382
  PetGender,
383
+ PetsInterestName,
378
384
  PostPrivacy,
379
385
  PostType,
380
386
  ProfilePermission,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wenum",
3
- "version": "1.19.0",
3
+ "version": "1.19.2",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.mjs",
6
6
  "types": "dist/index.d.ts",
@@ -5,5 +5,7 @@ export enum CategoryName {
5
5
  Dancing = 'dancing',
6
6
  Food = 'food',
7
7
  Photography = 'photography',
8
- Tourism = 'tourism'
8
+ Tourism = 'tourism',
9
+ Other = 'other',
10
+ None = '',
9
11
  }
@@ -1,4 +1,5 @@
1
- import { PentsInterestName } from './pets';
1
+ import { PetsInterestName } from './pets';
2
2
  import { SportsInterestName } from './sports';
3
3
 
4
- export type InterestName = SportsInterestName | PentsInterestName;
4
+ export type InterestName = SportsInterestName | PetsInterestName;
5
+
@@ -1,4 +1,6 @@
1
- export enum PentsInterestName {
1
+ export enum PetsInterestName {
2
2
  Dog = "dog",
3
3
  Cat = "cat",
4
+ Other = "other",
5
+ None = "",
4
6
  }
@@ -13,8 +13,10 @@ export enum SportsInterestName {
13
13
  Football = "football",
14
14
  Soccer = "soccer",
15
15
  Badminton = "badminton",
16
- Ski = "ski",
17
- Surf = "surf",
18
- Swim = "swim",
19
- Hockey = "hockey"
16
+ Skiing = "skiing",
17
+ Surfing = "surfing",
18
+ Swimming = "swimming",
19
+ Hockey = "hockey",
20
+ Other = "other",
21
+ None = "",
20
22
  }