wenum 1.4.0 → 1.5.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 +16 -7
- package/dist/index.d.ts +16 -7
- package/dist/index.js +22 -8
- package/dist/index.mjs +20 -8
- package/package.json +1 -1
- package/src/page/profile/collection.ts +6 -0
- package/src/page/profile/index.ts +0 -1
- package/src/page/profile/market.ts +6 -0
- package/src/page/profile/profile.ts +4 -0
- package/src/page/profile/common.ts +0 -3
package/dist/index.d.mts
CHANGED
|
@@ -32,6 +32,11 @@ declare enum ProfileStatus {
|
|
|
32
32
|
Active = 1,
|
|
33
33
|
Inactive = 2
|
|
34
34
|
}
|
|
35
|
+
declare enum ChallengeStatus {
|
|
36
|
+
None = 0,
|
|
37
|
+
Open = 1,
|
|
38
|
+
Closed = 2
|
|
39
|
+
}
|
|
35
40
|
|
|
36
41
|
declare enum MarketType {
|
|
37
42
|
Zero = 0,
|
|
@@ -59,6 +64,11 @@ declare enum MarketType {
|
|
|
59
64
|
Found = 98,
|
|
60
65
|
Other = 99
|
|
61
66
|
}
|
|
67
|
+
declare enum MarketMetaStatus {
|
|
68
|
+
None = 0,
|
|
69
|
+
Active = 1,
|
|
70
|
+
Inactive = 2
|
|
71
|
+
}
|
|
62
72
|
|
|
63
73
|
declare enum CollectionType {
|
|
64
74
|
Zero = 0,
|
|
@@ -73,6 +83,11 @@ declare enum CollectionType {
|
|
|
73
83
|
Nine = 9,
|
|
74
84
|
Ten = 10
|
|
75
85
|
}
|
|
86
|
+
declare enum CollectionMetaStatus {
|
|
87
|
+
None = 0,
|
|
88
|
+
Active = 1,
|
|
89
|
+
Inactive = 2
|
|
90
|
+
}
|
|
76
91
|
|
|
77
92
|
declare enum Pronoun {
|
|
78
93
|
None = 0,
|
|
@@ -89,12 +104,6 @@ declare enum AttendanceStatus {
|
|
|
89
104
|
Left = 5
|
|
90
105
|
}
|
|
91
106
|
|
|
92
|
-
declare enum ChallengeStatus {
|
|
93
|
-
None = 0,
|
|
94
|
-
Open = 1,
|
|
95
|
-
Closed = 2
|
|
96
|
-
}
|
|
97
|
-
|
|
98
107
|
declare enum PostType {
|
|
99
108
|
None = 0,
|
|
100
109
|
Text = 1,
|
|
@@ -218,4 +227,4 @@ declare enum SubjectType {
|
|
|
218
227
|
Reply = 4
|
|
219
228
|
}
|
|
220
229
|
|
|
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 };
|
|
230
|
+
export { AccountStatus, AdminAccountStatus, AttendanceStatus, BasketballPosition, BuddyingStatus, ChallengeStatus, CollectionMetaStatus, CollectionType, ConnectionType, FollowingStatus, Handedness, LocationType, MarketMetaStatus, MarketType, MemberingStatus, PageType, PageUpdateType, PetGender, PostPrivacy, PostType, ProfilePermission, ProfilePrivacy, ProfileStatus, ProfileType, Pronoun, SubjectType, TennisBackhand, TennisLevel };
|
package/dist/index.d.ts
CHANGED
|
@@ -32,6 +32,11 @@ declare enum ProfileStatus {
|
|
|
32
32
|
Active = 1,
|
|
33
33
|
Inactive = 2
|
|
34
34
|
}
|
|
35
|
+
declare enum ChallengeStatus {
|
|
36
|
+
None = 0,
|
|
37
|
+
Open = 1,
|
|
38
|
+
Closed = 2
|
|
39
|
+
}
|
|
35
40
|
|
|
36
41
|
declare enum MarketType {
|
|
37
42
|
Zero = 0,
|
|
@@ -59,6 +64,11 @@ declare enum MarketType {
|
|
|
59
64
|
Found = 98,
|
|
60
65
|
Other = 99
|
|
61
66
|
}
|
|
67
|
+
declare enum MarketMetaStatus {
|
|
68
|
+
None = 0,
|
|
69
|
+
Active = 1,
|
|
70
|
+
Inactive = 2
|
|
71
|
+
}
|
|
62
72
|
|
|
63
73
|
declare enum CollectionType {
|
|
64
74
|
Zero = 0,
|
|
@@ -73,6 +83,11 @@ declare enum CollectionType {
|
|
|
73
83
|
Nine = 9,
|
|
74
84
|
Ten = 10
|
|
75
85
|
}
|
|
86
|
+
declare enum CollectionMetaStatus {
|
|
87
|
+
None = 0,
|
|
88
|
+
Active = 1,
|
|
89
|
+
Inactive = 2
|
|
90
|
+
}
|
|
76
91
|
|
|
77
92
|
declare enum Pronoun {
|
|
78
93
|
None = 0,
|
|
@@ -89,12 +104,6 @@ declare enum AttendanceStatus {
|
|
|
89
104
|
Left = 5
|
|
90
105
|
}
|
|
91
106
|
|
|
92
|
-
declare enum ChallengeStatus {
|
|
93
|
-
None = 0,
|
|
94
|
-
Open = 1,
|
|
95
|
-
Closed = 2
|
|
96
|
-
}
|
|
97
|
-
|
|
98
107
|
declare enum PostType {
|
|
99
108
|
None = 0,
|
|
100
109
|
Text = 1,
|
|
@@ -218,4 +227,4 @@ declare enum SubjectType {
|
|
|
218
227
|
Reply = 4
|
|
219
228
|
}
|
|
220
229
|
|
|
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 };
|
|
230
|
+
export { AccountStatus, AdminAccountStatus, AttendanceStatus, BasketballPosition, BuddyingStatus, ChallengeStatus, CollectionMetaStatus, CollectionType, ConnectionType, FollowingStatus, Handedness, LocationType, MarketMetaStatus, MarketType, MemberingStatus, PageType, PageUpdateType, PetGender, PostPrivacy, PostType, ProfilePermission, ProfilePrivacy, ProfileStatus, ProfileType, Pronoun, SubjectType, TennisBackhand, TennisLevel };
|
package/dist/index.js
CHANGED
|
@@ -26,11 +26,13 @@ __export(index_exports, {
|
|
|
26
26
|
BasketballPosition: () => BasketballPosition,
|
|
27
27
|
BuddyingStatus: () => BuddyingStatus,
|
|
28
28
|
ChallengeStatus: () => ChallengeStatus,
|
|
29
|
+
CollectionMetaStatus: () => CollectionMetaStatus,
|
|
29
30
|
CollectionType: () => CollectionType,
|
|
30
31
|
ConnectionType: () => ConnectionType,
|
|
31
32
|
FollowingStatus: () => FollowingStatus,
|
|
32
33
|
Handedness: () => Handedness,
|
|
33
34
|
LocationType: () => LocationType,
|
|
35
|
+
MarketMetaStatus: () => MarketMetaStatus,
|
|
34
36
|
MarketType: () => MarketType,
|
|
35
37
|
MemberingStatus: () => MemberingStatus,
|
|
36
38
|
PageType: () => PageType,
|
|
@@ -90,6 +92,12 @@ var ProfileStatus = /* @__PURE__ */ ((ProfileStatus2) => {
|
|
|
90
92
|
ProfileStatus2[ProfileStatus2["Inactive"] = 2] = "Inactive";
|
|
91
93
|
return ProfileStatus2;
|
|
92
94
|
})(ProfileStatus || {});
|
|
95
|
+
var ChallengeStatus = /* @__PURE__ */ ((ChallengeStatus2) => {
|
|
96
|
+
ChallengeStatus2[ChallengeStatus2["None"] = 0] = "None";
|
|
97
|
+
ChallengeStatus2[ChallengeStatus2["Open"] = 1] = "Open";
|
|
98
|
+
ChallengeStatus2[ChallengeStatus2["Closed"] = 2] = "Closed";
|
|
99
|
+
return ChallengeStatus2;
|
|
100
|
+
})(ChallengeStatus || {});
|
|
93
101
|
|
|
94
102
|
// src/page/profile/market.ts
|
|
95
103
|
var MarketType = /* @__PURE__ */ ((MarketType2) => {
|
|
@@ -119,6 +127,12 @@ var MarketType = /* @__PURE__ */ ((MarketType2) => {
|
|
|
119
127
|
MarketType2[MarketType2["Other"] = 99] = "Other";
|
|
120
128
|
return MarketType2;
|
|
121
129
|
})(MarketType || {});
|
|
130
|
+
var MarketMetaStatus = /* @__PURE__ */ ((MarketMetaStatus2) => {
|
|
131
|
+
MarketMetaStatus2[MarketMetaStatus2["None"] = 0] = "None";
|
|
132
|
+
MarketMetaStatus2[MarketMetaStatus2["Active"] = 1] = "Active";
|
|
133
|
+
MarketMetaStatus2[MarketMetaStatus2["Inactive"] = 2] = "Inactive";
|
|
134
|
+
return MarketMetaStatus2;
|
|
135
|
+
})(MarketMetaStatus || {});
|
|
122
136
|
|
|
123
137
|
// src/page/profile/collection.ts
|
|
124
138
|
var CollectionType = /* @__PURE__ */ ((CollectionType2) => {
|
|
@@ -135,6 +149,12 @@ var CollectionType = /* @__PURE__ */ ((CollectionType2) => {
|
|
|
135
149
|
CollectionType2[CollectionType2["Ten"] = 10] = "Ten";
|
|
136
150
|
return CollectionType2;
|
|
137
151
|
})(CollectionType || {});
|
|
152
|
+
var CollectionMetaStatus = /* @__PURE__ */ ((CollectionMetaStatus2) => {
|
|
153
|
+
CollectionMetaStatus2[CollectionMetaStatus2["None"] = 0] = "None";
|
|
154
|
+
CollectionMetaStatus2[CollectionMetaStatus2["Active"] = 1] = "Active";
|
|
155
|
+
CollectionMetaStatus2[CollectionMetaStatus2["Inactive"] = 2] = "Inactive";
|
|
156
|
+
return CollectionMetaStatus2;
|
|
157
|
+
})(CollectionMetaStatus || {});
|
|
138
158
|
|
|
139
159
|
// src/page/profile/user.ts
|
|
140
160
|
var Pronoun = /* @__PURE__ */ ((Pronoun2) => {
|
|
@@ -155,14 +175,6 @@ var AttendanceStatus = /* @__PURE__ */ ((AttendanceStatus2) => {
|
|
|
155
175
|
return AttendanceStatus2;
|
|
156
176
|
})(AttendanceStatus || {});
|
|
157
177
|
|
|
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
|
-
|
|
166
178
|
// src/page/post.ts
|
|
167
179
|
var PostType = /* @__PURE__ */ ((PostType2) => {
|
|
168
180
|
PostType2[PostType2["None"] = 0] = "None";
|
|
@@ -318,11 +330,13 @@ var SubjectType = /* @__PURE__ */ ((SubjectType2) => {
|
|
|
318
330
|
BasketballPosition,
|
|
319
331
|
BuddyingStatus,
|
|
320
332
|
ChallengeStatus,
|
|
333
|
+
CollectionMetaStatus,
|
|
321
334
|
CollectionType,
|
|
322
335
|
ConnectionType,
|
|
323
336
|
FollowingStatus,
|
|
324
337
|
Handedness,
|
|
325
338
|
LocationType,
|
|
339
|
+
MarketMetaStatus,
|
|
326
340
|
MarketType,
|
|
327
341
|
MemberingStatus,
|
|
328
342
|
PageType,
|
package/dist/index.mjs
CHANGED
|
@@ -39,6 +39,12 @@ var ProfileStatus = /* @__PURE__ */ ((ProfileStatus2) => {
|
|
|
39
39
|
ProfileStatus2[ProfileStatus2["Inactive"] = 2] = "Inactive";
|
|
40
40
|
return ProfileStatus2;
|
|
41
41
|
})(ProfileStatus || {});
|
|
42
|
+
var ChallengeStatus = /* @__PURE__ */ ((ChallengeStatus2) => {
|
|
43
|
+
ChallengeStatus2[ChallengeStatus2["None"] = 0] = "None";
|
|
44
|
+
ChallengeStatus2[ChallengeStatus2["Open"] = 1] = "Open";
|
|
45
|
+
ChallengeStatus2[ChallengeStatus2["Closed"] = 2] = "Closed";
|
|
46
|
+
return ChallengeStatus2;
|
|
47
|
+
})(ChallengeStatus || {});
|
|
42
48
|
|
|
43
49
|
// src/page/profile/market.ts
|
|
44
50
|
var MarketType = /* @__PURE__ */ ((MarketType2) => {
|
|
@@ -68,6 +74,12 @@ var MarketType = /* @__PURE__ */ ((MarketType2) => {
|
|
|
68
74
|
MarketType2[MarketType2["Other"] = 99] = "Other";
|
|
69
75
|
return MarketType2;
|
|
70
76
|
})(MarketType || {});
|
|
77
|
+
var MarketMetaStatus = /* @__PURE__ */ ((MarketMetaStatus2) => {
|
|
78
|
+
MarketMetaStatus2[MarketMetaStatus2["None"] = 0] = "None";
|
|
79
|
+
MarketMetaStatus2[MarketMetaStatus2["Active"] = 1] = "Active";
|
|
80
|
+
MarketMetaStatus2[MarketMetaStatus2["Inactive"] = 2] = "Inactive";
|
|
81
|
+
return MarketMetaStatus2;
|
|
82
|
+
})(MarketMetaStatus || {});
|
|
71
83
|
|
|
72
84
|
// src/page/profile/collection.ts
|
|
73
85
|
var CollectionType = /* @__PURE__ */ ((CollectionType2) => {
|
|
@@ -84,6 +96,12 @@ var CollectionType = /* @__PURE__ */ ((CollectionType2) => {
|
|
|
84
96
|
CollectionType2[CollectionType2["Ten"] = 10] = "Ten";
|
|
85
97
|
return CollectionType2;
|
|
86
98
|
})(CollectionType || {});
|
|
99
|
+
var CollectionMetaStatus = /* @__PURE__ */ ((CollectionMetaStatus2) => {
|
|
100
|
+
CollectionMetaStatus2[CollectionMetaStatus2["None"] = 0] = "None";
|
|
101
|
+
CollectionMetaStatus2[CollectionMetaStatus2["Active"] = 1] = "Active";
|
|
102
|
+
CollectionMetaStatus2[CollectionMetaStatus2["Inactive"] = 2] = "Inactive";
|
|
103
|
+
return CollectionMetaStatus2;
|
|
104
|
+
})(CollectionMetaStatus || {});
|
|
87
105
|
|
|
88
106
|
// src/page/profile/user.ts
|
|
89
107
|
var Pronoun = /* @__PURE__ */ ((Pronoun2) => {
|
|
@@ -104,14 +122,6 @@ var AttendanceStatus = /* @__PURE__ */ ((AttendanceStatus2) => {
|
|
|
104
122
|
return AttendanceStatus2;
|
|
105
123
|
})(AttendanceStatus || {});
|
|
106
124
|
|
|
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
|
-
|
|
115
125
|
// src/page/post.ts
|
|
116
126
|
var PostType = /* @__PURE__ */ ((PostType2) => {
|
|
117
127
|
PostType2[PostType2["None"] = 0] = "None";
|
|
@@ -266,11 +276,13 @@ export {
|
|
|
266
276
|
BasketballPosition,
|
|
267
277
|
BuddyingStatus,
|
|
268
278
|
ChallengeStatus,
|
|
279
|
+
CollectionMetaStatus,
|
|
269
280
|
CollectionType,
|
|
270
281
|
ConnectionType,
|
|
271
282
|
FollowingStatus,
|
|
272
283
|
Handedness,
|
|
273
284
|
LocationType,
|
|
285
|
+
MarketMetaStatus,
|
|
274
286
|
MarketType,
|
|
275
287
|
MemberingStatus,
|
|
276
288
|
PageType,
|
package/package.json
CHANGED