@zimic/interceptor 1.3.6-canary.4 → 1.4.0

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.
package/dist/http.mjs CHANGED
@@ -557,6 +557,10 @@ var HttpRequestHandlerImplementation = class {
557
557
  this.path = path;
558
558
  this.handler = handler;
559
559
  }
560
+ interceptor;
561
+ method;
562
+ path;
563
+ handler;
560
564
  restrictions = [];
561
565
  limits = {
562
566
  numberOfRequests: DEFAULT_NUMBER_OF_REQUEST_LIMITS
@@ -1994,6 +1998,7 @@ var UnauthorizedWebSocketConnectionError = class extends Error {
1994
1998
  this.event = event;
1995
1999
  this.name = "UnauthorizedWebSocketConnectionError";
1996
2000
  }
2001
+ event;
1997
2002
  };
1998
2003
  var UnauthorizedWebSocketConnectionError_default = UnauthorizedWebSocketConnectionError;
1999
2004