@bigfootai/bigfoot-types 4.6.6 → 4.6.7

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 +0 -2
  2. package/model.ts +0 -3
  3. package/package.json +1 -1
package/model.js CHANGED
@@ -270,7 +270,6 @@ type SharingTag {
270
270
  exports.SharingDomainQL = `
271
271
  type SharingDomain {
272
272
  domainId: String!
273
- archived: Boolean
274
273
  sharingLevel: Int!
275
274
  }`;
276
275
  exports.SharingTenantQL = `
@@ -1133,7 +1132,6 @@ input FindSyncInput {
1133
1132
  exports.SharingDomainInputQL = `
1134
1133
  input SharingDomainInput {
1135
1134
  domainId: String!
1136
- archived: Boolean
1137
1135
  sharingLevel: Int!
1138
1136
  }`;
1139
1137
  exports.SharingTenantInputQL = `
package/model.ts CHANGED
@@ -303,12 +303,10 @@ export interface SharingTag {
303
303
  export const SharingDomainQL = `
304
304
  type SharingDomain {
305
305
  domainId: String!
306
- archived: Boolean
307
306
  sharingLevel: Int!
308
307
  }`;
309
308
  export interface SharingDomain {
310
309
  domainId: string;
311
- archived: boolean; // Indicates if the tag has been archived for the domain, but is shared
312
310
  sharingLevel: SharingLevel; // Determines what domains can do with the tag beyond domain specific settings above
313
311
  }
314
312
 
@@ -2062,7 +2060,6 @@ export interface FindSyncInput {
2062
2060
  export const SharingDomainInputQL = `
2063
2061
  input SharingDomainInput {
2064
2062
  domainId: String!
2065
- archived: Boolean
2066
2063
  sharingLevel: Int!
2067
2064
  }`;
2068
2065
  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.7",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",