wenum 1.19.3 → 1.20.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 +8 -2
- package/dist/index.d.ts +8 -2
- package/dist/index.js +10 -0
- package/dist/index.mjs +9 -0
- package/package.json +1 -1
- 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/dist/index.d.mts
CHANGED
|
@@ -272,6 +272,12 @@ declare enum CategoryName {
|
|
|
272
272
|
None = ""
|
|
273
273
|
}
|
|
274
274
|
|
|
275
|
+
declare enum MusicInterestName {
|
|
276
|
+
Guitar = "guitar",
|
|
277
|
+
Singing = "singing",
|
|
278
|
+
Other = "other"
|
|
279
|
+
}
|
|
280
|
+
|
|
275
281
|
declare enum PetsInterestName {
|
|
276
282
|
Dog = "dog",
|
|
277
283
|
Cat = "cat",
|
|
@@ -300,7 +306,7 @@ declare enum SportsInterestName {
|
|
|
300
306
|
Other = "other"
|
|
301
307
|
}
|
|
302
308
|
|
|
303
|
-
type InterestName = SportsInterestName | PetsInterestName | '';
|
|
309
|
+
type InterestName = SportsInterestName | PetsInterestName | MusicInterestName | '';
|
|
304
310
|
declare const InterestNameNone: InterestName;
|
|
305
311
|
|
|
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 };
|
|
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 };
|
package/dist/index.d.ts
CHANGED
|
@@ -272,6 +272,12 @@ declare enum CategoryName {
|
|
|
272
272
|
None = ""
|
|
273
273
|
}
|
|
274
274
|
|
|
275
|
+
declare enum MusicInterestName {
|
|
276
|
+
Guitar = "guitar",
|
|
277
|
+
Singing = "singing",
|
|
278
|
+
Other = "other"
|
|
279
|
+
}
|
|
280
|
+
|
|
275
281
|
declare enum PetsInterestName {
|
|
276
282
|
Dog = "dog",
|
|
277
283
|
Cat = "cat",
|
|
@@ -300,7 +306,7 @@ declare enum SportsInterestName {
|
|
|
300
306
|
Other = "other"
|
|
301
307
|
}
|
|
302
308
|
|
|
303
|
-
type InterestName = SportsInterestName | PetsInterestName | '';
|
|
309
|
+
type InterestName = SportsInterestName | PetsInterestName | MusicInterestName | '';
|
|
304
310
|
declare const InterestNameNone: InterestName;
|
|
305
311
|
|
|
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 };
|
|
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 };
|
package/dist/index.js
CHANGED
|
@@ -41,6 +41,7 @@ __export(index_exports, {
|
|
|
41
41
|
MarketMetaStatus: () => MarketMetaStatus,
|
|
42
42
|
MarketType: () => MarketType,
|
|
43
43
|
MemberingStatus: () => MemberingStatus,
|
|
44
|
+
MusicInterestName: () => MusicInterestName,
|
|
44
45
|
PageType: () => PageType,
|
|
45
46
|
PageUpdateType: () => PageUpdateType,
|
|
46
47
|
PetGender: () => PetGender,
|
|
@@ -418,6 +419,14 @@ var PetsInterestName = /* @__PURE__ */ ((PetsInterestName2) => {
|
|
|
418
419
|
PetsInterestName2["Other"] = "other";
|
|
419
420
|
return PetsInterestName2;
|
|
420
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 || {});
|
|
421
430
|
// Annotate the CommonJS export names for ESM import in node:
|
|
422
431
|
0 && (module.exports = {
|
|
423
432
|
AccountStatus,
|
|
@@ -441,6 +450,7 @@ var PetsInterestName = /* @__PURE__ */ ((PetsInterestName2) => {
|
|
|
441
450
|
MarketMetaStatus,
|
|
442
451
|
MarketType,
|
|
443
452
|
MemberingStatus,
|
|
453
|
+
MusicInterestName,
|
|
444
454
|
PageType,
|
|
445
455
|
PageUpdateType,
|
|
446
456
|
PetGender,
|
package/dist/index.mjs
CHANGED
|
@@ -357,6 +357,14 @@ var PetsInterestName = /* @__PURE__ */ ((PetsInterestName2) => {
|
|
|
357
357
|
PetsInterestName2["Other"] = "other";
|
|
358
358
|
return PetsInterestName2;
|
|
359
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 || {});
|
|
360
368
|
export {
|
|
361
369
|
AccountStatus,
|
|
362
370
|
AdminAccountStatus,
|
|
@@ -379,6 +387,7 @@ export {
|
|
|
379
387
|
MarketMetaStatus,
|
|
380
388
|
MarketType,
|
|
381
389
|
MemberingStatus,
|
|
390
|
+
MusicInterestName,
|
|
382
391
|
PageType,
|
|
383
392
|
PageUpdateType,
|
|
384
393
|
PetGender,
|
package/package.json
CHANGED
|
@@ -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 = '';
|