@forgeax/engine-net 0.1.3 → 0.1.6

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.
Files changed (41) hide show
  1. package/README.md +156 -105
  2. package/dist/.tsbuildinfo +1 -1
  3. package/dist/endpoint/endpoint.d.ts +7 -0
  4. package/dist/endpoint/endpoint.d.ts.map +1 -1
  5. package/dist/endpoint/memory.d.ts +3 -1
  6. package/dist/endpoint/memory.d.ts.map +1 -1
  7. package/dist/index.d.ts +11 -7
  8. package/dist/index.d.ts.map +1 -1
  9. package/dist/index.mjs +860 -117
  10. package/dist/index.mjs.map +1 -1
  11. package/dist/replication/authority.d.ts +8 -6
  12. package/dist/replication/authority.d.ts.map +1 -1
  13. package/dist/replication/codec.d.ts +4 -22
  14. package/dist/replication/codec.d.ts.map +1 -1
  15. package/dist/replication/constants.d.ts +4 -1
  16. package/dist/replication/constants.d.ts.map +1 -1
  17. package/dist/replication/errors.d.ts +24 -4
  18. package/dist/replication/errors.d.ts.map +1 -1
  19. package/dist/replication/protocol.d.ts +63 -0
  20. package/dist/replication/protocol.d.ts.map +1 -0
  21. package/dist/replication/replica.d.ts +9 -6
  22. package/dist/replication/replica.d.ts.map +1 -1
  23. package/dist/session/net-session.d.ts +40 -6
  24. package/dist/session/net-session.d.ts.map +1 -1
  25. package/dist/session/recovery.d.ts +93 -0
  26. package/dist/session/recovery.d.ts.map +1 -0
  27. package/dist/session/session-plugin.d.ts +8 -2
  28. package/dist/session/session-plugin.d.ts.map +1 -1
  29. package/package.json +4 -4
  30. package/src/endpoint/endpoint.ts +8 -0
  31. package/src/endpoint/memory.ts +23 -1
  32. package/src/index.ts +56 -12
  33. package/src/replication/authority.ts +55 -23
  34. package/src/replication/codec.ts +167 -101
  35. package/src/replication/constants.ts +5 -1
  36. package/src/replication/errors.ts +22 -4
  37. package/src/replication/protocol.ts +86 -0
  38. package/src/replication/replica.ts +88 -28
  39. package/src/session/net-session.ts +612 -38
  40. package/src/session/recovery.ts +204 -0
  41. package/src/session/session-plugin.ts +21 -5
package/README.md CHANGED
@@ -1,145 +1,196 @@
1
1
  # @forgeax/engine-net
2
2
 
3
- > **Host-neutral memory transport and profile-driven ECS replication.**
4
- >
5
- > Start at `NetEndpoint`; add `NetSession` to bind a transport to a World; then declare one `defineReplication` profile and attach `AuthorityCoordinator` / `ReplicaCoordinator`. `NetEntityId` is the only cross-World identity. Local ECS handles never cross the boundary.
3
+ > **Socket open is not authority.** A transport attachment is only a way to
4
+ > carry bytes. The realm-neutral `NetSession` contract remains non-authoritative
5
+ > until a fresh protocol-v2 baseline is accepted.
6
6
 
7
- `@forgeax/engine-net` depends on `@forgeax/engine-ecs`, `@forgeax/engine-plugin`, and `@forgeax/engine-types`. WebSocket transport is provided separately by `@forgeax/engine-net-websocket`.
7
+ `@forgeax/engine-net` owns the application-session vocabulary, replication
8
+ packet schema, codec limits, and structured errors. WebSocket mechanics belong
9
+ to `@forgeax/engine-net-websocket`; gameplay meaning belongs to the consumer.
10
+ Reconnect, ACK ledger, resync, packet-loss recovery, and terminal cleanup are
11
+ described by the public contract below.
12
+ Socket-specific retry or automatic recovery remains a session policy concern;
13
+ the WebSocket package only supplies the endpoint and connector mechanics.
8
14
 
9
- ## 1. Endpoint: complete bytes and lifecycle
15
+ ## First entry
10
16
 
11
- `NetEndpoint` is the transport seam: complete `Uint8Array` messages, transport-issued `PeerId`, and connect/disconnect lifecycle. It does not know World, schema, profile, or codec policy.
17
+ Use the public barrel to discover the contract:
12
18
 
13
19
  ```ts
14
- import { createMemoryEndpointPair } from '@forgeax/engine-net';
15
-
16
- const [serverEndpoint, clientEndpoint] = createMemoryEndpointPair();
17
- const [{ peerId }] = serverEndpoint.poll();
18
- serverEndpoint.send(peerId, new Uint8Array([1, 2, 3]));
19
- ```
20
-
21
- The memory pair is deterministic and is suitable for headless tests. Its delay, duplicate, malformed-byte, and forced-disconnect controls are test-only fault injection; they are not transport recovery, reconnect, or resync APIs.
22
-
23
- ## 2. Session: host integration
24
-
25
- `NetSession` owns endpoint polling, peer observation, bounded raw game messages, and attached replication coordinators. Call `receiveEvents()` before simulation work and `publish()` after authoritative work. The session surfaces actual peer IDs; games do not retain a concrete endpoint.
26
-
27
- ```ts
28
- import { NetSession } from '@forgeax/engine-net';
29
-
30
- const authoritySession = new NetSession({ endpoint: serverEndpoint, maxRawMessages: 32 });
31
- const replicaSession = new NetSession({ endpoint: clientEndpoint, maxRawMessages: 32 });
20
+ import {
21
+ DEFAULT_NET_RECOVERY_POLICY,
22
+ NetSession,
23
+ createSessionId,
24
+ resolveNetRecoveryPolicy,
25
+ } from '@forgeax/engine-net';
32
26
 
33
- authoritySession.receiveEvents();
34
- replicaSession.receiveEvents();
35
- // World simulation happens here.
36
- authoritySession.publish();
37
- replicaSession.receiveEvents();
27
+ const sessionId = createSessionId(17).unwrap();
28
+ const policy = resolveNetRecoveryPolicy().unwrap();
29
+ const session = new NetSession({ endpoint, maxRawMessages: 32 });
38
30
  ```
39
31
 
40
- Use `getPeerSnapshot()`, `sendRaw()`, and `drainRawMessages()` only for host/game protocol outside the replication profile. A raw message is not trusted replication state.
41
-
42
- ## 3. Profile: select portable ECS state once
43
-
44
- `defineReplication` fixes the selected entity query, ordered component list, portable schema projection, limits, and fingerprint. It returns a structured error when a selected component is transient or contains process-local reference data.
32
+ `SessionId` is application identity. `PeerId` is transport identity and may
33
+ change when a socket is replaced. Never use a reopened socket or a new
34
+ `PeerId` as evidence that stale local state is authoritative.
35
+
36
+ ## Lifecycle contract
37
+
38
+ `NetSessionState` is a closed union owned by one logical session:
39
+
40
+ | State | Meaning | Legal next states |
41
+ |:--|:--|:--|
42
+ | `connecting` | Initial endpoint attachment is pending. | `resyncing`, `failed`, `retired` |
43
+ | `resyncing` | A transport exists, but no fresh baseline is accepted yet. | `active`, `recovering`, `failed`, `retired` |
44
+ | `active` | The current epoch and ordered projection are accepted. | `recovering`, `failed`, `retired` |
45
+ | `recovering` | The session is replacing transport state under finite bounds. | `resyncing`, `failed`, `retired` |
46
+ | `failed` | Terminal protocol, apply, or recovery failure is observable. | `retired` |
47
+ | `retired` | The session owns no further work. | `retired` |
48
+
49
+ `isLegalNetSessionTransition` checks a transition without changing state.
50
+ `transitionNetSessionState` returns a `Result`, rejects a different
51
+ `SessionId`, and reports `session-illegal-transition` instead of silently
52
+ accepting an invalid replacement.
53
+
54
+ ## Finite recovery policy
55
+
56
+ `DEFAULT_NET_RECOVERY_POLICY` is deterministic and finite:
57
+
58
+ | Field | Default | Bound |
59
+ |:--|--:|:--|
60
+ | `maxSessions` | `64` | Positive safe integer |
61
+ | `maxPendingPackets` | `32` | Positive safe integer per session |
62
+ | `ackTimeoutMs` | `250` | Positive safe integer |
63
+ | `maxPacketRetries` | `3` | Positive safe integer |
64
+ | `maxReconnectAttempts` | `5` | Positive safe integer |
65
+ | `reconnectDeadlineMs` | `10000` | Positive safe integer |
66
+ | `reconnectDelaysMs` | `[0, 100, 200, 400, 800]` | Non-negative safe integers |
67
+
68
+ `resolveNetRecoveryPolicy` merges overrides and validates the complete result.
69
+ Invalid bounds return `recovery-policy-invalid` with `.detail.field` and
70
+ `.detail.reason`. No transport package selects these limits or owns a retry
71
+ ledger. `NetEndpointConnector.connect(signal)` is the only realm-neutral
72
+ replacement-endpoint capability.
73
+
74
+ ## Protocol-v2 packet contract
75
+
76
+ `ReplicationPacket` is the single machine-readable wire/schema authority. Each
77
+ encoded packet begins with the fixed `FXRP2` prefix and a newline. The public
78
+ union has exactly these kinds:
79
+
80
+ | Kind | Required identity | Payload rule |
81
+ |:--|:--|:--|
82
+ | `session-open` | `sessionId`, `epoch`, `sequence: 0` | Opens an application session. |
83
+ | `session-resume` | `sessionId`, `epoch`, `sequence: 0` | Requests the same application session after transport replacement. |
84
+ | `baseline` | `sessionId`, `epoch`, `sequence: 1` | Complete authority projection; required first data packet of an epoch. |
85
+ | `delta` | `sessionId`, `epoch`, positive `sequence` | Ordered projection after the accepted baseline. |
86
+ | `ack` | `sessionId`, `epoch`, `acknowledgedSequence` | Cumulative contiguous watermark. |
87
+ | `rejection` | `sessionId`, `epoch`, `sequence` | Structured rejection of a packet kind with a reason. |
88
+
89
+ Data packets also carry the safe-integer `tick`, profile `fingerprint`, and
90
+ projected `entities`. Entity kinds are the closed `upsert` and `despawn`
91
+ union. Protocol v1, a wrong prefix, malformed fields, unsafe identity values,
92
+ an invalid baseline sequence, and limit violations fail before dispatch.
45
93
 
46
94
  ```ts
47
- import { defineComponent, World } from '@forgeax/engine-ecs';
48
95
  import {
49
- createAuthorityCoordinator,
50
- createReplicaCoordinator,
51
- defineReplication,
96
+ decodeReplicationPacket,
97
+ encodeReplicationPacket,
52
98
  } from '@forgeax/engine-net';
53
99
 
54
- const Networked = defineComponent('Networked', { enabled: 'bool' });
55
- const Position = defineComponent('Position', { x: 'f32', y: 'f32' });
56
- const profile = defineReplication({
57
- name: 'game-state',
58
- entities: { with: [Networked] },
59
- components: [Networked, Position],
60
- }).unwrap();
61
-
62
- const authority = createAuthorityCoordinator(new World(), profile);
63
- const replica = createReplicaCoordinator(new World(), profile, clientEndpoint);
64
- authoritySession.attachAuthority(authority);
65
- replicaSession.attachReplica(replica, profile.limits);
100
+ const encoded = encodeReplicationPacket(packet, profile.limits);
101
+ if (!encoded.ok) {
102
+ // Inspect encoded.error.code, expected, hint, and narrowed detail.
103
+ return encoded;
104
+ }
105
+ const decoded = decodeReplicationPacket(encoded.value, profile.limits);
66
106
  ```
67
107
 
68
- The authority publishes an initial full snapshot, suppresses canonically unchanged component replacements, sends complete component replacement/add/remove operations, and publishes a fresh full baseline when a peer connects later. `NetEntityId` is non-zero, authority-issued, and never reused; it maps each World’s distinct local `EntityHandle` values.
69
-
70
- ## 4. Replication evidence and failure handling
108
+ `ReplicationLimits` bound message bytes, entities, component operations,
109
+ strings, buffers, and arrays. Typed arrays are represented by an allowlisted
110
+ canonical tag and revived only after validation. There is no compatibility
111
+ decoder or second batch envelope.
71
112
 
72
- Incoming replication bytes are decoded, bounded, profile-checked, identity-checked, and reference-closed before mutation. Same-batch spawn references may resolve forward; cross-batch unresolved references do not queue. A rejected sender is disconnected and the replica World is unchanged.
113
+ ## Structured failure and recovery guidance
73
114
 
74
- The deterministic memory model tests prove NetEntityId-keyed semantic convergence between separately allocated Worlds for:
115
+ Expected failures are `Result` values with `.code`, `.expected`, `.hint`, and
116
+ code-narrowed `.detail`. Branch on the code; do not parse error messages.
75
117
 
76
- - initial full publication, unchanged publication, and late join;
77
- - scalar and `array<entity>` reference remap;
78
- - component replacement, add, and removal;
79
- - spawn/despawn and identity cleanup;
80
- - malformed, truncated, over-limit, schema, ordering, identity, and unresolved-reference rejection with zero mutation; and
81
- - fatal stop after a real post-validation ECS write invariant failure.
118
+ | Code | Meaning | Next action |
119
+ |:--|:--|:--|
120
+ | `protocol-unsupported-version` | The peer sent a version other than `2`. | Align the peer build before sending bytes. |
121
+ | `session-illegal-transition` | A state replacement is not legal for this session. | Wait for the current state or retire the session. |
122
+ | `recovery-policy-invalid` | A configured bound is invalid. | Fix the named field and resolve the policy again. |
123
+ | `recovery-rejected` | The authority rejected recovery. | Inspect `.detail.reason`, then dispose or fix admission. |
124
+ | `recovery-exhausted` | Finite attempts or deadline were exhausted. | Inspect accounting and create a new session only after terminal retirement. |
125
+ | `apply-invariant-failed` | Validated ECS application failed. | Treat the coordinator as terminal; never retry the fatal apply. |
82
126
 
83
- A post-validation ECS apply invariant failure returns `apply-invariant-failed` and permanently stops that `ReplicaCoordinator`; create a new session/coordinator rather than continuing from partial trusted state.
127
+ The session snapshot shape is `NetRecoverySnapshot`: it reports `state`, the
128
+ stable `sessionId`, `pendingPackets`, `maxPendingPackets`,
129
+ `acknowledgedSequence`, `epoch`, `sequence`, `reconnectAttempts`, the latest
130
+ structured error, and `ownedResources`. `ownedResources` counts pending
131
+ connects, timers, ledgers, and callbacks; every terminal and disposed path
132
+ must report zero. `NetRecoveryOutcome` gives stable results for repeated
133
+ recovery calls: `started`, `already-recovering`, `already-active`, or `retired`.
84
134
 
85
- ## Structured recovery
135
+ ## Runnable public evidence
86
136
 
87
- Expected failures are closed unions carrying `.code`, `.expected`, `.hint`, and code-narrowed `.detail`. Exhaustively handle the code; the hint states the supported next action.
137
+ Run the built public-barrel consumers from the repository root:
88
138
 
89
- ```ts
90
- const errors = replicaSession.receiveEvents();
91
- for (const error of errors) {
92
- switch (error.code) {
93
- case 'decode-invalid-payload':
94
- case 'decode-limit-exceeded':
95
- case 'ordering-invalid-tick':
96
- case 'identity-invalid':
97
- case 'schema-invalid':
98
- case 'remap-unresolved-reference':
99
- // Sender is disconnected; retain the unchanged replica World.
100
- break;
101
- case 'apply-invariant-failed':
102
- // This coordinator is stopped; inspect detail and create a fresh session.
103
- break;
104
- case 'handshake-profile-mismatch':
105
- // Do not attach/apply across incompatible profiles.
106
- break;
107
- }
108
- }
139
+ ```bash
140
+ node packages/net/__tests__/fixtures/protocol-v2-consumer.mjs
141
+ node packages/net/__tests__/fixtures/recovery-session-consumer.mjs
109
142
  ```
110
143
 
111
- ## Codec and remap details
144
+ The protocol fixture round-trips every packet kind and rejects protocol v1.
145
+ The recovery fixture checks every lifecycle state, transition validation,
146
+ bounded defaults, and deterministic memory endpoint behavior. These fixtures
147
+ import only the shipped `@forgeax/engine-net` barrel.
112
148
 
113
- The replication codec is the sole canonical byte/limit authority. `ReplicationLimits` bound message bytes, entities, component operations, strings, buffers, and arrays before mutation. Component data is reflection-projected through the ECS externalization kernel. Entity and `array<entity>` fields contain NetEntityIds on the wire and are remapped through the replica identity map during apply.
149
+ ## Existing ECS replication seam
114
150
 
115
- ## Out of scope
151
+ `defineReplication` selects the portable ECS query, ordered component list,
152
+ limits, and profile fingerprint. `AuthorityCoordinator` publishes baseline and
153
+ delta `ReplicationPacket` data; `ReplicaCoordinator` validates profile,
154
+ identity, ordering, schema, and same-packet references before World mutation.
155
+ Local ECS `EntityHandle` values never cross the wire.
116
156
 
117
- This package deliberately does **not** provide:
157
+ ```ts
158
+ import {
159
+ AuthorityCoordinator,
160
+ ReplicaCoordinator,
161
+ defineReplication,
162
+ } from '@forgeax/engine-net';
163
+ ```
118
164
 
119
- | Capability | Status |
120
- |:--|:--|
121
- | WebSocket transport, Node listener, and browser/process E2E | See `@forgeax/engine-net-websocket` |
122
- | Gameplay/Snake surface | Not implemented |
123
- | Reconnect, ACK ledger, resync, packet-loss recovery, pending unresolved-reference queue | Not implemented |
124
- | Client prediction, interpolation, rollback, or lockstep | Not implemented |
125
- | Per-entity authority, ownership, or authority transfer | Not implemented |
126
- | Socket-specific retry or automatic recovery after a disconnect/fatal apply | Not implemented |
165
+ Immediate unresolved-reference rejection remains the one policy: a reference
166
+ must already exist or be created in the same data packet. No cross-packet
167
+ reference queue is retained.
168
+
169
+ `ReplicaCoordinator.lastPacketOutcome` is the explicit packet-order result:
170
+ `accepted`, `duplicate`, or `ignored-old-epoch`. A duplicate returns success
171
+ without World mutation; an old epoch returns success without reviving work; a
172
+ gap or invalid new baseline returns a structured error before mutation. The
173
+ coordinator never closes a transport. `NetSession` owns endpoint closure,
174
+ terminal failure, connector cancellation, and plugin teardown.
127
175
 
128
176
  ## Entry points
129
177
 
130
178
  | Export | Purpose |
131
179
  |:--|:--|
132
- | `NetEndpoint`, `PeerId` | Transport-only bytes and peer lifecycle contract |
133
- | `createMemoryEndpointPair` | Deterministic memory transport pair |
180
+ | `NetSessionState`, `SessionId`, `NetRecoverySnapshot` | Session identity, lifecycle, and observable accounting types |
181
+ | `NetRecoveryPolicy`, `DEFAULT_NET_RECOVERY_POLICY` | Finite deterministic recovery bounds |
182
+ | `NetEndpointConnector` | Realm-neutral replacement endpoint capability |
183
+ | `ReplicationPacket` | Single protocol-v2 packet/schema union |
184
+ | `encodeReplicationPacket`, `decodeReplicationPacket` | Prefix, schema, typed-data, and limit validation |
185
+ | `NetError`, `EndpointError` | Closed structured expected failures |
186
+ | `NetEndpoint`, `PeerId` | Transport-only bytes and peer lifecycle |
134
187
  | `NetSession`, `netPlugin` | World-facing session integration |
135
- | `defineReplication`, `ReplicationProfile` | Portable selected ECS replication contract |
188
+ | `defineReplication`, `ReplicationProfile` | Portable ECS replication contract |
136
189
  | `AuthorityCoordinator`, `ReplicaCoordinator` | Authority publication and atomic replica apply |
137
- | `NetEntityId` | Opaque cross-World entity identity |
138
- | `NetError`, `EndpointError` | Closed structured expected failures |
139
190
 
140
191
  ## Source map
141
192
 
142
- - Endpoint contract and memory transport: `src/endpoint/`
143
- - Session host seam: `src/session/`
144
- - Profile, codec, identity, authority, and replica: `src/replication/`
145
- - Convergence and rejection evidence: `__tests__/memory-*.integration.test.ts`, `__tests__/replica-fatal-stop.test.ts`
193
+ - Session policy and public lifecycle: `src/session/recovery.ts`
194
+ - Endpoint capability and memory transport: `src/endpoint/`
195
+ - Packet manifest, codec, and structured errors: `src/replication/`
196
+ - Deterministic public consumers: `__tests__/fixtures/`
package/dist/.tsbuildinfo CHANGED
@@ -1 +1 @@
1
- {"fileNames":["../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../types/dist/animation-target.d.ts","../../types/dist/asset-errors.d.ts","../../types/dist/result.d.ts","../../types/dist/asset-evidence.d.ts","../../types/dist/asset.d.ts","../../types/dist/asset-runtime.d.ts","../../types/dist/material/color-space.d.ts","../../types/dist/material/asset.d.ts","../../types/dist/vfx.d.ts","../../types/dist/handle.d.ts","../../types/dist/material/errors.d.ts","../../types/dist/material/resolve.d.ts","../../types/dist/material/index.d.ts","../../types/dist/asset-producer.d.ts","../../types/dist/catalog.d.ts","../../types/dist/runtime-scope.d.ts","../../types/dist/derive-paramschema.d.ts","../../types/dist/import.d.ts","../../types/dist/index.d.ts","../src/endpoint/errors.ts","../src/endpoint/endpoint.ts","../src/endpoint/memory.ts","../../ecs/dist/entity-handle.d.ts","../../ecs/dist/storage/column.d.ts","../../ecs/dist/component-schema.d.ts","../../ecs/dist/component.d.ts","../../ecs/dist/entity.d.ts","../../ecs/dist/errors/query-and-component-errors.d.ts","../../ecs/dist/errors/relationship-errors.d.ts","../../ecs/dist/errors/sprite-and-shared-errors.d.ts","../../ecs/dist/errors/validation-errors.d.ts","../../ecs/dist/world-internal.d.ts","../../ecs/dist/query/query.d.ts","../../ecs/dist/relationship-index.d.ts","../../ecs/dist/shared-ref-store.d.ts","../../ecs/dist/world-change-journal.d.ts","../../ecs/dist/storage/table.d.ts","../../ecs/dist/storage/archetype.d.ts","../../ecs/dist/storage/archetype-graph.d.ts","../../ecs/dist/storage/change-detection.d.ts","../../ecs/dist/time.d.ts","../../ecs/dist/schedule-token.d.ts","../../ecs/dist/world.d.ts","../../ecs/dist/commands.d.ts","../../ecs/dist/schedule.d.ts","../../ecs/dist/execution/shared-kernel.d.ts","../../ecs/dist/errors.d.ts","../../../node_modules/.pnpm/@deepseek-ai+cosmokit@1.8.2/node_modules/@deepseek-ai/cosmokit/lib/types/array.d.ts","../../../node_modules/.pnpm/@deepseek-ai+cosmokit@1.8.2/node_modules/@deepseek-ai/cosmokit/lib/types/types.d.ts","../../../node_modules/.pnpm/@deepseek-ai+cosmokit@1.8.2/node_modules/@deepseek-ai/cosmokit/lib/types/misc.d.ts","../../../node_modules/.pnpm/@deepseek-ai+cosmokit@1.8.2/node_modules/@deepseek-ai/cosmokit/lib/types/string.d.ts","../../../node_modules/.pnpm/@deepseek-ai+cosmokit@1.8.2/node_modules/@deepseek-ai/cosmokit/lib/types/time.d.ts","../../../node_modules/.pnpm/@deepseek-ai+cosmokit@1.8.2/node_modules/@deepseek-ai/cosmokit/lib/types/index.d.ts","../../../node_modules/.pnpm/@standard-schema+spec@1.1.0/node_modules/@standard-schema/spec/dist/index.d.ts","../../../node_modules/.pnpm/@deepseek-ai+cordis@4.0.1_@deepseek-ai+cordis-plugin-loader@1.0.2/node_modules/@deepseek-ai/cordis/lib/types/utils.d.ts","../../../node_modules/.pnpm/@deepseek-ai+cordis@4.0.1_@deepseek-ai+cordis-plugin-loader@1.0.2/node_modules/@deepseek-ai/cordis/lib/types/registry.d.ts","../../../node_modules/.pnpm/@deepseek-ai+cordis@4.0.1_@deepseek-ai+cordis-plugin-loader@1.0.2/node_modules/@deepseek-ai/cordis/lib/types/reflect.d.ts","../../../node_modules/.pnpm/@deepseek-ai+cordis@4.0.1_@deepseek-ai+cordis-plugin-loader@1.0.2/node_modules/@deepseek-ai/cordis/lib/types/fiber.d.ts","../../../node_modules/.pnpm/@deepseek-ai+cordis@4.0.1_@deepseek-ai+cordis-plugin-loader@1.0.2/node_modules/@deepseek-ai/cordis/lib/types/events.d.ts","../../../node_modules/.pnpm/@deepseek-ai+cordis@4.0.1_@deepseek-ai+cordis-plugin-loader@1.0.2/node_modules/@deepseek-ai/cordis/lib/types/logger.d.ts","../../../node_modules/.pnpm/@deepseek-ai+cordis@4.0.1_@deepseek-ai+cordis-plugin-loader@1.0.2/node_modules/@deepseek-ai/cordis/lib/types/context.d.ts","../../../node_modules/.pnpm/@deepseek-ai+cordis@4.0.1_@deepseek-ai+cordis-plugin-loader@1.0.2/node_modules/@deepseek-ai/cordis/lib/types/service.d.ts","../../../node_modules/.pnpm/@deepseek-ai+cordis@4.0.1_@deepseek-ai+cordis-plugin-loader@1.0.2/node_modules/@deepseek-ai/cordis/lib/types/index.d.ts","../../tool-runtime/dist/types.d.ts","../../tool-runtime/dist/errors.d.ts","../../tool-runtime/dist/artifacts.d.ts","../../tool-runtime/dist/capability.d.ts","../../tool-runtime/dist/carrier.d.ts","../../tool-runtime/dist/lease.d.ts","../../tool-runtime/dist/migration.d.ts","../../tool-runtime/dist/runtime.d.ts","../../tool-runtime/dist/snapshot.d.ts","../../tool-runtime/dist/timing.d.ts","../../tool-runtime/dist/transport.d.ts","../../tool-runtime/dist/index.d.ts","../../plugin/dist/capability.d.ts","../../../node_modules/.pnpm/@deepseek-ai+cordis-plugin-loader@1.0.2_patch_hash=6e77a3b82171afbdac249c0e31290cc06386_1a14a168fdebad14b739afc92f305e1c/node_modules/@deepseek-ai/cordis-plugin-loader/lib/types/internal.d.ts","../../../node_modules/.pnpm/@deepseek-ai+cordis-plugin-loader@1.0.2_patch_hash=6e77a3b82171afbdac249c0e31290cc06386_1a14a168fdebad14b739afc92f305e1c/node_modules/@deepseek-ai/cordis-plugin-loader/lib/types/config/tree.d.ts","../../../node_modules/.pnpm/@deepseek-ai+cordis-plugin-loader@1.0.2_patch_hash=6e77a3b82171afbdac249c0e31290cc06386_1a14a168fdebad14b739afc92f305e1c/node_modules/@deepseek-ai/cordis-plugin-loader/lib/types/config/group.d.ts","../../../node_modules/.pnpm/@deepseek-ai+cordis-plugin-loader@1.0.2_patch_hash=6e77a3b82171afbdac249c0e31290cc06386_1a14a168fdebad14b739afc92f305e1c/node_modules/@deepseek-ai/cordis-plugin-loader/lib/types/config/entry.d.ts","../../../node_modules/.pnpm/@deepseek-ai+cordis-plugin-loader@1.0.2_patch_hash=6e77a3b82171afbdac249c0e31290cc06386_1a14a168fdebad14b739afc92f305e1c/node_modules/@deepseek-ai/cordis-plugin-loader/lib/types/config/isolate.d.ts","../../../node_modules/.pnpm/@deepseek-ai+cordis-plugin-loader@1.0.2_patch_hash=6e77a3b82171afbdac249c0e31290cc06386_1a14a168fdebad14b739afc92f305e1c/node_modules/@deepseek-ai/cordis-plugin-loader/lib/types/config/utils.d.ts","../../../node_modules/.pnpm/@deepseek-ai+cordis-plugin-loader@1.0.2_patch_hash=6e77a3b82171afbdac249c0e31290cc06386_1a14a168fdebad14b739afc92f305e1c/node_modules/@deepseek-ai/cordis-plugin-loader/lib/types/index.d.ts","../../plugin/dist/tool-plugin.d.ts","../../plugin/dist/loader.d.ts","../../plugin/dist/index.d.ts","../../ecs/dist/plugin-service.d.ts","../../ecs/dist/index.d.ts","../../ecs/dist/externalization/index.d.ts","../src/replication/constants.ts","../src/replication/errors.ts","../src/replication/profile.ts","../src/replication/codec.ts","../src/replication/authority.ts","../src/replication/handshake.ts","../src/replication/replica.ts","../src/session/net-session.ts","../src/session/session-plugin.ts","../src/index.ts"],"fileIdsList":[[122,137,138,142,145],[122,137,139,140,142,145],[112,122,139,140,142,145],[112,122,138,139,140,142,145],[112,122,136,137,138,139,140,141,142,145],[112],[112,114,115,116,117,118,119],[112,115,116,117,118,119,120],[112,113,114,115,116,117,118,119,120],[114,115,116,117,118,119,120,121],[114,115,116,117,118,119,120],[122,142,145],[107,108,109,110,111],[78,82,85,91,102,106],[85],[78,82,83,84],[87,88,89,90,105],[92,101,104],[82,84,85,86,92,93,94,100,101,102,103,104,106,146],[102,145,146],[78,82,85,91,106],[82,85],[78,85,92,101,102,103,106],[78,106],[85,96,97,99],[85,96],[82,85,95,96,98],[82,83,85,99],[82],[78,82,85,91,92,93,94,99,100,101,104,105,106],[78,79],[80],[78,79,80],[79,80,81,150,151,152,153,154,155,156,157],[78,147,148,149,150,151,152],[78,149,150,151],[78,150,151],[78,85,147,148,150],[78,80,85,147,148,150,151,152],[78,79,80,150,151,153,155],[80,145,146,147,156],[122,134,142,145],[122,135,142,143,144,145],[122,134,135,142,143,145],[123,124],[123],[123,124,125,126,127,128,129,130,131,132,133],[123,127],[61,62,64],[61,62,64,78],[63],[64,73],[78],[61,73,74,75,78],[60,61,62,64,65,67,68,69,72,73,74,75,76,77],[65,66,78],[67],[66,67,70,71],[62,67,70],[73,74]],"fileInfos":[{"version":"bcd24271a113971ba9eb71ff8cb01bc6b0f872a85c23fdbe5d93065b375933cd","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f88bedbeb09c6f5a6645cb24c7c55f1aa22d19ae96c8e6959cbd8b85a707bc6","impliedFormat":1},{"version":"7fe93b39b810eadd916be8db880dd7f0f7012a5cc6ffb62de8f62a2117fa6f1f","impliedFormat":1},{"version":"bb0074cc08b84a2374af33d8bf044b80851ccc9e719a5e202eacf40db2c31600","impliedFormat":1},{"version":"1a7daebe4f45fb03d9ec53d60008fbf9ac45a697fdc89e4ce218bc94b94f94d6","impliedFormat":1},{"version":"f94b133a3cb14a288803be545ac2683e0d0ff6661bcd37e31aaaec54fc382aed","impliedFormat":1},{"version":"f59d0650799f8782fd74cf73c19223730c6d1b9198671b1c5b3a38e1188b5953","impliedFormat":1},{"version":"8a15b4607d9a499e2dbeed9ec0d3c0d7372c850b2d5f1fb259e8f6d41d468a84","impliedFormat":1},{"version":"26e0fe14baee4e127f4365d1ae0b276f400562e45e19e35fd2d4c296684715e6","impliedFormat":1},{"version":"d6b1eba8496bdd0eed6fc8a685768fe01b2da4a0388b5fe7df558290bffcf32f","affectsGlobalScope":true,"impliedFormat":1},{"version":"7f57fc4404ff020bc45b9c620aff2b40f700b95fe31164024c453a5e3c163c54","impliedFormat":1},{"version":"eadcffda2aa84802c73938e589b9e58248d74c59cb7fcbca6474e3435ac15504","affectsGlobalScope":true,"impliedFormat":1},{"version":"105ba8ff7ba746404fe1a2e189d1d3d2e0eb29a08c18dded791af02f29fb4711","affectsGlobalScope":true,"impliedFormat":1},{"version":"00343ca5b2e3d48fa5df1db6e32ea2a59afab09590274a6cccb1dbae82e60c7c","affectsGlobalScope":true,"impliedFormat":1},{"version":"ebd9f816d4002697cb2864bea1f0b70a103124e18a8cd9645eeccc09bdf80ab4","affectsGlobalScope":true,"impliedFormat":1},{"version":"2c1afac30a01772cd2a9a298a7ce7706b5892e447bb46bdbeef720f7b5da77ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"7b0225f483e4fa685625ebe43dd584bb7973bbd84e66a6ba7bbe175ee1048b4f","affectsGlobalScope":true,"impliedFormat":1},{"version":"c0a4b8ac6ce74679c1da2b3795296f5896e31c38e888469a8e0f99dc3305de60","affectsGlobalScope":true,"impliedFormat":1},{"version":"3084a7b5f569088e0146533a00830e206565de65cae2239509168b11434cd84f","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5079c53f0f141a0698faa903e76cb41cd664e3efb01cc17a5c46ec2eb0bef42","affectsGlobalScope":true,"impliedFormat":1},{"version":"32cafbc484dea6b0ab62cf8473182bbcb23020d70845b406f80b7526f38ae862","affectsGlobalScope":true,"impliedFormat":1},{"version":"fca4cdcb6d6c5ef18a869003d02c9f0fd95df8cfaf6eb431cd3376bc034cad36","affectsGlobalScope":true,"impliedFormat":1},{"version":"b93ec88115de9a9dc1b602291b85baf825c85666bf25985cc5f698073892b467","affectsGlobalScope":true,"impliedFormat":1},{"version":"f5c06dcc3fe849fcb297c247865a161f995cc29de7aa823afdd75aaaddc1419b","affectsGlobalScope":true,"impliedFormat":1},{"version":"b77e16112127a4b169ef0b8c3a4d730edf459c5f25fe52d5e436a6919206c4d7","affectsGlobalScope":true,"impliedFormat":1},{"version":"fbffd9337146eff822c7c00acbb78b01ea7ea23987f6c961eba689349e744f8c","affectsGlobalScope":true,"impliedFormat":1},{"version":"a995c0e49b721312f74fdfb89e4ba29bd9824c770bbb4021d74d2bf560e4c6bd","affectsGlobalScope":true,"impliedFormat":1},{"version":"c7b3542146734342e440a84b213384bfa188835537ddbda50d30766f0593aff9","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce6180fa19b1cccd07ee7f7dbb9a367ac19c0ed160573e4686425060b6df7f57","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f02e2476bccb9dbe21280d6090f0df17d2f66b74711489415a8aa4df73c9675","affectsGlobalScope":true,"impliedFormat":1},{"version":"45e3ab34c1c013c8ab2dc1ba4c80c780744b13b5676800ae2e3be27ae862c40c","affectsGlobalScope":true,"impliedFormat":1},{"version":"805c86f6cca8d7702a62a844856dbaa2a3fd2abef0536e65d48732441dde5b5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"e42e397f1a5a77994f0185fd1466520691456c772d06bf843e5084ceb879a0ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"f4c2b41f90c95b1c532ecc874bd3c111865793b23aebcc1c3cbbabcd5d76ffb0","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab26191cfad5b66afa11b8bf935ef1cd88fabfcb28d30b2dfa6fad877d050332","affectsGlobalScope":true,"impliedFormat":1},{"version":"2088bc26531e38fb05eedac2951480db5309f6be3fa4a08d2221abb0f5b4200d","affectsGlobalScope":true,"impliedFormat":1},{"version":"cb9d366c425fea79716a8fb3af0d78e6b22ebbab3bd64d25063b42dc9f531c1e","affectsGlobalScope":true,"impliedFormat":1},{"version":"500934a8089c26d57ebdb688fc9757389bb6207a3c8f0674d68efa900d2abb34","affectsGlobalScope":true,"impliedFormat":1},{"version":"689da16f46e647cef0d64b0def88910e818a5877ca5379ede156ca3afb780ac3","affectsGlobalScope":true,"impliedFormat":1},{"version":"bc21cc8b6fee4f4c2440d08035b7ea3c06b3511314c8bab6bef7a92de58a2593","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ca53d13d2957003abb47922a71866ba7cb2068f8d154877c596d63c359fed25","affectsGlobalScope":true,"impliedFormat":1},{"version":"54725f8c4df3d900cb4dac84b64689ce29548da0b4e9b7c2de61d41c79293611","affectsGlobalScope":true,"impliedFormat":1},{"version":"e5594bc3076ac29e6c1ebda77939bc4c8833de72f654b6e376862c0473199323","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f3eb332c2d73e729f3364fcc0c2b375e72a121e8157d25a82d67a138c83a95c","affectsGlobalScope":true,"impliedFormat":1},{"version":"6f4427f9642ce8d500970e4e69d1397f64072ab73b97e476b4002a646ac743b1","affectsGlobalScope":true,"impliedFormat":1},{"version":"48915f327cd1dea4d7bd358d9dc7732f58f9e1626a29cc0c05c8c692419d9bb7","affectsGlobalScope":true,"impliedFormat":1},{"version":"b7bf9377723203b5a6a4b920164df22d56a43f593269ba6ae1fdc97774b68855","affectsGlobalScope":true,"impliedFormat":1},{"version":"db9709688f82c9e5f65a119c64d835f906efe5f559d08b11642d56eb85b79357","affectsGlobalScope":true,"impliedFormat":1},{"version":"4b25b8c874acd1a4cf8444c3617e037d444d19080ac9f634b405583fd10ce1f7","affectsGlobalScope":true,"impliedFormat":1},{"version":"37be57d7c90cf1f8112ee2636a068d8fd181289f82b744160ec56a7dc158a9f5","affectsGlobalScope":true,"impliedFormat":1},{"version":"a917a49ac94cd26b754ab84e113369a75d1a47a710661d7cd25e961cc797065f","affectsGlobalScope":true,"impliedFormat":1},{"version":"6d3261badeb7843d157ef3e6f5d1427d0eeb0af0cf9df84a62cfd29fd47ac86e","affectsGlobalScope":true,"impliedFormat":1},{"version":"195daca651dde22f2167ac0d0a05e215308119a3100f5e6268e8317d05a92526","affectsGlobalScope":true,"impliedFormat":1},{"version":"8b11e4285cd2bb164a4dc09248bdec69e9842517db4ca47c1ba913011e44ff2f","affectsGlobalScope":true,"impliedFormat":1},{"version":"0508571a52475e245b02bc50fa1394065a0a3d05277fbf5120c3784b85651799","affectsGlobalScope":true,"impliedFormat":1},{"version":"8f9af488f510c3015af3cc8c267a9e9d96c4dd38a1fdff0e11dc5a544711415b","affectsGlobalScope":true,"impliedFormat":1},{"version":"fc611fea8d30ea72c6bbfb599c9b4d393ce22e2f5bfef2172534781e7d138104","affectsGlobalScope":true,"impliedFormat":1},{"version":"1ce14b81c5cc821994aa8ec1d42b220dd41b27fcc06373bce3958af7421b77d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3a048b3e9302ef9a34ef4ebb9aecfb28b66abb3bce577206a79fee559c230da","affectsGlobalScope":true,"impliedFormat":1},"89fe170d9a59f81cd9a9d95de3278f108ff91491810b2529cc0ffb502a57b6c0","0b4928041c807c01b33b1fa028236df635c52f7acff5a40f2c2d0d677b53428b","5ad2e5b8b17893d0eb1f11a1b6e8c03b17344be03a6a72a624cd38ab05fe4d5c","6a1e553079e654a1771463e9eeb98ea4f7bb4b6417a5237d4fdf9b546d49647f","7f11be86b9ac5c2cd5127cd9d40ccc7694c58868a3157692a153d452fc171525","8b52dd8be86f44f871db89a6c1f77f7585688d53141ff55b6c5fac3eb67b1241","6e3488ee1183ea915eb43f08aebc5f75e30be25aef1f678d1965324bdd7506e1","59ca967d9cb92088499ce15a1c389e55a39bb2cb905844439565d9f7d8b1ed5d","a318d8734523d9e750681e7b8e685ef817d4049c5612451f4e849da8b2b572a9","99440a4820b8621d65822e29b01afd8a5938ea94ebea634fdd31d32d3e735629","080e7748d9754ccaea8debbc933552c7976c1ef588f9642a6f07e5a4d139d43b","51342c51a9090c0bc8bae60c5ec1a0f46d6d44db84392f12a8cd46e6d8a9f617","ae777307a0baeb9b5d7ba18e6a029a54eb0b612b1491591dcedb020cc8d36f97","464bedfb5186f124eacfc18488346e51dcf1318f5135e1cbb429f917065e5360","ba3e7709ee018a58cbde4f26ba611f89938725472766bcb325c1ed2ce41e9d6f","459b3765e622008ed590474ae6b61ab55107a7b9529a28d05087a6fef51d7248","ce15f7fa66eb0ff73351db6a626a397eb441aa3572707c2a156897c646b2911d","cc943379ee4a2e1023e8ad62c136d1367906e58e29559195e92cbcc1b296e803","bcf485b4f161e232c90d00f14ec27128227cf1cbdf60b93949b47a9365461a1d",{"version":"5bff0d8a5482853a49624e98c6845a3e0cd49fa9a47807cd8641a7e53f4953d0","signature":"19a5feda138f012de02931a69ff011f7a222f7ad526d788c91409e701b9e9f93"},{"version":"5e44175c0f3d05abc12f8cc58196f798414900f92e987a6435b535ebd67ac0cb","signature":"c30dfad3c20fbef9f93e2dc2ddf79008060a78c9155e6a8c41ecc014eee810f8"},{"version":"c176f21d537e68019660ee77535f2a5ce8a2c96e24746d9d8d5e331ad926a7f5","signature":"4833496839e4d6f3b673a2dfd090c1e2eb7f36742f782806e687f7c7a7f24597"},"b866405af1564f0690ea323f070c87509bfeb2ba8afa7c49c255dbe13c176bf8","ce648e4449eb59292b997226148647ce9ca22bc9ff9062959f5f1fe6bfe06cd8","ce3d7045ddbf0f8c968829a4e32d5064af66cba795f8c8490afec9eb677a4f45","6192bdb56ca09fde8176590331c36f3eec2fd5fb3ad7dd7401727efb2398d7fb","0810b73622b33b91f89f5d0f8b1fc0b92841e6b751a84d2c005508c563748d16","9a1b69540b9533e337c81d470724ebb054a15b994a11b759a969367b28e81368","854cbb22c44beb0fe44a46f5428521a27e8b9fb645e6ce803a5622ff44ec74ce","dd6776bc5480997847e4d3c495951de5f0401667e1880b6176f57584c49aa401","5173f8a542f4174c378adfa9a98f92a38b07755e40a14ba139cb46f6986d64d6","2278fcff8ca72dc791b3907ac363bd7370ec04e38653827c14c5dbd3fc99e335","ee7cd212dd2cfef9efd135a36a577fa35cb4af99f7e6fd3023cc9d2f7c6f438b","0bc016e4da8853d924fbfde9820db77121de75539641d02012232396b09e7dd6","6647e4b21b341f971ef92cbdbeaee6a42d77b291a43cdc73b970b2ad505bb912","2f9485d1b731e3d1d373c2a2a20e3ad41b55616b9fa13bf261d2a058cd23149b","d9df407e562a322f63c0cc3f1bcea9c1cbec38d0c92b3f49169291f22374cb6c","ba9d80c5b60b7708524491768da7d44a796042529ed945678f45356beb2504f9","7689fbecdcdb8f32296c94fe5cf5edef16a9db673d696a2aaa40ad54470e5965","2c2b0520a51bf2f420ec605fa5e327ea7d96732cc97a373c167e12ad71dda21f","5f15c8ce469d7e9da71f9ca502370c454eb29629d6c2e548fa722d00700dfb46","ce5251c882968a3ce8fc6c2e3b2c3b739a740f614eebf066b73e8ee7c5dc4f63","2146d63418ecb6b19792c162b39fb1246f4bb28a7eefcdc3e589e880140834f2","8f373e06438a141f82616c5e0b171e0bf613cc95aa1e6b8b41a8ae520dd2948e","5c9cf44d7fea3b0c9876102abc143967f2e7015dd0a89edcbe28a49906621206","6db8a395b3c5f988123adb6cc84b6410a82a060c4acde2491012b9b44b32b300","4c44739d6f89fe451021d088397f7c9fe93c24fcf2de14019c5d011fb442082d",{"version":"fb6f2007d60e8b519a2ef0c5a27026ddfe06418ae6261c4eb0cb670cca5e1bc2","impliedFormat":99},{"version":"a48f1b69ec0b94b16c7ece2cf6d6003cc8d0c329538117c1c364d8525a100850","impliedFormat":99},{"version":"cd5713ac354e4869fdf837e12d24d3ae14fd9d94a5bb2d340df63b899b74e6ca","impliedFormat":99},{"version":"56210599298d6eca6285eab99c7e9333d7e275c3a73a7f401b3055e8d55c67e8","impliedFormat":99},{"version":"2845576622e416da9871e1f3c788ba41dc4f24eb764362b10eceeb0dbaa67208","impliedFormat":99},{"version":"f0421e04e2a5238754cf444bf2a56fe7e7a94a08c14c1f9d063ff51c85825823","impliedFormat":99},{"version":"bdd14f07b4eca0b4b5203b85b8dbc4d084c749fa590bee5ea613e1641dcd3b29","impliedFormat":99},{"version":"967b227fad024ba8a7c32127534089bce5adc800840b0288f44d41c4c849278e","impliedFormat":99},{"version":"ffd229492af3cb444c01e8e51a78dfdbed670940bac40dde083675d57d6984fc","impliedFormat":99},{"version":"57cdef8252cb041b4b646cc9e80dcb27d2180bb78fcf95761136d99be4079cb3","impliedFormat":99},{"version":"eb5fd8d19b0330da4dccb6cab3eae0304f056ac8fbd5bd9589ce48f0920bff78","impliedFormat":99},{"version":"db565a086622cbe616a950186dc90e82a74060864b9cd1d0f25285860daea9b4","impliedFormat":99},{"version":"71087395cc862f52662ab2629a0f3838f8f2aaf84eb40c97f4f4004f2fcbbed6","impliedFormat":99},{"version":"1e2e6cfcab26ae01d7f2dd1f78a1d25ddb7f3b2e27f50c9eb3b54ee206a87884","impliedFormat":99},{"version":"489ec23ef8dc0e869cf3d8d77a39ba83ab24e5e71362320f5662491b3dc5bd04","impliedFormat":99},{"version":"c93dd79fae382105510c69cc8eef95a96c8c43e50b47e16efa98a3f9e76f304b","impliedFormat":99},"4a5b020726455dd70acdf34ccc435273e6333cbb1a3ff08b6c451148c61b21fd","eb4d76417ff2ac49726b2efaf83e5b9924f7040151293d092e1ba38905479a02","3bae912eb95706a507e668cdfe378bb612c81b46323aae337689fabc00c3ae29","129aaa58f8b8ed74d8ef3ab03d3219f1b5a7b2902c4e111e080abdaf043686ef","c0a9cb9a3fe662b66cf598c1e2e6bc799b423699b81249bb62586acbc817b1e7","7d3bbcb2ef65e80202188d77d2e06f30c5d5d2603ca49cde35a6b298565247e9","f90ae41777b29281dcd4aa3fafb9d84c6b328860d639114a8c3fcf36beb23817","eadfe727983087acea4f17095671faba65ba5233acaed7213f140269d4528c9a","6bbe3b367d76debfa83ec26a13d0013f8dad891cddd8909a1fbdcdb719b064d9","9fec96292881b3ee00f9b34d757887223221db25d0fb534b521743e9be298d9f","fbd59a37ab9b1a3a21f2e968b539f91453e560507d9e92748f0623f7118306be","92523b7353d096bd2464e1611035b284803894aa952541021922567dfe9f15aa","49ca23a8e2de57d49da1b5b5aa2f0e0d341b4230a899efe1a6078d3779e2ea53",{"version":"be53d0833468d1d4de05770f4af2d3ec465b7ef5d5181b748997a02bf362ebd0","impliedFormat":99},{"version":"4920f950330f6a8a00a084beb7998de838a15cd54f5c774962b75614c15f8bed","impliedFormat":99},{"version":"e892ea4cf5fc5e5ab078f265c617efa3ab44a1cbd477f91fd29a27698c45eb77","impliedFormat":99},{"version":"6a33bd0416049803becacbdccd852c02f342eedce7dea12956d1176966269eeb","impliedFormat":99},{"version":"f74c6749e3944913d8002c1dd30523c520de426e9113d47b6730565318349154","impliedFormat":99},{"version":"ac5d5fd3358d3f7491400869278ea288df297b4fbc1ba035c7fd09c8df822358","impliedFormat":99},{"version":"0ce13f49afeb385ad05698a5420580c7381d758779b730c1992be7386578e1e7","impliedFormat":99},"8fa74a106f75c2eed4b65fa571e4e9b78e9a3a68f65b6c70261e87f7f47b931d","d82719b8e8a552f66dea370df85e00f9473537bb9c35dcb711d7f48cb5e707cd","a3c435d1e1eb110bb7382103c522bf44e9abb8b6883a493360fc5859db0aee10","1487f3b04d5e9ed9c5d823ff91bedbd7a8ce7a4c44b7ef16fa64a2d930a731e9","18dfdac2f4092e68e453e7a9da3d0e800e597e82fa567c49c2c7bb4c4dfb26ff","4e5baf651dd59df5450dac9570ee16563c88c4beb81003b7c8e78c99b669e635",{"version":"ab784c71757019de0bc00b17a9cfb65787a29be69bc7951eb758433f6d249dea","signature":"cf41ad14f06ed045a2d79f4485f69e76c75be91f43555167f1479d500a4fc0b7"},{"version":"7106ad131f2946087c66a4cde0f11d28b07c18fb0446ae05966a5d7f4a57c449","signature":"82dc124349dbfcf2d4a6087440c6c051ebf776c62af695368435e7eed1859bc1"},{"version":"58812586d581e20020db3ae3b603e802a8afc5f9670d0ca6902218f781eb85cc","signature":"f08d0b19f03d9e47f875b8eb541059e2f164814f9950037410038bf755efdce9"},{"version":"ee7d553a163c0df56fdecdfd52e44f6e6507669c85b265f742dff40403753762","signature":"e2c7999edec7e484a0160a0c9d1c8b19bf78f0a96212f0b84855b815f9deb80d"},{"version":"94118deb017cbaf61b255ae9620760db28a22222bcbe33ab1ae0c7fb71a55c80","signature":"4e4d72ff6bbd44a8e49d05f6af304e45407795f85216e3df418565d0855704e8"},{"version":"150f0228e4808225d53a5359b3839e5af904108fdfab55e36339bb00cce9f0da","signature":"a00a0fe104f3fee90c347b46e85aa47ae8ec1da46756e14fa0415b212175c20f"},{"version":"fba1ae8855ff7259558dab29fd6ab9533be9cdfcb2426657221411d3bf6b0c95","signature":"ba4d70a517900b89781b6a29ee1e9dfaca8f3bb4fcc8107eb70b95835248e689"},{"version":"1377d741864efa5dd27d9a970bde09232f8eb6698aaabf94b8c297885c9affbf","signature":"446883b627e33758207797285313fedcefaec5ea210ea0240e0dad0345ca28e1"},{"version":"7b8ae13c406d357c2b1485d4e693c63230609f72eba7a11c5ebaa5d75b481c13","signature":"8e1266662cfd530bf7a1d4f435befcf51519c9e1b37aa7f7a00ad0277e41754a"},{"version":"21e9147d82673b7682a080c2737fe6118341c25a7571acd80d530400021f8cbf","signature":"1bc2a9ef7e30cef2d9f3a4690c02b605831a15ec71af5b96388a87388204a0a9"}],"root":[[79,81],[149,158]],"options":{"composite":true,"declaration":true,"declarationMap":true,"emitDeclarationOnly":true,"exactOptionalPropertyTypes":true,"module":99,"noFallthroughCasesInSwitch":true,"noImplicitOverride":true,"noImplicitReturns":true,"noUncheckedIndexedAccess":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","rootDir":"../src","skipLibCheck":true,"strict":true,"target":9,"tsBuildInfoFile":"./.tsbuildinfo","useDefineForClassFields":true,"verbatimModuleSyntax":true},"referencedMap":[[139,1],[138,2],[140,3],[137,4],[142,5],[136,6],[120,7],[118,8],[117,9],[122,10],[119,11],[116,8],[115,9],[121,11],[114,12],[112,13],[103,14],[84,15],[85,16],[86,15],[106,17],[90,15],[105,18],[148,15],[147,19],[146,20],[92,21],[93,22],[104,23],[94,24],[98,25],[97,26],[99,27],[83,15],[96,28],[95,29],[102,30],[80,31],[79,32],[81,33],[158,34],[153,35],[152,36],[154,37],[151,38],[155,39],[156,40],[157,41],[135,42],[145,43],[144,44],[143,42],[125,45],[126,46],[124,46],[134,47],[129,46],[130,46],[131,46],[132,46],[133,48],[63,49],[65,50],[64,51],[74,52],[76,53],[69,53],[77,54],[78,55],[67,56],[66,57],[72,58],[71,59],[75,60]],"latestChangedDtsFile":"./index.d.ts","version":"6.0.3"}
1
+ {"fileNames":["../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../types/dist/animation-target.d.ts","../../types/dist/asset-errors.d.ts","../../types/dist/result.d.ts","../../types/dist/asset-evidence.d.ts","../../types/dist/asset.d.ts","../../types/dist/material/color-space.d.ts","../../types/dist/material/asset.d.ts","../../types/dist/vfx.d.ts","../../types/dist/asset-runtime.d.ts","../../types/dist/handle.d.ts","../../types/dist/material/errors.d.ts","../../types/dist/material/resolve.d.ts","../../types/dist/material/index.d.ts","../../types/dist/asset-producer.d.ts","../../types/dist/catalog.d.ts","../../types/dist/runtime-scope.d.ts","../../types/dist/derive-paramschema.d.ts","../../types/dist/import.d.ts","../../types/dist/index.d.ts","../src/endpoint/errors.ts","../src/endpoint/endpoint.ts","../src/endpoint/memory.ts","../../ecs/dist/entity-handle.d.ts","../../ecs/dist/storage/column.d.ts","../../ecs/dist/component-schema.d.ts","../../ecs/dist/component.d.ts","../../ecs/dist/entity.d.ts","../../ecs/dist/errors/query-and-component-errors.d.ts","../../ecs/dist/errors/relationship-errors.d.ts","../../ecs/dist/errors/sprite-and-shared-errors.d.ts","../../ecs/dist/errors/validation-errors.d.ts","../../ecs/dist/world-internal.d.ts","../../ecs/dist/query/query.d.ts","../../ecs/dist/relationship-index.d.ts","../../ecs/dist/shared-ref-store.d.ts","../../ecs/dist/world-change-journal.d.ts","../../ecs/dist/storage/table.d.ts","../../ecs/dist/storage/archetype.d.ts","../../ecs/dist/storage/archetype-graph.d.ts","../../ecs/dist/storage/change-detection.d.ts","../../ecs/dist/time.d.ts","../../ecs/dist/schedule-token.d.ts","../../ecs/dist/world.d.ts","../../ecs/dist/commands.d.ts","../../ecs/dist/schedule.d.ts","../../ecs/dist/execution/shared-kernel.d.ts","../../ecs/dist/errors.d.ts","../../../node_modules/.pnpm/@deepseek-ai+cosmokit@1.8.2/node_modules/@deepseek-ai/cosmokit/lib/types/array.d.ts","../../../node_modules/.pnpm/@deepseek-ai+cosmokit@1.8.2/node_modules/@deepseek-ai/cosmokit/lib/types/types.d.ts","../../../node_modules/.pnpm/@deepseek-ai+cosmokit@1.8.2/node_modules/@deepseek-ai/cosmokit/lib/types/misc.d.ts","../../../node_modules/.pnpm/@deepseek-ai+cosmokit@1.8.2/node_modules/@deepseek-ai/cosmokit/lib/types/string.d.ts","../../../node_modules/.pnpm/@deepseek-ai+cosmokit@1.8.2/node_modules/@deepseek-ai/cosmokit/lib/types/time.d.ts","../../../node_modules/.pnpm/@deepseek-ai+cosmokit@1.8.2/node_modules/@deepseek-ai/cosmokit/lib/types/index.d.ts","../../../node_modules/.pnpm/@standard-schema+spec@1.1.0/node_modules/@standard-schema/spec/dist/index.d.ts","../../../node_modules/.pnpm/@deepseek-ai+cordis@4.0.1_@deepseek-ai+cordis-plugin-loader@1.0.2/node_modules/@deepseek-ai/cordis/lib/types/utils.d.ts","../../../node_modules/.pnpm/@deepseek-ai+cordis@4.0.1_@deepseek-ai+cordis-plugin-loader@1.0.2/node_modules/@deepseek-ai/cordis/lib/types/registry.d.ts","../../../node_modules/.pnpm/@deepseek-ai+cordis@4.0.1_@deepseek-ai+cordis-plugin-loader@1.0.2/node_modules/@deepseek-ai/cordis/lib/types/reflect.d.ts","../../../node_modules/.pnpm/@deepseek-ai+cordis@4.0.1_@deepseek-ai+cordis-plugin-loader@1.0.2/node_modules/@deepseek-ai/cordis/lib/types/fiber.d.ts","../../../node_modules/.pnpm/@deepseek-ai+cordis@4.0.1_@deepseek-ai+cordis-plugin-loader@1.0.2/node_modules/@deepseek-ai/cordis/lib/types/events.d.ts","../../../node_modules/.pnpm/@deepseek-ai+cordis@4.0.1_@deepseek-ai+cordis-plugin-loader@1.0.2/node_modules/@deepseek-ai/cordis/lib/types/logger.d.ts","../../../node_modules/.pnpm/@deepseek-ai+cordis@4.0.1_@deepseek-ai+cordis-plugin-loader@1.0.2/node_modules/@deepseek-ai/cordis/lib/types/context.d.ts","../../../node_modules/.pnpm/@deepseek-ai+cordis@4.0.1_@deepseek-ai+cordis-plugin-loader@1.0.2/node_modules/@deepseek-ai/cordis/lib/types/service.d.ts","../../../node_modules/.pnpm/@deepseek-ai+cordis@4.0.1_@deepseek-ai+cordis-plugin-loader@1.0.2/node_modules/@deepseek-ai/cordis/lib/types/index.d.ts","../../tool-runtime/dist/types.d.ts","../../tool-runtime/dist/errors.d.ts","../../tool-runtime/dist/artifacts.d.ts","../../tool-runtime/dist/capability.d.ts","../../tool-runtime/dist/carrier.d.ts","../../tool-runtime/dist/lease.d.ts","../../tool-runtime/dist/migration.d.ts","../../tool-runtime/dist/runtime.d.ts","../../tool-runtime/dist/snapshot.d.ts","../../tool-runtime/dist/timing.d.ts","../../tool-runtime/dist/transport.d.ts","../../tool-runtime/dist/index.d.ts","../../plugin/dist/capability.d.ts","../../../node_modules/.pnpm/@deepseek-ai+cordis-plugin-loader@1.0.2_patch_hash=6e77a3b82171afbdac249c0e31290cc06386_1a14a168fdebad14b739afc92f305e1c/node_modules/@deepseek-ai/cordis-plugin-loader/lib/types/internal.d.ts","../../../node_modules/.pnpm/@deepseek-ai+cordis-plugin-loader@1.0.2_patch_hash=6e77a3b82171afbdac249c0e31290cc06386_1a14a168fdebad14b739afc92f305e1c/node_modules/@deepseek-ai/cordis-plugin-loader/lib/types/config/tree.d.ts","../../../node_modules/.pnpm/@deepseek-ai+cordis-plugin-loader@1.0.2_patch_hash=6e77a3b82171afbdac249c0e31290cc06386_1a14a168fdebad14b739afc92f305e1c/node_modules/@deepseek-ai/cordis-plugin-loader/lib/types/config/group.d.ts","../../../node_modules/.pnpm/@deepseek-ai+cordis-plugin-loader@1.0.2_patch_hash=6e77a3b82171afbdac249c0e31290cc06386_1a14a168fdebad14b739afc92f305e1c/node_modules/@deepseek-ai/cordis-plugin-loader/lib/types/config/entry.d.ts","../../../node_modules/.pnpm/@deepseek-ai+cordis-plugin-loader@1.0.2_patch_hash=6e77a3b82171afbdac249c0e31290cc06386_1a14a168fdebad14b739afc92f305e1c/node_modules/@deepseek-ai/cordis-plugin-loader/lib/types/config/isolate.d.ts","../../../node_modules/.pnpm/@deepseek-ai+cordis-plugin-loader@1.0.2_patch_hash=6e77a3b82171afbdac249c0e31290cc06386_1a14a168fdebad14b739afc92f305e1c/node_modules/@deepseek-ai/cordis-plugin-loader/lib/types/config/utils.d.ts","../../../node_modules/.pnpm/@deepseek-ai+cordis-plugin-loader@1.0.2_patch_hash=6e77a3b82171afbdac249c0e31290cc06386_1a14a168fdebad14b739afc92f305e1c/node_modules/@deepseek-ai/cordis-plugin-loader/lib/types/index.d.ts","../../plugin/dist/tool-plugin.d.ts","../../plugin/dist/loader.d.ts","../../plugin/dist/index.d.ts","../../ecs/dist/plugin-service.d.ts","../../ecs/dist/index.d.ts","../../ecs/dist/externalization/index.d.ts","../src/replication/errors.ts","../src/session/recovery.ts","../src/replication/constants.ts","../src/replication/profile.ts","../src/replication/protocol.ts","../src/replication/codec.ts","../src/replication/authority.ts","../src/replication/handshake.ts","../src/replication/replica.ts","../src/session/net-session.ts","../src/session/session-plugin.ts","../src/index.ts"],"fileIdsList":[[122,137,138,142,145],[122,137,139,140,142,145],[112,122,139,140,142,145],[112,122,138,139,140,142,145],[112,122,136,137,138,139,140,141,142,145],[112],[112,114,115,116,117,118,119],[112,115,116,117,118,119,120],[112,113,114,115,116,117,118,119,120],[114,115,116,117,118,119,120,121],[114,115,116,117,118,119,120],[122,142,145],[107,108,109,110,111],[78,82,85,91,102,106],[85],[78,82,83,84],[87,88,89,90,105],[92,101,104],[82,84,85,86,92,93,94,100,101,102,103,104,106,146],[102,145,146],[78,82,85,91,106],[82,85],[78,85,92,101,102,103,106],[78,106],[85,96,97,99],[85,96],[82,85,95,96,98],[82,83,85,99],[82],[78,82,85,91,92,93,94,99,100,101,104,105,106],[78,79],[80],[78,79,80],[79,80,81,149,150,151,152,153,154,155,156,157,158,159],[78,147,148,149,150,151,152,153,154],[78,149,151,152,153],[78,149,152],[78,85,147,148,149],[150],[78,80,85,147,148,149,152,153,154],[78,79,80,149,150,152,153,154,155,157],[78,79,80,149],[80,145,146,147,150,158],[122,134,142,145],[122,135,142,143,144,145],[122,134,135,142,143,145],[123,124],[123],[123,124,125,126,127,128,129,130,131,132,133],[123,127],[61,62,64],[61,62,64,78],[63],[62,64,73],[78],[61,73,74,75,78],[60,61,62,64,66,67,68,69,72,73,74,75,76,77],[65,78],[66],[65,66,70,71],[62,66,70],[73,74]],"fileInfos":[{"version":"bcd24271a113971ba9eb71ff8cb01bc6b0f872a85c23fdbe5d93065b375933cd","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f88bedbeb09c6f5a6645cb24c7c55f1aa22d19ae96c8e6959cbd8b85a707bc6","impliedFormat":1},{"version":"7fe93b39b810eadd916be8db880dd7f0f7012a5cc6ffb62de8f62a2117fa6f1f","impliedFormat":1},{"version":"bb0074cc08b84a2374af33d8bf044b80851ccc9e719a5e202eacf40db2c31600","impliedFormat":1},{"version":"1a7daebe4f45fb03d9ec53d60008fbf9ac45a697fdc89e4ce218bc94b94f94d6","impliedFormat":1},{"version":"f94b133a3cb14a288803be545ac2683e0d0ff6661bcd37e31aaaec54fc382aed","impliedFormat":1},{"version":"f59d0650799f8782fd74cf73c19223730c6d1b9198671b1c5b3a38e1188b5953","impliedFormat":1},{"version":"8a15b4607d9a499e2dbeed9ec0d3c0d7372c850b2d5f1fb259e8f6d41d468a84","impliedFormat":1},{"version":"26e0fe14baee4e127f4365d1ae0b276f400562e45e19e35fd2d4c296684715e6","impliedFormat":1},{"version":"d6b1eba8496bdd0eed6fc8a685768fe01b2da4a0388b5fe7df558290bffcf32f","affectsGlobalScope":true,"impliedFormat":1},{"version":"7f57fc4404ff020bc45b9c620aff2b40f700b95fe31164024c453a5e3c163c54","impliedFormat":1},{"version":"eadcffda2aa84802c73938e589b9e58248d74c59cb7fcbca6474e3435ac15504","affectsGlobalScope":true,"impliedFormat":1},{"version":"105ba8ff7ba746404fe1a2e189d1d3d2e0eb29a08c18dded791af02f29fb4711","affectsGlobalScope":true,"impliedFormat":1},{"version":"00343ca5b2e3d48fa5df1db6e32ea2a59afab09590274a6cccb1dbae82e60c7c","affectsGlobalScope":true,"impliedFormat":1},{"version":"ebd9f816d4002697cb2864bea1f0b70a103124e18a8cd9645eeccc09bdf80ab4","affectsGlobalScope":true,"impliedFormat":1},{"version":"2c1afac30a01772cd2a9a298a7ce7706b5892e447bb46bdbeef720f7b5da77ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"7b0225f483e4fa685625ebe43dd584bb7973bbd84e66a6ba7bbe175ee1048b4f","affectsGlobalScope":true,"impliedFormat":1},{"version":"c0a4b8ac6ce74679c1da2b3795296f5896e31c38e888469a8e0f99dc3305de60","affectsGlobalScope":true,"impliedFormat":1},{"version":"3084a7b5f569088e0146533a00830e206565de65cae2239509168b11434cd84f","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5079c53f0f141a0698faa903e76cb41cd664e3efb01cc17a5c46ec2eb0bef42","affectsGlobalScope":true,"impliedFormat":1},{"version":"32cafbc484dea6b0ab62cf8473182bbcb23020d70845b406f80b7526f38ae862","affectsGlobalScope":true,"impliedFormat":1},{"version":"fca4cdcb6d6c5ef18a869003d02c9f0fd95df8cfaf6eb431cd3376bc034cad36","affectsGlobalScope":true,"impliedFormat":1},{"version":"b93ec88115de9a9dc1b602291b85baf825c85666bf25985cc5f698073892b467","affectsGlobalScope":true,"impliedFormat":1},{"version":"f5c06dcc3fe849fcb297c247865a161f995cc29de7aa823afdd75aaaddc1419b","affectsGlobalScope":true,"impliedFormat":1},{"version":"b77e16112127a4b169ef0b8c3a4d730edf459c5f25fe52d5e436a6919206c4d7","affectsGlobalScope":true,"impliedFormat":1},{"version":"fbffd9337146eff822c7c00acbb78b01ea7ea23987f6c961eba689349e744f8c","affectsGlobalScope":true,"impliedFormat":1},{"version":"a995c0e49b721312f74fdfb89e4ba29bd9824c770bbb4021d74d2bf560e4c6bd","affectsGlobalScope":true,"impliedFormat":1},{"version":"c7b3542146734342e440a84b213384bfa188835537ddbda50d30766f0593aff9","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce6180fa19b1cccd07ee7f7dbb9a367ac19c0ed160573e4686425060b6df7f57","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f02e2476bccb9dbe21280d6090f0df17d2f66b74711489415a8aa4df73c9675","affectsGlobalScope":true,"impliedFormat":1},{"version":"45e3ab34c1c013c8ab2dc1ba4c80c780744b13b5676800ae2e3be27ae862c40c","affectsGlobalScope":true,"impliedFormat":1},{"version":"805c86f6cca8d7702a62a844856dbaa2a3fd2abef0536e65d48732441dde5b5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"e42e397f1a5a77994f0185fd1466520691456c772d06bf843e5084ceb879a0ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"f4c2b41f90c95b1c532ecc874bd3c111865793b23aebcc1c3cbbabcd5d76ffb0","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab26191cfad5b66afa11b8bf935ef1cd88fabfcb28d30b2dfa6fad877d050332","affectsGlobalScope":true,"impliedFormat":1},{"version":"2088bc26531e38fb05eedac2951480db5309f6be3fa4a08d2221abb0f5b4200d","affectsGlobalScope":true,"impliedFormat":1},{"version":"cb9d366c425fea79716a8fb3af0d78e6b22ebbab3bd64d25063b42dc9f531c1e","affectsGlobalScope":true,"impliedFormat":1},{"version":"500934a8089c26d57ebdb688fc9757389bb6207a3c8f0674d68efa900d2abb34","affectsGlobalScope":true,"impliedFormat":1},{"version":"689da16f46e647cef0d64b0def88910e818a5877ca5379ede156ca3afb780ac3","affectsGlobalScope":true,"impliedFormat":1},{"version":"bc21cc8b6fee4f4c2440d08035b7ea3c06b3511314c8bab6bef7a92de58a2593","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ca53d13d2957003abb47922a71866ba7cb2068f8d154877c596d63c359fed25","affectsGlobalScope":true,"impliedFormat":1},{"version":"54725f8c4df3d900cb4dac84b64689ce29548da0b4e9b7c2de61d41c79293611","affectsGlobalScope":true,"impliedFormat":1},{"version":"e5594bc3076ac29e6c1ebda77939bc4c8833de72f654b6e376862c0473199323","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f3eb332c2d73e729f3364fcc0c2b375e72a121e8157d25a82d67a138c83a95c","affectsGlobalScope":true,"impliedFormat":1},{"version":"6f4427f9642ce8d500970e4e69d1397f64072ab73b97e476b4002a646ac743b1","affectsGlobalScope":true,"impliedFormat":1},{"version":"48915f327cd1dea4d7bd358d9dc7732f58f9e1626a29cc0c05c8c692419d9bb7","affectsGlobalScope":true,"impliedFormat":1},{"version":"b7bf9377723203b5a6a4b920164df22d56a43f593269ba6ae1fdc97774b68855","affectsGlobalScope":true,"impliedFormat":1},{"version":"db9709688f82c9e5f65a119c64d835f906efe5f559d08b11642d56eb85b79357","affectsGlobalScope":true,"impliedFormat":1},{"version":"4b25b8c874acd1a4cf8444c3617e037d444d19080ac9f634b405583fd10ce1f7","affectsGlobalScope":true,"impliedFormat":1},{"version":"37be57d7c90cf1f8112ee2636a068d8fd181289f82b744160ec56a7dc158a9f5","affectsGlobalScope":true,"impliedFormat":1},{"version":"a917a49ac94cd26b754ab84e113369a75d1a47a710661d7cd25e961cc797065f","affectsGlobalScope":true,"impliedFormat":1},{"version":"6d3261badeb7843d157ef3e6f5d1427d0eeb0af0cf9df84a62cfd29fd47ac86e","affectsGlobalScope":true,"impliedFormat":1},{"version":"195daca651dde22f2167ac0d0a05e215308119a3100f5e6268e8317d05a92526","affectsGlobalScope":true,"impliedFormat":1},{"version":"8b11e4285cd2bb164a4dc09248bdec69e9842517db4ca47c1ba913011e44ff2f","affectsGlobalScope":true,"impliedFormat":1},{"version":"0508571a52475e245b02bc50fa1394065a0a3d05277fbf5120c3784b85651799","affectsGlobalScope":true,"impliedFormat":1},{"version":"8f9af488f510c3015af3cc8c267a9e9d96c4dd38a1fdff0e11dc5a544711415b","affectsGlobalScope":true,"impliedFormat":1},{"version":"fc611fea8d30ea72c6bbfb599c9b4d393ce22e2f5bfef2172534781e7d138104","affectsGlobalScope":true,"impliedFormat":1},{"version":"1ce14b81c5cc821994aa8ec1d42b220dd41b27fcc06373bce3958af7421b77d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3a048b3e9302ef9a34ef4ebb9aecfb28b66abb3bce577206a79fee559c230da","affectsGlobalScope":true,"impliedFormat":1},"89fe170d9a59f81cd9a9d95de3278f108ff91491810b2529cc0ffb502a57b6c0","0b4928041c807c01b33b1fa028236df635c52f7acff5a40f2c2d0d677b53428b","5ad2e5b8b17893d0eb1f11a1b6e8c03b17344be03a6a72a624cd38ab05fe4d5c","6a1e553079e654a1771463e9eeb98ea4f7bb4b6417a5237d4fdf9b546d49647f","7f11be86b9ac5c2cd5127cd9d40ccc7694c58868a3157692a153d452fc171525","6e3488ee1183ea915eb43f08aebc5f75e30be25aef1f678d1965324bdd7506e1","c71859d3170823cd9ff0e35c6ebaa44435bfac2737e31cb55d18477abc30013e","a318d8734523d9e750681e7b8e685ef817d4049c5612451f4e849da8b2b572a9","8b52dd8be86f44f871db89a6c1f77f7585688d53141ff55b6c5fac3eb67b1241","beae2d03867dde9fdf8da461c7e7e84da71612842422d4b482ab1c2a15fe6b12","080e7748d9754ccaea8debbc933552c7976c1ef588f9642a6f07e5a4d139d43b","51342c51a9090c0bc8bae60c5ec1a0f46d6d44db84392f12a8cd46e6d8a9f617","ae777307a0baeb9b5d7ba18e6a029a54eb0b612b1491591dcedb020cc8d36f97","d7ba738e316b7baed10ca49cc156b57b8c973b747bec6612e62a925e9f7f33a4","1d5292578fcf0329a43ef19fe2481d7d1cde75e75610019a7897c70dcfff0b31","459b3765e622008ed590474ae6b61ab55107a7b9529a28d05087a6fef51d7248","ce15f7fa66eb0ff73351db6a626a397eb441aa3572707c2a156897c646b2911d","d9c64d02dfe3a9c74da35fdbcc645cf4e8d4ca0f4162ec312de51474103ac3a7","826bb4db9c934b7ae0cb5edb9fde0a73a2d54df89fd8cb8abb0184e6f66727a0",{"version":"5bff0d8a5482853a49624e98c6845a3e0cd49fa9a47807cd8641a7e53f4953d0","signature":"19a5feda138f012de02931a69ff011f7a222f7ad526d788c91409e701b9e9f93"},{"version":"168111ac4a46869356548dfb8787c5681f92b2fdb69b9d0f803bac4432edf802","signature":"dc8f5b4402bb91689c5b5295bb1fcb986f6c60b82c59afa3dad251e6cac7a209"},{"version":"8954741ef27dbfeb0f49bfc70e7bf744411a7e832702d7cc8d5bb5cf1e56606e","signature":"007402a77f96612c199be0b8f871c1e29054720149d90015b083fe92654027d3"},"b866405af1564f0690ea323f070c87509bfeb2ba8afa7c49c255dbe13c176bf8","ce648e4449eb59292b997226148647ce9ca22bc9ff9062959f5f1fe6bfe06cd8","ce3d7045ddbf0f8c968829a4e32d5064af66cba795f8c8490afec9eb677a4f45","6192bdb56ca09fde8176590331c36f3eec2fd5fb3ad7dd7401727efb2398d7fb","0810b73622b33b91f89f5d0f8b1fc0b92841e6b751a84d2c005508c563748d16","9a1b69540b9533e337c81d470724ebb054a15b994a11b759a969367b28e81368","854cbb22c44beb0fe44a46f5428521a27e8b9fb645e6ce803a5622ff44ec74ce","dd6776bc5480997847e4d3c495951de5f0401667e1880b6176f57584c49aa401","21f4110077118497558bb4ca8462c9cd1dfd391e6c1608bcac4b437a4ed77d7d","2278fcff8ca72dc791b3907ac363bd7370ec04e38653827c14c5dbd3fc99e335","ee7cd212dd2cfef9efd135a36a577fa35cb4af99f7e6fd3023cc9d2f7c6f438b","0bc016e4da8853d924fbfde9820db77121de75539641d02012232396b09e7dd6","6647e4b21b341f971ef92cbdbeaee6a42d77b291a43cdc73b970b2ad505bb912","2f9485d1b731e3d1d373c2a2a20e3ad41b55616b9fa13bf261d2a058cd23149b","d9df407e562a322f63c0cc3f1bcea9c1cbec38d0c92b3f49169291f22374cb6c","ba9d80c5b60b7708524491768da7d44a796042529ed945678f45356beb2504f9","7689fbecdcdb8f32296c94fe5cf5edef16a9db673d696a2aaa40ad54470e5965","2c2b0520a51bf2f420ec605fa5e327ea7d96732cc97a373c167e12ad71dda21f","5f15c8ce469d7e9da71f9ca502370c454eb29629d6c2e548fa722d00700dfb46","ce5251c882968a3ce8fc6c2e3b2c3b739a740f614eebf066b73e8ee7c5dc4f63","33652e868da0fef68b0f8622283a014fe66a21e409f4000e77778d9dc3edc8af","8f373e06438a141f82616c5e0b171e0bf613cc95aa1e6b8b41a8ae520dd2948e","5c9cf44d7fea3b0c9876102abc143967f2e7015dd0a89edcbe28a49906621206","6db8a395b3c5f988123adb6cc84b6410a82a060c4acde2491012b9b44b32b300","28d3e288a396ce5654f673fc8bc2330edb14e52dd33d75a3e999ecf68197de1a",{"version":"fb6f2007d60e8b519a2ef0c5a27026ddfe06418ae6261c4eb0cb670cca5e1bc2","impliedFormat":99},{"version":"a48f1b69ec0b94b16c7ece2cf6d6003cc8d0c329538117c1c364d8525a100850","impliedFormat":99},{"version":"cd5713ac354e4869fdf837e12d24d3ae14fd9d94a5bb2d340df63b899b74e6ca","impliedFormat":99},{"version":"56210599298d6eca6285eab99c7e9333d7e275c3a73a7f401b3055e8d55c67e8","impliedFormat":99},{"version":"2845576622e416da9871e1f3c788ba41dc4f24eb764362b10eceeb0dbaa67208","impliedFormat":99},{"version":"f0421e04e2a5238754cf444bf2a56fe7e7a94a08c14c1f9d063ff51c85825823","impliedFormat":99},{"version":"bdd14f07b4eca0b4b5203b85b8dbc4d084c749fa590bee5ea613e1641dcd3b29","impliedFormat":99},{"version":"967b227fad024ba8a7c32127534089bce5adc800840b0288f44d41c4c849278e","impliedFormat":99},{"version":"ffd229492af3cb444c01e8e51a78dfdbed670940bac40dde083675d57d6984fc","impliedFormat":99},{"version":"57cdef8252cb041b4b646cc9e80dcb27d2180bb78fcf95761136d99be4079cb3","impliedFormat":99},{"version":"eb5fd8d19b0330da4dccb6cab3eae0304f056ac8fbd5bd9589ce48f0920bff78","impliedFormat":99},{"version":"db565a086622cbe616a950186dc90e82a74060864b9cd1d0f25285860daea9b4","impliedFormat":99},{"version":"71087395cc862f52662ab2629a0f3838f8f2aaf84eb40c97f4f4004f2fcbbed6","impliedFormat":99},{"version":"1e2e6cfcab26ae01d7f2dd1f78a1d25ddb7f3b2e27f50c9eb3b54ee206a87884","impliedFormat":99},{"version":"489ec23ef8dc0e869cf3d8d77a39ba83ab24e5e71362320f5662491b3dc5bd04","impliedFormat":99},{"version":"c93dd79fae382105510c69cc8eef95a96c8c43e50b47e16efa98a3f9e76f304b","impliedFormat":99},"4a5b020726455dd70acdf34ccc435273e6333cbb1a3ff08b6c451148c61b21fd","eb4d76417ff2ac49726b2efaf83e5b9924f7040151293d092e1ba38905479a02","3bae912eb95706a507e668cdfe378bb612c81b46323aae337689fabc00c3ae29","129aaa58f8b8ed74d8ef3ab03d3219f1b5a7b2902c4e111e080abdaf043686ef","c0a9cb9a3fe662b66cf598c1e2e6bc799b423699b81249bb62586acbc817b1e7","7d3bbcb2ef65e80202188d77d2e06f30c5d5d2603ca49cde35a6b298565247e9","f90ae41777b29281dcd4aa3fafb9d84c6b328860d639114a8c3fcf36beb23817","eadfe727983087acea4f17095671faba65ba5233acaed7213f140269d4528c9a","6bbe3b367d76debfa83ec26a13d0013f8dad891cddd8909a1fbdcdb719b064d9","9fec96292881b3ee00f9b34d757887223221db25d0fb534b521743e9be298d9f","fbd59a37ab9b1a3a21f2e968b539f91453e560507d9e92748f0623f7118306be","92523b7353d096bd2464e1611035b284803894aa952541021922567dfe9f15aa","49ca23a8e2de57d49da1b5b5aa2f0e0d341b4230a899efe1a6078d3779e2ea53",{"version":"be53d0833468d1d4de05770f4af2d3ec465b7ef5d5181b748997a02bf362ebd0","impliedFormat":99},{"version":"4920f950330f6a8a00a084beb7998de838a15cd54f5c774962b75614c15f8bed","impliedFormat":99},{"version":"e892ea4cf5fc5e5ab078f265c617efa3ab44a1cbd477f91fd29a27698c45eb77","impliedFormat":99},{"version":"6a33bd0416049803becacbdccd852c02f342eedce7dea12956d1176966269eeb","impliedFormat":99},{"version":"f74c6749e3944913d8002c1dd30523c520de426e9113d47b6730565318349154","impliedFormat":99},{"version":"ac5d5fd3358d3f7491400869278ea288df297b4fbc1ba035c7fd09c8df822358","impliedFormat":99},{"version":"0ce13f49afeb385ad05698a5420580c7381d758779b730c1992be7386578e1e7","impliedFormat":99},"8fa74a106f75c2eed4b65fa571e4e9b78e9a3a68f65b6c70261e87f7f47b931d","d82719b8e8a552f66dea370df85e00f9473537bb9c35dcb711d7f48cb5e707cd","a3c435d1e1eb110bb7382103c522bf44e9abb8b6883a493360fc5859db0aee10","1487f3b04d5e9ed9c5d823ff91bedbd7a8ce7a4c44b7ef16fa64a2d930a731e9","18dfdac2f4092e68e453e7a9da3d0e800e597e82fa567c49c2c7bb4c4dfb26ff","4e5baf651dd59df5450dac9570ee16563c88c4beb81003b7c8e78c99b669e635",{"version":"ae34ca69874cb86ca74186e895b5e5e35981ade27a0b7280bf9d9a76ab4ccc70","signature":"4658842edfd2ef03e05d86d6b1cc326a7917662441ab13144c5e540032020016"},{"version":"677fc8fe63d63270fe13155902dc7fe36b6689ba106cc265777e147146a255f5","signature":"b5db2adde63453a3d336ee957fd5f0f6fef08df3dcd45e2667d6f8a8820d4acb"},{"version":"e497910cda9dcacb58c02fe459802e5f7d6ed449924b05d1a17c73837da8c43a","signature":"f881245427f593506eaf01f2435eb5ab1ee58ac12c463dc4d3790daea125181c"},{"version":"58812586d581e20020db3ae3b603e802a8afc5f9670d0ca6902218f781eb85cc","signature":"f08d0b19f03d9e47f875b8eb541059e2f164814f9950037410038bf755efdce9"},{"version":"103218e78b649113d0491381c53b13a0e357308a0a403236493edf79cf86f1f6","signature":"232a3aad4a002dce43cac2f523d64813356c37f81784f6465f099f309d86bd1f"},{"version":"9cef4a8d0b8508f5409ef4409d17f9d2892303ea36449b254d98acd0a645871c","signature":"94fec7b437d0bdf8c4130f5df8a6be7a3e06c1d226ee68291215726d430747a4"},{"version":"641b84306c920ac362e2dadacfe7c35c0bd3494363318d8b15e44c8cda5827aa","signature":"6e22d82aede9f9f7a3a140c850c8480ef8dadde110494488f6d586da3b5ab3a9"},{"version":"150f0228e4808225d53a5359b3839e5af904108fdfab55e36339bb00cce9f0da","signature":"a00a0fe104f3fee90c347b46e85aa47ae8ec1da46756e14fa0415b212175c20f"},{"version":"c2340e2d655db3a9cedc697e38f622515a85f47dc62142dba7cfdee9162db3e7","signature":"781bfe5472bd44decf9baaee42779a89d98e93693565e21f41848fb971d8542a"},{"version":"3c5e3746eb1abdc4322cd1a3afcf49fad9e5082e32e26e762df3d34529e5b636","signature":"3b95c40619e80c10d6e6d3795f134062ba8cc19830129433b51df4fc3a5b5b2f"},{"version":"db132fe345f55b0424de8956d6dd7babf52e6ba50aeb0a0011567db47a3c8d72","signature":"33962dd6939c75ce57d539da54661f6298146565ab781875bb81f209a82aaa52"},{"version":"2ebc8262b202e8c2897866175e91b9ed1bba8b21340fc73720cb2c12c1ce3e80","signature":"d616c3c52dc5ccec25ed4070af2342ecf62b399ca64cd9b8cbb3abc147a4bc82"}],"root":[[79,81],[149,160]],"options":{"composite":true,"declaration":true,"declarationMap":true,"emitDeclarationOnly":true,"exactOptionalPropertyTypes":true,"module":99,"noFallthroughCasesInSwitch":true,"noImplicitOverride":true,"noImplicitReturns":true,"noUncheckedIndexedAccess":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","rootDir":"../src","skipLibCheck":true,"strict":true,"target":9,"tsBuildInfoFile":"./.tsbuildinfo","useDefineForClassFields":true,"verbatimModuleSyntax":true},"referencedMap":[[139,1],[138,2],[140,3],[137,4],[142,5],[136,6],[120,7],[118,8],[117,9],[122,10],[119,11],[116,8],[115,9],[121,11],[114,12],[112,13],[103,14],[84,15],[85,16],[86,15],[106,17],[90,15],[105,18],[148,15],[147,19],[146,20],[92,21],[93,22],[104,23],[94,24],[98,25],[97,26],[99,27],[83,15],[96,28],[95,29],[102,30],[80,31],[79,32],[81,33],[160,34],[155,35],[154,36],[156,37],[152,38],[153,39],[157,40],[158,41],[150,42],[159,43],[135,44],[145,45],[144,46],[143,44],[125,47],[126,48],[124,48],[134,49],[129,48],[130,48],[131,48],[132,48],[133,50],[63,51],[68,52],[64,53],[74,54],[76,55],[69,55],[77,56],[78,57],[66,58],[65,59],[72,60],[71,61],[75,62]],"latestChangedDtsFile":"./index.d.ts","version":"6.0.3"}
@@ -32,5 +32,12 @@ export interface NetEndpoint {
32
32
  /** Close the endpoint. No further send/poll should succeed after close. */
33
33
  close(): Result<void, EndpointError>;
34
34
  }
35
+ /**
36
+ * Realm-neutral capability for creating a replacement endpoint.
37
+ * Session policy, retry bounds, and replication semantics remain in net.
38
+ */
39
+ export interface NetEndpointConnector {
40
+ connect(signal: AbortSignal): Promise<Result<NetEndpoint, EndpointError>>;
41
+ }
35
42
  export {};
36
43
  //# sourceMappingURL=endpoint.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"endpoint.d.ts","sourceRoot":"","sources":["../../src/endpoint/endpoint.ts"],"names":[],"mappings":"AAOA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,uBAAuB,CAAC;AACpD,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAM9C,OAAO,CAAC,MAAM,aAAa,EAAE,OAAO,MAAM,CAAC;AAE3C,kEAAkE;AAClE,MAAM,MAAM,MAAM,GAAG,MAAM,GAAG;IAAE,QAAQ,CAAC,CAAC,aAAa,CAAC,EAAE,IAAI,CAAA;CAAE,CAAC;AAMjE,2DAA2D;AAC3D,MAAM,MAAM,aAAa,GACrB;IAAE,QAAQ,CAAC,IAAI,EAAE,gBAAgB,CAAC;IAAC,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAA;CAAE,GAC5D;IAAE,QAAQ,CAAC,IAAI,EAAE,mBAAmB,CAAC;IAAC,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAA;CAAE,GAC/D;IAAE,QAAQ,CAAC,IAAI,EAAE,SAAS,CAAC;IAAC,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAC;IAAC,QAAQ,CAAC,IAAI,EAAE,UAAU,CAAA;CAAE,CAAC;AAMrF;;;;;;GAMG;AACH,MAAM,WAAW,WAAW;IAC1B,6FAA6F;IAC7F,IAAI,IAAI,aAAa,EAAE,CAAC;IAExB,wFAAwF;IACxF,IAAI,CAAC,MAAM,EAAE,MAAM,EAAE,IAAI,EAAE,UAAU,GAAG,MAAM,CAAC,IAAI,EAAE,aAAa,CAAC,CAAC;IAEpE,2EAA2E;IAC3E,KAAK,IAAI,MAAM,CAAC,IAAI,EAAE,aAAa,CAAC,CAAC;CACtC"}
1
+ {"version":3,"file":"endpoint.d.ts","sourceRoot":"","sources":["../../src/endpoint/endpoint.ts"],"names":[],"mappings":"AAOA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,uBAAuB,CAAC;AACpD,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAM9C,OAAO,CAAC,MAAM,aAAa,EAAE,OAAO,MAAM,CAAC;AAE3C,kEAAkE;AAClE,MAAM,MAAM,MAAM,GAAG,MAAM,GAAG;IAAE,QAAQ,CAAC,CAAC,aAAa,CAAC,EAAE,IAAI,CAAA;CAAE,CAAC;AAMjE,2DAA2D;AAC3D,MAAM,MAAM,aAAa,GACrB;IAAE,QAAQ,CAAC,IAAI,EAAE,gBAAgB,CAAC;IAAC,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAA;CAAE,GAC5D;IAAE,QAAQ,CAAC,IAAI,EAAE,mBAAmB,CAAC;IAAC,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAA;CAAE,GAC/D;IAAE,QAAQ,CAAC,IAAI,EAAE,SAAS,CAAC;IAAC,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAC;IAAC,QAAQ,CAAC,IAAI,EAAE,UAAU,CAAA;CAAE,CAAC;AAMrF;;;;;;GAMG;AACH,MAAM,WAAW,WAAW;IAC1B,6FAA6F;IAC7F,IAAI,IAAI,aAAa,EAAE,CAAC;IAExB,wFAAwF;IACxF,IAAI,CAAC,MAAM,EAAE,MAAM,EAAE,IAAI,EAAE,UAAU,GAAG,MAAM,CAAC,IAAI,EAAE,aAAa,CAAC,CAAC;IAEpE,2EAA2E;IAC3E,KAAK,IAAI,MAAM,CAAC,IAAI,EAAE,aAAa,CAAC,CAAC;CACtC;AAED;;;GAGG;AACH,MAAM,WAAW,oBAAoB;IACnC,OAAO,CAAC,MAAM,EAAE,WAAW,GAAG,OAAO,CAAC,MAAM,CAAC,WAAW,EAAE,aAAa,CAAC,CAAC,CAAC;CAC3E"}
@@ -1,4 +1,4 @@
1
- import type { NetEndpoint } from './endpoint';
1
+ import type { NetEndpoint, NetEndpointConnector } from './endpoint';
2
2
  export declare function createMemoryEndpointPair(): [NetEndpoint, NetEndpoint];
3
3
  export interface MemoryFaultController {
4
4
  delayNextDelivery(ms: number): void;
@@ -10,4 +10,6 @@ export declare function createMemoryEndpointPairWithController(): {
10
10
  readonly endpoints: [NetEndpoint, NetEndpoint];
11
11
  readonly controller: MemoryFaultController;
12
12
  };
13
+ /** Create a replaceable, realm-neutral connector over a deterministic endpoint factory. */
14
+ export declare function createMemoryEndpointConnector(createEndpoint: () => NetEndpoint): NetEndpointConnector;
13
15
  //# sourceMappingURL=memory.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"memory.d.ts","sourceRoot":"","sources":["../../src/endpoint/memory.ts"],"names":[],"mappings":"AAMA,OAAO,KAAK,EAAiB,WAAW,EAAU,MAAM,YAAY,CAAC;AA4HrE,wBAAgB,wBAAwB,IAAI,CAAC,WAAW,EAAE,WAAW,CAAC,CAUrE;AAED,MAAM,WAAW,qBAAqB;IACpC,iBAAiB,CAAC,EAAE,EAAE,MAAM,GAAG,IAAI,CAAC;IACpC,qBAAqB,IAAI,IAAI,CAAC;IAC9B,mBAAmB,IAAI,IAAI,CAAC;IAC5B,cAAc,CAAC,QAAQ,EAAE,WAAW,GAAG,IAAI,CAAC;CAC7C;AAED,wBAAgB,sCAAsC,IAAI;IACxD,QAAQ,CAAC,SAAS,EAAE,CAAC,WAAW,EAAE,WAAW,CAAC,CAAC;IAC/C,QAAQ,CAAC,UAAU,EAAE,qBAAqB,CAAC;CAC5C,CAmBA"}
1
+ {"version":3,"file":"memory.d.ts","sourceRoot":"","sources":["../../src/endpoint/memory.ts"],"names":[],"mappings":"AAMA,OAAO,KAAK,EAAiB,WAAW,EAAE,oBAAoB,EAAU,MAAM,YAAY,CAAC;AA4H3F,wBAAgB,wBAAwB,IAAI,CAAC,WAAW,EAAE,WAAW,CAAC,CAUrE;AAED,MAAM,WAAW,qBAAqB;IACpC,iBAAiB,CAAC,EAAE,EAAE,MAAM,GAAG,IAAI,CAAC;IACpC,qBAAqB,IAAI,IAAI,CAAC;IAC9B,mBAAmB,IAAI,IAAI,CAAC;IAC5B,cAAc,CAAC,QAAQ,EAAE,WAAW,GAAG,IAAI,CAAC;CAC7C;AAED,wBAAgB,sCAAsC,IAAI;IACxD,QAAQ,CAAC,SAAS,EAAE,CAAC,WAAW,EAAE,WAAW,CAAC,CAAC;IAC/C,QAAQ,CAAC,UAAU,EAAE,qBAAqB,CAAC;CAC5C,CAmBA;AAED,2FAA2F;AAC3F,wBAAgB,6BAA6B,CAC3C,cAAc,EAAE,MAAM,WAAW,GAChC,oBAAoB,CAiBtB"}
package/dist/index.d.ts CHANGED
@@ -1,17 +1,21 @@
1
- export type { EndpointEvent, NetEndpoint, PeerId } from './endpoint/endpoint';
1
+ export type { EndpointEvent, NetEndpoint, NetEndpointConnector, PeerId } from './endpoint/endpoint';
2
2
  export type { EndpointErrorCode, EndpointErrorDetail } from './endpoint/errors';
3
3
  export { ENDPOINT_ERROR_HINTS, ENDPOINT_EXPECTED, EndpointError, isEndpointError, } from './endpoint/errors';
4
4
  export type { MemoryFaultController } from './endpoint/memory';
5
- export { createMemoryEndpointPair, createMemoryEndpointPairWithController, } from './endpoint/memory';
5
+ export { createMemoryEndpointConnector, createMemoryEndpointPair, createMemoryEndpointPairWithController, } from './endpoint/memory';
6
6
  export { AuthorityCoordinator, createAuthorityCoordinator } from './replication/authority';
7
- export type { NetEntityId, ReplicationBatch, ReplicationComponentRecord, ReplicationEntityRecord, } from './replication/codec';
8
- export { NetError, type NetErrorCode, type NetErrorDetail } from './replication/errors';
7
+ export { decodeReplicationPacket, encodeReplicationPacket } from './replication/codec';
8
+ export { REPLICATION_PROTOCOL_PREFIX, REPLICATION_PROTOCOL_VERSION, } from './replication/constants';
9
+ export { NetError, type NetErrorCode, type NetErrorDetail, type NetErrorDetailByCode, type NetErrorDetailFor, } from './replication/errors';
9
10
  export { validateHandshake } from './replication/handshake';
10
11
  export type { DefineReplicationOptions, ReplicationLimits, ReplicationProfile, } from './replication/profile';
11
- export { defineReplication } from './replication/profile';
12
- export { applyReplicaBatch, createReplicaCoordinator, decodeAndApplyReplicaBatch, ReplicaCoordinator, } from './replication/replica';
13
- export type { NetSessionConfig, PeerSnapshot, RawMessage } from './session/net-session';
12
+ export { DEFAULT_REPLICATION_LIMITS, defineReplication } from './replication/profile';
13
+ export type { ReplicationAckPacket, ReplicationBaselinePacket, ReplicationComponentRecord, ReplicationDataPacket, ReplicationDataPacketBase, ReplicationDataPacketKind, ReplicationDeltaPacket, ReplicationEntityKind, ReplicationEntityRecord, ReplicationPacket, ReplicationPacketKind, ReplicationRejectionPacket, ReplicationSessionPacket, } from './replication/protocol';
14
+ export { applyReplicationPacket, createReplicaCoordinator, decodeAndApplyReplicationPacket, ReplicaCoordinator, } from './replication/replica';
15
+ export type { NetSessionConfig, PeerSnapshot, RawMessage, SessionSnapshot, } from './session/net-session';
14
16
  export { NetSession } from './session/net-session';
17
+ export type { NetRecoveryOutcome, NetRecoveryPolicy, NetRecoverySnapshot, NetSessionFailure, NetSessionState, NetSessionStateKind, SessionId, } from './session/recovery';
18
+ export { createSessionId, DEFAULT_NET_RECOVERY_POLICY, isLegalNetSessionTransition, RECOVERY_ERROR_CODES, resolveNetRecoveryPolicy, transitionNetSessionState, validateNetRecoveryPolicy, } from './session/recovery';
15
19
  export type { NetPluginConfig } from './session/session-plugin';
16
20
  export { netPlugin } from './session/session-plugin';
17
21
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAMA,YAAY,EAAE,aAAa,EAAE,WAAW,EAAE,MAAM,EAAE,MAAM,qBAAqB,CAAC;AAC9E,YAAY,EAAE,iBAAiB,EAAE,mBAAmB,EAAE,MAAM,mBAAmB,CAAC;AAChF,OAAO,EACL,oBAAoB,EACpB,iBAAiB,EACjB,aAAa,EACb,eAAe,GAChB,MAAM,mBAAmB,CAAC;AAC3B,YAAY,EAAE,qBAAqB,EAAE,MAAM,mBAAmB,CAAC;AAE/D,OAAO,EACL,wBAAwB,EACxB,sCAAsC,GACvC,MAAM,mBAAmB,CAAC;AAC3B,OAAO,EAAE,oBAAoB,EAAE,0BAA0B,EAAE,MAAM,yBAAyB,CAAC;AAC3F,YAAY,EACV,WAAW,EACX,gBAAgB,EAChB,0BAA0B,EAC1B,uBAAuB,GACxB,MAAM,qBAAqB,CAAC;AAC7B,OAAO,EAAE,QAAQ,EAAE,KAAK,YAAY,EAAE,KAAK,cAAc,EAAE,MAAM,sBAAsB,CAAC;AACxF,OAAO,EAAE,iBAAiB,EAAE,MAAM,yBAAyB,CAAC;AAC5D,YAAY,EACV,wBAAwB,EACxB,iBAAiB,EACjB,kBAAkB,GACnB,MAAM,uBAAuB,CAAC;AAC/B,OAAO,EAAE,iBAAiB,EAAE,MAAM,uBAAuB,CAAC;AAC1D,OAAO,EACL,iBAAiB,EACjB,wBAAwB,EACxB,0BAA0B,EAC1B,kBAAkB,GACnB,MAAM,uBAAuB,CAAC;AAC/B,YAAY,EAAE,gBAAgB,EAAE,YAAY,EAAE,UAAU,EAAE,MAAM,uBAAuB,CAAC;AAExF,OAAO,EAAE,UAAU,EAAE,MAAM,uBAAuB,CAAC;AACnD,YAAY,EAAE,eAAe,EAAE,MAAM,0BAA0B,CAAC;AAChE,OAAO,EAAE,SAAS,EAAE,MAAM,0BAA0B,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAMA,YAAY,EAAE,aAAa,EAAE,WAAW,EAAE,oBAAoB,EAAE,MAAM,EAAE,MAAM,qBAAqB,CAAC;AACpG,YAAY,EAAE,iBAAiB,EAAE,mBAAmB,EAAE,MAAM,mBAAmB,CAAC;AAChF,OAAO,EACL,oBAAoB,EACpB,iBAAiB,EACjB,aAAa,EACb,eAAe,GAChB,MAAM,mBAAmB,CAAC;AAC3B,YAAY,EAAE,qBAAqB,EAAE,MAAM,mBAAmB,CAAC;AAE/D,OAAO,EACL,6BAA6B,EAC7B,wBAAwB,EACxB,sCAAsC,GACvC,MAAM,mBAAmB,CAAC;AAC3B,OAAO,EAAE,oBAAoB,EAAE,0BAA0B,EAAE,MAAM,yBAAyB,CAAC;AAC3F,OAAO,EAAE,uBAAuB,EAAE,uBAAuB,EAAE,MAAM,qBAAqB,CAAC;AACvF,OAAO,EACL,2BAA2B,EAC3B,4BAA4B,GAC7B,MAAM,yBAAyB,CAAC;AACjC,OAAO,EACL,QAAQ,EACR,KAAK,YAAY,EACjB,KAAK,cAAc,EACnB,KAAK,oBAAoB,EACzB,KAAK,iBAAiB,GACvB,MAAM,sBAAsB,CAAC;AAC9B,OAAO,EAAE,iBAAiB,EAAE,MAAM,yBAAyB,CAAC;AAC5D,YAAY,EACV,wBAAwB,EACxB,iBAAiB,EACjB,kBAAkB,GACnB,MAAM,uBAAuB,CAAC;AAC/B,OAAO,EAAE,0BAA0B,EAAE,iBAAiB,EAAE,MAAM,uBAAuB,CAAC;AACtF,YAAY,EACV,oBAAoB,EACpB,yBAAyB,EACzB,0BAA0B,EAC1B,qBAAqB,EACrB,yBAAyB,EACzB,yBAAyB,EACzB,sBAAsB,EACtB,qBAAqB,EACrB,uBAAuB,EACvB,iBAAiB,EACjB,qBAAqB,EACrB,0BAA0B,EAC1B,wBAAwB,GACzB,MAAM,wBAAwB,CAAC;AAChC,OAAO,EACL,sBAAsB,EACtB,wBAAwB,EACxB,+BAA+B,EAC/B,kBAAkB,GACnB,MAAM,uBAAuB,CAAC;AAC/B,YAAY,EACV,gBAAgB,EAChB,YAAY,EACZ,UAAU,EACV,eAAe,GAChB,MAAM,uBAAuB,CAAC;AAE/B,OAAO,EAAE,UAAU,EAAE,MAAM,uBAAuB,CAAC;AACnD,YAAY,EACV,kBAAkB,EAClB,iBAAiB,EACjB,mBAAmB,EACnB,iBAAiB,EACjB,eAAe,EACf,mBAAmB,EACnB,SAAS,GACV,MAAM,oBAAoB,CAAC;AAC5B,OAAO,EACL,eAAe,EACf,2BAA2B,EAC3B,2BAA2B,EAC3B,oBAAoB,EACpB,wBAAwB,EACxB,yBAAyB,EACzB,yBAAyB,GAC1B,MAAM,oBAAoB,CAAC;AAC5B,YAAY,EAAE,eAAe,EAAE,MAAM,0BAA0B,CAAC;AAChE,OAAO,EAAE,SAAS,EAAE,MAAM,0BAA0B,CAAC"}