@26lights/orcha 0.42.134 → 0.42.136

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.
@@ -32,6 +32,9 @@ declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue")
32
32
  important: {
33
33
  type: import("vue").PropType<boolean>;
34
34
  };
35
+ blocked: {
36
+ type: import("vue").PropType<boolean>;
37
+ };
35
38
  assignee: {
36
39
  type: import("vue").PropType<User>;
37
40
  };
@@ -96,6 +99,9 @@ declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue")
96
99
  important: {
97
100
  type: import("vue").PropType<boolean>;
98
101
  };
102
+ blocked: {
103
+ type: import("vue").PropType<boolean>;
104
+ };
99
105
  assignee: {
100
106
  type: import("vue").PropType<User>;
101
107
  };
@@ -59,6 +59,7 @@ export interface ActivityBase extends Entity, Ordered {
59
59
  attachments?: Attachment[];
60
60
  tasks?: Subtask[];
61
61
  slug?: string;
62
+ blocked?: boolean;
62
63
  }
63
64
  export declare const durationTypes: {
64
65
  readonly months: "months";
@@ -332,6 +333,7 @@ export interface UpdateActivityPayload {
332
333
  milestoneId?: Id;
333
334
  private?: boolean;
334
335
  sprintId?: Id | null;
336
+ blocked?: boolean;
335
337
  }
336
338
  export interface AddRulePayload {
337
339
  templateId: Id;
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "type": "module",
5
5
  "license": "CC-BY-NC-ND-4.0",
6
6
  "author": "26lights <dev@26lights.com> (https://www.26lights.com)",
7
- "version": "0.42.134",
7
+ "version": "0.42.136",
8
8
  "workspaces": [
9
9
  "packages/*"
10
10
  ],