@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.
Files changed (3) hide show
  1. package/model.js +3 -0
  2. package/model.ts +3 -0
  3. 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[];
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "4.4.14",
4
+ "version": "4.4.15",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",