@periskope/types 0.6.254 → 0.6.255
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 +68 -181
- package/dist/supabase.types.d.ts.map +1 -1
- package/dist/supabase.types.js +0 -76
- package/dist/types.d.ts +16 -2
- package/dist/types.d.ts.map +1 -1
- package/mod_json_type.ps1 +108 -108
- package/mod_json_type.sh +22 -22
- package/package.json +19 -19
- package/src/index.ts +4 -4
- package/src/object.types.ts +100 -100
- package/src/rules.types.ts +2109 -2109
- package/src/supabase.types.ts +3238 -3360
- package/src/types.ts +1229 -1210
- package/tsconfig.json +18 -18
- package/tsconfig.tsbuildinfo +1 -0
- package/update_package.ps1 +21 -21
package/dist/supabase.types.d.ts
CHANGED
|
@@ -2,6 +2,31 @@ 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
|
+
};
|
|
5
30
|
internal: {
|
|
6
31
|
Tables: {
|
|
7
32
|
config: {
|
|
@@ -259,6 +284,20 @@ export type Database = {
|
|
|
259
284
|
trigger?: string;
|
|
260
285
|
};
|
|
261
286
|
Relationships: [
|
|
287
|
+
{
|
|
288
|
+
foreignKeyName: "public_tbl_automation_rules_org_id_fkey";
|
|
289
|
+
columns: ["org_id"];
|
|
290
|
+
isOneToOne: false;
|
|
291
|
+
referencedRelation: "tbl_org";
|
|
292
|
+
referencedColumns: ["org_id"];
|
|
293
|
+
},
|
|
294
|
+
{
|
|
295
|
+
foreignKeyName: "public_tbl_automation_rules_org_id_fkey";
|
|
296
|
+
columns: ["org_id"];
|
|
297
|
+
isOneToOne: false;
|
|
298
|
+
referencedRelation: "view_org";
|
|
299
|
+
referencedColumns: ["org_id"];
|
|
300
|
+
},
|
|
262
301
|
{
|
|
263
302
|
foreignKeyName: "tbl_automation_rules_org_id_fkey";
|
|
264
303
|
columns: ["org_id"];
|
|
@@ -751,7 +790,6 @@ export type Database = {
|
|
|
751
790
|
body: string | null;
|
|
752
791
|
chat_id: string | null;
|
|
753
792
|
id: Json | null;
|
|
754
|
-
metadata: Json | null;
|
|
755
793
|
notification_id: string;
|
|
756
794
|
org_id: string;
|
|
757
795
|
org_phone: string;
|
|
@@ -765,7 +803,6 @@ export type Database = {
|
|
|
765
803
|
body?: string | null;
|
|
766
804
|
chat_id?: string | null;
|
|
767
805
|
id?: Json | null;
|
|
768
|
-
metadata?: Json | null;
|
|
769
806
|
notification_id: string;
|
|
770
807
|
org_id: string;
|
|
771
808
|
org_phone: string;
|
|
@@ -779,7 +816,6 @@ export type Database = {
|
|
|
779
816
|
body?: string | null;
|
|
780
817
|
chat_id?: string | null;
|
|
781
818
|
id?: Json | null;
|
|
782
|
-
metadata?: Json | null;
|
|
783
819
|
notification_id?: string;
|
|
784
820
|
org_id?: string;
|
|
785
821
|
org_phone?: string;
|
|
@@ -1641,6 +1677,13 @@ export type Database = {
|
|
|
1641
1677
|
user_id?: string | null;
|
|
1642
1678
|
};
|
|
1643
1679
|
Relationships: [
|
|
1680
|
+
{
|
|
1681
|
+
foreignKeyName: "tbl_org_members_fkey_auth_users";
|
|
1682
|
+
columns: ["user_id"];
|
|
1683
|
+
isOneToOne: false;
|
|
1684
|
+
referencedRelation: "users";
|
|
1685
|
+
referencedColumns: ["id"];
|
|
1686
|
+
},
|
|
1644
1687
|
{
|
|
1645
1688
|
foreignKeyName: "tbl_org_members_fkey_tbl_org";
|
|
1646
1689
|
columns: ["org_id"];
|
|
@@ -1675,7 +1718,6 @@ export type Database = {
|
|
|
1675
1718
|
queue_status: Json | null;
|
|
1676
1719
|
server_image: string | null;
|
|
1677
1720
|
server_ip: string | null;
|
|
1678
|
-
server_name: string | null;
|
|
1679
1721
|
server_zone: string | null;
|
|
1680
1722
|
updated_at: string | null;
|
|
1681
1723
|
wa_state: string | null;
|
|
@@ -1698,7 +1740,6 @@ export type Database = {
|
|
|
1698
1740
|
queue_status?: Json | null;
|
|
1699
1741
|
server_image?: string | null;
|
|
1700
1742
|
server_ip?: string | null;
|
|
1701
|
-
server_name?: string | null;
|
|
1702
1743
|
server_zone?: string | null;
|
|
1703
1744
|
updated_at?: string | null;
|
|
1704
1745
|
wa_state?: string | null;
|
|
@@ -1721,7 +1762,6 @@ export type Database = {
|
|
|
1721
1762
|
queue_status?: Json | null;
|
|
1722
1763
|
server_image?: string | null;
|
|
1723
1764
|
server_ip?: string | null;
|
|
1724
|
-
server_name?: string | null;
|
|
1725
1765
|
server_zone?: string | null;
|
|
1726
1766
|
updated_at?: string | null;
|
|
1727
1767
|
wa_state?: string | null;
|
|
@@ -2207,15 +2247,14 @@ export type Database = {
|
|
|
2207
2247
|
org_name: string | null;
|
|
2208
2248
|
org_plan: Json | null;
|
|
2209
2249
|
pending_days: number | null;
|
|
2210
|
-
phone_limit:
|
|
2250
|
+
phone_limit: string | null;
|
|
2211
2251
|
plan_id: string | null;
|
|
2212
|
-
server_zone: string | null;
|
|
2213
2252
|
stripe_customer_details: Json | null;
|
|
2214
2253
|
stripe_customer_id: string | null;
|
|
2215
2254
|
stripe_subscription_details: Json | null;
|
|
2216
2255
|
subscription_status: string | null;
|
|
2217
2256
|
support_link: string | null;
|
|
2218
|
-
user_limit:
|
|
2257
|
+
user_limit: string | null;
|
|
2219
2258
|
};
|
|
2220
2259
|
Insert: {
|
|
2221
2260
|
access_scopes?: never;
|
|
@@ -2234,7 +2273,6 @@ export type Database = {
|
|
|
2234
2273
|
pending_days?: never;
|
|
2235
2274
|
phone_limit?: never;
|
|
2236
2275
|
plan_id?: never;
|
|
2237
|
-
server_zone?: string | null;
|
|
2238
2276
|
stripe_customer_details?: Json | null;
|
|
2239
2277
|
stripe_customer_id?: string | null;
|
|
2240
2278
|
stripe_subscription_details?: Json | null;
|
|
@@ -2259,7 +2297,6 @@ export type Database = {
|
|
|
2259
2297
|
pending_days?: never;
|
|
2260
2298
|
phone_limit?: never;
|
|
2261
2299
|
plan_id?: never;
|
|
2262
|
-
server_zone?: string | null;
|
|
2263
2300
|
stripe_customer_details?: Json | null;
|
|
2264
2301
|
stripe_customer_id?: string | null;
|
|
2265
2302
|
stripe_subscription_details?: Json | null;
|
|
@@ -2805,7 +2842,6 @@ export type Database = {
|
|
|
2805
2842
|
created_at: string | null;
|
|
2806
2843
|
id: string;
|
|
2807
2844
|
last_accessed_at: string | null;
|
|
2808
|
-
level: number | null;
|
|
2809
2845
|
metadata: Json | null;
|
|
2810
2846
|
name: string | null;
|
|
2811
2847
|
owner: string | null;
|
|
@@ -2820,7 +2856,6 @@ export type Database = {
|
|
|
2820
2856
|
created_at?: string | null;
|
|
2821
2857
|
id?: string;
|
|
2822
2858
|
last_accessed_at?: string | null;
|
|
2823
|
-
level?: number | null;
|
|
2824
2859
|
metadata?: Json | null;
|
|
2825
2860
|
name?: string | null;
|
|
2826
2861
|
owner?: string | null;
|
|
@@ -2835,7 +2870,6 @@ export type Database = {
|
|
|
2835
2870
|
created_at?: string | null;
|
|
2836
2871
|
id?: string;
|
|
2837
2872
|
last_accessed_at?: string | null;
|
|
2838
|
-
level?: number | null;
|
|
2839
2873
|
metadata?: Json | null;
|
|
2840
2874
|
name?: string | null;
|
|
2841
2875
|
owner?: string | null;
|
|
@@ -2855,38 +2889,6 @@ export type Database = {
|
|
|
2855
2889
|
}
|
|
2856
2890
|
];
|
|
2857
2891
|
};
|
|
2858
|
-
prefixes: {
|
|
2859
|
-
Row: {
|
|
2860
|
-
bucket_id: string;
|
|
2861
|
-
created_at: string | null;
|
|
2862
|
-
level: number;
|
|
2863
|
-
name: string;
|
|
2864
|
-
updated_at: string | null;
|
|
2865
|
-
};
|
|
2866
|
-
Insert: {
|
|
2867
|
-
bucket_id: string;
|
|
2868
|
-
created_at?: string | null;
|
|
2869
|
-
level?: number;
|
|
2870
|
-
name: string;
|
|
2871
|
-
updated_at?: string | null;
|
|
2872
|
-
};
|
|
2873
|
-
Update: {
|
|
2874
|
-
bucket_id?: string;
|
|
2875
|
-
created_at?: string | null;
|
|
2876
|
-
level?: number;
|
|
2877
|
-
name?: string;
|
|
2878
|
-
updated_at?: string | null;
|
|
2879
|
-
};
|
|
2880
|
-
Relationships: [
|
|
2881
|
-
{
|
|
2882
|
-
foreignKeyName: "prefixes_bucketId_fkey";
|
|
2883
|
-
columns: ["bucket_id"];
|
|
2884
|
-
isOneToOne: false;
|
|
2885
|
-
referencedRelation: "buckets";
|
|
2886
|
-
referencedColumns: ["id"];
|
|
2887
|
-
}
|
|
2888
|
-
];
|
|
2889
|
-
};
|
|
2890
2892
|
s3_multipart_uploads: {
|
|
2891
2893
|
Row: {
|
|
2892
2894
|
bucket_id: string;
|
|
@@ -2990,13 +2992,6 @@ export type Database = {
|
|
|
2990
2992
|
[_ in never]: never;
|
|
2991
2993
|
};
|
|
2992
2994
|
Functions: {
|
|
2993
|
-
add_prefixes: {
|
|
2994
|
-
Args: {
|
|
2995
|
-
_bucket_id: string;
|
|
2996
|
-
_name: string;
|
|
2997
|
-
};
|
|
2998
|
-
Returns: undefined;
|
|
2999
|
-
};
|
|
3000
2995
|
can_insert_object: {
|
|
3001
2996
|
Args: {
|
|
3002
2997
|
bucketid: string;
|
|
@@ -3006,13 +3001,6 @@ export type Database = {
|
|
|
3006
3001
|
};
|
|
3007
3002
|
Returns: undefined;
|
|
3008
3003
|
};
|
|
3009
|
-
delete_prefix: {
|
|
3010
|
-
Args: {
|
|
3011
|
-
_bucket_id: string;
|
|
3012
|
-
_name: string;
|
|
3013
|
-
};
|
|
3014
|
-
Returns: boolean;
|
|
3015
|
-
};
|
|
3016
3004
|
extension: {
|
|
3017
3005
|
Args: {
|
|
3018
3006
|
name: string;
|
|
@@ -3031,24 +3019,6 @@ export type Database = {
|
|
|
3031
3019
|
};
|
|
3032
3020
|
Returns: string[];
|
|
3033
3021
|
};
|
|
3034
|
-
get_level: {
|
|
3035
|
-
Args: {
|
|
3036
|
-
name: string;
|
|
3037
|
-
};
|
|
3038
|
-
Returns: number;
|
|
3039
|
-
};
|
|
3040
|
-
get_prefix: {
|
|
3041
|
-
Args: {
|
|
3042
|
-
name: string;
|
|
3043
|
-
};
|
|
3044
|
-
Returns: string;
|
|
3045
|
-
};
|
|
3046
|
-
get_prefixes: {
|
|
3047
|
-
Args: {
|
|
3048
|
-
name: string;
|
|
3049
|
-
};
|
|
3050
|
-
Returns: string[];
|
|
3051
|
-
};
|
|
3052
3022
|
get_size_by_bucket: {
|
|
3053
3023
|
Args: Record<PropertyKey, never>;
|
|
3054
3024
|
Returns: {
|
|
@@ -3111,63 +3081,6 @@ export type Database = {
|
|
|
3111
3081
|
metadata: Json;
|
|
3112
3082
|
}[];
|
|
3113
3083
|
};
|
|
3114
|
-
search_legacy_v1: {
|
|
3115
|
-
Args: {
|
|
3116
|
-
prefix: string;
|
|
3117
|
-
bucketname: string;
|
|
3118
|
-
limits?: number;
|
|
3119
|
-
levels?: number;
|
|
3120
|
-
offsets?: number;
|
|
3121
|
-
search?: string;
|
|
3122
|
-
sortcolumn?: string;
|
|
3123
|
-
sortorder?: string;
|
|
3124
|
-
};
|
|
3125
|
-
Returns: {
|
|
3126
|
-
name: string;
|
|
3127
|
-
id: string;
|
|
3128
|
-
updated_at: string;
|
|
3129
|
-
created_at: string;
|
|
3130
|
-
last_accessed_at: string;
|
|
3131
|
-
metadata: Json;
|
|
3132
|
-
}[];
|
|
3133
|
-
};
|
|
3134
|
-
search_v1_optimised: {
|
|
3135
|
-
Args: {
|
|
3136
|
-
prefix: string;
|
|
3137
|
-
bucketname: string;
|
|
3138
|
-
limits?: number;
|
|
3139
|
-
levels?: number;
|
|
3140
|
-
offsets?: number;
|
|
3141
|
-
search?: string;
|
|
3142
|
-
sortcolumn?: string;
|
|
3143
|
-
sortorder?: string;
|
|
3144
|
-
};
|
|
3145
|
-
Returns: {
|
|
3146
|
-
name: string;
|
|
3147
|
-
id: string;
|
|
3148
|
-
updated_at: string;
|
|
3149
|
-
created_at: string;
|
|
3150
|
-
last_accessed_at: string;
|
|
3151
|
-
metadata: Json;
|
|
3152
|
-
}[];
|
|
3153
|
-
};
|
|
3154
|
-
search_v2: {
|
|
3155
|
-
Args: {
|
|
3156
|
-
prefix: string;
|
|
3157
|
-
bucket_name: string;
|
|
3158
|
-
limits?: number;
|
|
3159
|
-
levels?: number;
|
|
3160
|
-
start_after?: string;
|
|
3161
|
-
};
|
|
3162
|
-
Returns: {
|
|
3163
|
-
key: string;
|
|
3164
|
-
name: string;
|
|
3165
|
-
id: string;
|
|
3166
|
-
updated_at: string;
|
|
3167
|
-
created_at: string;
|
|
3168
|
-
metadata: Json;
|
|
3169
|
-
}[];
|
|
3170
|
-
};
|
|
3171
3084
|
};
|
|
3172
3085
|
Enums: {
|
|
3173
3086
|
[_ in never]: never;
|
|
@@ -3177,72 +3090,46 @@ export type Database = {
|
|
|
3177
3090
|
};
|
|
3178
3091
|
};
|
|
3179
3092
|
};
|
|
3180
|
-
type
|
|
3181
|
-
export type Tables<
|
|
3093
|
+
type PublicSchema = Database[Extract<keyof Database, "public">];
|
|
3094
|
+
export type Tables<PublicTableNameOrOptions extends keyof (PublicSchema["Tables"] & PublicSchema["Views"]) | {
|
|
3182
3095
|
schema: keyof Database;
|
|
3183
|
-
}, TableName extends
|
|
3096
|
+
}, TableName extends PublicTableNameOrOptions extends {
|
|
3184
3097
|
schema: keyof Database;
|
|
3185
|
-
} ? keyof (Database[
|
|
3098
|
+
} ? keyof (Database[PublicTableNameOrOptions["schema"]]["Tables"] & Database[PublicTableNameOrOptions["schema"]]["Views"]) : never = never> = PublicTableNameOrOptions extends {
|
|
3186
3099
|
schema: keyof Database;
|
|
3187
|
-
} ? (Database[
|
|
3100
|
+
} ? (Database[PublicTableNameOrOptions["schema"]]["Tables"] & Database[PublicTableNameOrOptions["schema"]]["Views"])[TableName] extends {
|
|
3188
3101
|
Row: infer R;
|
|
3189
|
-
} ? R : never :
|
|
3102
|
+
} ? R : never : PublicTableNameOrOptions extends keyof (PublicSchema["Tables"] & PublicSchema["Views"]) ? (PublicSchema["Tables"] & PublicSchema["Views"])[PublicTableNameOrOptions] extends {
|
|
3190
3103
|
Row: infer R;
|
|
3191
3104
|
} ? R : never : never;
|
|
3192
|
-
export type TablesInsert<
|
|
3105
|
+
export type TablesInsert<PublicTableNameOrOptions extends keyof PublicSchema["Tables"] | {
|
|
3193
3106
|
schema: keyof Database;
|
|
3194
|
-
}, TableName extends
|
|
3107
|
+
}, TableName extends PublicTableNameOrOptions extends {
|
|
3195
3108
|
schema: keyof Database;
|
|
3196
|
-
} ? keyof Database[
|
|
3109
|
+
} ? keyof Database[PublicTableNameOrOptions["schema"]]["Tables"] : never = never> = PublicTableNameOrOptions extends {
|
|
3197
3110
|
schema: keyof Database;
|
|
3198
|
-
} ? Database[
|
|
3111
|
+
} ? Database[PublicTableNameOrOptions["schema"]]["Tables"][TableName] extends {
|
|
3199
3112
|
Insert: infer I;
|
|
3200
|
-
} ? I : never :
|
|
3113
|
+
} ? I : never : PublicTableNameOrOptions extends keyof PublicSchema["Tables"] ? PublicSchema["Tables"][PublicTableNameOrOptions] extends {
|
|
3201
3114
|
Insert: infer I;
|
|
3202
3115
|
} ? I : never : never;
|
|
3203
|
-
export type TablesUpdate<
|
|
3116
|
+
export type TablesUpdate<PublicTableNameOrOptions extends keyof PublicSchema["Tables"] | {
|
|
3204
3117
|
schema: keyof Database;
|
|
3205
|
-
}, TableName extends
|
|
3118
|
+
}, TableName extends PublicTableNameOrOptions extends {
|
|
3206
3119
|
schema: keyof Database;
|
|
3207
|
-
} ? keyof Database[
|
|
3120
|
+
} ? keyof Database[PublicTableNameOrOptions["schema"]]["Tables"] : never = never> = PublicTableNameOrOptions extends {
|
|
3208
3121
|
schema: keyof Database;
|
|
3209
|
-
} ? Database[
|
|
3122
|
+
} ? Database[PublicTableNameOrOptions["schema"]]["Tables"][TableName] extends {
|
|
3210
3123
|
Update: infer U;
|
|
3211
|
-
} ? U : never :
|
|
3124
|
+
} ? U : never : PublicTableNameOrOptions extends keyof PublicSchema["Tables"] ? PublicSchema["Tables"][PublicTableNameOrOptions] extends {
|
|
3212
3125
|
Update: infer U;
|
|
3213
3126
|
} ? U : never : never;
|
|
3214
|
-
export type Enums<
|
|
3215
|
-
schema: keyof Database;
|
|
3216
|
-
}, EnumName extends DefaultSchemaEnumNameOrOptions extends {
|
|
3217
|
-
schema: keyof Database;
|
|
3218
|
-
} ? keyof Database[DefaultSchemaEnumNameOrOptions["schema"]]["Enums"] : never = never> = DefaultSchemaEnumNameOrOptions extends {
|
|
3127
|
+
export type Enums<PublicEnumNameOrOptions extends keyof PublicSchema["Enums"] | {
|
|
3219
3128
|
schema: keyof Database;
|
|
3220
|
-
}
|
|
3221
|
-
export type CompositeTypes<PublicCompositeTypeNameOrOptions extends keyof DefaultSchema["CompositeTypes"] | {
|
|
3129
|
+
}, EnumName extends PublicEnumNameOrOptions extends {
|
|
3222
3130
|
schema: keyof Database;
|
|
3223
|
-
}
|
|
3131
|
+
} ? keyof Database[PublicEnumNameOrOptions["schema"]]["Enums"] : never = never> = PublicEnumNameOrOptions extends {
|
|
3224
3132
|
schema: keyof Database;
|
|
3225
|
-
} ?
|
|
3226
|
-
schema: keyof Database;
|
|
3227
|
-
} ? Database[PublicCompositeTypeNameOrOptions["schema"]]["CompositeTypes"][CompositeTypeName] : PublicCompositeTypeNameOrOptions extends keyof DefaultSchema["CompositeTypes"] ? DefaultSchema["CompositeTypes"][PublicCompositeTypeNameOrOptions] : never;
|
|
3228
|
-
export declare const Constants: {
|
|
3229
|
-
readonly internal: {
|
|
3230
|
-
readonly Enums: {};
|
|
3231
|
-
};
|
|
3232
|
-
readonly public: {
|
|
3233
|
-
readonly Enums: {
|
|
3234
|
-
readonly enum_broadcast_status: readonly ["inprogress", "completed", "stopped", "expired"];
|
|
3235
|
-
readonly enum_chat_colors: readonly ["#B4876E", "#A5B337", "#06CF9C", "#25D366", "#02A698", "#7D9EF1", "#007BFC", "#5E47DE", "#7F66FF", "#9333EA", "#FA6533", "#C4532D", "#DC2626", "#FF2E74", "#DB2777"];
|
|
3236
|
-
readonly enum_chat_tickets_status: readonly ["open", "inprogress", "closed", "archived"];
|
|
3237
|
-
readonly enum_credit_transaction_type: readonly ["credit", "debit"];
|
|
3238
|
-
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"];
|
|
3239
|
-
readonly enum_integration_type: readonly ["zapier", "pabbly", "api", "webhook", "hubspot", "freshdesk", "slack", "jira", "salesforce", "zohodesk", "gsheets"];
|
|
3240
|
-
readonly enum_member_role: readonly ["admin", "member"];
|
|
3241
|
-
};
|
|
3242
|
-
};
|
|
3243
|
-
readonly storage: {
|
|
3244
|
-
readonly Enums: {};
|
|
3245
|
-
};
|
|
3246
|
-
};
|
|
3133
|
+
} ? Database[PublicEnumNameOrOptions["schema"]]["Enums"][EnumName] : PublicEnumNameOrOptions extends keyof PublicSchema["Enums"] ? PublicSchema["Enums"][PublicEnumNameOrOptions] : never;
|
|
3247
3134
|
export {};
|
|
3248
3135
|
//# sourceMappingURL=supabase.types.d.ts.map
|