@26lights/orcha 0.42.99 → 0.42.100

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.
@@ -2,6 +2,9 @@ export type Id = string;
2
2
  export interface Entity {
3
3
  __typename: string;
4
4
  id: Id;
5
+ createdAt?: string;
6
+ updatedAt?: string;
7
+ deletedAt?: string;
5
8
  }
6
9
  export interface Ordered {
7
10
  id: string;
@@ -296,7 +299,7 @@ export interface UpdateActivityPayload {
296
299
  dependingOn?: Id[];
297
300
  blocking?: Id[];
298
301
  dependingMilestones?: Id[];
299
- type?: string;
302
+ type?: "standard" | "dev";
300
303
  rank?: string;
301
304
  statusId?: string;
302
305
  deadline?: string | null;
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.99",
7
+ "version": "0.42.100",
8
8
  "workspaces": [
9
9
  "packages/*"
10
10
  ],