@bigfootai/bigfoot-types 5.0.17 → 5.0.19
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 +3 -0
- package/model.ts +4 -0
- package/package.json +1 -1
package/model.js
CHANGED
@@ -395,6 +395,7 @@ type Credential {
|
|
395
395
|
accessToken: String!
|
396
396
|
refreshToken: String
|
397
397
|
instanceUrl: String
|
398
|
+
instanceId: String
|
398
399
|
dateExpiry: Float
|
399
400
|
}`;
|
400
401
|
exports.ConnectedProviderQL = `
|
@@ -1375,6 +1376,8 @@ input UpsertTagInput {
|
|
1375
1376
|
inviteStatus: String
|
1376
1377
|
originNoteId: String
|
1377
1378
|
favorite: Boolean
|
1379
|
+
sharingDomains: [SharingDomainInput]
|
1380
|
+
sharingTenants: [SharingTenantInput]
|
1378
1381
|
businessObjects: [BusinessObjectLinkInput]
|
1379
1382
|
hasAutoShareNotesOn: Boolean
|
1380
1383
|
hasAutoShareTasksOn: Boolean
|
package/model.ts
CHANGED
@@ -542,6 +542,7 @@ type Credential {
|
|
542
542
|
accessToken: String!
|
543
543
|
refreshToken: String
|
544
544
|
instanceUrl: String
|
545
|
+
instanceId: String
|
545
546
|
dateExpiry: Float
|
546
547
|
}`;
|
547
548
|
export interface Credential {
|
@@ -550,6 +551,7 @@ export interface Credential {
|
|
550
551
|
accessToken: string;
|
551
552
|
refreshToken?: string;
|
552
553
|
instanceUrl?: string;
|
554
|
+
instanceId?: string;
|
553
555
|
dateExpiry?: number;
|
554
556
|
}
|
555
557
|
|
@@ -2421,6 +2423,8 @@ input UpsertTagInput {
|
|
2421
2423
|
inviteStatus: String
|
2422
2424
|
originNoteId: String
|
2423
2425
|
favorite: Boolean
|
2426
|
+
sharingDomains: [SharingDomainInput]
|
2427
|
+
sharingTenants: [SharingTenantInput]
|
2424
2428
|
businessObjects: [BusinessObjectLinkInput]
|
2425
2429
|
hasAutoShareNotesOn: Boolean
|
2426
2430
|
hasAutoShareTasksOn: Boolean
|