prisma 6.7.0-dev.5 → 6.7.0-dev.50

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 (31) hide show
  1. package/build/index.js +1250 -1187
  2. package/build/prisma_schema_build_bg.wasm +0 -0
  3. package/build/schema_engine_bg.wasm +0 -0
  4. package/package.json +14 -14
  5. package/preinstall/index.js +4 -4
  6. package/prisma-client/generator-build/index.js +64 -21
  7. package/prisma-client/package.json +6 -5
  8. package/prisma-client/runtime/binary.js +56 -56
  9. package/prisma-client/runtime/binary.mjs +56 -56
  10. package/prisma-client/runtime/client.d.mts +6 -6
  11. package/prisma-client/runtime/client.d.ts +6 -6
  12. package/prisma-client/runtime/client.js +36 -36
  13. package/prisma-client/runtime/client.mjs +36 -36
  14. package/prisma-client/runtime/edge-esm.js +18 -18
  15. package/prisma-client/runtime/edge.d.ts +6 -6
  16. package/prisma-client/runtime/edge.js +18 -18
  17. package/prisma-client/runtime/index-browser.d.ts +3 -3
  18. package/prisma-client/runtime/index-browser.js +1 -1
  19. package/prisma-client/runtime/library.d.mts +6 -6
  20. package/prisma-client/runtime/library.d.ts +6 -6
  21. package/prisma-client/runtime/library.js +38 -38
  22. package/prisma-client/runtime/library.mjs +41 -41
  23. package/prisma-client/runtime/query_engine_bg.mysql.js +2 -2
  24. package/prisma-client/runtime/query_engine_bg.mysql.mjs +1 -1
  25. package/prisma-client/runtime/query_engine_bg.postgresql.js +2 -2
  26. package/prisma-client/runtime/query_engine_bg.postgresql.mjs +1 -1
  27. package/prisma-client/runtime/query_engine_bg.sqlite.js +2 -2
  28. package/prisma-client/runtime/query_engine_bg.sqlite.mjs +1 -1
  29. package/prisma-client/runtime/react-native.d.ts +6 -6
  30. package/prisma-client/runtime/react-native.js +23 -23
  31. package/prisma-client/scripts/default-index.js +3 -3
@@ -47,7 +47,7 @@ export declare type AllModelsToStringIndex<TypeMap extends TypeMapDef, Args exte
47
47
  } : {};
48
48
 
49
49
  declare class AnyNull extends NullTypesEnumValue {
50
- private readonly _brand_AnyNull;
50
+ #private;
51
51
  }
52
52
 
53
53
  export declare type ApplyOmit<T, OmitConfig> = Compute<{
@@ -210,7 +210,7 @@ declare const ColumnTypeEnum: {
210
210
  declare type CompactedBatchResponse = {
211
211
  type: 'compacted';
212
212
  plan: object;
213
- arguments: Map<string, {}>[];
213
+ arguments: Record<string, {}>[];
214
214
  nestedSelection: string[];
215
215
  keys: string[];
216
216
  expectNonEmpty: boolean;
@@ -384,7 +384,7 @@ declare type Datasources = {
384
384
  };
385
385
 
386
386
  declare class DbNull extends NullTypesEnumValue {
387
- private readonly _brand_DbNull;
387
+ #private;
388
388
  }
389
389
 
390
390
  export declare const Debug: typeof debugCreate & {
@@ -2021,7 +2021,7 @@ declare type JsonFieldSelection = {
2021
2021
  };
2022
2022
 
2023
2023
  declare class JsonNull extends NullTypesEnumValue {
2024
- private readonly _brand_JsonNull;
2024
+ #private;
2025
2025
  }
2026
2026
 
2027
2027
  /**
@@ -2688,8 +2688,8 @@ declare interface Queryable<Query, Result> extends AdapterInfo {
2688
2688
  }
2689
2689
 
2690
2690
  declare type QueryCompiler = {
2691
- compile(request: string): Promise<string>;
2692
- compileBatch(batchRequest: string): Promise<BatchResponse>;
2691
+ compile(request: string): string;
2692
+ compileBatch(batchRequest: string): BatchResponse;
2693
2693
  };
2694
2694
 
2695
2695
  declare interface QueryCompilerConstructor {
@@ -47,7 +47,7 @@ export declare type AllModelsToStringIndex<TypeMap extends TypeMapDef, Args exte
47
47
  } : {};
48
48
 
49
49
  declare class AnyNull extends NullTypesEnumValue {
50
- private readonly _brand_AnyNull;
50
+ #private;
51
51
  }
52
52
 
53
53
  export declare type ApplyOmit<T, OmitConfig> = Compute<{
@@ -210,7 +210,7 @@ declare const ColumnTypeEnum: {
210
210
  declare type CompactedBatchResponse = {
211
211
  type: 'compacted';
212
212
  plan: object;
213
- arguments: Map<string, {}>[];
213
+ arguments: Record<string, {}>[];
214
214
  nestedSelection: string[];
215
215
  keys: string[];
216
216
  expectNonEmpty: boolean;
@@ -384,7 +384,7 @@ declare type Datasources = {
384
384
  };
385
385
 
386
386
  declare class DbNull extends NullTypesEnumValue {
387
- private readonly _brand_DbNull;
387
+ #private;
388
388
  }
389
389
 
390
390
  export declare const Debug: typeof debugCreate & {
@@ -2021,7 +2021,7 @@ declare type JsonFieldSelection = {
2021
2021
  };
2022
2022
 
2023
2023
  declare class JsonNull extends NullTypesEnumValue {
2024
- private readonly _brand_JsonNull;
2024
+ #private;
2025
2025
  }
2026
2026
 
2027
2027
  /**
@@ -2688,8 +2688,8 @@ declare interface Queryable<Query, Result> extends AdapterInfo {
2688
2688
  }
2689
2689
 
2690
2690
  declare type QueryCompiler = {
2691
- compile(request: string): Promise<string>;
2692
- compileBatch(batchRequest: string): Promise<BatchResponse>;
2691
+ compile(request: string): string;
2692
+ compileBatch(batchRequest: string): BatchResponse;
2693
2693
  };
2694
2694
 
2695
2695
  declare interface QueryCompilerConstructor {