@bigfootai/bigfoot-types 4.8.0 → 4.8.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.
Files changed (3) hide show
  1. package/model.js +4 -4
  2. package/model.ts +11 -11
  3. package/package.json +1 -1
package/model.js CHANGED
@@ -1264,9 +1264,9 @@ input SharingTenantInput {
1264
1264
  exports.UpsertTagInputQL = `
1265
1265
  input UpsertTagInput {
1266
1266
  _id: ID
1267
- alias: String!
1267
+ alias: String
1268
1268
  friendlyName: String
1269
- tagType: String!
1269
+ tagType: String
1270
1270
  url: String
1271
1271
  favicon: String
1272
1272
  dbpedia: String
@@ -1321,7 +1321,7 @@ exports.UpdateTaskInputQL = `
1321
1321
  input UpdateTaskInput {
1322
1322
  _id: String
1323
1323
  editor: EditorInput!
1324
- status: Int!
1324
+ status: Int
1325
1325
  dateDue: Float
1326
1326
  snoozed: Boolean
1327
1327
  steps: [TaskStepInput]
@@ -1353,7 +1353,7 @@ input UpsertFolderInput {
1353
1353
  _id: String
1354
1354
  sharingTags: [SharingTagInput]
1355
1355
  icon: String
1356
- label: String!
1356
+ label: String
1357
1357
  description: String
1358
1358
  searchIds: [String]
1359
1359
  }`;
package/model.ts CHANGED
@@ -2293,9 +2293,9 @@ input SharingTenantInput {
2293
2293
  export const UpsertTagInputQL = `
2294
2294
  input UpsertTagInput {
2295
2295
  _id: ID
2296
- alias: String!
2296
+ alias: String
2297
2297
  friendlyName: String
2298
- tagType: String!
2298
+ tagType: String
2299
2299
  url: String
2300
2300
  favicon: String
2301
2301
  dbpedia: String
@@ -2389,7 +2389,7 @@ export const UpdateTaskInputQL = `
2389
2389
  input UpdateTaskInput {
2390
2390
  _id: String
2391
2391
  editor: EditorInput!
2392
- status: Int!
2392
+ status: Int
2393
2393
  dateDue: Float
2394
2394
  snoozed: Boolean
2395
2395
  steps: [TaskStepInput]
@@ -2399,12 +2399,12 @@ input UpdateTaskInput {
2399
2399
  export interface UpdateTaskInput {
2400
2400
  _id: string;
2401
2401
  editor: Editor;
2402
- status: TaskStatus;
2403
- dateDue: number;
2404
- snoozed: boolean;
2405
- steps: TaskStep[];
2406
- dateRemindMe: number;
2407
- recurrence: RecurrenceRFC[];
2402
+ status?: TaskStatus;
2403
+ dateDue?: number;
2404
+ snoozed?: boolean;
2405
+ steps?: TaskStep[];
2406
+ dateRemindMe?: number;
2407
+ recurrence?: RecurrenceRFC[];
2408
2408
  }
2409
2409
 
2410
2410
  export const FindTaskInputQL = `
@@ -2452,7 +2452,7 @@ input UpsertFolderInput {
2452
2452
  _id: String
2453
2453
  sharingTags: [SharingTagInput]
2454
2454
  icon: String
2455
- label: String!
2455
+ label: String
2456
2456
  description: String
2457
2457
  searchIds: [String]
2458
2458
  }`;
@@ -2460,7 +2460,7 @@ export interface UpsertFolderInput {
2460
2460
  _id?: string;
2461
2461
  sharingTags?: SharingTag[];
2462
2462
  icon?: string;
2463
- label: string;
2463
+ label?: string;
2464
2464
  description?: string;
2465
2465
  searchIds?: string[];
2466
2466
  _tagType?: TagType;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "4.8.0",
4
+ "version": "4.8.1",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",