@rpcbase/client 0.135.0 → 0.137.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/auth/SignIn/index.js +1 -1
- package/auth/SignUp/index.js +1 -1
- package/index.js +2 -1
- package/package.json +1 -1
- package/rpc_post.js +1 -1
package/auth/SignIn/index.js
CHANGED
|
@@ -7,7 +7,7 @@ import page from "page"
|
|
|
7
7
|
import debug from "debug"
|
|
8
8
|
|
|
9
9
|
import post from "../../helpers/post"
|
|
10
|
-
import {reconnect as rts_reconnect} from "../../rts"
|
|
10
|
+
import {reconnect as rts_reconnect} from "../../rts/rts"
|
|
11
11
|
|
|
12
12
|
import {set_is_signed_in, setUid, set_tenant_id} from "../index"
|
|
13
13
|
import Footer from "../Footer"
|
package/auth/SignUp/index.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import {useState} from "react"
|
|
3
3
|
import page from "page"
|
|
4
4
|
|
|
5
|
-
import {reconnect as rts_reconnect} from "../../rts"
|
|
5
|
+
import {reconnect as rts_reconnect} from "../../rts/rts"
|
|
6
6
|
|
|
7
7
|
import {set_is_signed_in, setUid, set_tenant_id} from "../index"
|
|
8
8
|
import post from "../../helpers/post"
|
package/index.js
CHANGED
package/package.json
CHANGED
package/rpc_post.js
CHANGED
|
@@ -8,7 +8,7 @@ import get_txn_id from "@rpcbase/std/get_txn_id"
|
|
|
8
8
|
|
|
9
9
|
import getBaseUrl from "./getBaseUrl"
|
|
10
10
|
import getTenantId from "./auth/getTenantId"
|
|
11
|
-
import {add_local_txn} from "./rts"
|
|
11
|
+
import {add_local_txn} from "./rts/rts"
|
|
12
12
|
|
|
13
13
|
const TENANT_ID_HEADER = "rb-tenant-id"
|
|
14
14
|
|