@bigfootai/bigfoot-types 4.6.6 → 4.6.8

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 +1 -2
  2. package/model.ts +1 -3
  3. package/package.json +1 -1
package/model.js CHANGED
@@ -102,6 +102,7 @@ var TagRecommendationType;
102
102
  var TagRecommendationVariation;
103
103
  (function (TagRecommendationVariation) {
104
104
  TagRecommendationVariation["TypeChange"] = "type_change";
105
+ TagRecommendationVariation["TagFromDocument"] = "tag_from_document";
105
106
  })(TagRecommendationVariation || (exports.TagRecommendationVariation = TagRecommendationVariation = {}));
106
107
  var RecurrenceRFC;
107
108
  (function (RecurrenceRFC) {
@@ -270,7 +271,6 @@ type SharingTag {
270
271
  exports.SharingDomainQL = `
271
272
  type SharingDomain {
272
273
  domainId: String!
273
- archived: Boolean
274
274
  sharingLevel: Int!
275
275
  }`;
276
276
  exports.SharingTenantQL = `
@@ -1133,7 +1133,6 @@ input FindSyncInput {
1133
1133
  exports.SharingDomainInputQL = `
1134
1134
  input SharingDomainInput {
1135
1135
  domainId: String!
1136
- archived: Boolean
1137
1136
  sharingLevel: Int!
1138
1137
  }`;
1139
1138
  exports.SharingTenantInputQL = `
package/model.ts CHANGED
@@ -96,6 +96,7 @@ export enum TagRecommendationType {
96
96
 
97
97
  export enum TagRecommendationVariation {
98
98
  TypeChange = 'type_change',
99
+ TagFromDocument = 'tag_from_document',
99
100
  }
100
101
 
101
102
  export enum RecurrenceRFC {
@@ -303,12 +304,10 @@ export interface SharingTag {
303
304
  export const SharingDomainQL = `
304
305
  type SharingDomain {
305
306
  domainId: String!
306
- archived: Boolean
307
307
  sharingLevel: Int!
308
308
  }`;
309
309
  export interface SharingDomain {
310
310
  domainId: string;
311
- archived: boolean; // Indicates if the tag has been archived for the domain, but is shared
312
311
  sharingLevel: SharingLevel; // Determines what domains can do with the tag beyond domain specific settings above
313
312
  }
314
313
 
@@ -2062,7 +2061,6 @@ export interface FindSyncInput {
2062
2061
  export const SharingDomainInputQL = `
2063
2062
  input SharingDomainInput {
2064
2063
  domainId: String!
2065
- archived: Boolean
2066
2064
  sharingLevel: Int!
2067
2065
  }`;
2068
2066
  export const SharingTenantInputQL = `
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "4.6.6",
4
+ "version": "4.6.8",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",