@eudiplo/sdk-core 3.1.2 → 4.0.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/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 +1 -1
- package/dist/api/client/index.d.ts +1 -1
- package/dist/api/client/index.js +1 -1
- package/dist/api/client/index.mjs +1 -1
- 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 +3 -3
- package/dist/api/client.gen.d.ts +3 -3
- package/dist/api/index.d.mts +73 -222
- package/dist/api/index.d.ts +73 -222
- package/dist/api/index.js +167 -251
- package/dist/api/index.mjs +147 -203
- package/dist/index.d.mts +6 -6
- package/dist/index.d.ts +6 -6
- package/dist/index.js +181 -261
- package/dist/index.mjs +161 -213
- package/dist/{types.gen-Bdvb9JJk.d.mts → types.gen-D8LjzWc0.d.mts} +1 -1
- package/dist/{types.gen-Bdvb9JJk.d.ts → types.gen-D8LjzWc0.d.ts} +1 -1
- package/dist/{types.gen-B8BIFvOm.d.mts → types.gen-sNmRQvUI.d.mts} +982 -1087
- package/dist/{types.gen-B8BIFvOm.d.ts → types.gen-sNmRQvUI.d.ts} +982 -1087
- package/package.json +2 -2
|
@@ -314,7 +314,7 @@ type Client = Client$1<RequestFn, Config, MethodFn, BuildUrlFn, SseFn> & {
|
|
|
314
314
|
* `setConfig()`. This is useful for example if you're using Next.js
|
|
315
315
|
* to ensure your client always has the correct values.
|
|
316
316
|
*/
|
|
317
|
-
type CreateClientConfig<T extends ClientOptions = ClientOptions> = (override?: Config<ClientOptions & T>) => Config<Required<ClientOptions> & T
|
|
317
|
+
type CreateClientConfig<T extends ClientOptions = ClientOptions> = (override?: Config<ClientOptions & T>) => Config<Required<ClientOptions> & T> | Promise<Config<Required<ClientOptions> & T>>;
|
|
318
318
|
interface TDataShape {
|
|
319
319
|
body?: unknown;
|
|
320
320
|
headers?: unknown;
|
|
@@ -314,7 +314,7 @@ type Client = Client$1<RequestFn, Config, MethodFn, BuildUrlFn, SseFn> & {
|
|
|
314
314
|
* `setConfig()`. This is useful for example if you're using Next.js
|
|
315
315
|
* to ensure your client always has the correct values.
|
|
316
316
|
*/
|
|
317
|
-
type CreateClientConfig<T extends ClientOptions = ClientOptions> = (override?: Config<ClientOptions & T>) => Config<Required<ClientOptions> & T
|
|
317
|
+
type CreateClientConfig<T extends ClientOptions = ClientOptions> = (override?: Config<ClientOptions & T>) => Config<Required<ClientOptions> & T> | Promise<Config<Required<ClientOptions> & T>>;
|
|
318
318
|
interface TDataShape {
|
|
319
319
|
body?: unknown;
|
|
320
320
|
headers?: unknown;
|