@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/auth.cjs +4 -0
- package/dist/auth.cjs.map +1 -1
- package/dist/auth.d.cts +7 -7
- package/dist/auth.d.ts +7 -7
- package/dist/auth.mjs +4 -0
- package/dist/auth.mjs.map +1 -1
- package/dist/clients.cjs +4 -0
- package/dist/clients.cjs.map +1 -1
- package/dist/clients.mjs +4 -0
- package/dist/clients.mjs.map +1 -1
- package/dist/hooks.cjs +4 -0
- package/dist/hooks.cjs.map +1 -1
- package/dist/hooks.mjs +4 -0
- package/dist/hooks.mjs.map +1 -1
- package/dist/index.cjs +7 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +7 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +8 -8
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
|
}
|