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 +7 -1
- package/dist/index.d.ts +7 -1
- package/dist/index.js +10 -0
- package/dist/index.mjs +9 -0
- package/package.json +1 -1
- package/src/comment.ts +5 -0
- package/src/index.ts +2 -1
package/dist/index.d.mts
CHANGED
|
@@ -208,4 +208,10 @@ declare enum ConnectionType {
|
|
|
208
208
|
Following = 2
|
|
209
209
|
}
|
|
210
210
|
|
|
211
|
-
|
|
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
|
-
|
|
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
package/src/comment.ts
ADDED
package/src/index.ts
CHANGED