@meridianjs/issue 0.1.0 → 0.1.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 CHANGED
@@ -12,6 +12,7 @@ interface CreateIssueInput {
12
12
  assignee_ids?: string[];
13
13
  reporter_id?: string;
14
14
  parent_id?: string | null;
15
+ start_date?: Date | null;
15
16
  due_date?: Date;
16
17
  estimate?: number;
17
18
  sprint_id?: string | null;
package/dist/index.d.ts CHANGED
@@ -12,6 +12,7 @@ interface CreateIssueInput {
12
12
  assignee_ids?: string[];
13
13
  reporter_id?: string;
14
14
  parent_id?: string | null;
15
+ start_date?: Date | null;
15
16
  due_date?: Date;
16
17
  estimate?: number;
17
18
  sprint_id?: string | null;
package/dist/index.js CHANGED
@@ -55,6 +55,7 @@ var Issue = import_framework_utils.model.define("issue", {
55
55
  sprint_id: import_framework_utils.model.text().nullable(),
56
56
  /** Denormalized task list reference — no FK constraint */
57
57
  task_list_id: import_framework_utils.model.text().nullable(),
58
+ start_date: import_framework_utils.model.date().nullable(),
58
59
  due_date: import_framework_utils.model.date().nullable(),
59
60
  /** Story point estimate */
60
61
  estimate: import_framework_utils.model.number().nullable()
package/dist/index.mjs CHANGED
@@ -29,6 +29,7 @@ var Issue = model.define("issue", {
29
29
  sprint_id: model.text().nullable(),
30
30
  /** Denormalized task list reference — no FK constraint */
31
31
  task_list_id: model.text().nullable(),
32
+ start_date: model.date().nullable(),
32
33
  due_date: model.date().nullable(),
33
34
  /** Story point estimate */
34
35
  estimate: model.number().nullable()
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meridianjs/issue",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Meridian issue module — Issue and Comment domain models",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",