@periskope/types 0.6.166 → 0.6.167
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/rules.types.js +6 -4
- package/dist/supabase.types.d.ts +10 -25
- package/index.ts +3 -3
- package/package.json +1 -2
- package/rules.types.ts +1601 -1599
- package/supabase.types.ts +11 -26
- package/types.ts +813 -813
package/supabase.types.ts
CHANGED
|
@@ -1,31 +1,6 @@
|
|
|
1
1
|
export type Json = { [key: string]: any } | any
|
|
2
2
|
|
|
3
3
|
export type Database = {
|
|
4
|
-
graphql_public: {
|
|
5
|
-
Tables: {
|
|
6
|
-
[_ in never]: never
|
|
7
|
-
}
|
|
8
|
-
Views: {
|
|
9
|
-
[_ in never]: never
|
|
10
|
-
}
|
|
11
|
-
Functions: {
|
|
12
|
-
graphql: {
|
|
13
|
-
Args: {
|
|
14
|
-
operationName?: string
|
|
15
|
-
query?: string
|
|
16
|
-
variables?: Json
|
|
17
|
-
extensions?: Json
|
|
18
|
-
}
|
|
19
|
-
Returns: Json
|
|
20
|
-
}
|
|
21
|
-
}
|
|
22
|
-
Enums: {
|
|
23
|
-
[_ in never]: never
|
|
24
|
-
}
|
|
25
|
-
CompositeTypes: {
|
|
26
|
-
[_ in never]: never
|
|
27
|
-
}
|
|
28
|
-
}
|
|
29
4
|
internal: {
|
|
30
5
|
Tables: {
|
|
31
6
|
config: {
|
|
@@ -2422,6 +2397,7 @@ export type Database = {
|
|
|
2422
2397
|
owner_id: string | null
|
|
2423
2398
|
path_tokens: string[] | null
|
|
2424
2399
|
updated_at: string | null
|
|
2400
|
+
user_metadata: Json | null
|
|
2425
2401
|
version: string | null
|
|
2426
2402
|
}
|
|
2427
2403
|
Insert: {
|
|
@@ -2435,6 +2411,7 @@ export type Database = {
|
|
|
2435
2411
|
owner_id?: string | null
|
|
2436
2412
|
path_tokens?: string[] | null
|
|
2437
2413
|
updated_at?: string | null
|
|
2414
|
+
user_metadata?: Json | null
|
|
2438
2415
|
version?: string | null
|
|
2439
2416
|
}
|
|
2440
2417
|
Update: {
|
|
@@ -2448,6 +2425,7 @@ export type Database = {
|
|
|
2448
2425
|
owner_id?: string | null
|
|
2449
2426
|
path_tokens?: string[] | null
|
|
2450
2427
|
updated_at?: string | null
|
|
2428
|
+
user_metadata?: Json | null
|
|
2451
2429
|
version?: string | null
|
|
2452
2430
|
}
|
|
2453
2431
|
Relationships: [
|
|
@@ -2469,6 +2447,7 @@ export type Database = {
|
|
|
2469
2447
|
key: string
|
|
2470
2448
|
owner_id: string | null
|
|
2471
2449
|
upload_signature: string
|
|
2450
|
+
user_metadata: Json | null
|
|
2472
2451
|
version: string
|
|
2473
2452
|
}
|
|
2474
2453
|
Insert: {
|
|
@@ -2479,6 +2458,7 @@ export type Database = {
|
|
|
2479
2458
|
key: string
|
|
2480
2459
|
owner_id?: string | null
|
|
2481
2460
|
upload_signature: string
|
|
2461
|
+
user_metadata?: Json | null
|
|
2482
2462
|
version: string
|
|
2483
2463
|
}
|
|
2484
2464
|
Update: {
|
|
@@ -2489,6 +2469,7 @@ export type Database = {
|
|
|
2489
2469
|
key?: string
|
|
2490
2470
|
owner_id?: string | null
|
|
2491
2471
|
upload_signature?: string
|
|
2472
|
+
user_metadata?: Json | null
|
|
2492
2473
|
version?: string
|
|
2493
2474
|
}
|
|
2494
2475
|
Relationships: [
|
|
@@ -2625,6 +2606,10 @@ export type Database = {
|
|
|
2625
2606
|
updated_at: string
|
|
2626
2607
|
}[]
|
|
2627
2608
|
}
|
|
2609
|
+
operation: {
|
|
2610
|
+
Args: Record<PropertyKey, never>
|
|
2611
|
+
Returns: string
|
|
2612
|
+
}
|
|
2628
2613
|
search: {
|
|
2629
2614
|
Args: {
|
|
2630
2615
|
prefix: string
|
|
@@ -2737,4 +2722,4 @@ export type Enums<
|
|
|
2737
2722
|
? PublicSchema["Enums"][PublicEnumNameOrOptions]
|
|
2738
2723
|
: never
|
|
2739
2724
|
|
|
2740
|
-
|
|
2725
|
+
|