@prisma/studio-core 0.0.0-dev.202503281326 → 0.0.0-dev.202503281357
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.
|
@@ -17,7 +17,7 @@ declare function createPostgresAdapter(requirements: PostgresAdapterRequirements
|
|
|
17
17
|
*
|
|
18
18
|
* Example: '(0,23)' represents the 24th row in the first block of the table.
|
|
19
19
|
*/
|
|
20
|
-
type
|
|
20
|
+
type CTIDasText = `(${number},${number})`;
|
|
21
21
|
declare function getSelectQuery(details: QueryDetails, requirements?: Omit<BuilderRequirements, "Adapter" | "QueryCompiler">): Query<{
|
|
22
22
|
[x: string]: unknown;
|
|
23
23
|
ctid: `(${number},${number})`;
|
|
@@ -39,4 +39,4 @@ declare function getTablesQuery(requirements?: Omit<BuilderRequirements, "Adapte
|
|
|
39
39
|
*/
|
|
40
40
|
declare function mockTablesQuery(): QueryResult<typeof getTablesQuery>;
|
|
41
41
|
|
|
42
|
-
export { type
|
|
42
|
+
export { type CTIDasText, type PostgresAdapterRequirements, createPostgresAdapter, getSelectQuery, getTablesQuery, mockSelectQuery, mockTablesQuery };
|
|
@@ -17,7 +17,7 @@ declare function createPostgresAdapter(requirements: PostgresAdapterRequirements
|
|
|
17
17
|
*
|
|
18
18
|
* Example: '(0,23)' represents the 24th row in the first block of the table.
|
|
19
19
|
*/
|
|
20
|
-
type
|
|
20
|
+
type CTIDasText = `(${number},${number})`;
|
|
21
21
|
declare function getSelectQuery(details: QueryDetails, requirements?: Omit<BuilderRequirements, "Adapter" | "QueryCompiler">): Query<{
|
|
22
22
|
[x: string]: unknown;
|
|
23
23
|
ctid: `(${number},${number})`;
|
|
@@ -39,4 +39,4 @@ declare function getTablesQuery(requirements?: Omit<BuilderRequirements, "Adapte
|
|
|
39
39
|
*/
|
|
40
40
|
declare function mockTablesQuery(): QueryResult<typeof getTablesQuery>;
|
|
41
41
|
|
|
42
|
-
export { type
|
|
42
|
+
export { type CTIDasText, type PostgresAdapterRequirements, createPostgresAdapter, getSelectQuery, getTablesQuery, mockSelectQuery, mockTablesQuery };
|