@bimetal/devtools-react 0.16.5
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/LICENSE +129 -0
- package/README.md +61 -0
- package/dist/.tsbuildinfo +1 -0
- package/dist/BridgesBody.d.ts +27 -0
- package/dist/BridgesBody.d.ts.map +1 -0
- package/dist/BridgesBody.js +154 -0
- package/dist/BridgesBody.js.map +1 -0
- package/dist/CausationBody.d.ts +30 -0
- package/dist/CausationBody.d.ts.map +1 -0
- package/dist/CausationBody.js +149 -0
- package/dist/CausationBody.js.map +1 -0
- package/dist/DevtoolsRegistryContext.d.ts +14 -0
- package/dist/DevtoolsRegistryContext.d.ts.map +1 -0
- package/dist/DevtoolsRegistryContext.js +14 -0
- package/dist/DevtoolsRegistryContext.js.map +1 -0
- package/dist/DevtoolsRegistryProvider.d.ts +16 -0
- package/dist/DevtoolsRegistryProvider.d.ts.map +1 -0
- package/dist/DevtoolsRegistryProvider.js +14 -0
- package/dist/DevtoolsRegistryProvider.js.map +1 -0
- package/dist/EventInspectorPanel.d.ts +27 -0
- package/dist/EventInspectorPanel.d.ts.map +1 -0
- package/dist/EventInspectorPanel.js +669 -0
- package/dist/EventInspectorPanel.js.map +1 -0
- package/dist/index.d.ts +29 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +27 -0
- package/dist/index.js.map +1 -0
- package/dist/inspector-shared.d.ts +52 -0
- package/dist/inspector-shared.d.ts.map +1 -0
- package/dist/inspector-shared.js +168 -0
- package/dist/inspector-shared.js.map +1 -0
- package/dist/useDevtoolsRegistry.d.ts +20 -0
- package/dist/useDevtoolsRegistry.d.ts.map +1 -0
- package/dist/useDevtoolsRegistry.js +37 -0
- package/dist/useDevtoolsRegistry.js.map +1 -0
- package/package.json +56 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
# PolyForm Noncommercial License 1.0.0
|
|
2
|
+
|
|
3
|
+
<https://polyformproject.org/licenses/noncommercial/1.0.0>
|
|
4
|
+
|
|
5
|
+
## Acceptance
|
|
6
|
+
|
|
7
|
+
In order to get any license under these terms, you must agree
|
|
8
|
+
to them as both strict obligations and conditions to all
|
|
9
|
+
your licenses.
|
|
10
|
+
|
|
11
|
+
## Copyright License
|
|
12
|
+
|
|
13
|
+
The licensor grants you a copyright license for the
|
|
14
|
+
software to do everything you might do with the software
|
|
15
|
+
that would otherwise infringe the licensor's copyright
|
|
16
|
+
in it for any permitted purpose. However, you may
|
|
17
|
+
only distribute the software according to [Distribution
|
|
18
|
+
License](#distribution-license) and make changes or new works
|
|
19
|
+
based on the software according to [Changes and New Works
|
|
20
|
+
License](#changes-and-new-works-license).
|
|
21
|
+
|
|
22
|
+
## Distribution License
|
|
23
|
+
|
|
24
|
+
The licensor grants you an additional copyright license
|
|
25
|
+
to distribute copies of the software. Your license
|
|
26
|
+
to distribute covers distributing the software with
|
|
27
|
+
changes and new works permitted by [Changes and New Works
|
|
28
|
+
License](#changes-and-new-works-license).
|
|
29
|
+
|
|
30
|
+
## Notices
|
|
31
|
+
|
|
32
|
+
You must ensure that anyone who gets a copy of any part of
|
|
33
|
+
the software from you also gets a copy of these terms or the
|
|
34
|
+
URL for them above, as well as copies of any plain-text lines
|
|
35
|
+
beginning with `Required Notice:` that the licensor provided
|
|
36
|
+
with the software. For example:
|
|
37
|
+
|
|
38
|
+
> Required Notice: Copyright Andreas Biederbeck (https://bimetal.dev)
|
|
39
|
+
|
|
40
|
+
## Changes and New Works License
|
|
41
|
+
|
|
42
|
+
The licensor grants you an additional copyright license to
|
|
43
|
+
make changes and new works based on the software for any
|
|
44
|
+
permitted purpose.
|
|
45
|
+
|
|
46
|
+
## Patent License
|
|
47
|
+
|
|
48
|
+
The licensor grants you a patent license for the software that
|
|
49
|
+
covers patent claims the licensor can license, or becomes able
|
|
50
|
+
to license, that you would infringe by using the software.
|
|
51
|
+
|
|
52
|
+
## Noncommercial Purposes
|
|
53
|
+
|
|
54
|
+
Any noncommercial purpose is a permitted purpose.
|
|
55
|
+
|
|
56
|
+
## Personal Uses
|
|
57
|
+
|
|
58
|
+
Personal use for research, experiment, and testing for
|
|
59
|
+
the benefit of public knowledge, personal study, private
|
|
60
|
+
entertainment, hobby projects, amateur pursuits, or religious
|
|
61
|
+
observance, without any anticipated commercial application,
|
|
62
|
+
is use for a permitted purpose.
|
|
63
|
+
|
|
64
|
+
## Noncommercial Organizations
|
|
65
|
+
|
|
66
|
+
Use by any charitable organization, educational institution,
|
|
67
|
+
public research organization, public safety or health
|
|
68
|
+
organization, environmental protection organization,
|
|
69
|
+
or government institution is use for a permitted purpose
|
|
70
|
+
regardless of the source of funding or obligations resulting
|
|
71
|
+
from the funding.
|
|
72
|
+
|
|
73
|
+
## Fair Use
|
|
74
|
+
|
|
75
|
+
You may have "fair use" rights for the software under the
|
|
76
|
+
law. These terms do not limit them.
|
|
77
|
+
|
|
78
|
+
## No Other Rights
|
|
79
|
+
|
|
80
|
+
These terms do not allow you to sublicense or transfer any of
|
|
81
|
+
your licenses to anyone else, or prevent the licensor from
|
|
82
|
+
granting licenses to anyone else. These terms do not imply
|
|
83
|
+
any other licenses.
|
|
84
|
+
|
|
85
|
+
## Patent Defense
|
|
86
|
+
|
|
87
|
+
If you make any written claim that the software infringes or
|
|
88
|
+
contributes to infringement of any patent, your patent license
|
|
89
|
+
for the software granted under these terms ends immediately. If
|
|
90
|
+
your company makes such a claim, your patent license ends
|
|
91
|
+
immediately for work on behalf of your company.
|
|
92
|
+
|
|
93
|
+
## Violations
|
|
94
|
+
|
|
95
|
+
The first time you are notified in writing that you have
|
|
96
|
+
violated any of these terms, or any agreement made under them,
|
|
97
|
+
you have 32 calendar days to come into compliance. If you come
|
|
98
|
+
into compliance, your licenses revive and continue as if you had
|
|
99
|
+
never violated.
|
|
100
|
+
|
|
101
|
+
## No Liability
|
|
102
|
+
|
|
103
|
+
***As far as the law allows, the software comes as is, without
|
|
104
|
+
any warranty or condition, and the licensor will not be liable
|
|
105
|
+
to you for any damages arising out of these terms or the use
|
|
106
|
+
or nature of the software, under any kind of legal claim.***
|
|
107
|
+
|
|
108
|
+
## Definitions
|
|
109
|
+
|
|
110
|
+
The **licensor** is the individual or entity offering these
|
|
111
|
+
terms, and the **software** is the software the licensor makes
|
|
112
|
+
available under these terms.
|
|
113
|
+
|
|
114
|
+
**You** refers to the individual or entity agreeing to these
|
|
115
|
+
terms.
|
|
116
|
+
|
|
117
|
+
**Your company** is any legal entity, sole proprietorship,
|
|
118
|
+
or other kind of organization that you work for, plus all
|
|
119
|
+
organizations that have control over, are under the control of,
|
|
120
|
+
or are under common control with that organization. **Control**
|
|
121
|
+
means ownership of substantially all the assets of an entity,
|
|
122
|
+
or the power to direct its management and policies by vote,
|
|
123
|
+
contract, or otherwise. Control can be direct or indirect.
|
|
124
|
+
|
|
125
|
+
**Your licenses** are all the licenses granted to you for the
|
|
126
|
+
software under these terms.
|
|
127
|
+
|
|
128
|
+
**Use** means anything you do with the software requiring one
|
|
129
|
+
of your licenses.
|
package/README.md
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
# @bimetal/devtools-react
|
|
2
|
+
|
|
3
|
+
React UI für den BIMETAL Event-Debugger. Liefert das `EventInspectorPanel` plus `DevtoolsRegistryProvider` / `useDevtoolsRegistry` als React-Bindings für die in `@bimetal/devtools` definierte Registry.
|
|
4
|
+
|
|
5
|
+
Strikte Package-Boundary: Runtime-Imports nur `react` und `@bimetal/devtools`. Kein `@bimetal/event-sourcing`, `@bimetal/broker`, Domain- oder App-Import — Architecture-Test verriegelt.
|
|
6
|
+
|
|
7
|
+
## Installation
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install @bimetal/devtools @bimetal/devtools-react
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
`react` ist Peer-Dependency (≥ 18 für `useSyncExternalStore`).
|
|
14
|
+
|
|
15
|
+
## Usage
|
|
16
|
+
|
|
17
|
+
```tsx
|
|
18
|
+
import { createDevtoolsRegistry } from '@bimetal/devtools';
|
|
19
|
+
import { EventInspectorPanel } from '@bimetal/devtools-react';
|
|
20
|
+
|
|
21
|
+
const registry = createDevtoolsRegistry();
|
|
22
|
+
// ... bei App-Init: Stores/Targets/Transports/Bridges am Registry anhängen
|
|
23
|
+
// (siehe createObservedEventStore / createObservedReplayTarget / createObservedSyncTransport
|
|
24
|
+
// / createObservedBridge aus @bimetal/devtools)
|
|
25
|
+
|
|
26
|
+
function DebugPanel() {
|
|
27
|
+
return <EventInspectorPanel registry={registry} />;
|
|
28
|
+
}
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
Oder per Context, wenn mehrere Komponenten dieselbe Registry brauchen:
|
|
32
|
+
|
|
33
|
+
```tsx
|
|
34
|
+
import { DevtoolsRegistryProvider, EventInspectorPanel } from '@bimetal/devtools-react';
|
|
35
|
+
|
|
36
|
+
function App() {
|
|
37
|
+
return (
|
|
38
|
+
<DevtoolsRegistryProvider value={registry}>
|
|
39
|
+
<YourApp />
|
|
40
|
+
<EventInspectorPanel />
|
|
41
|
+
</DevtoolsRegistryProvider>
|
|
42
|
+
);
|
|
43
|
+
}
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
## API
|
|
47
|
+
|
|
48
|
+
- **`<EventInspectorPanel registry?={DevtoolsRegistry}>`** — Vollseiten-Inspector mit fünf dynamischen Tabs (Events, Sync, State, Causation, Bridges). `registry`-Prop optional; ohne Prop greift der Provider-Context. Ohne beide wirft die Komponente.
|
|
49
|
+
- **`<DevtoolsRegistryProvider value={DevtoolsRegistry}>`** — stellt die Registry für nachgelagerte Hook-/Inspector-Konsumenten bereit.
|
|
50
|
+
- **`useDevtoolsRegistry(): DevtoolsRegistry`** — liest die Registry aus dem nächsten Provider. Wirft, wenn kein Provider im Tree (kein impliziter Singleton-Fallback).
|
|
51
|
+
|
|
52
|
+
## Designprinzipien
|
|
53
|
+
|
|
54
|
+
- **Prop > Context > Throw.** Kein Package-Singleton — würde sonst mehrere Konsumenten zusammenketten.
|
|
55
|
+
- **Headless-Core, dünne UI-Schicht.** Alle Domain-Logik lebt in `@bimetal/devtools`; dieses Package rendert nur.
|
|
56
|
+
- **Inline-Styles, kein globales CSS.** Keine Theme-Customization in v0.16.5 (eigene Slice, wenn dran).
|
|
57
|
+
- **Closed-Set Tabs.** Events/Sync/State/Causation/Bridges sind hardcoded. Custom-Tab-API ist eigene Slice.
|
|
58
|
+
|
|
59
|
+
## License
|
|
60
|
+
|
|
61
|
+
PolyForm-Noncommercial-1.0.0 — siehe `LICENSE`.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/typescript/lib/lib.es2023.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2023.array.d.ts","../../../node_modules/typescript/lib/lib.es2023.collection.d.ts","../../../node_modules/typescript/lib/lib.es2023.intl.d.ts","../../../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../../node_modules/typescript/lib/lib.esnext.float16.d.ts","../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/@types/react/global.d.ts","../../../node_modules/csstype/index.d.ts","../../../node_modules/@types/react/index.d.ts","../../../node_modules/@types/react/jsx-runtime.d.ts","../../event-sourcing/dist/types.d.ts","../../event-sourcing/dist/wrap-intent.d.ts","../../event-sourcing/dist/create-domain-store.d.ts","../../event-sourcing/dist/aggregate-helpers.d.ts","../../event-sourcing/dist/errors.d.ts","../../event-sourcing/dist/diagnostics.d.ts","../../event-sourcing/dist/in-memory-store.d.ts","../../event-sourcing/dist/validate-envelopes.d.ts","../../event-sourcing/dist/event-bus.d.ts","../../event-sourcing/dist/topic.d.ts","../../event-sourcing/dist/broker-bridge.d.ts","../../event-sourcing/dist/in-memory-snapshot-store.d.ts","../../event-sourcing/dist/index.d.ts","../../devtools/dist/types.d.ts","../../devtools/dist/replay-engine.d.ts","../../devtools/dist/inspectable-json.d.ts","../../devtools/dist/time-travel.d.ts","../../devtools/dist/registry.d.ts","../../devtools/dist/diagnostics-source.d.ts","../../devtools/dist/causation-forest.d.ts","../../devtools/dist/observed-bridge.d.ts","../../devtools/dist/observed-helpers.d.ts","../../devtools/dist/snapshot-export.d.ts","../../devtools/dist/index.d.ts","../src/inspector-shared.tsx","../src/bridgesbody.tsx","../src/causationbody.tsx","../src/devtoolsregistrycontext.ts","../src/devtoolsregistryprovider.tsx","../src/usedevtoolsregistry.ts","../src/eventinspectorpanel.tsx","../src/index.ts","../../../node_modules/@types/node/compatibility/iterators.d.ts","../../../node_modules/@types/node/globals.typedarray.d.ts","../../../node_modules/@types/node/buffer.buffer.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/web-globals/abortcontroller.d.ts","../../../node_modules/@types/node/web-globals/blob.d.ts","../../../node_modules/@types/node/web-globals/console.d.ts","../../../node_modules/@types/node/web-globals/crypto.d.ts","../../../node_modules/@types/node/web-globals/domexception.d.ts","../../../node_modules/@types/node/web-globals/encoding.d.ts","../../../node_modules/@types/node/web-globals/events.d.ts","../../../node_modules/undici-types/utility.d.ts","../../../node_modules/undici-types/header.d.ts","../../../node_modules/undici-types/readable.d.ts","../../../node_modules/undici-types/fetch.d.ts","../../../node_modules/undici-types/formdata.d.ts","../../../node_modules/undici-types/connector.d.ts","../../../node_modules/undici-types/client-stats.d.ts","../../../node_modules/undici-types/client.d.ts","../../../node_modules/undici-types/errors.d.ts","../../../node_modules/undici-types/dispatcher.d.ts","../../../node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/undici-types/global-origin.d.ts","../../../node_modules/undici-types/pool-stats.d.ts","../../../node_modules/undici-types/pool.d.ts","../../../node_modules/undici-types/handlers.d.ts","../../../node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/undici-types/round-robin-pool.d.ts","../../../node_modules/undici-types/h2c-client.d.ts","../../../node_modules/undici-types/agent.d.ts","../../../node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/undici-types/mock-call-history.d.ts","../../../node_modules/undici-types/mock-agent.d.ts","../../../node_modules/undici-types/mock-client.d.ts","../../../node_modules/undici-types/mock-pool.d.ts","../../../node_modules/undici-types/snapshot-agent.d.ts","../../../node_modules/undici-types/mock-errors.d.ts","../../../node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/undici-types/socks5-proxy-agent.d.ts","../../../node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/undici-types/retry-handler.d.ts","../../../node_modules/undici-types/retry-agent.d.ts","../../../node_modules/undici-types/api.d.ts","../../../node_modules/undici-types/cache-interceptor.d.ts","../../../node_modules/undici-types/interceptors.d.ts","../../../node_modules/undici-types/util.d.ts","../../../node_modules/undici-types/cookies.d.ts","../../../node_modules/undici-types/patch.d.ts","../../../node_modules/undici-types/websocket.d.ts","../../../node_modules/undici-types/eventsource.d.ts","../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/undici-types/content-type.d.ts","../../../node_modules/undici-types/cache.d.ts","../../../node_modules/undici-types/index.d.ts","../../../node_modules/@types/node/web-globals/fetch.d.ts","../../../node_modules/@types/node/web-globals/importmeta.d.ts","../../../node_modules/@types/node/web-globals/messaging.d.ts","../../../node_modules/@types/node/web-globals/navigator.d.ts","../../../node_modules/@types/node/web-globals/performance.d.ts","../../../node_modules/@types/node/web-globals/storage.d.ts","../../../node_modules/@types/node/web-globals/streams.d.ts","../../../node_modules/@types/node/web-globals/timers.d.ts","../../../node_modules/@types/node/web-globals/url.d.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/inspector.generated.d.ts","../../../node_modules/@types/node/inspector/promises.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/buffer/index.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/path/posix.d.ts","../../../node_modules/@types/node/path/win32.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/quic.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/readline/promises.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/sea.d.ts","../../../node_modules/@types/node/sqlite.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/test.d.ts","../../../node_modules/@types/node/test/reporters.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/util/types.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/index.d.ts","../../../node_modules/@types/amqplib/properties.d.ts","../../../node_modules/@types/amqplib/index.d.ts","../../../node_modules/@types/aria-query/index.d.ts","../../../node_modules/@types/better-sqlite3/index.d.ts","../../../node_modules/@types/connect/index.d.ts","../../../node_modules/@types/body-parser/index.d.ts","../../../node_modules/@types/deep-eql/index.d.ts","../../../node_modules/assertion-error/index.d.ts","../../../node_modules/@types/chai/index.d.ts","../../../node_modules/@types/ms/index.d.ts","../../../node_modules/@types/debug/index.d.ts","../../../node_modules/@types/estree/index.d.ts","../../../node_modules/@types/send/index.d.ts","../../../node_modules/@types/qs/index.d.ts","../../../node_modules/@types/range-parser/index.d.ts","../../../node_modules/@types/express-serve-static-core/index.d.ts","../../../node_modules/@types/http-errors/index.d.ts","../../../node_modules/@types/serve-static/index.d.ts","../../../node_modules/@types/express/index.d.ts","../../../node_modules/@types/google-protobuf/index.d.ts","../../../node_modules/@types/react-dom/index.d.ts","../../../node_modules/@types/trusted-types/lib/index.d.ts","../../../node_modules/@types/trusted-types/index.d.ts","../../../node_modules/@types/whatwg-mimetype/index.d.ts","../../../node_modules/@types/ws/index.d.ts"],"fileIdsList":[[104,168,176,179,180,183,185,186,187,200,225,226],[104,168,176,180,183,185,186,187,200],[104,168,176,180,183,185,186,187,200,225],[104,168,176,180,182,183,185,186,187,200,225,230],[104,168,176,180,183,185,186,187,200,232,233],[104,168,176,180,182,183,185,186,187,200,225],[104,168,176,180,183,185,186,187,200,235],[104,168,176,179,180,182,183,185,186,187,200,225,238,239,240],[104,168,176,180,183,185,186,187,200,231,241,243],[104,165,166,168,176,180,183,185,186,187,200],[104,167,168,176,180,183,185,186,187,200],[168,176,180,183,185,186,187,200],[104,168,176,180,183,185,186,187,200,208],[104,168,169,174,176,179,180,183,185,186,187,189,200,205,217],[104,168,169,170,176,179,180,183,185,186,187,200],[104,168,171,176,180,183,185,186,187,200,218],[104,168,172,173,176,180,183,185,186,187,191,200],[104,168,173,176,180,183,185,186,187,200,205,214],[104,168,174,176,179,180,183,185,186,187,189,200],[104,167,168,175,176,180,183,185,186,187,200],[104,168,176,177,180,183,185,186,187,200],[104,168,176,178,179,180,183,185,186,187,200],[104,167,168,176,179,180,183,185,186,187,200],[104,168,176,179,180,181,183,185,186,187,200,205,217],[104,168,176,179,180,181,183,185,186,187,200,205,208],[104,155,168,176,179,180,182,183,185,186,187,189,200,205,217],[104,168,176,179,180,182,183,185,186,187,189,200,205,214,217],[104,168,176,180,182,183,184,185,186,187,200,205,214,217],[102,103,104,105,106,107,108,109,110,111,112,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224],[104,168,176,179,180,183,185,186,187,200],[104,168,176,180,183,185,187,200],[104,168,176,180,183,185,186,187,188,200,217],[104,168,176,179,180,183,185,186,187,189,200,205],[104,168,176,180,183,185,186,187,191,200],[104,168,176,180,183,185,186,187,192,200],[104,168,176,179,180,183,185,186,187,195,200],[104,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224],[104,168,176,180,183,185,186,187,197,200],[104,168,176,180,183,185,186,187,198,200],[104,168,173,176,180,183,185,186,187,189,200,208],[104,168,176,179,180,183,185,186,187,200,201],[104,168,176,180,183,185,186,187,200,202,218,221],[104,168,176,179,180,183,185,186,187,200,205,207,208],[104,168,176,180,183,185,186,187,200,206,208],[104,168,176,180,183,185,186,187,200,208,218],[104,168,176,180,183,185,186,187,200,209],[104,165,168,176,180,183,185,186,187,200,205,211,217],[104,168,176,180,183,185,186,187,200,205,210],[104,168,176,179,180,183,185,186,187,200,212,213],[104,168,176,180,183,185,186,187,200,212,213],[104,168,173,176,180,183,185,186,187,189,200,205,214],[104,168,176,180,183,185,186,187,200,215],[104,168,176,180,183,185,186,187,189,200,216],[104,168,176,180,182,183,185,186,187,198,200,217],[104,168,176,180,183,185,186,187,200,218,219],[104,168,173,176,180,183,185,186,187,200,219],[104,168,176,180,183,185,186,187,200,205,220],[104,168,176,180,183,185,186,187,188,200,221],[104,168,176,180,183,185,186,187,200,222],[104,168,171,176,180,183,185,186,187,200],[104,168,173,176,180,183,185,186,187,200],[104,168,176,180,183,185,186,187,200,218],[104,155,168,176,180,183,185,186,187,200],[104,168,176,180,183,185,186,187,200,217],[104,168,176,180,183,185,186,187,200,223],[104,168,176,180,183,185,186,187,195,200],[104,168,176,180,183,185,186,187,200,213],[104,155,168,176,179,180,181,183,185,186,187,195,200,205,208,217,220,221,223],[104,168,176,180,183,185,186,187,200,205,224],[68,104,168,176,180,183,185,186,187,200],[66,67,104,168,176,180,183,185,186,187,200],[104,168,176,180,183,185,186,187,200,205,225],[104,168,176,180,182,183,185,186,187,200,225,242],[104,168,176,180,183,185,186,187,200,247],[104,168,176,179,180,182,183,184,185,186,187,189,200,205,214,217,224,225],[104,119,122,125,126,168,176,180,183,185,186,187,200,217],[104,122,168,176,180,183,185,186,187,200,205,217],[104,122,126,168,176,180,183,185,186,187,200,217],[104,168,176,180,183,185,186,187,200,205],[104,116,168,176,180,183,185,186,187,200],[104,120,168,176,180,183,185,186,187,200],[104,118,119,122,168,176,180,183,185,186,187,200,217],[104,168,176,180,183,185,186,187,189,200,214],[104,116,168,176,180,183,185,186,187,200,225],[104,118,122,168,176,180,183,185,186,187,189,200,217],[104,113,114,115,117,121,168,176,179,180,183,185,186,187,200,205,217],[104,122,131,139,168,176,180,183,185,186,187,200],[104,114,120,168,176,180,183,185,186,187,200],[104,122,149,150,168,176,180,183,185,186,187,200],[104,114,117,122,168,176,180,183,185,186,187,200,208,217,225],[104,122,168,176,180,183,185,186,187,200],[104,118,122,168,176,180,183,185,186,187,200,217],[104,113,168,176,180,183,185,186,187,200],[104,116,117,118,120,121,122,123,124,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,150,151,152,153,154,168,176,180,183,185,186,187,200],[104,122,142,145,168,176,180,183,185,186,187,200],[104,122,131,132,133,168,176,180,183,185,186,187,200],[104,120,122,132,134,168,176,180,183,185,186,187,200],[104,121,168,176,180,183,185,186,187,200],[104,114,116,122,168,176,180,183,185,186,187,200],[104,122,126,132,134,168,176,180,183,185,186,187,200],[104,126,168,176,180,183,185,186,187,200],[104,120,122,125,168,176,180,183,185,186,187,200,217],[104,114,118,122,131,168,176,180,183,185,186,187,200],[104,122,142,168,176,180,183,185,186,187,200],[104,134,168,176,180,183,185,186,187,200],[104,114,118,122,126,168,176,180,183,185,186,187,200],[104,116,122,149,168,176,180,183,185,186,187,200,208,223,225],[68,69,93,94,104,168,176,180,183,185,186,187,200],[68,69,93,104,168,176,180,183,185,186,187,200],[68,69,93,97,104,168,176,180,183,185,186,187,200],[68,69,93,94,95,96,97,99,104,168,176,180,183,185,186,187,200],[69,98,99,100,104,168,176,180,183,185,186,187,200],[83,104,168,176,180,183,185,186,187,200],[83,84,85,86,87,88,89,90,91,92,104,168,176,180,183,185,186,187,200],[83,87,104,168,176,180,183,185,186,187,200],[82,83,84,87,104,168,176,180,183,185,186,187,200],[83,84,86,104,168,176,180,183,185,186,187,200],[82,83,104,168,176,180,183,185,186,187,200],[82,84,85,104,168,176,180,183,185,186,187,200],[82,104,168,176,180,183,185,186,187,200],[70,104,168,176,180,183,185,186,187,200],[70,75,104,168,176,180,183,185,186,187,200],[70,71,72,73,74,75,76,77,78,79,80,81,104,168,176,180,183,185,186,187,200]],"fileInfos":[{"version":"69684132aeb9b5642cbcd9e22dff7818ff0ee1aa831728af0ecf97d3364d5546","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"092c2bfe125ce69dbb1223c85d68d4d2397d7d8411867b5cc03cec902c233763","affectsGlobalScope":true,"impliedFormat":1},{"version":"07f073f19d67f74d732b1adea08e1dc66b1b58d77cb5b43931dee3d798a2fd53","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"b5ce7a470bc3628408429040c4e3a53a27755022a32fd05e2cb694e7015386c7","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"df83c2a6c73228b625b0beb6669c7ee2a09c914637e2d35170723ad49c0f5cd4","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"4245fee526a7d1754529d19227ecbf3be066ff79ebb6a380d78e41648f2f224d","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"7e29f41b158de217f94cb9676bf9cbd0cd9b5a46e1985141ed36e075c52bf6ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac51dd7d31333793807a6abaa5ae168512b6131bd41d9c5b98477fc3b7800f9f","impliedFormat":1},{"version":"dc0a7f107690ee5cd8afc8dbf05c4df78085471ce16bdd9881642ec738bc81fe","impliedFormat":1},{"version":"42c169fb8c2d42f4f668c624a9a11e719d5d07dacbebb63cbcf7ef365b0a75b3","impliedFormat":1},"bd46d03db03a9cdb8fc85e73725ffa1f4206d78974b5609bef85cabca56a3b2e","98e32045a66fc1149ec1376399c67f0695df6a7521cefa601cdf268824148dbf","239b6e23f278cca9421ea7e76dc69813603ee9ca74257446b4ada2a536bb0513","71dbc598080174b9bffbf6296bd410a5e20359fab4fada0c9fc7e457d025b57c","eedcb9d5cb4359a781662caed3fe1f272c0837d9d6f6e4be5dc5f47891d232ec","df8bca724310793c45b8e6df8d77744b55a5986fd2dceb74bbfb2361890eed61","b178d3182f441bedf19f95be51e48cf68243cabf2629c90e3ebfcd084110de18","23a0f5bf62c18f6c534e09ade0109d26491a00d2ce90c3f09dbe6d1fca05a334","91a9e7fe477539623392444a3d866e27ff0ed28cf220026ac4c7ca169007fae0","1795a3dd93df189f4f60b4052ef2c26fdfc631984712f5a49e9fffabf5b925fe","8d1852dc8f23b7e6900704a99ef67750adb37ba526876fbb66f2abbfd95bc46e","68c6bba43ac9b6477d7843d770ae1d14ac495f52ae6d9f1f99cf44024623804c","be7c208f1723e1dc2b7c3fab070e51df04f6d5a7a6dc2028797886ae9f19d03a","25a5bfd70df731643bea12e5b01260bc6d4dd0c49f75987cf1c977af0cb9cf63","3b1e45592e12a4d3b2a18d81f3ff0612d6633fd63d4f1949f8a8f5f4bd8107a9","da230b32815a89a6e10e159641b78c6f1d68d957bac3a1a0a04ed5aad21c48a1","82f50441b156f364dab00e0d5fde931a6a111808c0381256e69c6c44701af265","badd4cf938da3da972a02eed51b2834272c377bb664dc8429872a4fa4a1b2ff9","2d7f645a73814764c8e468f8dc9d0a7343354138116a84d9de250eb797bf7224","06ebef6ad9dc27994faab5f4bcef1aea18a88f76ae793fad9ebff5d92028365e","2aab202f29afc77304e900ecb372adaa1584c64ede5215b5727273ef2ad44411","517eb16e3afff0d35528d3c4cf94a1dc5882be5fe44fe8ceb1fc8d2b35553a02","0268f1764d420dff5f8023e023ffcfa421b31e8a1515e0141b8d392dbace7c23","cc95490931b9fb06b7ae7cfe018e3c648102371b1532df1b4e36a6cd1e727eea",{"version":"62682dca90378a9c8cde5597ecd9e0f4171990d84a918acbb61862a34c911e6f","signature":"dcdcae0963083cef6aead6e00de5fb30cd0c4841dce4b1a7fdd36f0d0b923f94"},{"version":"2a6152b9a53f8232c235a89d65de44c3a64b5b7c9963554a1d0d3e7c07eb8526","signature":"de6b884302b3f4a464ce2b676b2bdd613c43d3c875823cef1c88a4bb099190af"},{"version":"304d02982051f7efc3643d90751717d1411b988d36308b435ea17dc527390e57","signature":"f6de883f39b9f65456d7508ecb851e912da4b743c564326b5546c9713fb2de9d"},{"version":"7b947c83bd7edb0446643c872d3ccbce9ce0d6b780c29c66161433ad73ac97e4","signature":"48733237b79bf909ee6b53861cb6f9ec95516924e1c788bd6dafa6d80c8cbeea"},{"version":"ea2bdc2e257ffd45cbcaa8585f172374d4c37d80b07f8ec398ac23d9fba8fd5c","signature":"97f0a06ef00c73d3aa5e18559e8c3f64ff0be26ed51a76922be60b935b383e1f"},{"version":"3ebe2dca0f1f66e700ff2793f5a097ddfc50ac5c057e3112a2dc8f44537d6d3e","signature":"dec0d214cbdbc36119461d145b0794f95de67ea2f49a3ad866b2e5cdf19b2d4d"},{"version":"6509bdefa402f69e58ae604119c9fd894c39e74f4eaf8b3cf65d93dba5a2ccf1","signature":"fb2940025ca9347d85873b760bd98b642bd5ba38849d29d24e1986f620850449"},{"version":"2b08a19c04fa8c28ba409c76f056bf814f4e35e850800d671bce4303fb1210a0","signature":"6b47f3c457518b1430cdc6f659f4297c12d395cdaaca8d60289ce6adb5338004"},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"0ccdaa19852d25ecd84eec365c3bfa16e7859cadecf6e9ca6d0dbbbee439743f","affectsGlobalScope":true,"impliedFormat":1},{"version":"cc2110f7decca6bfb9392e30421cfa1436479e4a6756e8fec6cbc22625d4f881","affectsGlobalScope":true,"impliedFormat":1},{"version":"096116f8fedc1765d5bd6ef360c257b4a9048e5415054b3bf3c41b07f8951b0b","affectsGlobalScope":true,"impliedFormat":1},{"version":"e5e01375c9e124a83b52ee4b3244ed1a4d214a6cfb54ac73e164a823a4a7860a","affectsGlobalScope":true,"impliedFormat":1},{"version":"f90ae2bbce1505e67f2f6502392e318f5714bae82d2d969185c4a6cecc8af2fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"4b58e207b93a8f1c88bbf2a95ddc686ac83962b13830fe8ad3f404ffc7051fb4","affectsGlobalScope":true,"impliedFormat":1},{"version":"1fefabcb2b06736a66d2904074d56268753654805e829989a46a0161cd8412c5","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"c18a99f01eb788d849ad032b31cafd49de0b19e083fe775370834c5675d7df8e","affectsGlobalScope":true,"impliedFormat":1},{"version":"5247874c2a23b9a62d178ae84f2db6a1d54e6c9a2e7e057e178cc5eea13757fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"cdcf9ea426ad970f96ac930cd176d5c69c6c24eebd9fc580e1572d6c6a88f62c","impliedFormat":1},{"version":"23cd712e2ce083d68afe69224587438e5914b457b8acf87073c22494d706a3d0","impliedFormat":1},{"version":"156a859e21ef3244d13afeeba4e49760a6afa035c149dda52f0c45ea8903b338","impliedFormat":1},{"version":"10ec5e82144dfac6f04fa5d1d6c11763b3e4dbbac6d99101427219ab3e2ae887","impliedFormat":1},{"version":"615754924717c0b1e293e083b83503c0a872717ad5aa60ed7f1a699eb1b4ea5c","impliedFormat":1},{"version":"14e9acf826baba0ef4b5665704084896e7bcc06f65a9ab13af7e93d27d6b7069","impliedFormat":1},{"version":"68834d631c8838c715f225509cfc3927913b9cc7a4870460b5b60c8dbdb99baf","impliedFormat":1},{"version":"21adf13435b9b748529c8cedf80f884e5130b9684188120a686cd2b26a2059c7","impliedFormat":1},{"version":"eec76bf6b9346f3f95fa402621b889489e96930e72295b0369022f332e9b4a6a","impliedFormat":1},{"version":"0ecd58f413f9bc3b7d4383eae31b0c8fc576985cd7404d6f99f8c643543ade74","impliedFormat":1},{"version":"ea6bc8de8b59f90a7a3960005fd01988f98fd0784e14bc6922dde2e93305ec7d","impliedFormat":1},{"version":"36107995674b29284a115e21a0618c4c2751b32a8766dd4cb3ba740308b16d59","impliedFormat":1},{"version":"914a0ae30d96d71915fc519ccb4efbf2b62c0ddfb3a3fc6129151076bc01dc60","impliedFormat":1},{"version":"9c32412007b5662fd34a8eb04292fb5314ec370d7016d1c2fb8aa193c807fe22","impliedFormat":1},{"version":"7fd1b31fd35876b0aa650811c25ec2c97a3c6387e5473eb18004bed86cdd76b6","impliedFormat":1},{"version":"4d327f7d72ad0918275cea3eee49a6a8dc8114ae1d5b7f3f5d0774de75f7439a","impliedFormat":1},{"version":"6ebe8ebb8659aaa9d1acbf3710d7dae3e923e97610238b9511c25dc39023a166","impliedFormat":1},{"version":"e85d7f8068f6a26710bff0cc8c0fc5e47f71089c3780fbede05857331d2ddec9","impliedFormat":1},{"version":"7befaf0e76b5671be1d47b77fcc65f2b0aad91cc26529df1904f4a7c46d216e9","impliedFormat":1},{"version":"0a60a292b89ca7218b8616f78e5bbd1c96b87e048849469cccb4355e98af959a","impliedFormat":1},{"version":"0b6e25234b4eec6ed96ab138d96eb70b135690d7dd01f3dd8a8ab291c35a683a","impliedFormat":1},{"version":"9666f2f84b985b62400d2e5ab0adae9ff44de9b2a34803c2c5bd3c8325b17dc0","impliedFormat":1},{"version":"40cd35c95e9cf22cfa5bd84e96408b6fcbca55295f4ff822390abb11afbc3dca","impliedFormat":1},{"version":"b1616b8959bf557feb16369c6124a97a0e74ed6f49d1df73bb4b9ddf68acf3f3","impliedFormat":1},{"version":"5b03a034c72146b61573aab280f295b015b9168470f2df05f6080a2122f9b4df","impliedFormat":1},{"version":"40b463c6766ca1b689bfcc46d26b5e295954f32ad43e37ee6953c0a677e4ae2b","impliedFormat":1},{"version":"249b9cab7f5d628b71308c7d9bb0a808b50b091e640ba3ed6e2d0516f4a8d91d","impliedFormat":1},{"version":"d33ce35e3f9cfcc1d94eca415bdd3bde94d5b153ffdd33e6c4455c029986c630","impliedFormat":1},{"version":"80aae6afc67faa5ac0b32b5b8bc8cc9f7fa299cff15cf09cc2e11fd28c6ae29e","impliedFormat":1},{"version":"f473cd2288991ff3221165dcf73cd5d24da30391f87e85b3dd4d0450c787a391","impliedFormat":1},{"version":"499e5b055a5aba1e1998f7311a6c441a369831c70905cc565ceac93c28083d53","impliedFormat":1},{"version":"8aee8b6d4f9f62cf3776cda1305fb18763e2aade7e13cea5bbe699112df85214","impliedFormat":1},{"version":"98498b101803bb3dde9f76a56e65c14b75db1cc8bec5f4db72be541570f74fc5","impliedFormat":1},{"version":"4dc59f6e1dbf3d5f66660fceabe6c174d3261b37b696ae1854f0dbaf255fc753","impliedFormat":1},{"version":"5d0375ca7310efb77e3ef18d068d53784faf62705e0ad04569597ae0e755c401","impliedFormat":1},{"version":"59af37caec41ecf7b2e76059c9672a49e682c1a2aa6f9d7dc78878f53aa284d6","impliedFormat":1},{"version":"addf417b9eb3f938fddf8d81e96393a165e4be0d4a8b6402292f9c634b1cb00d","impliedFormat":1},{"version":"436d7b4543b340b0f3eef4310d524242e41369b9652aa9c70428767c4dcac455","impliedFormat":1},{"version":"adf27937dba6af9f08a68c5b1d3fce0ca7d4b960c57e6d6c844e7d1a8e53adae","impliedFormat":1},{"version":"12950411eeab8563b349cb7959543d92d8d02c289ed893d78499a19becb5a8cc","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"114f493b30f364255290472111b5a4791d5902c308645670cd0401429cbc6930","impliedFormat":1},{"version":"c3f5289820990ab66b70c7fb5b63cb674001009ff84b13de40619619a9c8175f","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3275d55fac10b799c9546804126239baf020d220136163f763b55a74e50e750","affectsGlobalScope":true,"impliedFormat":1},{"version":"fa68a0a3b7cb32c00e39ee3cd31f8f15b80cac97dce51b6ee7fc14a1e8deb30b","affectsGlobalScope":true,"impliedFormat":1},{"version":"1cf059eaf468efcc649f8cf6075d3cb98e9a35a0fe9c44419ec3d2f5428d7123","affectsGlobalScope":true,"impliedFormat":1},{"version":"6c36e755bced82df7fb6ce8169265d0a7bb046ab4e2cb6d0da0cb72b22033e89","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"7a93de4ff8a63bafe62ba86b89af1df0ccb5e40bb85b0c67d6bbcfdcf96bf3d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"90e85f9bc549dfe2b5749b45fe734144e96cd5d04b38eae244028794e142a77e","affectsGlobalScope":true,"impliedFormat":1},{"version":"e0a5deeb610b2a50a6350bd23df6490036a1773a8a71d70f2f9549ab009e67ee","affectsGlobalScope":true,"impliedFormat":1},{"version":"d2ae155afe8a01cc0ae612d99117cf8ef16692ba7c4366590156fdec1bcf2d8c","impliedFormat":1},{"version":"3f5e5d9be35913db9fea42a63f3df0b7e3c8703b97670a2125587b4dbbd56d7c","impliedFormat":1},{"version":"8caeb65fdc3bfe0d13f86f67324fcb2d858ed1c55f1f0cce892eb1acfb9f3239","impliedFormat":1},{"version":"57c23df0b5f7a8e26363a3849b0bc7763f6b241207157c8e40089d1df4116f35","affectsGlobalScope":true,"impliedFormat":1},{"version":"3b8bc0c17b54081b0878673989216229e575d67a10874e84566a21025a2461ee","impliedFormat":1},{"version":"5b0db5a58b73498792a29bfebc333438e61906fef75da898b410e24e52229e6f","impliedFormat":1},{"version":"dbe055b2b29a7bab2c1ca8f259436306adb43f469dca7e639a02cd3695d3f621","impliedFormat":1},{"version":"1678b04557dca52feab73cc67610918a7f5e25bfdba3e7fa081acd625d93106d","impliedFormat":1},{"version":"e3905f6902f0b69e5eefc230daa69fdd4ab707a973ec2d086d65af1b3ea47ef0","impliedFormat":1},{"version":"2ea729503db9793f2691162fec3dd1118cab62e96d025f8eeb376d43ec293395","impliedFormat":1},{"version":"9ec87fea42b92894b0f209931a880789d43c3397d09dd99c631ae40a2f7071d1","impliedFormat":1},{"version":"c68e88cdfadfb6c8ba5fc38e58a3a166b0beae77b1f05b7d921150a32a5ffb8d","impliedFormat":1},{"version":"2bc7aa4fba46df0bd495425a7c8201437a7d465f83854fac859df2d67f664df3","impliedFormat":1},{"version":"41d17e1ad9a002feb11c8cdd2777e5bbc0cdb1e3f595d237e4dded0b6949983b","impliedFormat":1},{"version":"1fede9296beac11ce8e6b425396a1791f64341f2be85deebb6286faf6e16306e","affectsGlobalScope":true,"impliedFormat":1},{"version":"80219a97fd3ce5f91af5c355a264844027a899b3d9a3cd41cf6f3bc5947edc95","impliedFormat":1},{"version":"89444c76f16bf7994e230d98e1bc3f01d654de04ef02f60430d9a98d5b450a8b","impliedFormat":1},{"version":"0eb5d0cbf09de5d34542b977fd6a933bb2e0817bffe8e1a541b2f1ad1b9af1ff","impliedFormat":1},{"version":"fac3e88881b35d3a757ed891ac912b2674792c25e2a1a74e1f5fbc72d19a9792","impliedFormat":1},{"version":"2c2bdaa1d8ead9f68628d6d9d250e46ee8e81aa4898b4769a36956ae15e060fe","impliedFormat":1},{"version":"c32c840c62d8bd7aeb3147aa6754cd2d922b990a6b6634530cb2ebdce5adc8e9","impliedFormat":1},{"version":"e1c1a0b4d1ead0de9eca52203aeb1f771f21e6238d6fcd15aa56ac2a02f1b7bf","impliedFormat":1},{"version":"82b91e4e42e6c41bc7fc1b6c2dc5eba6a2ba98375eb1f210e6ff6bba2d54177e","impliedFormat":1},{"version":"6fe28249ac0c7bc19a79aa9264baf00efbd080e868dbe1d3052033ad1c64f206","affectsGlobalScope":true,"impliedFormat":1},{"version":"cbed824fec91efefc7bbdcb8b43d1a531fdbebd0e2ef19481501ff365a93cb70","impliedFormat":1},{"version":"8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","impliedFormat":1},{"version":"d0716593b3f2b0451bcf0c24cfa86dec2235c325c89f201934248b7c742715fc","impliedFormat":1},{"version":"ec501101c2a96133a6c695f934c8f6642149cc728571b29cbb7b770984c1088e","impliedFormat":1},{"version":"b214ebcf76c51b115453f69729ee8aa7b7f8eccdae2a922b568a45c2d7ff52f7","impliedFormat":1},{"version":"429c9cdfa7d126255779efd7e6d9057ced2d69c81859bbab32073bad52e9ba76","impliedFormat":1},{"version":"2991bca2cc0f0628a278df2a2ccdb8d6cbcb700f3761abbed62bba137d5b1790","impliedFormat":1},{"version":"c51b3c3f6c5aa5b121124f4b593996826aab90667f95de88c1ff13c1736e11ba","affectsGlobalScope":true,"impliedFormat":1},{"version":"230763250f20449fa7b3c9273e1967adb0023dc890d4be1553faca658ee65971","impliedFormat":1},{"version":"c3e9078b60cb329d1221f5878e88cecfa3e74460550e605a58fcfb41a66029ff","impliedFormat":1},{"version":"a74edb3bab7394a9dbde529d60632be590def2f5f01024dbd85441587fbfbbe0","impliedFormat":1},{"version":"0ea59f7d3e51440baa64f429253759b106cfcbaf51e474cae606e02265b37cf8","impliedFormat":1},{"version":"bc18a1991ba681f03e13285fa1d7b99b03b67ee671b7bc936254467177543890","impliedFormat":1},{"version":"00049ccc87f3f37726db03c01ca68fe74fd9c0109b68c29eb9923ebec2c76b13","impliedFormat":1},{"version":"fa94bbf532b7af8f394b95fa310980d6e20bd2d4c871c6a6cb9f70f03750a44b","impliedFormat":1},{"version":"7fde0e1be5c8be204ffbf428abfcf01da2eb0f130e1bc3f539eb7275f4fd1f58","impliedFormat":1},{"version":"e284328553df5f425a5d33d36a0c3fa66b46af9d097cad6f4d2e8696dfdeb0f1","affectsGlobalScope":true,"impliedFormat":1},{"version":"7fa2214bb0d64701bc6f9ce8cde2fd2ff8c571e0b23065fa04a8a5a6beb91511","impliedFormat":1},{"version":"f1c93e046fb3d9b7f8249629f4b63dc068dd839b824dd0aa39a5e68476dc9420","impliedFormat":1},{"version":"016b29bf4926b80255a108c53a1451717350059da04fcae64d1075f5e93bbb39","impliedFormat":1},{"version":"841983e39bd4cbb463be385e92fda11057cab368bf27100a801c492f1d86cbaa","impliedFormat":1},{"version":"3856f7d31d0c47ec0dded3ec552519a3cd6639c1ad7be279dd1b31abffd8cc85","impliedFormat":1},{"version":"e16b319e5aca1031168de823c4946ff8e29629c4c8cc0ec0fcfe2a8ab2155043","impliedFormat":1},{"version":"e4156ddb25aa0e3b5303d372f26957b36778f0f6bbd4326359269873295e3058","affectsGlobalScope":true,"impliedFormat":1},{"version":"cc1b433a84cae05ddc5672d4823170af78606ad21ecef60dbc4570190cbf1357","impliedFormat":1},{"version":"9d3821bc75c59577e52643324cec92fc2145642e8d17cf7ee07a3181f21d985d","impliedFormat":1},{"version":"7f78cfb2b343838612c192cb251746e3a7c62ac7675726a47e130d9b213f6580","impliedFormat":1},{"version":"201db9cf1687fab1adf5282fcba861f382b32303dc4f67c89d59655e78a25461","impliedFormat":1},{"version":"2c3c5c0f54055e87640f5d233716fd889f3034fc7911d603b642369b0dbeb2a7","impliedFormat":1},{"version":"0a20eaf2e4b1e3c1e1f87f7bccb0c936375b23b022baeea750519b7c9bc6ce83","impliedFormat":1},{"version":"b484ec11ba00e3a2235562a41898d55372ccabe607986c6fa4f4aba72093749f","impliedFormat":1},{"version":"a16b91b27bd6b706c687c88cbc8a7d4ee98e5ed6043026d6b84bda923c0aed67","impliedFormat":1},{"version":"4ebf086fa2e5ef2b65133a944cb3f8ab518a22087727dfbfc802a3654c396f2f","impliedFormat":1},{"version":"99ab6d0d660ce4d21efb52288a39fd35bb3f556980ec5463b1ae8f304a3bbc85","impliedFormat":1},{"version":"6eeded8c7e352be6e0efb83f4935ec752513c4d22043b52522b90849a49a3a11","impliedFormat":1},{"version":"6c1ad90050ffbb151cacc68e2d06ea1a26a945659391e32651f5d42b86fd7f2c","impliedFormat":1},{"version":"55cdbeebe76a1fa18bbd7e7bf73350a2173926bd3085bb050cf5a5397025ee4e","impliedFormat":1},{"version":"0c51e46ad16a1d483119debc7227cd8fb6f8534408802cef1ce23d298b5a2dd5","impliedFormat":1},{"version":"cd1ac3689ea594fc7fc0e632de1e009106506055603f6457a361e87e15624f80","impliedFormat":1},{"version":"ae77d81a5541a8abb938a0efedf9ac4bea36fb3a24cc28cfa11c598863aba571","impliedFormat":1},{"version":"c2a6a737189ced24ffe0634e9239b087e4c26378d0490f95141b9b9b042b746c","impliedFormat":1},{"version":"104c67f0da1bdf0d94865419247e20eded83ce7f9911a1aa75fc675c077ca66e","impliedFormat":1},{"version":"cc0d0b339f31ce0ab3b7a5b714d8e578ce698f1e13d7f8c60bfb766baeb1d35c","impliedFormat":1},{"version":"427fe2004642504828c1476d0af4270e6ad4db6de78c0b5da3e4c5ca95052a99","impliedFormat":1},{"version":"2eeffcee5c1661ddca53353929558037b8cf305ffb86a803512982f99bcab50d","impliedFormat":99},{"version":"9afb4cb864d297e4092a79ee2871b5d3143ea14153f62ef0bb04ede25f432030","affectsGlobalScope":true,"impliedFormat":99},{"version":"fb893a0dfc3c9fb0f9ca93d0648694dd95f33cbad2c0f2c629f842981dfd4e2e","impliedFormat":1},{"version":"89e326922cadcc2331d7e851011cf9f0456a681aaf3c95b48b81f8d80e8cdfba","impliedFormat":1},{"version":"151ff381ef9ff8da2da9b9663ebf657eac35c4c9a19183420c05728f31a6761d","impliedFormat":1},{"version":"d34aa8df2d0b18fb56b1d772ff9b3c7aea7256cf0d692f969be6e1d27b74d660","impliedFormat":1},{"version":"93a3b8e57c68e348fc4054b245bd7cf4893225f56c991028844b693c2fa8c03c","impliedFormat":1},{"version":"2f5747b1508ccf83fad0c251ba1e5da2f5a30b78b09ffa1cfaf633045160afed","impliedFormat":1},{"version":"6823ccc7b5b77bbf898d878dbcad18aa45e0fa96bdd0abd0de98d514845d9ed9","affectsGlobalScope":true,"impliedFormat":1},{"version":"b71c603a539078a5e3a039b20f2b0a0d1708967530cf97dec8850a9ca45baa2b","impliedFormat":1},{"version":"168d88e14e0d81fe170e0dadd38ae9d217476c11435ea640ddb9b7382bdb6c1f","impliedFormat":1},{"version":"8e04cf0688e0d921111659c2b55851957017148fa7b977b02727477d155b3c47","impliedFormat":1},{"version":"4f817d326453d8d578758889131c3cab8665a0aa252df1ea254a83b653422efa","impliedFormat":1},{"version":"be1cc4d94ea60cbe567bc29ed479d42587bf1e6cba490f123d329976b0fe4ee5","impliedFormat":1},{"version":"15fe687c59d62741b4494d5e623d497d55eb38966ecf5bea7f36e48fc3fbe15e","impliedFormat":1},{"version":"2c3b8be03577c98530ef9cb1a76e2c812636a871f367e9edf4c5f3ce702b77f8","affectsGlobalScope":true,"impliedFormat":1},{"version":"18942319aff2c9619e05c379641b571f0958506472a4b539f906be08fcccf806","impliedFormat":1},{"version":"1ba59c8bbeed2cb75b239bb12041582fa3e8ef32f8d0bd0ec802e38442d3f317","impliedFormat":1}],"root":[[94,101]],"options":{"composite":true,"declaration":true,"declarationMap":true,"jsx":4,"module":99,"noFallthroughCasesInSwitch":true,"noUncheckedSideEffectImports":true,"outDir":"./","rootDir":"../src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":10,"tsBuildInfoFile":"./.tsbuildinfo","verbatimModuleSyntax":true},"referencedMap":[[227,1],[226,2],[228,2],[229,3],[231,4],[234,5],[230,6],[236,7],[232,2],[237,2],[241,8],[244,9],[245,2],[242,2],[235,2],[165,10],[166,10],[167,11],[104,12],[168,13],[169,14],[170,15],[102,2],[171,16],[172,17],[173,18],[174,19],[175,20],[176,21],[177,21],[178,22],[179,23],[180,24],[181,25],[105,2],[103,2],[182,26],[183,27],[184,28],[225,29],[185,30],[186,31],[187,30],[188,32],[189,33],[191,34],[192,35],[193,35],[194,35],[195,36],[196,37],[197,38],[198,39],[199,40],[200,41],[201,41],[202,42],[203,2],[204,2],[205,43],[206,44],[207,43],[208,45],[209,46],[210,47],[211,48],[212,49],[213,50],[214,51],[215,52],[216,53],[217,54],[218,55],[219,56],[220,57],[221,58],[222,59],[106,30],[107,2],[108,60],[109,61],[110,2],[111,62],[112,2],[156,63],[157,64],[158,65],[159,65],[160,66],[161,2],[162,13],[163,67],[164,64],[223,68],[224,69],[239,2],[240,2],[246,70],[66,2],[68,71],[69,70],[238,72],[243,73],[248,74],[247,2],[249,2],[250,75],[233,2],[190,2],[67,2],[64,2],[65,2],[11,2],[12,2],[14,2],[13,2],[2,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[22,2],[3,2],[23,2],[24,2],[4,2],[25,2],[29,2],[26,2],[27,2],[28,2],[30,2],[31,2],[32,2],[5,2],[33,2],[34,2],[35,2],[36,2],[6,2],[40,2],[37,2],[38,2],[39,2],[41,2],[7,2],[42,2],[47,2],[48,2],[43,2],[44,2],[45,2],[46,2],[8,2],[52,2],[49,2],[50,2],[51,2],[53,2],[9,2],[54,2],[55,2],[56,2],[58,2],[57,2],[59,2],[60,2],[10,2],[61,2],[1,2],[62,2],[63,2],[131,76],[144,77],[128,78],[145,79],[154,80],[119,81],[120,82],[118,83],[153,3],[148,84],[152,85],[122,86],[141,87],[121,88],[151,89],[116,90],[117,84],[123,91],[124,2],[130,92],[127,91],[114,93],[155,94],[146,95],[134,96],[133,91],[135,97],[138,98],[132,99],[136,100],[149,3],[125,101],[126,102],[139,103],[115,79],[143,104],[142,91],[129,102],[137,105],[140,106],[147,2],[113,2],[150,107],[95,108],[96,108],[97,109],[98,110],[100,111],[101,112],[94,109],[99,110],[89,113],[88,113],[93,114],[85,2],[90,115],[91,116],[87,117],[84,118],[92,113],[86,119],[83,120],[73,121],[80,121],[72,121],[75,121],[74,121],[78,121],[81,121],[76,122],[82,123],[79,121],[70,2],[77,121],[71,121]],"latestChangedDtsFile":"./useDevtoolsRegistry.d.ts","version":"5.8.3"}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Bridges-Tab (v0.16.4) — Bridge-Header + Records-Tabelle + Detail-Sidebar.
|
|
3
|
+
*
|
|
4
|
+
* Architektur-Doc: `design/calendar/16-bridges-inspector-architecture.md`.
|
|
5
|
+
*
|
|
6
|
+
* Layout:
|
|
7
|
+
* - Oben: kompakter Bridge-Header mit Chips pro registrierter Bridge
|
|
8
|
+
* (Name + Kind). Identifikation, keine eigene Liste.
|
|
9
|
+
* - Links: rolling-window an CapturedBridgeRecord als Tabelle
|
|
10
|
+
* (#seq, Time, Bridge, Direction-Glyph, Topic, Type, Event-ID, Status).
|
|
11
|
+
* - Rechts: bei Auswahl Record-Detail mit Bridge-Kontext-Header
|
|
12
|
+
* (Record-#, Topic, Bridge-Name) plus Envelope/Metadata/Payload-
|
|
13
|
+
* Boxen für das gebridge-te Event. publish-error → zusätzliche
|
|
14
|
+
* Error-Sektion mit message + stack. Bewusst KEINE Wiederverwendung
|
|
15
|
+
* von `EventDetail` — sonst müssten wir synthetische seq/tookMs-
|
|
16
|
+
* Werte erfinden, die der wire-and-forget-Semantik widersprechen
|
|
17
|
+
* (Pilot-Finding Sub 2).
|
|
18
|
+
*
|
|
19
|
+
* Imports nur aus inspector-shared.tsx — KEIN Zyklus zurück zu
|
|
20
|
+
* EventInspectorPanel.tsx (Sub-2-Lehre aus v0.16.3).
|
|
21
|
+
*/
|
|
22
|
+
import type { CapturedBridgeRecord, RegisteredBridge } from '@bimetal/devtools';
|
|
23
|
+
export declare function BridgesBody({ bridges, records, }: {
|
|
24
|
+
readonly bridges: readonly RegisteredBridge[];
|
|
25
|
+
readonly records: readonly CapturedBridgeRecord[];
|
|
26
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
27
|
+
//# sourceMappingURL=BridgesBody.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"BridgesBody.d.ts","sourceRoot":"","sources":["../src/BridgesBody.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;GAoBG;AAGH,OAAO,KAAK,EACV,oBAAoB,EACpB,gBAAgB,EACjB,MAAM,mBAAmB,CAAC;AAmB3B,wBAAgB,WAAW,CAAC,EAC1B,OAAO,EACP,OAAO,GACR,EAAE;IACD,QAAQ,CAAC,OAAO,EAAE,SAAS,gBAAgB,EAAE,CAAC;IAC9C,QAAQ,CAAC,OAAO,EAAE,SAAS,oBAAoB,EAAE,CAAC;CACnD,2CAwCA"}
|
|
@@ -0,0 +1,154 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
/**
|
|
3
|
+
* Bridges-Tab (v0.16.4) — Bridge-Header + Records-Tabelle + Detail-Sidebar.
|
|
4
|
+
*
|
|
5
|
+
* Architektur-Doc: `design/calendar/16-bridges-inspector-architecture.md`.
|
|
6
|
+
*
|
|
7
|
+
* Layout:
|
|
8
|
+
* - Oben: kompakter Bridge-Header mit Chips pro registrierter Bridge
|
|
9
|
+
* (Name + Kind). Identifikation, keine eigene Liste.
|
|
10
|
+
* - Links: rolling-window an CapturedBridgeRecord als Tabelle
|
|
11
|
+
* (#seq, Time, Bridge, Direction-Glyph, Topic, Type, Event-ID, Status).
|
|
12
|
+
* - Rechts: bei Auswahl Record-Detail mit Bridge-Kontext-Header
|
|
13
|
+
* (Record-#, Topic, Bridge-Name) plus Envelope/Metadata/Payload-
|
|
14
|
+
* Boxen für das gebridge-te Event. publish-error → zusätzliche
|
|
15
|
+
* Error-Sektion mit message + stack. Bewusst KEINE Wiederverwendung
|
|
16
|
+
* von `EventDetail` — sonst müssten wir synthetische seq/tookMs-
|
|
17
|
+
* Werte erfinden, die der wire-and-forget-Semantik widersprechen
|
|
18
|
+
* (Pilot-Finding Sub 2).
|
|
19
|
+
*
|
|
20
|
+
* Imports nur aus inspector-shared.tsx — KEIN Zyklus zurück zu
|
|
21
|
+
* EventInspectorPanel.tsx (Sub-2-Lehre aus v0.16.3).
|
|
22
|
+
*/
|
|
23
|
+
import { useState } from 'react';
|
|
24
|
+
import { MetaPlainRow, Section, detailColumnStyle, detailHeaderStyle, detailInnerStyle, detailMetaGridStyle, emptyDetailStyle, emptyStyle, formatTimeWithMs, inlineCodeStyle, preStyle, safeStringify, stub, tableScrollStyle, twoColStyle, } from './inspector-shared.js';
|
|
25
|
+
export function BridgesBody({ bridges, records, }) {
|
|
26
|
+
const [selectedSeq, setSelectedSeq] = useState(null);
|
|
27
|
+
const selected = records.find(r => r.seq === selectedSeq) ?? null;
|
|
28
|
+
if (bridges.length === 0 && records.length === 0) {
|
|
29
|
+
return (_jsxs("div", { style: emptyStyle, children: ["Keine Bridges registriert. Variants wirklich-observierten Bridges via ", _jsx("code", { children: "createObservedBridge(registry, options)" }), "registrieren \u2014 sobald die erste Bridge l\u00E4uft, erscheinen forward- und publish-error-Records hier."] }));
|
|
30
|
+
}
|
|
31
|
+
return (_jsxs("div", { style: bodyStyle, children: [_jsx(BridgeHeader, { bridges: bridges }), _jsxs("div", { style: twoColStyle, children: [_jsx("div", { style: tableScrollStyle, children: records.length === 0 ? (_jsx("div", { style: emptyStyle, children: "Bridges registriert, aber noch keine Forwards." })) : (_jsx(RecordsTable, { records: records, selectedSeq: selectedSeq, onSelect: setSelectedSeq })) }), _jsx("div", { style: detailColumnStyle, children: selected
|
|
32
|
+
? _jsx(BridgeRecordDetail, { captured: selected })
|
|
33
|
+
: _jsx("div", { style: emptyDetailStyle, children: "Klick auf eine Zeile zeigt Event + Bridge-Kontext." }) })] })] }));
|
|
34
|
+
}
|
|
35
|
+
function BridgeHeader({ bridges }) {
|
|
36
|
+
if (bridges.length === 0) {
|
|
37
|
+
return (_jsx("div", { style: headerStyle, children: _jsx("span", { style: headerEmptyStyle, children: "Keine aktive Bridge \u2014 Records aus fr\u00FCherer Registrierung im rolling-window." }) }));
|
|
38
|
+
}
|
|
39
|
+
return (_jsx("div", { style: headerStyle, children: bridges.map(b => (_jsxs("span", { style: chipStyle, title: `${b.source.label} → ${b.target.label}`, children: [_jsx("span", { style: chipNameStyle, children: b.name }), _jsx("span", { style: chipKindStyle, children: b.kind }), _jsxs("span", { style: chipFlowStyle, children: [b.source.label, " \u2192 ", b.target.label] })] }, b.id))) }));
|
|
40
|
+
}
|
|
41
|
+
function RecordsTable({ records, selectedSeq, onSelect, }) {
|
|
42
|
+
// Neueste zuerst — analog zum Sync-Tab.
|
|
43
|
+
const sorted = [...records].reverse();
|
|
44
|
+
return (_jsxs("table", { style: tableStyle, children: [_jsx("thead", { children: _jsxs("tr", { children: [_jsx("th", { style: thNumStyle, children: "#" }), _jsx("th", { style: thStyle, children: "Time" }), _jsx("th", { style: thStyle, children: "Bridge" }), _jsx("th", { style: thStyle }), _jsx("th", { style: thStyle, children: "Topic" }), _jsx("th", { style: thStyle, children: "Type" }), _jsx("th", { style: thStyle, children: "Event-ID" }), _jsx("th", { style: thStyle, children: "Status" })] }) }), _jsx("tbody", { children: sorted.map(r => (_jsx(RecordRow, { captured: r, isSelected: selectedSeq === r.seq, onSelect: () => onSelect(r.seq) }, r.seq))) })] }));
|
|
45
|
+
}
|
|
46
|
+
function RecordRow({ captured, isSelected, onSelect, }) {
|
|
47
|
+
const { seq, capturedAt, bridgeName, record } = captured;
|
|
48
|
+
const isError = record.kind === 'bridge-publish-error';
|
|
49
|
+
const statusColor = isError ? '#d97a6b' : '#a8d8a8';
|
|
50
|
+
return (_jsxs("tr", { onClick: onSelect, style: { ...trStyle, ...(isSelected ? trSelectedStyle : null), cursor: 'pointer' }, children: [_jsx("td", { style: tdNumStyle, children: seq }), _jsx("td", { style: tdMonoStyle, children: formatTimeWithMs(capturedAt) }), _jsx("td", { style: tdStoreStyle, children: bridgeName }), _jsx("td", { style: { ...tdStyle, color: statusColor, fontWeight: 700, textAlign: 'center' }, children: isError ? '✗' : '↓' }), _jsx("td", { style: tdMonoStyle, children: record.topic }), _jsx("td", { style: tdMonoStyle, children: record.event.type }), _jsx("td", { style: tdMonoStyle, children: stub(record.event.envelope.id) }), _jsx("td", { style: { ...tdStyle, color: statusColor, fontFamily: 'ui-monospace, monospace' }, children: isError ? 'error' : 'forwarded' })] }));
|
|
51
|
+
}
|
|
52
|
+
function BridgeRecordDetail({ captured }) {
|
|
53
|
+
const { bridgeId, bridgeName, capturedAt, seq, record } = captured;
|
|
54
|
+
const isError = record.kind === 'bridge-publish-error';
|
|
55
|
+
const { event } = record;
|
|
56
|
+
return (_jsxs("div", { style: detailInnerStyle, children: [_jsxs("div", { style: detailHeaderStyle, children: [_jsx("div", { style: { fontWeight: 600, fontSize: 14, fontFamily: 'ui-monospace, monospace' }, children: event.type }), _jsxs("div", { style: { fontSize: 11, color: '#888', marginTop: 4 }, children: [isError ? 'Bridge Publish Error' : 'Bridge Event Forwarded', " via", ' ', _jsx("code", { style: inlineCodeStyle, children: bridgeName }), _jsxs("span", { style: { opacity: 0.6 }, children: [" (id: ", bridgeId, ")"] })] }), _jsxs("div", { style: detailMetaGridStyle, children: [_jsx(MetaPlainRow, { label: "Captured", value: `${formatTimeWithMs(capturedAt)} · ${capturedAt}`, mono: true }), _jsx(MetaPlainRow, { label: "Record #", value: String(seq), mono: true }), _jsx(MetaPlainRow, { label: "Topic", value: record.topic, mono: true }), _jsx(MetaPlainRow, { label: "Event-ID", value: event.envelope.id, mono: true }), _jsx(MetaPlainRow, { label: "Stream", value: event.envelope.aggregateId, mono: true }), _jsx(MetaPlainRow, { label: "Version", value: String(event.envelope.version) }), _jsx(MetaPlainRow, { label: "Kind", value: record.kind })] })] }), isError && record.kind === 'bridge-publish-error' && (_jsx(Section, { title: "Error", children: _jsxs("pre", { style: preStyle, children: [record.error.message, record.error.stack ? `\n\n${record.error.stack}` : ''] }) })), _jsx(Section, { title: "Envelope", children: _jsx("pre", { style: preStyle, children: safeStringify(event.envelope) }) }), _jsx(Section, { title: "Metadata", children: _jsx("pre", { style: preStyle, children: safeStringify(event.metadata) }) }), _jsx(Section, { title: "Payload", children: _jsx("pre", { style: preStyle, children: safeStringify(event.payload) }) })] }));
|
|
57
|
+
}
|
|
58
|
+
// ── Styles ────────────────────────────────────────────────────────
|
|
59
|
+
const bodyStyle = {
|
|
60
|
+
flex: 1,
|
|
61
|
+
display: 'flex',
|
|
62
|
+
flexDirection: 'column',
|
|
63
|
+
minHeight: 0,
|
|
64
|
+
};
|
|
65
|
+
const headerStyle = {
|
|
66
|
+
display: 'flex',
|
|
67
|
+
flexWrap: 'wrap',
|
|
68
|
+
gap: 8,
|
|
69
|
+
padding: '10px 16px',
|
|
70
|
+
borderBottom: '1px solid #2a2a2a',
|
|
71
|
+
background: '#161616',
|
|
72
|
+
};
|
|
73
|
+
const headerEmptyStyle = {
|
|
74
|
+
fontSize: 11,
|
|
75
|
+
color: '#888',
|
|
76
|
+
fontStyle: 'italic',
|
|
77
|
+
};
|
|
78
|
+
const chipStyle = {
|
|
79
|
+
display: 'inline-flex',
|
|
80
|
+
alignItems: 'baseline',
|
|
81
|
+
gap: 8,
|
|
82
|
+
padding: '4px 10px',
|
|
83
|
+
background: '#1f2a36',
|
|
84
|
+
border: '1px solid #345',
|
|
85
|
+
borderRadius: 4,
|
|
86
|
+
fontSize: 11,
|
|
87
|
+
};
|
|
88
|
+
const chipNameStyle = {
|
|
89
|
+
fontWeight: 600,
|
|
90
|
+
color: '#e0e0e0',
|
|
91
|
+
};
|
|
92
|
+
const chipKindStyle = {
|
|
93
|
+
fontFamily: 'ui-monospace, "SF Mono", monospace',
|
|
94
|
+
fontSize: 10,
|
|
95
|
+
color: '#7aaef5',
|
|
96
|
+
};
|
|
97
|
+
const chipFlowStyle = {
|
|
98
|
+
fontFamily: 'ui-monospace, "SF Mono", monospace',
|
|
99
|
+
fontSize: 10,
|
|
100
|
+
color: '#999',
|
|
101
|
+
};
|
|
102
|
+
const tableStyle = {
|
|
103
|
+
width: '100%',
|
|
104
|
+
borderCollapse: 'collapse',
|
|
105
|
+
fontSize: 12,
|
|
106
|
+
};
|
|
107
|
+
const thStyle = {
|
|
108
|
+
textAlign: 'left',
|
|
109
|
+
padding: '8px 10px',
|
|
110
|
+
background: '#1e1e1e',
|
|
111
|
+
borderBottom: '1px solid #333',
|
|
112
|
+
position: 'sticky',
|
|
113
|
+
top: 0,
|
|
114
|
+
fontWeight: 600,
|
|
115
|
+
fontSize: 11,
|
|
116
|
+
textTransform: 'uppercase',
|
|
117
|
+
letterSpacing: 0.4,
|
|
118
|
+
color: '#999',
|
|
119
|
+
};
|
|
120
|
+
const thNumStyle = {
|
|
121
|
+
...thStyle,
|
|
122
|
+
textAlign: 'right',
|
|
123
|
+
};
|
|
124
|
+
const trStyle = {
|
|
125
|
+
borderBottom: '1px solid #2a2a2a',
|
|
126
|
+
};
|
|
127
|
+
const trSelectedStyle = {
|
|
128
|
+
background: 'rgba(80, 130, 220, 0.22)',
|
|
129
|
+
outline: '1px solid rgba(80, 130, 220, 0.55)',
|
|
130
|
+
outlineOffset: -1,
|
|
131
|
+
};
|
|
132
|
+
const tdStyle = {
|
|
133
|
+
padding: '6px 10px',
|
|
134
|
+
fontSize: 12,
|
|
135
|
+
};
|
|
136
|
+
const tdMonoStyle = {
|
|
137
|
+
...tdStyle,
|
|
138
|
+
fontFamily: 'ui-monospace, "SF Mono", monospace',
|
|
139
|
+
fontSize: 11,
|
|
140
|
+
color: '#bbb',
|
|
141
|
+
};
|
|
142
|
+
const tdNumStyle = {
|
|
143
|
+
...tdStyle,
|
|
144
|
+
fontFamily: 'ui-monospace, "SF Mono", monospace',
|
|
145
|
+
fontSize: 11,
|
|
146
|
+
color: '#888',
|
|
147
|
+
textAlign: 'right',
|
|
148
|
+
};
|
|
149
|
+
const tdStoreStyle = {
|
|
150
|
+
...tdStyle,
|
|
151
|
+
fontSize: 11,
|
|
152
|
+
color: '#9ec8ff',
|
|
153
|
+
};
|
|
154
|
+
//# sourceMappingURL=BridgesBody.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"BridgesBody.js","sourceRoot":"","sources":["../src/BridgesBody.tsx"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Causation-Tab (v0.16.3) — Forest-Rendering aus dem rolling-window.
|
|
3
|
+
*
|
|
4
|
+
* Architektur-Doc: `design/calendar/16-causation-forest-architecture.md`.
|
|
5
|
+
*
|
|
6
|
+
* Pure-Function lebt in `@bimetal/devtools`; diese Datei ist reine
|
|
7
|
+
* UI-Schicht. Komponenten + Forest-spezifische Styles wurden aus
|
|
8
|
+
* `EventInspectorPanel.tsx` herausgezogen, weil der Inspector-Monolith
|
|
9
|
+
* bei jeder neuen Slice mitgewachsen ist. Geteilte Bits (EventDetail,
|
|
10
|
+
* MetaPlainRow, stub, Detail-Layout-Styles) werden re-importiert.
|
|
11
|
+
*/
|
|
12
|
+
import type { CapturedEvent } from '@bimetal/devtools';
|
|
13
|
+
/**
|
|
14
|
+
* Forest aus rolling-window via `buildCausationForest`, gerendert als
|
|
15
|
+
* eingerückte Baum-Liste. UI memoiziert über die `events`-Reference.
|
|
16
|
+
*
|
|
17
|
+
* Klick auf EventNode → EventDetail rechts (wiederverwendet).
|
|
18
|
+
* Klick auf ExternalCauseNode → kompaktes Cause-Detail mit ID +
|
|
19
|
+
* Reason + Hinweis ("aus events[] allein nicht entscheidbar, ob
|
|
20
|
+
* Command, dropped Event oder Fremdprozess").
|
|
21
|
+
*
|
|
22
|
+
* Im Calendar-DomainStore-Flow sind die Bäume meistens flach (jedes
|
|
23
|
+
* Event hängt unter einem nicht-eingefangenen Command). Das ist
|
|
24
|
+
* Eigenschaft des Flows, kein UX-Versagen — anderen Frameworks
|
|
25
|
+
* liefert der Tab den vollen Tiefendurchblick.
|
|
26
|
+
*/
|
|
27
|
+
export declare function CausationBody({ events }: {
|
|
28
|
+
readonly events: readonly CapturedEvent[];
|
|
29
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
30
|
+
//# sourceMappingURL=CausationBody.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CausationBody.d.ts","sourceRoot":"","sources":["../src/CausationBody.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAGH,OAAO,KAAK,EACV,aAAa,EAId,MAAM,mBAAmB,CAAC;AAiB3B;;;;;;;;;;;;;GAaG;AACH,wBAAgB,aAAa,CAAC,EAAE,MAAM,EAAE,EAAE;IAAE,QAAQ,CAAC,MAAM,EAAE,SAAS,aAAa,EAAE,CAAA;CAAE,2CAuCtF"}
|