@engagently/types 2.9.0 → 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",
@@ -232,7 +232,9 @@ export declare const defaultResources: {
232
232
  "discussion-global-closed": string;
233
233
  "discussion-preamble": string;
234
234
  "log-in-to-comment": string;
235
- "user-suspended": string;
235
+ "user-sanction-block": string;
236
+ "user-sanction-block-until": string;
237
+ "user-sanction-warn": string;
236
238
  "username-change": string;
237
239
  };
238
240
  poll: {
@@ -470,7 +472,9 @@ export declare const defaultResources: {
470
472
  "discussion-global-closed": string;
471
473
  "discussion-preamble": string;
472
474
  "log-in-to-comment": string;
473
- "user-suspended": string;
475
+ "user-sanction-block": string;
476
+ "user-sanction-block-until": string;
477
+ "user-sanction-warn": string;
474
478
  "username-change": string;
475
479
  };
476
480
  poll: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@engagently/types",
3
- "version": "2.9.0",
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
  }