@bigfootai/bigfoot-types 4.7.1 → 4.7.2

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 +1 -1
  3. package/package.json +1 -1
package/model.js CHANGED
@@ -546,6 +546,7 @@ type ProviderApplication {
546
546
  sobjects: StandardObjects!
547
547
  linkSubscriptions: [String]!
548
548
  recordTypeSubscriptions: [String]!
549
+ authentication: Boolean!
549
550
  }`;
550
551
  exports.ProviderQL = `
551
552
  type Provider {${exports.PrimitiveFields}
@@ -661,6 +662,7 @@ type Tenant {${exports.PrimitiveFields}
661
662
  picture: String
662
663
  familyName: String
663
664
  givenName: String
665
+ allowed: Boolean!
664
666
  }`;
665
667
  class Tenant extends Primitive {
666
668
  constructor(domainMemberships, email, emailVerified, domainIdEmail, tagId) {
@@ -670,6 +672,7 @@ class Tenant extends Primitive {
670
672
  this.emailVerified = emailVerified;
671
673
  this.domainIdEmail = domainIdEmail;
672
674
  this.tagId = tagId;
675
+ this.allowed = false;
673
676
  }
674
677
  }
675
678
  exports.Tenant = Tenant;
package/model.ts CHANGED
@@ -970,7 +970,7 @@ export interface UpsertRecommendation {
970
970
  table: Table;
971
971
  record: Record;
972
972
  upsertType: UpsertType;
973
- connectRecommendations: ConnectRecommendation[]; // Lists out any recommended providers that could be used to perform the data update
973
+ connectRecommendations?: ConnectRecommendation[]; // Lists out any recommended providers that could be used to perform the data update
974
974
  }
975
975
 
976
976
  export class Recommendation extends SharedPrimitive {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "4.7.1",
4
+ "version": "4.7.2",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",