@supabase/postgrest-js 3.0.0-next.13 → 3.0.0-next.15
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/index.cjs.map +1 -1
- package/dist/index.d.cts +8 -8
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.mts +8 -8
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/PostgrestClient.ts +1 -1
- package/src/PostgrestQueryBuilder.ts +9 -9
- package/src/version.ts +1 -1
package/package.json
CHANGED
package/src/PostgrestClient.ts
CHANGED
|
@@ -389,7 +389,7 @@ export default class PostgrestClient<
|
|
|
389
389
|
}: {
|
|
390
390
|
head?: boolean
|
|
391
391
|
get?: boolean
|
|
392
|
-
count?: 'exact' | 'planned' | 'estimated'
|
|
392
|
+
count?: 'exact' | 'planned' | 'estimated' | (string & {})
|
|
393
393
|
} = {}
|
|
394
394
|
): PostgrestFilterBuilder<
|
|
395
395
|
ClientOptions,
|
|
@@ -889,7 +889,7 @@ export default class PostgrestQueryBuilder<
|
|
|
889
889
|
columns?: Query,
|
|
890
890
|
options?: {
|
|
891
891
|
head?: boolean
|
|
892
|
-
count?: 'exact' | 'planned' | 'estimated'
|
|
892
|
+
count?: 'exact' | 'planned' | 'estimated' | (string & {})
|
|
893
893
|
}
|
|
894
894
|
): PostgrestFilterBuilder<
|
|
895
895
|
ClientOptions,
|
|
@@ -943,7 +943,7 @@ export default class PostgrestQueryBuilder<
|
|
|
943
943
|
Row
|
|
944
944
|
>,
|
|
945
945
|
options?: {
|
|
946
|
-
count?: 'exact' | 'planned' | 'estimated'
|
|
946
|
+
count?: 'exact' | 'planned' | 'estimated' | (string & {})
|
|
947
947
|
}
|
|
948
948
|
): PostgrestFilterBuilder<
|
|
949
949
|
ClientOptions,
|
|
@@ -960,7 +960,7 @@ export default class PostgrestQueryBuilder<
|
|
|
960
960
|
Row
|
|
961
961
|
>[],
|
|
962
962
|
options?: {
|
|
963
|
-
count?: 'exact' | 'planned' | 'estimated'
|
|
963
|
+
count?: 'exact' | 'planned' | 'estimated' | (string & {})
|
|
964
964
|
defaultToNull?: boolean
|
|
965
965
|
}
|
|
966
966
|
): PostgrestFilterBuilder<
|
|
@@ -1097,7 +1097,7 @@ export default class PostgrestQueryBuilder<
|
|
|
1097
1097
|
count,
|
|
1098
1098
|
defaultToNull = true,
|
|
1099
1099
|
}: {
|
|
1100
|
-
count?: 'exact' | 'planned' | 'estimated'
|
|
1100
|
+
count?: 'exact' | 'planned' | 'estimated' | (string & {})
|
|
1101
1101
|
defaultToNull?: boolean
|
|
1102
1102
|
} = {}
|
|
1103
1103
|
): PostgrestFilterBuilder<
|
|
@@ -1148,7 +1148,7 @@ export default class PostgrestQueryBuilder<
|
|
|
1148
1148
|
options?: {
|
|
1149
1149
|
onConflict?: string
|
|
1150
1150
|
ignoreDuplicates?: boolean
|
|
1151
|
-
count?: 'exact' | 'planned' | 'estimated'
|
|
1151
|
+
count?: 'exact' | 'planned' | 'estimated' | (string & {})
|
|
1152
1152
|
}
|
|
1153
1153
|
): PostgrestFilterBuilder<
|
|
1154
1154
|
ClientOptions,
|
|
@@ -1167,7 +1167,7 @@ export default class PostgrestQueryBuilder<
|
|
|
1167
1167
|
options?: {
|
|
1168
1168
|
onConflict?: string
|
|
1169
1169
|
ignoreDuplicates?: boolean
|
|
1170
|
-
count?: 'exact' | 'planned' | 'estimated'
|
|
1170
|
+
count?: 'exact' | 'planned' | 'estimated' | (string & {})
|
|
1171
1171
|
defaultToNull?: boolean
|
|
1172
1172
|
}
|
|
1173
1173
|
): PostgrestFilterBuilder<
|
|
@@ -1406,7 +1406,7 @@ export default class PostgrestQueryBuilder<
|
|
|
1406
1406
|
}: {
|
|
1407
1407
|
onConflict?: string
|
|
1408
1408
|
ignoreDuplicates?: boolean
|
|
1409
|
-
count?: 'exact' | 'planned' | 'estimated'
|
|
1409
|
+
count?: 'exact' | 'planned' | 'estimated' | (string & {})
|
|
1410
1410
|
defaultToNull?: boolean
|
|
1411
1411
|
} = {}
|
|
1412
1412
|
): PostgrestFilterBuilder<
|
|
@@ -1598,7 +1598,7 @@ export default class PostgrestQueryBuilder<
|
|
|
1598
1598
|
{
|
|
1599
1599
|
count,
|
|
1600
1600
|
}: {
|
|
1601
|
-
count?: 'exact' | 'planned' | 'estimated'
|
|
1601
|
+
count?: 'exact' | 'planned' | 'estimated' | (string & {})
|
|
1602
1602
|
} = {}
|
|
1603
1603
|
): PostgrestFilterBuilder<
|
|
1604
1604
|
ClientOptions,
|
|
@@ -1749,7 +1749,7 @@ export default class PostgrestQueryBuilder<
|
|
|
1749
1749
|
delete({
|
|
1750
1750
|
count,
|
|
1751
1751
|
}: {
|
|
1752
|
-
count?: 'exact' | 'planned' | 'estimated'
|
|
1752
|
+
count?: 'exact' | 'planned' | 'estimated' | (string & {})
|
|
1753
1753
|
} = {}): PostgrestFilterBuilder<
|
|
1754
1754
|
ClientOptions,
|
|
1755
1755
|
Schema,
|
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 = '3.0.0-next.
|
|
7
|
+
export const version = '3.0.0-next.15'
|