@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.
Files changed (3) hide show
  1. package/model.js +2 -1
  2. package/model.ts +4 -2
  3. 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
- provider: String!
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
- provider: String!
2637
+ _id: String
2638
+ provider: String
2638
2639
  }`;
2639
2640
  export interface FindProviderInput {
2640
- provider: string;
2641
+ _id?: string;
2642
+ provider?: string;
2641
2643
  }
2642
2644
 
2643
2645
  export const FindSyncInputQL = `
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "5.2.6",
4
+ "version": "5.2.7",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",