@bigfootai/bigfoot-types 4.7.0 → 4.7.1
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.ts +5 -0
- package/package.json +1 -1
package/model.ts
CHANGED
@@ -798,6 +798,7 @@ type ProviderApplication {
|
|
798
798
|
sobjects: StandardObjects!
|
799
799
|
linkSubscriptions: [String]!
|
800
800
|
recordTypeSubscriptions: [String]!
|
801
|
+
authentication: Boolean!
|
801
802
|
}`;
|
802
803
|
export interface ProviderApplication {
|
803
804
|
name: string;
|
@@ -807,6 +808,7 @@ export interface ProviderApplication {
|
|
807
808
|
sobjects: StandardObjects;
|
808
809
|
linkSubscriptions: string[];
|
809
810
|
recordTypeSubscriptions: string[];
|
811
|
+
authentication: boolean;
|
810
812
|
}
|
811
813
|
|
812
814
|
export const ProviderQL = `
|
@@ -1004,6 +1006,7 @@ type Tenant {${PrimitiveFields}
|
|
1004
1006
|
picture: String
|
1005
1007
|
familyName: String
|
1006
1008
|
givenName: String
|
1009
|
+
allowed: Boolean!
|
1007
1010
|
}`;
|
1008
1011
|
export class Tenant extends Primitive {
|
1009
1012
|
domainMemberships: string[]; // The list of all domains this tenant belongs
|
@@ -1016,6 +1019,7 @@ export class Tenant extends Primitive {
|
|
1016
1019
|
givenName?: string;
|
1017
1020
|
connectedProviders?: ConnectedProvider[];
|
1018
1021
|
accessToken?: string;
|
1022
|
+
allowed: boolean; // Used to indicate if this user is allowed to access the application TODO take this out after private beta
|
1019
1023
|
|
1020
1024
|
constructor(
|
1021
1025
|
domainMemberships: string[],
|
@@ -1031,6 +1035,7 @@ export class Tenant extends Primitive {
|
|
1031
1035
|
this.emailVerified = emailVerified;
|
1032
1036
|
this.domainIdEmail = domainIdEmail;
|
1033
1037
|
this.tagId = tagId;
|
1038
|
+
this.allowed = false;
|
1034
1039
|
}
|
1035
1040
|
}
|
1036
1041
|
|