nucleus-core-ts 0.9.968 → 0.9.970
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/.build-ok +1 -1
- package/dist/client.js +1 -1
- package/dist/dist/index.d.ts +2 -0
- package/dist/index.js +5 -5
- package/dist/src/Client/ApiCaller/index.d.ts +1 -1
- package/dist/src/Client/ApiCaller/server.d.ts +9 -0
- package/dist/src/Client/ApiCaller/types.d.ts +10 -0
- package/dist/src/ElysiaPlugin/routes/auth/impersonationCookies.d.ts +16 -0
- package/dist/src/types.d.ts +10 -0
- package/package.json +1 -1
- package/scripts/build.ts +3 -6
package/dist/dist/index.d.ts
CHANGED
|
@@ -272,12 +272,14 @@ export function createServerFactory(endpoints: any, config: any, getCookies: any
|
|
|
272
272
|
};
|
|
273
273
|
code: number;
|
|
274
274
|
data?: undefined;
|
|
275
|
+
requestId?: undefined;
|
|
275
276
|
message?: undefined;
|
|
276
277
|
} | {
|
|
277
278
|
isSuccess: any;
|
|
278
279
|
data: any;
|
|
279
280
|
errors: any;
|
|
280
281
|
code: any;
|
|
282
|
+
requestId: any;
|
|
281
283
|
message: any;
|
|
282
284
|
}>;
|
|
283
285
|
export function createApiHook(endpoints: any, factory: any): () => {};
|