@adventurelabs/scout-core 1.4.12 → 1.4.13

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.
@@ -51,6 +51,8 @@ export declare function useSupabase(): SupabaseClient<Database, "public", "publi
51
51
  Row: {
52
52
  created_at: string;
53
53
  device_id: number;
54
+ embedding_qwen_vl_2b: string | null;
55
+ embedding_vertex_mm_01: string | null;
54
56
  file_path: string;
55
57
  id: number;
56
58
  modality: string | null;
@@ -62,6 +64,8 @@ export declare function useSupabase(): SupabaseClient<Database, "public", "publi
62
64
  Insert: {
63
65
  created_at?: string;
64
66
  device_id: number;
67
+ embedding_qwen_vl_2b?: string | null;
68
+ embedding_vertex_mm_01?: string | null;
65
69
  file_path: string;
66
70
  id?: number;
67
71
  modality?: string | null;
@@ -73,6 +77,8 @@ export declare function useSupabase(): SupabaseClient<Database, "public", "publi
73
77
  Update: {
74
78
  created_at?: string;
75
79
  device_id?: number;
80
+ embedding_qwen_vl_2b?: string | null;
81
+ embedding_vertex_mm_01?: string | null;
76
82
  file_path?: string;
77
83
  id?: number;
78
84
  modality?: string | null;
@@ -304,6 +310,8 @@ export declare function useSupabase(): SupabaseClient<Database, "public", "publi
304
310
  altitude: number;
305
311
  device_id: number;
306
312
  earthranger_url: string | null;
313
+ embedding_qwen_vl_2b: string | null;
314
+ embedding_vertex_mm_01: string | null;
307
315
  file_path: string | null;
308
316
  heading: number;
309
317
  id: number;
@@ -320,6 +328,8 @@ export declare function useSupabase(): SupabaseClient<Database, "public", "publi
320
328
  altitude?: number;
321
329
  device_id: number;
322
330
  earthranger_url?: string | null;
331
+ embedding_qwen_vl_2b?: string | null;
332
+ embedding_vertex_mm_01?: string | null;
323
333
  file_path?: string | null;
324
334
  heading?: number;
325
335
  id?: number;
@@ -336,6 +346,8 @@ export declare function useSupabase(): SupabaseClient<Database, "public", "publi
336
346
  altitude?: number;
337
347
  device_id?: number;
338
348
  earthranger_url?: string | null;
349
+ embedding_qwen_vl_2b?: string | null;
350
+ embedding_vertex_mm_01?: string | null;
339
351
  file_path?: string | null;
340
352
  heading?: number;
341
353
  id?: number;
@@ -1149,6 +1161,8 @@ export declare function useSupabase(): SupabaseClient<Database, "public", "publi
1149
1161
  Returns: {
1150
1162
  created_at: string;
1151
1163
  device_id: number;
1164
+ embedding_qwen_vl_2b: string | null;
1165
+ embedding_vertex_mm_01: string | null;
1152
1166
  file_path: string;
1153
1167
  id: number;
1154
1168
  modality: string | null;
@@ -1172,6 +1186,8 @@ export declare function useSupabase(): SupabaseClient<Database, "public", "publi
1172
1186
  Returns: {
1173
1187
  created_at: string;
1174
1188
  device_id: number;
1189
+ embedding_qwen_vl_2b: string | null;
1190
+ embedding_vertex_mm_01: string | null;
1175
1191
  file_path: string;
1176
1192
  id: number;
1177
1193
  modality: string | null;
@@ -1196,6 +1212,8 @@ export declare function useSupabase(): SupabaseClient<Database, "public", "publi
1196
1212
  Returns: {
1197
1213
  created_at: string;
1198
1214
  device_id: number;
1215
+ embedding_qwen_vl_2b: string | null;
1216
+ embedding_vertex_mm_01: string | null;
1199
1217
  file_path: string;
1200
1218
  id: number;
1201
1219
  modality: string | null;
@@ -1221,6 +1239,8 @@ export declare function useSupabase(): SupabaseClient<Database, "public", "publi
1221
1239
  Returns: {
1222
1240
  created_at: string;
1223
1241
  device_id: number;
1242
+ embedding_qwen_vl_2b: string | null;
1243
+ embedding_vertex_mm_01: string | null;
1224
1244
  file_path: string;
1225
1245
  id: number;
1226
1246
  modality: string | null;
@@ -1246,6 +1266,8 @@ export declare function useSupabase(): SupabaseClient<Database, "public", "publi
1246
1266
  Returns: {
1247
1267
  created_at: string;
1248
1268
  device_id: number;
1269
+ embedding_qwen_vl_2b: string | null;
1270
+ embedding_vertex_mm_01: string | null;
1249
1271
  file_path: string;
1250
1272
  id: number;
1251
1273
  modality: string | null;
@@ -50,6 +50,8 @@ export type Database = {
50
50
  Row: {
51
51
  created_at: string;
52
52
  device_id: number;
53
+ embedding_qwen_vl_2b: string | null;
54
+ embedding_vertex_mm_01: string | null;
53
55
  file_path: string;
54
56
  id: number;
55
57
  modality: string | null;
@@ -61,6 +63,8 @@ export type Database = {
61
63
  Insert: {
62
64
  created_at?: string;
63
65
  device_id: number;
66
+ embedding_qwen_vl_2b?: string | null;
67
+ embedding_vertex_mm_01?: string | null;
64
68
  file_path: string;
65
69
  id?: number;
66
70
  modality?: string | null;
@@ -72,6 +76,8 @@ export type Database = {
72
76
  Update: {
73
77
  created_at?: string;
74
78
  device_id?: number;
79
+ embedding_qwen_vl_2b?: string | null;
80
+ embedding_vertex_mm_01?: string | null;
75
81
  file_path?: string;
76
82
  id?: number;
77
83
  modality?: string | null;
@@ -315,6 +321,8 @@ export type Database = {
315
321
  altitude: number;
316
322
  device_id: number;
317
323
  earthranger_url: string | null;
324
+ embedding_qwen_vl_2b: string | null;
325
+ embedding_vertex_mm_01: string | null;
318
326
  file_path: string | null;
319
327
  heading: number;
320
328
  id: number;
@@ -331,6 +339,8 @@ export type Database = {
331
339
  altitude?: number;
332
340
  device_id: number;
333
341
  earthranger_url?: string | null;
342
+ embedding_qwen_vl_2b?: string | null;
343
+ embedding_vertex_mm_01?: string | null;
334
344
  file_path?: string | null;
335
345
  heading?: number;
336
346
  id?: number;
@@ -347,6 +357,8 @@ export type Database = {
347
357
  altitude?: number;
348
358
  device_id?: number;
349
359
  earthranger_url?: string | null;
360
+ embedding_qwen_vl_2b?: string | null;
361
+ embedding_vertex_mm_01?: string | null;
350
362
  file_path?: string | null;
351
363
  heading?: number;
352
364
  id?: number;
@@ -1205,6 +1217,8 @@ export type Database = {
1205
1217
  Returns: {
1206
1218
  created_at: string;
1207
1219
  device_id: number;
1220
+ embedding_qwen_vl_2b: string | null;
1221
+ embedding_vertex_mm_01: string | null;
1208
1222
  file_path: string;
1209
1223
  id: number;
1210
1224
  modality: string | null;
@@ -1228,6 +1242,8 @@ export type Database = {
1228
1242
  Returns: {
1229
1243
  created_at: string;
1230
1244
  device_id: number;
1245
+ embedding_qwen_vl_2b: string | null;
1246
+ embedding_vertex_mm_01: string | null;
1231
1247
  file_path: string;
1232
1248
  id: number;
1233
1249
  modality: string | null;
@@ -1252,6 +1268,8 @@ export type Database = {
1252
1268
  Returns: {
1253
1269
  created_at: string;
1254
1270
  device_id: number;
1271
+ embedding_qwen_vl_2b: string | null;
1272
+ embedding_vertex_mm_01: string | null;
1255
1273
  file_path: string;
1256
1274
  id: number;
1257
1275
  modality: string | null;
@@ -1277,6 +1295,8 @@ export type Database = {
1277
1295
  Returns: {
1278
1296
  created_at: string;
1279
1297
  device_id: number;
1298
+ embedding_qwen_vl_2b: string | null;
1299
+ embedding_vertex_mm_01: string | null;
1280
1300
  file_path: string;
1281
1301
  id: number;
1282
1302
  modality: string | null;
@@ -1302,6 +1322,8 @@ export type Database = {
1302
1322
  Returns: {
1303
1323
  created_at: string;
1304
1324
  device_id: number;
1325
+ embedding_qwen_vl_2b: string | null;
1326
+ embedding_vertex_mm_01: string | null;
1305
1327
  file_path: string;
1306
1328
  id: number;
1307
1329
  modality: string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adventurelabs/scout-core",
3
- "version": "1.4.12",
3
+ "version": "1.4.13",
4
4
  "description": "Core utilities and helpers for Adventure Labs Scout applications",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",