@hkdigital/lib-sveltekit 0.0.61 → 0.0.63
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/util/http/index.js
CHANGED
@@ -14,6 +14,8 @@ export * from './headers.js';
|
|
14
14
|
export * from './errors.js';
|
15
15
|
export * from './url.js';
|
16
16
|
export * from './response.js';
|
17
|
+
export * from './http-request.js';
|
18
|
+
export * from './json-request.js';
|
17
19
|
|
18
20
|
// import { CONTENT_TYPE, METHOD_GET, METHOD_POST } from '../../constants/http/index.js';
|
19
21
|
|
@@ -2,11 +2,11 @@ import { METHOD_GET, METHOD_POST } from '../../constants/http/methods.js';
|
|
2
2
|
|
3
3
|
import { APPLICATION_JSON } from '../../constants/mime/application.js';
|
4
4
|
import { CONTENT_TYPE } from '../../constants/http/headers.js';
|
5
|
+
import { ResponseError } from '../../constants/errors/index.js';
|
5
6
|
|
6
7
|
import * as expect from '../expect/index.js';
|
7
8
|
|
8
9
|
import { toURL } from './url.js';
|
9
|
-
import { ResponseError } from './errors.js';
|
10
10
|
import { httpRequest } from './http-request.js';
|
11
11
|
import { waitForAndCheckResponse } from './response.js';
|
12
12
|
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@hkdigital/lib-sveltekit",
|
3
|
-
"version": "0.0.
|
3
|
+
"version": "0.0.63",
|
4
4
|
"author": "Jens Kleinhout, HKdigital (https://hkdigital.nl)",
|
5
5
|
"license": "ISC",
|
6
6
|
"repository": {
|
@@ -201,27 +201,27 @@
|
|
201
201
|
"@playwright/test": "^1.49.1",
|
202
202
|
"@sveltejs/adapter-auto": "^3.3.1",
|
203
203
|
"@sveltejs/package": "^2.3.7",
|
204
|
-
"@sveltejs/vite-plugin-svelte": "^5.0.
|
204
|
+
"@sveltejs/vite-plugin-svelte": "^5.0.3",
|
205
205
|
"@types/eslint": "^9.6.1",
|
206
206
|
"autoprefixer": "^10.4.20",
|
207
207
|
"eslint": "^9.17.0",
|
208
208
|
"eslint-config-prettier": "^9.1.0",
|
209
209
|
"eslint-plugin-svelte": "^2.46.1",
|
210
|
-
"globals": "^15.
|
210
|
+
"globals": "^15.14.0",
|
211
211
|
"prettier": "^3.4.2",
|
212
212
|
"prettier-plugin-svelte": "^3.3.2",
|
213
213
|
"prettier-plugin-tailwindcss": "^0.6.9",
|
214
214
|
"publint": "^0.2.12",
|
215
|
-
"svelte": "^5.14.
|
215
|
+
"svelte": "^5.14.4",
|
216
216
|
"svelte-check": "^4.1.1",
|
217
|
-
"tailwindcss": "^3.4.
|
217
|
+
"tailwindcss": "^3.4.17",
|
218
218
|
"typescript": "^5.7.2",
|
219
219
|
"vite": "^6.0.3",
|
220
220
|
"vitest": "^2.1.8"
|
221
221
|
},
|
222
222
|
"dependencies": {
|
223
223
|
"@sveltejs/kit": "^2.12.1",
|
224
|
-
"runed": "^0.
|
224
|
+
"runed": "^0.20.0",
|
225
225
|
"valibot": "^0.42.1",
|
226
226
|
"zod": "^3.24.1"
|
227
227
|
}
|