wenum 1.2.0 → 1.2.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 +1 -2
- package/dist/index.d.ts +1 -2
- package/dist/index.js +0 -1
- package/dist/index.mjs +0 -1
- package/package.json +1 -1
- package/src/comment.ts +0 -1
package/dist/index.d.mts
CHANGED
|
@@ -211,8 +211,7 @@ declare enum ConnectionType {
|
|
|
211
211
|
declare enum SubjectType {
|
|
212
212
|
None = 0,
|
|
213
213
|
Post = 1,
|
|
214
|
-
Rating = 2
|
|
215
|
-
Comment = 3
|
|
214
|
+
Rating = 2
|
|
216
215
|
}
|
|
217
216
|
|
|
218
217
|
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,8 +211,7 @@ declare enum ConnectionType {
|
|
|
211
211
|
declare enum SubjectType {
|
|
212
212
|
None = 0,
|
|
213
213
|
Post = 1,
|
|
214
|
-
Rating = 2
|
|
215
|
-
Comment = 3
|
|
214
|
+
Rating = 2
|
|
216
215
|
}
|
|
217
216
|
|
|
218
217
|
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,7 +303,6 @@ 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["Comment"] = 3] = "Comment";
|
|
307
306
|
return SubjectType2;
|
|
308
307
|
})(SubjectType || {});
|
|
309
308
|
// Annotate the CommonJS export names for ESM import in node:
|
package/dist/index.mjs
CHANGED
|
@@ -252,7 +252,6 @@ 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["Comment"] = 3] = "Comment";
|
|
256
255
|
return SubjectType2;
|
|
257
256
|
})(SubjectType || {});
|
|
258
257
|
export {
|
package/package.json
CHANGED