@panorama-ai/gateway 2.30.176 → 2.30.181

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.
@@ -2,31 +2,6 @@ export type Json = string | number | boolean | null | {
2
2
  [key: string]: Json | undefined;
3
3
  } | Json[];
4
4
  export type Database = {
5
- graphql_public: {
6
- Tables: {
7
- [_ in never]: never;
8
- };
9
- Views: {
10
- [_ in never]: never;
11
- };
12
- Functions: {
13
- graphql: {
14
- Args: {
15
- extensions?: Json;
16
- operationName?: string;
17
- query?: string;
18
- variables?: Json;
19
- };
20
- Returns: Json;
21
- };
22
- };
23
- Enums: {
24
- [_ in never]: never;
25
- };
26
- CompositeTypes: {
27
- [_ in never]: never;
28
- };
29
- };
30
5
  public: {
31
6
  Tables: {
32
7
  agent_config: {
@@ -8954,6 +8929,34 @@ export type Database = {
8954
8929
  isSetofReturn: false;
8955
8930
  };
8956
8931
  };
8932
+ fail_agent_creation: {
8933
+ Args: {
8934
+ p_action_summary: string;
8935
+ p_agent_id: string;
8936
+ p_only_if_configuring?: boolean;
8937
+ };
8938
+ Returns: Json;
8939
+ };
8940
+ finalize_agent_name_creation: {
8941
+ Args: {
8942
+ p_action_summary: string;
8943
+ p_agent_id: string;
8944
+ p_complete_creation?: boolean;
8945
+ p_name: string;
8946
+ };
8947
+ Returns: Json;
8948
+ };
8949
+ finalize_ai_agent_configuration: {
8950
+ Args: {
8951
+ p_agent_id: string;
8952
+ p_disabled_tools?: Json;
8953
+ p_instructions: string;
8954
+ p_name: string;
8955
+ p_objective: string;
8956
+ p_plan: Json;
8957
+ };
8958
+ Returns: Json;
8959
+ };
8957
8960
  finalize_gateway_subagent_run_state: {
8958
8961
  Args: {
8959
8962
  p_completed_at?: string;
@@ -10000,6 +10003,12 @@ export type Database = {
10000
10003
  };
10001
10004
  Returns: boolean;
10002
10005
  };
10006
+ is_valid_message_reaction_emoji: {
10007
+ Args: {
10008
+ p_emoji: string;
10009
+ };
10010
+ Returns: boolean;
10011
+ };
10003
10012
  is_vm_billable_power_state: {
10004
10013
  Args: {
10005
10014
  p_power_state: string;
@@ -11403,9 +11412,6 @@ export type CompositeTypes<PublicCompositeTypeNameOrOptions extends keyof Defaul
11403
11412
  schema: keyof DatabaseWithoutInternals;
11404
11413
  } ? DatabaseWithoutInternals[PublicCompositeTypeNameOrOptions["schema"]]["CompositeTypes"][CompositeTypeName] : PublicCompositeTypeNameOrOptions extends keyof DefaultSchema["CompositeTypes"] ? DefaultSchema["CompositeTypes"][PublicCompositeTypeNameOrOptions] : never;
11405
11414
  export declare const Constants: {
11406
- readonly graphql_public: {
11407
- readonly Enums: {};
11408
- };
11409
11415
  readonly public: {
11410
11416
  readonly Enums: {};
11411
11417
  };