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

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 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';
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';
4
4
  import 'kysely';
5
5
 
6
6
  interface PostgresAdapterRequirements {
@@ -17,12 +17,8 @@ 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
- /**
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<{
20
+ declare function getSelectQuery(details: QueryDetails, requirements?: Omit<BuilderRequirements, "Adapter" | "QueryCompiler">): Query<{
24
21
  [x: string]: unknown;
25
- oid: `${number}`;
26
22
  ctid: `(${number},${number})`;
27
23
  }>;
28
24
  /**
@@ -1,6 +1,6 @@
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';
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';
4
4
  import 'kysely';
5
5
 
6
6
  interface PostgresAdapterRequirements {
@@ -17,12 +17,8 @@ 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
- /**
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<{
20
+ declare function getSelectQuery(details: QueryDetails, requirements?: Omit<BuilderRequirements, "Adapter" | "QueryCompiler">): Query<{
24
21
  [x: string]: unknown;
25
- oid: `${number}`;
26
22
  ctid: `(${number},${number})`;
27
23
  }>;
28
24
  /**
@@ -1 +1 @@
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
+ 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,5 +1,5 @@
1
1
  import { DialectAdapter, QueryCompiler } from 'kysely';
2
- import { E as Either } from './type-utils-u92OZz8n.cjs';
2
+ import { E as Either } from './type-utils-rTHUvEmt.cjs';
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-u92OZz8n.js';
2
+ import { E as Either } from './type-utils-rTHUvEmt.js';
3
3
 
4
4
  interface BuilderRequirements {
5
5
  Adapter: {
@@ -856,6 +856,9 @@ video {
856
856
  .ps-items-start {
857
857
  align-items: flex-start;
858
858
  }
859
+ .ps-items-end {
860
+ align-items: flex-end;
861
+ }
859
862
  .ps-items-center {
860
863
  align-items: center;
861
864
  }
@@ -0,0 +1,3 @@
1
+ type Either<E, R> = [E] | [null, R];
2
+
3
+ export type { Either as E };
@@ -0,0 +1,3 @@
1
+ type Either<E, R> = [E] | [null, R];
2
+
3
+ export type { Either as E };