@bigfootai/bigfoot-types 4.6.16 → 4.6.17

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 +1 -1
  2. package/model.ts +2 -2
  3. package/package.json +1 -1
package/model.js CHANGED
@@ -290,7 +290,7 @@ input BusinessObjectLinkInput {
290
290
  }`;
291
291
  exports.BusinessObjectLinkQL = `
292
292
  type BusinessObjectLink {
293
- url: String!
293
+ url: String
294
294
  provider: String
295
295
  recordType: String
296
296
  blockType: String
package/model.ts CHANGED
@@ -337,14 +337,14 @@ input BusinessObjectLinkInput {
337
337
  }`;
338
338
  export const BusinessObjectLinkQL = `
339
339
  type BusinessObjectLink {
340
- url: String!
340
+ url: String
341
341
  provider: String
342
342
  recordType: String
343
343
  blockType: String
344
344
  _compound: String
345
345
  }`;
346
346
  export interface BusinessObjectLink {
347
- url: string;
347
+ url?: string;
348
348
  provider?: string;
349
349
  recordType?: string;
350
350
  blockType?: BlockType;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "4.6.16",
4
+ "version": "4.6.17",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",