@prisma/studio-core 0.0.0-dev.202504151900 → 0.0.0-dev.202504151908

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.
@@ -1,6 +1,6 @@
1
- import { A as Adapter, c as QueryDetails } from '../../adapter-B6MTgAD1.cjs';
2
- import { E as Executor, B as BuilderRequirements, Q as Query, a as QueryResult } from '../../executor-BLAClqkI.cjs';
3
- import '../../type-utils-rTHUvEmt.cjs';
1
+ import { A as Adapter, c as AdapterQueryDetails } from '../../adapter-DOfxRYJO.cjs';
2
+ import { E as Executor, B as BuilderRequirements, Q as Query, a as QueryResult } from '../../executor-DbZM00RR.cjs';
3
+ import '../../type-utils-u92OZz8n.cjs';
4
4
  import 'kysely';
5
5
 
6
6
  interface PostgresAdapterRequirements {
@@ -17,8 +17,12 @@ declare function createPostgresAdapter(requirements: PostgresAdapterRequirements
17
17
  * Example: '(0,23)' represents the 24th row in the first block of the table.
18
18
  */
19
19
  type CTIDasText = `(${number},${number})`;
20
- declare function getSelectQuery(details: QueryDetails, requirements?: Omit<BuilderRequirements, "Adapter" | "QueryCompiler">): Query<{
20
+ /**
21
+ * Returns a query that selects all columns from a table, along with the `ctid` column, and unbound row count as `oid` (reserved column name that cannot conflict with user columns).
22
+ */
23
+ declare function getSelectQuery(details: AdapterQueryDetails, requirements?: Omit<BuilderRequirements, "Adapter" | "QueryCompiler">): Query<{
21
24
  [x: string]: unknown;
25
+ oid: `${number}`;
22
26
  ctid: `(${number},${number})`;
23
27
  }>;
24
28
  /**
@@ -1,6 +1,6 @@
1
- import { A as Adapter, c as QueryDetails } from '../../adapter-DnrnbSIC.js';
2
- import { E as Executor, B as BuilderRequirements, Q as Query, a as QueryResult } from '../../executor-CySfZPUK.js';
3
- import '../../type-utils-rTHUvEmt.js';
1
+ import { A as Adapter, c as AdapterQueryDetails } from '../../adapter-dDnGaS1S.js';
2
+ import { E as Executor, B as BuilderRequirements, Q as Query, a as QueryResult } from '../../executor-DI7JTcqO.js';
3
+ import '../../type-utils-u92OZz8n.js';
4
4
  import 'kysely';
5
5
 
6
6
  interface PostgresAdapterRequirements {
@@ -17,8 +17,12 @@ declare function createPostgresAdapter(requirements: PostgresAdapterRequirements
17
17
  * Example: '(0,23)' represents the 24th row in the first block of the table.
18
18
  */
19
19
  type CTIDasText = `(${number},${number})`;
20
- declare function getSelectQuery(details: QueryDetails, requirements?: Omit<BuilderRequirements, "Adapter" | "QueryCompiler">): Query<{
20
+ /**
21
+ * Returns a query that selects all columns from a table, along with the `ctid` column, and unbound row count as `oid` (reserved column name that cannot conflict with user columns).
22
+ */
23
+ declare function getSelectQuery(details: AdapterQueryDetails, requirements?: Omit<BuilderRequirements, "Adapter" | "QueryCompiler">): Query<{
21
24
  [x: string]: unknown;
25
+ oid: `${number}`;
22
26
  ctid: `(${number},${number})`;
23
27
  }>;
24
28
  /**
@@ -1 +1 @@
1
- import{a,b,c,d,e,f,g}from"../../chunk-YMPRBKIC.js";import"../../chunk-2FW6TKD6.js";export{g as createPostgresAdapter,a as getSelectQuery,c as getTablesQuery,e as getTimezoneQuery,b as mockSelectQuery,d as mockTablesQuery,f as mockTimezoneQuery};
1
+ import{a,b,c,d,e,f,g}from"../../chunk-CDTENDXB.js";import"../../chunk-2FW6TKD6.js";export{g as createPostgresAdapter,a as getSelectQuery,c as getTablesQuery,e as getTimezoneQuery,b as mockSelectQuery,d as mockTablesQuery,f as mockTimezoneQuery};
@@ -1,5 +1,5 @@
1
1
  import { DialectAdapter, QueryCompiler } from 'kysely';
2
- import { E as Either } from './type-utils-rTHUvEmt.js';
2
+ import { E as Either } from './type-utils-u92OZz8n.js';
3
3
 
4
4
  interface BuilderRequirements {
5
5
  Adapter: {
@@ -1,5 +1,5 @@
1
1
  import { DialectAdapter, QueryCompiler } from 'kysely';
2
- import { E as Either } from './type-utils-rTHUvEmt.cjs';
2
+ import { E as Either } from './type-utils-u92OZz8n.cjs';
3
3
 
4
4
  interface BuilderRequirements {
5
5
  Adapter: {
@@ -731,8 +731,8 @@ video {
731
731
  .ps-w-0 {
732
732
  width: 0px;
733
733
  }
734
- .ps-w-12 {
735
- width: 3rem;
734
+ .ps-w-16 {
735
+ width: 4rem;
736
736
  }
737
737
  .ps-w-2 {
738
738
  width: 0.5rem;
@@ -856,9 +856,6 @@ video {
856
856
  .ps-items-start {
857
857
  align-items: flex-start;
858
858
  }
859
- .ps-items-end {
860
- align-items: flex-end;
861
- }
862
859
  .ps-items-center {
863
860
  align-items: center;
864
861
  }
@@ -0,0 +1,4 @@
1
+ type Either<E, R> = [E] | [null, R];
2
+ type NumericString = `${number}`;
3
+
4
+ export type { Either as E, NumericString as N };
@@ -0,0 +1,4 @@
1
+ type Either<E, R> = [E] | [null, R];
2
+ type NumericString = `${number}`;
3
+
4
+ export type { Either as E, NumericString as N };