@adventurelabs/scout-core 1.4.42 → 1.4.43

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.
@@ -305,6 +305,7 @@ export declare function useSupabase(): SupabaseClient<Database, "public", "publi
305
305
  devices: {
306
306
  Row: {
307
307
  altitude: number | null;
308
+ color: string | null;
308
309
  created_by: string;
309
310
  description: string;
310
311
  device_type: Database["public"]["Enums"]["device_type"];
@@ -320,6 +321,7 @@ export declare function useSupabase(): SupabaseClient<Database, "public", "publi
320
321
  };
321
322
  Insert: {
322
323
  altitude?: number | null;
324
+ color?: string | null;
323
325
  created_by: string;
324
326
  description: string;
325
327
  device_type?: Database["public"]["Enums"]["device_type"];
@@ -335,6 +337,7 @@ export declare function useSupabase(): SupabaseClient<Database, "public", "publi
335
337
  };
336
338
  Update: {
337
339
  altitude?: number | null;
340
+ color?: string | null;
338
341
  created_by?: string;
339
342
  description?: string;
340
343
  device_type?: Database["public"]["Enums"]["device_type"];
@@ -317,6 +317,7 @@ export type Database = {
317
317
  devices: {
318
318
  Row: {
319
319
  altitude: number | null;
320
+ color: string | null;
320
321
  created_by: string;
321
322
  description: string;
322
323
  device_type: Database["public"]["Enums"]["device_type"];
@@ -332,6 +333,7 @@ export type Database = {
332
333
  };
333
334
  Insert: {
334
335
  altitude?: number | null;
336
+ color?: string | null;
335
337
  created_by: string;
336
338
  description: string;
337
339
  device_type?: Database["public"]["Enums"]["device_type"];
@@ -347,6 +349,7 @@ export type Database = {
347
349
  };
348
350
  Update: {
349
351
  altitude?: number | null;
352
+ color?: string | null;
350
353
  created_by?: string;
351
354
  description?: string;
352
355
  device_type?: Database["public"]["Enums"]["device_type"];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adventurelabs/scout-core",
3
- "version": "1.4.42",
3
+ "version": "1.4.43",
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",