@platelet-app/types 1.1.1 → 1.1.2

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/API.js CHANGED
@@ -13,25 +13,25 @@ export var ModelAttributeTypes;
13
13
  ModelAttributeTypes["string"] = "string";
14
14
  ModelAttributeTypes["stringSet"] = "stringSet";
15
15
  ModelAttributeTypes["_null"] = "_null";
16
- })(ModelAttributeTypes || (ModelAttributeTypes = {}));
16
+ })(ModelAttributeTypes = ModelAttributeTypes || (ModelAttributeTypes = {}));
17
17
  export var Role;
18
18
  (function (Role) {
19
19
  Role["USER"] = "USER";
20
20
  Role["COORDINATOR"] = "COORDINATOR";
21
21
  Role["RIDER"] = "RIDER";
22
22
  Role["ADMIN"] = "ADMIN";
23
- })(Role || (Role = {}));
23
+ })(Role = Role || (Role = {}));
24
24
  export var CommentVisibility;
25
25
  (function (CommentVisibility) {
26
26
  CommentVisibility["EVERYONE"] = "EVERYONE";
27
27
  CommentVisibility["ME"] = "ME";
28
- })(CommentVisibility || (CommentVisibility = {}));
28
+ })(CommentVisibility = CommentVisibility || (CommentVisibility = {}));
29
29
  export var Priority;
30
30
  (function (Priority) {
31
31
  Priority["HIGH"] = "HIGH";
32
32
  Priority["MEDIUM"] = "MEDIUM";
33
33
  Priority["LOW"] = "LOW";
34
- })(Priority || (Priority = {}));
34
+ })(Priority = Priority || (Priority = {}));
35
35
  export var DeliverableTypeIcon;
36
36
  (function (DeliverableTypeIcon) {
37
37
  DeliverableTypeIcon["BUG"] = "BUG";
@@ -39,7 +39,7 @@ export var DeliverableTypeIcon;
39
39
  DeliverableTypeIcon["DOCUMENT"] = "DOCUMENT";
40
40
  DeliverableTypeIcon["EQUIPMENT"] = "EQUIPMENT";
41
41
  DeliverableTypeIcon["OTHER"] = "OTHER";
42
- })(DeliverableTypeIcon || (DeliverableTypeIcon = {}));
42
+ })(DeliverableTypeIcon = DeliverableTypeIcon || (DeliverableTypeIcon = {}));
43
43
  export var DeliverableUnit;
44
44
  (function (DeliverableUnit) {
45
45
  DeliverableUnit["NONE"] = "NONE";
@@ -48,7 +48,7 @@ export var DeliverableUnit;
48
48
  DeliverableUnit["GRAM"] = "GRAM";
49
49
  DeliverableUnit["ITEM"] = "ITEM";
50
50
  DeliverableUnit["BOX"] = "BOX";
51
- })(DeliverableUnit || (DeliverableUnit = {}));
51
+ })(DeliverableUnit = DeliverableUnit || (DeliverableUnit = {}));
52
52
  export var TimeRelation;
53
53
  (function (TimeRelation) {
54
54
  TimeRelation["BEFORE"] = "BEFORE";
@@ -56,7 +56,7 @@ export var TimeRelation;
56
56
  TimeRelation["AT"] = "AT";
57
57
  TimeRelation["ANYTIME"] = "ANYTIME";
58
58
  TimeRelation["BETWEEN"] = "BETWEEN";
59
- })(TimeRelation || (TimeRelation = {}));
59
+ })(TimeRelation = TimeRelation || (TimeRelation = {}));
60
60
  export var TaskStatus;
61
61
  (function (TaskStatus) {
62
62
  TaskStatus["NEW"] = "NEW";
@@ -69,9 +69,9 @@ export var TaskStatus;
69
69
  TaskStatus["COMPLETED"] = "COMPLETED";
70
70
  TaskStatus["PENDING"] = "PENDING";
71
71
  TaskStatus["FUTURE"] = "FUTURE";
72
- })(TaskStatus || (TaskStatus = {}));
72
+ })(TaskStatus = TaskStatus || (TaskStatus = {}));
73
73
  export var ModelSortDirection;
74
74
  (function (ModelSortDirection) {
75
75
  ModelSortDirection["ASC"] = "ASC";
76
76
  ModelSortDirection["DESC"] = "DESC";
77
- })(ModelSortDirection || (ModelSortDirection = {}));
77
+ })(ModelSortDirection = ModelSortDirection || (ModelSortDirection = {}));
package/dist/index.d.ts CHANGED
@@ -1 +1 @@
1
- export * from "./API";
1
+ export * from "./API.js";
package/dist/index.js CHANGED
@@ -1 +1 @@
1
- export * from "./API";
1
+ export * from "./API.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platelet-app/types",
3
- "version": "1.1.1",
3
+ "version": "1.1.2",
4
4
  "description": "Types for the platelet.app project",
5
5
  "homepage": "https://platelet.app",
6
6
  "bugs": {
package/src/index.ts CHANGED
@@ -1 +1 @@
1
- export * from "./API";
1
+ export * from "./API.js";
package/tsconfig.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "compilerOptions": {
3
3
  "target": "esnext",
4
- "module": "esnext",
4
+ "module": "nodenext",
5
5
  "declaration": true,
6
6
  "outDir": "./dist",
7
7
  "rootDir": "./src",
8
8
  "esModuleInterop": true,
9
- "moduleResolution": "node",
9
+ "moduleResolution": "nodenext",
10
10
  "skipLibCheck": true
11
11
  },
12
12
  "include": [