@bigfootai/bigfoot-types 4.4.31 → 4.4.33

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 +4 -1
  2. package/model.ts +8 -2
  3. package/package.json +1 -1
package/model.js CHANGED
@@ -592,6 +592,7 @@ type Article {${exports.PrimitiveFields}
592
592
  referenceBlock: ReferenceBlock!
593
593
  sentiment: DocumentSentiment
594
594
  dateDue: Float
595
+ dateRemindMe: Float
595
596
  dates: [EntityEntry]
596
597
  locations: [EntityEntry]
597
598
  linkUrls: [String]
@@ -1160,6 +1161,7 @@ input UpsertSearchInput {
1160
1161
  _id: String
1161
1162
  blockType: String
1162
1163
  search: String
1164
+ _ids: [String]
1163
1165
  tagIds: [String]
1164
1166
  sentiment: String
1165
1167
  sharingTags: [SharingTagInput]
@@ -1200,7 +1202,7 @@ exports.SearchTagsInputQL = `
1200
1202
  input SearchTagsInput {
1201
1203
  tagType: String
1202
1204
  parentTagId: String
1203
- tagIds: [String]
1205
+ _ids: [String]
1204
1206
  search: String
1205
1207
  email: String
1206
1208
  inviteStatus: Int
@@ -1218,6 +1220,7 @@ exports.SearchInputQL = `
1218
1220
  input SearchInput {
1219
1221
  blockType: String
1220
1222
  search: String
1223
+ _ids: [String]
1221
1224
  tagIds: [String]
1222
1225
  sentiment: String
1223
1226
  orderByDateUpdated: String
package/model.ts CHANGED
@@ -884,6 +884,7 @@ type Article {${PrimitiveFields}
884
884
  referenceBlock: ReferenceBlock!
885
885
  sentiment: DocumentSentiment
886
886
  dateDue: Float
887
+ dateRemindMe: Float
887
888
  dates: [EntityEntry]
888
889
  locations: [EntityEntry]
889
890
  linkUrls: [String]
@@ -905,6 +906,7 @@ export class Article extends Primitive {
905
906
  embedding?: number[];
906
907
  sentiment?: DocumentSentiment;
907
908
  dateDue?: number;
909
+ dateRemindMe?: number;
908
910
  dates?: EntityEntry[];
909
911
  locations?: EntityEntry[];
910
912
  linkUrls?: string[];
@@ -2105,6 +2107,7 @@ input UpsertSearchInput {
2105
2107
  _id: String
2106
2108
  blockType: String
2107
2109
  search: String
2110
+ _ids: [String]
2108
2111
  tagIds: [String]
2109
2112
  sentiment: String
2110
2113
  sharingTags: [SharingTagInput]
@@ -2126,6 +2129,7 @@ export interface UpsertSearchInput {
2126
2129
  _id: string;
2127
2130
  blockType?: string;
2128
2131
  search?: string;
2132
+ _ids?: string[];
2129
2133
  tagIds?: string[];
2130
2134
  sentiment?: string;
2131
2135
  sharingTags?: SharingTag[];
@@ -2186,7 +2190,7 @@ export const SearchTagsInputQL = `
2186
2190
  input SearchTagsInput {
2187
2191
  tagType: String
2188
2192
  parentTagId: String
2189
- tagIds: [String]
2193
+ _ids: [String]
2190
2194
  search: String
2191
2195
  email: String
2192
2196
  inviteStatus: Int
@@ -2203,7 +2207,7 @@ input SearchTagsInput {
2203
2207
  export interface SearchTagsInput {
2204
2208
  tagType?: TagType;
2205
2209
  parentTagId?: string;
2206
- tagIds?: string[];
2210
+ _ids?: string[];
2207
2211
  search?: string;
2208
2212
  email?: string;
2209
2213
  inviteStatus?: InviteStatus;
@@ -2222,6 +2226,7 @@ export const SearchInputQL = `
2222
2226
  input SearchInput {
2223
2227
  blockType: String
2224
2228
  search: String
2229
+ _ids: [String]
2225
2230
  tagIds: [String]
2226
2231
  sentiment: String
2227
2232
  orderByDateUpdated: String
@@ -2243,6 +2248,7 @@ input SearchInput {
2243
2248
  export interface SearchInput {
2244
2249
  blockType?: BlockType;
2245
2250
  search?: string;
2251
+ _ids?: string[];
2246
2252
  tagIds?: string[];
2247
2253
  sentiment?: string;
2248
2254
  orderByDateUpdated?: OrderByDirection;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "4.4.31",
4
+ "version": "4.4.33",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",