@supabase/postgrest-js 2.74.1-canary.6 → 2.75.0
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/cjs/PostgrestBuilder.d.ts +2 -1
- package/dist/cjs/PostgrestBuilder.d.ts.map +1 -1
- package/dist/cjs/PostgrestBuilder.js.map +1 -1
- package/dist/cjs/PostgrestClient.d.ts +4 -3
- package/dist/cjs/PostgrestClient.d.ts.map +1 -1
- package/dist/cjs/PostgrestClient.js.map +1 -1
- package/dist/cjs/PostgrestFilterBuilder.d.ts +1 -1
- package/dist/cjs/PostgrestFilterBuilder.d.ts.map +1 -1
- package/dist/cjs/PostgrestQueryBuilder.d.ts +1 -1
- package/dist/cjs/PostgrestQueryBuilder.d.ts.map +1 -1
- package/dist/cjs/PostgrestQueryBuilder.js.map +1 -1
- package/dist/cjs/PostgrestTransformBuilder.d.ts +4 -3
- package/dist/cjs/PostgrestTransformBuilder.d.ts.map +1 -1
- package/dist/cjs/PostgrestTransformBuilder.js.map +1 -1
- package/dist/cjs/index.d.ts +2 -1
- package/dist/cjs/index.d.ts.map +1 -1
- package/dist/cjs/select-query-parser/parser.d.ts +1 -1
- package/dist/cjs/select-query-parser/parser.d.ts.map +1 -1
- package/dist/cjs/select-query-parser/result.d.ts +10 -7
- package/dist/cjs/select-query-parser/result.d.ts.map +1 -1
- package/dist/cjs/select-query-parser/types.d.ts +3 -2
- package/dist/cjs/select-query-parser/types.d.ts.map +1 -1
- package/dist/cjs/select-query-parser/utils.d.ts +21 -2
- package/dist/cjs/select-query-parser/utils.d.ts.map +1 -1
- package/dist/cjs/types/common/common.d.ts +46 -0
- package/dist/cjs/types/common/common.d.ts.map +1 -0
- package/dist/cjs/types/common/common.js +4 -0
- package/dist/cjs/types/common/common.js.map +1 -0
- package/dist/cjs/types/common/rpc.d.ts +37 -0
- package/dist/cjs/types/common/rpc.d.ts.map +1 -0
- package/dist/cjs/types/common/rpc.js +3 -0
- package/dist/cjs/types/common/rpc.js.map +1 -0
- package/dist/cjs/{types.d.ts → types/types.d.ts} +4 -40
- package/dist/cjs/types/types.d.ts.map +1 -0
- package/dist/cjs/{types.js.map → types/types.js.map} +1 -1
- package/dist/cjs/version.d.ts +1 -1
- package/dist/cjs/version.d.ts.map +1 -1
- package/dist/cjs/version.js +1 -1
- package/dist/cjs/version.js.map +1 -1
- package/package.json +3 -2
- package/src/PostgrestBuilder.ts +2 -3
- package/src/PostgrestClient.ts +16 -11
- package/src/PostgrestFilterBuilder.ts +1 -1
- package/src/PostgrestQueryBuilder.ts +7 -1
- package/src/PostgrestTransformBuilder.ts +15 -11
- package/src/index.ts +2 -2
- package/src/select-query-parser/parser.ts +1 -1
- package/src/select-query-parser/result.ts +29 -6
- package/src/select-query-parser/types.ts +19 -3
- package/src/select-query-parser/utils.ts +63 -1
- package/src/types/common/common.ts +56 -0
- package/src/types/common/rpc.ts +135 -0
- package/src/{types.ts → types/types.ts} +4 -49
- package/src/version.ts +1 -1
- package/dist/cjs/types.d.ts.map +0 -1
- /package/dist/cjs/{types.js → types/types.js} +0 -0
|
@@ -8,6 +8,8 @@ import {
|
|
|
8
8
|
IsNonEmptyArray,
|
|
9
9
|
TablesAndViews,
|
|
10
10
|
UnionToArray,
|
|
11
|
+
GenericFunction,
|
|
12
|
+
GenericSetofOption,
|
|
11
13
|
} from './types'
|
|
12
14
|
|
|
13
15
|
export type IsAny<T> = 0 extends 1 & T ? true : false
|
|
@@ -457,7 +459,37 @@ export type ResolveForwardRelationship<
|
|
|
457
459
|
from: CurrentTableOrView
|
|
458
460
|
type: 'found-by-join-table'
|
|
459
461
|
}
|
|
460
|
-
:
|
|
462
|
+
: ResolveEmbededFunctionJoinTableRelationship<
|
|
463
|
+
Schema,
|
|
464
|
+
CurrentTableOrView,
|
|
465
|
+
Field['name']
|
|
466
|
+
> extends infer FoundEmbededFunctionJoinTableRelation
|
|
467
|
+
? FoundEmbededFunctionJoinTableRelation extends GenericSetofOption
|
|
468
|
+
? {
|
|
469
|
+
referencedTable: TablesAndViews<Schema>[FoundEmbededFunctionJoinTableRelation['to']]
|
|
470
|
+
relation: {
|
|
471
|
+
foreignKeyName: `${Field['name']}_${CurrentTableOrView}_${FoundEmbededFunctionJoinTableRelation['to']}_forward`
|
|
472
|
+
columns: []
|
|
473
|
+
isOneToOne: FoundEmbededFunctionJoinTableRelation['isOneToOne'] extends true
|
|
474
|
+
? true
|
|
475
|
+
: false
|
|
476
|
+
referencedColumns: []
|
|
477
|
+
referencedRelation: FoundEmbededFunctionJoinTableRelation['to']
|
|
478
|
+
} & {
|
|
479
|
+
match: 'func'
|
|
480
|
+
isNotNullable: FoundEmbededFunctionJoinTableRelation['isNotNullable'] extends true
|
|
481
|
+
? true
|
|
482
|
+
: FoundEmbededFunctionJoinTableRelation['isSetofReturn'] extends true
|
|
483
|
+
? false
|
|
484
|
+
: true
|
|
485
|
+
isSetofReturn: FoundEmbededFunctionJoinTableRelation['isSetofReturn']
|
|
486
|
+
}
|
|
487
|
+
direction: 'forward'
|
|
488
|
+
from: CurrentTableOrView
|
|
489
|
+
type: 'found-by-embeded-function'
|
|
490
|
+
}
|
|
491
|
+
: SelectQueryError<`could not find the relation between ${CurrentTableOrView} and ${Field['name']}`>
|
|
492
|
+
: SelectQueryError<`could not find the relation between ${CurrentTableOrView} and ${Field['name']}`>
|
|
461
493
|
: SelectQueryError<`could not find the relation between ${CurrentTableOrView} and ${Field['name']}`>
|
|
462
494
|
: SelectQueryError<`could not find the relation between ${CurrentTableOrView} and ${Field['name']}`>
|
|
463
495
|
: SelectQueryError<`could not find the relation between ${CurrentTableOrView} and ${Field['name']}`>
|
|
@@ -500,6 +532,20 @@ type ResolveJoinTableRelationship<
|
|
|
500
532
|
: never
|
|
501
533
|
}[keyof TablesAndViews<Schema>]
|
|
502
534
|
|
|
535
|
+
type ResolveEmbededFunctionJoinTableRelationship<
|
|
536
|
+
Schema extends GenericSchema,
|
|
537
|
+
CurrentTableOrView extends keyof TablesAndViews<Schema> & string,
|
|
538
|
+
FieldName extends string,
|
|
539
|
+
> =
|
|
540
|
+
FindMatchingFunctionBySetofFrom<
|
|
541
|
+
Schema['Functions'][FieldName],
|
|
542
|
+
CurrentTableOrView
|
|
543
|
+
> extends infer Fn
|
|
544
|
+
? Fn extends GenericFunction
|
|
545
|
+
? Fn['SetofOptions']
|
|
546
|
+
: false
|
|
547
|
+
: false
|
|
548
|
+
|
|
503
549
|
export type FindJoinTableRelationship<
|
|
504
550
|
Schema extends GenericSchema,
|
|
505
551
|
CurrentTableOrView extends keyof TablesAndViews<Schema> & string,
|
|
@@ -589,6 +635,22 @@ export type IsStringUnion<T> = string extends T
|
|
|
589
635
|
: true
|
|
590
636
|
: false
|
|
591
637
|
|
|
638
|
+
type MatchingFunctionBySetofFrom<
|
|
639
|
+
Fn extends GenericFunction,
|
|
640
|
+
TableName extends string,
|
|
641
|
+
> = Fn['SetofOptions'] extends GenericSetofOption
|
|
642
|
+
? TableName extends Fn['SetofOptions']['from']
|
|
643
|
+
? Fn
|
|
644
|
+
: never
|
|
645
|
+
: false
|
|
646
|
+
|
|
647
|
+
type FindMatchingFunctionBySetofFrom<
|
|
648
|
+
FnUnion,
|
|
649
|
+
TableName extends string,
|
|
650
|
+
> = FnUnion extends infer Fn extends GenericFunction
|
|
651
|
+
? MatchingFunctionBySetofFrom<Fn, TableName>
|
|
652
|
+
: false
|
|
653
|
+
|
|
592
654
|
type ComputedField<
|
|
593
655
|
Schema extends GenericSchema,
|
|
594
656
|
RelationName extends keyof TablesAndViews<Schema>,
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
// Types that are shared between supabase-js and postgrest-js
|
|
2
|
+
|
|
3
|
+
export type Fetch = typeof fetch
|
|
4
|
+
|
|
5
|
+
export type GenericRelationship = {
|
|
6
|
+
foreignKeyName: string
|
|
7
|
+
columns: string[]
|
|
8
|
+
isOneToOne?: boolean
|
|
9
|
+
referencedRelation: string
|
|
10
|
+
referencedColumns: string[]
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
export type GenericTable = {
|
|
14
|
+
Row: Record<string, unknown>
|
|
15
|
+
Insert: Record<string, unknown>
|
|
16
|
+
Update: Record<string, unknown>
|
|
17
|
+
Relationships: GenericRelationship[]
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
export type GenericUpdatableView = {
|
|
21
|
+
Row: Record<string, unknown>
|
|
22
|
+
Insert: Record<string, unknown>
|
|
23
|
+
Update: Record<string, unknown>
|
|
24
|
+
Relationships: GenericRelationship[]
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
export type GenericNonUpdatableView = {
|
|
28
|
+
Row: Record<string, unknown>
|
|
29
|
+
Relationships: GenericRelationship[]
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
export type GenericView = GenericUpdatableView | GenericNonUpdatableView
|
|
33
|
+
|
|
34
|
+
export type GenericSetofOption = {
|
|
35
|
+
isSetofReturn?: boolean | undefined
|
|
36
|
+
isOneToOne?: boolean | undefined
|
|
37
|
+
isNotNullable?: boolean | undefined
|
|
38
|
+
to: string
|
|
39
|
+
from: string
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
export type GenericFunction = {
|
|
43
|
+
Args: Record<string, unknown> | never
|
|
44
|
+
Returns: unknown
|
|
45
|
+
SetofOptions?: GenericSetofOption
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
export type GenericSchema = {
|
|
49
|
+
Tables: Record<string, GenericTable>
|
|
50
|
+
Views: Record<string, GenericView>
|
|
51
|
+
Functions: Record<string, GenericFunction>
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
export type ClientServerOptions = {
|
|
55
|
+
PostgrestVersion?: string
|
|
56
|
+
}
|
|
@@ -0,0 +1,135 @@
|
|
|
1
|
+
import type { GenericFunction, GenericSchema, GenericSetofOption } from './common'
|
|
2
|
+
|
|
3
|
+
// Functions matching utils
|
|
4
|
+
type IsMatchingArgs<
|
|
5
|
+
FnArgs extends GenericFunction['Args'],
|
|
6
|
+
PassedArgs extends GenericFunction['Args'],
|
|
7
|
+
> = [FnArgs] extends [Record<PropertyKey, never>]
|
|
8
|
+
? PassedArgs extends Record<PropertyKey, never>
|
|
9
|
+
? true
|
|
10
|
+
: false
|
|
11
|
+
: keyof PassedArgs extends keyof FnArgs
|
|
12
|
+
? PassedArgs extends FnArgs
|
|
13
|
+
? true
|
|
14
|
+
: false
|
|
15
|
+
: false
|
|
16
|
+
|
|
17
|
+
type MatchingFunctionArgs<
|
|
18
|
+
Fn extends GenericFunction,
|
|
19
|
+
Args extends GenericFunction['Args'],
|
|
20
|
+
> = Fn extends { Args: infer A extends GenericFunction['Args'] }
|
|
21
|
+
? IsMatchingArgs<A, Args> extends true
|
|
22
|
+
? Fn
|
|
23
|
+
: never
|
|
24
|
+
: false
|
|
25
|
+
|
|
26
|
+
type FindMatchingFunctionByArgs<
|
|
27
|
+
FnUnion,
|
|
28
|
+
Args extends GenericFunction['Args'],
|
|
29
|
+
> = FnUnion extends infer Fn extends GenericFunction ? MatchingFunctionArgs<Fn, Args> : false
|
|
30
|
+
|
|
31
|
+
// Types for working with database schemas
|
|
32
|
+
type TablesAndViews<Schema extends GenericSchema> = Schema['Tables'] & Exclude<Schema['Views'], ''>
|
|
33
|
+
|
|
34
|
+
// Utility types for working with unions
|
|
35
|
+
type UnionToIntersection<U> = (U extends any ? (k: U) => void : never) extends (k: infer I) => void
|
|
36
|
+
? I
|
|
37
|
+
: never
|
|
38
|
+
|
|
39
|
+
type LastOf<T> =
|
|
40
|
+
UnionToIntersection<T extends any ? () => T : never> extends () => infer R ? R : never
|
|
41
|
+
|
|
42
|
+
type IsAny<T> = 0 extends 1 & T ? true : false
|
|
43
|
+
|
|
44
|
+
type ExactMatch<T, S> = [T] extends [S] ? ([S] extends [T] ? true : false) : false
|
|
45
|
+
|
|
46
|
+
type ExtractExactFunction<Fns, Args> = Fns extends infer F
|
|
47
|
+
? F extends GenericFunction
|
|
48
|
+
? ExactMatch<F['Args'], Args> extends true
|
|
49
|
+
? F
|
|
50
|
+
: never
|
|
51
|
+
: never
|
|
52
|
+
: never
|
|
53
|
+
|
|
54
|
+
type IsNever<T> = [T] extends [never] ? true : false
|
|
55
|
+
|
|
56
|
+
type RpcFunctionNotFound<FnName> = {
|
|
57
|
+
Row: any
|
|
58
|
+
Result: {
|
|
59
|
+
error: true
|
|
60
|
+
} & "Couldn't infer function definition matching provided arguments"
|
|
61
|
+
RelationName: FnName
|
|
62
|
+
Relationships: null
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
export type GetRpcFunctionFilterBuilderByArgs<
|
|
66
|
+
Schema extends GenericSchema,
|
|
67
|
+
FnName extends string & keyof Schema['Functions'],
|
|
68
|
+
Args,
|
|
69
|
+
> = {
|
|
70
|
+
0: Schema['Functions'][FnName]
|
|
71
|
+
// If the Args is exactly never (function call without any params)
|
|
72
|
+
1: IsAny<Schema> extends true
|
|
73
|
+
? any
|
|
74
|
+
: IsNever<Args> extends true
|
|
75
|
+
? // This is for retro compatibility, if the funcition is defined with an single return and an union of Args
|
|
76
|
+
// we fallback to the last function definition matched by name
|
|
77
|
+
IsNever<ExtractExactFunction<Schema['Functions'][FnName], Args>> extends true
|
|
78
|
+
? LastOf<Schema['Functions'][FnName]>
|
|
79
|
+
: ExtractExactFunction<Schema['Functions'][FnName], Args>
|
|
80
|
+
: Args extends Record<PropertyKey, never>
|
|
81
|
+
? LastOf<Schema['Functions'][FnName]>
|
|
82
|
+
: // Otherwise, we attempt to match with one of the function definition in the union based
|
|
83
|
+
// on the function arguments provided
|
|
84
|
+
Args extends GenericFunction['Args']
|
|
85
|
+
? // This is for retro compatibility, if the funcition is defined with an single return and an union of Args
|
|
86
|
+
// we fallback to the last function definition matched by name
|
|
87
|
+
IsNever<
|
|
88
|
+
LastOf<FindMatchingFunctionByArgs<Schema['Functions'][FnName], Args>>
|
|
89
|
+
> extends true
|
|
90
|
+
? LastOf<Schema['Functions'][FnName]>
|
|
91
|
+
: // Otherwise, we use the arguments based function definition narrowing to get the right value
|
|
92
|
+
LastOf<FindMatchingFunctionByArgs<Schema['Functions'][FnName], Args>>
|
|
93
|
+
: // If we can't find a matching function by args, we try to find one by function name
|
|
94
|
+
ExtractExactFunction<Schema['Functions'][FnName], Args> extends GenericFunction
|
|
95
|
+
? ExtractExactFunction<Schema['Functions'][FnName], Args>
|
|
96
|
+
: any
|
|
97
|
+
}[1] extends infer Fn
|
|
98
|
+
? // If we are dealing with an non-typed client everything is any
|
|
99
|
+
IsAny<Fn> extends true
|
|
100
|
+
? { Row: any; Result: any; RelationName: FnName; Relationships: null }
|
|
101
|
+
: // Otherwise, we use the arguments based function definition narrowing to get the rigt value
|
|
102
|
+
Fn extends GenericFunction
|
|
103
|
+
? {
|
|
104
|
+
Row: Fn['SetofOptions'] extends GenericSetofOption
|
|
105
|
+
? Fn['SetofOptions']['isSetofReturn'] extends true
|
|
106
|
+
? TablesAndViews<Schema>[Fn['SetofOptions']['to']]['Row']
|
|
107
|
+
: TablesAndViews<Schema>[Fn['SetofOptions']['to']]['Row']
|
|
108
|
+
: Fn['Returns'] extends any[]
|
|
109
|
+
? Fn['Returns'][number] extends Record<string, unknown>
|
|
110
|
+
? Fn['Returns'][number]
|
|
111
|
+
: never
|
|
112
|
+
: Fn['Returns'] extends Record<string, unknown>
|
|
113
|
+
? Fn['Returns']
|
|
114
|
+
: never
|
|
115
|
+
Result: Fn['SetofOptions'] extends GenericSetofOption
|
|
116
|
+
? Fn['SetofOptions']['isSetofReturn'] extends true
|
|
117
|
+
? Fn['SetofOptions']['isOneToOne'] extends true
|
|
118
|
+
? Fn['Returns'][]
|
|
119
|
+
: Fn['Returns']
|
|
120
|
+
: Fn['Returns']
|
|
121
|
+
: Fn['Returns']
|
|
122
|
+
RelationName: Fn['SetofOptions'] extends GenericSetofOption
|
|
123
|
+
? Fn['SetofOptions']['to']
|
|
124
|
+
: FnName
|
|
125
|
+
Relationships: Fn['SetofOptions'] extends GenericSetofOption
|
|
126
|
+
? Fn['SetofOptions']['to'] extends keyof Schema['Tables']
|
|
127
|
+
? Schema['Tables'][Fn['SetofOptions']['to']]['Relationships']
|
|
128
|
+
: Schema['Views'][Fn['SetofOptions']['to']]['Relationships']
|
|
129
|
+
: null
|
|
130
|
+
}
|
|
131
|
+
: // If we failed to find the function by argument, we still pass with any but also add an overridable
|
|
132
|
+
Fn extends false
|
|
133
|
+
? RpcFunctionNotFound<FnName>
|
|
134
|
+
: RpcFunctionNotFound<FnName>
|
|
135
|
+
: RpcFunctionNotFound<FnName>
|
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
import PostgrestError from '
|
|
2
|
-
import { ContainsNull } from '
|
|
3
|
-
import {
|
|
4
|
-
|
|
5
|
-
export type Fetch = typeof fetch
|
|
1
|
+
import PostgrestError from '../PostgrestError'
|
|
2
|
+
import { ContainsNull } from '../select-query-parser/types'
|
|
3
|
+
import { SelectQueryError } from '../select-query-parser/utils'
|
|
4
|
+
import { ClientServerOptions } from './common/common'
|
|
6
5
|
|
|
7
6
|
/**
|
|
8
7
|
* Response format
|
|
@@ -31,50 +30,6 @@ export type PostgrestSingleResponse<T> = PostgrestResponseSuccess<T> | Postgrest
|
|
|
31
30
|
export type PostgrestMaybeSingleResponse<T> = PostgrestSingleResponse<T | null>
|
|
32
31
|
export type PostgrestResponse<T> = PostgrestSingleResponse<T[]>
|
|
33
32
|
|
|
34
|
-
export type GenericRelationship = {
|
|
35
|
-
foreignKeyName: string
|
|
36
|
-
columns: string[]
|
|
37
|
-
isOneToOne?: boolean
|
|
38
|
-
referencedRelation: string
|
|
39
|
-
referencedColumns: string[]
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
export type GenericTable = {
|
|
43
|
-
Row: Record<string, unknown>
|
|
44
|
-
Insert: Record<string, unknown>
|
|
45
|
-
Update: Record<string, unknown>
|
|
46
|
-
Relationships: GenericRelationship[]
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
export type GenericUpdatableView = {
|
|
50
|
-
Row: Record<string, unknown>
|
|
51
|
-
Insert: Record<string, unknown>
|
|
52
|
-
Update: Record<string, unknown>
|
|
53
|
-
Relationships: GenericRelationship[]
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
export type GenericNonUpdatableView = {
|
|
57
|
-
Row: Record<string, unknown>
|
|
58
|
-
Relationships: GenericRelationship[]
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
export type GenericView = GenericUpdatableView | GenericNonUpdatableView
|
|
62
|
-
|
|
63
|
-
export type GenericFunction = {
|
|
64
|
-
Args: Record<string, unknown>
|
|
65
|
-
Returns: unknown
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
export type GenericSchema = {
|
|
69
|
-
Tables: Record<string, GenericTable>
|
|
70
|
-
Views: Record<string, GenericView>
|
|
71
|
-
Functions: Record<string, GenericFunction>
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
export type ClientServerOptions = {
|
|
75
|
-
PostgrestVersion?: string
|
|
76
|
-
}
|
|
77
|
-
|
|
78
33
|
export type DatabaseWithOptions<Database, Options extends ClientServerOptions> = {
|
|
79
34
|
db: Database
|
|
80
35
|
options: Options
|
package/src/version.ts
CHANGED
|
@@ -4,4 +4,4 @@
|
|
|
4
4
|
// - Debugging and support (identifying which version is running)
|
|
5
5
|
// - Telemetry and logging (version reporting in errors/analytics)
|
|
6
6
|
// - Ensuring build artifacts match the published package version
|
|
7
|
-
export const version = '2.
|
|
7
|
+
export const version = '2.75.0'
|
package/dist/cjs/types.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/types.ts"],"names":[],"mappings":"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"}
|
|
File without changes
|