@rpcbase/client 0.349.0 → 0.351.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/apiClient/index.d.ts +1 -1
- package/dist/{getServerApiClient-C51U2cM0.js → getServerApiClient-4RhtHILD.js} +1 -1
- package/dist/index.js +1 -1
- package/dist/initWithRoutes.d.ts +1 -1
- package/dist/navigationGuard/installGlobalNavigationGuard.d.ts +1 -1
- package/dist/types.d.ts +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -14,7 +14,7 @@ const initApiClient = async (args) => {
|
|
|
14
14
|
if (!args) {
|
|
15
15
|
throw new Error("Server args must be provided in SSR mode");
|
|
16
16
|
}
|
|
17
|
-
const { getServerApiClient } = await import("./getServerApiClient-
|
|
17
|
+
const { getServerApiClient } = await import("./getServerApiClient-4RhtHILD.js");
|
|
18
18
|
apiClient = await getServerApiClient(args.app);
|
|
19
19
|
} else {
|
|
20
20
|
const axios = (await import("axios/dist/browser/axios.cjs")).default;
|
package/dist/initWithRoutes.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ReactNode } from 'react';
|
|
2
|
-
import { createRoutesFromElements } from '
|
|
2
|
+
import { createRoutesFromElements } from '@rpcbase/router';
|
|
3
3
|
import { SsrErrorStatePayload } from './ssrErrorState';
|
|
4
4
|
type InitWithRoutesOptions = {
|
|
5
5
|
devThrowsOnHydrationErrors?: boolean;
|
package/dist/types.d.ts
CHANGED