@periskope/types 0.6.337 → 0.6.339
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 +154 -3
- package/dist/supabase.types.d.ts.map +1 -1
- package/dist/supabase.types.js +1 -1
- package/package.json +1 -1
- package/src/supabase.types.ts +3665 -3665
- package/tsconfig.tsbuildinfo +1 -1
package/dist/supabase.types.d.ts
CHANGED
|
@@ -1544,7 +1544,7 @@ export type Database = {
|
|
|
1544
1544
|
Row: {
|
|
1545
1545
|
created_at: string;
|
|
1546
1546
|
id: string;
|
|
1547
|
-
integration_name:
|
|
1547
|
+
integration_name: string;
|
|
1548
1548
|
integration_type: string;
|
|
1549
1549
|
metadata: Json;
|
|
1550
1550
|
org_id: string;
|
|
@@ -1555,7 +1555,7 @@ export type Database = {
|
|
|
1555
1555
|
Insert: {
|
|
1556
1556
|
created_at?: string;
|
|
1557
1557
|
id?: string;
|
|
1558
|
-
integration_name:
|
|
1558
|
+
integration_name: string;
|
|
1559
1559
|
integration_type: string;
|
|
1560
1560
|
metadata?: Json;
|
|
1561
1561
|
org_id: string;
|
|
@@ -1566,7 +1566,7 @@ export type Database = {
|
|
|
1566
1566
|
Update: {
|
|
1567
1567
|
created_at?: string;
|
|
1568
1568
|
id?: string;
|
|
1569
|
-
integration_name?:
|
|
1569
|
+
integration_name?: string;
|
|
1570
1570
|
integration_type?: string;
|
|
1571
1571
|
metadata?: Json;
|
|
1572
1572
|
org_id?: string;
|
|
@@ -2749,6 +2749,33 @@ export type Database = {
|
|
|
2749
2749
|
};
|
|
2750
2750
|
Returns: Json;
|
|
2751
2751
|
};
|
|
2752
|
+
get_communities: {
|
|
2753
|
+
Args: {
|
|
2754
|
+
org_id_input: string;
|
|
2755
|
+
community_id_input?: string[];
|
|
2756
|
+
with_members?: boolean;
|
|
2757
|
+
last_updated_at?: string;
|
|
2758
|
+
batch_limit?: number;
|
|
2759
|
+
batch_offset?: number;
|
|
2760
|
+
};
|
|
2761
|
+
Returns: Json;
|
|
2762
|
+
};
|
|
2763
|
+
get_community_groups: {
|
|
2764
|
+
Args: {
|
|
2765
|
+
community_id_input: string;
|
|
2766
|
+
org_id_input: string;
|
|
2767
|
+
org_phone_input: string;
|
|
2768
|
+
};
|
|
2769
|
+
Returns: Json;
|
|
2770
|
+
};
|
|
2771
|
+
get_community_members: {
|
|
2772
|
+
Args: {
|
|
2773
|
+
community_id_input: string;
|
|
2774
|
+
org_id_input: string;
|
|
2775
|
+
org_phone_input: string;
|
|
2776
|
+
};
|
|
2777
|
+
Returns: Json;
|
|
2778
|
+
};
|
|
2752
2779
|
get_contacts: {
|
|
2753
2780
|
Args: {
|
|
2754
2781
|
org_id_input: string;
|
|
@@ -3212,6 +3239,7 @@ export type Database = {
|
|
|
3212
3239
|
created_at: string | null;
|
|
3213
3240
|
id: string;
|
|
3214
3241
|
last_accessed_at: string | null;
|
|
3242
|
+
level: number | null;
|
|
3215
3243
|
metadata: Json | null;
|
|
3216
3244
|
name: string | null;
|
|
3217
3245
|
owner: string | null;
|
|
@@ -3226,6 +3254,7 @@ export type Database = {
|
|
|
3226
3254
|
created_at?: string | null;
|
|
3227
3255
|
id?: string;
|
|
3228
3256
|
last_accessed_at?: string | null;
|
|
3257
|
+
level?: number | null;
|
|
3229
3258
|
metadata?: Json | null;
|
|
3230
3259
|
name?: string | null;
|
|
3231
3260
|
owner?: string | null;
|
|
@@ -3240,6 +3269,7 @@ export type Database = {
|
|
|
3240
3269
|
created_at?: string | null;
|
|
3241
3270
|
id?: string;
|
|
3242
3271
|
last_accessed_at?: string | null;
|
|
3272
|
+
level?: number | null;
|
|
3243
3273
|
metadata?: Json | null;
|
|
3244
3274
|
name?: string | null;
|
|
3245
3275
|
owner?: string | null;
|
|
@@ -3259,6 +3289,38 @@ export type Database = {
|
|
|
3259
3289
|
}
|
|
3260
3290
|
];
|
|
3261
3291
|
};
|
|
3292
|
+
prefixes: {
|
|
3293
|
+
Row: {
|
|
3294
|
+
bucket_id: string;
|
|
3295
|
+
created_at: string | null;
|
|
3296
|
+
level: number;
|
|
3297
|
+
name: string;
|
|
3298
|
+
updated_at: string | null;
|
|
3299
|
+
};
|
|
3300
|
+
Insert: {
|
|
3301
|
+
bucket_id: string;
|
|
3302
|
+
created_at?: string | null;
|
|
3303
|
+
level?: number;
|
|
3304
|
+
name: string;
|
|
3305
|
+
updated_at?: string | null;
|
|
3306
|
+
};
|
|
3307
|
+
Update: {
|
|
3308
|
+
bucket_id?: string;
|
|
3309
|
+
created_at?: string | null;
|
|
3310
|
+
level?: number;
|
|
3311
|
+
name?: string;
|
|
3312
|
+
updated_at?: string | null;
|
|
3313
|
+
};
|
|
3314
|
+
Relationships: [
|
|
3315
|
+
{
|
|
3316
|
+
foreignKeyName: "prefixes_bucketId_fkey";
|
|
3317
|
+
columns: ["bucket_id"];
|
|
3318
|
+
isOneToOne: false;
|
|
3319
|
+
referencedRelation: "buckets";
|
|
3320
|
+
referencedColumns: ["id"];
|
|
3321
|
+
}
|
|
3322
|
+
];
|
|
3323
|
+
};
|
|
3262
3324
|
s3_multipart_uploads: {
|
|
3263
3325
|
Row: {
|
|
3264
3326
|
bucket_id: string;
|
|
@@ -3362,6 +3424,13 @@ export type Database = {
|
|
|
3362
3424
|
[_ in never]: never;
|
|
3363
3425
|
};
|
|
3364
3426
|
Functions: {
|
|
3427
|
+
add_prefixes: {
|
|
3428
|
+
Args: {
|
|
3429
|
+
_bucket_id: string;
|
|
3430
|
+
_name: string;
|
|
3431
|
+
};
|
|
3432
|
+
Returns: undefined;
|
|
3433
|
+
};
|
|
3365
3434
|
can_insert_object: {
|
|
3366
3435
|
Args: {
|
|
3367
3436
|
bucketid: string;
|
|
@@ -3371,6 +3440,13 @@ export type Database = {
|
|
|
3371
3440
|
};
|
|
3372
3441
|
Returns: undefined;
|
|
3373
3442
|
};
|
|
3443
|
+
delete_prefix: {
|
|
3444
|
+
Args: {
|
|
3445
|
+
_bucket_id: string;
|
|
3446
|
+
_name: string;
|
|
3447
|
+
};
|
|
3448
|
+
Returns: boolean;
|
|
3449
|
+
};
|
|
3374
3450
|
extension: {
|
|
3375
3451
|
Args: {
|
|
3376
3452
|
name: string;
|
|
@@ -3389,6 +3465,24 @@ export type Database = {
|
|
|
3389
3465
|
};
|
|
3390
3466
|
Returns: string[];
|
|
3391
3467
|
};
|
|
3468
|
+
get_level: {
|
|
3469
|
+
Args: {
|
|
3470
|
+
name: string;
|
|
3471
|
+
};
|
|
3472
|
+
Returns: number;
|
|
3473
|
+
};
|
|
3474
|
+
get_prefix: {
|
|
3475
|
+
Args: {
|
|
3476
|
+
name: string;
|
|
3477
|
+
};
|
|
3478
|
+
Returns: string;
|
|
3479
|
+
};
|
|
3480
|
+
get_prefixes: {
|
|
3481
|
+
Args: {
|
|
3482
|
+
name: string;
|
|
3483
|
+
};
|
|
3484
|
+
Returns: string[];
|
|
3485
|
+
};
|
|
3392
3486
|
get_size_by_bucket: {
|
|
3393
3487
|
Args: Record<PropertyKey, never>;
|
|
3394
3488
|
Returns: {
|
|
@@ -3451,6 +3545,63 @@ export type Database = {
|
|
|
3451
3545
|
metadata: Json;
|
|
3452
3546
|
}[];
|
|
3453
3547
|
};
|
|
3548
|
+
search_legacy_v1: {
|
|
3549
|
+
Args: {
|
|
3550
|
+
prefix: string;
|
|
3551
|
+
bucketname: string;
|
|
3552
|
+
limits?: number;
|
|
3553
|
+
levels?: number;
|
|
3554
|
+
offsets?: number;
|
|
3555
|
+
search?: string;
|
|
3556
|
+
sortcolumn?: string;
|
|
3557
|
+
sortorder?: string;
|
|
3558
|
+
};
|
|
3559
|
+
Returns: {
|
|
3560
|
+
name: string;
|
|
3561
|
+
id: string;
|
|
3562
|
+
updated_at: string;
|
|
3563
|
+
created_at: string;
|
|
3564
|
+
last_accessed_at: string;
|
|
3565
|
+
metadata: Json;
|
|
3566
|
+
}[];
|
|
3567
|
+
};
|
|
3568
|
+
search_v1_optimised: {
|
|
3569
|
+
Args: {
|
|
3570
|
+
prefix: string;
|
|
3571
|
+
bucketname: string;
|
|
3572
|
+
limits?: number;
|
|
3573
|
+
levels?: number;
|
|
3574
|
+
offsets?: number;
|
|
3575
|
+
search?: string;
|
|
3576
|
+
sortcolumn?: string;
|
|
3577
|
+
sortorder?: string;
|
|
3578
|
+
};
|
|
3579
|
+
Returns: {
|
|
3580
|
+
name: string;
|
|
3581
|
+
id: string;
|
|
3582
|
+
updated_at: string;
|
|
3583
|
+
created_at: string;
|
|
3584
|
+
last_accessed_at: string;
|
|
3585
|
+
metadata: Json;
|
|
3586
|
+
}[];
|
|
3587
|
+
};
|
|
3588
|
+
search_v2: {
|
|
3589
|
+
Args: {
|
|
3590
|
+
prefix: string;
|
|
3591
|
+
bucket_name: string;
|
|
3592
|
+
limits?: number;
|
|
3593
|
+
levels?: number;
|
|
3594
|
+
start_after?: string;
|
|
3595
|
+
};
|
|
3596
|
+
Returns: {
|
|
3597
|
+
key: string;
|
|
3598
|
+
name: string;
|
|
3599
|
+
id: string;
|
|
3600
|
+
updated_at: string;
|
|
3601
|
+
created_at: string;
|
|
3602
|
+
metadata: Json;
|
|
3603
|
+
}[];
|
|
3604
|
+
};
|
|
3454
3605
|
};
|
|
3455
3606
|
Enums: {
|
|
3456
3607
|
[_ in never]: never;
|