@bigfootai/bigfoot-types 4.7.11 → 4.7.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.
Files changed (3) hide show
  1. package/model.js +3 -3
  2. package/model.ts +5 -5
  3. package/package.json +1 -1
package/model.js CHANGED
@@ -464,7 +464,9 @@ exports.MetadataFields = `${exports.PrimitiveFields}
464
464
  label: String!
465
465
  description: String!
466
466
  references: [String]
467
- classifiers: [String]`;
467
+ classifiers: [String]
468
+ provider: String
469
+ application: String`;
468
470
  class Metadata extends Primitive {
469
471
  constructor(label, description) {
470
472
  super();
@@ -1106,8 +1108,6 @@ exports.TableMetadataQL = `
1106
1108
  type TableMetadata {${exports.MetadataFields}
1107
1109
  fields: [Field]!
1108
1110
  recordType: String!
1109
- provider: String
1110
- application: String
1111
1111
  }`;
1112
1112
  class TableMetadata extends Metadata {
1113
1113
  constructor(label, description, fields, recordType) {
package/model.ts CHANGED
@@ -667,12 +667,16 @@ export const MetadataFields = `${PrimitiveFields}
667
667
  label: String!
668
668
  description: String!
669
669
  references: [String]
670
- classifiers: [String]`;
670
+ classifiers: [String]
671
+ provider: String
672
+ application: String`;
671
673
  export class Metadata extends Primitive {
672
674
  label: string;
673
675
  description: string;
674
676
  references?: string[];
675
677
  classifiers?: string[];
678
+ provider?: string;
679
+ application?: string;
676
680
 
677
681
  constructor(label: string, description: string) {
678
682
  super();
@@ -1962,14 +1966,10 @@ export const TableMetadataQL = `
1962
1966
  type TableMetadata {${MetadataFields}
1963
1967
  fields: [Field]!
1964
1968
  recordType: String!
1965
- provider: String
1966
- application: String
1967
1969
  }`;
1968
1970
  export class TableMetadata extends Metadata {
1969
1971
  fields: Field[];
1970
1972
  recordType: string;
1971
- provider?: string;
1972
- application?: string;
1973
1973
 
1974
1974
  constructor(
1975
1975
  label: string,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "4.7.11",
4
+ "version": "4.7.12",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",