@bigfootai/bigfoot-types 4.6.11 → 4.6.12

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 -0
  2. package/model.ts +2 -0
  3. package/package.json +1 -1
package/model.js CHANGED
@@ -1026,6 +1026,7 @@ type FieldValue {
1026
1026
  name: String!
1027
1027
  value: String
1028
1028
  id: String
1029
+ changed: Boolean
1029
1030
  }`;
1030
1031
  exports.TableMetadataQL = `
1031
1032
  type TableMetadata {${exports.MetadataFields}
package/model.ts CHANGED
@@ -1824,11 +1824,13 @@ type FieldValue {
1824
1824
  name: String!
1825
1825
  value: String
1826
1826
  id: String
1827
+ changed: Boolean
1827
1828
  }`;
1828
1829
  export interface FieldValue {
1829
1830
  name: string;
1830
1831
  value?: string;
1831
1832
  id?: string;
1833
+ changed?: boolean;
1832
1834
  }
1833
1835
 
1834
1836
  export const TableMetadataQL = `
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "4.6.11",
4
+ "version": "4.6.12",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",