@bigfootai/bigfoot-types 3.5.12 → 3.5.13

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 (2) hide show
  1. package/model.ts +6 -6
  2. package/package.json +1 -1
package/model.ts CHANGED
@@ -254,7 +254,7 @@ export interface SharingTag {
254
254
  export const SharingDomainQL = `
255
255
  type SharingDomain {
256
256
  domainId: String!
257
- archived: Boolean!
257
+ archived: Boolean
258
258
  sharingLevel: Int!
259
259
  }`;
260
260
  export interface SharingDomain {
@@ -266,8 +266,8 @@ export interface SharingDomain {
266
266
  export const SharingTenantQL = `
267
267
  type SharingTenant {
268
268
  tenantId: String!
269
- hasAutoShareNotesOn: Boolean!
270
- hasAutoShareTasksOn: Boolean!
269
+ hasAutoShareNotesOn: Boolean
270
+ hasAutoShareTasksOn: Boolean
271
271
  sharingLevel: Int!
272
272
  }`;
273
273
  export interface SharingTenant {
@@ -1474,14 +1474,14 @@ export interface FindSyncInput {
1474
1474
  export const SharingDomainInputQL = `
1475
1475
  input SharingDomainInput {
1476
1476
  domainId: String!
1477
- archived: Boolean!
1477
+ archived: Boolean
1478
1478
  sharingLevel: Int!
1479
1479
  }`;
1480
1480
  export const SharingTenantInputQL = `
1481
1481
  input SharingTenantInput {
1482
1482
  tenantId: String!
1483
- hasAutoShareNotesOn: Boolean!
1484
- hasAutoShareTasksOn: Boolean!
1483
+ hasAutoShareNotesOn: Boolean
1484
+ hasAutoShareTasksOn: Boolean
1485
1485
  sharingLevel: Int!
1486
1486
  }`;
1487
1487
  export const UpsertTagInputQL = `
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "3.5.12",
4
+ "version": "3.5.13",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",