@periskope/types 0.6.250 → 0.6.251
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 +181 -68
- package/dist/supabase.types.d.ts.map +1 -1
- package/dist/supabase.types.js +76 -0
- 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 +282 -160
- package/src/types.ts +1208 -1208
- package/tsconfig.json +18 -18
- package/update_package.ps1 +21 -21
- package/tsconfig.tsbuildinfo +0 -1
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: {
|
|
@@ -284,20 +259,6 @@ export type Database = {
|
|
|
284
259
|
trigger?: string;
|
|
285
260
|
};
|
|
286
261
|
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
|
-
},
|
|
301
262
|
{
|
|
302
263
|
foreignKeyName: "tbl_automation_rules_org_id_fkey";
|
|
303
264
|
columns: ["org_id"];
|
|
@@ -790,6 +751,7 @@ export type Database = {
|
|
|
790
751
|
body: string | null;
|
|
791
752
|
chat_id: string | null;
|
|
792
753
|
id: Json | null;
|
|
754
|
+
metadata: Json | null;
|
|
793
755
|
notification_id: string;
|
|
794
756
|
org_id: string;
|
|
795
757
|
org_phone: string;
|
|
@@ -803,6 +765,7 @@ export type Database = {
|
|
|
803
765
|
body?: string | null;
|
|
804
766
|
chat_id?: string | null;
|
|
805
767
|
id?: Json | null;
|
|
768
|
+
metadata?: Json | null;
|
|
806
769
|
notification_id: string;
|
|
807
770
|
org_id: string;
|
|
808
771
|
org_phone: string;
|
|
@@ -816,6 +779,7 @@ export type Database = {
|
|
|
816
779
|
body?: string | null;
|
|
817
780
|
chat_id?: string | null;
|
|
818
781
|
id?: Json | null;
|
|
782
|
+
metadata?: Json | null;
|
|
819
783
|
notification_id?: string;
|
|
820
784
|
org_id?: string;
|
|
821
785
|
org_phone?: string;
|
|
@@ -1677,13 +1641,6 @@ export type Database = {
|
|
|
1677
1641
|
user_id?: string | null;
|
|
1678
1642
|
};
|
|
1679
1643
|
Relationships: [
|
|
1680
|
-
{
|
|
1681
|
-
foreignKeyName: "tbl_org_members_fkey_auth_users";
|
|
1682
|
-
columns: ["user_id"];
|
|
1683
|
-
isOneToOne: false;
|
|
1684
|
-
referencedRelation: "users";
|
|
1685
|
-
referencedColumns: ["id"];
|
|
1686
|
-
},
|
|
1687
1644
|
{
|
|
1688
1645
|
foreignKeyName: "tbl_org_members_fkey_tbl_org";
|
|
1689
1646
|
columns: ["org_id"];
|
|
@@ -1718,6 +1675,7 @@ export type Database = {
|
|
|
1718
1675
|
queue_status: Json | null;
|
|
1719
1676
|
server_image: string | null;
|
|
1720
1677
|
server_ip: string | null;
|
|
1678
|
+
server_name: string | null;
|
|
1721
1679
|
server_zone: string | null;
|
|
1722
1680
|
updated_at: string | null;
|
|
1723
1681
|
wa_state: string | null;
|
|
@@ -1740,6 +1698,7 @@ export type Database = {
|
|
|
1740
1698
|
queue_status?: Json | null;
|
|
1741
1699
|
server_image?: string | null;
|
|
1742
1700
|
server_ip?: string | null;
|
|
1701
|
+
server_name?: string | null;
|
|
1743
1702
|
server_zone?: string | null;
|
|
1744
1703
|
updated_at?: string | null;
|
|
1745
1704
|
wa_state?: string | null;
|
|
@@ -1762,6 +1721,7 @@ export type Database = {
|
|
|
1762
1721
|
queue_status?: Json | null;
|
|
1763
1722
|
server_image?: string | null;
|
|
1764
1723
|
server_ip?: string | null;
|
|
1724
|
+
server_name?: string | null;
|
|
1765
1725
|
server_zone?: string | null;
|
|
1766
1726
|
updated_at?: string | null;
|
|
1767
1727
|
wa_state?: string | null;
|
|
@@ -2247,14 +2207,15 @@ export type Database = {
|
|
|
2247
2207
|
org_name: string | null;
|
|
2248
2208
|
org_plan: Json | null;
|
|
2249
2209
|
pending_days: number | null;
|
|
2250
|
-
phone_limit:
|
|
2210
|
+
phone_limit: number | null;
|
|
2251
2211
|
plan_id: string | null;
|
|
2212
|
+
server_zone: string | null;
|
|
2252
2213
|
stripe_customer_details: Json | null;
|
|
2253
2214
|
stripe_customer_id: string | null;
|
|
2254
2215
|
stripe_subscription_details: Json | null;
|
|
2255
2216
|
subscription_status: string | null;
|
|
2256
2217
|
support_link: string | null;
|
|
2257
|
-
user_limit:
|
|
2218
|
+
user_limit: number | null;
|
|
2258
2219
|
};
|
|
2259
2220
|
Insert: {
|
|
2260
2221
|
access_scopes?: never;
|
|
@@ -2273,6 +2234,7 @@ export type Database = {
|
|
|
2273
2234
|
pending_days?: never;
|
|
2274
2235
|
phone_limit?: never;
|
|
2275
2236
|
plan_id?: never;
|
|
2237
|
+
server_zone?: string | null;
|
|
2276
2238
|
stripe_customer_details?: Json | null;
|
|
2277
2239
|
stripe_customer_id?: string | null;
|
|
2278
2240
|
stripe_subscription_details?: Json | null;
|
|
@@ -2297,6 +2259,7 @@ export type Database = {
|
|
|
2297
2259
|
pending_days?: never;
|
|
2298
2260
|
phone_limit?: never;
|
|
2299
2261
|
plan_id?: never;
|
|
2262
|
+
server_zone?: string | null;
|
|
2300
2263
|
stripe_customer_details?: Json | null;
|
|
2301
2264
|
stripe_customer_id?: string | null;
|
|
2302
2265
|
stripe_subscription_details?: Json | null;
|
|
@@ -2842,6 +2805,7 @@ export type Database = {
|
|
|
2842
2805
|
created_at: string | null;
|
|
2843
2806
|
id: string;
|
|
2844
2807
|
last_accessed_at: string | null;
|
|
2808
|
+
level: number | null;
|
|
2845
2809
|
metadata: Json | null;
|
|
2846
2810
|
name: string | null;
|
|
2847
2811
|
owner: string | null;
|
|
@@ -2856,6 +2820,7 @@ export type Database = {
|
|
|
2856
2820
|
created_at?: string | null;
|
|
2857
2821
|
id?: string;
|
|
2858
2822
|
last_accessed_at?: string | null;
|
|
2823
|
+
level?: number | null;
|
|
2859
2824
|
metadata?: Json | null;
|
|
2860
2825
|
name?: string | null;
|
|
2861
2826
|
owner?: string | null;
|
|
@@ -2870,6 +2835,7 @@ export type Database = {
|
|
|
2870
2835
|
created_at?: string | null;
|
|
2871
2836
|
id?: string;
|
|
2872
2837
|
last_accessed_at?: string | null;
|
|
2838
|
+
level?: number | null;
|
|
2873
2839
|
metadata?: Json | null;
|
|
2874
2840
|
name?: string | null;
|
|
2875
2841
|
owner?: string | null;
|
|
@@ -2889,6 +2855,38 @@ export type Database = {
|
|
|
2889
2855
|
}
|
|
2890
2856
|
];
|
|
2891
2857
|
};
|
|
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
|
+
};
|
|
2892
2890
|
s3_multipart_uploads: {
|
|
2893
2891
|
Row: {
|
|
2894
2892
|
bucket_id: string;
|
|
@@ -2992,6 +2990,13 @@ export type Database = {
|
|
|
2992
2990
|
[_ in never]: never;
|
|
2993
2991
|
};
|
|
2994
2992
|
Functions: {
|
|
2993
|
+
add_prefixes: {
|
|
2994
|
+
Args: {
|
|
2995
|
+
_bucket_id: string;
|
|
2996
|
+
_name: string;
|
|
2997
|
+
};
|
|
2998
|
+
Returns: undefined;
|
|
2999
|
+
};
|
|
2995
3000
|
can_insert_object: {
|
|
2996
3001
|
Args: {
|
|
2997
3002
|
bucketid: string;
|
|
@@ -3001,6 +3006,13 @@ export type Database = {
|
|
|
3001
3006
|
};
|
|
3002
3007
|
Returns: undefined;
|
|
3003
3008
|
};
|
|
3009
|
+
delete_prefix: {
|
|
3010
|
+
Args: {
|
|
3011
|
+
_bucket_id: string;
|
|
3012
|
+
_name: string;
|
|
3013
|
+
};
|
|
3014
|
+
Returns: boolean;
|
|
3015
|
+
};
|
|
3004
3016
|
extension: {
|
|
3005
3017
|
Args: {
|
|
3006
3018
|
name: string;
|
|
@@ -3019,6 +3031,24 @@ export type Database = {
|
|
|
3019
3031
|
};
|
|
3020
3032
|
Returns: string[];
|
|
3021
3033
|
};
|
|
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
|
+
};
|
|
3022
3052
|
get_size_by_bucket: {
|
|
3023
3053
|
Args: Record<PropertyKey, never>;
|
|
3024
3054
|
Returns: {
|
|
@@ -3081,6 +3111,63 @@ export type Database = {
|
|
|
3081
3111
|
metadata: Json;
|
|
3082
3112
|
}[];
|
|
3083
3113
|
};
|
|
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
|
+
};
|
|
3084
3171
|
};
|
|
3085
3172
|
Enums: {
|
|
3086
3173
|
[_ in never]: never;
|
|
@@ -3090,46 +3177,72 @@ export type Database = {
|
|
|
3090
3177
|
};
|
|
3091
3178
|
};
|
|
3092
3179
|
};
|
|
3093
|
-
type
|
|
3094
|
-
export type Tables<
|
|
3180
|
+
type DefaultSchema = Database[Extract<keyof Database, "public">];
|
|
3181
|
+
export type Tables<DefaultSchemaTableNameOrOptions extends keyof (DefaultSchema["Tables"] & DefaultSchema["Views"]) | {
|
|
3095
3182
|
schema: keyof Database;
|
|
3096
|
-
}, TableName extends
|
|
3183
|
+
}, TableName extends DefaultSchemaTableNameOrOptions extends {
|
|
3097
3184
|
schema: keyof Database;
|
|
3098
|
-
} ? keyof (Database[
|
|
3185
|
+
} ? keyof (Database[DefaultSchemaTableNameOrOptions["schema"]]["Tables"] & Database[DefaultSchemaTableNameOrOptions["schema"]]["Views"]) : never = never> = DefaultSchemaTableNameOrOptions extends {
|
|
3099
3186
|
schema: keyof Database;
|
|
3100
|
-
} ? (Database[
|
|
3187
|
+
} ? (Database[DefaultSchemaTableNameOrOptions["schema"]]["Tables"] & Database[DefaultSchemaTableNameOrOptions["schema"]]["Views"])[TableName] extends {
|
|
3101
3188
|
Row: infer R;
|
|
3102
|
-
} ? R : never :
|
|
3189
|
+
} ? R : never : DefaultSchemaTableNameOrOptions extends keyof (DefaultSchema["Tables"] & DefaultSchema["Views"]) ? (DefaultSchema["Tables"] & DefaultSchema["Views"])[DefaultSchemaTableNameOrOptions] extends {
|
|
3103
3190
|
Row: infer R;
|
|
3104
3191
|
} ? R : never : never;
|
|
3105
|
-
export type TablesInsert<
|
|
3192
|
+
export type TablesInsert<DefaultSchemaTableNameOrOptions extends keyof DefaultSchema["Tables"] | {
|
|
3106
3193
|
schema: keyof Database;
|
|
3107
|
-
}, TableName extends
|
|
3194
|
+
}, TableName extends DefaultSchemaTableNameOrOptions extends {
|
|
3108
3195
|
schema: keyof Database;
|
|
3109
|
-
} ? keyof Database[
|
|
3196
|
+
} ? keyof Database[DefaultSchemaTableNameOrOptions["schema"]]["Tables"] : never = never> = DefaultSchemaTableNameOrOptions extends {
|
|
3110
3197
|
schema: keyof Database;
|
|
3111
|
-
} ? Database[
|
|
3198
|
+
} ? Database[DefaultSchemaTableNameOrOptions["schema"]]["Tables"][TableName] extends {
|
|
3112
3199
|
Insert: infer I;
|
|
3113
|
-
} ? I : never :
|
|
3200
|
+
} ? I : never : DefaultSchemaTableNameOrOptions extends keyof DefaultSchema["Tables"] ? DefaultSchema["Tables"][DefaultSchemaTableNameOrOptions] extends {
|
|
3114
3201
|
Insert: infer I;
|
|
3115
3202
|
} ? I : never : never;
|
|
3116
|
-
export type TablesUpdate<
|
|
3203
|
+
export type TablesUpdate<DefaultSchemaTableNameOrOptions extends keyof DefaultSchema["Tables"] | {
|
|
3117
3204
|
schema: keyof Database;
|
|
3118
|
-
}, TableName extends
|
|
3205
|
+
}, TableName extends DefaultSchemaTableNameOrOptions extends {
|
|
3119
3206
|
schema: keyof Database;
|
|
3120
|
-
} ? keyof Database[
|
|
3207
|
+
} ? keyof Database[DefaultSchemaTableNameOrOptions["schema"]]["Tables"] : never = never> = DefaultSchemaTableNameOrOptions extends {
|
|
3121
3208
|
schema: keyof Database;
|
|
3122
|
-
} ? Database[
|
|
3209
|
+
} ? Database[DefaultSchemaTableNameOrOptions["schema"]]["Tables"][TableName] extends {
|
|
3123
3210
|
Update: infer U;
|
|
3124
|
-
} ? U : never :
|
|
3211
|
+
} ? U : never : DefaultSchemaTableNameOrOptions extends keyof DefaultSchema["Tables"] ? DefaultSchema["Tables"][DefaultSchemaTableNameOrOptions] extends {
|
|
3125
3212
|
Update: infer U;
|
|
3126
3213
|
} ? U : never : never;
|
|
3127
|
-
export type Enums<
|
|
3214
|
+
export type Enums<DefaultSchemaEnumNameOrOptions extends keyof DefaultSchema["Enums"] | {
|
|
3215
|
+
schema: keyof Database;
|
|
3216
|
+
}, EnumName extends DefaultSchemaEnumNameOrOptions extends {
|
|
3217
|
+
schema: keyof Database;
|
|
3218
|
+
} ? keyof Database[DefaultSchemaEnumNameOrOptions["schema"]]["Enums"] : never = never> = DefaultSchemaEnumNameOrOptions extends {
|
|
3128
3219
|
schema: keyof Database;
|
|
3129
|
-
}
|
|
3220
|
+
} ? Database[DefaultSchemaEnumNameOrOptions["schema"]]["Enums"][EnumName] : DefaultSchemaEnumNameOrOptions extends keyof DefaultSchema["Enums"] ? DefaultSchema["Enums"][DefaultSchemaEnumNameOrOptions] : never;
|
|
3221
|
+
export type CompositeTypes<PublicCompositeTypeNameOrOptions extends keyof DefaultSchema["CompositeTypes"] | {
|
|
3130
3222
|
schema: keyof Database;
|
|
3131
|
-
}
|
|
3223
|
+
}, CompositeTypeName extends PublicCompositeTypeNameOrOptions extends {
|
|
3132
3224
|
schema: keyof Database;
|
|
3133
|
-
} ? Database[
|
|
3225
|
+
} ? keyof Database[PublicCompositeTypeNameOrOptions["schema"]]["CompositeTypes"] : never = never> = PublicCompositeTypeNameOrOptions extends {
|
|
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
|
+
};
|
|
3134
3247
|
export {};
|
|
3135
3248
|
//# sourceMappingURL=supabase.types.d.ts.map
|