@periskope/types 0.6.414 → 0.6.416

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.
@@ -433,6 +433,7 @@ export type Database = {
433
433
  created_at: string | null;
434
434
  document_id: string | null;
435
435
  embedding: string;
436
+ is_active: boolean | null;
436
437
  metadata: Json | null;
437
438
  org_id: string;
438
439
  question: string;
@@ -448,6 +449,7 @@ export type Database = {
448
449
  created_at?: string | null;
449
450
  document_id?: string | null;
450
451
  embedding: string;
452
+ is_active?: boolean | null;
451
453
  metadata?: Json | null;
452
454
  org_id: string;
453
455
  question: string;
@@ -463,6 +465,7 @@ export type Database = {
463
465
  created_at?: string | null;
464
466
  document_id?: string | null;
465
467
  embedding?: string;
468
+ is_active?: boolean | null;
466
469
  metadata?: Json | null;
467
470
  org_id?: string;
468
471
  question?: string;
@@ -472,6 +475,51 @@ export type Database = {
472
475
  };
473
476
  Relationships: [];
474
477
  };
478
+ tbl_ai_sessions: {
479
+ Row: {
480
+ chat_id: string;
481
+ conversation_messages: Json | null;
482
+ created_at: string;
483
+ metadata: Json | null;
484
+ org_id: string;
485
+ org_phone: string;
486
+ relevant_context: Json | null;
487
+ session_id: string;
488
+ status: string;
489
+ tool_calls: Json | null;
490
+ updated_at: string;
491
+ usage_details: Json | null;
492
+ };
493
+ Insert: {
494
+ chat_id: string;
495
+ conversation_messages?: Json | null;
496
+ created_at?: string;
497
+ metadata?: Json | null;
498
+ org_id: string;
499
+ org_phone: string;
500
+ relevant_context?: Json | null;
501
+ session_id: string;
502
+ status?: string;
503
+ tool_calls?: Json | null;
504
+ updated_at?: string;
505
+ usage_details?: Json | null;
506
+ };
507
+ Update: {
508
+ chat_id?: string;
509
+ conversation_messages?: Json | null;
510
+ created_at?: string;
511
+ metadata?: Json | null;
512
+ org_id?: string;
513
+ org_phone?: string;
514
+ relevant_context?: Json | null;
515
+ session_id?: string;
516
+ status?: string;
517
+ tool_calls?: Json | null;
518
+ updated_at?: string;
519
+ usage_details?: Json | null;
520
+ };
521
+ Relationships: [];
522
+ };
475
523
  tbl_api_logs: {
476
524
  Row: {
477
525
  org_id: string;