@sapphire/fetch 2.4.2-next.0c4decc.0 β 2.4.2-next.0da14d1.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/README.md +6 -0
- package/dist/index.global.js +1 -2
- package/dist/index.js +1 -2
- package/dist/index.mjs +1 -0
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -185,6 +185,12 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
|
|
|
185
185
|
<td align="center"><a href="https://enes.ovh/"><img src="https://avatars.githubusercontent.com/u/61084101?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Enes GenΓ§</b></sub></a><br /><a href="https://github.com/sapphiredev/utilities/commits?author=enxg" title="Code">π»</a></td>
|
|
186
186
|
<td align="center"><a href="https://github.com/muchnameless"><img src="https://avatars.githubusercontent.com/u/12682826?v=4?s=100" width="100px;" alt=""/><br /><sub><b>muchnameless</b></sub></a><br /><a href="https://github.com/sapphiredev/utilities/commits?author=muchnameless" title="Code">π»</a></td>
|
|
187
187
|
<td align="center"><a href="https://github.com/r-priyam"><img src="https://avatars.githubusercontent.com/u/50884372?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Priyam</b></sub></a><br /><a href="https://github.com/sapphiredev/utilities/commits?author=r-priyam" title="Code">π»</a></td>
|
|
188
|
+
<td align="center"><a href="https://github.com/legendhimslef"><img src="https://avatars.githubusercontent.com/u/69213593?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Voxelli</b></sub></a><br /><a href="https://github.com/sapphiredev/utilities/commits?author=legendhimslef" title="Code">π»</a></td>
|
|
189
|
+
<td align="center"><a href="https://github.com/CitTheDev"><img src="https://avatars.githubusercontent.com/u/94020875?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Cit The Dev</b></sub></a><br /><a href="https://github.com/sapphiredev/utilities/commits?author=CitTheDev" title="Code">π»</a></td>
|
|
190
|
+
</tr>
|
|
191
|
+
<tr>
|
|
192
|
+
<td align="center"><a href="https://www.goestav.com/"><img src="https://avatars.githubusercontent.com/u/27970303?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Goestav</b></sub></a><br /><a href="https://github.com/sapphiredev/utilities/commits?author=goestav" title="Code">π»</a></td>
|
|
193
|
+
<td align="center"><a href="https://github.com/didinele"><img src="https://avatars.githubusercontent.com/u/27137376?v=4?s=100" width="100px;" alt=""/><br /><sub><b>DD</b></sub></a><br /><a href="https://github.com/sapphiredev/utilities/commits?author=didinele" title="Code">π»</a></td>
|
|
188
194
|
</tr>
|
|
189
195
|
</table>
|
|
190
196
|
|
package/dist/index.global.js
CHANGED
|
@@ -148,9 +148,8 @@ var SapphireFetch = (function (exports) {
|
|
|
148
148
|
exports.QueryError = QueryError;
|
|
149
149
|
exports.fetch = fetch;
|
|
150
150
|
|
|
151
|
-
Object.defineProperty(exports, '__esModule', { value: true });
|
|
152
|
-
|
|
153
151
|
return exports;
|
|
154
152
|
|
|
155
153
|
})({});
|
|
154
|
+
//# sourceMappingURL=out.js.map
|
|
156
155
|
//# sourceMappingURL=index.global.js.map
|
package/dist/index.js
CHANGED
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
-
|
|
5
3
|
globalThis && globalThis.fetch ? globalThis.fetch : globalThis.fetch = require("cross-fetch");
|
|
6
4
|
var __defProp = Object.defineProperty;
|
|
7
5
|
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
@@ -149,4 +147,5 @@ exports.FetchMethods = FetchMethods;
|
|
|
149
147
|
exports.FetchResultTypes = FetchResultTypes;
|
|
150
148
|
exports.QueryError = QueryError;
|
|
151
149
|
exports.fetch = fetch;
|
|
150
|
+
//# sourceMappingURL=out.js.map
|
|
152
151
|
//# sourceMappingURL=index.js.map
|
package/dist/index.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sapphire/fetch",
|
|
3
|
-
"version": "2.4.2-next.
|
|
3
|
+
"version": "2.4.2-next.0da14d1.0",
|
|
4
4
|
"description": "Tiny wrapper around cross-fetch (for NodeJS) and window.fetch (for Browsers) for improved TypeScript and data type support",
|
|
5
5
|
"author": "@sapphire",
|
|
6
6
|
"license": "MIT",
|
|
@@ -60,11 +60,11 @@
|
|
|
60
60
|
},
|
|
61
61
|
"devDependencies": {
|
|
62
62
|
"@favware/cliff-jumper": "^1.8.8",
|
|
63
|
-
"@vitest/coverage-c8": "^0.24.
|
|
64
|
-
"tsup": "^6.
|
|
65
|
-
"typedoc": "^0.23.
|
|
66
|
-
"typedoc-json-parser": "^
|
|
63
|
+
"@vitest/coverage-c8": "^0.24.5",
|
|
64
|
+
"tsup": "^6.4.0",
|
|
65
|
+
"typedoc": "^0.23.20",
|
|
66
|
+
"typedoc-json-parser": "^7.0.1",
|
|
67
67
|
"typescript": "^4.8.4",
|
|
68
|
-
"vitest": "^0.24.
|
|
68
|
+
"vitest": "^0.24.5"
|
|
69
69
|
}
|
|
70
70
|
}
|