@engagently/types 2.8.5 → 2.10.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.
@@ -51,18 +51,24 @@ export declare enum PageStatus {
51
51
  Full = "FULL",
52
52
  Partial = "PARTIAL"
53
53
  }
54
+ export declare enum UserDeletionStatus {
55
+ Completed = "COMPLETED",
56
+ InProgress = "IN_PROGRESS",
57
+ Scheduled = "SCHEDULED"
58
+ }
54
59
  export declare enum UserFlag {
55
60
  Anonymous = "ANONYMOUS",
56
61
  Any = "ANY",
57
62
  Authenticated = "AUTHENTICATED",
63
+ Deleted = "DELETED",
58
64
  Eligible = "ELIGIBLE",
65
+ Obscured = "OBSCURED",
59
66
  Paid = "PAID",
60
67
  Sanctioned = "SANCTIONED"
61
68
  }
62
69
  export declare enum UserPenalty {
63
70
  Block = "BLOCK",
64
- Mute = "MUTE",
65
- Suspend = "SUSPEND"
71
+ Warn = "WARN"
66
72
  }
67
73
  export declare enum UserRole {
68
74
  Moderator = "MODERATOR",
@@ -116,6 +116,7 @@ export declare const defaultResources: {
116
116
  "new-commentary": string;
117
117
  "new-commentary_other": string;
118
118
  "no-more-comments": string;
119
+ "no-comments-yet": string;
119
120
  "no-recent-comments": string;
120
121
  placeholders: {
121
122
  "new-commentary": string;
@@ -231,7 +232,9 @@ export declare const defaultResources: {
231
232
  "discussion-global-closed": string;
232
233
  "discussion-preamble": string;
233
234
  "log-in-to-comment": string;
234
- "user-suspended": string;
235
+ "user-sanction-block": string;
236
+ "user-sanction-block-until": string;
237
+ "user-sanction-warn": string;
235
238
  "username-change": string;
236
239
  };
237
240
  poll: {
@@ -354,6 +357,7 @@ export declare const defaultResources: {
354
357
  "new-commentary": string;
355
358
  "new-commentary_other": string;
356
359
  "no-more-comments": string;
360
+ "no-comments-yet": string;
357
361
  "no-recent-comments": string;
358
362
  placeholders: {
359
363
  "new-commentary": string;
@@ -468,7 +472,9 @@ export declare const defaultResources: {
468
472
  "discussion-global-closed": string;
469
473
  "discussion-preamble": string;
470
474
  "log-in-to-comment": string;
471
- "user-suspended": string;
475
+ "user-sanction-block": string;
476
+ "user-sanction-block-until": string;
477
+ "user-sanction-warn": string;
472
478
  "username-change": string;
473
479
  };
474
480
  poll: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@engagently/types",
3
- "version": "2.8.5",
3
+ "version": "2.10.0",
4
4
  "main": "./index.ts",
5
5
  "types": "dist/types/engagently.d.ts",
6
6
  "files": [
@@ -17,7 +17,6 @@
17
17
  "clean": "rimraf dist"
18
18
  },
19
19
  "devDependencies": {
20
- "vite": "^3.0.0",
21
20
  "vite-plugin-dts": "^3.4.0"
22
21
  }
23
22
  }