wenum 1.2.1 → 1.2.2

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
@@ -211,7 +211,8 @@ declare enum ConnectionType {
211
211
  declare enum SubjectType {
212
212
  None = 0,
213
213
  Post = 1,
214
- Rating = 2
214
+ Rating = 2,
215
+ Reply = 3
215
216
  }
216
217
 
217
218
  export { AccountStatus, AdminAccountStatus, AttendanceStatus, BasketballPosition, CollectionType, ConnectionType, FollowingStatus, Handedness, LocationType, MarketType, MemberingStatus, PageType, PageUpdateType, PartneringStatus, PetGender, PostPrivacy, PostType, ProfileImageType, ProfilePermission, ProfilePrivacy, ProfileStatus, ProfileType, Pronoun, SubjectType, TennisBackhand, TennisLevel };
package/dist/index.d.ts CHANGED
@@ -211,7 +211,8 @@ declare enum ConnectionType {
211
211
  declare enum SubjectType {
212
212
  None = 0,
213
213
  Post = 1,
214
- Rating = 2
214
+ Rating = 2,
215
+ Reply = 3
215
216
  }
216
217
 
217
218
  export { AccountStatus, AdminAccountStatus, AttendanceStatus, BasketballPosition, CollectionType, ConnectionType, FollowingStatus, Handedness, LocationType, MarketType, MemberingStatus, PageType, PageUpdateType, PartneringStatus, PetGender, PostPrivacy, PostType, ProfileImageType, ProfilePermission, ProfilePrivacy, ProfileStatus, ProfileType, Pronoun, SubjectType, TennisBackhand, TennisLevel };
package/dist/index.js CHANGED
@@ -303,6 +303,7 @@ var SubjectType = /* @__PURE__ */ ((SubjectType2) => {
303
303
  SubjectType2[SubjectType2["None"] = 0] = "None";
304
304
  SubjectType2[SubjectType2["Post"] = 1] = "Post";
305
305
  SubjectType2[SubjectType2["Rating"] = 2] = "Rating";
306
+ SubjectType2[SubjectType2["Reply"] = 3] = "Reply";
306
307
  return SubjectType2;
307
308
  })(SubjectType || {});
308
309
  // Annotate the CommonJS export names for ESM import in node:
package/dist/index.mjs CHANGED
@@ -252,6 +252,7 @@ var SubjectType = /* @__PURE__ */ ((SubjectType2) => {
252
252
  SubjectType2[SubjectType2["None"] = 0] = "None";
253
253
  SubjectType2[SubjectType2["Post"] = 1] = "Post";
254
254
  SubjectType2[SubjectType2["Rating"] = 2] = "Rating";
255
+ SubjectType2[SubjectType2["Reply"] = 3] = "Reply";
255
256
  return SubjectType2;
256
257
  })(SubjectType || {});
257
258
  export {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wenum",
3
- "version": "1.2.1",
3
+ "version": "1.2.2",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.mjs",
6
6
  "types": "dist/index.d.ts",
package/src/comment.ts CHANGED
@@ -2,4 +2,5 @@ export enum SubjectType {
2
2
  None,
3
3
  Post,
4
4
  Rating,
5
+ Reply,
5
6
  }