wenum 1.1.0 → 1.2.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
@@ -208,4 +208,11 @@ declare enum ConnectionType {
208
208
  Following = 2
209
209
  }
210
210
 
211
- export { AccountStatus, AdminAccountStatus, AttendanceStatus, BasketballPosition, CollectionType, ConnectionType, FollowingStatus, Handedness, LocationType, MarketType, MemberingStatus, PageType, PageUpdateType, PartneringStatus, PetGender, PostPrivacy, PostType, ProfileImageType, ProfilePermission, ProfilePrivacy, ProfileStatus, ProfileType, Pronoun, TennisBackhand, TennisLevel };
211
+ declare enum SubjectType {
212
+ None = 0,
213
+ Post = 1,
214
+ Rating = 2,
215
+ Comment = 3
216
+ }
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
@@ -208,4 +208,11 @@ declare enum ConnectionType {
208
208
  Following = 2
209
209
  }
210
210
 
211
- export { AccountStatus, AdminAccountStatus, AttendanceStatus, BasketballPosition, CollectionType, ConnectionType, FollowingStatus, Handedness, LocationType, MarketType, MemberingStatus, PageType, PageUpdateType, PartneringStatus, PetGender, PostPrivacy, PostType, ProfileImageType, ProfilePermission, ProfilePrivacy, ProfileStatus, ProfileType, Pronoun, TennisBackhand, TennisLevel };
211
+ declare enum SubjectType {
212
+ None = 0,
213
+ Post = 1,
214
+ Rating = 2,
215
+ Comment = 3
216
+ }
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
@@ -43,6 +43,7 @@ __export(index_exports, {
43
43
  ProfileStatus: () => ProfileStatus,
44
44
  ProfileType: () => ProfileType,
45
45
  Pronoun: () => Pronoun,
46
+ SubjectType: () => SubjectType,
46
47
  TennisBackhand: () => TennisBackhand,
47
48
  TennisLevel: () => TennisLevel
48
49
  });
@@ -296,6 +297,15 @@ var ConnectionType = /* @__PURE__ */ ((ConnectionType2) => {
296
297
  ConnectionType2[ConnectionType2["Following"] = 2] = "Following";
297
298
  return ConnectionType2;
298
299
  })(ConnectionType || {});
300
+
301
+ // src/comment.ts
302
+ var SubjectType = /* @__PURE__ */ ((SubjectType2) => {
303
+ SubjectType2[SubjectType2["None"] = 0] = "None";
304
+ SubjectType2[SubjectType2["Post"] = 1] = "Post";
305
+ SubjectType2[SubjectType2["Rating"] = 2] = "Rating";
306
+ SubjectType2[SubjectType2["Comment"] = 3] = "Comment";
307
+ return SubjectType2;
308
+ })(SubjectType || {});
299
309
  // Annotate the CommonJS export names for ESM import in node:
300
310
  0 && (module.exports = {
301
311
  AccountStatus,
@@ -321,6 +331,7 @@ var ConnectionType = /* @__PURE__ */ ((ConnectionType2) => {
321
331
  ProfileStatus,
322
332
  ProfileType,
323
333
  Pronoun,
334
+ SubjectType,
324
335
  TennisBackhand,
325
336
  TennisLevel
326
337
  });
package/dist/index.mjs CHANGED
@@ -246,6 +246,15 @@ var ConnectionType = /* @__PURE__ */ ((ConnectionType2) => {
246
246
  ConnectionType2[ConnectionType2["Following"] = 2] = "Following";
247
247
  return ConnectionType2;
248
248
  })(ConnectionType || {});
249
+
250
+ // src/comment.ts
251
+ var SubjectType = /* @__PURE__ */ ((SubjectType2) => {
252
+ SubjectType2[SubjectType2["None"] = 0] = "None";
253
+ SubjectType2[SubjectType2["Post"] = 1] = "Post";
254
+ SubjectType2[SubjectType2["Rating"] = 2] = "Rating";
255
+ SubjectType2[SubjectType2["Comment"] = 3] = "Comment";
256
+ return SubjectType2;
257
+ })(SubjectType || {});
249
258
  export {
250
259
  AccountStatus,
251
260
  AdminAccountStatus,
@@ -270,6 +279,7 @@ export {
270
279
  ProfileStatus,
271
280
  ProfileType,
272
281
  Pronoun,
282
+ SubjectType,
273
283
  TennisBackhand,
274
284
  TennisLevel
275
285
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wenum",
3
- "version": "1.1.0",
3
+ "version": "1.2.0",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.mjs",
6
6
  "types": "dist/index.d.ts",
package/src/comment.ts ADDED
@@ -0,0 +1,6 @@
1
+ export enum SubjectType {
2
+ None,
3
+ Post,
4
+ Rating,
5
+ Comment,
6
+ }
package/src/index.ts CHANGED
@@ -2,4 +2,5 @@ export * from './page';
2
2
  export * from './auth';
3
3
  export * from './connection';
4
4
  export * from './attribute';
5
- export * from './pageUpdate';
5
+ export * from './pageUpdate';
6
+ export * from './comment';