@djangocfg/api 2.1.464 → 2.1.465

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.cjs CHANGED
@@ -70,6 +70,10 @@ var APIError = class extends Error {
70
70
  this.url = url;
71
71
  this.name = "APIError";
72
72
  }
73
+ statusCode;
74
+ statusText;
75
+ response;
76
+ url;
73
77
  static {
74
78
  __name(this, "APIError");
75
79
  }
@@ -126,6 +130,8 @@ var NetworkError = class extends Error {
126
130
  this.originalError = originalError;
127
131
  this.name = "NetworkError";
128
132
  }
133
+ url;
134
+ originalError;
129
135
  static {
130
136
  __name(this, "NetworkError");
131
137
  }
@@ -2386,6 +2392,7 @@ var CookieStorageAdapter = class {
2386
2392
  constructor(opts = {}) {
2387
2393
  this.opts = opts;
2388
2394
  }
2395
+ opts;
2389
2396
  static {
2390
2397
  __name(this, "CookieStorageAdapter");
2391
2398
  }