@bigfootai/bigfoot-types 4.6.9 → 4.6.10
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 +7 -0
- package/model.ts +13 -0
- package/package.json +1 -1
package/model.js
CHANGED
@@ -272,6 +272,7 @@ exports.SharingDomainQL = `
|
|
272
272
|
type SharingDomain {
|
273
273
|
domainId: String!
|
274
274
|
sharingLevel: Int!
|
275
|
+
name: String
|
275
276
|
}`;
|
276
277
|
exports.SharingTenantQL = `
|
277
278
|
type SharingTenant {
|
@@ -280,6 +281,11 @@ type SharingTenant {
|
|
280
281
|
hasAutoShareNotesOn: Boolean
|
281
282
|
hasAutoShareTasksOn: Boolean
|
282
283
|
sharingLevel: Int!
|
284
|
+
email: String
|
285
|
+
tagId: String
|
286
|
+
picture: String
|
287
|
+
familyName: String
|
288
|
+
givenName: String
|
283
289
|
}`;
|
284
290
|
exports.ReactionSkinToneQL = `
|
285
291
|
type ReactionSkinTone {
|
@@ -593,6 +599,7 @@ type ProviderRecommendation {
|
|
593
599
|
exports.TenantQL = `
|
594
600
|
type Tenant {${exports.PrimitiveFields}
|
595
601
|
domainMemberships: [String]!
|
602
|
+
_id: String!
|
596
603
|
email: String!
|
597
604
|
tagId: String!
|
598
605
|
picture: String
|
package/model.ts
CHANGED
@@ -305,10 +305,12 @@ export const SharingDomainQL = `
|
|
305
305
|
type SharingDomain {
|
306
306
|
domainId: String!
|
307
307
|
sharingLevel: Int!
|
308
|
+
name: String
|
308
309
|
}`;
|
309
310
|
export interface SharingDomain {
|
310
311
|
domainId: string;
|
311
312
|
sharingLevel: SharingLevel; // Determines what domains can do with the tag beyond domain specific settings above
|
313
|
+
name?: string;
|
312
314
|
}
|
313
315
|
|
314
316
|
export const SharingTenantQL = `
|
@@ -318,6 +320,11 @@ type SharingTenant {
|
|
318
320
|
hasAutoShareNotesOn: Boolean
|
319
321
|
hasAutoShareTasksOn: Boolean
|
320
322
|
sharingLevel: Int!
|
323
|
+
email: String
|
324
|
+
tagId: String
|
325
|
+
picture: String
|
326
|
+
familyName: String
|
327
|
+
givenName: String
|
321
328
|
}`;
|
322
329
|
export interface SharingTenant {
|
323
330
|
tenantId: string;
|
@@ -325,6 +332,11 @@ export interface SharingTenant {
|
|
325
332
|
hasAutoShareNotesOn: boolean; // Indicates if the tenant has auto sharing of notes switched on
|
326
333
|
hasAutoShareTasksOn: boolean; // Indicates if the tenant has auto sharing of tasks switched on
|
327
334
|
sharingLevel: SharingLevel; // Determines what tenants can do with the tag beyond tenant specific settings above
|
335
|
+
email?: string;
|
336
|
+
tagId?: string;
|
337
|
+
picture?: string;
|
338
|
+
familyName?: string;
|
339
|
+
givenName?: string;
|
328
340
|
_savedSearchId?: string;
|
329
341
|
}
|
330
342
|
|
@@ -896,6 +908,7 @@ export interface ProviderRecommendation {
|
|
896
908
|
export const TenantQL = `
|
897
909
|
type Tenant {${PrimitiveFields}
|
898
910
|
domainMemberships: [String]!
|
911
|
+
_id: String!
|
899
912
|
email: String!
|
900
913
|
tagId: String!
|
901
914
|
picture: String
|