@periskope/types 0.6.262 → 0.6.263
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/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/dist/supabase.types.d.ts +231 -107
- package/dist/supabase.types.d.ts.map +1 -1
- package/dist/supabase.types.js +76 -0
- package/dist/types.d.ts +0 -1
- package/dist/types.d.ts.map +1 -1
- package/dist/workflows.types.d.ts +307 -0
- package/dist/workflows.types.d.ts.map +1 -0
- package/dist/workflows.types.js +256 -0
- package/package.json +1 -1
- package/src/index.ts +1 -0
- package/src/supabase.types.ts +332 -199
- package/src/types.ts +3 -3
- package/src/workflows.types.ts +692 -0
- package/tsconfig.tsbuildinfo +1 -1
package/dist/index.d.ts
CHANGED
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,gBAAgB,CAAC;AAC/B,cAAc,eAAe,CAAC;AAC9B,cAAc,kBAAkB,CAAC;AACjC,cAAc,SAAS,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,gBAAgB,CAAC;AAC/B,cAAc,eAAe,CAAC;AAC9B,cAAc,kBAAkB,CAAC;AACjC,cAAc,SAAS,CAAC;AACxB,cAAc,mBAAmB,CAAC"}
|
package/dist/index.js
CHANGED
package/dist/supabase.types.d.ts
CHANGED
|
@@ -2,31 +2,6 @@ export type Json = {
|
|
|
2
2
|
[key: string]: any;
|
|
3
3
|
} | any;
|
|
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
|
-
operationName?: string;
|
|
16
|
-
query?: string;
|
|
17
|
-
variables?: Json;
|
|
18
|
-
extensions?: Json;
|
|
19
|
-
};
|
|
20
|
-
Returns: Json;
|
|
21
|
-
};
|
|
22
|
-
};
|
|
23
|
-
Enums: {
|
|
24
|
-
[_ in never]: never;
|
|
25
|
-
};
|
|
26
|
-
CompositeTypes: {
|
|
27
|
-
[_ in never]: never;
|
|
28
|
-
};
|
|
29
|
-
};
|
|
30
5
|
internal: {
|
|
31
6
|
Tables: {
|
|
32
7
|
config: {
|
|
@@ -213,45 +188,6 @@ export type Database = {
|
|
|
213
188
|
};
|
|
214
189
|
public: {
|
|
215
190
|
Tables: {
|
|
216
|
-
tbl_ai_contexts: {
|
|
217
|
-
Row: {
|
|
218
|
-
answer: string;
|
|
219
|
-
attachments: string[] | null;
|
|
220
|
-
context_id: string;
|
|
221
|
-
created_at: string | null;
|
|
222
|
-
document_id: string | null;
|
|
223
|
-
embedding: string;
|
|
224
|
-
metadata: Json | null;
|
|
225
|
-
org_id: string;
|
|
226
|
-
question: string;
|
|
227
|
-
type: Database["public"]["Enums"]["enum_ai_context_type"] | null;
|
|
228
|
-
};
|
|
229
|
-
Insert: {
|
|
230
|
-
answer: string;
|
|
231
|
-
attachments?: string[] | null;
|
|
232
|
-
context_id?: string;
|
|
233
|
-
created_at?: string | null;
|
|
234
|
-
document_id?: string | null;
|
|
235
|
-
embedding: string;
|
|
236
|
-
metadata?: Json | null;
|
|
237
|
-
org_id: string;
|
|
238
|
-
question: string;
|
|
239
|
-
type?: Database["public"]["Enums"]["enum_ai_context_type"] | null;
|
|
240
|
-
};
|
|
241
|
-
Update: {
|
|
242
|
-
answer?: string;
|
|
243
|
-
attachments?: string[] | null;
|
|
244
|
-
context_id?: string;
|
|
245
|
-
created_at?: string | null;
|
|
246
|
-
document_id?: string | null;
|
|
247
|
-
embedding?: string;
|
|
248
|
-
metadata?: Json | null;
|
|
249
|
-
org_id?: string;
|
|
250
|
-
question?: string;
|
|
251
|
-
type?: Database["public"]["Enums"]["enum_ai_context_type"] | null;
|
|
252
|
-
};
|
|
253
|
-
Relationships: [];
|
|
254
|
-
};
|
|
255
191
|
tbl_api_logs: {
|
|
256
192
|
Row: {
|
|
257
193
|
org_id: string;
|
|
@@ -886,7 +822,6 @@ export type Database = {
|
|
|
886
822
|
};
|
|
887
823
|
tbl_chat_properties: {
|
|
888
824
|
Row: {
|
|
889
|
-
ai_metadata: Json | null;
|
|
890
825
|
assigned_to: string | null;
|
|
891
826
|
chat_access: Json | null;
|
|
892
827
|
chat_id: string;
|
|
@@ -906,7 +841,6 @@ export type Database = {
|
|
|
906
841
|
zohodesk_metadata: Json | null;
|
|
907
842
|
};
|
|
908
843
|
Insert: {
|
|
909
|
-
ai_metadata?: Json | null;
|
|
910
844
|
assigned_to?: string | null;
|
|
911
845
|
chat_access?: Json | null;
|
|
912
846
|
chat_id: string;
|
|
@@ -926,7 +860,6 @@ export type Database = {
|
|
|
926
860
|
zohodesk_metadata?: Json | null;
|
|
927
861
|
};
|
|
928
862
|
Update: {
|
|
929
|
-
ai_metadata?: Json | null;
|
|
930
863
|
assigned_to?: string | null;
|
|
931
864
|
chat_access?: Json | null;
|
|
932
865
|
chat_id?: string;
|
|
@@ -1200,7 +1133,7 @@ export type Database = {
|
|
|
1200
1133
|
is_my_contact: boolean | null;
|
|
1201
1134
|
is_user: boolean | null;
|
|
1202
1135
|
is_wa_contact: boolean | null;
|
|
1203
|
-
label_ids: Json
|
|
1136
|
+
label_ids: Json;
|
|
1204
1137
|
name: string | null;
|
|
1205
1138
|
number: string | null;
|
|
1206
1139
|
org_id: string;
|
|
@@ -1229,7 +1162,7 @@ export type Database = {
|
|
|
1229
1162
|
is_my_contact?: boolean | null;
|
|
1230
1163
|
is_user?: boolean | null;
|
|
1231
1164
|
is_wa_contact?: boolean | null;
|
|
1232
|
-
label_ids?: Json
|
|
1165
|
+
label_ids?: Json;
|
|
1233
1166
|
name?: string | null;
|
|
1234
1167
|
number?: string | null;
|
|
1235
1168
|
org_id: string;
|
|
@@ -1258,7 +1191,7 @@ export type Database = {
|
|
|
1258
1191
|
is_my_contact?: boolean | null;
|
|
1259
1192
|
is_user?: boolean | null;
|
|
1260
1193
|
is_wa_contact?: boolean | null;
|
|
1261
|
-
label_ids?: Json
|
|
1194
|
+
label_ids?: Json;
|
|
1262
1195
|
name?: string | null;
|
|
1263
1196
|
number?: string | null;
|
|
1264
1197
|
org_id?: string;
|
|
@@ -1708,13 +1641,6 @@ export type Database = {
|
|
|
1708
1641
|
user_id?: string | null;
|
|
1709
1642
|
};
|
|
1710
1643
|
Relationships: [
|
|
1711
|
-
{
|
|
1712
|
-
foreignKeyName: "tbl_org_members_fkey_auth_users";
|
|
1713
|
-
columns: ["user_id"];
|
|
1714
|
-
isOneToOne: false;
|
|
1715
|
-
referencedRelation: "users";
|
|
1716
|
-
referencedColumns: ["id"];
|
|
1717
|
-
},
|
|
1718
1644
|
{
|
|
1719
1645
|
foreignKeyName: "tbl_org_members_fkey_tbl_org";
|
|
1720
1646
|
columns: ["org_id"];
|
|
@@ -1958,6 +1884,63 @@ export type Database = {
|
|
|
1958
1884
|
}
|
|
1959
1885
|
];
|
|
1960
1886
|
};
|
|
1887
|
+
tbl_org_workflows: {
|
|
1888
|
+
Row: {
|
|
1889
|
+
actions: Json;
|
|
1890
|
+
created_at: string;
|
|
1891
|
+
deleted_at: string | null;
|
|
1892
|
+
id: string;
|
|
1893
|
+
is_active: boolean;
|
|
1894
|
+
name: string;
|
|
1895
|
+
org_id: string;
|
|
1896
|
+
trigger: string;
|
|
1897
|
+
trigger_metadata: Json;
|
|
1898
|
+
updated_at: string;
|
|
1899
|
+
updated_by: string;
|
|
1900
|
+
};
|
|
1901
|
+
Insert: {
|
|
1902
|
+
actions?: Json;
|
|
1903
|
+
created_at?: string;
|
|
1904
|
+
deleted_at?: string | null;
|
|
1905
|
+
id?: string;
|
|
1906
|
+
is_active?: boolean;
|
|
1907
|
+
name: string;
|
|
1908
|
+
org_id: string;
|
|
1909
|
+
trigger: string;
|
|
1910
|
+
trigger_metadata?: Json;
|
|
1911
|
+
updated_at?: string;
|
|
1912
|
+
updated_by: string;
|
|
1913
|
+
};
|
|
1914
|
+
Update: {
|
|
1915
|
+
actions?: Json;
|
|
1916
|
+
created_at?: string;
|
|
1917
|
+
deleted_at?: string | null;
|
|
1918
|
+
id?: string;
|
|
1919
|
+
is_active?: boolean;
|
|
1920
|
+
name?: string;
|
|
1921
|
+
org_id?: string;
|
|
1922
|
+
trigger?: string;
|
|
1923
|
+
trigger_metadata?: Json;
|
|
1924
|
+
updated_at?: string;
|
|
1925
|
+
updated_by?: string;
|
|
1926
|
+
};
|
|
1927
|
+
Relationships: [
|
|
1928
|
+
{
|
|
1929
|
+
foreignKeyName: "tbl_org_workflows_org_id_fkey";
|
|
1930
|
+
columns: ["org_id"];
|
|
1931
|
+
isOneToOne: false;
|
|
1932
|
+
referencedRelation: "tbl_org";
|
|
1933
|
+
referencedColumns: ["org_id"];
|
|
1934
|
+
},
|
|
1935
|
+
{
|
|
1936
|
+
foreignKeyName: "tbl_org_workflows_org_id_fkey";
|
|
1937
|
+
columns: ["org_id"];
|
|
1938
|
+
isOneToOne: false;
|
|
1939
|
+
referencedRelation: "view_org";
|
|
1940
|
+
referencedColumns: ["org_id"];
|
|
1941
|
+
}
|
|
1942
|
+
];
|
|
1943
|
+
};
|
|
1961
1944
|
tbl_quick_replies: {
|
|
1962
1945
|
Row: {
|
|
1963
1946
|
command: string | null;
|
|
@@ -2236,7 +2219,6 @@ export type Database = {
|
|
|
2236
2219
|
view_chats: {
|
|
2237
2220
|
Row: {
|
|
2238
2221
|
add_members_admins_only: boolean | null;
|
|
2239
|
-
ai_metadata: Json | null;
|
|
2240
2222
|
assigned_to: string | null;
|
|
2241
2223
|
chat_access: Json | null;
|
|
2242
2224
|
chat_id: string | null;
|
|
@@ -2595,13 +2577,6 @@ export type Database = {
|
|
|
2595
2577
|
};
|
|
2596
2578
|
Returns: Json;
|
|
2597
2579
|
};
|
|
2598
|
-
get_relevant_context: {
|
|
2599
|
-
Args: {
|
|
2600
|
-
org_id_input: string;
|
|
2601
|
-
query_embedding_input: string;
|
|
2602
|
-
};
|
|
2603
|
-
Returns: Json;
|
|
2604
|
-
};
|
|
2605
2580
|
get_team_metrics_between_dates: {
|
|
2606
2581
|
Args: {
|
|
2607
2582
|
org_id_input: string;
|
|
@@ -2810,12 +2785,11 @@ export type Database = {
|
|
|
2810
2785
|
};
|
|
2811
2786
|
};
|
|
2812
2787
|
Enums: {
|
|
2813
|
-
enum_ai_context_type: "faq" | "document";
|
|
2814
2788
|
enum_broadcast_status: "inprogress" | "completed" | "stopped" | "expired";
|
|
2815
2789
|
enum_chat_colors: "#B4876E" | "#A5B337" | "#06CF9C" | "#25D366" | "#02A698" | "#7D9EF1" | "#007BFC" | "#5E47DE" | "#7F66FF" | "#9333EA" | "#FA6533" | "#C4532D" | "#DC2626" | "#FF2E74" | "#DB2777";
|
|
2816
2790
|
enum_chat_tickets_status: "open" | "inprogress" | "closed" | "archived";
|
|
2817
2791
|
enum_credit_transaction_type: "credit" | "debit";
|
|
2818
|
-
enum_integration_name: "org.created" | "org.updated" | "org.member.created" | "org.member.updated" | "org.subscription.trial_will_end" | "chat.created" | "chat.updated" | "chat.notification.created" | "message.created" | "message.updated" | "message.deleted" | "message.ack.updated" | "reaction.created" | "reaction.updated" | "ticket.created" | "ticket.updated" | "ticket.deleted" | "org.integrations.updated" | "message.flagged" | "message.unflagged" | "chat.label.updated" | "reaction.added" | "message.ticket.attached" | "org.phone.created" | "org.phone.
|
|
2792
|
+
enum_integration_name: "org.created" | "org.updated" | "org.member.created" | "org.member.updated" | "org.subscription.trial_will_end" | "chat.created" | "chat.updated" | "chat.notification.created" | "message.created" | "message.updated" | "message.deleted" | "message.ack.updated" | "reaction.created" | "reaction.updated" | "ticket.created" | "ticket.updated" | "ticket.deleted" | "org.integrations.updated" | "message.flagged" | "message.unflagged" | "chat.label.updated" | "reaction.added" | "message.ticket.attached" | "org.phone.created" | "org.phone.updated" | "org.phone.connected" | "org.phone.disconnected" | "org.phone.qr";
|
|
2819
2793
|
enum_integration_type: "zapier" | "pabbly" | "api" | "webhook" | "hubspot" | "freshdesk" | "slack" | "jira" | "salesforce" | "zohodesk" | "gsheets";
|
|
2820
2794
|
enum_member_role: "admin" | "member";
|
|
2821
2795
|
};
|
|
@@ -2891,6 +2865,7 @@ export type Database = {
|
|
|
2891
2865
|
created_at: string | null;
|
|
2892
2866
|
id: string;
|
|
2893
2867
|
last_accessed_at: string | null;
|
|
2868
|
+
level: number | null;
|
|
2894
2869
|
metadata: Json | null;
|
|
2895
2870
|
name: string | null;
|
|
2896
2871
|
owner: string | null;
|
|
@@ -2905,6 +2880,7 @@ export type Database = {
|
|
|
2905
2880
|
created_at?: string | null;
|
|
2906
2881
|
id?: string;
|
|
2907
2882
|
last_accessed_at?: string | null;
|
|
2883
|
+
level?: number | null;
|
|
2908
2884
|
metadata?: Json | null;
|
|
2909
2885
|
name?: string | null;
|
|
2910
2886
|
owner?: string | null;
|
|
@@ -2919,6 +2895,7 @@ export type Database = {
|
|
|
2919
2895
|
created_at?: string | null;
|
|
2920
2896
|
id?: string;
|
|
2921
2897
|
last_accessed_at?: string | null;
|
|
2898
|
+
level?: number | null;
|
|
2922
2899
|
metadata?: Json | null;
|
|
2923
2900
|
name?: string | null;
|
|
2924
2901
|
owner?: string | null;
|
|
@@ -2938,6 +2915,38 @@ export type Database = {
|
|
|
2938
2915
|
}
|
|
2939
2916
|
];
|
|
2940
2917
|
};
|
|
2918
|
+
prefixes: {
|
|
2919
|
+
Row: {
|
|
2920
|
+
bucket_id: string;
|
|
2921
|
+
created_at: string | null;
|
|
2922
|
+
level: number;
|
|
2923
|
+
name: string;
|
|
2924
|
+
updated_at: string | null;
|
|
2925
|
+
};
|
|
2926
|
+
Insert: {
|
|
2927
|
+
bucket_id: string;
|
|
2928
|
+
created_at?: string | null;
|
|
2929
|
+
level?: number;
|
|
2930
|
+
name: string;
|
|
2931
|
+
updated_at?: string | null;
|
|
2932
|
+
};
|
|
2933
|
+
Update: {
|
|
2934
|
+
bucket_id?: string;
|
|
2935
|
+
created_at?: string | null;
|
|
2936
|
+
level?: number;
|
|
2937
|
+
name?: string;
|
|
2938
|
+
updated_at?: string | null;
|
|
2939
|
+
};
|
|
2940
|
+
Relationships: [
|
|
2941
|
+
{
|
|
2942
|
+
foreignKeyName: "prefixes_bucketId_fkey";
|
|
2943
|
+
columns: ["bucket_id"];
|
|
2944
|
+
isOneToOne: false;
|
|
2945
|
+
referencedRelation: "buckets";
|
|
2946
|
+
referencedColumns: ["id"];
|
|
2947
|
+
}
|
|
2948
|
+
];
|
|
2949
|
+
};
|
|
2941
2950
|
s3_multipart_uploads: {
|
|
2942
2951
|
Row: {
|
|
2943
2952
|
bucket_id: string;
|
|
@@ -3041,6 +3050,13 @@ export type Database = {
|
|
|
3041
3050
|
[_ in never]: never;
|
|
3042
3051
|
};
|
|
3043
3052
|
Functions: {
|
|
3053
|
+
add_prefixes: {
|
|
3054
|
+
Args: {
|
|
3055
|
+
_bucket_id: string;
|
|
3056
|
+
_name: string;
|
|
3057
|
+
};
|
|
3058
|
+
Returns: undefined;
|
|
3059
|
+
};
|
|
3044
3060
|
can_insert_object: {
|
|
3045
3061
|
Args: {
|
|
3046
3062
|
bucketid: string;
|
|
@@ -3050,6 +3066,13 @@ export type Database = {
|
|
|
3050
3066
|
};
|
|
3051
3067
|
Returns: undefined;
|
|
3052
3068
|
};
|
|
3069
|
+
delete_prefix: {
|
|
3070
|
+
Args: {
|
|
3071
|
+
_bucket_id: string;
|
|
3072
|
+
_name: string;
|
|
3073
|
+
};
|
|
3074
|
+
Returns: boolean;
|
|
3075
|
+
};
|
|
3053
3076
|
extension: {
|
|
3054
3077
|
Args: {
|
|
3055
3078
|
name: string;
|
|
@@ -3068,6 +3091,24 @@ export type Database = {
|
|
|
3068
3091
|
};
|
|
3069
3092
|
Returns: string[];
|
|
3070
3093
|
};
|
|
3094
|
+
get_level: {
|
|
3095
|
+
Args: {
|
|
3096
|
+
name: string;
|
|
3097
|
+
};
|
|
3098
|
+
Returns: number;
|
|
3099
|
+
};
|
|
3100
|
+
get_prefix: {
|
|
3101
|
+
Args: {
|
|
3102
|
+
name: string;
|
|
3103
|
+
};
|
|
3104
|
+
Returns: string;
|
|
3105
|
+
};
|
|
3106
|
+
get_prefixes: {
|
|
3107
|
+
Args: {
|
|
3108
|
+
name: string;
|
|
3109
|
+
};
|
|
3110
|
+
Returns: string[];
|
|
3111
|
+
};
|
|
3071
3112
|
get_size_by_bucket: {
|
|
3072
3113
|
Args: Record<PropertyKey, never>;
|
|
3073
3114
|
Returns: {
|
|
@@ -3130,6 +3171,63 @@ export type Database = {
|
|
|
3130
3171
|
metadata: Json;
|
|
3131
3172
|
}[];
|
|
3132
3173
|
};
|
|
3174
|
+
search_legacy_v1: {
|
|
3175
|
+
Args: {
|
|
3176
|
+
prefix: string;
|
|
3177
|
+
bucketname: string;
|
|
3178
|
+
limits?: number;
|
|
3179
|
+
levels?: number;
|
|
3180
|
+
offsets?: number;
|
|
3181
|
+
search?: string;
|
|
3182
|
+
sortcolumn?: string;
|
|
3183
|
+
sortorder?: string;
|
|
3184
|
+
};
|
|
3185
|
+
Returns: {
|
|
3186
|
+
name: string;
|
|
3187
|
+
id: string;
|
|
3188
|
+
updated_at: string;
|
|
3189
|
+
created_at: string;
|
|
3190
|
+
last_accessed_at: string;
|
|
3191
|
+
metadata: Json;
|
|
3192
|
+
}[];
|
|
3193
|
+
};
|
|
3194
|
+
search_v1_optimised: {
|
|
3195
|
+
Args: {
|
|
3196
|
+
prefix: string;
|
|
3197
|
+
bucketname: string;
|
|
3198
|
+
limits?: number;
|
|
3199
|
+
levels?: number;
|
|
3200
|
+
offsets?: number;
|
|
3201
|
+
search?: string;
|
|
3202
|
+
sortcolumn?: string;
|
|
3203
|
+
sortorder?: string;
|
|
3204
|
+
};
|
|
3205
|
+
Returns: {
|
|
3206
|
+
name: string;
|
|
3207
|
+
id: string;
|
|
3208
|
+
updated_at: string;
|
|
3209
|
+
created_at: string;
|
|
3210
|
+
last_accessed_at: string;
|
|
3211
|
+
metadata: Json;
|
|
3212
|
+
}[];
|
|
3213
|
+
};
|
|
3214
|
+
search_v2: {
|
|
3215
|
+
Args: {
|
|
3216
|
+
prefix: string;
|
|
3217
|
+
bucket_name: string;
|
|
3218
|
+
limits?: number;
|
|
3219
|
+
levels?: number;
|
|
3220
|
+
start_after?: string;
|
|
3221
|
+
};
|
|
3222
|
+
Returns: {
|
|
3223
|
+
key: string;
|
|
3224
|
+
name: string;
|
|
3225
|
+
id: string;
|
|
3226
|
+
updated_at: string;
|
|
3227
|
+
created_at: string;
|
|
3228
|
+
metadata: Json;
|
|
3229
|
+
}[];
|
|
3230
|
+
};
|
|
3133
3231
|
};
|
|
3134
3232
|
Enums: {
|
|
3135
3233
|
[_ in never]: never;
|
|
@@ -3139,46 +3237,72 @@ export type Database = {
|
|
|
3139
3237
|
};
|
|
3140
3238
|
};
|
|
3141
3239
|
};
|
|
3142
|
-
type
|
|
3143
|
-
export type Tables<
|
|
3240
|
+
type DefaultSchema = Database[Extract<keyof Database, "public">];
|
|
3241
|
+
export type Tables<DefaultSchemaTableNameOrOptions extends keyof (DefaultSchema["Tables"] & DefaultSchema["Views"]) | {
|
|
3144
3242
|
schema: keyof Database;
|
|
3145
|
-
}, TableName extends
|
|
3243
|
+
}, TableName extends DefaultSchemaTableNameOrOptions extends {
|
|
3146
3244
|
schema: keyof Database;
|
|
3147
|
-
} ? keyof (Database[
|
|
3245
|
+
} ? keyof (Database[DefaultSchemaTableNameOrOptions["schema"]]["Tables"] & Database[DefaultSchemaTableNameOrOptions["schema"]]["Views"]) : never = never> = DefaultSchemaTableNameOrOptions extends {
|
|
3148
3246
|
schema: keyof Database;
|
|
3149
|
-
} ? (Database[
|
|
3247
|
+
} ? (Database[DefaultSchemaTableNameOrOptions["schema"]]["Tables"] & Database[DefaultSchemaTableNameOrOptions["schema"]]["Views"])[TableName] extends {
|
|
3150
3248
|
Row: infer R;
|
|
3151
|
-
} ? R : never :
|
|
3249
|
+
} ? R : never : DefaultSchemaTableNameOrOptions extends keyof (DefaultSchema["Tables"] & DefaultSchema["Views"]) ? (DefaultSchema["Tables"] & DefaultSchema["Views"])[DefaultSchemaTableNameOrOptions] extends {
|
|
3152
3250
|
Row: infer R;
|
|
3153
3251
|
} ? R : never : never;
|
|
3154
|
-
export type TablesInsert<
|
|
3252
|
+
export type TablesInsert<DefaultSchemaTableNameOrOptions extends keyof DefaultSchema["Tables"] | {
|
|
3155
3253
|
schema: keyof Database;
|
|
3156
|
-
}, TableName extends
|
|
3254
|
+
}, TableName extends DefaultSchemaTableNameOrOptions extends {
|
|
3157
3255
|
schema: keyof Database;
|
|
3158
|
-
} ? keyof Database[
|
|
3256
|
+
} ? keyof Database[DefaultSchemaTableNameOrOptions["schema"]]["Tables"] : never = never> = DefaultSchemaTableNameOrOptions extends {
|
|
3159
3257
|
schema: keyof Database;
|
|
3160
|
-
} ? Database[
|
|
3258
|
+
} ? Database[DefaultSchemaTableNameOrOptions["schema"]]["Tables"][TableName] extends {
|
|
3161
3259
|
Insert: infer I;
|
|
3162
|
-
} ? I : never :
|
|
3260
|
+
} ? I : never : DefaultSchemaTableNameOrOptions extends keyof DefaultSchema["Tables"] ? DefaultSchema["Tables"][DefaultSchemaTableNameOrOptions] extends {
|
|
3163
3261
|
Insert: infer I;
|
|
3164
3262
|
} ? I : never : never;
|
|
3165
|
-
export type TablesUpdate<
|
|
3263
|
+
export type TablesUpdate<DefaultSchemaTableNameOrOptions extends keyof DefaultSchema["Tables"] | {
|
|
3166
3264
|
schema: keyof Database;
|
|
3167
|
-
}, TableName extends
|
|
3265
|
+
}, TableName extends DefaultSchemaTableNameOrOptions extends {
|
|
3168
3266
|
schema: keyof Database;
|
|
3169
|
-
} ? keyof Database[
|
|
3267
|
+
} ? keyof Database[DefaultSchemaTableNameOrOptions["schema"]]["Tables"] : never = never> = DefaultSchemaTableNameOrOptions extends {
|
|
3170
3268
|
schema: keyof Database;
|
|
3171
|
-
} ? Database[
|
|
3269
|
+
} ? Database[DefaultSchemaTableNameOrOptions["schema"]]["Tables"][TableName] extends {
|
|
3172
3270
|
Update: infer U;
|
|
3173
|
-
} ? U : never :
|
|
3271
|
+
} ? U : never : DefaultSchemaTableNameOrOptions extends keyof DefaultSchema["Tables"] ? DefaultSchema["Tables"][DefaultSchemaTableNameOrOptions] extends {
|
|
3174
3272
|
Update: infer U;
|
|
3175
3273
|
} ? U : never : never;
|
|
3176
|
-
export type Enums<
|
|
3274
|
+
export type Enums<DefaultSchemaEnumNameOrOptions extends keyof DefaultSchema["Enums"] | {
|
|
3275
|
+
schema: keyof Database;
|
|
3276
|
+
}, EnumName extends DefaultSchemaEnumNameOrOptions extends {
|
|
3277
|
+
schema: keyof Database;
|
|
3278
|
+
} ? keyof Database[DefaultSchemaEnumNameOrOptions["schema"]]["Enums"] : never = never> = DefaultSchemaEnumNameOrOptions extends {
|
|
3177
3279
|
schema: keyof Database;
|
|
3178
|
-
}
|
|
3280
|
+
} ? Database[DefaultSchemaEnumNameOrOptions["schema"]]["Enums"][EnumName] : DefaultSchemaEnumNameOrOptions extends keyof DefaultSchema["Enums"] ? DefaultSchema["Enums"][DefaultSchemaEnumNameOrOptions] : never;
|
|
3281
|
+
export type CompositeTypes<PublicCompositeTypeNameOrOptions extends keyof DefaultSchema["CompositeTypes"] | {
|
|
3179
3282
|
schema: keyof Database;
|
|
3180
|
-
}
|
|
3283
|
+
}, CompositeTypeName extends PublicCompositeTypeNameOrOptions extends {
|
|
3181
3284
|
schema: keyof Database;
|
|
3182
|
-
} ? Database[
|
|
3285
|
+
} ? keyof Database[PublicCompositeTypeNameOrOptions["schema"]]["CompositeTypes"] : never = never> = PublicCompositeTypeNameOrOptions extends {
|
|
3286
|
+
schema: keyof Database;
|
|
3287
|
+
} ? Database[PublicCompositeTypeNameOrOptions["schema"]]["CompositeTypes"][CompositeTypeName] : PublicCompositeTypeNameOrOptions extends keyof DefaultSchema["CompositeTypes"] ? DefaultSchema["CompositeTypes"][PublicCompositeTypeNameOrOptions] : never;
|
|
3288
|
+
export declare const Constants: {
|
|
3289
|
+
readonly internal: {
|
|
3290
|
+
readonly Enums: {};
|
|
3291
|
+
};
|
|
3292
|
+
readonly public: {
|
|
3293
|
+
readonly Enums: {
|
|
3294
|
+
readonly enum_broadcast_status: readonly ["inprogress", "completed", "stopped", "expired"];
|
|
3295
|
+
readonly enum_chat_colors: readonly ["#B4876E", "#A5B337", "#06CF9C", "#25D366", "#02A698", "#7D9EF1", "#007BFC", "#5E47DE", "#7F66FF", "#9333EA", "#FA6533", "#C4532D", "#DC2626", "#FF2E74", "#DB2777"];
|
|
3296
|
+
readonly enum_chat_tickets_status: readonly ["open", "inprogress", "closed", "archived"];
|
|
3297
|
+
readonly enum_credit_transaction_type: readonly ["credit", "debit"];
|
|
3298
|
+
readonly enum_integration_name: readonly ["org.created", "org.updated", "org.member.created", "org.member.updated", "org.phone.created", "org.phone.connected", "org.phone.disconnected", "org.subscription.trial_will_end", "chat.created", "chat.updated", "chat.notification.created", "message.created", "message.updated", "message.deleted", "message.ack.updated", "reaction.created", "reaction.updated", "ticket.created", "ticket.updated", "ticket.deleted", "org.integrations.updated", "message.flagged", "message.unflagged", "chat.label.updated", "reaction.added", "message.ticket.attached", "org.phone.qr"];
|
|
3299
|
+
readonly enum_integration_type: readonly ["zapier", "pabbly", "api", "webhook", "hubspot", "freshdesk", "slack", "jira", "salesforce", "zohodesk", "gsheets"];
|
|
3300
|
+
readonly enum_member_role: readonly ["admin", "member"];
|
|
3301
|
+
};
|
|
3302
|
+
};
|
|
3303
|
+
readonly storage: {
|
|
3304
|
+
readonly Enums: {};
|
|
3305
|
+
};
|
|
3306
|
+
};
|
|
3183
3307
|
export {};
|
|
3184
3308
|
//# sourceMappingURL=supabase.types.d.ts.map
|