@bigfootai/bigfoot-types 4.4.1 → 4.4.2

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 +2 -3
  2. package/model.ts +5 -7
  3. package/package.json +1 -1
package/model.js CHANGED
@@ -927,10 +927,9 @@ type Field {
927
927
  exports.FieldValueQL = `
928
928
  type FieldValue {
929
929
  name: String!
930
- previousValue: String!
931
- nextValue: String!
932
930
  value: String!
933
- changed: Boolean!
931
+ previousValue: String
932
+ changed: Boolean
934
933
  }`;
935
934
  exports.TableMetadataQL = `
936
935
  type TableMetadata {${exports.MetadataFields}
package/model.ts CHANGED
@@ -1649,17 +1649,15 @@ export interface Field {
1649
1649
  export const FieldValueQL = `
1650
1650
  type FieldValue {
1651
1651
  name: String!
1652
- previousValue: String!
1653
- nextValue: String!
1654
1652
  value: String!
1655
- changed: Boolean!
1653
+ previousValue: String
1654
+ changed: Boolean
1656
1655
  }`;
1657
1656
  export interface FieldValue {
1658
1657
  name: string;
1659
- previousValue: string;
1660
- nextValue: string;
1661
- value: string;
1662
- changed: boolean;
1658
+ value?: string;
1659
+ previousValue?: string;
1660
+ changed?: boolean;
1663
1661
  }
1664
1662
 
1665
1663
  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.4.1",
4
+ "version": "4.4.2",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",