wenum 1.16.1 → 1.18.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 +15 -5
- package/dist/index.d.ts +15 -5
- package/dist/index.js +21 -7
- package/dist/index.mjs +19 -6
- package/package.json +1 -1
- package/src/index.ts +1 -0
- package/src/interest/category.ts +9 -0
- package/src/interest/index.ts +1 -0
- package/src/page/profile/event.ts +0 -4
- package/src/page/profile/leaderboard.ts +5 -0
package/dist/index.d.mts
CHANGED
|
@@ -106,10 +106,6 @@ declare enum AttendanceStatus {
|
|
|
106
106
|
CheckedIn = 4,
|
|
107
107
|
Left = 5
|
|
108
108
|
}
|
|
109
|
-
declare enum EventType {
|
|
110
|
-
Regular = 0,
|
|
111
|
-
Game = 1
|
|
112
|
-
}
|
|
113
109
|
|
|
114
110
|
declare enum GameType {
|
|
115
111
|
Zero = 0,
|
|
@@ -136,6 +132,10 @@ declare enum LeaderboardType {
|
|
|
136
132
|
Distance = 3,
|
|
137
133
|
Score = 4
|
|
138
134
|
}
|
|
135
|
+
declare enum LeaderboardOrder {
|
|
136
|
+
Asc = 0,
|
|
137
|
+
Desc = 1
|
|
138
|
+
}
|
|
139
139
|
|
|
140
140
|
declare enum PostType {
|
|
141
141
|
None = 0,
|
|
@@ -260,4 +260,14 @@ declare enum SubjectType {
|
|
|
260
260
|
Reply = 4
|
|
261
261
|
}
|
|
262
262
|
|
|
263
|
-
|
|
263
|
+
declare enum CategoryName {
|
|
264
|
+
Sports = "sports",
|
|
265
|
+
Pets = "pets",
|
|
266
|
+
Music = "music",
|
|
267
|
+
Dance = "dance",
|
|
268
|
+
Food = "food",
|
|
269
|
+
Photography = "photography",
|
|
270
|
+
Tourism = "tourism"
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
export { AccountStatus, AdminAccountStatus, AttendanceStatus, BasketballPosition, BuddyingStatus, CategoryName, ChallengeStatus, CollectionMetaStatus, CollectionType, ConnectionType, DuelGameResultType, FollowingStatus, GameType, Handedness, LeaderboardOrder, LeaderboardType, LocationType, MarketMetaStatus, MarketType, MemberingStatus, PageType, PageUpdateType, PetGender, PostPrivacy, PostType, ProfilePermission, ProfilePrivacy, ProfileStatus, ProfileType, Pronoun, SubjectType, TennisBackhand, TennisLevel };
|
package/dist/index.d.ts
CHANGED
|
@@ -106,10 +106,6 @@ declare enum AttendanceStatus {
|
|
|
106
106
|
CheckedIn = 4,
|
|
107
107
|
Left = 5
|
|
108
108
|
}
|
|
109
|
-
declare enum EventType {
|
|
110
|
-
Regular = 0,
|
|
111
|
-
Game = 1
|
|
112
|
-
}
|
|
113
109
|
|
|
114
110
|
declare enum GameType {
|
|
115
111
|
Zero = 0,
|
|
@@ -136,6 +132,10 @@ declare enum LeaderboardType {
|
|
|
136
132
|
Distance = 3,
|
|
137
133
|
Score = 4
|
|
138
134
|
}
|
|
135
|
+
declare enum LeaderboardOrder {
|
|
136
|
+
Asc = 0,
|
|
137
|
+
Desc = 1
|
|
138
|
+
}
|
|
139
139
|
|
|
140
140
|
declare enum PostType {
|
|
141
141
|
None = 0,
|
|
@@ -260,4 +260,14 @@ declare enum SubjectType {
|
|
|
260
260
|
Reply = 4
|
|
261
261
|
}
|
|
262
262
|
|
|
263
|
-
|
|
263
|
+
declare enum CategoryName {
|
|
264
|
+
Sports = "sports",
|
|
265
|
+
Pets = "pets",
|
|
266
|
+
Music = "music",
|
|
267
|
+
Dance = "dance",
|
|
268
|
+
Food = "food",
|
|
269
|
+
Photography = "photography",
|
|
270
|
+
Tourism = "tourism"
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
export { AccountStatus, AdminAccountStatus, AttendanceStatus, BasketballPosition, BuddyingStatus, CategoryName, ChallengeStatus, CollectionMetaStatus, CollectionType, ConnectionType, DuelGameResultType, FollowingStatus, GameType, Handedness, LeaderboardOrder, LeaderboardType, LocationType, MarketMetaStatus, MarketType, MemberingStatus, PageType, PageUpdateType, PetGender, PostPrivacy, PostType, ProfilePermission, ProfilePrivacy, ProfileStatus, ProfileType, Pronoun, SubjectType, TennisBackhand, TennisLevel };
|
package/dist/index.js
CHANGED
|
@@ -25,15 +25,16 @@ __export(index_exports, {
|
|
|
25
25
|
AttendanceStatus: () => AttendanceStatus,
|
|
26
26
|
BasketballPosition: () => BasketballPosition,
|
|
27
27
|
BuddyingStatus: () => BuddyingStatus,
|
|
28
|
+
CategoryName: () => CategoryName,
|
|
28
29
|
ChallengeStatus: () => ChallengeStatus,
|
|
29
30
|
CollectionMetaStatus: () => CollectionMetaStatus,
|
|
30
31
|
CollectionType: () => CollectionType,
|
|
31
32
|
ConnectionType: () => ConnectionType,
|
|
32
33
|
DuelGameResultType: () => DuelGameResultType,
|
|
33
|
-
EventType: () => EventType,
|
|
34
34
|
FollowingStatus: () => FollowingStatus,
|
|
35
35
|
GameType: () => GameType,
|
|
36
36
|
Handedness: () => Handedness,
|
|
37
|
+
LeaderboardOrder: () => LeaderboardOrder,
|
|
37
38
|
LeaderboardType: () => LeaderboardType,
|
|
38
39
|
LocationType: () => LocationType,
|
|
39
40
|
MarketMetaStatus: () => MarketMetaStatus,
|
|
@@ -181,11 +182,6 @@ var AttendanceStatus = /* @__PURE__ */ ((AttendanceStatus2) => {
|
|
|
181
182
|
AttendanceStatus2[AttendanceStatus2["Left"] = 5] = "Left";
|
|
182
183
|
return AttendanceStatus2;
|
|
183
184
|
})(AttendanceStatus || {});
|
|
184
|
-
var EventType = /* @__PURE__ */ ((EventType2) => {
|
|
185
|
-
EventType2[EventType2["Regular"] = 0] = "Regular";
|
|
186
|
-
EventType2[EventType2["Game"] = 1] = "Game";
|
|
187
|
-
return EventType2;
|
|
188
|
-
})(EventType || {});
|
|
189
185
|
|
|
190
186
|
// src/page/profile/game.ts
|
|
191
187
|
var GameType = /* @__PURE__ */ ((GameType2) => {
|
|
@@ -217,6 +213,11 @@ var LeaderboardType = /* @__PURE__ */ ((LeaderboardType2) => {
|
|
|
217
213
|
LeaderboardType2[LeaderboardType2["Score"] = 4] = "Score";
|
|
218
214
|
return LeaderboardType2;
|
|
219
215
|
})(LeaderboardType || {});
|
|
216
|
+
var LeaderboardOrder = /* @__PURE__ */ ((LeaderboardOrder2) => {
|
|
217
|
+
LeaderboardOrder2[LeaderboardOrder2["Asc"] = 0] = "Asc";
|
|
218
|
+
LeaderboardOrder2[LeaderboardOrder2["Desc"] = 1] = "Desc";
|
|
219
|
+
return LeaderboardOrder2;
|
|
220
|
+
})(LeaderboardOrder || {});
|
|
220
221
|
|
|
221
222
|
// src/page/post.ts
|
|
222
223
|
var PostType = /* @__PURE__ */ ((PostType2) => {
|
|
@@ -365,6 +366,18 @@ var SubjectType = /* @__PURE__ */ ((SubjectType2) => {
|
|
|
365
366
|
SubjectType2[SubjectType2["Reply"] = 4] = "Reply";
|
|
366
367
|
return SubjectType2;
|
|
367
368
|
})(SubjectType || {});
|
|
369
|
+
|
|
370
|
+
// src/interest/category.ts
|
|
371
|
+
var CategoryName = /* @__PURE__ */ ((CategoryName2) => {
|
|
372
|
+
CategoryName2["Sports"] = "sports";
|
|
373
|
+
CategoryName2["Pets"] = "pets";
|
|
374
|
+
CategoryName2["Music"] = "music";
|
|
375
|
+
CategoryName2["Dance"] = "dance";
|
|
376
|
+
CategoryName2["Food"] = "food";
|
|
377
|
+
CategoryName2["Photography"] = "photography";
|
|
378
|
+
CategoryName2["Tourism"] = "tourism";
|
|
379
|
+
return CategoryName2;
|
|
380
|
+
})(CategoryName || {});
|
|
368
381
|
// Annotate the CommonJS export names for ESM import in node:
|
|
369
382
|
0 && (module.exports = {
|
|
370
383
|
AccountStatus,
|
|
@@ -372,15 +385,16 @@ var SubjectType = /* @__PURE__ */ ((SubjectType2) => {
|
|
|
372
385
|
AttendanceStatus,
|
|
373
386
|
BasketballPosition,
|
|
374
387
|
BuddyingStatus,
|
|
388
|
+
CategoryName,
|
|
375
389
|
ChallengeStatus,
|
|
376
390
|
CollectionMetaStatus,
|
|
377
391
|
CollectionType,
|
|
378
392
|
ConnectionType,
|
|
379
393
|
DuelGameResultType,
|
|
380
|
-
EventType,
|
|
381
394
|
FollowingStatus,
|
|
382
395
|
GameType,
|
|
383
396
|
Handedness,
|
|
397
|
+
LeaderboardOrder,
|
|
384
398
|
LeaderboardType,
|
|
385
399
|
LocationType,
|
|
386
400
|
MarketMetaStatus,
|
package/dist/index.mjs
CHANGED
|
@@ -124,11 +124,6 @@ var AttendanceStatus = /* @__PURE__ */ ((AttendanceStatus2) => {
|
|
|
124
124
|
AttendanceStatus2[AttendanceStatus2["Left"] = 5] = "Left";
|
|
125
125
|
return AttendanceStatus2;
|
|
126
126
|
})(AttendanceStatus || {});
|
|
127
|
-
var EventType = /* @__PURE__ */ ((EventType2) => {
|
|
128
|
-
EventType2[EventType2["Regular"] = 0] = "Regular";
|
|
129
|
-
EventType2[EventType2["Game"] = 1] = "Game";
|
|
130
|
-
return EventType2;
|
|
131
|
-
})(EventType || {});
|
|
132
127
|
|
|
133
128
|
// src/page/profile/game.ts
|
|
134
129
|
var GameType = /* @__PURE__ */ ((GameType2) => {
|
|
@@ -160,6 +155,11 @@ var LeaderboardType = /* @__PURE__ */ ((LeaderboardType2) => {
|
|
|
160
155
|
LeaderboardType2[LeaderboardType2["Score"] = 4] = "Score";
|
|
161
156
|
return LeaderboardType2;
|
|
162
157
|
})(LeaderboardType || {});
|
|
158
|
+
var LeaderboardOrder = /* @__PURE__ */ ((LeaderboardOrder2) => {
|
|
159
|
+
LeaderboardOrder2[LeaderboardOrder2["Asc"] = 0] = "Asc";
|
|
160
|
+
LeaderboardOrder2[LeaderboardOrder2["Desc"] = 1] = "Desc";
|
|
161
|
+
return LeaderboardOrder2;
|
|
162
|
+
})(LeaderboardOrder || {});
|
|
163
163
|
|
|
164
164
|
// src/page/post.ts
|
|
165
165
|
var PostType = /* @__PURE__ */ ((PostType2) => {
|
|
@@ -308,21 +308,34 @@ var SubjectType = /* @__PURE__ */ ((SubjectType2) => {
|
|
|
308
308
|
SubjectType2[SubjectType2["Reply"] = 4] = "Reply";
|
|
309
309
|
return SubjectType2;
|
|
310
310
|
})(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["Dance"] = "dance";
|
|
318
|
+
CategoryName2["Food"] = "food";
|
|
319
|
+
CategoryName2["Photography"] = "photography";
|
|
320
|
+
CategoryName2["Tourism"] = "tourism";
|
|
321
|
+
return CategoryName2;
|
|
322
|
+
})(CategoryName || {});
|
|
311
323
|
export {
|
|
312
324
|
AccountStatus,
|
|
313
325
|
AdminAccountStatus,
|
|
314
326
|
AttendanceStatus,
|
|
315
327
|
BasketballPosition,
|
|
316
328
|
BuddyingStatus,
|
|
329
|
+
CategoryName,
|
|
317
330
|
ChallengeStatus,
|
|
318
331
|
CollectionMetaStatus,
|
|
319
332
|
CollectionType,
|
|
320
333
|
ConnectionType,
|
|
321
334
|
DuelGameResultType,
|
|
322
|
-
EventType,
|
|
323
335
|
FollowingStatus,
|
|
324
336
|
GameType,
|
|
325
337
|
Handedness,
|
|
338
|
+
LeaderboardOrder,
|
|
326
339
|
LeaderboardType,
|
|
327
340
|
LocationType,
|
|
328
341
|
MarketMetaStatus,
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './category';
|