@djangocfg/api 2.1.463 → 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/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.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
|
}
|