@bigfootai/bigfoot-types 4.4.32 → 4.4.34

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 -2
  2. package/model.ts +8 -4
  3. package/package.json +1 -1
package/model.js CHANGED
@@ -1161,6 +1161,7 @@ input UpsertSearchInput {
1161
1161
  _id: String
1162
1162
  blockType: String
1163
1163
  search: String
1164
+ _ids: [String]
1164
1165
  tagIds: [String]
1165
1166
  sentiment: String
1166
1167
  sharingTags: [SharingTagInput]
@@ -1200,8 +1201,8 @@ type ArchiveSearchOutput {
1200
1201
  exports.SearchTagsInputQL = `
1201
1202
  input SearchTagsInput {
1202
1203
  tagType: String
1203
- parentTagId: String
1204
- tagIds: [String]
1204
+ parentId: String
1205
+ _ids: [String]
1205
1206
  search: String
1206
1207
  email: String
1207
1208
  inviteStatus: Int
@@ -1219,6 +1220,7 @@ exports.SearchInputQL = `
1219
1220
  input SearchInput {
1220
1221
  blockType: String
1221
1222
  search: String
1223
+ _ids: [String]
1222
1224
  tagIds: [String]
1223
1225
  sentiment: String
1224
1226
  orderByDateUpdated: String
package/model.ts CHANGED
@@ -2107,6 +2107,7 @@ input UpsertSearchInput {
2107
2107
  _id: String
2108
2108
  blockType: String
2109
2109
  search: String
2110
+ _ids: [String]
2110
2111
  tagIds: [String]
2111
2112
  sentiment: String
2112
2113
  sharingTags: [SharingTagInput]
@@ -2128,6 +2129,7 @@ export interface UpsertSearchInput {
2128
2129
  _id: string;
2129
2130
  blockType?: string;
2130
2131
  search?: string;
2132
+ _ids?: string[];
2131
2133
  tagIds?: string[];
2132
2134
  sentiment?: string;
2133
2135
  sharingTags?: SharingTag[];
@@ -2187,8 +2189,8 @@ export interface ArchiveSearchOutput {
2187
2189
  export const SearchTagsInputQL = `
2188
2190
  input SearchTagsInput {
2189
2191
  tagType: String
2190
- parentTagId: String
2191
- tagIds: [String]
2192
+ parentId: String
2193
+ _ids: [String]
2192
2194
  search: String
2193
2195
  email: String
2194
2196
  inviteStatus: Int
@@ -2204,8 +2206,8 @@ input SearchTagsInput {
2204
2206
  }`;
2205
2207
  export interface SearchTagsInput {
2206
2208
  tagType?: TagType;
2207
- parentTagId?: string;
2208
- tagIds?: string[];
2209
+ parentId?: string;
2210
+ _ids?: string[];
2209
2211
  search?: string;
2210
2212
  email?: string;
2211
2213
  inviteStatus?: InviteStatus;
@@ -2224,6 +2226,7 @@ export const SearchInputQL = `
2224
2226
  input SearchInput {
2225
2227
  blockType: String
2226
2228
  search: String
2229
+ _ids: [String]
2227
2230
  tagIds: [String]
2228
2231
  sentiment: String
2229
2232
  orderByDateUpdated: String
@@ -2245,6 +2248,7 @@ input SearchInput {
2245
2248
  export interface SearchInput {
2246
2249
  blockType?: BlockType;
2247
2250
  search?: string;
2251
+ _ids?: string[];
2248
2252
  tagIds?: string[];
2249
2253
  sentiment?: string;
2250
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.32",
4
+ "version": "4.4.34",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",