@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.
- package/model.js +1 -0
- package/model.ts +2 -0
- package/package.json +1 -1
package/model.js
CHANGED
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 = `
|