@periskope/types 0.6.421 → 0.6.424

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.
@@ -152,6 +152,51 @@ export type Database = {
152
152
  }
153
153
  Relationships: []
154
154
  }
155
+ tbl_gsheet_events: {
156
+ Row: {
157
+ created_at: string
158
+ error: Json | null
159
+ event_data: Json
160
+ event_type: string
161
+ hook_url: string
162
+ id: number
163
+ org_id: string
164
+ performed_at: string | null
165
+ retry_count: number | null
166
+ sheet_id: string
167
+ spreadsheet_id: string
168
+ unique_key: string
169
+ }
170
+ Insert: {
171
+ created_at?: string
172
+ error?: Json | null
173
+ event_data: Json
174
+ event_type: string
175
+ hook_url: string
176
+ id?: number
177
+ org_id: string
178
+ performed_at?: string | null
179
+ retry_count?: number | null
180
+ sheet_id: string
181
+ spreadsheet_id: string
182
+ unique_key: string
183
+ }
184
+ Update: {
185
+ created_at?: string
186
+ error?: Json | null
187
+ event_data?: Json
188
+ event_type?: string
189
+ hook_url?: string
190
+ id?: number
191
+ org_id?: string
192
+ performed_at?: string | null
193
+ retry_count?: number | null
194
+ sheet_id?: string
195
+ spreadsheet_id?: string
196
+ unique_key?: string
197
+ }
198
+ Relationships: []
199
+ }
155
200
  tbl_notification_events: {
156
201
  Row: {
157
202
  created_at: string
@@ -520,6 +565,52 @@ export type Database = {
520
565
  }
521
566
  Relationships: []
522
567
  }
568
+ tbl_ai_tools: {
569
+ Row: {
570
+ auth: Json | null
571
+ created_at: string
572
+ description: string
573
+ is_active: boolean
574
+ method: string
575
+ name: string
576
+ org_id: string
577
+ parameters: Json | null
578
+ response_schema: Json | null
579
+ tool_id: string
580
+ updated_at: string
581
+ url: string
582
+ headers: Json[] | null
583
+ }
584
+ Insert: {
585
+ auth?: Json | null
586
+ created_at?: string
587
+ description: string
588
+ is_active?: boolean
589
+ method?: string
590
+ name: string
591
+ org_id: string
592
+ parameters?: Json | null
593
+ response_schema?: Json | null
594
+ tool_id?: string
595
+ updated_at?: string
596
+ url: string
597
+ }
598
+ Update: {
599
+ auth?: Json | null
600
+ created_at?: string
601
+ description?: string
602
+ is_active?: boolean
603
+ method?: string
604
+ name?: string
605
+ org_id?: string
606
+ parameters?: Json | null
607
+ response_schema?: Json | null
608
+ tool_id?: string
609
+ updated_at?: string
610
+ url?: string
611
+ }
612
+ Relationships: []
613
+ }
523
614
  tbl_api_logs: {
524
615
  Row: {
525
616
  org_id: string