@planqk/planqk-api-sdk 1.2.0 → 1.3.1
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/.env.template +2 -1
- package/.gitlab-ci.yml +1 -0
- package/README-node.md +13 -0
- package/README-python.md +13 -0
- package/README.md +6 -49
- package/apps/README.md +24 -0
- package/apps/python-test-app/main.py +159 -0
- package/apps/test-file.txt +1 -0
- package/apps/ts-test-app/index.ts +140 -0
- package/apps/ts-test-app/package-lock.json +695 -0
- package/apps/ts-test-app/package.json +15 -0
- package/apps/ts-test-app/tsconfig.json +11 -0
- package/dist/index.d.ts +1 -4
- package/dist/index.js +4 -31
- package/dist/{Client.d.ts → sdk/Client.d.ts} +2 -5
- package/dist/{Client.js → sdk/Client.js} +1 -6
- package/dist/{api → sdk/api}/resources/dataPools/client/Client.d.ts +3 -3
- package/dist/{api → sdk/api}/resources/dataPools/client/Client.js +1 -1
- package/dist/sdk/api/resources/index.d.ts +2 -0
- package/dist/{api → sdk/api}/resources/index.js +1 -3
- package/dist/sdk/api/types/index.d.ts +3 -0
- package/dist/{api/resources/authentication → sdk/api}/types/index.js +3 -1
- package/dist/sdk/index.d.ts +4 -0
- package/dist/sdk/index.js +44 -0
- package/fern/fern.config.json +1 -1
- package/fern/openapi/openapi.json +2 -202
- package/notebooks/python-sdk.ipynb +2 -1
- package/package.json +3 -4
- package/planqk/api/_version.py +1 -1
- package/planqk/api/client.py +5 -2
- package/planqk/api/sdk/__init__.py +2 -34
- package/planqk/api/sdk/client.py +0 -3
- package/planqk/api/sdk/types/__init__.py +1 -30
- package/pyproject.toml +3 -6
- package/src/index.test.ts +6 -5
- package/src/index.ts +1 -4
- package/src/{Client.ts → sdk/Client.ts} +2 -8
- package/src/{api → sdk/api}/resources/dataPools/client/Client.ts +2 -2
- package/src/sdk/api/resources/index.ts +2 -0
- package/src/sdk/api/types/index.ts +3 -0
- package/src/sdk/index.ts +4 -0
- package/uv.lock +658 -324
- package/dist/api/resources/authentication/client/Client.d.ts +0 -55
- package/dist/api/resources/authentication/client/Client.js +0 -126
- package/dist/api/resources/authentication/client/index.d.ts +0 -1
- package/dist/api/resources/authentication/index.d.ts +0 -2
- package/dist/api/resources/authentication/index.js +0 -18
- package/dist/api/resources/authentication/types/AuthorizeResponse.d.ts +0 -5
- package/dist/api/resources/authentication/types/AuthorizeResponse.js +0 -5
- package/dist/api/resources/authentication/types/index.d.ts +0 -1
- package/dist/api/resources/dataPools/client/requests/index.js +0 -2
- package/dist/api/resources/index.d.ts +0 -4
- package/dist/api/types/AccessToken.d.ts +0 -10
- package/dist/api/types/AccessToken.js +0 -5
- package/dist/api/types/OrganizationMembership.d.ts +0 -22
- package/dist/api/types/OrganizationMembership.js +0 -19
- package/dist/api/types/PersonalAccessTokenPrincipal.d.ts +0 -18
- package/dist/api/types/PersonalAccessTokenPrincipal.js +0 -14
- package/dist/api/types/ServiceExecution.d.ts +0 -20
- package/dist/api/types/ServiceExecution.js +0 -16
- package/dist/api/types/ServiceExecutionTokenPrincipal.d.ts +0 -8
- package/dist/api/types/ServiceExecutionTokenPrincipal.js +0 -5
- package/dist/api/types/UserContext.d.ts +0 -24
- package/dist/api/types/UserContext.js +0 -19
- package/dist/api/types/index.d.ts +0 -9
- package/dist/api/types/index.js +0 -25
- package/planqk/api/sdk/authentication/__init__.py +0 -7
- package/planqk/api/sdk/authentication/client.py +0 -102
- package/planqk/api/sdk/authentication/raw_client.py +0 -183
- package/planqk/api/sdk/authentication/types/__init__.py +0 -7
- package/planqk/api/sdk/authentication/types/authorize_response.py +0 -8
- package/planqk/api/sdk/types/access_token.py +0 -26
- package/planqk/api/sdk/types/organization_membership.py +0 -27
- package/planqk/api/sdk/types/organization_membership_account_type.py +0 -5
- package/planqk/api/sdk/types/organization_membership_role.py +0 -5
- package/planqk/api/sdk/types/personal_access_token_principal.py +0 -31
- package/planqk/api/sdk/types/personal_access_token_principal_account_type.py +0 -5
- package/planqk/api/sdk/types/service_execution.py +0 -27
- package/planqk/api/sdk/types/service_execution_status.py +0 -7
- package/planqk/api/sdk/types/service_execution_token_principal.py +0 -34
- package/planqk/api/sdk/types/user_context.py +0 -35
- package/planqk/api/sdk/types/user_context_account_type.py +0 -5
- package/planqk/api/sdk/types/user_context_context_type.py +0 -5
- package/src/api/resources/authentication/client/Client.ts +0 -134
- package/src/api/resources/authentication/client/index.ts +0 -1
- package/src/api/resources/authentication/index.ts +0 -2
- package/src/api/resources/authentication/types/AuthorizeResponse.ts +0 -7
- package/src/api/resources/authentication/types/index.ts +0 -1
- package/src/api/resources/index.ts +0 -4
- package/src/api/types/AccessToken.ts +0 -11
- package/src/api/types/OrganizationMembership.ts +0 -24
- package/src/api/types/PersonalAccessTokenPrincipal.ts +0 -21
- package/src/api/types/ServiceExecution.ts +0 -22
- package/src/api/types/ServiceExecutionTokenPrincipal.ts +0 -10
- package/src/api/types/UserContext.ts +0 -27
- package/src/api/types/index.ts +0 -9
- package/dist/{api → sdk/api}/errors/BadRequestError.d.ts +0 -0
- package/dist/{api → sdk/api}/errors/BadRequestError.js +0 -0
- package/dist/{api → sdk/api}/errors/ForbiddenError.d.ts +0 -0
- package/dist/{api → sdk/api}/errors/ForbiddenError.js +0 -0
- package/dist/{api → sdk/api}/errors/InternalServerError.d.ts +0 -0
- package/dist/{api → sdk/api}/errors/InternalServerError.js +0 -0
- package/dist/{api → sdk/api}/errors/NotFoundError.d.ts +0 -0
- package/dist/{api → sdk/api}/errors/NotFoundError.js +0 -0
- package/dist/{api → sdk/api}/errors/UnauthorizedError.d.ts +0 -0
- package/dist/{api → sdk/api}/errors/UnauthorizedError.js +0 -0
- package/dist/{api → sdk/api}/errors/index.d.ts +0 -0
- package/dist/{api → sdk/api}/errors/index.js +0 -0
- package/dist/{api → sdk/api}/index.d.ts +1 -1
- package/dist/{api → sdk/api}/index.js +1 -1
- package/dist/{api → sdk/api}/resources/dataPools/client/index.d.ts +0 -0
- package/dist/{api → sdk/api}/resources/dataPools/client/index.js +0 -0
- package/dist/{api → sdk/api}/resources/dataPools/client/requests/AddDataPoolFileRequest.d.ts +0 -0
- package/dist/{api → sdk/api}/resources/dataPools/client/requests/AddDataPoolFileRequest.js +0 -0
- package/dist/{api → sdk/api}/resources/dataPools/client/requests/CreateDataPoolRequest.d.ts +0 -0
- package/dist/{api → sdk/api}/resources/dataPools/client/requests/CreateDataPoolRequest.js +0 -0
- package/dist/{api → sdk/api}/resources/dataPools/client/requests/UpdateDataPoolRequest.d.ts +0 -0
- package/dist/{api → sdk/api}/resources/dataPools/client/requests/UpdateDataPoolRequest.js +0 -0
- package/dist/{api → sdk/api}/resources/dataPools/client/requests/index.d.ts +0 -0
- package/dist/{api/resources/authentication/client → sdk/api/resources/dataPools/client/requests}/index.js +0 -0
- package/dist/{api → sdk/api}/resources/dataPools/index.d.ts +0 -0
- package/dist/{api → sdk/api}/resources/dataPools/index.js +0 -0
- package/dist/{api → sdk/api}/types/DataPoolDto.d.ts +0 -0
- package/dist/{api → sdk/api}/types/DataPoolDto.js +0 -0
- package/dist/{api → sdk/api}/types/DataPoolFileDto.d.ts +0 -0
- package/dist/{api → sdk/api}/types/DataPoolFileDto.js +0 -0
- package/dist/{api → sdk/api}/types/OauthScope.d.ts +0 -0
- package/dist/{api → sdk/api}/types/OauthScope.js +0 -0
- package/dist/{core → sdk/core}/fetcher/APIResponse.d.ts +0 -0
- package/dist/{core → sdk/core}/fetcher/APIResponse.js +0 -0
- package/dist/{core → sdk/core}/fetcher/BinaryResponse.d.ts +0 -0
- package/dist/{core → sdk/core}/fetcher/BinaryResponse.js +0 -0
- package/dist/{core → sdk/core}/fetcher/Fetcher.d.ts +0 -0
- package/dist/{core → sdk/core}/fetcher/Fetcher.js +0 -0
- package/dist/{core → sdk/core}/fetcher/Headers.d.ts +0 -0
- package/dist/{core → sdk/core}/fetcher/Headers.js +0 -0
- package/dist/{core → sdk/core}/fetcher/HttpResponsePromise.d.ts +0 -0
- package/dist/{core → sdk/core}/fetcher/HttpResponsePromise.js +0 -0
- package/dist/{core → sdk/core}/fetcher/RawResponse.d.ts +0 -0
- package/dist/{core → sdk/core}/fetcher/RawResponse.js +0 -0
- package/dist/{core → sdk/core}/fetcher/ResponseWithBody.d.ts +0 -0
- package/dist/{core → sdk/core}/fetcher/ResponseWithBody.js +0 -0
- package/dist/{core → sdk/core}/fetcher/Supplier.d.ts +0 -0
- package/dist/{core → sdk/core}/fetcher/Supplier.js +0 -0
- package/dist/{core → sdk/core}/fetcher/createRequestUrl.d.ts +0 -0
- package/dist/{core → sdk/core}/fetcher/createRequestUrl.js +0 -0
- package/dist/{core → sdk/core}/fetcher/getErrorResponseBody.d.ts +0 -0
- package/dist/{core → sdk/core}/fetcher/getErrorResponseBody.js +0 -0
- package/dist/{core → sdk/core}/fetcher/getFetchFn.d.ts +0 -0
- package/dist/{core → sdk/core}/fetcher/getFetchFn.js +0 -0
- package/dist/{core → sdk/core}/fetcher/getHeader.d.ts +0 -0
- package/dist/{core → sdk/core}/fetcher/getHeader.js +0 -0
- package/dist/{core → sdk/core}/fetcher/getRequestBody.d.ts +0 -0
- package/dist/{core → sdk/core}/fetcher/getRequestBody.js +0 -0
- package/dist/{core → sdk/core}/fetcher/getResponseBody.d.ts +0 -0
- package/dist/{core → sdk/core}/fetcher/getResponseBody.js +0 -0
- package/dist/{core → sdk/core}/fetcher/index.d.ts +0 -0
- package/dist/{core → sdk/core}/fetcher/index.js +0 -0
- package/dist/{core → sdk/core}/fetcher/makeRequest.d.ts +0 -0
- package/dist/{core → sdk/core}/fetcher/makeRequest.js +0 -0
- package/dist/{core → sdk/core}/fetcher/requestWithRetries.d.ts +0 -0
- package/dist/{core → sdk/core}/fetcher/requestWithRetries.js +0 -0
- package/dist/{core → sdk/core}/fetcher/signals.d.ts +0 -0
- package/dist/{core → sdk/core}/fetcher/signals.js +0 -0
- package/dist/{core → sdk/core}/file.d.ts +0 -0
- package/dist/{core → sdk/core}/file.js +0 -0
- package/dist/{core → sdk/core}/form-data-utils/FormDataWrapper.d.ts +0 -0
- package/dist/{core → sdk/core}/form-data-utils/FormDataWrapper.js +0 -0
- package/dist/{core → sdk/core}/form-data-utils/encodeAsFormParameter.d.ts +0 -0
- package/dist/{core → sdk/core}/form-data-utils/encodeAsFormParameter.js +0 -0
- package/dist/{core → sdk/core}/form-data-utils/index.d.ts +0 -0
- package/dist/{core → sdk/core}/form-data-utils/index.js +0 -0
- package/dist/{core → sdk/core}/headers.d.ts +0 -0
- package/dist/{core → sdk/core}/headers.js +0 -0
- package/dist/{core → sdk/core}/index.d.ts +0 -0
- package/dist/{core → sdk/core}/index.js +0 -0
- package/dist/{core → sdk/core}/json.d.ts +0 -0
- package/dist/{core → sdk/core}/json.js +0 -0
- package/dist/{core → sdk/core}/runtime/index.d.ts +0 -0
- package/dist/{core → sdk/core}/runtime/index.js +0 -0
- package/dist/{core → sdk/core}/runtime/runtime.d.ts +0 -0
- package/dist/{core → sdk/core}/runtime/runtime.js +0 -0
- package/dist/{core → sdk/core}/url/index.d.ts +0 -0
- package/dist/{core → sdk/core}/url/index.js +0 -0
- package/dist/{core → sdk/core}/url/join.d.ts +0 -0
- package/dist/{core → sdk/core}/url/join.js +0 -0
- package/dist/{core → sdk/core}/url/qs.d.ts +0 -0
- package/dist/{core → sdk/core}/url/qs.js +0 -0
- package/dist/{environments.d.ts → sdk/environments.d.ts} +0 -0
- package/dist/{environments.js → sdk/environments.js} +0 -0
- package/dist/{errors → sdk/errors}/PlanqkApiError.d.ts +0 -0
- package/dist/{errors → sdk/errors}/PlanqkApiError.js +0 -0
- package/dist/{errors → sdk/errors}/PlanqkApiTimeoutError.d.ts +0 -0
- package/dist/{errors → sdk/errors}/PlanqkApiTimeoutError.js +0 -0
- package/dist/{errors → sdk/errors}/index.d.ts +0 -0
- package/dist/{errors → sdk/errors}/index.js +0 -0
- package/src/{api → sdk/api}/errors/BadRequestError.ts +0 -0
- package/src/{api → sdk/api}/errors/ForbiddenError.ts +0 -0
- package/src/{api → sdk/api}/errors/InternalServerError.ts +0 -0
- package/src/{api → sdk/api}/errors/NotFoundError.ts +0 -0
- package/src/{api → sdk/api}/errors/UnauthorizedError.ts +0 -0
- package/src/{api → sdk/api}/errors/index.ts +0 -0
- package/src/{api → sdk/api}/index.ts +1 -1
- /package/src/{api → sdk/api}/resources/dataPools/client/index.ts +0 -0
- /package/src/{api → sdk/api}/resources/dataPools/client/requests/AddDataPoolFileRequest.ts +0 -0
- /package/src/{api → sdk/api}/resources/dataPools/client/requests/CreateDataPoolRequest.ts +0 -0
- /package/src/{api → sdk/api}/resources/dataPools/client/requests/UpdateDataPoolRequest.ts +0 -0
- /package/src/{api → sdk/api}/resources/dataPools/client/requests/index.ts +0 -0
- /package/src/{api → sdk/api}/resources/dataPools/index.ts +0 -0
- /package/src/{api → sdk/api}/types/DataPoolDto.ts +0 -0
- /package/src/{api → sdk/api}/types/DataPoolFileDto.ts +0 -0
- /package/src/{api → sdk/api}/types/OauthScope.ts +0 -0
- /package/src/{core → sdk/core}/fetcher/APIResponse.ts +0 -0
- /package/src/{core → sdk/core}/fetcher/BinaryResponse.ts +0 -0
- /package/src/{core → sdk/core}/fetcher/Fetcher.ts +0 -0
- /package/src/{core → sdk/core}/fetcher/Headers.ts +0 -0
- /package/src/{core → sdk/core}/fetcher/HttpResponsePromise.ts +0 -0
- /package/src/{core → sdk/core}/fetcher/RawResponse.ts +0 -0
- /package/src/{core → sdk/core}/fetcher/ResponseWithBody.ts +0 -0
- /package/src/{core → sdk/core}/fetcher/Supplier.ts +0 -0
- /package/src/{core → sdk/core}/fetcher/createRequestUrl.ts +0 -0
- /package/src/{core → sdk/core}/fetcher/getErrorResponseBody.ts +0 -0
- /package/src/{core → sdk/core}/fetcher/getFetchFn.ts +0 -0
- /package/src/{core → sdk/core}/fetcher/getHeader.ts +0 -0
- /package/src/{core → sdk/core}/fetcher/getRequestBody.ts +0 -0
- /package/src/{core → sdk/core}/fetcher/getResponseBody.ts +0 -0
- /package/src/{core → sdk/core}/fetcher/index.ts +0 -0
- /package/src/{core → sdk/core}/fetcher/makeRequest.ts +0 -0
- /package/src/{core → sdk/core}/fetcher/requestWithRetries.ts +0 -0
- /package/src/{core → sdk/core}/fetcher/signals.ts +0 -0
- /package/src/{core → sdk/core}/file.ts +0 -0
- /package/src/{core → sdk/core}/form-data-utils/FormDataWrapper.ts +0 -0
- /package/src/{core → sdk/core}/form-data-utils/encodeAsFormParameter.ts +0 -0
- /package/src/{core → sdk/core}/form-data-utils/index.ts +0 -0
- /package/src/{core → sdk/core}/headers.ts +0 -0
- /package/src/{core → sdk/core}/index.ts +0 -0
- /package/src/{core → sdk/core}/json.ts +0 -0
- /package/src/{core → sdk/core}/runtime/index.ts +0 -0
- /package/src/{core → sdk/core}/runtime/runtime.ts +0 -0
- /package/src/{core → sdk/core}/url/index.ts +0 -0
- /package/src/{core → sdk/core}/url/join.ts +0 -0
- /package/src/{core → sdk/core}/url/qs.ts +0 -0
- /package/src/{environments.ts → sdk/environments.ts} +0 -0
- /package/src/{errors → sdk/errors}/PlanqkApiError.ts +0 -0
- /package/src/{errors → sdk/errors}/PlanqkApiTimeoutError.ts +0 -0
- /package/src/{errors → sdk/errors}/index.ts +0 -0
|
@@ -0,0 +1,695 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "ts-test-app",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"lockfileVersion": 3,
|
|
5
|
+
"requires": true,
|
|
6
|
+
"packages": {
|
|
7
|
+
"": {
|
|
8
|
+
"name": "ts-test-app",
|
|
9
|
+
"version": "1.0.0",
|
|
10
|
+
"dependencies": {
|
|
11
|
+
"@planqk/planqk-api-sdk": "^1"
|
|
12
|
+
},
|
|
13
|
+
"devDependencies": {
|
|
14
|
+
"@types/node": "^22",
|
|
15
|
+
"typescript": "^5"
|
|
16
|
+
}
|
|
17
|
+
},
|
|
18
|
+
"node_modules/@planqk/planqk-api-sdk": {
|
|
19
|
+
"version": "1.2.0",
|
|
20
|
+
"resolved": "https://registry.npmjs.org/@planqk/planqk-api-sdk/-/planqk-api-sdk-1.2.0.tgz",
|
|
21
|
+
"integrity": "sha512-P5rn6HcJjz+CvKP5ZCGQxy/QMav4njpVGF28dPedhEFw75drETPuoaMlbhJALbUrgxQFq3CRi6uJZsbLTXiu3A==",
|
|
22
|
+
"license": "Apache-2.0",
|
|
23
|
+
"dependencies": {
|
|
24
|
+
"form-data": "^4",
|
|
25
|
+
"form-data-encoder": "^4",
|
|
26
|
+
"formdata-node": "^6",
|
|
27
|
+
"js-base64": "^3",
|
|
28
|
+
"node-fetch": "^3",
|
|
29
|
+
"qs": "^6",
|
|
30
|
+
"readable-stream": "^4",
|
|
31
|
+
"url-join": "^5"
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
"node_modules/@types/node": {
|
|
35
|
+
"version": "22.17.0",
|
|
36
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-22.17.0.tgz",
|
|
37
|
+
"integrity": "sha512-bbAKTCqX5aNVryi7qXVMi+OkB3w/OyblodicMbvE38blyAz7GxXf6XYhklokijuPwwVg9sDLKRxt0ZHXQwZVfQ==",
|
|
38
|
+
"dev": true,
|
|
39
|
+
"license": "MIT",
|
|
40
|
+
"dependencies": {
|
|
41
|
+
"undici-types": "~6.21.0"
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
"node_modules/abort-controller": {
|
|
45
|
+
"version": "3.0.0",
|
|
46
|
+
"resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz",
|
|
47
|
+
"integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==",
|
|
48
|
+
"license": "MIT",
|
|
49
|
+
"dependencies": {
|
|
50
|
+
"event-target-shim": "^5.0.0"
|
|
51
|
+
},
|
|
52
|
+
"engines": {
|
|
53
|
+
"node": ">=6.5"
|
|
54
|
+
}
|
|
55
|
+
},
|
|
56
|
+
"node_modules/asynckit": {
|
|
57
|
+
"version": "0.4.0",
|
|
58
|
+
"resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
|
|
59
|
+
"integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==",
|
|
60
|
+
"license": "MIT"
|
|
61
|
+
},
|
|
62
|
+
"node_modules/base64-js": {
|
|
63
|
+
"version": "1.5.1",
|
|
64
|
+
"resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
|
|
65
|
+
"integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==",
|
|
66
|
+
"funding": [
|
|
67
|
+
{
|
|
68
|
+
"type": "github",
|
|
69
|
+
"url": "https://github.com/sponsors/feross"
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"type": "patreon",
|
|
73
|
+
"url": "https://www.patreon.com/feross"
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"type": "consulting",
|
|
77
|
+
"url": "https://feross.org/support"
|
|
78
|
+
}
|
|
79
|
+
],
|
|
80
|
+
"license": "MIT"
|
|
81
|
+
},
|
|
82
|
+
"node_modules/buffer": {
|
|
83
|
+
"version": "6.0.3",
|
|
84
|
+
"resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz",
|
|
85
|
+
"integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==",
|
|
86
|
+
"funding": [
|
|
87
|
+
{
|
|
88
|
+
"type": "github",
|
|
89
|
+
"url": "https://github.com/sponsors/feross"
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"type": "patreon",
|
|
93
|
+
"url": "https://www.patreon.com/feross"
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"type": "consulting",
|
|
97
|
+
"url": "https://feross.org/support"
|
|
98
|
+
}
|
|
99
|
+
],
|
|
100
|
+
"license": "MIT",
|
|
101
|
+
"dependencies": {
|
|
102
|
+
"base64-js": "^1.3.1",
|
|
103
|
+
"ieee754": "^1.2.1"
|
|
104
|
+
}
|
|
105
|
+
},
|
|
106
|
+
"node_modules/call-bind-apply-helpers": {
|
|
107
|
+
"version": "1.0.2",
|
|
108
|
+
"resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
|
|
109
|
+
"integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
|
|
110
|
+
"license": "MIT",
|
|
111
|
+
"dependencies": {
|
|
112
|
+
"es-errors": "^1.3.0",
|
|
113
|
+
"function-bind": "^1.1.2"
|
|
114
|
+
},
|
|
115
|
+
"engines": {
|
|
116
|
+
"node": ">= 0.4"
|
|
117
|
+
}
|
|
118
|
+
},
|
|
119
|
+
"node_modules/call-bound": {
|
|
120
|
+
"version": "1.0.4",
|
|
121
|
+
"resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz",
|
|
122
|
+
"integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==",
|
|
123
|
+
"license": "MIT",
|
|
124
|
+
"dependencies": {
|
|
125
|
+
"call-bind-apply-helpers": "^1.0.2",
|
|
126
|
+
"get-intrinsic": "^1.3.0"
|
|
127
|
+
},
|
|
128
|
+
"engines": {
|
|
129
|
+
"node": ">= 0.4"
|
|
130
|
+
},
|
|
131
|
+
"funding": {
|
|
132
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
133
|
+
}
|
|
134
|
+
},
|
|
135
|
+
"node_modules/combined-stream": {
|
|
136
|
+
"version": "1.0.8",
|
|
137
|
+
"resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
|
|
138
|
+
"integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
|
|
139
|
+
"license": "MIT",
|
|
140
|
+
"dependencies": {
|
|
141
|
+
"delayed-stream": "~1.0.0"
|
|
142
|
+
},
|
|
143
|
+
"engines": {
|
|
144
|
+
"node": ">= 0.8"
|
|
145
|
+
}
|
|
146
|
+
},
|
|
147
|
+
"node_modules/data-uri-to-buffer": {
|
|
148
|
+
"version": "4.0.1",
|
|
149
|
+
"resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-4.0.1.tgz",
|
|
150
|
+
"integrity": "sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==",
|
|
151
|
+
"license": "MIT",
|
|
152
|
+
"engines": {
|
|
153
|
+
"node": ">= 12"
|
|
154
|
+
}
|
|
155
|
+
},
|
|
156
|
+
"node_modules/delayed-stream": {
|
|
157
|
+
"version": "1.0.0",
|
|
158
|
+
"resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
|
|
159
|
+
"integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==",
|
|
160
|
+
"license": "MIT",
|
|
161
|
+
"engines": {
|
|
162
|
+
"node": ">=0.4.0"
|
|
163
|
+
}
|
|
164
|
+
},
|
|
165
|
+
"node_modules/dunder-proto": {
|
|
166
|
+
"version": "1.0.1",
|
|
167
|
+
"resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
|
|
168
|
+
"integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
|
|
169
|
+
"license": "MIT",
|
|
170
|
+
"dependencies": {
|
|
171
|
+
"call-bind-apply-helpers": "^1.0.1",
|
|
172
|
+
"es-errors": "^1.3.0",
|
|
173
|
+
"gopd": "^1.2.0"
|
|
174
|
+
},
|
|
175
|
+
"engines": {
|
|
176
|
+
"node": ">= 0.4"
|
|
177
|
+
}
|
|
178
|
+
},
|
|
179
|
+
"node_modules/es-define-property": {
|
|
180
|
+
"version": "1.0.1",
|
|
181
|
+
"resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
|
|
182
|
+
"integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
|
|
183
|
+
"license": "MIT",
|
|
184
|
+
"engines": {
|
|
185
|
+
"node": ">= 0.4"
|
|
186
|
+
}
|
|
187
|
+
},
|
|
188
|
+
"node_modules/es-errors": {
|
|
189
|
+
"version": "1.3.0",
|
|
190
|
+
"resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
|
|
191
|
+
"integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
|
|
192
|
+
"license": "MIT",
|
|
193
|
+
"engines": {
|
|
194
|
+
"node": ">= 0.4"
|
|
195
|
+
}
|
|
196
|
+
},
|
|
197
|
+
"node_modules/es-object-atoms": {
|
|
198
|
+
"version": "1.1.1",
|
|
199
|
+
"resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz",
|
|
200
|
+
"integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==",
|
|
201
|
+
"license": "MIT",
|
|
202
|
+
"dependencies": {
|
|
203
|
+
"es-errors": "^1.3.0"
|
|
204
|
+
},
|
|
205
|
+
"engines": {
|
|
206
|
+
"node": ">= 0.4"
|
|
207
|
+
}
|
|
208
|
+
},
|
|
209
|
+
"node_modules/es-set-tostringtag": {
|
|
210
|
+
"version": "2.1.0",
|
|
211
|
+
"resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz",
|
|
212
|
+
"integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==",
|
|
213
|
+
"license": "MIT",
|
|
214
|
+
"dependencies": {
|
|
215
|
+
"es-errors": "^1.3.0",
|
|
216
|
+
"get-intrinsic": "^1.2.6",
|
|
217
|
+
"has-tostringtag": "^1.0.2",
|
|
218
|
+
"hasown": "^2.0.2"
|
|
219
|
+
},
|
|
220
|
+
"engines": {
|
|
221
|
+
"node": ">= 0.4"
|
|
222
|
+
}
|
|
223
|
+
},
|
|
224
|
+
"node_modules/event-target-shim": {
|
|
225
|
+
"version": "5.0.1",
|
|
226
|
+
"resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz",
|
|
227
|
+
"integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==",
|
|
228
|
+
"license": "MIT",
|
|
229
|
+
"engines": {
|
|
230
|
+
"node": ">=6"
|
|
231
|
+
}
|
|
232
|
+
},
|
|
233
|
+
"node_modules/events": {
|
|
234
|
+
"version": "3.3.0",
|
|
235
|
+
"resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz",
|
|
236
|
+
"integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==",
|
|
237
|
+
"license": "MIT",
|
|
238
|
+
"engines": {
|
|
239
|
+
"node": ">=0.8.x"
|
|
240
|
+
}
|
|
241
|
+
},
|
|
242
|
+
"node_modules/fetch-blob": {
|
|
243
|
+
"version": "3.2.0",
|
|
244
|
+
"resolved": "https://registry.npmjs.org/fetch-blob/-/fetch-blob-3.2.0.tgz",
|
|
245
|
+
"integrity": "sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==",
|
|
246
|
+
"funding": [
|
|
247
|
+
{
|
|
248
|
+
"type": "github",
|
|
249
|
+
"url": "https://github.com/sponsors/jimmywarting"
|
|
250
|
+
},
|
|
251
|
+
{
|
|
252
|
+
"type": "paypal",
|
|
253
|
+
"url": "https://paypal.me/jimmywarting"
|
|
254
|
+
}
|
|
255
|
+
],
|
|
256
|
+
"license": "MIT",
|
|
257
|
+
"dependencies": {
|
|
258
|
+
"node-domexception": "^1.0.0",
|
|
259
|
+
"web-streams-polyfill": "^3.0.3"
|
|
260
|
+
},
|
|
261
|
+
"engines": {
|
|
262
|
+
"node": "^12.20 || >= 14.13"
|
|
263
|
+
}
|
|
264
|
+
},
|
|
265
|
+
"node_modules/form-data": {
|
|
266
|
+
"version": "4.0.4",
|
|
267
|
+
"resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.4.tgz",
|
|
268
|
+
"integrity": "sha512-KrGhL9Q4zjj0kiUt5OO4Mr/A/jlI2jDYs5eHBpYHPcBEVSiipAvn2Ko2HnPe20rmcuuvMHNdZFp+4IlGTMF0Ow==",
|
|
269
|
+
"license": "MIT",
|
|
270
|
+
"dependencies": {
|
|
271
|
+
"asynckit": "^0.4.0",
|
|
272
|
+
"combined-stream": "^1.0.8",
|
|
273
|
+
"es-set-tostringtag": "^2.1.0",
|
|
274
|
+
"hasown": "^2.0.2",
|
|
275
|
+
"mime-types": "^2.1.12"
|
|
276
|
+
},
|
|
277
|
+
"engines": {
|
|
278
|
+
"node": ">= 6"
|
|
279
|
+
}
|
|
280
|
+
},
|
|
281
|
+
"node_modules/form-data-encoder": {
|
|
282
|
+
"version": "4.1.0",
|
|
283
|
+
"resolved": "https://registry.npmjs.org/form-data-encoder/-/form-data-encoder-4.1.0.tgz",
|
|
284
|
+
"integrity": "sha512-G6NsmEW15s0Uw9XnCg+33H3ViYRyiM0hMrMhhqQOR8NFc5GhYrI+6I3u7OTw7b91J2g8rtvMBZJDbcGb2YUniw==",
|
|
285
|
+
"license": "MIT",
|
|
286
|
+
"engines": {
|
|
287
|
+
"node": ">= 18"
|
|
288
|
+
}
|
|
289
|
+
},
|
|
290
|
+
"node_modules/formdata-node": {
|
|
291
|
+
"version": "6.0.3",
|
|
292
|
+
"resolved": "https://registry.npmjs.org/formdata-node/-/formdata-node-6.0.3.tgz",
|
|
293
|
+
"integrity": "sha512-8e1++BCiTzUno9v5IZ2J6bv4RU+3UKDmqWUQD0MIMVCd9AdhWkO1gw57oo1mNEX1dMq2EGI+FbWz4B92pscSQg==",
|
|
294
|
+
"license": "MIT",
|
|
295
|
+
"engines": {
|
|
296
|
+
"node": ">= 18"
|
|
297
|
+
}
|
|
298
|
+
},
|
|
299
|
+
"node_modules/formdata-polyfill": {
|
|
300
|
+
"version": "4.0.10",
|
|
301
|
+
"resolved": "https://registry.npmjs.org/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz",
|
|
302
|
+
"integrity": "sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==",
|
|
303
|
+
"license": "MIT",
|
|
304
|
+
"dependencies": {
|
|
305
|
+
"fetch-blob": "^3.1.2"
|
|
306
|
+
},
|
|
307
|
+
"engines": {
|
|
308
|
+
"node": ">=12.20.0"
|
|
309
|
+
}
|
|
310
|
+
},
|
|
311
|
+
"node_modules/function-bind": {
|
|
312
|
+
"version": "1.1.2",
|
|
313
|
+
"resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
|
|
314
|
+
"integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
|
|
315
|
+
"license": "MIT",
|
|
316
|
+
"funding": {
|
|
317
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
318
|
+
}
|
|
319
|
+
},
|
|
320
|
+
"node_modules/get-intrinsic": {
|
|
321
|
+
"version": "1.3.0",
|
|
322
|
+
"resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
|
|
323
|
+
"integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
|
|
324
|
+
"license": "MIT",
|
|
325
|
+
"dependencies": {
|
|
326
|
+
"call-bind-apply-helpers": "^1.0.2",
|
|
327
|
+
"es-define-property": "^1.0.1",
|
|
328
|
+
"es-errors": "^1.3.0",
|
|
329
|
+
"es-object-atoms": "^1.1.1",
|
|
330
|
+
"function-bind": "^1.1.2",
|
|
331
|
+
"get-proto": "^1.0.1",
|
|
332
|
+
"gopd": "^1.2.0",
|
|
333
|
+
"has-symbols": "^1.1.0",
|
|
334
|
+
"hasown": "^2.0.2",
|
|
335
|
+
"math-intrinsics": "^1.1.0"
|
|
336
|
+
},
|
|
337
|
+
"engines": {
|
|
338
|
+
"node": ">= 0.4"
|
|
339
|
+
},
|
|
340
|
+
"funding": {
|
|
341
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
342
|
+
}
|
|
343
|
+
},
|
|
344
|
+
"node_modules/get-proto": {
|
|
345
|
+
"version": "1.0.1",
|
|
346
|
+
"resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz",
|
|
347
|
+
"integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
|
|
348
|
+
"license": "MIT",
|
|
349
|
+
"dependencies": {
|
|
350
|
+
"dunder-proto": "^1.0.1",
|
|
351
|
+
"es-object-atoms": "^1.0.0"
|
|
352
|
+
},
|
|
353
|
+
"engines": {
|
|
354
|
+
"node": ">= 0.4"
|
|
355
|
+
}
|
|
356
|
+
},
|
|
357
|
+
"node_modules/gopd": {
|
|
358
|
+
"version": "1.2.0",
|
|
359
|
+
"resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
|
|
360
|
+
"integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
|
|
361
|
+
"license": "MIT",
|
|
362
|
+
"engines": {
|
|
363
|
+
"node": ">= 0.4"
|
|
364
|
+
},
|
|
365
|
+
"funding": {
|
|
366
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
367
|
+
}
|
|
368
|
+
},
|
|
369
|
+
"node_modules/has-symbols": {
|
|
370
|
+
"version": "1.1.0",
|
|
371
|
+
"resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
|
|
372
|
+
"integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
|
|
373
|
+
"license": "MIT",
|
|
374
|
+
"engines": {
|
|
375
|
+
"node": ">= 0.4"
|
|
376
|
+
},
|
|
377
|
+
"funding": {
|
|
378
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
379
|
+
}
|
|
380
|
+
},
|
|
381
|
+
"node_modules/has-tostringtag": {
|
|
382
|
+
"version": "1.0.2",
|
|
383
|
+
"resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz",
|
|
384
|
+
"integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==",
|
|
385
|
+
"license": "MIT",
|
|
386
|
+
"dependencies": {
|
|
387
|
+
"has-symbols": "^1.0.3"
|
|
388
|
+
},
|
|
389
|
+
"engines": {
|
|
390
|
+
"node": ">= 0.4"
|
|
391
|
+
},
|
|
392
|
+
"funding": {
|
|
393
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
394
|
+
}
|
|
395
|
+
},
|
|
396
|
+
"node_modules/hasown": {
|
|
397
|
+
"version": "2.0.2",
|
|
398
|
+
"resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
|
|
399
|
+
"integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
|
|
400
|
+
"license": "MIT",
|
|
401
|
+
"dependencies": {
|
|
402
|
+
"function-bind": "^1.1.2"
|
|
403
|
+
},
|
|
404
|
+
"engines": {
|
|
405
|
+
"node": ">= 0.4"
|
|
406
|
+
}
|
|
407
|
+
},
|
|
408
|
+
"node_modules/ieee754": {
|
|
409
|
+
"version": "1.2.1",
|
|
410
|
+
"resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz",
|
|
411
|
+
"integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==",
|
|
412
|
+
"funding": [
|
|
413
|
+
{
|
|
414
|
+
"type": "github",
|
|
415
|
+
"url": "https://github.com/sponsors/feross"
|
|
416
|
+
},
|
|
417
|
+
{
|
|
418
|
+
"type": "patreon",
|
|
419
|
+
"url": "https://www.patreon.com/feross"
|
|
420
|
+
},
|
|
421
|
+
{
|
|
422
|
+
"type": "consulting",
|
|
423
|
+
"url": "https://feross.org/support"
|
|
424
|
+
}
|
|
425
|
+
],
|
|
426
|
+
"license": "BSD-3-Clause"
|
|
427
|
+
},
|
|
428
|
+
"node_modules/js-base64": {
|
|
429
|
+
"version": "3.7.7",
|
|
430
|
+
"resolved": "https://registry.npmjs.org/js-base64/-/js-base64-3.7.7.tgz",
|
|
431
|
+
"integrity": "sha512-7rCnleh0z2CkXhH67J8K1Ytz0b2Y+yxTPL+/KOJoa20hfnVQ/3/T6W/KflYI4bRHRagNeXeU2bkNGI3v1oS/lw==",
|
|
432
|
+
"license": "BSD-3-Clause"
|
|
433
|
+
},
|
|
434
|
+
"node_modules/math-intrinsics": {
|
|
435
|
+
"version": "1.1.0",
|
|
436
|
+
"resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
|
|
437
|
+
"integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
|
|
438
|
+
"license": "MIT",
|
|
439
|
+
"engines": {
|
|
440
|
+
"node": ">= 0.4"
|
|
441
|
+
}
|
|
442
|
+
},
|
|
443
|
+
"node_modules/mime-db": {
|
|
444
|
+
"version": "1.52.0",
|
|
445
|
+
"resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
|
|
446
|
+
"integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
|
|
447
|
+
"license": "MIT",
|
|
448
|
+
"engines": {
|
|
449
|
+
"node": ">= 0.6"
|
|
450
|
+
}
|
|
451
|
+
},
|
|
452
|
+
"node_modules/mime-types": {
|
|
453
|
+
"version": "2.1.35",
|
|
454
|
+
"resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
|
|
455
|
+
"integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
|
|
456
|
+
"license": "MIT",
|
|
457
|
+
"dependencies": {
|
|
458
|
+
"mime-db": "1.52.0"
|
|
459
|
+
},
|
|
460
|
+
"engines": {
|
|
461
|
+
"node": ">= 0.6"
|
|
462
|
+
}
|
|
463
|
+
},
|
|
464
|
+
"node_modules/node-domexception": {
|
|
465
|
+
"version": "1.0.0",
|
|
466
|
+
"resolved": "https://registry.npmjs.org/node-domexception/-/node-domexception-1.0.0.tgz",
|
|
467
|
+
"integrity": "sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==",
|
|
468
|
+
"deprecated": "Use your platform's native DOMException instead",
|
|
469
|
+
"funding": [
|
|
470
|
+
{
|
|
471
|
+
"type": "github",
|
|
472
|
+
"url": "https://github.com/sponsors/jimmywarting"
|
|
473
|
+
},
|
|
474
|
+
{
|
|
475
|
+
"type": "github",
|
|
476
|
+
"url": "https://paypal.me/jimmywarting"
|
|
477
|
+
}
|
|
478
|
+
],
|
|
479
|
+
"license": "MIT",
|
|
480
|
+
"engines": {
|
|
481
|
+
"node": ">=10.5.0"
|
|
482
|
+
}
|
|
483
|
+
},
|
|
484
|
+
"node_modules/node-fetch": {
|
|
485
|
+
"version": "3.3.2",
|
|
486
|
+
"resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-3.3.2.tgz",
|
|
487
|
+
"integrity": "sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==",
|
|
488
|
+
"license": "MIT",
|
|
489
|
+
"dependencies": {
|
|
490
|
+
"data-uri-to-buffer": "^4.0.0",
|
|
491
|
+
"fetch-blob": "^3.1.4",
|
|
492
|
+
"formdata-polyfill": "^4.0.10"
|
|
493
|
+
},
|
|
494
|
+
"engines": {
|
|
495
|
+
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
|
|
496
|
+
},
|
|
497
|
+
"funding": {
|
|
498
|
+
"type": "opencollective",
|
|
499
|
+
"url": "https://opencollective.com/node-fetch"
|
|
500
|
+
}
|
|
501
|
+
},
|
|
502
|
+
"node_modules/object-inspect": {
|
|
503
|
+
"version": "1.13.4",
|
|
504
|
+
"resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz",
|
|
505
|
+
"integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==",
|
|
506
|
+
"license": "MIT",
|
|
507
|
+
"engines": {
|
|
508
|
+
"node": ">= 0.4"
|
|
509
|
+
},
|
|
510
|
+
"funding": {
|
|
511
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
512
|
+
}
|
|
513
|
+
},
|
|
514
|
+
"node_modules/process": {
|
|
515
|
+
"version": "0.11.10",
|
|
516
|
+
"resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz",
|
|
517
|
+
"integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==",
|
|
518
|
+
"license": "MIT",
|
|
519
|
+
"engines": {
|
|
520
|
+
"node": ">= 0.6.0"
|
|
521
|
+
}
|
|
522
|
+
},
|
|
523
|
+
"node_modules/qs": {
|
|
524
|
+
"version": "6.14.0",
|
|
525
|
+
"resolved": "https://registry.npmjs.org/qs/-/qs-6.14.0.tgz",
|
|
526
|
+
"integrity": "sha512-YWWTjgABSKcvs/nWBi9PycY/JiPJqOD4JA6o9Sej2AtvSGarXxKC3OQSk4pAarbdQlKAh5D4FCQkJNkW+GAn3w==",
|
|
527
|
+
"license": "BSD-3-Clause",
|
|
528
|
+
"dependencies": {
|
|
529
|
+
"side-channel": "^1.1.0"
|
|
530
|
+
},
|
|
531
|
+
"engines": {
|
|
532
|
+
"node": ">=0.6"
|
|
533
|
+
},
|
|
534
|
+
"funding": {
|
|
535
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
536
|
+
}
|
|
537
|
+
},
|
|
538
|
+
"node_modules/readable-stream": {
|
|
539
|
+
"version": "4.7.0",
|
|
540
|
+
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-4.7.0.tgz",
|
|
541
|
+
"integrity": "sha512-oIGGmcpTLwPga8Bn6/Z75SVaH1z5dUut2ibSyAMVhmUggWpmDn2dapB0n7f8nwaSiRtepAsfJyfXIO5DCVAODg==",
|
|
542
|
+
"license": "MIT",
|
|
543
|
+
"dependencies": {
|
|
544
|
+
"abort-controller": "^3.0.0",
|
|
545
|
+
"buffer": "^6.0.3",
|
|
546
|
+
"events": "^3.3.0",
|
|
547
|
+
"process": "^0.11.10",
|
|
548
|
+
"string_decoder": "^1.3.0"
|
|
549
|
+
},
|
|
550
|
+
"engines": {
|
|
551
|
+
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
|
|
552
|
+
}
|
|
553
|
+
},
|
|
554
|
+
"node_modules/safe-buffer": {
|
|
555
|
+
"version": "5.2.1",
|
|
556
|
+
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
|
|
557
|
+
"integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
|
|
558
|
+
"funding": [
|
|
559
|
+
{
|
|
560
|
+
"type": "github",
|
|
561
|
+
"url": "https://github.com/sponsors/feross"
|
|
562
|
+
},
|
|
563
|
+
{
|
|
564
|
+
"type": "patreon",
|
|
565
|
+
"url": "https://www.patreon.com/feross"
|
|
566
|
+
},
|
|
567
|
+
{
|
|
568
|
+
"type": "consulting",
|
|
569
|
+
"url": "https://feross.org/support"
|
|
570
|
+
}
|
|
571
|
+
],
|
|
572
|
+
"license": "MIT"
|
|
573
|
+
},
|
|
574
|
+
"node_modules/side-channel": {
|
|
575
|
+
"version": "1.1.0",
|
|
576
|
+
"resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz",
|
|
577
|
+
"integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==",
|
|
578
|
+
"license": "MIT",
|
|
579
|
+
"dependencies": {
|
|
580
|
+
"es-errors": "^1.3.0",
|
|
581
|
+
"object-inspect": "^1.13.3",
|
|
582
|
+
"side-channel-list": "^1.0.0",
|
|
583
|
+
"side-channel-map": "^1.0.1",
|
|
584
|
+
"side-channel-weakmap": "^1.0.2"
|
|
585
|
+
},
|
|
586
|
+
"engines": {
|
|
587
|
+
"node": ">= 0.4"
|
|
588
|
+
},
|
|
589
|
+
"funding": {
|
|
590
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
591
|
+
}
|
|
592
|
+
},
|
|
593
|
+
"node_modules/side-channel-list": {
|
|
594
|
+
"version": "1.0.0",
|
|
595
|
+
"resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz",
|
|
596
|
+
"integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==",
|
|
597
|
+
"license": "MIT",
|
|
598
|
+
"dependencies": {
|
|
599
|
+
"es-errors": "^1.3.0",
|
|
600
|
+
"object-inspect": "^1.13.3"
|
|
601
|
+
},
|
|
602
|
+
"engines": {
|
|
603
|
+
"node": ">= 0.4"
|
|
604
|
+
},
|
|
605
|
+
"funding": {
|
|
606
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
607
|
+
}
|
|
608
|
+
},
|
|
609
|
+
"node_modules/side-channel-map": {
|
|
610
|
+
"version": "1.0.1",
|
|
611
|
+
"resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz",
|
|
612
|
+
"integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==",
|
|
613
|
+
"license": "MIT",
|
|
614
|
+
"dependencies": {
|
|
615
|
+
"call-bound": "^1.0.2",
|
|
616
|
+
"es-errors": "^1.3.0",
|
|
617
|
+
"get-intrinsic": "^1.2.5",
|
|
618
|
+
"object-inspect": "^1.13.3"
|
|
619
|
+
},
|
|
620
|
+
"engines": {
|
|
621
|
+
"node": ">= 0.4"
|
|
622
|
+
},
|
|
623
|
+
"funding": {
|
|
624
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
625
|
+
}
|
|
626
|
+
},
|
|
627
|
+
"node_modules/side-channel-weakmap": {
|
|
628
|
+
"version": "1.0.2",
|
|
629
|
+
"resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz",
|
|
630
|
+
"integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==",
|
|
631
|
+
"license": "MIT",
|
|
632
|
+
"dependencies": {
|
|
633
|
+
"call-bound": "^1.0.2",
|
|
634
|
+
"es-errors": "^1.3.0",
|
|
635
|
+
"get-intrinsic": "^1.2.5",
|
|
636
|
+
"object-inspect": "^1.13.3",
|
|
637
|
+
"side-channel-map": "^1.0.1"
|
|
638
|
+
},
|
|
639
|
+
"engines": {
|
|
640
|
+
"node": ">= 0.4"
|
|
641
|
+
},
|
|
642
|
+
"funding": {
|
|
643
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
644
|
+
}
|
|
645
|
+
},
|
|
646
|
+
"node_modules/string_decoder": {
|
|
647
|
+
"version": "1.3.0",
|
|
648
|
+
"resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz",
|
|
649
|
+
"integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==",
|
|
650
|
+
"license": "MIT",
|
|
651
|
+
"dependencies": {
|
|
652
|
+
"safe-buffer": "~5.2.0"
|
|
653
|
+
}
|
|
654
|
+
},
|
|
655
|
+
"node_modules/typescript": {
|
|
656
|
+
"version": "5.8.3",
|
|
657
|
+
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.8.3.tgz",
|
|
658
|
+
"integrity": "sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==",
|
|
659
|
+
"dev": true,
|
|
660
|
+
"license": "Apache-2.0",
|
|
661
|
+
"bin": {
|
|
662
|
+
"tsc": "bin/tsc",
|
|
663
|
+
"tsserver": "bin/tsserver"
|
|
664
|
+
},
|
|
665
|
+
"engines": {
|
|
666
|
+
"node": ">=14.17"
|
|
667
|
+
}
|
|
668
|
+
},
|
|
669
|
+
"node_modules/undici-types": {
|
|
670
|
+
"version": "6.21.0",
|
|
671
|
+
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz",
|
|
672
|
+
"integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==",
|
|
673
|
+
"dev": true,
|
|
674
|
+
"license": "MIT"
|
|
675
|
+
},
|
|
676
|
+
"node_modules/url-join": {
|
|
677
|
+
"version": "5.0.0",
|
|
678
|
+
"resolved": "https://registry.npmjs.org/url-join/-/url-join-5.0.0.tgz",
|
|
679
|
+
"integrity": "sha512-n2huDr9h9yzd6exQVnH/jU5mr+Pfx08LRXXZhkLLetAMESRj+anQsTAh940iMrIetKAmry9coFuZQ2jY8/p3WA==",
|
|
680
|
+
"license": "MIT",
|
|
681
|
+
"engines": {
|
|
682
|
+
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
|
|
683
|
+
}
|
|
684
|
+
},
|
|
685
|
+
"node_modules/web-streams-polyfill": {
|
|
686
|
+
"version": "3.3.3",
|
|
687
|
+
"resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.3.3.tgz",
|
|
688
|
+
"integrity": "sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==",
|
|
689
|
+
"license": "MIT",
|
|
690
|
+
"engines": {
|
|
691
|
+
"node": ">= 8"
|
|
692
|
+
}
|
|
693
|
+
}
|
|
694
|
+
}
|
|
695
|
+
}
|