@moltzap/protocol 2026.505.3 → 2026.505.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.
|
@@ -21,23 +21,86 @@ export declare const agentId: (value: string) => AgentId;
|
|
|
21
21
|
* `HashMap<AgentId, Set<EndpointAddress>>` multimap keyed by agent.
|
|
22
22
|
*/
|
|
23
23
|
export type EndpointAddress = BrandedString<"EndpointAddress">;
|
|
24
|
-
/**
|
|
25
|
-
*
|
|
26
|
-
|
|
24
|
+
/**
|
|
25
|
+
* Endpoint kinds that may appear at the address prefix. Extending this list
|
|
26
|
+
* is the single edit point for new endpoint kinds.
|
|
27
|
+
*
|
|
28
|
+
* Phase 9 (plan §2.4.a + Phase 8 codex deferral): `agent` carries the
|
|
29
|
+
* durable agent-id form `tm:agent:<agentId>` minted by
|
|
30
|
+
* {@link makeEndpointAddress} for task-manager registration (column
|
|
31
|
+
* `tasks.tm_endpoint_address`). `agent-conn` carries the volatile
|
|
32
|
+
* per-WebSocket-connection form `tm:agent-conn:<connId>` used by
|
|
33
|
+
* `AgentEndpointResolver` to address one specific connection of an
|
|
34
|
+
* authenticated agent. `app` is reserved for app-TM registrations the
|
|
35
|
+
* Phase-9 topology dispatches via in-process loopback or real WS.
|
|
36
|
+
*
|
|
37
|
+
* The split exists because routing semantics differ — `agent` resolves
|
|
38
|
+
* to "any connection of agentId" via the resolver's forward map, while
|
|
39
|
+
* `agent-conn` resolves to exactly one connection via the reverse
|
|
40
|
+
* index. Without distinct kinds, durable TM-routed `network.send`
|
|
41
|
+
* collapses into the per-connection reverse lookup and silently fails
|
|
42
|
+
* with `RecipientNotResolved` for any address whose tail is an agent id
|
|
43
|
+
* rather than a connection id.
|
|
44
|
+
*
|
|
45
|
+
* Order matters: the longer prefix `agent-conn:` MUST appear before
|
|
46
|
+
* `agent:` in the loops below so `startsWith("agent:")` does not
|
|
47
|
+
* pre-empt the `agent-conn` match. The const tuple's declaration order
|
|
48
|
+
* is the sole source of truth for that ordering.
|
|
49
|
+
*/
|
|
50
|
+
export declare const ENDPOINT_ADDRESS_KINDS: readonly ["agent-conn", "agent", "app"];
|
|
27
51
|
export type EndpointAddressKind = (typeof ENDPOINT_ADDRESS_KINDS)[number];
|
|
52
|
+
/**
|
|
53
|
+
* Common prefix for every {@link EndpointAddress} on the wire — `tm:`.
|
|
54
|
+
* Exported so server-side code that mints addresses or routes by kind
|
|
55
|
+
* does not re-declare the same string and silently fork.
|
|
56
|
+
*/
|
|
57
|
+
export declare const ENDPOINT_ADDRESS_PREFIX = "tm:";
|
|
28
58
|
/** Predicate that an endpoint address has the canonical wire shape:
|
|
29
59
|
* `tm:<kind>:<uuid>`. Exported for tests and reviewers. */
|
|
30
60
|
export declare const isEndpointAddress: (value: unknown) => value is EndpointAddress;
|
|
31
61
|
/** Brand a raw string as an {@link EndpointAddress}. Throws if the value
|
|
32
62
|
* fails {@link isEndpointAddress}. */
|
|
33
63
|
export declare const endpointAddress: (value: string) => EndpointAddress;
|
|
64
|
+
/**
|
|
65
|
+
* Read the `kind` segment out of a branded {@link EndpointAddress}.
|
|
66
|
+
*
|
|
67
|
+
* The brand predicate at {@link isEndpointAddress} already proves the
|
|
68
|
+
* shape `tm:<kind>:<uuid>` with `kind ∈ {@link ENDPOINT_ADDRESS_KINDS}`.
|
|
69
|
+
* This helper checks the kinds in declaration order and returns the
|
|
70
|
+
* first match. Adding a new kind to the const tuple automatically
|
|
71
|
+
* extends this dispatch as long as the brand predicate is updated in
|
|
72
|
+
* lockstep — the {@link ENDPOINT_ADDRESS_KINDS}-driven loop owns the
|
|
73
|
+
* exhaustiveness story.
|
|
74
|
+
*
|
|
75
|
+
* The trailing `return ENDPOINT_ADDRESS_KINDS[0]` is unreachable for any
|
|
76
|
+
* well-formed branded value (the brand guarantees at least one match)
|
|
77
|
+
* but appears for the type checker — `for...of` does not narrow to a
|
|
78
|
+
* non-empty result. The brand's own tests cover the malformed case.
|
|
79
|
+
*/
|
|
80
|
+
export declare const endpointAddressKind: (address: EndpointAddress) => EndpointAddressKind;
|
|
81
|
+
/**
|
|
82
|
+
* Mint an `EndpointAddress` from a kind and a UUID. The single
|
|
83
|
+
* construction site for `tm:<kind>:<uuid>` strings — every other
|
|
84
|
+
* caller routes through here so the wire format does not fork.
|
|
85
|
+
*
|
|
86
|
+
* Throws if the resulting string fails {@link isEndpointAddress} (e.g.,
|
|
87
|
+
* `uuid` is not a UUID).
|
|
88
|
+
*/
|
|
89
|
+
export declare const makeEndpointAddress: (kind: EndpointAddressKind, uuid: string) => EndpointAddress;
|
|
34
90
|
/**
|
|
35
91
|
* The kinds of endpoints the actor-model network resolves.
|
|
36
92
|
*
|
|
37
|
-
*
|
|
38
|
-
*
|
|
39
|
-
*
|
|
40
|
-
*
|
|
93
|
+
* Disambiguation: this is the legacy registration-tag union used by
|
|
94
|
+
* {@link EndpointRegistration}, NOT the address-prefix-driven
|
|
95
|
+
* {@link EndpointAddressKind}. `EndpointAddressKind` (`"agent-conn"`,
|
|
96
|
+
* `"agent"`, `"app"`) parses the wire-format `tm:<kind>:<uuid>` string;
|
|
97
|
+
* `EndpointKind` here labels a registration record's discriminator.
|
|
98
|
+
*
|
|
99
|
+
* - `"agent"` — a registered agent-identity endpoint. The resolver
|
|
100
|
+
* multimap keys by `AgentId`; the matching wire address kinds are
|
|
101
|
+
* `agent-conn` (volatile per-WS) and `agent` (durable per-agent).
|
|
102
|
+
* - `"taskManager"` — a registered TM endpoint, durable in the `tasks`
|
|
103
|
+
* row. Persists across the TM's reconnect window.
|
|
41
104
|
*
|
|
42
105
|
* String-literal union: `switch` over `EndpointKind` is exhaustive at the
|
|
43
106
|
* type level, so adding a third kind here forces every downstream switch to
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"actor-model.d.ts","sourceRoot":"","sources":["../../src/network/actor-model.ts"],"names":[],"mappings":"AAgBA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,cAAc,CAAC;AAMlD,qEAAqE;AACrE,MAAM,MAAM,MAAM,GAAG,aAAa,CAAC,QAAQ,CAAC,CAAC;AAE7C;;;;;GAKG;AACH,eAAO,MAAM,MAAM,GAAI,OAAO,MAAM,KAAG,MAA4B,CAAC;AAEpE,iFAAiF;AACjF,MAAM,MAAM,OAAO,GAAG,aAAa,CAAC,SAAS,CAAC,CAAC;AAE/C,2FAA2F;AAC3F,eAAO,MAAM,OAAO,GAAI,OAAO,MAAM,KAAG,OAA8B,CAAC;AAEvE;;;;;;;GAOG;AACH,MAAM,MAAM,eAAe,GAAG,aAAa,CAAC,iBAAiB,CAAC,CAAC;AAE/D;
|
|
1
|
+
{"version":3,"file":"actor-model.d.ts","sourceRoot":"","sources":["../../src/network/actor-model.ts"],"names":[],"mappings":"AAgBA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,cAAc,CAAC;AAMlD,qEAAqE;AACrE,MAAM,MAAM,MAAM,GAAG,aAAa,CAAC,QAAQ,CAAC,CAAC;AAE7C;;;;;GAKG;AACH,eAAO,MAAM,MAAM,GAAI,OAAO,MAAM,KAAG,MAA4B,CAAC;AAEpE,iFAAiF;AACjF,MAAM,MAAM,OAAO,GAAG,aAAa,CAAC,SAAS,CAAC,CAAC;AAE/C,2FAA2F;AAC3F,eAAO,MAAM,OAAO,GAAI,OAAO,MAAM,KAAG,OAA8B,CAAC;AAEvE;;;;;;;GAOG;AACH,MAAM,MAAM,eAAe,GAAG,aAAa,CAAC,iBAAiB,CAAC,CAAC;AAE/D;;;;;;;;;;;;;;;;;;;;;;;;;GAyBG;AACH,eAAO,MAAM,sBAAsB,yCAA0C,CAAC;AAC9E,MAAM,MAAM,mBAAmB,GAAG,CAAC,OAAO,sBAAsB,CAAC,CAAC,MAAM,CAAC,CAAC;AAE1E;;;;GAIG;AACH,eAAO,MAAM,uBAAuB,QAAQ,CAAC;AAI7C;4DAC4D;AAC5D,eAAO,MAAM,iBAAiB,GAAI,OAAO,OAAO,KAAG,KAAK,IAAI,eAa3D,CAAC;AASF;uCACuC;AACvC,eAAO,MAAM,eAAe,GAAI,OAAO,MAAM,KAAG,eACnB,CAAC;AAE9B;;;;;;;;;;;;;;;GAeG;AACH,eAAO,MAAM,mBAAmB,GAC9B,SAAS,eAAe,KACvB,mBAWF,CAAC;AAEF;;;;;;;GAOG;AACH,eAAO,MAAM,mBAAmB,GAC9B,MAAM,mBAAmB,EACzB,MAAM,MAAM,KACX,eAC2D,CAAC;AAM/D;;;;;;;;;;;;;;;;;;GAkBG;AACH,MAAM,MAAM,YAAY,GAAG,OAAO,GAAG,aAAa,CAAC;AAEnD;;;;;;;GAOG;AACH,MAAM,MAAM,oBAAoB,GAC5B;IACE,QAAQ,CAAC,IAAI,EAAE,OAAO,CAAC;IACvB,QAAQ,CAAC,OAAO,EAAE,eAAe,CAAC;IAClC,QAAQ,CAAC,OAAO,EAAE,OAAO,CAAC;CAC3B,GACD;IACE,QAAQ,CAAC,IAAI,EAAE,aAAa,CAAC;IAC7B,QAAQ,CAAC,OAAO,EAAE,eAAe,CAAC;CACnC,CAAC;AAMN;;;;;;;;GAQG;AACH,MAAM,MAAM,qBAAqB,GAAG;IAClC,QAAQ,CAAC,OAAO,EAAE,OAAO,CAAC;IAC1B,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAC;CACzB,CAAC"}
|
|
@@ -25,10 +25,39 @@ export const userId = (value) => UserIdBrand(value);
|
|
|
25
25
|
const AgentIdBrand = Brand.nominal();
|
|
26
26
|
/** Brand a raw string as an {@link AgentId}. See {@link userId} for boundary semantics. */
|
|
27
27
|
export const agentId = (value) => AgentIdBrand(value);
|
|
28
|
-
/**
|
|
29
|
-
*
|
|
30
|
-
|
|
31
|
-
|
|
28
|
+
/**
|
|
29
|
+
* Endpoint kinds that may appear at the address prefix. Extending this list
|
|
30
|
+
* is the single edit point for new endpoint kinds.
|
|
31
|
+
*
|
|
32
|
+
* Phase 9 (plan §2.4.a + Phase 8 codex deferral): `agent` carries the
|
|
33
|
+
* durable agent-id form `tm:agent:<agentId>` minted by
|
|
34
|
+
* {@link makeEndpointAddress} for task-manager registration (column
|
|
35
|
+
* `tasks.tm_endpoint_address`). `agent-conn` carries the volatile
|
|
36
|
+
* per-WebSocket-connection form `tm:agent-conn:<connId>` used by
|
|
37
|
+
* `AgentEndpointResolver` to address one specific connection of an
|
|
38
|
+
* authenticated agent. `app` is reserved for app-TM registrations the
|
|
39
|
+
* Phase-9 topology dispatches via in-process loopback or real WS.
|
|
40
|
+
*
|
|
41
|
+
* The split exists because routing semantics differ — `agent` resolves
|
|
42
|
+
* to "any connection of agentId" via the resolver's forward map, while
|
|
43
|
+
* `agent-conn` resolves to exactly one connection via the reverse
|
|
44
|
+
* index. Without distinct kinds, durable TM-routed `network.send`
|
|
45
|
+
* collapses into the per-connection reverse lookup and silently fails
|
|
46
|
+
* with `RecipientNotResolved` for any address whose tail is an agent id
|
|
47
|
+
* rather than a connection id.
|
|
48
|
+
*
|
|
49
|
+
* Order matters: the longer prefix `agent-conn:` MUST appear before
|
|
50
|
+
* `agent:` in the loops below so `startsWith("agent:")` does not
|
|
51
|
+
* pre-empt the `agent-conn` match. The const tuple's declaration order
|
|
52
|
+
* is the sole source of truth for that ordering.
|
|
53
|
+
*/
|
|
54
|
+
export const ENDPOINT_ADDRESS_KINDS = ["agent-conn", "agent", "app"];
|
|
55
|
+
/**
|
|
56
|
+
* Common prefix for every {@link EndpointAddress} on the wire — `tm:`.
|
|
57
|
+
* Exported so server-side code that mints addresses or routes by kind
|
|
58
|
+
* does not re-declare the same string and silently fork.
|
|
59
|
+
*/
|
|
60
|
+
export const ENDPOINT_ADDRESS_PREFIX = "tm:";
|
|
32
61
|
const UUID_PATTERN = /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/i;
|
|
33
62
|
/** Predicate that an endpoint address has the canonical wire shape:
|
|
34
63
|
* `tm:<kind>:<uuid>`. Exported for tests and reviewers. */
|
|
@@ -38,6 +67,8 @@ export const isEndpointAddress = (value) => {
|
|
|
38
67
|
if (!value.startsWith(ENDPOINT_ADDRESS_PREFIX))
|
|
39
68
|
return false;
|
|
40
69
|
const rest = value.slice(ENDPOINT_ADDRESS_PREFIX.length);
|
|
70
|
+
// Walk in declaration order so `agent-conn:` is tried before `agent:`.
|
|
71
|
+
// See ENDPOINT_ADDRESS_KINDS doc for the longest-prefix invariant.
|
|
41
72
|
for (const kind of ENDPOINT_ADDRESS_KINDS) {
|
|
42
73
|
const kindPrefix = `${kind}:`;
|
|
43
74
|
if (rest.startsWith(kindPrefix)) {
|
|
@@ -50,4 +81,42 @@ const EndpointAddressBrand = Brand.refined(isEndpointAddress, (value) => Brand.e
|
|
|
50
81
|
/** Brand a raw string as an {@link EndpointAddress}. Throws if the value
|
|
51
82
|
* fails {@link isEndpointAddress}. */
|
|
52
83
|
export const endpointAddress = (value) => EndpointAddressBrand(value);
|
|
84
|
+
/**
|
|
85
|
+
* Read the `kind` segment out of a branded {@link EndpointAddress}.
|
|
86
|
+
*
|
|
87
|
+
* The brand predicate at {@link isEndpointAddress} already proves the
|
|
88
|
+
* shape `tm:<kind>:<uuid>` with `kind ∈ {@link ENDPOINT_ADDRESS_KINDS}`.
|
|
89
|
+
* This helper checks the kinds in declaration order and returns the
|
|
90
|
+
* first match. Adding a new kind to the const tuple automatically
|
|
91
|
+
* extends this dispatch as long as the brand predicate is updated in
|
|
92
|
+
* lockstep — the {@link ENDPOINT_ADDRESS_KINDS}-driven loop owns the
|
|
93
|
+
* exhaustiveness story.
|
|
94
|
+
*
|
|
95
|
+
* The trailing `return ENDPOINT_ADDRESS_KINDS[0]` is unreachable for any
|
|
96
|
+
* well-formed branded value (the brand guarantees at least one match)
|
|
97
|
+
* but appears for the type checker — `for...of` does not narrow to a
|
|
98
|
+
* non-empty result. The brand's own tests cover the malformed case.
|
|
99
|
+
*/
|
|
100
|
+
export const endpointAddressKind = (address) => {
|
|
101
|
+
const raw = address;
|
|
102
|
+
const rest = raw.slice(ENDPOINT_ADDRESS_PREFIX.length);
|
|
103
|
+
// Walk in declaration order — `agent-conn:` must precede `agent:` so
|
|
104
|
+
// the longer prefix wins (a `tm:agent-conn:<uuid>` value would also
|
|
105
|
+
// satisfy `startsWith("agent:")` if `agent` came first, which would
|
|
106
|
+
// mis-classify the kind).
|
|
107
|
+
for (const kind of ENDPOINT_ADDRESS_KINDS) {
|
|
108
|
+
if (rest.startsWith(`${kind}:`))
|
|
109
|
+
return kind;
|
|
110
|
+
}
|
|
111
|
+
return ENDPOINT_ADDRESS_KINDS[0];
|
|
112
|
+
};
|
|
113
|
+
/**
|
|
114
|
+
* Mint an `EndpointAddress` from a kind and a UUID. The single
|
|
115
|
+
* construction site for `tm:<kind>:<uuid>` strings — every other
|
|
116
|
+
* caller routes through here so the wire format does not fork.
|
|
117
|
+
*
|
|
118
|
+
* Throws if the resulting string fails {@link isEndpointAddress} (e.g.,
|
|
119
|
+
* `uuid` is not a UUID).
|
|
120
|
+
*/
|
|
121
|
+
export const makeEndpointAddress = (kind, uuid) => endpointAddress(`${ENDPOINT_ADDRESS_PREFIX}${kind}:${uuid}`);
|
|
53
122
|
//# sourceMappingURL=actor-model.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"actor-model.js","sourceRoot":"","sources":["../../src/network/actor-model.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AACH,OAAO,EAAE,KAAK,EAAE,MAAM,QAAQ,CAAC;AAS/B,MAAM,WAAW,GAAG,KAAK,CAAC,OAAO,EAAU,CAAC;AAC5C;;;;;GAKG;AACH,MAAM,CAAC,MAAM,MAAM,GAAG,CAAC,KAAa,EAAU,EAAE,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC;AAIpE,MAAM,YAAY,GAAG,KAAK,CAAC,OAAO,EAAW,CAAC;AAC9C,2FAA2F;AAC3F,MAAM,CAAC,MAAM,OAAO,GAAG,CAAC,KAAa,EAAW,EAAE,CAAC,YAAY,CAAC,KAAK,CAAC,CAAC;AAYvE;
|
|
1
|
+
{"version":3,"file":"actor-model.js","sourceRoot":"","sources":["../../src/network/actor-model.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AACH,OAAO,EAAE,KAAK,EAAE,MAAM,QAAQ,CAAC;AAS/B,MAAM,WAAW,GAAG,KAAK,CAAC,OAAO,EAAU,CAAC;AAC5C;;;;;GAKG;AACH,MAAM,CAAC,MAAM,MAAM,GAAG,CAAC,KAAa,EAAU,EAAE,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC;AAIpE,MAAM,YAAY,GAAG,KAAK,CAAC,OAAO,EAAW,CAAC;AAC9C,2FAA2F;AAC3F,MAAM,CAAC,MAAM,OAAO,GAAG,CAAC,KAAa,EAAW,EAAE,CAAC,YAAY,CAAC,KAAK,CAAC,CAAC;AAYvE;;;;;;;;;;;;;;;;;;;;;;;;;GAyBG;AACH,MAAM,CAAC,MAAM,sBAAsB,GAAG,CAAC,YAAY,EAAE,OAAO,EAAE,KAAK,CAAU,CAAC;AAG9E;;;;GAIG;AACH,MAAM,CAAC,MAAM,uBAAuB,GAAG,KAAK,CAAC;AAC7C,MAAM,YAAY,GAChB,iEAAiE,CAAC;AAEpE;4DAC4D;AAC5D,MAAM,CAAC,MAAM,iBAAiB,GAAG,CAAC,KAAc,EAA4B,EAAE;IAC5E,IAAI,OAAO,KAAK,KAAK,QAAQ;QAAE,OAAO,KAAK,CAAC;IAC5C,IAAI,CAAC,KAAK,CAAC,UAAU,CAAC,uBAAuB,CAAC;QAAE,OAAO,KAAK,CAAC;IAC7D,MAAM,IAAI,GAAG,KAAK,CAAC,KAAK,CAAC,uBAAuB,CAAC,MAAM,CAAC,CAAC;IACzD,uEAAuE;IACvE,mEAAmE;IACnE,KAAK,MAAM,IAAI,IAAI,sBAAsB,EAAE,CAAC;QAC1C,MAAM,UAAU,GAAG,GAAG,IAAI,GAAG,CAAC;QAC9B,IAAI,IAAI,CAAC,UAAU,CAAC,UAAU,CAAC,EAAE,CAAC;YAChC,OAAO,YAAY,CAAC,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,UAAU,CAAC,MAAM,CAAC,CAAC,CAAC;QAC1D,CAAC;IACH,CAAC;IACD,OAAO,KAAK,CAAC;AACf,CAAC,CAAC;AAEF,MAAM,oBAAoB,GAAG,KAAK,CAAC,OAAO,CACxC,iBAAiB,EACjB,CAAC,KAAK,EAAE,EAAE,CACR,KAAK,CAAC,KAAK,CACT,qEAAqE,sBAAsB,CAAC,IAAI,CAAC,IAAI,CAAC,UAAU,IAAI,CAAC,SAAS,CAAC,KAAK,CAAC,EAAE,CACxI,CACJ,CAAC;AACF;uCACuC;AACvC,MAAM,CAAC,MAAM,eAAe,GAAG,CAAC,KAAa,EAAmB,EAAE,CAChE,oBAAoB,CAAC,KAAK,CAAC,CAAC;AAE9B;;;;;;;;;;;;;;;GAeG;AACH,MAAM,CAAC,MAAM,mBAAmB,GAAG,CACjC,OAAwB,EACH,EAAE;IACvB,MAAM,GAAG,GAAG,OAAiB,CAAC;IAC9B,MAAM,IAAI,GAAG,GAAG,CAAC,KAAK,CAAC,uBAAuB,CAAC,MAAM,CAAC,CAAC;IACvD,qEAAqE;IACrE,oEAAoE;IACpE,oEAAoE;IACpE,0BAA0B;IAC1B,KAAK,MAAM,IAAI,IAAI,sBAAsB,EAAE,CAAC;QAC1C,IAAI,IAAI,CAAC,UAAU,CAAC,GAAG,IAAI,GAAG,CAAC;YAAE,OAAO,IAAI,CAAC;IAC/C,CAAC;IACD,OAAO,sBAAsB,CAAC,CAAC,CAAC,CAAC;AACnC,CAAC,CAAC;AAEF;;;;;;;GAOG;AACH,MAAM,CAAC,MAAM,mBAAmB,GAAG,CACjC,IAAyB,EACzB,IAAY,EACK,EAAE,CACnB,eAAe,CAAC,GAAG,uBAAuB,GAAG,IAAI,IAAI,IAAI,EAAE,CAAC,CAAC"}
|
package/dist/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const PROTOCOL_VERSION = "2026.505.
|
|
1
|
+
export declare const PROTOCOL_VERSION = "2026.505.5";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/dist/version.js
CHANGED