wenum 1.7.0 → 1.8.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
@@ -103,6 +103,10 @@ declare enum AttendanceStatus {
103
103
  CheckedIn = 4,
104
104
  Left = 5
105
105
  }
106
+ declare enum EventType {
107
+ Regular = 0,
108
+ Game = 1
109
+ }
106
110
 
107
111
  declare enum PostType {
108
112
  None = 0,
@@ -249,4 +253,4 @@ declare enum TennisGameType {
249
253
  Double = 2
250
254
  }
251
255
 
252
- export { AccountStatus, AdminAccountStatus, AttendanceStatus, BasketballGameType, BasketballPosition, BuddyingStatus, ChallengeStatus, CollectionMetaStatus, CollectionType, ConnectionType, FollowingStatus, GameResult, Handedness, LeaderboardStatus, LocationType, MarketMetaStatus, MarketType, MemberingStatus, PageType, PageUpdateType, PetGender, PostPrivacy, PostType, ProfilePermission, ProfilePrivacy, ProfileStatus, ProfileType, Pronoun, SubjectType, TennisBackhand, TennisGameType, TennisLevel };
256
+ export { AccountStatus, AdminAccountStatus, AttendanceStatus, BasketballGameType, BasketballPosition, BuddyingStatus, ChallengeStatus, CollectionMetaStatus, CollectionType, ConnectionType, EventType, FollowingStatus, GameResult, Handedness, LeaderboardStatus, LocationType, MarketMetaStatus, MarketType, MemberingStatus, PageType, PageUpdateType, PetGender, PostPrivacy, PostType, ProfilePermission, ProfilePrivacy, ProfileStatus, ProfileType, Pronoun, SubjectType, TennisBackhand, TennisGameType, TennisLevel };
package/dist/index.d.ts CHANGED
@@ -103,6 +103,10 @@ declare enum AttendanceStatus {
103
103
  CheckedIn = 4,
104
104
  Left = 5
105
105
  }
106
+ declare enum EventType {
107
+ Regular = 0,
108
+ Game = 1
109
+ }
106
110
 
107
111
  declare enum PostType {
108
112
  None = 0,
@@ -249,4 +253,4 @@ declare enum TennisGameType {
249
253
  Double = 2
250
254
  }
251
255
 
252
- export { AccountStatus, AdminAccountStatus, AttendanceStatus, BasketballGameType, BasketballPosition, BuddyingStatus, ChallengeStatus, CollectionMetaStatus, CollectionType, ConnectionType, FollowingStatus, GameResult, Handedness, LeaderboardStatus, LocationType, MarketMetaStatus, MarketType, MemberingStatus, PageType, PageUpdateType, PetGender, PostPrivacy, PostType, ProfilePermission, ProfilePrivacy, ProfileStatus, ProfileType, Pronoun, SubjectType, TennisBackhand, TennisGameType, TennisLevel };
256
+ export { AccountStatus, AdminAccountStatus, AttendanceStatus, BasketballGameType, BasketballPosition, BuddyingStatus, ChallengeStatus, CollectionMetaStatus, CollectionType, ConnectionType, EventType, FollowingStatus, GameResult, Handedness, LeaderboardStatus, LocationType, MarketMetaStatus, MarketType, MemberingStatus, PageType, PageUpdateType, PetGender, PostPrivacy, PostType, ProfilePermission, ProfilePrivacy, ProfileStatus, ProfileType, Pronoun, SubjectType, TennisBackhand, TennisGameType, TennisLevel };
package/dist/index.js CHANGED
@@ -30,6 +30,7 @@ __export(index_exports, {
30
30
  CollectionMetaStatus: () => CollectionMetaStatus,
31
31
  CollectionType: () => CollectionType,
32
32
  ConnectionType: () => ConnectionType,
33
+ EventType: () => EventType,
33
34
  FollowingStatus: () => FollowingStatus,
34
35
  GameResult: () => GameResult,
35
36
  Handedness: () => Handedness,
@@ -178,6 +179,11 @@ var AttendanceStatus = /* @__PURE__ */ ((AttendanceStatus2) => {
178
179
  AttendanceStatus2[AttendanceStatus2["Left"] = 5] = "Left";
179
180
  return AttendanceStatus2;
180
181
  })(AttendanceStatus || {});
182
+ var EventType = /* @__PURE__ */ ((EventType2) => {
183
+ EventType2[EventType2["Regular"] = 0] = "Regular";
184
+ EventType2[EventType2["Game"] = 1] = "Game";
185
+ return EventType2;
186
+ })(EventType || {});
181
187
 
182
188
  // src/page/post.ts
183
189
  var PostType = /* @__PURE__ */ ((PostType2) => {
@@ -365,6 +371,7 @@ var TennisGameType = /* @__PURE__ */ ((TennisGameType2) => {
365
371
  CollectionMetaStatus,
366
372
  CollectionType,
367
373
  ConnectionType,
374
+ EventType,
368
375
  FollowingStatus,
369
376
  GameResult,
370
377
  Handedness,
package/dist/index.mjs CHANGED
@@ -121,6 +121,11 @@ var AttendanceStatus = /* @__PURE__ */ ((AttendanceStatus2) => {
121
121
  AttendanceStatus2[AttendanceStatus2["Left"] = 5] = "Left";
122
122
  return AttendanceStatus2;
123
123
  })(AttendanceStatus || {});
124
+ var EventType = /* @__PURE__ */ ((EventType2) => {
125
+ EventType2[EventType2["Regular"] = 0] = "Regular";
126
+ EventType2[EventType2["Game"] = 1] = "Game";
127
+ return EventType2;
128
+ })(EventType || {});
124
129
 
125
130
  // src/page/post.ts
126
131
  var PostType = /* @__PURE__ */ ((PostType2) => {
@@ -307,6 +312,7 @@ export {
307
312
  CollectionMetaStatus,
308
313
  CollectionType,
309
314
  ConnectionType,
315
+ EventType,
310
316
  FollowingStatus,
311
317
  GameResult,
312
318
  Handedness,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wenum",
3
- "version": "1.7.0",
3
+ "version": "1.8.0",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.mjs",
6
6
  "types": "dist/index.d.ts",
@@ -1,3 +1,7 @@
1
1
  export enum AttendanceStatus {
2
2
  None, Pending, OnTime, Late, CheckedIn, Left,
3
- }
3
+ }
4
+
5
+ export enum EventType {
6
+ Regular, Game,
7
+ }