@bigfootai/bigfoot-types 4.4.14 → 4.4.16
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 +3 -0
- package/model.ts +4 -1
- package/package.json +1 -1
package/model.js
CHANGED
@@ -944,6 +944,9 @@ exports.TableMetadataQL = `
|
|
944
944
|
type TableMetadata {${exports.MetadataFields}
|
945
945
|
fields: [Field]!
|
946
946
|
recordType: String!
|
947
|
+
provider: String
|
948
|
+
application: String
|
949
|
+
classifiers: [String]
|
947
950
|
}`;
|
948
951
|
class TableMetadata extends Metadata {
|
949
952
|
constructor(label, description, fields, recordType) {
|
package/model.ts
CHANGED
@@ -1089,7 +1089,7 @@ export class Note extends Block {
|
|
1089
1089
|
|
1090
1090
|
export const TaskFields = `${BlockFields}
|
1091
1091
|
status: String!
|
1092
|
-
dateDue: Float
|
1092
|
+
dateDue: Float
|
1093
1093
|
editorId: String
|
1094
1094
|
editorGroupId: String
|
1095
1095
|
snoozed: Boolean!
|
@@ -1676,6 +1676,9 @@ export const TableMetadataQL = `
|
|
1676
1676
|
type TableMetadata {${MetadataFields}
|
1677
1677
|
fields: [Field]!
|
1678
1678
|
recordType: String!
|
1679
|
+
provider: String
|
1680
|
+
application: String
|
1681
|
+
classifiers: [String]
|
1679
1682
|
}`;
|
1680
1683
|
export class TableMetadata extends Metadata {
|
1681
1684
|
fields: Field[];
|