@bigfootai/bigfoot-types 4.4.14 → 4.4.15
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 +3 -0
- 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
@@ -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[];
|