@bigfootai/bigfoot-types 5.2.6 → 5.2.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.
- package/model.js +2 -1
- package/model.ts +4 -2
- package/package.json +1 -1
package/model.js
CHANGED
@@ -1463,7 +1463,8 @@ type ArchiveRecommendationOutput {
|
|
1463
1463
|
}`;
|
1464
1464
|
exports.FindProviderInputQL = `
|
1465
1465
|
input FindProviderInput {
|
1466
|
-
|
1466
|
+
_id: String
|
1467
|
+
provider: String
|
1467
1468
|
}`;
|
1468
1469
|
exports.FindSyncInputQL = `
|
1469
1470
|
input FindSyncInput {
|
package/model.ts
CHANGED
@@ -2634,10 +2634,12 @@ export interface ArchiveRecommendationOutput {
|
|
2634
2634
|
|
2635
2635
|
export const FindProviderInputQL = `
|
2636
2636
|
input FindProviderInput {
|
2637
|
-
|
2637
|
+
_id: String
|
2638
|
+
provider: String
|
2638
2639
|
}`;
|
2639
2640
|
export interface FindProviderInput {
|
2640
|
-
|
2641
|
+
_id?: string;
|
2642
|
+
provider?: string;
|
2641
2643
|
}
|
2642
2644
|
|
2643
2645
|
export const FindSyncInputQL = `
|