wenum 1.3.1 → 1.4.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 +7 -5
- package/dist/index.d.ts +7 -5
- package/dist/index.js +10 -7
- package/dist/index.mjs +9 -6
- package/package.json +1 -1
- package/src/page/profile/common.ts +3 -0
- package/src/page/profile/index.ts +2 -1
- package/src/page/profile/profile.ts +0 -5
package/dist/index.d.mts
CHANGED
|
@@ -32,10 +32,6 @@ declare enum ProfileStatus {
|
|
|
32
32
|
Active = 1,
|
|
33
33
|
Inactive = 2
|
|
34
34
|
}
|
|
35
|
-
declare enum ProfileImageType {
|
|
36
|
-
Avatar = 0,
|
|
37
|
-
Bg = 1
|
|
38
|
-
}
|
|
39
35
|
|
|
40
36
|
declare enum MarketType {
|
|
41
37
|
Zero = 0,
|
|
@@ -93,6 +89,12 @@ declare enum AttendanceStatus {
|
|
|
93
89
|
Left = 5
|
|
94
90
|
}
|
|
95
91
|
|
|
92
|
+
declare enum ChallengeStatus {
|
|
93
|
+
None = 0,
|
|
94
|
+
Open = 1,
|
|
95
|
+
Closed = 2
|
|
96
|
+
}
|
|
97
|
+
|
|
96
98
|
declare enum PostType {
|
|
97
99
|
None = 0,
|
|
98
100
|
Text = 1,
|
|
@@ -216,4 +218,4 @@ declare enum SubjectType {
|
|
|
216
218
|
Reply = 4
|
|
217
219
|
}
|
|
218
220
|
|
|
219
|
-
export { AccountStatus, AdminAccountStatus, AttendanceStatus, BasketballPosition, BuddyingStatus, CollectionType, ConnectionType, FollowingStatus, Handedness, LocationType, MarketType, MemberingStatus, PageType, PageUpdateType, PetGender, PostPrivacy, PostType,
|
|
221
|
+
export { AccountStatus, AdminAccountStatus, AttendanceStatus, BasketballPosition, BuddyingStatus, ChallengeStatus, CollectionType, ConnectionType, FollowingStatus, Handedness, LocationType, MarketType, MemberingStatus, PageType, PageUpdateType, PetGender, PostPrivacy, PostType, ProfilePermission, ProfilePrivacy, ProfileStatus, ProfileType, Pronoun, SubjectType, TennisBackhand, TennisLevel };
|
package/dist/index.d.ts
CHANGED
|
@@ -32,10 +32,6 @@ declare enum ProfileStatus {
|
|
|
32
32
|
Active = 1,
|
|
33
33
|
Inactive = 2
|
|
34
34
|
}
|
|
35
|
-
declare enum ProfileImageType {
|
|
36
|
-
Avatar = 0,
|
|
37
|
-
Bg = 1
|
|
38
|
-
}
|
|
39
35
|
|
|
40
36
|
declare enum MarketType {
|
|
41
37
|
Zero = 0,
|
|
@@ -93,6 +89,12 @@ declare enum AttendanceStatus {
|
|
|
93
89
|
Left = 5
|
|
94
90
|
}
|
|
95
91
|
|
|
92
|
+
declare enum ChallengeStatus {
|
|
93
|
+
None = 0,
|
|
94
|
+
Open = 1,
|
|
95
|
+
Closed = 2
|
|
96
|
+
}
|
|
97
|
+
|
|
96
98
|
declare enum PostType {
|
|
97
99
|
None = 0,
|
|
98
100
|
Text = 1,
|
|
@@ -216,4 +218,4 @@ declare enum SubjectType {
|
|
|
216
218
|
Reply = 4
|
|
217
219
|
}
|
|
218
220
|
|
|
219
|
-
export { AccountStatus, AdminAccountStatus, AttendanceStatus, BasketballPosition, BuddyingStatus, CollectionType, ConnectionType, FollowingStatus, Handedness, LocationType, MarketType, MemberingStatus, PageType, PageUpdateType, PetGender, PostPrivacy, PostType,
|
|
221
|
+
export { AccountStatus, AdminAccountStatus, AttendanceStatus, BasketballPosition, BuddyingStatus, ChallengeStatus, CollectionType, ConnectionType, FollowingStatus, Handedness, LocationType, MarketType, MemberingStatus, PageType, PageUpdateType, PetGender, PostPrivacy, PostType, ProfilePermission, ProfilePrivacy, ProfileStatus, ProfileType, Pronoun, SubjectType, TennisBackhand, TennisLevel };
|
package/dist/index.js
CHANGED
|
@@ -25,6 +25,7 @@ __export(index_exports, {
|
|
|
25
25
|
AttendanceStatus: () => AttendanceStatus,
|
|
26
26
|
BasketballPosition: () => BasketballPosition,
|
|
27
27
|
BuddyingStatus: () => BuddyingStatus,
|
|
28
|
+
ChallengeStatus: () => ChallengeStatus,
|
|
28
29
|
CollectionType: () => CollectionType,
|
|
29
30
|
ConnectionType: () => ConnectionType,
|
|
30
31
|
FollowingStatus: () => FollowingStatus,
|
|
@@ -37,7 +38,6 @@ __export(index_exports, {
|
|
|
37
38
|
PetGender: () => PetGender,
|
|
38
39
|
PostPrivacy: () => PostPrivacy,
|
|
39
40
|
PostType: () => PostType,
|
|
40
|
-
ProfileImageType: () => ProfileImageType,
|
|
41
41
|
ProfilePermission: () => ProfilePermission,
|
|
42
42
|
ProfilePrivacy: () => ProfilePrivacy,
|
|
43
43
|
ProfileStatus: () => ProfileStatus,
|
|
@@ -90,11 +90,6 @@ var ProfileStatus = /* @__PURE__ */ ((ProfileStatus2) => {
|
|
|
90
90
|
ProfileStatus2[ProfileStatus2["Inactive"] = 2] = "Inactive";
|
|
91
91
|
return ProfileStatus2;
|
|
92
92
|
})(ProfileStatus || {});
|
|
93
|
-
var ProfileImageType = /* @__PURE__ */ ((ProfileImageType2) => {
|
|
94
|
-
ProfileImageType2[ProfileImageType2["Avatar"] = 0] = "Avatar";
|
|
95
|
-
ProfileImageType2[ProfileImageType2["Bg"] = 1] = "Bg";
|
|
96
|
-
return ProfileImageType2;
|
|
97
|
-
})(ProfileImageType || {});
|
|
98
93
|
|
|
99
94
|
// src/page/profile/market.ts
|
|
100
95
|
var MarketType = /* @__PURE__ */ ((MarketType2) => {
|
|
@@ -160,6 +155,14 @@ var AttendanceStatus = /* @__PURE__ */ ((AttendanceStatus2) => {
|
|
|
160
155
|
return AttendanceStatus2;
|
|
161
156
|
})(AttendanceStatus || {});
|
|
162
157
|
|
|
158
|
+
// src/page/profile/common.ts
|
|
159
|
+
var ChallengeStatus = /* @__PURE__ */ ((ChallengeStatus2) => {
|
|
160
|
+
ChallengeStatus2[ChallengeStatus2["None"] = 0] = "None";
|
|
161
|
+
ChallengeStatus2[ChallengeStatus2["Open"] = 1] = "Open";
|
|
162
|
+
ChallengeStatus2[ChallengeStatus2["Closed"] = 2] = "Closed";
|
|
163
|
+
return ChallengeStatus2;
|
|
164
|
+
})(ChallengeStatus || {});
|
|
165
|
+
|
|
163
166
|
// src/page/post.ts
|
|
164
167
|
var PostType = /* @__PURE__ */ ((PostType2) => {
|
|
165
168
|
PostType2[PostType2["None"] = 0] = "None";
|
|
@@ -314,6 +317,7 @@ var SubjectType = /* @__PURE__ */ ((SubjectType2) => {
|
|
|
314
317
|
AttendanceStatus,
|
|
315
318
|
BasketballPosition,
|
|
316
319
|
BuddyingStatus,
|
|
320
|
+
ChallengeStatus,
|
|
317
321
|
CollectionType,
|
|
318
322
|
ConnectionType,
|
|
319
323
|
FollowingStatus,
|
|
@@ -326,7 +330,6 @@ var SubjectType = /* @__PURE__ */ ((SubjectType2) => {
|
|
|
326
330
|
PetGender,
|
|
327
331
|
PostPrivacy,
|
|
328
332
|
PostType,
|
|
329
|
-
ProfileImageType,
|
|
330
333
|
ProfilePermission,
|
|
331
334
|
ProfilePrivacy,
|
|
332
335
|
ProfileStatus,
|
package/dist/index.mjs
CHANGED
|
@@ -39,11 +39,6 @@ var ProfileStatus = /* @__PURE__ */ ((ProfileStatus2) => {
|
|
|
39
39
|
ProfileStatus2[ProfileStatus2["Inactive"] = 2] = "Inactive";
|
|
40
40
|
return ProfileStatus2;
|
|
41
41
|
})(ProfileStatus || {});
|
|
42
|
-
var ProfileImageType = /* @__PURE__ */ ((ProfileImageType2) => {
|
|
43
|
-
ProfileImageType2[ProfileImageType2["Avatar"] = 0] = "Avatar";
|
|
44
|
-
ProfileImageType2[ProfileImageType2["Bg"] = 1] = "Bg";
|
|
45
|
-
return ProfileImageType2;
|
|
46
|
-
})(ProfileImageType || {});
|
|
47
42
|
|
|
48
43
|
// src/page/profile/market.ts
|
|
49
44
|
var MarketType = /* @__PURE__ */ ((MarketType2) => {
|
|
@@ -109,6 +104,14 @@ var AttendanceStatus = /* @__PURE__ */ ((AttendanceStatus2) => {
|
|
|
109
104
|
return AttendanceStatus2;
|
|
110
105
|
})(AttendanceStatus || {});
|
|
111
106
|
|
|
107
|
+
// src/page/profile/common.ts
|
|
108
|
+
var ChallengeStatus = /* @__PURE__ */ ((ChallengeStatus2) => {
|
|
109
|
+
ChallengeStatus2[ChallengeStatus2["None"] = 0] = "None";
|
|
110
|
+
ChallengeStatus2[ChallengeStatus2["Open"] = 1] = "Open";
|
|
111
|
+
ChallengeStatus2[ChallengeStatus2["Closed"] = 2] = "Closed";
|
|
112
|
+
return ChallengeStatus2;
|
|
113
|
+
})(ChallengeStatus || {});
|
|
114
|
+
|
|
112
115
|
// src/page/post.ts
|
|
113
116
|
var PostType = /* @__PURE__ */ ((PostType2) => {
|
|
114
117
|
PostType2[PostType2["None"] = 0] = "None";
|
|
@@ -262,6 +265,7 @@ export {
|
|
|
262
265
|
AttendanceStatus,
|
|
263
266
|
BasketballPosition,
|
|
264
267
|
BuddyingStatus,
|
|
268
|
+
ChallengeStatus,
|
|
265
269
|
CollectionType,
|
|
266
270
|
ConnectionType,
|
|
267
271
|
FollowingStatus,
|
|
@@ -274,7 +278,6 @@ export {
|
|
|
274
278
|
PetGender,
|
|
275
279
|
PostPrivacy,
|
|
276
280
|
PostType,
|
|
277
|
-
ProfileImageType,
|
|
278
281
|
ProfilePermission,
|
|
279
282
|
ProfilePrivacy,
|
|
280
283
|
ProfileStatus,
|
package/package.json
CHANGED