wenum 1.1.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 CHANGED
@@ -208,4 +208,10 @@ 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
+ }
216
+
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
@@ -208,4 +208,10 @@ 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
+ }
216
+
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
@@ -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,14 @@ 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
+ return SubjectType2;
307
+ })(SubjectType || {});
299
308
  // Annotate the CommonJS export names for ESM import in node:
300
309
  0 && (module.exports = {
301
310
  AccountStatus,
@@ -321,6 +330,7 @@ var ConnectionType = /* @__PURE__ */ ((ConnectionType2) => {
321
330
  ProfileStatus,
322
331
  ProfileType,
323
332
  Pronoun,
333
+ SubjectType,
324
334
  TennisBackhand,
325
335
  TennisLevel
326
336
  });
package/dist/index.mjs CHANGED
@@ -246,6 +246,14 @@ 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
+ return SubjectType2;
256
+ })(SubjectType || {});
249
257
  export {
250
258
  AccountStatus,
251
259
  AdminAccountStatus,
@@ -270,6 +278,7 @@ export {
270
278
  ProfileStatus,
271
279
  ProfileType,
272
280
  Pronoun,
281
+ SubjectType,
273
282
  TennisBackhand,
274
283
  TennisLevel
275
284
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wenum",
3
- "version": "1.1.0",
3
+ "version": "1.2.1",
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,5 @@
1
+ export enum SubjectType {
2
+ None,
3
+ Post,
4
+ Rating,
5
+ }
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';