@bigfootai/bigfoot-types 4.6.5 → 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 +3 -4
  2. package/model.ts +7 -8
  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 = `
@@ -1097,10 +1096,11 @@ input FindEventInput {
1097
1096
  exports.UpsertNoteInputQL = `
1098
1097
  input UpsertNoteInput {
1099
1098
  _id: String
1100
- document: String!
1099
+ document: String
1101
1100
  editor: EditorInput!
1102
- version: Float!
1101
+ version: Float
1103
1102
  sharingTags: [SharingTagInput]
1103
+ favorite: Boolean
1104
1104
  }`;
1105
1105
  exports.FindNoteInputQL = `
1106
1106
  input FindNoteInput {
@@ -1132,7 +1132,6 @@ input FindSyncInput {
1132
1132
  exports.SharingDomainInputQL = `
1133
1133
  input SharingDomainInput {
1134
1134
  domainId: String!
1135
- archived: Boolean
1136
1135
  sharingLevel: Int!
1137
1136
  }`;
1138
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
 
@@ -1990,17 +1988,19 @@ export interface FindEventInput {
1990
1988
  export const UpsertNoteInputQL = `
1991
1989
  input UpsertNoteInput {
1992
1990
  _id: String
1993
- document: String!
1991
+ document: String
1994
1992
  editor: EditorInput!
1995
- version: Float!
1993
+ version: Float
1996
1994
  sharingTags: [SharingTagInput]
1995
+ favorite: Boolean
1997
1996
  }`;
1998
1997
  export interface UpsertNoteInput {
1999
- _id: string;
2000
- document: string;
1998
+ _id?: string;
1999
+ document?: string;
2001
2000
  editor: Editor;
2002
- version: number;
2001
+ version?: number;
2003
2002
  sharingTags?: SharingTag[];
2003
+ favorite?: boolean;
2004
2004
  }
2005
2005
 
2006
2006
  export const FindNoteInputQL = `
@@ -2060,7 +2060,6 @@ export interface FindSyncInput {
2060
2060
  export const SharingDomainInputQL = `
2061
2061
  input SharingDomainInput {
2062
2062
  domainId: String!
2063
- archived: Boolean
2064
2063
  sharingLevel: Int!
2065
2064
  }`;
2066
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.5",
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",