@powerhousedao/reactor-browser 6.2.2-dev.22 → 6.2.2-dev.24

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 CHANGED
@@ -529,26 +529,36 @@ the stored credential against the switchboard.
529
529
 
530
530
  ```tsx
531
531
  import { RenownProvider } from "@powerhousedao/reactor-browser/renown";
532
+ import { privyAdapter } from "@renown/sdk/wallet/privy";
533
+ import { rainbowAdapter } from "@renown/sdk/wallet/rainbow";
534
+
535
+ // Module scope: the provider snapshots this array on mount.
536
+ const ADAPTERS = [
537
+ rainbowAdapter({ walletConnectProjectId: "..." }),
538
+ privyAdapter({ appId: "...", methods: ["google", "email"] }),
539
+ ];
532
540
 
533
541
  <RenownProvider
534
542
  appName="my-app"
535
543
  namespace="my-app"
536
544
  switchboardUrl="https://switchboard.example/graphql"
537
- adapters={{
538
- rainbow: { walletConnectProjectId: "..." },
539
- privy: { appId: "...", methods: ["google", "email"] },
540
- }}
545
+ adapters={ADAPTERS}
541
546
  theme="light" // "light" | "dark" | { mode, accentColor?, accentColorForeground? }
542
547
  >
543
548
  <App />
544
549
  </RenownProvider>;
545
550
  ```
546
551
 
552
+ **Install only the peers of the adapters you import.** Importing
553
+ `@renown/sdk/wallet/rainbow` is what makes RainbowKit a build requirement; an app
554
+ that only imports `@renown/sdk/wallet/privy` needs no RainbowKit and no bundler
555
+ aliases. See the `@renown/sdk` README for the per-adapter peer list.
556
+
547
557
  The provider is **SSR-safe** — it renders on the server without `ssr: false`;
548
558
  the wallet libraries only load client-side on the first login click.
549
559
 
550
560
  Then build the login UI with `useRenownLoginMethods` (derives the button list
551
- from the config) and `useRenownAuth` (login + user state):
561
+ from the adapters) and `useRenownAuth` (login + user state):
552
562
 
553
563
  ```tsx
554
564
  import {
@@ -586,8 +596,9 @@ only when you need a custom tree:
586
596
  - `<Renown appName namespace switchboardUrl revalidate? />` — SDK init (renders
587
597
  `null`; place high in the tree).
588
598
  - `RenownWalletProvider` — wallet adapters (below).
589
- - `RenownInitialUserProvider` — seeds the first render with a `User` (see
590
- [Server-side rendering](#server-side-rendering-ssr)).
599
+ - `RenownInitialUserProvider` — seeds the first render, via `initialAuth`
600
+ (three-state, preferred) or `initialUser` (a bare `User`; cannot express
601
+ "known signed out"). See [Server-side rendering](#server-side-rendering-ssr).
591
602
 
592
603
  ### Auth state — `useRenownAuth` / `useRenownAuthAsync`
593
604
 
@@ -616,6 +627,14 @@ function EditButton() {
616
627
  }
617
628
  ```
618
629
 
630
+ `"resolving"` only appears when the answer is genuinely unknown. If the first
631
+ render already knows the visitor is signed out — no session cookie on the server,
632
+ no persisted user in `localStorage` — the state goes straight to
633
+ `"unauthenticated"`, so a logged-out visitor never sees the skeleton while the
634
+ SDK builds its keypair. A login you triggered (`pending`) still reports
635
+ `"resolving"`. `useRenownInitialAuth()` exposes the underlying signal as
636
+ `{ state: "authenticated" | "anonymous" | "unknown" }`.
637
+
619
638
  ### Server-side rendering (SSR)
620
639
 
621
640
  The provider tree is SSR-safe, so the logged-out shell renders on the server with
@@ -638,36 +657,108 @@ client mints a bearer token and POSTs it to `sessionEndpoint` (default
638
657
  handler that sets an HttpOnly cookie, and a Data Access Layer that verifies it
639
658
  with `verifyRenownSession` from `@renown/sdk/node` (see that package's README).
640
659
 
641
- ### Client-only apps
660
+ The POST body is a `RenownSessionCookie` — the bearer token plus a
661
+ `RenownSessionProfile` display hint carrying `documentId`, `username` and
662
+ `userImage`. Those let `verifyRenownSession` rebuild a `user.profile` matching
663
+ the client's, so the server renders the same name, avatar and profile links the
664
+ client will. Type your route handler with `RenownSessionCookie` rather than
665
+ redeclaring the shape — three copies of it drift.
666
+
667
+ ### Seeding: which source wins
668
+
669
+ The first render is seeded from whichever source can answer at that moment:
670
+
671
+ | Render | Source | Why |
672
+ | --- | --- | --- |
673
+ | Server | `session` (the cookie) | The only thing readable server-side |
674
+ | Hydration | `session` | Must match the server output |
675
+ | After mount | `localStorage` | Holds the credential the SDK actually restores |
642
676
 
643
- Omit `session` and the provider seeds the first render synchronously from
644
- `localStorage` (`readPersistedUser`), so a returning user renders authenticated
645
- on the first paint no server, no flash. The stored credential is revalidated in
646
- the background (see below); `useRenownAuthAsync` exposes `resolving` for the cold
647
- start with no stored session.
677
+ `localStorage` becomes authoritative once mounted because that is what the SDK
678
+ reads on build; the cookie is a display hint that can go stale independently (it
679
+ expires on its own schedule). Omit `session` entirely for client-only apps
680
+ `localStorage` then seeds every render, so a returning user is authenticated on
681
+ the first paint with no server involved.
648
682
 
649
- ### Revalidation
683
+ ### Revalidation and profile refresh
650
684
 
651
- On mount the provider revalidates the restored credential against the switchboard
652
- and logs the user out if it was revoked or expired (`revalidate` prop, default
653
- `"always"`; set `"never"` to skip). In the browser this runs **non-blocking** in
654
- the background (fail-open a transient outage keeps the session); Node scripts
655
- block on it (see `@renown/sdk`). This does not replace server-side checks: the
656
- switchboard enforces the credential on every real operation.
685
+ Two separate background passes run on mount, neither blocking the paint:
686
+
687
+ - **Credential revalidation** re-checks the restored credential against the
688
+ switchboard and logs the user out if it was revoked or expired. Gated by the
689
+ `revalidate` prop (default `"always"`; `"never"` skips it). Fail-open a
690
+ transient outage keeps the session.
691
+ - **Profile refresh** re-reads `username`/`userImage` and updates the store if
692
+ they changed. This runs **regardless of `revalidate`**, because it can never
693
+ log anyone out; apps that disabled revalidation still get fresh attributes.
694
+
695
+ Neither replaces server-side checks: the switchboard enforces the credential on
696
+ every real operation.
657
697
 
658
698
  ### `RenownWalletProvider`
659
699
 
660
- Registers the login activator, lazy-mounts the configured adapters, and merges
661
- them into one controller for `useRenownAuth`. The wallet Provider tree wraps
662
- only the adapter bridges (each library's modal portals to `<body>`), never your
700
+ Registers the login activator, lazy-mounts the given adapters, and merges them
701
+ into one controller for `useRenownAuth`. The wallet Provider tree wraps only the
702
+ adapter bridges (each library's modal portals to `<body>`), never your
663
703
  `children`, so activating login never remounts your app. Props: `adapters`
664
- (config), `theme?`, `children`.
704
+ (`WalletAdapterDescriptor[]`), `theme?`, `children`.
665
705
 
666
706
  ### `useRenownLoginMethods(adapters, labels?)`
667
707
 
668
- Returns `{ id, label }[]` — one per configured login method (wallet + Privy
669
- methods, deduped) — reading config only (no wallet libraries load). Override
670
- labels via the second argument. Wire each to `login(undefined, id)`.
708
+ Returns `{ id, label }[]` — one per login method the adapters offer, deduped, in
709
+ adapter-array order — reading each descriptor's eager metadata only (no wallet
710
+ libraries load). Reorder the array to reorder the buttons. Override labels via
711
+ the second argument. Wire each to `login(undefined, id)`.
712
+
713
+ ### Next.js
714
+
715
+ The integration is the same, with four things worth knowing:
716
+
717
+ - Pass `ssr: true` to `rainbowAdapter` so wagmi defers its hydrate reconnect to
718
+ an effect instead of running it during render.
719
+ - Keep the descriptor array at **module scope** (or in a `useMemo`).
720
+ `RenownWalletProvider` snapshots it on mount, so an array rebuilt inline in JSX
721
+ silently pins the first render's value.
722
+ - Give the descriptor array **its own module**, separate from config your server
723
+ code reads. Turbopack follows the adapters' lazy imports when computing RSC
724
+ boundaries, so a server module that imports anything sitting next to the
725
+ descriptors pulls the client-only wallet factories into the server graph and
726
+ the build fails.
727
+ - `RenownProvider` is SSR-safe: no `ssr: false`, no dynamic import needed. Only
728
+ the component that renders login buttons needs `"use client"`.
729
+ - Nothing needs a `next.config.ts` alias. If you find yourself stubbing
730
+ `@renown/sdk/wallet/<id>`, you are importing an adapter you don't use.
731
+
732
+ `test/test-fusion` in the monorepo is a runnable Next.js example (App Router,
733
+ server session cookie, Playwright e2e against the mock adapter).
734
+
735
+ ### Writing your own adapter
736
+
737
+ `RenownWalletProvider` takes descriptors, not a fixed set of adapter ids, so any
738
+ package can supply one. The contract is:
739
+
740
+ ```ts
741
+ import type { WalletAdapterDescriptor } from "@renown/sdk/wallet";
742
+
743
+ export function myAdapter(config: MyConfig): WalletAdapterDescriptor {
744
+ return {
745
+ meta: {
746
+ id: "my-adapter", // stable + unique among the host's adapters
747
+ supportedMethods: ["wallet"], // must be known before load()
748
+ redirectReturnParams: [], // URL params your full-page OAuth return leaves
749
+ },
750
+ load: () => import("./factory.js").then((m) => m.createMyAdapter(config)),
751
+ };
752
+ }
753
+ ```
754
+
755
+ `load()` resolves a `WalletAdapterImpl`: a `Provider` component and a
756
+ `useController()` hook returning `connect(method?)` / `disconnect()` /
757
+ `getSession()` and, if your flow leaves the page, `subscribe()` so sign-in can
758
+ complete on the redirect back. Keep the module holding `myAdapter` free of your
759
+ wallet library — `meta` is read before anything loads. `supportedMethods` must
760
+ come from `LoginMethod` (`wallet`, `google`, `email`, `apple`); a method the host
761
+ has no label for falls back to showing its id.
671
762
 
672
763
  ### Testing (mock adapter)
673
764
 
@@ -9,7 +9,7 @@ import * as react_jsx_runtime0 from "react/jsx-runtime";
9
9
  import * as _renown_sdk0 from "@renown/sdk";
10
10
  import { CREDENTIAL_SCHEMA_EIP712_TYPE, CREDENTIAL_SUBJECT_TYPE, CREDENTIAL_TYPES, DOMAIN_TYPE, IRenown, ISSUER_TYPE, LoginStatus, User, VERIFIABLE_CREDENTIAL_EIP712_TYPE } from "@renown/sdk";
11
11
  import { IAttachmentService } from "@powerhousedao/reactor-attachments/client";
12
- import { LoginMethod, WalletAdaptersConfig, WalletSession, WalletTheme } from "@renown/sdk/wallet";
12
+ import { LoginMethod, WalletAdapterDescriptor, WalletSession, WalletTheme } from "@renown/sdk/wallet";
13
13
  import { DocumentModelLib, RegistryPackageSource } from "@powerhousedao/shared";
14
14
  import { PHConnectRenownAdapters } from "@powerhousedao/shared/clis";
15
15
 
@@ -547,15 +547,31 @@ declare const RENOWN_NETWORK_ID = "eip155";
547
547
  declare const RENOWN_CHAIN_ID = "1";
548
548
  //#endregion
549
549
  //#region src/renown/initial-user.d.ts
550
+ /** Whether the first render already knows who (if anyone) is signed in. */
551
+ type RenownInitialAuth = {
552
+ state: "authenticated";
553
+ user: User;
554
+ } | {
555
+ state: "anonymous";
556
+ } | {
557
+ state: "unknown";
558
+ };
559
+ declare const RENOWN_INITIAL_UNKNOWN: RenownInitialAuth;
560
+ declare const RENOWN_INITIAL_ANONYMOUS: RenownInitialAuth;
550
561
  interface RenownInitialUserProviderProps {
562
+ /** Resolved first-render auth (see `RenownProvider`). Takes precedence over `initialUser`. */
563
+ initialAuth?: RenownInitialAuth;
551
564
  /** User resolved from a verified session cookie (see `verifyRenownSession`). */
552
565
  initialUser?: User;
553
566
  children: ReactNode;
554
567
  }
555
568
  declare function RenownInitialUserProvider({
569
+ initialAuth,
556
570
  initialUser,
557
571
  children
558
572
  }: RenownInitialUserProviderProps): react_jsx_runtime0.JSX.Element;
573
+ /** First-render auth as a three-state value; use this to skip a spinner when anonymous. */
574
+ declare function useRenownInitialAuth(): RenownInitialAuth;
559
575
  declare function useRenownInitialUser(): User | undefined;
560
576
  //#endregion
561
577
  //#region src/renown/use-renown-session-cookie.d.ts
@@ -637,8 +653,8 @@ interface RenownProviderProps {
637
653
  namespace?: string;
638
654
  url?: string;
639
655
  switchboardUrl?: string;
640
- /** Wallet adapters for in-page sign-in; omit for redirect-only. */
641
- adapters?: WalletAdaptersConfig;
656
+ /** Wallet adapter descriptors for in-page sign-in (see {@link RenownWalletProvider}); omit for redirect-only. */
657
+ adapters?: WalletAdapterDescriptor[];
642
658
  theme?: WalletTheme;
643
659
  /** Re-check the restored credential against the source (default "always"). */
644
660
  revalidate?: "always" | "never";
@@ -667,8 +683,8 @@ declare function RenownProvider({
667
683
  //#endregion
668
684
  //#region src/renown/wallet-provider.d.ts
669
685
  interface RenownWalletProviderProps {
670
- /** Per-adapter wallet config (e.g. `connect.renown.adapters`); a key's presence enables that adapter. Libraries load lazily on first login; `undefined`/empty = redirect-only. */
671
- adapters: WalletAdaptersConfig | undefined;
686
+ /** Wallet adapter descriptors, e.g. `[privyAdapter({ appId }), rainbowAdapter({})]` from `@renown/sdk/wallet/<id>`. Each descriptor's wallet library loads lazily on first login. Keep the array stable (module scope or `useMemo`) — it is snapshotted on mount. `undefined`/empty = redirect-only. */
687
+ adapters: WalletAdapterDescriptor[] | undefined;
672
688
  /** Theme handed to each adapter UI: `"light"`, `"dark"`, or `{ mode, accentColor?, accentColorForeground? }`. */
673
689
  theme?: WalletTheme;
674
690
  children: ReactNode;
@@ -685,8 +701,8 @@ interface RenownLoginMethod {
685
701
  id: LoginMethod;
686
702
  label: string;
687
703
  }
688
- /** Derive the offered login methods (wallet + Privy's methods) from an adapters config, for building a login UI. Reads config only — no wallet libraries load. Wire each to `useRenownAuth().login(undefined, id)`. Labels are overridable. See the reactor-browser README + Academy Renown auth guide. */
689
- declare function useRenownLoginMethods(adapters: WalletAdaptersConfig | undefined, labels?: Partial<Record<LoginMethod, string>>): RenownLoginMethod[];
704
+ /** Derive the offered login methods from wallet adapter descriptors, for building a login UI. Reads each descriptor's eager metadata only — no wallet libraries load. Buttons follow the descriptor array order, deduped. Wire each to `useRenownAuth().login(undefined, id)`. Labels are overridable. See the reactor-browser README + Academy Renown auth guide. */
705
+ declare function useRenownLoginMethods(adapters: WalletAdapterDescriptor[] | undefined, labels?: Partial<Record<LoginMethod, string>>): RenownLoginMethod[];
690
706
  //#endregion
691
- export { PHGlobalEventHandlerAdders as $, RenownAuth as $t, CopyIcon as A, PHAppConfig as At, RenownAuthButton as B, PHGlobalConfig as Bt, RENOWN_CHAIN_ID as C, FailedInstallation as Ct, initConnectCrypto as D, PHModal as Dt, VERIFIABLE_CREDENTIAL_EIP712_TYPE as E, PendingInstallation as Et, RenownUserButton as F, PHDocumentEditorConfig as Ft, useLoginStatus as G, PHGlobalConfigSettersForKey as Gt, addRenownEventHandler as H, PHGlobalConfigHooksForKey as Ht, RenownUserButtonMenuItem as I, PHDocumentEditorConfigHooks as It, AddPHGlobalEventHandler as J, PHRenownGlobalConfig as Jt, useRenown as K, PHProcessorsGlobalConfig as Kt, RenownUserButtonProps as L, PHDocumentEditorConfigKey as Lt, RenownLogo as M, PHAppConfigKey as Mt, SpinnerIcon as N, PHAppConfigSetters as Nt, initRenownCrypto as O, FullPHGlobalConfig as Ot, UserIcon as P, PHCommonGlobalConfig as Pt, PHGlobal as Q, openRenown as Qt, RenownLoginButton as R, PHDocumentEditorConfigSetters as Rt, ISSUER_TYPE as S, DiscoveryEventListener as St, RENOWN_URL as T, IPackageDiscoveryService as Tt, setRenown as U, PHGlobalConfigKey as Ut, RenownAuthButtonProps as V, PHGlobalConfigHooks as Vt, useDid as W, PHGlobalConfigSetters as Wt, BrowserReactorModule as X, login as Xt, BrowserReactorClientModule as Y, PHSentryGlobalConfig as Yt, LOADING as Z, logout as Zt, useRenownInitialUser as _, PHToastType as _t, RenownProvider as a, DocumentDispatch as an, WorkerReactorClientModule as at, CREDENTIAL_TYPES as b, TimelineItem as bt, RenownProps as c, PromiseState as cn, addDraggingNodeEventHandler as ct, RenownSessionCookieOptions as d, IPackageListerUnsubscribe as dt, RenownAuthAsync as en, PHGlobalKey as et, RenownSessionCookieState as f, IPackageManager as ft, RenownInitialUserProviderProps as g, PHToastOptions as gt, RenownInitialUserProvider as h, PHToastFn as ht, RenownWalletProviderProps as i, useRenownAuthAsync as in, UsePHGlobalValue as it, DisconnectIcon as j, PHAppConfigHooks as jt, ChevronDownIcon as k, PHAnalyticsGlobalConfig as kt, RenownInitOptions as l, PromiseWithState as ln, useDragNode as lt, useRenownSessionSynced as m, PackageManagerInstallResult as mt, useRenownLoginMethods as n, RenownAuthStatus as nn, SetEvent as nt, RenownProviderProps as o, FulfilledPromise as on, WorkerReactorModule as ot, useRenownSessionCookie as p, IPackagesListener as pt, useUser as q, PHRelationalProcessorsGlobalConfig as qt, RenownWalletProvider as r, useRenownAuth as rn, SetPHGlobalValue as rt, Renown as s, IDocumentCache as sn, DraggingNode as st, RenownLoginMethod as t, RenownAuthResolution as tn, PHGlobalValue as tt, useRenownInit as u, RejectedPromise as un, useDropNode as ut, CREDENTIAL_SCHEMA_EIP712_TYPE as v, TimelineBarItem as vt, RENOWN_NETWORK_ID as w, FailedInstallationReason as wt, DOMAIN_TYPE as x, DiscoveryEvent as xt, CREDENTIAL_SUBJECT_TYPE as y, TimelineDividerItem as yt, RenownLoginButtonProps as z, PHDrivesGlobalConfig as zt };
692
- //# sourceMappingURL=index-Cj_YGHcz.d.ts.map
707
+ export { BrowserReactorClientModule as $, PHSentryGlobalConfig as $t, VERIFIABLE_CREDENTIAL_EIP712_TYPE as A, PendingInstallation as At, RenownUserButtonMenuItem as B, PHDocumentEditorConfigHooks as Bt, CREDENTIAL_SUBJECT_TYPE as C, TimelineDividerItem as Ct, RENOWN_CHAIN_ID as D, FailedInstallation as Dt, ISSUER_TYPE as E, DiscoveryEventListener as Et, DisconnectIcon as F, PHAppConfigHooks as Ft, RenownAuthButtonProps as G, PHGlobalConfigHooks as Gt, RenownLoginButton as H, PHDocumentEditorConfigSetters as Ht, RenownLogo as I, PHAppConfigKey as It, useDid as J, PHGlobalConfigSetters as Jt, addRenownEventHandler as K, PHGlobalConfigHooksForKey as Kt, SpinnerIcon as L, PHAppConfigSetters as Lt, initRenownCrypto as M, FullPHGlobalConfig as Mt, ChevronDownIcon as N, PHAnalyticsGlobalConfig as Nt, RENOWN_NETWORK_ID as O, FailedInstallationReason as Ot, CopyIcon as P, PHAppConfig as Pt, AddPHGlobalEventHandler as Q, PHRenownGlobalConfig as Qt, UserIcon as R, PHCommonGlobalConfig as Rt, CREDENTIAL_SCHEMA_EIP712_TYPE as S, TimelineBarItem as St, DOMAIN_TYPE as T, DiscoveryEvent as Tt, RenownLoginButtonProps as U, PHDrivesGlobalConfig as Ut, RenownUserButtonProps as V, PHDocumentEditorConfigKey as Vt, RenownAuthButton as W, PHGlobalConfig as Wt, useRenown as X, PHProcessorsGlobalConfig as Xt, useLoginStatus as Y, PHGlobalConfigSettersForKey as Yt, useUser as Z, PHRelationalProcessorsGlobalConfig as Zt, RenownInitialAuth as _, IPackagesListener as _t, RenownProvider as a, RenownAuthResolution as an, PHGlobalValue as at, useRenownInitialAuth as b, PHToastOptions as bt, RenownProps as c, useRenownAuthAsync as cn, UsePHGlobalValue as ct, RenownSessionCookieOptions as d, IDocumentCache as dn, DraggingNode as dt, login as en, BrowserReactorModule as et, RenownSessionCookieState as f, PromiseState as fn, addDraggingNodeEventHandler as ft, RENOWN_INITIAL_UNKNOWN as g, IPackageManager as gt, RENOWN_INITIAL_ANONYMOUS as h, IPackageListerUnsubscribe as ht, RenownWalletProviderProps as i, RenownAuthAsync as in, PHGlobalKey as it, initConnectCrypto as j, PHModal as jt, RENOWN_URL as k, IPackageDiscoveryService as kt, RenownInitOptions as l, DocumentDispatch as ln, WorkerReactorClientModule as lt, useRenownSessionSynced as m, RejectedPromise as mn, useDropNode as mt, useRenownLoginMethods as n, openRenown as nn, PHGlobal as nt, RenownProviderProps as o, RenownAuthStatus as on, SetEvent as ot, useRenownSessionCookie as p, PromiseWithState as pn, useDragNode as pt, setRenown as q, PHGlobalConfigKey as qt, RenownWalletProvider as r, RenownAuth as rn, PHGlobalEventHandlerAdders as rt, Renown as s, useRenownAuth as sn, SetPHGlobalValue as st, RenownLoginMethod as t, logout as tn, LOADING as tt, useRenownInit as u, FulfilledPromise as un, WorkerReactorModule as ut, RenownInitialUserProvider as v, PackageManagerInstallResult as vt, CREDENTIAL_TYPES as w, TimelineItem as wt, useRenownInitialUser as x, PHToastType as xt, RenownInitialUserProviderProps as y, PHToastFn as yt, RenownUserButton as z, PHDocumentEditorConfig as zt };
708
+ //# sourceMappingURL=index-C0wfUnfF.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index-Cj_YGHcz.d.ts","names":[],"sources":["../src/types/documents.ts","../src/renown/use-renown-auth.ts","../src/renown/session.ts","../src/types/config.ts","../src/types/modals.ts","../src/types/package-discovery.ts","../src/types/timeline.ts","../src/types/toast.ts","../src/types/vetra.ts","../src/hooks/node-drag-and-drop.ts","../src/types/global.ts","../src/hooks/renown.ts","../src/renown/components/RenownAuthButton.tsx","../src/renown/components/RenownLoginButton.tsx","../src/renown/components/RenownUserButton.tsx","../src/renown/components/icons.tsx","../src/renown/crypto.ts","../src/renown/constants.ts","../src/renown/initial-user.tsx","../src/renown/use-renown-session-cookie.ts","../src/renown/use-renown-init.ts","../src/renown/renown-init.tsx","../src/renown/provider.tsx","../src/renown/wallet-provider.tsx","../src/renown/login-methods.ts"],"mappings":"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"}
1
+ {"version":3,"file":"index-C0wfUnfF.d.ts","names":[],"sources":["../src/types/documents.ts","../src/renown/use-renown-auth.ts","../src/renown/session.ts","../src/types/config.ts","../src/types/modals.ts","../src/types/package-discovery.ts","../src/types/timeline.ts","../src/types/toast.ts","../src/types/vetra.ts","../src/hooks/node-drag-and-drop.ts","../src/types/global.ts","../src/hooks/renown.ts","../src/renown/components/RenownAuthButton.tsx","../src/renown/components/RenownLoginButton.tsx","../src/renown/components/RenownUserButton.tsx","../src/renown/components/icons.tsx","../src/renown/crypto.ts","../src/renown/constants.ts","../src/renown/initial-user.tsx","../src/renown/use-renown-session-cookie.ts","../src/renown/use-renown-init.ts","../src/renown/renown-init.tsx","../src/renown/provider.tsx","../src/renown/wallet-provider.tsx","../src/renown/login-methods.ts"],"mappings":"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"}
package/dist/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import { a as getAnalyticsStore, i as createAnalyticsStore, n as IPowerhouseAnalytics, r as CreateStoreOptions } from "./types-CPV0Cnsy.js";
2
- import { $ as PHGlobalEventHandlerAdders, $t as RenownAuth, A as CopyIcon, At as PHAppConfig, B as RenownAuthButton, Bt as PHGlobalConfig, C as RENOWN_CHAIN_ID, Ct as FailedInstallation, D as initConnectCrypto, Dt as PHModal, E as VERIFIABLE_CREDENTIAL_EIP712_TYPE, Et as PendingInstallation, F as RenownUserButton, Ft as PHDocumentEditorConfig, G as useLoginStatus, Gt as PHGlobalConfigSettersForKey, H as addRenownEventHandler, Ht as PHGlobalConfigHooksForKey, I as RenownUserButtonMenuItem, It as PHDocumentEditorConfigHooks, J as AddPHGlobalEventHandler, Jt as PHRenownGlobalConfig, K as useRenown, Kt as PHProcessorsGlobalConfig, L as RenownUserButtonProps, Lt as PHDocumentEditorConfigKey, M as RenownLogo, Mt as PHAppConfigKey, N as SpinnerIcon, Nt as PHAppConfigSetters, O as initRenownCrypto, Ot as FullPHGlobalConfig, P as UserIcon, Pt as PHCommonGlobalConfig, Q as PHGlobal, Qt as openRenown, R as RenownLoginButton, Rt as PHDocumentEditorConfigSetters, S as ISSUER_TYPE, St as DiscoveryEventListener, T as RENOWN_URL, Tt as IPackageDiscoveryService, U as setRenown, Ut as PHGlobalConfigKey, V as RenownAuthButtonProps, Vt as PHGlobalConfigHooks, W as useDid, Wt as PHGlobalConfigSetters, X as BrowserReactorModule, Xt as login, Y as BrowserReactorClientModule, Yt as PHSentryGlobalConfig, Z as LOADING, Zt as logout, _ as useRenownInitialUser, _t as PHToastType, a as RenownProvider, an as DocumentDispatch, at as WorkerReactorClientModule, b as CREDENTIAL_TYPES, bt as TimelineItem, c as RenownProps, cn as PromiseState, ct as addDraggingNodeEventHandler, d as RenownSessionCookieOptions, dt as IPackageListerUnsubscribe, en as RenownAuthAsync, et as PHGlobalKey, f as RenownSessionCookieState, ft as IPackageManager, g as RenownInitialUserProviderProps, gt as PHToastOptions, h as RenownInitialUserProvider, ht as PHToastFn, i as RenownWalletProviderProps, in as useRenownAuthAsync, it as UsePHGlobalValue, j as DisconnectIcon, jt as PHAppConfigHooks, k as ChevronDownIcon, kt as PHAnalyticsGlobalConfig, l as RenownInitOptions, ln as PromiseWithState, lt as useDragNode, m as useRenownSessionSynced, mt as PackageManagerInstallResult, n as useRenownLoginMethods, nn as RenownAuthStatus, nt as SetEvent, o as RenownProviderProps, on as FulfilledPromise, ot as WorkerReactorModule, p as useRenownSessionCookie, pt as IPackagesListener, q as useUser, qt as PHRelationalProcessorsGlobalConfig, r as RenownWalletProvider, rn as useRenownAuth, rt as SetPHGlobalValue, s as Renown, sn as IDocumentCache, st as DraggingNode, t as RenownLoginMethod, tn as RenownAuthResolution, tt as PHGlobalValue, u as useRenownInit, un as RejectedPromise, ut as useDropNode, v as CREDENTIAL_SCHEMA_EIP712_TYPE, vt as TimelineBarItem, w as RENOWN_NETWORK_ID, wt as FailedInstallationReason, x as DOMAIN_TYPE, xt as DiscoveryEvent, y as CREDENTIAL_SUBJECT_TYPE, yt as TimelineDividerItem, z as RenownLoginButtonProps, zt as PHDrivesGlobalConfig } from "./index-Cj_YGHcz.js";
2
+ import { $ as BrowserReactorClientModule, $t as PHSentryGlobalConfig, A as VERIFIABLE_CREDENTIAL_EIP712_TYPE, At as PendingInstallation, B as RenownUserButtonMenuItem, Bt as PHDocumentEditorConfigHooks, C as CREDENTIAL_SUBJECT_TYPE, Ct as TimelineDividerItem, D as RENOWN_CHAIN_ID, Dt as FailedInstallation, E as ISSUER_TYPE, Et as DiscoveryEventListener, F as DisconnectIcon, Ft as PHAppConfigHooks, G as RenownAuthButtonProps, Gt as PHGlobalConfigHooks, H as RenownLoginButton, Ht as PHDocumentEditorConfigSetters, I as RenownLogo, It as PHAppConfigKey, J as useDid, Jt as PHGlobalConfigSetters, K as addRenownEventHandler, Kt as PHGlobalConfigHooksForKey, L as SpinnerIcon, Lt as PHAppConfigSetters, M as initRenownCrypto, Mt as FullPHGlobalConfig, N as ChevronDownIcon, Nt as PHAnalyticsGlobalConfig, O as RENOWN_NETWORK_ID, Ot as FailedInstallationReason, P as CopyIcon, Pt as PHAppConfig, Q as AddPHGlobalEventHandler, Qt as PHRenownGlobalConfig, R as UserIcon, Rt as PHCommonGlobalConfig, S as CREDENTIAL_SCHEMA_EIP712_TYPE, St as TimelineBarItem, T as DOMAIN_TYPE, Tt as DiscoveryEvent, U as RenownLoginButtonProps, Ut as PHDrivesGlobalConfig, V as RenownUserButtonProps, Vt as PHDocumentEditorConfigKey, W as RenownAuthButton, Wt as PHGlobalConfig, X as useRenown, Xt as PHProcessorsGlobalConfig, Y as useLoginStatus, Yt as PHGlobalConfigSettersForKey, Z as useUser, Zt as PHRelationalProcessorsGlobalConfig, _ as RenownInitialAuth, _t as IPackagesListener, a as RenownProvider, an as RenownAuthResolution, at as PHGlobalValue, b as useRenownInitialAuth, bt as PHToastOptions, c as RenownProps, cn as useRenownAuthAsync, ct as UsePHGlobalValue, d as RenownSessionCookieOptions, dn as IDocumentCache, dt as DraggingNode, en as login, et as BrowserReactorModule, f as RenownSessionCookieState, fn as PromiseState, ft as addDraggingNodeEventHandler, g as RENOWN_INITIAL_UNKNOWN, gt as IPackageManager, h as RENOWN_INITIAL_ANONYMOUS, ht as IPackageListerUnsubscribe, i as RenownWalletProviderProps, in as RenownAuthAsync, it as PHGlobalKey, j as initConnectCrypto, jt as PHModal, k as RENOWN_URL, kt as IPackageDiscoveryService, l as RenownInitOptions, ln as DocumentDispatch, lt as WorkerReactorClientModule, m as useRenownSessionSynced, mn as RejectedPromise, mt as useDropNode, n as useRenownLoginMethods, nn as openRenown, nt as PHGlobal, o as RenownProviderProps, on as RenownAuthStatus, ot as SetEvent, p as useRenownSessionCookie, pn as PromiseWithState, pt as useDragNode, q as setRenown, qt as PHGlobalConfigKey, r as RenownWalletProvider, rn as RenownAuth, rt as PHGlobalEventHandlerAdders, s as Renown, sn as useRenownAuth, st as SetPHGlobalValue, t as RenownLoginMethod, tn as logout, tt as LOADING, u as useRenownInit, un as FulfilledPromise, ut as WorkerReactorModule, v as RenownInitialUserProvider, vt as PackageManagerInstallResult, w as CREDENTIAL_TYPES, wt as TimelineItem, x as useRenownInitialUser, xt as PHToastType, y as RenownInitialUserProviderProps, yt as PHToastFn, z as RenownUserButton, zt as PHDocumentEditorConfig } from "./index-C0wfUnfF.js";
3
3
  import { baseDocumentModels, baseDocumentModelsMap } from "./src/document-model.js";
4
4
  import { t as PGlite } from "./pglite-CntadC_p-BgIvrYtV.js";
5
5
  import { r as PGliteWithLive } from "./index-B3keszpu.js";
@@ -1474,5 +1474,5 @@ declare function getUserPermissions(): {
1474
1474
  //#region src/utils/validate-document.d.ts
1475
1475
  declare const validateDocument: (document: PHDocument$1) => ValidationError[];
1476
1476
  //#endregion
1477
- export { ActionTracker, AddPHGlobalEventHandler, BaseStorage, BrowserLocalStorage, BrowserReactorClientModule, BrowserReactorModule, COMMON_PACKAGE_ID, CREDENTIAL_SCHEMA_EIP712_TYPE, CREDENTIAL_SUBJECT_TYPE, CREDENTIAL_TYPES, ChannelScheme, ChevronDownIcon, ConflictError, type ConflictInfo, ConflictResolution, type ConflictStrategy, type ConnectionState, type ConnectionStateSnapshot, CopyIcon, CreateStoreOptions, DEFAULT_DRIVE_EDITOR_ID, DEFAULT_DRIVE_ID, DEFAULT_SWITCHBOARD_URL, DOMAIN_TYPE, DRIVE_DOCUMENT_TYPES, type Database, DisconnectIcon, DiscoveryEvent, DiscoveryEventListener, DispatchFn, DocumentCache, type RemoteDocumentChangeEvent as DocumentChangeEvent, type DocumentChangeListener, DocumentChangeType, DocumentDispatch, DocumentIntegrityService, DocumentModelNotFoundError, DocumentNotFoundError, DocumentTypeIcon, DocumentTypeMismatchError, DraggingNode, DriveCollectionId, DriveSystemInfoState, EDITOR_FILE_DROP_OPT_OUT_ATTR, FailedInstallation, FailedInstallationReason, FileUploadProgress, FileUploadProgressCallback, FulfilledPromise, FullPHGlobalConfig, type GetDocumentResult, type GetDocumentWithOperationsResult, type GetOperationsResult, GqlRequestChannel, GraphQLClientDocumentCache, GraphQLClientDocumentEvent, GraphQLClientDocumentsEvent, GraphQLClientWindowEvents, GraphQLDocumentEventOperationName, GraphQLDocumentEvents, GraphQLDocumentEventsOperationName, GraphQLDocumentsEvents, type IChannel, IDocumentCache, type IDocumentModelLoader, IPackageDiscoveryService, IPackageListerUnsubscribe, IPackageManager, IPackagesListener, type IProcessor, type IProcessorHostModule, type IQueue, type IReactorClient, IReactorProcessorHostModule, type IRelationalDb, type IRemoteClient, type IRemoteController, ISSUER_TYPE, IStorage, InMemoryQueue, IntervalPollTimer, type Job, type JwtHandler, type KeyframeValidationIssue, LOADING, type MergeHandler, NoSelectedDocumentError, NodeKind, type OperationWithContext, PHAnalyticsGlobalConfig, PHAppConfig, PHAppConfigHooks, PHAppConfigKey, PHAppConfigSetters, PHCommonGlobalConfig, PHDocumentEditorConfig, PHDocumentEditorConfigHooks, PHDocumentEditorConfigKey, PHDocumentEditorConfigSetters, PHDrivesGlobalConfig, PHGlobal, PHGlobalConfig, PHGlobalConfigHooks, PHGlobalConfigHooksForKey, PHGlobalConfigKey, PHGlobalConfigSetters, PHGlobalConfigSettersForKey, PHGlobalEventHandlerAdders, PHGlobalKey, PHGlobalValue, PHModal, PHProcessorsGlobalConfig, PHRelationalProcessorsGlobalConfig, PHRenownGlobalConfig, PHSentryGlobalConfig, PHToastFn, PHToastOptions, PHToastType, PackageManagerInstallResult, type ParsedDriveUrl, PendingInstallation, PollBehavior, type ProcessorApp, type ProcessorFactory, type ProcessorFactoryBuilder, type ProcessorFilter, type ProcessorRecord, PromiseState, PromiseWithState, PropagationMode, PublishEvent, type PushResult, QueryCallbackReturnType, REACTOR_SCHEMA, RENOWN_CHAIN_ID, RENOWN_NETWORK_ID, RENOWN_URL, ReactorBuilder, ReactorClientBuilder, ReactorDefaultDrivesConfig, ReactorGraphQLClient, type RebuildResult, RefreshReactorDataConfig, RegistryClient, RejectedPromise, RelationalDbProcessor, RelationalDbWithLive, type Remote, RemoteClient, type RemoteControllerGraphQLClient, type RemoteControllerOptions, RemoteDocumentController, type RemoteDocumentControllerWith, type RemoteDocumentData, type RemoteFilter, type RemoteMeta, type RemoteOperation, type RemoteOperationResultPage, Renown, RenownAuth, RenownAuthAsync, RenownAuthButton, RenownAuthButtonProps, RenownAuthResolution, RenownAuthStatus, RenownInitOptions, RenownInitialUserProvider, RenownInitialUserProviderProps, RenownLoginButton, RenownLoginButtonProps, RenownLoginMethod, RenownLogo, RenownProps, RenownProvider, RenownProviderProps, RenownSessionCookieOptions, RenownSessionCookieState, RenownUserButton, RenownUserButtonMenuItem, RenownUserButtonProps, RenownWalletProvider, RenownWalletProviderProps, SetEvent, SetPHGlobalValue, type SignerConfig, type SnapshotValidationIssue, SpinnerIcon, type SyncOperation, SyncOperationStatus, type SyncStatus, TStateSchemaZodObject, TimelineBarItem, TimelineDividerItem, TimelineItem, type TrackedAction, UISyncStatus, UnsupportedDocumentTypeError, UploadStatus, UseAttachmentPreviewInput, UseAttachmentPreviewReturn, UseAttachmentUploadReturn, UseDispatchResult, UseEditorFileDropOptions, UseEditorFileDropResult, UseOnDropFile, UsePHGlobalValue, UserIcon, VERIFIABLE_CREDENTIAL_EIP712_TYPE, type ValidationResult, WorkerReactorClientModule, WorkerReactorModule, addAllowListEventHandler, addAllowedDocumentTypesEventHandler, addAnalyticsDatabaseNameEventHandler, addAttachmentServiceEventHandler, addBasePathEventHandler, addCliVersionEventHandler, addDefaultDrivesUrlEventHandler, addDisabledEditorsEventHandler, addDocument, addDocumentCacheEventHandler, addDraggingNodeEventHandler, addDrive, addDrivesEventHandler, addDrivesPreserveStrategyEventHandler, addEnabledEditorsEventHandler, addFeaturesEventHandler, addFileUploadOperationsChunkSizeEventHandler, addFileWithProgress, addFolder, addGaTrackingIdEventHandler, addGraphQLReactorClientEventHandler, addIsAddCloudDrivesEnabledEventHandler, addIsAddDriveEnabledEventHandler, addIsAddLocalDrivesEnabledEventHandler, addIsAddPublicDrivesEnabledEventHandler, addIsAnalyticsDatabaseWorkerEnabledEventHandler, addIsAnalyticsEnabledEventHandler, addIsAnalyticsExternalProcessorsEnabledEventHandler, addIsCloudDrivesEnabledEventHandler, addIsDeleteCloudDrivesEnabledEventHandler, addIsDeleteLocalDrivesEnabledEventHandler, addIsDeletePublicDrivesEnabledEventHandler, addIsDiffAnalyticsEnabledEventHandler, addIsDocumentModelSelectionSettingsEnabledEventHandler, addIsDragAndDropEnabledEventHandler, addIsDriveAnalyticsEnabledEventHandler, addIsEditorDebugModeEnabledEventHandler, addIsEditorReadModeEnabledEventHandler, addIsExternalControlsEnabledEventHandler, addIsExternalPackagesEnabledEventHandler, addIsExternalProcessorsEnabledEventHandler, addIsExternalRelationalProcessorsEnabledEventHandler, addIsLocalDrivesEnabledEventHandler, addIsPublicDrivesEnabledEventHandler, addIsRelationalProcessorsEnabledEventHandler, addIsSentryTracingEnabledEventHandler, addLoadingEventHandler, addLocalDrivesEnabledEventHandler, addLogLevelEventHandler, addModalEventHandler, addPHEventHandlers, addPackageDiscoveryServiceEventHandler, addPromiseState, addReactorClientEventHandler, addReactorClientModuleEventHandler, addRemoteDrive, addRenownAdaptersEventHandler, addRenownChainIdEventHandler, addRenownEventHandler, addRenownNetworkIdEventHandler, addRenownUrlEventHandler, addRequiresHardRefreshEventHandler, addResetSelectedNodeEventHandler, addRevisionHistoryVisibleEventHandler, addRouterBasenameEventHandler, addSelectedDriveIdEventHandler, addSelectedNodeIdEventHandler, addSelectedTimelineItemEventHandler, addSelectedTimelineRevisionEventHandler, addSentryDsnEventHandler, addSentryEnvEventHandler, addSentryReleaseEventHandler, addSetSelectedDriveOnPopStateEventHandler, addSetSelectedNodeOnPopStateEventHandler, addStudioModeEventHandler, addSwitchboardUrlEventHandler, addToastEventHandler, addVersionCheckIntervalEventHandler, addVersionEventHandler, addVetraPackageManagerEventHandler, addWarnOutdatedAppEventHandler, baseDocumentModels, baseDocumentModelsMap, buildDocumentSubgraphQuery, buildDocumentSubgraphUrl, callEventHandlerRegisterFunctions, callGlobalSetterForKey, clearGlobal, closePHModal, commonGlobalEventHandlerFunctions, convertRemoteOperations, createAnalyticsStore, createClient, createProcessorQuery, createUrlWithPreservedParams, deleteDrive, deleteNode, deriveSystemUrl, dispatchActions, downloadDocument, driveIdFromUrl, dropAllReactorStorage, exportFile, extractDriveIdFromPath, extractDriveIdFromSlug, extractDriveSlugFromPath, extractNodeIdFromPath, extractNodeIdFromSlug, extractNodeSlugFromPath, findUuid, getAnalyticsStore, getDocumentGraphqlQuery, getDriveIdBySlug, getDrives, getGlobal, getPackagePage, getPackages, getPackagesByDocumentType, getPackagesForDocumentType, getPathWithoutBase, getRevisionFromDate, getSlugFromDriveUrl, getSwitchboardGatewayUrlFromDriveUrl, getSyncStatus, getSyncStatusSync, getUserPermissions, graphqlDocumentEvents, graphqlDocumentsEvents, graphqlEventsToSyncDrive, hasPreloadBandwidth, hideRevisionHistory, identifierFromMutateDocumentOperationVariables, initConnectCrypto, initRenownCrypto, initTheme, isDocumentTypeSupported, isDriveAuthError, isExternalControlsEnabledEventFunctions, isFileNodeKind, isFolderNodeKind, loadFile, loading, login, logout, makeDriveUrlComponent, makeNodeSlug, makePHEventFunctions, openRenown, parseDriveUrl, phAppConfigHooks, phAppConfigSetters, phDocumentEditorConfigHooks, phDocumentEditorConfigSetters, phDocumentFromQuery, phDocumentsFromQuery, phGlobalConfigHooks, phGlobalConfigSetters, preloadEditorModule, reactorGraphqlBatchFetchDocuments, reactorGraphqlCreateDocument, reactorGraphqlDeleteDocument, reactorGraphqlDeleteDocuments, reactorGraphqlFetchDocument, reactorGraphqlMutateDocument, readPromiseState, refreshReactorData, refreshReactorDataClient, renameDrive, renameDriveNode, resolveUrlPathname, setAllowList, setAllowedDocumentTypes, setAnalyticsDatabaseName, setAttachmentService, setBasePath, setCliVersion, setDefaultDrivesUrl, setDefaultPHGlobalConfig, setDisabledEditors, setDocumentCache, setDriveAvailableOffline, setDriveMetadata, setDriveSharingType, setDrives, setDrivesPreserveStrategy, setEnabledEditors, setFeatures, setFileUploadOperationsChunkSize, setGaTrackingId, setGlobal, setGraphQLReactorClient, setIsAddCloudDrivesEnabled, setIsAddDriveEnabled, setIsAddLocalDrivesEnabled, setIsAddPublicDrivesEnabled, setIsAnalyticsDatabaseWorkerEnabled, setIsAnalyticsEnabled, setIsAnalyticsExternalProcessorsEnabled, setIsCloudDrivesEnabled, setIsDeleteCloudDrivesEnabled, setIsDeleteLocalDrivesEnabled, setIsDeletePublicDrivesEnabled, setIsDiffAnalyticsEnabled, setIsDocumentModelSelectionSettingsEnabled, setIsDragAndDropEnabled, setIsDriveAnalyticsEnabled, setIsEditorDebugModeEnabled, setIsEditorReadModeEnabled, setIsExternalControlsEnabled, setIsExternalPackagesEnabled, setIsExternalProcessorsEnabled, setIsExternalRelationalProcessorsEnabled, setIsLocalDrivesEnabled, setIsPublicDrivesEnabled, setIsRelationalProcessorsEnabled, setIsSentryTracingEnabled, setLoading, setLocalDrivesEnabled, setLogLevel, setPGliteDB, setPHAppConfig, setPHAppConfigByKey, setPHDocumentEditorConfig, setPHDocumentEditorConfigByKey, setPHGlobalConfig, setPHGlobalConfigByKey, setPHModal, setPHToast, setPackageDiscoveryService, setReactorClient, setReactorClientModule, setRenown, setRenownAdapters, setRenownChainId, setRenownNetworkId, setRenownUrl, setRequiresHardRefresh, setRevisionHistoryVisible, setRouterBasename, setSelectedDrive, setSelectedDriveId, setSelectedNode, setSelectedTimelineItem, setSelectedTimelineRevision, setSentryDsn, setSentryEnv, setSentryRelease, setStudioMode, setSwitchboardUrl, setVersion, setVersionCheckInterval, setVetraPackageManager, setWarnOutdatedApp, showCreateDocumentModal, showDeleteNodeModal, showPHModal, showRevisionHistory, sortNodesByName, trimTrailingSlash, truncateAllTables, useAllowList, useAllowedDocumentModelModules, useAllowedDocumentTypes, useAnalyticsDatabaseName, useAppModuleById, useAppModules, useAttachmentPreview, useAttachmentService, useAttachmentUpload, useAttachments, useBasePath, useCliVersion, useConnectionState, useConnectionStates, useDatabase, useDefaultAppModule, useDefaultDrivesUrl, useDid, useDisabledEditors, useDispatch, useDocument, useDocumentById, useDocumentCache, useDocumentModelModuleById, useDocumentModelModules, useDocumentOfType, useDocumentOperations, useDocumentSafe, useDocumentTypes, useDocumentTypesInSelectedDrive, useDocuments, useDocumentsByIds, useDocumentsInSelectedDrive, useDocumentsInSelectedFolder, useDownloadDocument, useDragNode, useDriveById, useDriveSystemInfo, useDrives, useDrivesPreserveStrategy, useDropFile, useDropNode, useEditorFileDrop, useEditorModuleById, useEditorModules, useEditorModulesForDocumentType, useEditorPreloader, useEnabledEditors, useFallbackEditorModule, useFeatures, useFileNodesInSelectedDrive, useFileNodesInSelectedFolder, useFileUploadOperationsChunkSize, useFolderById, useFolderNodesInSelectedDrive, useFolderNodesInSelectedFolder, useGaTrackingId, useGetDocument, useGetDocumentAsync, useGetDocuments, useGetSwitchboardLink, useGraphQLReactorClient, useInitReactorGraphqlClient, useIsAddCloudDrivesEnabled, useIsAddDriveEnabled, useIsAddLocalDrivesEnabled, useIsAddPublicDrivesEnabled, useIsAnalyticsDatabaseWorkerEnabled, useIsAnalyticsEnabled, useIsAnalyticsExternalProcessorsEnabled, useIsCloudDrivesEnabled, useIsDeleteCloudDrivesEnabled, useIsDeleteLocalDrivesEnabled, useIsDeletePublicDrivesEnabled, useIsDiffAnalyticsEnabled, useIsDocumentModelSelectionSettingsEnabled, useIsDragAndDropEnabled, useIsDriveAnalyticsEnabled, useIsEditorDebugModeEnabled, useIsEditorReadModeEnabled, useIsExternalControlsEnabled, useIsExternalPackagesEnabled, useIsExternalProcessorsEnabled, useIsExternalRelationalProcessorsEnabled, useIsLocalDrivesEnabled, useIsPublicDrivesEnabled, useIsRelationalProcessorsEnabled, useIsSentryTracingEnabled, useLoading, useLocalDrivesEnabled, useLogLevel, useLoginStatus, useModelRegistry, useNodeActions, useNodeById, useNodeParentFolderById, useNodePathById, useNodesInSelectedDrive, useNodesInSelectedDriveOrFolder, useNodesInSelectedFolder, useOnDropFile, usePGlite, usePHAppConfigByKey, usePHDocumentEditorConfigByKey, usePHGlobalConfigByKey, usePHModal, usePHToast, usePackageDiscoveryService, useParentFolderForSelectedNode, useReactorClient, useReactorClientModule, useRelationalDb, useRelationalQuery, useRelationalQueryOptions, useRenown, useRenownAdapters, useRenownAuth, useRenownAuthAsync, useRenownChainId, useRenownInit, useRenownInitialUser, useRenownLoginMethods, useRenownNetworkId, useRenownSessionCookie, useRenownSessionSynced, useRenownUrl, useRequiresHardRefresh, useResetPHGlobalConfig, useRevisionHistoryVisible, useRouterBasename, useSelectedDocument, useSelectedDocumentId, useSelectedDocumentOfType, useSelectedDocumentSafe, useSelectedDrive, useSelectedDriveId, useSelectedDriveSafe, useSelectedFolder, useSelectedNode, useSelectedNodePath, useSelectedTimelineItem, useSelectedTimelineRevision, useSentryDsn, useSentryEnv, useSentryRelease, useSetDefaultPHGlobalConfig, useSetPHAppConfig, useSetPHDocumentEditorConfig, useSetPHGlobalConfig, useStudioMode, useSubgraphModules, useSupportedDocumentTypesInReactor, useSwitchboardUrl, useSync, useSyncList, useTheme, useUser, useUserPermissions, useVersion, useVersionCheckInterval, useVetraPackageManager, useVetraPackages, useWarnOutdatedApp, validateDocument, waitForDocumentReady };
1477
+ export { ActionTracker, AddPHGlobalEventHandler, BaseStorage, BrowserLocalStorage, BrowserReactorClientModule, BrowserReactorModule, COMMON_PACKAGE_ID, CREDENTIAL_SCHEMA_EIP712_TYPE, CREDENTIAL_SUBJECT_TYPE, CREDENTIAL_TYPES, ChannelScheme, ChevronDownIcon, ConflictError, type ConflictInfo, ConflictResolution, type ConflictStrategy, type ConnectionState, type ConnectionStateSnapshot, CopyIcon, CreateStoreOptions, DEFAULT_DRIVE_EDITOR_ID, DEFAULT_DRIVE_ID, DEFAULT_SWITCHBOARD_URL, DOMAIN_TYPE, DRIVE_DOCUMENT_TYPES, type Database, DisconnectIcon, DiscoveryEvent, DiscoveryEventListener, DispatchFn, DocumentCache, type RemoteDocumentChangeEvent as DocumentChangeEvent, type DocumentChangeListener, DocumentChangeType, DocumentDispatch, DocumentIntegrityService, DocumentModelNotFoundError, DocumentNotFoundError, DocumentTypeIcon, DocumentTypeMismatchError, DraggingNode, DriveCollectionId, DriveSystemInfoState, EDITOR_FILE_DROP_OPT_OUT_ATTR, FailedInstallation, FailedInstallationReason, FileUploadProgress, FileUploadProgressCallback, FulfilledPromise, FullPHGlobalConfig, type GetDocumentResult, type GetDocumentWithOperationsResult, type GetOperationsResult, GqlRequestChannel, GraphQLClientDocumentCache, GraphQLClientDocumentEvent, GraphQLClientDocumentsEvent, GraphQLClientWindowEvents, GraphQLDocumentEventOperationName, GraphQLDocumentEvents, GraphQLDocumentEventsOperationName, GraphQLDocumentsEvents, type IChannel, IDocumentCache, type IDocumentModelLoader, IPackageDiscoveryService, IPackageListerUnsubscribe, IPackageManager, IPackagesListener, type IProcessor, type IProcessorHostModule, type IQueue, type IReactorClient, IReactorProcessorHostModule, type IRelationalDb, type IRemoteClient, type IRemoteController, ISSUER_TYPE, IStorage, InMemoryQueue, IntervalPollTimer, type Job, type JwtHandler, type KeyframeValidationIssue, LOADING, type MergeHandler, NoSelectedDocumentError, NodeKind, type OperationWithContext, PHAnalyticsGlobalConfig, PHAppConfig, PHAppConfigHooks, PHAppConfigKey, PHAppConfigSetters, PHCommonGlobalConfig, PHDocumentEditorConfig, PHDocumentEditorConfigHooks, PHDocumentEditorConfigKey, PHDocumentEditorConfigSetters, PHDrivesGlobalConfig, PHGlobal, PHGlobalConfig, PHGlobalConfigHooks, PHGlobalConfigHooksForKey, PHGlobalConfigKey, PHGlobalConfigSetters, PHGlobalConfigSettersForKey, PHGlobalEventHandlerAdders, PHGlobalKey, PHGlobalValue, PHModal, PHProcessorsGlobalConfig, PHRelationalProcessorsGlobalConfig, PHRenownGlobalConfig, PHSentryGlobalConfig, PHToastFn, PHToastOptions, PHToastType, PackageManagerInstallResult, type ParsedDriveUrl, PendingInstallation, PollBehavior, type ProcessorApp, type ProcessorFactory, type ProcessorFactoryBuilder, type ProcessorFilter, type ProcessorRecord, PromiseState, PromiseWithState, PropagationMode, PublishEvent, type PushResult, QueryCallbackReturnType, REACTOR_SCHEMA, RENOWN_CHAIN_ID, RENOWN_INITIAL_ANONYMOUS, RENOWN_INITIAL_UNKNOWN, RENOWN_NETWORK_ID, RENOWN_URL, ReactorBuilder, ReactorClientBuilder, ReactorDefaultDrivesConfig, ReactorGraphQLClient, type RebuildResult, RefreshReactorDataConfig, RegistryClient, RejectedPromise, RelationalDbProcessor, RelationalDbWithLive, type Remote, RemoteClient, type RemoteControllerGraphQLClient, type RemoteControllerOptions, RemoteDocumentController, type RemoteDocumentControllerWith, type RemoteDocumentData, type RemoteFilter, type RemoteMeta, type RemoteOperation, type RemoteOperationResultPage, Renown, RenownAuth, RenownAuthAsync, RenownAuthButton, RenownAuthButtonProps, RenownAuthResolution, RenownAuthStatus, RenownInitOptions, RenownInitialAuth, RenownInitialUserProvider, RenownInitialUserProviderProps, RenownLoginButton, RenownLoginButtonProps, RenownLoginMethod, RenownLogo, RenownProps, RenownProvider, RenownProviderProps, RenownSessionCookieOptions, RenownSessionCookieState, RenownUserButton, RenownUserButtonMenuItem, RenownUserButtonProps, RenownWalletProvider, RenownWalletProviderProps, SetEvent, SetPHGlobalValue, type SignerConfig, type SnapshotValidationIssue, SpinnerIcon, type SyncOperation, SyncOperationStatus, type SyncStatus, TStateSchemaZodObject, TimelineBarItem, TimelineDividerItem, TimelineItem, type TrackedAction, UISyncStatus, UnsupportedDocumentTypeError, UploadStatus, UseAttachmentPreviewInput, UseAttachmentPreviewReturn, UseAttachmentUploadReturn, UseDispatchResult, UseEditorFileDropOptions, UseEditorFileDropResult, UseOnDropFile, UsePHGlobalValue, UserIcon, VERIFIABLE_CREDENTIAL_EIP712_TYPE, type ValidationResult, WorkerReactorClientModule, WorkerReactorModule, addAllowListEventHandler, addAllowedDocumentTypesEventHandler, addAnalyticsDatabaseNameEventHandler, addAttachmentServiceEventHandler, addBasePathEventHandler, addCliVersionEventHandler, addDefaultDrivesUrlEventHandler, addDisabledEditorsEventHandler, addDocument, addDocumentCacheEventHandler, addDraggingNodeEventHandler, addDrive, addDrivesEventHandler, addDrivesPreserveStrategyEventHandler, addEnabledEditorsEventHandler, addFeaturesEventHandler, addFileUploadOperationsChunkSizeEventHandler, addFileWithProgress, addFolder, addGaTrackingIdEventHandler, addGraphQLReactorClientEventHandler, addIsAddCloudDrivesEnabledEventHandler, addIsAddDriveEnabledEventHandler, addIsAddLocalDrivesEnabledEventHandler, addIsAddPublicDrivesEnabledEventHandler, addIsAnalyticsDatabaseWorkerEnabledEventHandler, addIsAnalyticsEnabledEventHandler, addIsAnalyticsExternalProcessorsEnabledEventHandler, addIsCloudDrivesEnabledEventHandler, addIsDeleteCloudDrivesEnabledEventHandler, addIsDeleteLocalDrivesEnabledEventHandler, addIsDeletePublicDrivesEnabledEventHandler, addIsDiffAnalyticsEnabledEventHandler, addIsDocumentModelSelectionSettingsEnabledEventHandler, addIsDragAndDropEnabledEventHandler, addIsDriveAnalyticsEnabledEventHandler, addIsEditorDebugModeEnabledEventHandler, addIsEditorReadModeEnabledEventHandler, addIsExternalControlsEnabledEventHandler, addIsExternalPackagesEnabledEventHandler, addIsExternalProcessorsEnabledEventHandler, addIsExternalRelationalProcessorsEnabledEventHandler, addIsLocalDrivesEnabledEventHandler, addIsPublicDrivesEnabledEventHandler, addIsRelationalProcessorsEnabledEventHandler, addIsSentryTracingEnabledEventHandler, addLoadingEventHandler, addLocalDrivesEnabledEventHandler, addLogLevelEventHandler, addModalEventHandler, addPHEventHandlers, addPackageDiscoveryServiceEventHandler, addPromiseState, addReactorClientEventHandler, addReactorClientModuleEventHandler, addRemoteDrive, addRenownAdaptersEventHandler, addRenownChainIdEventHandler, addRenownEventHandler, addRenownNetworkIdEventHandler, addRenownUrlEventHandler, addRequiresHardRefreshEventHandler, addResetSelectedNodeEventHandler, addRevisionHistoryVisibleEventHandler, addRouterBasenameEventHandler, addSelectedDriveIdEventHandler, addSelectedNodeIdEventHandler, addSelectedTimelineItemEventHandler, addSelectedTimelineRevisionEventHandler, addSentryDsnEventHandler, addSentryEnvEventHandler, addSentryReleaseEventHandler, addSetSelectedDriveOnPopStateEventHandler, addSetSelectedNodeOnPopStateEventHandler, addStudioModeEventHandler, addSwitchboardUrlEventHandler, addToastEventHandler, addVersionCheckIntervalEventHandler, addVersionEventHandler, addVetraPackageManagerEventHandler, addWarnOutdatedAppEventHandler, baseDocumentModels, baseDocumentModelsMap, buildDocumentSubgraphQuery, buildDocumentSubgraphUrl, callEventHandlerRegisterFunctions, callGlobalSetterForKey, clearGlobal, closePHModal, commonGlobalEventHandlerFunctions, convertRemoteOperations, createAnalyticsStore, createClient, createProcessorQuery, createUrlWithPreservedParams, deleteDrive, deleteNode, deriveSystemUrl, dispatchActions, downloadDocument, driveIdFromUrl, dropAllReactorStorage, exportFile, extractDriveIdFromPath, extractDriveIdFromSlug, extractDriveSlugFromPath, extractNodeIdFromPath, extractNodeIdFromSlug, extractNodeSlugFromPath, findUuid, getAnalyticsStore, getDocumentGraphqlQuery, getDriveIdBySlug, getDrives, getGlobal, getPackagePage, getPackages, getPackagesByDocumentType, getPackagesForDocumentType, getPathWithoutBase, getRevisionFromDate, getSlugFromDriveUrl, getSwitchboardGatewayUrlFromDriveUrl, getSyncStatus, getSyncStatusSync, getUserPermissions, graphqlDocumentEvents, graphqlDocumentsEvents, graphqlEventsToSyncDrive, hasPreloadBandwidth, hideRevisionHistory, identifierFromMutateDocumentOperationVariables, initConnectCrypto, initRenownCrypto, initTheme, isDocumentTypeSupported, isDriveAuthError, isExternalControlsEnabledEventFunctions, isFileNodeKind, isFolderNodeKind, loadFile, loading, login, logout, makeDriveUrlComponent, makeNodeSlug, makePHEventFunctions, openRenown, parseDriveUrl, phAppConfigHooks, phAppConfigSetters, phDocumentEditorConfigHooks, phDocumentEditorConfigSetters, phDocumentFromQuery, phDocumentsFromQuery, phGlobalConfigHooks, phGlobalConfigSetters, preloadEditorModule, reactorGraphqlBatchFetchDocuments, reactorGraphqlCreateDocument, reactorGraphqlDeleteDocument, reactorGraphqlDeleteDocuments, reactorGraphqlFetchDocument, reactorGraphqlMutateDocument, readPromiseState, refreshReactorData, refreshReactorDataClient, renameDrive, renameDriveNode, resolveUrlPathname, setAllowList, setAllowedDocumentTypes, setAnalyticsDatabaseName, setAttachmentService, setBasePath, setCliVersion, setDefaultDrivesUrl, setDefaultPHGlobalConfig, setDisabledEditors, setDocumentCache, setDriveAvailableOffline, setDriveMetadata, setDriveSharingType, setDrives, setDrivesPreserveStrategy, setEnabledEditors, setFeatures, setFileUploadOperationsChunkSize, setGaTrackingId, setGlobal, setGraphQLReactorClient, setIsAddCloudDrivesEnabled, setIsAddDriveEnabled, setIsAddLocalDrivesEnabled, setIsAddPublicDrivesEnabled, setIsAnalyticsDatabaseWorkerEnabled, setIsAnalyticsEnabled, setIsAnalyticsExternalProcessorsEnabled, setIsCloudDrivesEnabled, setIsDeleteCloudDrivesEnabled, setIsDeleteLocalDrivesEnabled, setIsDeletePublicDrivesEnabled, setIsDiffAnalyticsEnabled, setIsDocumentModelSelectionSettingsEnabled, setIsDragAndDropEnabled, setIsDriveAnalyticsEnabled, setIsEditorDebugModeEnabled, setIsEditorReadModeEnabled, setIsExternalControlsEnabled, setIsExternalPackagesEnabled, setIsExternalProcessorsEnabled, setIsExternalRelationalProcessorsEnabled, setIsLocalDrivesEnabled, setIsPublicDrivesEnabled, setIsRelationalProcessorsEnabled, setIsSentryTracingEnabled, setLoading, setLocalDrivesEnabled, setLogLevel, setPGliteDB, setPHAppConfig, setPHAppConfigByKey, setPHDocumentEditorConfig, setPHDocumentEditorConfigByKey, setPHGlobalConfig, setPHGlobalConfigByKey, setPHModal, setPHToast, setPackageDiscoveryService, setReactorClient, setReactorClientModule, setRenown, setRenownAdapters, setRenownChainId, setRenownNetworkId, setRenownUrl, setRequiresHardRefresh, setRevisionHistoryVisible, setRouterBasename, setSelectedDrive, setSelectedDriveId, setSelectedNode, setSelectedTimelineItem, setSelectedTimelineRevision, setSentryDsn, setSentryEnv, setSentryRelease, setStudioMode, setSwitchboardUrl, setVersion, setVersionCheckInterval, setVetraPackageManager, setWarnOutdatedApp, showCreateDocumentModal, showDeleteNodeModal, showPHModal, showRevisionHistory, sortNodesByName, trimTrailingSlash, truncateAllTables, useAllowList, useAllowedDocumentModelModules, useAllowedDocumentTypes, useAnalyticsDatabaseName, useAppModuleById, useAppModules, useAttachmentPreview, useAttachmentService, useAttachmentUpload, useAttachments, useBasePath, useCliVersion, useConnectionState, useConnectionStates, useDatabase, useDefaultAppModule, useDefaultDrivesUrl, useDid, useDisabledEditors, useDispatch, useDocument, useDocumentById, useDocumentCache, useDocumentModelModuleById, useDocumentModelModules, useDocumentOfType, useDocumentOperations, useDocumentSafe, useDocumentTypes, useDocumentTypesInSelectedDrive, useDocuments, useDocumentsByIds, useDocumentsInSelectedDrive, useDocumentsInSelectedFolder, useDownloadDocument, useDragNode, useDriveById, useDriveSystemInfo, useDrives, useDrivesPreserveStrategy, useDropFile, useDropNode, useEditorFileDrop, useEditorModuleById, useEditorModules, useEditorModulesForDocumentType, useEditorPreloader, useEnabledEditors, useFallbackEditorModule, useFeatures, useFileNodesInSelectedDrive, useFileNodesInSelectedFolder, useFileUploadOperationsChunkSize, useFolderById, useFolderNodesInSelectedDrive, useFolderNodesInSelectedFolder, useGaTrackingId, useGetDocument, useGetDocumentAsync, useGetDocuments, useGetSwitchboardLink, useGraphQLReactorClient, useInitReactorGraphqlClient, useIsAddCloudDrivesEnabled, useIsAddDriveEnabled, useIsAddLocalDrivesEnabled, useIsAddPublicDrivesEnabled, useIsAnalyticsDatabaseWorkerEnabled, useIsAnalyticsEnabled, useIsAnalyticsExternalProcessorsEnabled, useIsCloudDrivesEnabled, useIsDeleteCloudDrivesEnabled, useIsDeleteLocalDrivesEnabled, useIsDeletePublicDrivesEnabled, useIsDiffAnalyticsEnabled, useIsDocumentModelSelectionSettingsEnabled, useIsDragAndDropEnabled, useIsDriveAnalyticsEnabled, useIsEditorDebugModeEnabled, useIsEditorReadModeEnabled, useIsExternalControlsEnabled, useIsExternalPackagesEnabled, useIsExternalProcessorsEnabled, useIsExternalRelationalProcessorsEnabled, useIsLocalDrivesEnabled, useIsPublicDrivesEnabled, useIsRelationalProcessorsEnabled, useIsSentryTracingEnabled, useLoading, useLocalDrivesEnabled, useLogLevel, useLoginStatus, useModelRegistry, useNodeActions, useNodeById, useNodeParentFolderById, useNodePathById, useNodesInSelectedDrive, useNodesInSelectedDriveOrFolder, useNodesInSelectedFolder, useOnDropFile, usePGlite, usePHAppConfigByKey, usePHDocumentEditorConfigByKey, usePHGlobalConfigByKey, usePHModal, usePHToast, usePackageDiscoveryService, useParentFolderForSelectedNode, useReactorClient, useReactorClientModule, useRelationalDb, useRelationalQuery, useRelationalQueryOptions, useRenown, useRenownAdapters, useRenownAuth, useRenownAuthAsync, useRenownChainId, useRenownInit, useRenownInitialAuth, useRenownInitialUser, useRenownLoginMethods, useRenownNetworkId, useRenownSessionCookie, useRenownSessionSynced, useRenownUrl, useRequiresHardRefresh, useResetPHGlobalConfig, useRevisionHistoryVisible, useRouterBasename, useSelectedDocument, useSelectedDocumentId, useSelectedDocumentOfType, useSelectedDocumentSafe, useSelectedDrive, useSelectedDriveId, useSelectedDriveSafe, useSelectedFolder, useSelectedNode, useSelectedNodePath, useSelectedTimelineItem, useSelectedTimelineRevision, useSentryDsn, useSentryEnv, useSentryRelease, useSetDefaultPHGlobalConfig, useSetPHAppConfig, useSetPHDocumentEditorConfig, useSetPHGlobalConfig, useStudioMode, useSubgraphModules, useSupportedDocumentTypesInReactor, useSwitchboardUrl, useSync, useSyncList, useTheme, useUser, useUserPermissions, useVersion, useVersionCheckInterval, useVetraPackageManager, useVetraPackages, useWarnOutdatedApp, validateDocument, waitForDocumentReady };
1478
1478
  //# sourceMappingURL=index.d.ts.map
package/dist/index.js CHANGED
@@ -2,7 +2,7 @@ import { C as queueOperations, S as queueActions, _ as getAnalyticsStore, a as s
2
2
  import { t as makePHEventFunctions } from "./make-ph-event-functions-BHoLPif5.js";
3
3
  import { baseDocumentModels, baseDocumentModelsMap } from "./src/document-model.js";
4
4
  import { n as GetDocumentWithOperationsDocument, r as PropagationMode, t as createClient } from "./client-_Gh2Uf0E.js";
5
- import { A as RENOWN_NETWORK_ID, B as loading, C as openRenown, D as DOMAIN_TYPE, E as CREDENTIAL_TYPES, F as useDid, H as useLoading, I as useLoginStatus, L as useRenown, M as VERIFIABLE_CREDENTIAL_EIP712_TYPE, N as addRenownEventHandler, O as ISSUER_TYPE, P as setRenown, R as useUser, S as logout, T as CREDENTIAL_SUBJECT_TYPE, U as RenownInitialUserProvider, V as setLoading, W as useRenownInitialUser, _ as SpinnerIcon, a as useRenownInit, b as useRenownAuthAsync, c as initConnectCrypto, d as RenownUserButton, f as RenownLoginButton, g as RenownLogo, h as DisconnectIcon, i as Renown, j as RENOWN_URL, k as RENOWN_CHAIN_ID, l as initRenownCrypto, m as CopyIcon, n as RenownProvider, o as useRenownSessionCookie, p as ChevronDownIcon, r as RenownWalletProvider, s as useRenownSessionSynced, t as useRenownLoginMethods, u as RenownAuthButton, v as UserIcon, w as CREDENTIAL_SCHEMA_EIP712_TYPE, x as login, y as useRenownAuth, z as addLoadingEventHandler } from "./renown-DBvu1oq7.js";
5
+ import { A as RENOWN_NETWORK_ID, B as loading, C as openRenown, D as DOMAIN_TYPE, E as CREDENTIAL_TYPES, F as useDid, G as RenownInitialUserProvider, H as useLoading, I as useLoginStatus, K as useRenownInitialAuth, L as useRenown, M as VERIFIABLE_CREDENTIAL_EIP712_TYPE, N as addRenownEventHandler, O as ISSUER_TYPE, P as setRenown, R as useUser, S as logout, T as CREDENTIAL_SUBJECT_TYPE, U as RENOWN_INITIAL_ANONYMOUS, V as setLoading, W as RENOWN_INITIAL_UNKNOWN, _ as SpinnerIcon, a as useRenownInit, b as useRenownAuthAsync, c as initConnectCrypto, d as RenownUserButton, f as RenownLoginButton, g as RenownLogo, h as DisconnectIcon, i as Renown, j as RENOWN_URL, k as RENOWN_CHAIN_ID, l as initRenownCrypto, m as CopyIcon, n as RenownProvider, o as useRenownSessionCookie, p as ChevronDownIcon, q as useRenownInitialUser, r as RenownWalletProvider, s as useRenownSessionSynced, t as useRenownLoginMethods, u as RenownAuthButton, v as UserIcon, w as CREDENTIAL_SCHEMA_EIP712_TYPE, x as login, y as useRenownAuth, z as addLoadingEventHandler } from "./renown-BDH93sB5.js";
6
6
  import { i as setPGliteDB, n as useRelationalQuery, r as useRelationalDb, t as createProcessorQuery } from "./relational-Dj06-YkI.js";
7
7
  import { a as getPackagesForDocumentType, i as getPackagesByDocumentType, n as getPackagePage, o as trimTrailingSlash, r as getPackages, t as RegistryClient } from "./client-DKuvLO3_.js";
8
8
  import { logger } from "document-model";
@@ -3958,6 +3958,6 @@ var BrowserLocalStorage = class extends BaseStorage {
3958
3958
  }
3959
3959
  };
3960
3960
  //#endregion
3961
- export { ActionTracker, BaseStorage, BrowserLocalStorage, COMMON_PACKAGE_ID, CREDENTIAL_SCHEMA_EIP712_TYPE, CREDENTIAL_SUBJECT_TYPE, CREDENTIAL_TYPES, ChannelScheme, ChevronDownIcon, ConflictError, CopyIcon, DEFAULT_DRIVE_EDITOR_ID, DEFAULT_DRIVE_ID, DEFAULT_SWITCHBOARD_URL, DOMAIN_TYPE, DRIVE_DOCUMENT_TYPES, DisconnectIcon, DocumentCache, DocumentChangeType, DocumentIntegrityService, DocumentModelNotFoundError, DocumentNotFoundError, DocumentTypeMismatchError, DriveCollectionId, EDITOR_FILE_DROP_OPT_OUT_ATTR, GqlRequestChannel, GraphQLClientDocumentCache, ISSUER_TYPE, InMemoryQueue, IntervalPollTimer, NoSelectedDocumentError, PollBehavior, PropagationMode, REACTOR_SCHEMA, RENOWN_CHAIN_ID, RENOWN_NETWORK_ID, RENOWN_URL, ReactorBuilder, ReactorClientBuilder, RegistryClient, RelationalDbProcessor, RemoteClient, RemoteDocumentController, Renown, RenownAuthButton, RenownInitialUserProvider, RenownLoginButton, RenownLogo, RenownProvider, RenownUserButton, RenownWalletProvider, SpinnerIcon, SyncOperationStatus, UnsupportedDocumentTypeError, UploadStatus, UserIcon, VERIFIABLE_CREDENTIAL_EIP712_TYPE, addAllowListEventHandler, addAllowedDocumentTypesEventHandler, addAnalyticsDatabaseNameEventHandler, addAttachmentServiceEventHandler, addBasePathEventHandler, addCliVersionEventHandler, addDefaultDrivesUrlEventHandler, addDisabledEditorsEventHandler, addDocument, addDocumentCacheEventHandler, addDraggingNodeEventHandler, addDrive, addDrivesEventHandler, addDrivesPreserveStrategyEventHandler, addEnabledEditorsEventHandler, addFeaturesEventHandler, addFileUploadOperationsChunkSizeEventHandler, addFileWithProgress, addFolder, addGaTrackingIdEventHandler, addGraphQLReactorClientEventHandler, addIsAddCloudDrivesEnabledEventHandler, addIsAddDriveEnabledEventHandler, addIsAddLocalDrivesEnabledEventHandler, addIsAddPublicDrivesEnabledEventHandler, addIsAnalyticsDatabaseWorkerEnabledEventHandler, addIsAnalyticsEnabledEventHandler, addIsAnalyticsExternalProcessorsEnabledEventHandler, addIsCloudDrivesEnabledEventHandler, addIsDeleteCloudDrivesEnabledEventHandler, addIsDeleteLocalDrivesEnabledEventHandler, addIsDeletePublicDrivesEnabledEventHandler, addIsDiffAnalyticsEnabledEventHandler, addIsDocumentModelSelectionSettingsEnabledEventHandler, addIsDragAndDropEnabledEventHandler, addIsDriveAnalyticsEnabledEventHandler, addIsEditorDebugModeEnabledEventHandler, addIsEditorReadModeEnabledEventHandler, addIsExternalControlsEnabledEventHandler, addIsExternalPackagesEnabledEventHandler, addIsExternalProcessorsEnabledEventHandler, addIsExternalRelationalProcessorsEnabledEventHandler, addIsLocalDrivesEnabledEventHandler, addIsPublicDrivesEnabledEventHandler, addIsRelationalProcessorsEnabledEventHandler, addIsSentryTracingEnabledEventHandler, addLoadingEventHandler, addLocalDrivesEnabledEventHandler, addLogLevelEventHandler, addModalEventHandler, addPHEventHandlers, addPackageDiscoveryServiceEventHandler, addPromiseState, addReactorClientEventHandler, addReactorClientModuleEventHandler, addRemoteDrive, addRenownAdaptersEventHandler, addRenownChainIdEventHandler, addRenownEventHandler, addRenownNetworkIdEventHandler, addRenownUrlEventHandler, addRequiresHardRefreshEventHandler, addResetSelectedNodeEventHandler, addRevisionHistoryVisibleEventHandler, addRouterBasenameEventHandler, addSelectedDriveIdEventHandler, addSelectedNodeIdEventHandler, addSelectedTimelineItemEventHandler, addSelectedTimelineRevisionEventHandler, addSentryDsnEventHandler, addSentryEnvEventHandler, addSentryReleaseEventHandler, addSetSelectedDriveOnPopStateEventHandler, addSetSelectedNodeOnPopStateEventHandler, addStudioModeEventHandler, addSwitchboardUrlEventHandler, addToastEventHandler, addVersionCheckIntervalEventHandler, addVersionEventHandler, addVetraPackageManagerEventHandler, addWarnOutdatedAppEventHandler, baseDocumentModels, baseDocumentModelsMap, buildDocumentSubgraphQuery, buildDocumentSubgraphUrl, callEventHandlerRegisterFunctions, callGlobalSetterForKey, clearGlobal, closePHModal, commonGlobalEventHandlerFunctions, convertRemoteOperations, createAnalyticsStore, createClient, createProcessorQuery, createUrlWithPreservedParams, deleteDrive, deleteNode, deriveSystemUrl, dispatchActions, downloadDocument, driveIdFromUrl, dropAllReactorStorage, exportFile, extractDriveIdFromPath, extractDriveIdFromSlug, extractDriveSlugFromPath, extractNodeIdFromPath, extractNodeIdFromSlug, extractNodeSlugFromPath, findUuid, getAnalyticsStore, getDocumentGraphqlQuery, getDriveIdBySlug, getDrives, getGlobal, getPackagePage, getPackages, getPackagesByDocumentType, getPackagesForDocumentType, getPathWithoutBase, getRevisionFromDate, getSlugFromDriveUrl, getSwitchboardGatewayUrlFromDriveUrl, getSyncStatus, getSyncStatusSync, getUserPermissions, graphqlDocumentEvents, graphqlDocumentsEvents, graphqlEventsToSyncDrive, hasPreloadBandwidth, hideRevisionHistory, identifierFromMutateDocumentOperationVariables, initConnectCrypto, initRenownCrypto, initTheme, isDocumentTypeSupported, isDriveAuthError, isExternalControlsEnabledEventFunctions, isFileNodeKind, isFolderNodeKind, loadFile, loading, login, logout, makeDriveUrlComponent, makeNodeSlug, makePHEventFunctions, openRenown, parseDriveUrl, phAppConfigHooks, phAppConfigSetters, phDocumentEditorConfigHooks, phDocumentEditorConfigSetters, phDocumentFromQuery, phDocumentsFromQuery, phGlobalConfigHooks, phGlobalConfigSetters, preloadEditorModule, reactorGraphqlBatchFetchDocuments, reactorGraphqlCreateDocument, reactorGraphqlDeleteDocument, reactorGraphqlDeleteDocuments, reactorGraphqlFetchDocument, reactorGraphqlMutateDocument, readPromiseState, refreshReactorData, refreshReactorDataClient, renameDrive, renameDriveNode, resolveUrlPathname, setAllowList, setAllowedDocumentTypes, setAnalyticsDatabaseName, setAttachmentService, setBasePath, setCliVersion, setDefaultDrivesUrl, setDefaultPHGlobalConfig, setDisabledEditors, setDocumentCache, setDriveAvailableOffline, setDriveMetadata, setDriveSharingType, setDrives, setDrivesPreserveStrategy, setEnabledEditors, setFeatures, setFileUploadOperationsChunkSize, setGaTrackingId, setGlobal, setGraphQLReactorClient, setIsAddCloudDrivesEnabled, setIsAddDriveEnabled, setIsAddLocalDrivesEnabled, setIsAddPublicDrivesEnabled, setIsAnalyticsDatabaseWorkerEnabled, setIsAnalyticsEnabled, setIsAnalyticsExternalProcessorsEnabled, setIsCloudDrivesEnabled, setIsDeleteCloudDrivesEnabled, setIsDeleteLocalDrivesEnabled, setIsDeletePublicDrivesEnabled, setIsDiffAnalyticsEnabled, setIsDocumentModelSelectionSettingsEnabled, setIsDragAndDropEnabled, setIsDriveAnalyticsEnabled, setIsEditorDebugModeEnabled, setIsEditorReadModeEnabled, setIsExternalControlsEnabled, setIsExternalPackagesEnabled, setIsExternalProcessorsEnabled, setIsExternalRelationalProcessorsEnabled, setIsLocalDrivesEnabled, setIsPublicDrivesEnabled, setIsRelationalProcessorsEnabled, setIsSentryTracingEnabled, setLoading, setLocalDrivesEnabled, setLogLevel, setPGliteDB, setPHAppConfig, setPHAppConfigByKey, setPHDocumentEditorConfig, setPHDocumentEditorConfigByKey, setPHGlobalConfig, setPHGlobalConfigByKey, setPHModal, setPHToast, setPackageDiscoveryService, setReactorClient, setReactorClientModule, setRenown, setRenownAdapters, setRenownChainId, setRenownNetworkId, setRenownUrl, setRequiresHardRefresh, setRevisionHistoryVisible, setRouterBasename, setSelectedDrive, setSelectedDriveId, setSelectedNode, setSelectedTimelineItem, setSelectedTimelineRevision, setSentryDsn, setSentryEnv, setSentryRelease, setStudioMode, setSwitchboardUrl, setVersion, setVersionCheckInterval, setVetraPackageManager, setWarnOutdatedApp, showCreateDocumentModal, showDeleteNodeModal, showPHModal, showRevisionHistory, sortNodesByName, trimTrailingSlash, truncateAllTables, useAllowList, useAllowedDocumentModelModules, useAllowedDocumentTypes, useAnalyticsDatabaseName, useAppModuleById, useAppModules, useAttachmentPreview, useAttachmentService, useAttachmentUpload, useAttachments, useBasePath, useCliVersion, useConnectionState, useConnectionStates, useDatabase, useDefaultAppModule, useDefaultDrivesUrl, useDid, useDisabledEditors, useDispatch, useDocument, useDocumentById, useDocumentCache, useDocumentModelModuleById, useDocumentModelModules, useDocumentOfType, useDocumentOperations, useDocumentSafe, useDocumentTypes, useDocumentTypesInSelectedDrive, useDocuments, useDocumentsByIds, useDocumentsInSelectedDrive, useDocumentsInSelectedFolder, useDownloadDocument, useDragNode, useDriveById, useDriveSystemInfo, useDrives, useDrivesPreserveStrategy, useDropFile, useDropNode, useEditorFileDrop, useEditorModuleById, useEditorModules, useEditorModulesForDocumentType, useEditorPreloader, useEnabledEditors, useFallbackEditorModule, useFeatures, useFileNodesInSelectedDrive, useFileNodesInSelectedFolder, useFileUploadOperationsChunkSize, useFolderById, useFolderNodesInSelectedDrive, useFolderNodesInSelectedFolder, useGaTrackingId, useGetDocument, useGetDocumentAsync, useGetDocuments, useGetSwitchboardLink, useGraphQLReactorClient, useInitReactorGraphqlClient, useIsAddCloudDrivesEnabled, useIsAddDriveEnabled, useIsAddLocalDrivesEnabled, useIsAddPublicDrivesEnabled, useIsAnalyticsDatabaseWorkerEnabled, useIsAnalyticsEnabled, useIsAnalyticsExternalProcessorsEnabled, useIsCloudDrivesEnabled, useIsDeleteCloudDrivesEnabled, useIsDeleteLocalDrivesEnabled, useIsDeletePublicDrivesEnabled, useIsDiffAnalyticsEnabled, useIsDocumentModelSelectionSettingsEnabled, useIsDragAndDropEnabled, useIsDriveAnalyticsEnabled, useIsEditorDebugModeEnabled, useIsEditorReadModeEnabled, useIsExternalControlsEnabled, useIsExternalPackagesEnabled, useIsExternalProcessorsEnabled, useIsExternalRelationalProcessorsEnabled, useIsLocalDrivesEnabled, useIsPublicDrivesEnabled, useIsRelationalProcessorsEnabled, useIsSentryTracingEnabled, useLoading, useLocalDrivesEnabled, useLogLevel, useLoginStatus, useModelRegistry, useNodeActions, useNodeById, useNodeParentFolderById, useNodePathById, useNodesInSelectedDrive, useNodesInSelectedDriveOrFolder, useNodesInSelectedFolder, useOnDropFile, usePGlite, usePHAppConfigByKey, usePHDocumentEditorConfigByKey, usePHGlobalConfigByKey, usePHModal, usePHToast, usePackageDiscoveryService, useParentFolderForSelectedNode, useReactorClient, useReactorClientModule, useRelationalDb, useRelationalQuery, useRenown, useRenownAdapters, useRenownAuth, useRenownAuthAsync, useRenownChainId, useRenownInit, useRenownInitialUser, useRenownLoginMethods, useRenownNetworkId, useRenownSessionCookie, useRenownSessionSynced, useRenownUrl, useRequiresHardRefresh, useResetPHGlobalConfig, useRevisionHistoryVisible, useRouterBasename, useSelectedDocument, useSelectedDocumentId, useSelectedDocumentOfType, useSelectedDocumentSafe, useSelectedDrive, useSelectedDriveId, useSelectedDriveSafe, useSelectedFolder, useSelectedNode, useSelectedNodePath, useSelectedTimelineItem, useSelectedTimelineRevision, useSentryDsn, useSentryEnv, useSentryRelease, useSetDefaultPHGlobalConfig, useSetPHAppConfig, useSetPHDocumentEditorConfig, useSetPHGlobalConfig, useStudioMode, useSubgraphModules, useSupportedDocumentTypesInReactor, useSwitchboardUrl, useSync, useSyncList, useTheme, useUser, useUserPermissions, useVersion, useVersionCheckInterval, useVetraPackageManager, useVetraPackages, useWarnOutdatedApp, validateDocument, waitForDocumentReady };
3961
+ export { ActionTracker, BaseStorage, BrowserLocalStorage, COMMON_PACKAGE_ID, CREDENTIAL_SCHEMA_EIP712_TYPE, CREDENTIAL_SUBJECT_TYPE, CREDENTIAL_TYPES, ChannelScheme, ChevronDownIcon, ConflictError, CopyIcon, DEFAULT_DRIVE_EDITOR_ID, DEFAULT_DRIVE_ID, DEFAULT_SWITCHBOARD_URL, DOMAIN_TYPE, DRIVE_DOCUMENT_TYPES, DisconnectIcon, DocumentCache, DocumentChangeType, DocumentIntegrityService, DocumentModelNotFoundError, DocumentNotFoundError, DocumentTypeMismatchError, DriveCollectionId, EDITOR_FILE_DROP_OPT_OUT_ATTR, GqlRequestChannel, GraphQLClientDocumentCache, ISSUER_TYPE, InMemoryQueue, IntervalPollTimer, NoSelectedDocumentError, PollBehavior, PropagationMode, REACTOR_SCHEMA, RENOWN_CHAIN_ID, RENOWN_INITIAL_ANONYMOUS, RENOWN_INITIAL_UNKNOWN, RENOWN_NETWORK_ID, RENOWN_URL, ReactorBuilder, ReactorClientBuilder, RegistryClient, RelationalDbProcessor, RemoteClient, RemoteDocumentController, Renown, RenownAuthButton, RenownInitialUserProvider, RenownLoginButton, RenownLogo, RenownProvider, RenownUserButton, RenownWalletProvider, SpinnerIcon, SyncOperationStatus, UnsupportedDocumentTypeError, UploadStatus, UserIcon, VERIFIABLE_CREDENTIAL_EIP712_TYPE, addAllowListEventHandler, addAllowedDocumentTypesEventHandler, addAnalyticsDatabaseNameEventHandler, addAttachmentServiceEventHandler, addBasePathEventHandler, addCliVersionEventHandler, addDefaultDrivesUrlEventHandler, addDisabledEditorsEventHandler, addDocument, addDocumentCacheEventHandler, addDraggingNodeEventHandler, addDrive, addDrivesEventHandler, addDrivesPreserveStrategyEventHandler, addEnabledEditorsEventHandler, addFeaturesEventHandler, addFileUploadOperationsChunkSizeEventHandler, addFileWithProgress, addFolder, addGaTrackingIdEventHandler, addGraphQLReactorClientEventHandler, addIsAddCloudDrivesEnabledEventHandler, addIsAddDriveEnabledEventHandler, addIsAddLocalDrivesEnabledEventHandler, addIsAddPublicDrivesEnabledEventHandler, addIsAnalyticsDatabaseWorkerEnabledEventHandler, addIsAnalyticsEnabledEventHandler, addIsAnalyticsExternalProcessorsEnabledEventHandler, addIsCloudDrivesEnabledEventHandler, addIsDeleteCloudDrivesEnabledEventHandler, addIsDeleteLocalDrivesEnabledEventHandler, addIsDeletePublicDrivesEnabledEventHandler, addIsDiffAnalyticsEnabledEventHandler, addIsDocumentModelSelectionSettingsEnabledEventHandler, addIsDragAndDropEnabledEventHandler, addIsDriveAnalyticsEnabledEventHandler, addIsEditorDebugModeEnabledEventHandler, addIsEditorReadModeEnabledEventHandler, addIsExternalControlsEnabledEventHandler, addIsExternalPackagesEnabledEventHandler, addIsExternalProcessorsEnabledEventHandler, addIsExternalRelationalProcessorsEnabledEventHandler, addIsLocalDrivesEnabledEventHandler, addIsPublicDrivesEnabledEventHandler, addIsRelationalProcessorsEnabledEventHandler, addIsSentryTracingEnabledEventHandler, addLoadingEventHandler, addLocalDrivesEnabledEventHandler, addLogLevelEventHandler, addModalEventHandler, addPHEventHandlers, addPackageDiscoveryServiceEventHandler, addPromiseState, addReactorClientEventHandler, addReactorClientModuleEventHandler, addRemoteDrive, addRenownAdaptersEventHandler, addRenownChainIdEventHandler, addRenownEventHandler, addRenownNetworkIdEventHandler, addRenownUrlEventHandler, addRequiresHardRefreshEventHandler, addResetSelectedNodeEventHandler, addRevisionHistoryVisibleEventHandler, addRouterBasenameEventHandler, addSelectedDriveIdEventHandler, addSelectedNodeIdEventHandler, addSelectedTimelineItemEventHandler, addSelectedTimelineRevisionEventHandler, addSentryDsnEventHandler, addSentryEnvEventHandler, addSentryReleaseEventHandler, addSetSelectedDriveOnPopStateEventHandler, addSetSelectedNodeOnPopStateEventHandler, addStudioModeEventHandler, addSwitchboardUrlEventHandler, addToastEventHandler, addVersionCheckIntervalEventHandler, addVersionEventHandler, addVetraPackageManagerEventHandler, addWarnOutdatedAppEventHandler, baseDocumentModels, baseDocumentModelsMap, buildDocumentSubgraphQuery, buildDocumentSubgraphUrl, callEventHandlerRegisterFunctions, callGlobalSetterForKey, clearGlobal, closePHModal, commonGlobalEventHandlerFunctions, convertRemoteOperations, createAnalyticsStore, createClient, createProcessorQuery, createUrlWithPreservedParams, deleteDrive, deleteNode, deriveSystemUrl, dispatchActions, downloadDocument, driveIdFromUrl, dropAllReactorStorage, exportFile, extractDriveIdFromPath, extractDriveIdFromSlug, extractDriveSlugFromPath, extractNodeIdFromPath, extractNodeIdFromSlug, extractNodeSlugFromPath, findUuid, getAnalyticsStore, getDocumentGraphqlQuery, getDriveIdBySlug, getDrives, getGlobal, getPackagePage, getPackages, getPackagesByDocumentType, getPackagesForDocumentType, getPathWithoutBase, getRevisionFromDate, getSlugFromDriveUrl, getSwitchboardGatewayUrlFromDriveUrl, getSyncStatus, getSyncStatusSync, getUserPermissions, graphqlDocumentEvents, graphqlDocumentsEvents, graphqlEventsToSyncDrive, hasPreloadBandwidth, hideRevisionHistory, identifierFromMutateDocumentOperationVariables, initConnectCrypto, initRenownCrypto, initTheme, isDocumentTypeSupported, isDriveAuthError, isExternalControlsEnabledEventFunctions, isFileNodeKind, isFolderNodeKind, loadFile, loading, login, logout, makeDriveUrlComponent, makeNodeSlug, makePHEventFunctions, openRenown, parseDriveUrl, phAppConfigHooks, phAppConfigSetters, phDocumentEditorConfigHooks, phDocumentEditorConfigSetters, phDocumentFromQuery, phDocumentsFromQuery, phGlobalConfigHooks, phGlobalConfigSetters, preloadEditorModule, reactorGraphqlBatchFetchDocuments, reactorGraphqlCreateDocument, reactorGraphqlDeleteDocument, reactorGraphqlDeleteDocuments, reactorGraphqlFetchDocument, reactorGraphqlMutateDocument, readPromiseState, refreshReactorData, refreshReactorDataClient, renameDrive, renameDriveNode, resolveUrlPathname, setAllowList, setAllowedDocumentTypes, setAnalyticsDatabaseName, setAttachmentService, setBasePath, setCliVersion, setDefaultDrivesUrl, setDefaultPHGlobalConfig, setDisabledEditors, setDocumentCache, setDriveAvailableOffline, setDriveMetadata, setDriveSharingType, setDrives, setDrivesPreserveStrategy, setEnabledEditors, setFeatures, setFileUploadOperationsChunkSize, setGaTrackingId, setGlobal, setGraphQLReactorClient, setIsAddCloudDrivesEnabled, setIsAddDriveEnabled, setIsAddLocalDrivesEnabled, setIsAddPublicDrivesEnabled, setIsAnalyticsDatabaseWorkerEnabled, setIsAnalyticsEnabled, setIsAnalyticsExternalProcessorsEnabled, setIsCloudDrivesEnabled, setIsDeleteCloudDrivesEnabled, setIsDeleteLocalDrivesEnabled, setIsDeletePublicDrivesEnabled, setIsDiffAnalyticsEnabled, setIsDocumentModelSelectionSettingsEnabled, setIsDragAndDropEnabled, setIsDriveAnalyticsEnabled, setIsEditorDebugModeEnabled, setIsEditorReadModeEnabled, setIsExternalControlsEnabled, setIsExternalPackagesEnabled, setIsExternalProcessorsEnabled, setIsExternalRelationalProcessorsEnabled, setIsLocalDrivesEnabled, setIsPublicDrivesEnabled, setIsRelationalProcessorsEnabled, setIsSentryTracingEnabled, setLoading, setLocalDrivesEnabled, setLogLevel, setPGliteDB, setPHAppConfig, setPHAppConfigByKey, setPHDocumentEditorConfig, setPHDocumentEditorConfigByKey, setPHGlobalConfig, setPHGlobalConfigByKey, setPHModal, setPHToast, setPackageDiscoveryService, setReactorClient, setReactorClientModule, setRenown, setRenownAdapters, setRenownChainId, setRenownNetworkId, setRenownUrl, setRequiresHardRefresh, setRevisionHistoryVisible, setRouterBasename, setSelectedDrive, setSelectedDriveId, setSelectedNode, setSelectedTimelineItem, setSelectedTimelineRevision, setSentryDsn, setSentryEnv, setSentryRelease, setStudioMode, setSwitchboardUrl, setVersion, setVersionCheckInterval, setVetraPackageManager, setWarnOutdatedApp, showCreateDocumentModal, showDeleteNodeModal, showPHModal, showRevisionHistory, sortNodesByName, trimTrailingSlash, truncateAllTables, useAllowList, useAllowedDocumentModelModules, useAllowedDocumentTypes, useAnalyticsDatabaseName, useAppModuleById, useAppModules, useAttachmentPreview, useAttachmentService, useAttachmentUpload, useAttachments, useBasePath, useCliVersion, useConnectionState, useConnectionStates, useDatabase, useDefaultAppModule, useDefaultDrivesUrl, useDid, useDisabledEditors, useDispatch, useDocument, useDocumentById, useDocumentCache, useDocumentModelModuleById, useDocumentModelModules, useDocumentOfType, useDocumentOperations, useDocumentSafe, useDocumentTypes, useDocumentTypesInSelectedDrive, useDocuments, useDocumentsByIds, useDocumentsInSelectedDrive, useDocumentsInSelectedFolder, useDownloadDocument, useDragNode, useDriveById, useDriveSystemInfo, useDrives, useDrivesPreserveStrategy, useDropFile, useDropNode, useEditorFileDrop, useEditorModuleById, useEditorModules, useEditorModulesForDocumentType, useEditorPreloader, useEnabledEditors, useFallbackEditorModule, useFeatures, useFileNodesInSelectedDrive, useFileNodesInSelectedFolder, useFileUploadOperationsChunkSize, useFolderById, useFolderNodesInSelectedDrive, useFolderNodesInSelectedFolder, useGaTrackingId, useGetDocument, useGetDocumentAsync, useGetDocuments, useGetSwitchboardLink, useGraphQLReactorClient, useInitReactorGraphqlClient, useIsAddCloudDrivesEnabled, useIsAddDriveEnabled, useIsAddLocalDrivesEnabled, useIsAddPublicDrivesEnabled, useIsAnalyticsDatabaseWorkerEnabled, useIsAnalyticsEnabled, useIsAnalyticsExternalProcessorsEnabled, useIsCloudDrivesEnabled, useIsDeleteCloudDrivesEnabled, useIsDeleteLocalDrivesEnabled, useIsDeletePublicDrivesEnabled, useIsDiffAnalyticsEnabled, useIsDocumentModelSelectionSettingsEnabled, useIsDragAndDropEnabled, useIsDriveAnalyticsEnabled, useIsEditorDebugModeEnabled, useIsEditorReadModeEnabled, useIsExternalControlsEnabled, useIsExternalPackagesEnabled, useIsExternalProcessorsEnabled, useIsExternalRelationalProcessorsEnabled, useIsLocalDrivesEnabled, useIsPublicDrivesEnabled, useIsRelationalProcessorsEnabled, useIsSentryTracingEnabled, useLoading, useLocalDrivesEnabled, useLogLevel, useLoginStatus, useModelRegistry, useNodeActions, useNodeById, useNodeParentFolderById, useNodePathById, useNodesInSelectedDrive, useNodesInSelectedDriveOrFolder, useNodesInSelectedFolder, useOnDropFile, usePGlite, usePHAppConfigByKey, usePHDocumentEditorConfigByKey, usePHGlobalConfigByKey, usePHModal, usePHToast, usePackageDiscoveryService, useParentFolderForSelectedNode, useReactorClient, useReactorClientModule, useRelationalDb, useRelationalQuery, useRenown, useRenownAdapters, useRenownAuth, useRenownAuthAsync, useRenownChainId, useRenownInit, useRenownInitialAuth, useRenownInitialUser, useRenownLoginMethods, useRenownNetworkId, useRenownSessionCookie, useRenownSessionSynced, useRenownUrl, useRequiresHardRefresh, useResetPHGlobalConfig, useRevisionHistoryVisible, useRouterBasename, useSelectedDocument, useSelectedDocumentId, useSelectedDocumentOfType, useSelectedDocumentSafe, useSelectedDrive, useSelectedDriveId, useSelectedDriveSafe, useSelectedFolder, useSelectedNode, useSelectedNodePath, useSelectedTimelineItem, useSelectedTimelineRevision, useSentryDsn, useSentryEnv, useSentryRelease, useSetDefaultPHGlobalConfig, useSetPHAppConfig, useSetPHDocumentEditorConfig, useSetPHGlobalConfig, useStudioMode, useSubgraphModules, useSupportedDocumentTypesInReactor, useSwitchboardUrl, useSync, useSyncList, useTheme, useUser, useUserPermissions, useVersion, useVersionCheckInterval, useVetraPackageManager, useVetraPackages, useWarnOutdatedApp, validateDocument, waitForDocumentReady };
3962
3962
 
3963
3963
  //# sourceMappingURL=index.js.map