@bowmark/web 1.2.0 → 1.4.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/README.md +5 -1
- package/package.json +1 -1
- package/src/generated/library.d.ts +1204 -24
- package/src/generated/validators.ts +808 -13
- package/src/index.ts +4 -4
package/src/index.ts
CHANGED
|
@@ -17,12 +17,14 @@
|
|
|
17
17
|
// the two must stay in sync — see `packages/runtime/src/namespace.ts`.
|
|
18
18
|
|
|
19
19
|
import { client } from "./session.js";
|
|
20
|
-
import { type ClientOptions, type RunEnvelope,
|
|
20
|
+
import { type ClientOptions, postRun, type RunEnvelope, resolveClient } from "./transport.js";
|
|
21
21
|
|
|
22
|
+
export { type WireProblem, wireProblem } from "./guard.js";
|
|
23
|
+
export { client, openManagedSession, type SessionHandle, session } from "./session.js";
|
|
22
24
|
export {
|
|
25
|
+
type AuthNeed,
|
|
23
26
|
BowmarkError,
|
|
24
27
|
BowmarkNeedsUserError,
|
|
25
|
-
type AuthNeed,
|
|
26
28
|
type CallEnvelope,
|
|
27
29
|
type ClientOptions,
|
|
28
30
|
type ClosedSession,
|
|
@@ -31,8 +33,6 @@ export {
|
|
|
31
33
|
type OpenedSession,
|
|
32
34
|
type RunEnvelope,
|
|
33
35
|
} from "./transport.js";
|
|
34
|
-
export { type WireProblem, wireProblem } from "./guard.js";
|
|
35
|
-
export { type SessionHandle, client, openManagedSession, session } from "./session.js";
|
|
36
36
|
|
|
37
37
|
/** The whole callable library, typed. `await bowmark.music.search("aphex twin")`.
|
|
38
38
|
*
|