@bigfootai/bigfoot-types 3.5.8 → 3.5.9

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.
Files changed (2) hide show
  1. package/model.ts +7 -1
  2. package/package.json +1 -1
package/model.ts CHANGED
@@ -297,6 +297,11 @@ export interface Reaction {
297
297
  unified: string;
298
298
  }
299
299
 
300
+ export const TaskStepInputQL = `
301
+ input TaskStep {
302
+ content: String!
303
+ status: Int!
304
+ }`;
300
305
  export const TaskStepQL = `
301
306
  type TaskStep {
302
307
  content: String!
@@ -1533,7 +1538,7 @@ input UpdateTaskInput {
1533
1538
  status: String!
1534
1539
  dateDue: Float!
1535
1540
  snoozed: Boolean!
1536
- steps: [TaskStep]
1541
+ steps: [TaskStepInput]
1537
1542
  dateRemindMe: Float
1538
1543
  recurrence: [String]
1539
1544
  }`;
@@ -1609,6 +1614,7 @@ ${SharingTagQL}
1609
1614
  ${SharingDomainQL}
1610
1615
  ${SharingTenantQL}
1611
1616
  ${ReactionSkinToneQL}
1617
+ ${TaskStepInputQL}
1612
1618
  ${ReactionQL}
1613
1619
  ${TaskStepQL}
1614
1620
  ${DocumentSentimentQL}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "3.5.8",
4
+ "version": "3.5.9",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",