@prisma/studio-core 0.0.0-dev.202505082308 → 0.0.0-dev.202505082315

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.
Files changed (38) hide show
  1. package/dist/CPIOZS5X-V4BHP4CI.js +1 -0
  2. package/dist/OKF6E45R-XYOIK2NY.js +1 -0
  3. package/dist/adapter-CH4qnR6R.d.cts +219 -0
  4. package/dist/adapter-CH4qnR6R.d.ts +219 -0
  5. package/dist/chunk-2ZJZX5I7.js +0 -0
  6. package/dist/chunk-555OIWZX.js +1 -0
  7. package/dist/chunk-5MNS4IJC.js +1332 -0
  8. package/dist/chunk-BMVJYUJW.js +1 -0
  9. package/dist/chunk-N2MLAUEV.js +1 -0
  10. package/dist/chunk-P72NBTYE.js +1 -0
  11. package/dist/data/accelerate/index.cjs +1 -0
  12. package/dist/data/accelerate/index.d.cts +47 -0
  13. package/dist/data/accelerate/index.d.ts +47 -0
  14. package/dist/data/accelerate/index.js +1 -0
  15. package/dist/data/bff/index.cjs +1 -0
  16. package/dist/data/bff/index.d.cts +55 -0
  17. package/dist/data/bff/index.d.ts +55 -0
  18. package/dist/data/bff/index.js +1 -0
  19. package/dist/data/index.cjs +1 -0
  20. package/dist/data/index.d.cts +3 -0
  21. package/dist/data/index.d.ts +3 -0
  22. package/dist/data/index.js +1 -0
  23. package/dist/data/pglite/index.cjs +1 -0
  24. package/dist/data/pglite/index.d.cts +26 -0
  25. package/dist/data/pglite/index.d.ts +26 -0
  26. package/dist/data/pglite/index.js +1 -0
  27. package/dist/data/postgres-core/index.cjs +1 -0
  28. package/dist/data/postgres-core/index.d.cts +155 -0
  29. package/dist/data/postgres-core/index.d.ts +155 -0
  30. package/dist/data/postgres-core/index.js +1 -0
  31. package/dist/index-BTblIzxR.d.ts +48 -0
  32. package/dist/index-DAubYhEp.d.cts +48 -0
  33. package/dist/ui/index.cjs +1603 -0
  34. package/dist/ui/index.css +2049 -0
  35. package/dist/ui/index.d.cts +27 -0
  36. package/dist/ui/index.d.ts +27 -0
  37. package/dist/ui/index.js +274 -0
  38. package/package.json +5 -8
@@ -0,0 +1,27 @@
1
+ import * as react_jsx_runtime from 'react/jsx-runtime';
2
+ import { A as Adapter } from '../adapter-CH4qnR6R.cjs';
3
+
4
+ type StudioTelemetryEvent = {
5
+ event: "studio_launched";
6
+ payload: {
7
+ event_id: string;
8
+ timestamp: string;
9
+ user_id?: string;
10
+ workspace_id?: string;
11
+ organization_id?: string;
12
+ embedding_type?: string;
13
+ vendor_id?: string;
14
+ table_count: number;
15
+ };
16
+ };
17
+ interface StudioProps {
18
+ adapter: Adapter;
19
+ onError?: (error: Error) => void;
20
+ onTelemetryEvent?: (args: StudioTelemetryEvent) => void;
21
+ }
22
+ /**
23
+ * Main Studio component that provides database visualization and management
24
+ */
25
+ declare function Studio(props: StudioProps): react_jsx_runtime.JSX.Element;
26
+
27
+ export { Studio, type StudioProps };
@@ -0,0 +1,27 @@
1
+ import * as react_jsx_runtime from 'react/jsx-runtime';
2
+ import { A as Adapter } from '../adapter-CH4qnR6R.js';
3
+
4
+ type StudioTelemetryEvent = {
5
+ event: "studio_launched";
6
+ payload: {
7
+ event_id: string;
8
+ timestamp: string;
9
+ user_id?: string;
10
+ workspace_id?: string;
11
+ organization_id?: string;
12
+ embedding_type?: string;
13
+ vendor_id?: string;
14
+ table_count: number;
15
+ };
16
+ };
17
+ interface StudioProps {
18
+ adapter: Adapter;
19
+ onError?: (error: Error) => void;
20
+ onTelemetryEvent?: (args: StudioTelemetryEvent) => void;
21
+ }
22
+ /**
23
+ * Main Studio component that provides database visualization and management
24
+ */
25
+ declare function Studio(props: StudioProps): react_jsx_runtime.JSX.Element;
26
+
27
+ export { Studio, type StudioProps };