@periskope/types 0.6.467 → 0.6.468
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.
- package/dist/supabase.types.d.ts +39 -0
- package/dist/supabase.types.d.ts.map +1 -1
- package/dist/types.d.ts +34 -0
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/supabase.types.ts +39 -0
- package/src/types.ts +35 -0
- package/tsconfig.tsbuildinfo +1 -1
package/dist/supabase.types.d.ts
CHANGED
|
@@ -850,6 +850,45 @@ export type Database = {
|
|
|
850
850
|
};
|
|
851
851
|
Relationships: [];
|
|
852
852
|
};
|
|
853
|
+
tbl_ai_mcp_servers: {
|
|
854
|
+
Row: {
|
|
855
|
+
auth: Json;
|
|
856
|
+
created_at: string;
|
|
857
|
+
enabled_tools: Json;
|
|
858
|
+
id: string;
|
|
859
|
+
name: string;
|
|
860
|
+
org_id: string;
|
|
861
|
+
status: string;
|
|
862
|
+
tools_cache: Json;
|
|
863
|
+
updated_at: string;
|
|
864
|
+
url: string;
|
|
865
|
+
};
|
|
866
|
+
Insert: {
|
|
867
|
+
auth?: Json;
|
|
868
|
+
created_at?: string;
|
|
869
|
+
enabled_tools?: Json;
|
|
870
|
+
id?: string;
|
|
871
|
+
name: string;
|
|
872
|
+
org_id: string;
|
|
873
|
+
status?: string;
|
|
874
|
+
tools_cache?: Json;
|
|
875
|
+
updated_at?: string;
|
|
876
|
+
url: string;
|
|
877
|
+
};
|
|
878
|
+
Update: {
|
|
879
|
+
auth?: Json;
|
|
880
|
+
created_at?: string;
|
|
881
|
+
enabled_tools?: Json;
|
|
882
|
+
id?: string;
|
|
883
|
+
name?: string;
|
|
884
|
+
org_id?: string;
|
|
885
|
+
status?: string;
|
|
886
|
+
tools_cache?: Json;
|
|
887
|
+
updated_at?: string;
|
|
888
|
+
url?: string;
|
|
889
|
+
};
|
|
890
|
+
Relationships: [];
|
|
891
|
+
};
|
|
853
892
|
tbl_api_logs: {
|
|
854
893
|
Row: {
|
|
855
894
|
org_id: string;
|