@bigfootai/bigfoot-types 4.6.8 → 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.
Files changed (3) hide show
  1. package/model.js +8 -0
  2. package/model.ts +15 -0
  3. 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 {
@@ -479,6 +485,7 @@ type Search {${exports.SharedPrimitiveFields}
479
485
  orderByAlias: String
480
486
  size: Int
481
487
  archived: Boolean!
488
+ favoriteTagId: String
482
489
  }`;
483
490
  class Search extends SharedPrimitive {
484
491
  constructor(tenantIdCreated, sharingTags) {
@@ -592,6 +599,7 @@ type ProviderRecommendation {
592
599
  exports.TenantQL = `
593
600
  type Tenant {${exports.PrimitiveFields}
594
601
  domainMemberships: [String]!
602
+ _id: String!
595
603
  email: String!
596
604
  tagId: String!
597
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
 
@@ -691,6 +703,7 @@ type Search {${SharedPrimitiveFields}
691
703
  orderByAlias: String
692
704
  size: Int
693
705
  archived: Boolean!
706
+ favoriteTagId: String
694
707
  }`;
695
708
  export class Search extends SharedPrimitive {
696
709
  label?: string;
@@ -703,6 +716,7 @@ export class Search extends SharedPrimitive {
703
716
  page?: number;
704
717
  size?: number;
705
718
  archived: boolean;
719
+ favoriteTagId?: string;
706
720
 
707
721
  constructor(tenantIdCreated: string, sharingTags: SharingTag[]) {
708
722
  super(sharingTags);
@@ -894,6 +908,7 @@ export interface ProviderRecommendation {
894
908
  export const TenantQL = `
895
909
  type Tenant {${PrimitiveFields}
896
910
  domainMemberships: [String]!
911
+ _id: String!
897
912
  email: String!
898
913
  tagId: String!
899
914
  picture: String
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "4.6.8",
4
+ "version": "4.6.10",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",