@djangocfg/api 2.1.464 → 2.1.466

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/index.mjs CHANGED
@@ -11,6 +11,10 @@ var APIError = class extends Error {
11
11
  this.url = url;
12
12
  this.name = "APIError";
13
13
  }
14
+ statusCode;
15
+ statusText;
16
+ response;
17
+ url;
14
18
  static {
15
19
  __name(this, "APIError");
16
20
  }
@@ -67,6 +71,8 @@ var NetworkError = class extends Error {
67
71
  this.originalError = originalError;
68
72
  this.name = "NetworkError";
69
73
  }
74
+ url;
75
+ originalError;
70
76
  static {
71
77
  __name(this, "NetworkError");
72
78
  }
@@ -2327,6 +2333,7 @@ var CookieStorageAdapter = class {
2327
2333
  constructor(opts = {}) {
2328
2334
  this.opts = opts;
2329
2335
  }
2336
+ opts;
2330
2337
  static {
2331
2338
  __name(this, "CookieStorageAdapter");
2332
2339
  }