@techtulp/choremanji-types 1.0.4 → 1.1.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.
- package/dist/index.d.ts +8 -8
- package/dist/index.js +22 -11
- package/dist/task-track.type.d.ts +8 -0
- package/dist/task.type.d.ts +11 -0
- package/dist/task.type.js +2 -0
- package/package.json +1 -1
- package/dist/task-section.type.d.ts +0 -14
- /package/dist/{task-section.type.js → task-track.type.js} +0 -0
package/dist/index.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
export
|
|
1
|
+
export * from './frequency';
|
|
2
|
+
export * from './gender';
|
|
3
|
+
export * from './user-role';
|
|
4
|
+
export * from './status';
|
|
5
|
+
export * from './error-type';
|
|
6
|
+
export * from './get-many.type';
|
|
7
|
+
export * from './task.type';
|
|
8
|
+
export * from './task-track.type';
|
package/dist/index.js
CHANGED
|
@@ -1,13 +1,24 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
2
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
Object.defineProperty(exports, "Status", { enumerable: true, get: function () { return status_1.Status; } });
|
|
12
|
-
const error_type_1 = require("./error-type");
|
|
13
|
-
Object.defineProperty(exports, "ErrorType", { enumerable: true, get: function () { return error_type_1.ErrorType; } });
|
|
17
|
+
__exportStar(require("./frequency"), exports);
|
|
18
|
+
__exportStar(require("./gender"), exports);
|
|
19
|
+
__exportStar(require("./user-role"), exports);
|
|
20
|
+
__exportStar(require("./status"), exports);
|
|
21
|
+
__exportStar(require("./error-type"), exports);
|
|
22
|
+
__exportStar(require("./get-many.type"), exports);
|
|
23
|
+
__exportStar(require("./task.type"), exports);
|
|
24
|
+
__exportStar(require("./task-track.type"), exports);
|
package/package.json
CHANGED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { Status } from './status';
|
|
2
|
-
export interface TaskShow {
|
|
3
|
-
id: string;
|
|
4
|
-
title: string;
|
|
5
|
-
points: number;
|
|
6
|
-
status: Status;
|
|
7
|
-
frequency: string;
|
|
8
|
-
date?: string;
|
|
9
|
-
}
|
|
10
|
-
export interface TaskSection {
|
|
11
|
-
title: string;
|
|
12
|
-
subtitle: string;
|
|
13
|
-
tasks: TaskShow[];
|
|
14
|
-
}
|
|
File without changes
|