prisma 6.7.0-dev.3 → 6.7.0-dev.4

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.
@@ -832,12 +832,6 @@ declare type Document_2 = ReadonlyDeep_2<{
832
832
  mappings: Mappings;
833
833
  }>;
834
834
 
835
- declare class DriverAdapterError extends Error {
836
- name: string;
837
- cause: Error_2;
838
- constructor(payload: Error_2);
839
- }
840
-
841
835
  /**
842
836
  * A generic driver adapter factory that allows the user to instantiate a
843
837
  * driver adapter. The query and result types are specific to the adapter.
@@ -2890,7 +2884,6 @@ declare class RequestHandler {
2890
2884
  handleRequestError({ error, clientMethod, callsite, transaction, args, modelName, globalOmit, }: HandleErrorParams): never;
2891
2885
  sanitizeMessage(message: any): any;
2892
2886
  unpack(data: unknown, dataPath: string[], unpacker?: Unpacker): any;
2893
- convertAdapterToUserFacingError(err: DriverAdapterError): PrismaClientKnownRequestError | undefined;
2894
2887
  get [Symbol.toStringTag](): string;
2895
2888
  }
2896
2889