@ragable/sdk 0.6.12 → 0.6.13
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.d.mts +30 -1
- package/dist/index.d.ts +30 -1
- package/dist/index.js +7 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +7 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -1457,6 +1457,13 @@ var PostgrestTableApi = class {
|
|
|
1457
1457
|
this.databaseInstanceId = databaseInstanceId;
|
|
1458
1458
|
this.table = table;
|
|
1459
1459
|
}
|
|
1460
|
+
/**
|
|
1461
|
+
* Start a SELECT. Pass a PostgREST `select` string; use embedded resources for joins — see
|
|
1462
|
+
* {@link PostgrestSelectBuilder}.
|
|
1463
|
+
*
|
|
1464
|
+
* @param columns Column list and optional embeds (default `"*"`). Omitted or `"*"` means all base columns.
|
|
1465
|
+
* @typeParam RowResult Row shape returned by the query; defaults to this table’s `Row`. Override when using joins.
|
|
1466
|
+
*/
|
|
1460
1467
|
select(columns = "*") {
|
|
1461
1468
|
return new PostgrestSelectBuilder(
|
|
1462
1469
|
this.pgFetch,
|