@eudiplo/sdk-core 5.1.0 → 6.0.0-main.a2a87ad
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/api/client/client.gen.d.mts +1 -1
- package/dist/api/client/client.gen.d.ts +1 -1
- package/dist/api/client/index.d.mts +2 -2
- package/dist/api/client/index.d.ts +2 -2
- package/dist/api/client/index.js +13 -5
- package/dist/api/client/index.mjs +13 -5
- package/dist/api/client/types.gen.d.mts +1 -1
- package/dist/api/client/types.gen.d.ts +1 -1
- package/dist/api/client.gen.d.mts +2 -2
- package/dist/api/client.gen.d.ts +2 -2
- package/dist/api/index.d.mts +72 -14
- package/dist/api/index.d.ts +72 -14
- package/dist/api/index.js +67 -6
- package/dist/api/index.mjs +58 -6
- package/dist/index.d.mts +9 -5
- package/dist/index.d.ts +9 -5
- package/dist/index.js +136 -14
- package/dist/index.mjs +126 -14
- package/dist/{types.gen-CdvErMyl.d.mts → types.gen-Cg-nB7uf.d.mts} +904 -193
- package/dist/{types.gen-CdvErMyl.d.ts → types.gen-Cg-nB7uf.d.ts} +904 -193
- package/dist/{types.gen-zNuA7BkO.d.mts → types.gen-DZ4ax15r.d.mts} +1 -1
- package/dist/{types.gen-zNuA7BkO.d.ts → types.gen-DZ4ax15r.d.ts} +1 -1
- package/package.json +4 -4
|
@@ -344,4 +344,4 @@ interface TDataShape {
|
|
|
344
344
|
type OmitKeys<T, K> = Pick<T, Exclude<keyof T, K>>;
|
|
345
345
|
type Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean = boolean, TResponse = unknown, TResponseStyle extends ResponseStyle = 'fields'> = OmitKeys<RequestOptions<TResponse, TResponseStyle, ThrowOnError>, 'body' | 'path' | 'query' | 'url'> & ([TData] extends [never] ? unknown : Omit<TData, 'url'>);
|
|
346
346
|
|
|
347
|
-
export { type Auth as A, type
|
|
347
|
+
export { type Auth as A, type Config as C, type Options as O, type QuerySerializerOptions as Q, type RequestOptions as R, type ServerSentEventsResult as S, type TDataShape as T, type Client as a, type ClientOptions as b, type ClientMeta as c, type CreateClientConfig as d, type RequestResult as e, type ResolvedRequestOptions as f, type ResponseStyle as g, createConfig as h, formDataBodySerializer as i, jsonBodySerializer as j, mergeHeaders as m, urlSearchParamsBodySerializer as u };
|
|
@@ -344,4 +344,4 @@ interface TDataShape {
|
|
|
344
344
|
type OmitKeys<T, K> = Pick<T, Exclude<keyof T, K>>;
|
|
345
345
|
type Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean = boolean, TResponse = unknown, TResponseStyle extends ResponseStyle = 'fields'> = OmitKeys<RequestOptions<TResponse, TResponseStyle, ThrowOnError>, 'body' | 'path' | 'query' | 'url'> & ([TData] extends [never] ? unknown : Omit<TData, 'url'>);
|
|
346
346
|
|
|
347
|
-
export { type Auth as A, type
|
|
347
|
+
export { type Auth as A, type Config as C, type Options as O, type QuerySerializerOptions as Q, type RequestOptions as R, type ServerSentEventsResult as S, type TDataShape as T, type Client as a, type ClientOptions as b, type ClientMeta as c, type CreateClientConfig as d, type RequestResult as e, type ResolvedRequestOptions as f, type ResponseStyle as g, createConfig as h, formDataBodySerializer as i, jsonBodySerializer as j, mergeHeaders as m, urlSearchParamsBodySerializer as u };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eudiplo/sdk-core",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "6.0.0-main.a2a87ad",
|
|
4
4
|
"description": "Framework-agnostic EUDIPLO SDK for demos and integrations",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -36,11 +36,11 @@
|
|
|
36
36
|
"prepublishOnly": "pnpm build"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
|
-
"@hey-api/openapi-ts": "^0.
|
|
40
|
-
"@types/node": "^
|
|
39
|
+
"@hey-api/openapi-ts": "^0.99.0",
|
|
40
|
+
"@types/node": "^26.0.1",
|
|
41
41
|
"tsup": "^8.5.1",
|
|
42
42
|
"typescript": "^6.0.3",
|
|
43
|
-
"vitest": "4.1.
|
|
43
|
+
"vitest": "4.1.10"
|
|
44
44
|
},
|
|
45
45
|
"files": [
|
|
46
46
|
"dist",
|