@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.
- package/model.js +3 -0
- package/model.ts +1 -1
- 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
|
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 {
|