@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.
- package/model.ts +7 -1
- 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: [
|
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}
|