@bigfootai/bigfoot-types 5.1.8 → 5.1.9
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 +4 -1
- package/model.ts +8 -2
- package/package.json +1 -1
package/model.js
CHANGED
@@ -1296,7 +1296,10 @@ input FindDocumentInput {
|
|
1296
1296
|
archived: Boolean
|
1297
1297
|
}`;
|
1298
1298
|
exports.UpsertDocumentInputQL = `
|
1299
|
-
input UpsertDocumentInput {
|
1299
|
+
input UpsertDocumentInput {
|
1300
|
+
_id: String
|
1301
|
+
document: String!
|
1302
|
+
metadataType: String
|
1300
1303
|
recommendationId: String
|
1301
1304
|
connectionId: String
|
1302
1305
|
}`;
|
package/model.ts
CHANGED
@@ -2284,11 +2284,17 @@ export interface FindDocumentInput {
|
|
2284
2284
|
}
|
2285
2285
|
|
2286
2286
|
export const UpsertDocumentInputQL = `
|
2287
|
-
input UpsertDocumentInput {
|
2287
|
+
input UpsertDocumentInput {
|
2288
|
+
_id: String
|
2289
|
+
document: String!
|
2290
|
+
metadataType: String
|
2288
2291
|
recommendationId: String
|
2289
2292
|
connectionId: String
|
2290
2293
|
}`;
|
2291
|
-
export interface UpsertDocumentInput
|
2294
|
+
export interface UpsertDocumentInput {
|
2295
|
+
_id?: string;
|
2296
|
+
document: string;
|
2297
|
+
metadataType?: string;
|
2292
2298
|
recommendationId?: string;
|
2293
2299
|
connectionId?: string;
|
2294
2300
|
}
|