@adventurelabs/scout-core 1.4.50 → 1.4.51

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,7 @@ export declare function useSupabase(): SupabaseClient<Database, "public", "publi
51
51
  Row: {
52
52
  id: number;
53
53
  inserted_at: string;
54
+ job_type: string;
54
55
  status: Database["public"]["Enums"]["analysis_work_status"];
55
56
  timestamp_finished: string | null;
56
57
  timestamp_requested: string;
@@ -59,6 +60,7 @@ export declare function useSupabase(): SupabaseClient<Database, "public", "publi
59
60
  Insert: {
60
61
  id?: number;
61
62
  inserted_at?: string;
63
+ job_type?: string;
62
64
  status?: Database["public"]["Enums"]["analysis_work_status"];
63
65
  timestamp_finished?: string | null;
64
66
  timestamp_requested?: string;
@@ -67,6 +69,7 @@ export declare function useSupabase(): SupabaseClient<Database, "public", "publi
67
69
  Update: {
68
70
  id?: number;
69
71
  inserted_at?: string;
72
+ job_type?: string;
70
73
  status?: Database["public"]["Enums"]["analysis_work_status"];
71
74
  timestamp_finished?: string | null;
72
75
  timestamp_requested?: string;
@@ -50,6 +50,7 @@ export type Database = {
50
50
  Row: {
51
51
  id: number;
52
52
  inserted_at: string;
53
+ job_type: string;
53
54
  status: Database["public"]["Enums"]["analysis_work_status"];
54
55
  timestamp_finished: string | null;
55
56
  timestamp_requested: string;
@@ -58,6 +59,7 @@ export type Database = {
58
59
  Insert: {
59
60
  id?: number;
60
61
  inserted_at?: string;
62
+ job_type?: string;
61
63
  status?: Database["public"]["Enums"]["analysis_work_status"];
62
64
  timestamp_finished?: string | null;
63
65
  timestamp_requested?: string;
@@ -66,6 +68,7 @@ export type Database = {
66
68
  Update: {
67
69
  id?: number;
68
70
  inserted_at?: string;
71
+ job_type?: string;
69
72
  status?: Database["public"]["Enums"]["analysis_work_status"];
70
73
  timestamp_finished?: string | null;
71
74
  timestamp_requested?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adventurelabs/scout-core",
3
- "version": "1.4.50",
3
+ "version": "1.4.51",
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",