wenum 1.3.0 → 1.3.1
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 +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +2 -1
- package/dist/index.mjs +2 -1
- package/package.json +1 -1
- package/src/comment.ts +1 -0
package/dist/index.d.mts
CHANGED
|
@@ -212,7 +212,8 @@ declare enum SubjectType {
|
|
|
212
212
|
None = 0,
|
|
213
213
|
Post = 1,
|
|
214
214
|
Rating = 2,
|
|
215
|
-
|
|
215
|
+
Comment = 3,
|
|
216
|
+
Reply = 4
|
|
216
217
|
}
|
|
217
218
|
|
|
218
219
|
export { AccountStatus, AdminAccountStatus, AttendanceStatus, BasketballPosition, BuddyingStatus, CollectionType, ConnectionType, FollowingStatus, Handedness, LocationType, MarketType, MemberingStatus, PageType, PageUpdateType, PetGender, PostPrivacy, PostType, ProfileImageType, ProfilePermission, ProfilePrivacy, ProfileStatus, ProfileType, Pronoun, SubjectType, TennisBackhand, TennisLevel };
|
package/dist/index.d.ts
CHANGED
|
@@ -212,7 +212,8 @@ declare enum SubjectType {
|
|
|
212
212
|
None = 0,
|
|
213
213
|
Post = 1,
|
|
214
214
|
Rating = 2,
|
|
215
|
-
|
|
215
|
+
Comment = 3,
|
|
216
|
+
Reply = 4
|
|
216
217
|
}
|
|
217
218
|
|
|
218
219
|
export { AccountStatus, AdminAccountStatus, AttendanceStatus, BasketballPosition, BuddyingStatus, CollectionType, ConnectionType, FollowingStatus, Handedness, LocationType, MarketType, MemberingStatus, PageType, PageUpdateType, PetGender, PostPrivacy, PostType, ProfileImageType, ProfilePermission, ProfilePrivacy, ProfileStatus, ProfileType, Pronoun, SubjectType, TennisBackhand, TennisLevel };
|
package/dist/index.js
CHANGED
|
@@ -303,7 +303,8 @@ 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["
|
|
306
|
+
SubjectType2[SubjectType2["Comment"] = 3] = "Comment";
|
|
307
|
+
SubjectType2[SubjectType2["Reply"] = 4] = "Reply";
|
|
307
308
|
return SubjectType2;
|
|
308
309
|
})(SubjectType || {});
|
|
309
310
|
// Annotate the CommonJS export names for ESM import in node:
|
package/dist/index.mjs
CHANGED
|
@@ -252,7 +252,8 @@ 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["
|
|
255
|
+
SubjectType2[SubjectType2["Comment"] = 3] = "Comment";
|
|
256
|
+
SubjectType2[SubjectType2["Reply"] = 4] = "Reply";
|
|
256
257
|
return SubjectType2;
|
|
257
258
|
})(SubjectType || {});
|
|
258
259
|
export {
|
package/package.json
CHANGED