@bigfootai/bigfoot-types 4.6.10 → 4.6.12
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.
- package/model.js +1 -6
- package/model.ts +2 -12
- package/package.json +1 -1
package/model.js
CHANGED
@@ -272,7 +272,6 @@ exports.SharingDomainQL = `
|
|
272
272
|
type SharingDomain {
|
273
273
|
domainId: String!
|
274
274
|
sharingLevel: Int!
|
275
|
-
name: String
|
276
275
|
}`;
|
277
276
|
exports.SharingTenantQL = `
|
278
277
|
type SharingTenant {
|
@@ -281,11 +280,6 @@ type SharingTenant {
|
|
281
280
|
hasAutoShareNotesOn: Boolean
|
282
281
|
hasAutoShareTasksOn: Boolean
|
283
282
|
sharingLevel: Int!
|
284
|
-
email: String
|
285
|
-
tagId: String
|
286
|
-
picture: String
|
287
|
-
familyName: String
|
288
|
-
givenName: String
|
289
283
|
}`;
|
290
284
|
exports.ReactionSkinToneQL = `
|
291
285
|
type ReactionSkinTone {
|
@@ -1032,6 +1026,7 @@ type FieldValue {
|
|
1032
1026
|
name: String!
|
1033
1027
|
value: String
|
1034
1028
|
id: String
|
1029
|
+
changed: Boolean
|
1035
1030
|
}`;
|
1036
1031
|
exports.TableMetadataQL = `
|
1037
1032
|
type TableMetadata {${exports.MetadataFields}
|
package/model.ts
CHANGED
@@ -305,12 +305,10 @@ export const SharingDomainQL = `
|
|
305
305
|
type SharingDomain {
|
306
306
|
domainId: String!
|
307
307
|
sharingLevel: Int!
|
308
|
-
name: String
|
309
308
|
}`;
|
310
309
|
export interface SharingDomain {
|
311
310
|
domainId: string;
|
312
311
|
sharingLevel: SharingLevel; // Determines what domains can do with the tag beyond domain specific settings above
|
313
|
-
name?: string;
|
314
312
|
}
|
315
313
|
|
316
314
|
export const SharingTenantQL = `
|
@@ -320,11 +318,6 @@ type SharingTenant {
|
|
320
318
|
hasAutoShareNotesOn: Boolean
|
321
319
|
hasAutoShareTasksOn: Boolean
|
322
320
|
sharingLevel: Int!
|
323
|
-
email: String
|
324
|
-
tagId: String
|
325
|
-
picture: String
|
326
|
-
familyName: String
|
327
|
-
givenName: String
|
328
321
|
}`;
|
329
322
|
export interface SharingTenant {
|
330
323
|
tenantId: string;
|
@@ -332,11 +325,6 @@ export interface SharingTenant {
|
|
332
325
|
hasAutoShareNotesOn: boolean; // Indicates if the tenant has auto sharing of notes switched on
|
333
326
|
hasAutoShareTasksOn: boolean; // Indicates if the tenant has auto sharing of tasks switched on
|
334
327
|
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;
|
340
328
|
_savedSearchId?: string;
|
341
329
|
}
|
342
330
|
|
@@ -1836,11 +1824,13 @@ type FieldValue {
|
|
1836
1824
|
name: String!
|
1837
1825
|
value: String
|
1838
1826
|
id: String
|
1827
|
+
changed: Boolean
|
1839
1828
|
}`;
|
1840
1829
|
export interface FieldValue {
|
1841
1830
|
name: string;
|
1842
1831
|
value?: string;
|
1843
1832
|
id?: string;
|
1833
|
+
changed?: boolean;
|
1844
1834
|
}
|
1845
1835
|
|
1846
1836
|
export const TableMetadataQL = `
|