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 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wenum",
3
- "version": "1.4.0",
3
+ "version": "1.5.0",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.mjs",
6
6
  "types": "dist/index.d.ts",
@@ -10,4 +10,10 @@ export enum CollectionType {
10
10
  Eight,
11
11
  Nine,
12
12
  Ten
13
+ }
14
+
15
+ export enum CollectionMetaStatus {
16
+ None,
17
+ Active,
18
+ Inactive,
13
19
  }
@@ -3,4 +3,3 @@ export * from './market';
3
3
  export * from './collection';
4
4
  export * from './user';
5
5
  export * from './event';
6
- export * from './common';
@@ -23,4 +23,10 @@ export enum MarketType {
23
23
  Lost = 97,
24
24
  Found = 98,
25
25
  Other = 99
26
+ }
27
+
28
+ export enum MarketMetaStatus {
29
+ None,
30
+ Active,
31
+ Inactive,
26
32
  }
@@ -20,3 +20,7 @@ export enum ProfilePermission {
20
20
  export enum ProfileStatus {
21
21
  None, Active, Inactive,
22
22
  }
23
+
24
+ export enum ChallengeStatus {
25
+ None, Open, Closed,
26
+ }
@@ -1,3 +0,0 @@
1
- export enum ChallengeStatus {
2
- None, Open, Closed,
3
- }