@bigfootai/bigfoot-types 5.2.6 → 5.2.8
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 -1
- package/model.ts +5 -2
- package/package.json +1 -1
package/model.js
CHANGED
@@ -331,6 +331,7 @@ input ExternalIdLinkInput {
|
|
331
331
|
label: String
|
332
332
|
tagType: TagType
|
333
333
|
blockType: BlockType
|
334
|
+
connectionId: String
|
334
335
|
}`;
|
335
336
|
exports.ExternalIdLinkQL = `
|
336
337
|
type ExternalIdLink {
|
@@ -1463,7 +1464,8 @@ type ArchiveRecommendationOutput {
|
|
1463
1464
|
}`;
|
1464
1465
|
exports.FindProviderInputQL = `
|
1465
1466
|
input FindProviderInput {
|
1466
|
-
|
1467
|
+
_id: String
|
1468
|
+
provider: String
|
1467
1469
|
}`;
|
1468
1470
|
exports.FindSyncInputQL = `
|
1469
1471
|
input FindSyncInput {
|
package/model.ts
CHANGED
@@ -389,6 +389,7 @@ input ExternalIdLinkInput {
|
|
389
389
|
label: String
|
390
390
|
tagType: TagType
|
391
391
|
blockType: BlockType
|
392
|
+
connectionId: String
|
392
393
|
}`;
|
393
394
|
export const ExternalIdLinkQL = `
|
394
395
|
type ExternalIdLink {
|
@@ -2634,10 +2635,12 @@ export interface ArchiveRecommendationOutput {
|
|
2634
2635
|
|
2635
2636
|
export const FindProviderInputQL = `
|
2636
2637
|
input FindProviderInput {
|
2637
|
-
|
2638
|
+
_id: String
|
2639
|
+
provider: String
|
2638
2640
|
}`;
|
2639
2641
|
export interface FindProviderInput {
|
2640
|
-
|
2642
|
+
_id?: string;
|
2643
|
+
provider?: string;
|
2641
2644
|
}
|
2642
2645
|
|
2643
2646
|
export const FindSyncInputQL = `
|