@moqtap/codec 0.3.0 → 0.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -4
- package/dist/{chunk-U3ZVLT5L.js → chunk-BLEFTWEB.js} +11 -0
- package/dist/{chunk-XNWYLVGU.cjs → chunk-XHDPQHYR.cjs} +12 -1
- package/dist/{codec-Ck7ZwFF1.d.cts → codec-BO5Go0Lm.d.cts} +1 -1
- package/dist/{codec-25u4_1HS.d.ts → codec-iMEwV1UO.d.ts} +1 -1
- package/dist/{draft8.d.cts → draft08.d.cts} +1 -1
- package/dist/{draft8.d.ts → draft08.d.ts} +1 -1
- package/dist/{draft9.d.cts → draft09.d.cts} +1 -1
- package/dist/{draft9.d.ts → draft09.d.ts} +1 -1
- package/dist/draft14-session.d.cts +1 -1
- package/dist/draft14-session.d.ts +1 -1
- package/dist/draft14.cjs +4 -2
- package/dist/draft14.d.cts +5 -4
- package/dist/draft14.d.ts +5 -4
- package/dist/draft14.js +3 -1
- package/dist/index.cjs +2 -2
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +1 -1
- package/dist/session.d.cts +2 -3
- package/dist/session.d.ts +2 -3
- package/dist/{types-DEaypVsD.d.cts → types--FGt0sAp.d.cts} +1 -0
- package/dist/{types-DEaypVsD.d.ts → types--FGt0sAp.d.ts} +1 -0
- package/package.json +25 -25
- package/src/drafts/draft14/codec.ts +10 -0
- package/src/drafts/draft14/index.ts +1 -0
- package/src/drafts/draft14/messages.ts +1 -0
- package/src/drafts/draft14/types.ts +1 -0
- package/src/session.ts +1 -2
- /package/dist/{draft7-session.cjs → draft07-session.cjs} +0 -0
- /package/dist/{draft7-session.d.cts → draft07-session.d.cts} +0 -0
- /package/dist/{draft7-session.d.ts → draft07-session.d.ts} +0 -0
- /package/dist/{draft7-session.js → draft07-session.js} +0 -0
- /package/dist/{draft7.cjs → draft07.cjs} +0 -0
- /package/dist/{draft7.d.cts → draft07.d.cts} +0 -0
- /package/dist/{draft7.d.ts → draft07.d.ts} +0 -0
- /package/dist/{draft7.js → draft07.js} +0 -0
- /package/dist/{draft8-session.cjs → draft08-session.cjs} +0 -0
- /package/dist/{draft8-session.d.cts → draft08-session.d.cts} +0 -0
- /package/dist/{draft8-session.d.ts → draft08-session.d.ts} +0 -0
- /package/dist/{draft8-session.js → draft08-session.js} +0 -0
- /package/dist/{draft8.cjs → draft08.cjs} +0 -0
- /package/dist/{draft8.js → draft08.js} +0 -0
- /package/dist/{draft9-session.cjs → draft09-session.cjs} +0 -0
- /package/dist/{draft9-session.d.cts → draft09-session.d.cts} +0 -0
- /package/dist/{draft9-session.d.ts → draft09-session.d.ts} +0 -0
- /package/dist/{draft9-session.js → draft09-session.js} +0 -0
- /package/dist/{draft9.cjs → draft09.cjs} +0 -0
- /package/dist/{draft9.js → draft09.js} +0 -0
package/README.md
CHANGED
|
@@ -20,7 +20,7 @@ npm install @moqtap/codec
|
|
|
20
20
|
MoQT is pre-RFC, so a draft version must always be specified. Use draft-scoped imports for the best experience:
|
|
21
21
|
|
|
22
22
|
```typescript
|
|
23
|
-
import { createDraft07Codec, DRAFT_VERSION } from '@moqtap/codec/
|
|
23
|
+
import { createDraft07Codec, DRAFT_VERSION } from '@moqtap/codec/draft07'
|
|
24
24
|
|
|
25
25
|
const codec = createDraft07Codec()
|
|
26
26
|
|
|
@@ -56,9 +56,9 @@ Each draft is available as a subpath import with its own codec and session state
|
|
|
56
56
|
| Import path | Description |
|
|
57
57
|
| -------------------------------- | ------------------------------------------------- |
|
|
58
58
|
| `@moqtap/codec` | Factory + shared types (`createCodec({ draft })`) |
|
|
59
|
-
| `@moqtap/codec/
|
|
60
|
-
| `@moqtap/codec/
|
|
61
|
-
| `@moqtap/codec/
|
|
59
|
+
| `@moqtap/codec/draft07` | Draft-07 codec |
|
|
60
|
+
| `@moqtap/codec/draft08` | Draft-08 codec |
|
|
61
|
+
| `@moqtap/codec/draft09` | Draft-09 codec |
|
|
62
62
|
| `@moqtap/codec/draft10` | Draft-10 codec |
|
|
63
63
|
| `@moqtap/codec/draft11` | Draft-11 codec |
|
|
64
64
|
| `@moqtap/codec/draft12` | Draft-12 codec |
|
|
@@ -40,6 +40,7 @@ var MSG_SERVER_SETUP = 0x21n;
|
|
|
40
40
|
var PARAM_ROLE = 0x00n;
|
|
41
41
|
var PARAM_PATH = 0x01n;
|
|
42
42
|
var PARAM_MAX_REQUEST_ID = 0x02n;
|
|
43
|
+
var PARAM_MOQT_IMPLEMENTATION = 0x07n;
|
|
43
44
|
var MESSAGE_TYPE_MAP = /* @__PURE__ */ new Map([
|
|
44
45
|
[MSG_CLIENT_SETUP, "client_setup"],
|
|
45
46
|
[MSG_SERVER_SETUP, "server_setup"],
|
|
@@ -802,6 +803,7 @@ function encodeSetupParams(params, writer) {
|
|
|
802
803
|
if (params.max_request_id !== void 0) count++;
|
|
803
804
|
if (params.authority !== void 0) count++;
|
|
804
805
|
if (params.max_auth_token_cache_size !== void 0) count++;
|
|
806
|
+
if (params.moqt_implementation !== void 0) count++;
|
|
805
807
|
if (params.unknown) count += params.unknown.length;
|
|
806
808
|
writer.writeVarInt(count);
|
|
807
809
|
if (params.role !== void 0) {
|
|
@@ -828,6 +830,12 @@ function encodeSetupParams(params, writer) {
|
|
|
828
830
|
writer.writeVarInt(encoded.byteLength);
|
|
829
831
|
writer.writeBytes(encoded);
|
|
830
832
|
}
|
|
833
|
+
if (params.moqt_implementation !== void 0) {
|
|
834
|
+
writer.writeVarInt(PARAM_MOQT_IMPLEMENTATION);
|
|
835
|
+
const encoded = textEncoder.encode(params.moqt_implementation);
|
|
836
|
+
writer.writeVarInt(encoded.byteLength);
|
|
837
|
+
writer.writeBytes(encoded);
|
|
838
|
+
}
|
|
831
839
|
if (params.unknown) {
|
|
832
840
|
for (const u of params.unknown) {
|
|
833
841
|
const id = BigInt(u.id);
|
|
@@ -869,6 +877,8 @@ function decodeSetupParams(reader) {
|
|
|
869
877
|
result.path = textDecoder.decode(bytes);
|
|
870
878
|
} else if (paramType === PARAM_AUTHORITY) {
|
|
871
879
|
result.authority = textDecoder.decode(bytes);
|
|
880
|
+
} else if (paramType === PARAM_MOQT_IMPLEMENTATION) {
|
|
881
|
+
result.moqt_implementation = textDecoder.decode(bytes);
|
|
872
882
|
} else {
|
|
873
883
|
unknown.push({
|
|
874
884
|
id: `0x${paramType.toString(16)}`,
|
|
@@ -1832,6 +1842,7 @@ export {
|
|
|
1832
1842
|
PARAM_ROLE,
|
|
1833
1843
|
PARAM_PATH,
|
|
1834
1844
|
PARAM_MAX_REQUEST_ID,
|
|
1845
|
+
PARAM_MOQT_IMPLEMENTATION,
|
|
1835
1846
|
MESSAGE_TYPE_MAP,
|
|
1836
1847
|
MESSAGE_ID_MAP,
|
|
1837
1848
|
FilterType,
|
|
@@ -40,6 +40,7 @@ var MSG_SERVER_SETUP = 0x21n;
|
|
|
40
40
|
var PARAM_ROLE = 0x00n;
|
|
41
41
|
var PARAM_PATH = 0x01n;
|
|
42
42
|
var PARAM_MAX_REQUEST_ID = 0x02n;
|
|
43
|
+
var PARAM_MOQT_IMPLEMENTATION = 0x07n;
|
|
43
44
|
var MESSAGE_TYPE_MAP = /* @__PURE__ */ new Map([
|
|
44
45
|
[MSG_CLIENT_SETUP, "client_setup"],
|
|
45
46
|
[MSG_SERVER_SETUP, "server_setup"],
|
|
@@ -802,6 +803,7 @@ function encodeSetupParams(params, writer) {
|
|
|
802
803
|
if (params.max_request_id !== void 0) count++;
|
|
803
804
|
if (params.authority !== void 0) count++;
|
|
804
805
|
if (params.max_auth_token_cache_size !== void 0) count++;
|
|
806
|
+
if (params.moqt_implementation !== void 0) count++;
|
|
805
807
|
if (params.unknown) count += params.unknown.length;
|
|
806
808
|
writer.writeVarInt(count);
|
|
807
809
|
if (params.role !== void 0) {
|
|
@@ -828,6 +830,12 @@ function encodeSetupParams(params, writer) {
|
|
|
828
830
|
writer.writeVarInt(encoded.byteLength);
|
|
829
831
|
writer.writeBytes(encoded);
|
|
830
832
|
}
|
|
833
|
+
if (params.moqt_implementation !== void 0) {
|
|
834
|
+
writer.writeVarInt(PARAM_MOQT_IMPLEMENTATION);
|
|
835
|
+
const encoded = textEncoder.encode(params.moqt_implementation);
|
|
836
|
+
writer.writeVarInt(encoded.byteLength);
|
|
837
|
+
writer.writeBytes(encoded);
|
|
838
|
+
}
|
|
831
839
|
if (params.unknown) {
|
|
832
840
|
for (const u of params.unknown) {
|
|
833
841
|
const id = BigInt(u.id);
|
|
@@ -869,6 +877,8 @@ function decodeSetupParams(reader) {
|
|
|
869
877
|
result.path = textDecoder.decode(bytes);
|
|
870
878
|
} else if (paramType === PARAM_AUTHORITY) {
|
|
871
879
|
result.authority = textDecoder.decode(bytes);
|
|
880
|
+
} else if (paramType === PARAM_MOQT_IMPLEMENTATION) {
|
|
881
|
+
result.moqt_implementation = textDecoder.decode(bytes);
|
|
872
882
|
} else {
|
|
873
883
|
unknown.push({
|
|
874
884
|
id: `0x${paramType.toString(16)}`,
|
|
@@ -1851,4 +1861,5 @@ function createDraft14Codec() {
|
|
|
1851
1861
|
|
|
1852
1862
|
|
|
1853
1863
|
|
|
1854
|
-
|
|
1864
|
+
|
|
1865
|
+
exports.MSG_SUBSCRIBE_UPDATE = MSG_SUBSCRIBE_UPDATE; exports.MSG_SUBSCRIBE = MSG_SUBSCRIBE; exports.MSG_SUBSCRIBE_OK = MSG_SUBSCRIBE_OK; exports.MSG_SUBSCRIBE_ERROR = MSG_SUBSCRIBE_ERROR; exports.MSG_PUBLISH_NAMESPACE = MSG_PUBLISH_NAMESPACE; exports.MSG_PUBLISH_NAMESPACE_OK = MSG_PUBLISH_NAMESPACE_OK; exports.MSG_PUBLISH_NAMESPACE_ERROR = MSG_PUBLISH_NAMESPACE_ERROR; exports.MSG_PUBLISH_NAMESPACE_DONE = MSG_PUBLISH_NAMESPACE_DONE; exports.MSG_UNSUBSCRIBE = MSG_UNSUBSCRIBE; exports.MSG_PUBLISH_DONE = MSG_PUBLISH_DONE; exports.MSG_PUBLISH_NAMESPACE_CANCEL = MSG_PUBLISH_NAMESPACE_CANCEL; exports.MSG_TRACK_STATUS = MSG_TRACK_STATUS; exports.MSG_TRACK_STATUS_OK = MSG_TRACK_STATUS_OK; exports.MSG_TRACK_STATUS_ERROR = MSG_TRACK_STATUS_ERROR; exports.MSG_GOAWAY = MSG_GOAWAY; exports.MSG_SUBSCRIBE_NAMESPACE = MSG_SUBSCRIBE_NAMESPACE; exports.MSG_SUBSCRIBE_NAMESPACE_OK = MSG_SUBSCRIBE_NAMESPACE_OK; exports.MSG_SUBSCRIBE_NAMESPACE_ERROR = MSG_SUBSCRIBE_NAMESPACE_ERROR; exports.MSG_UNSUBSCRIBE_NAMESPACE = MSG_UNSUBSCRIBE_NAMESPACE; exports.MSG_MAX_REQUEST_ID = MSG_MAX_REQUEST_ID; exports.MSG_FETCH = MSG_FETCH; exports.MSG_FETCH_CANCEL = MSG_FETCH_CANCEL; exports.MSG_FETCH_OK = MSG_FETCH_OK; exports.MSG_FETCH_ERROR = MSG_FETCH_ERROR; exports.MSG_REQUESTS_BLOCKED = MSG_REQUESTS_BLOCKED; exports.MSG_PUBLISH = MSG_PUBLISH; exports.MSG_PUBLISH_OK = MSG_PUBLISH_OK; exports.MSG_PUBLISH_ERROR = MSG_PUBLISH_ERROR; exports.MSG_CLIENT_SETUP = MSG_CLIENT_SETUP; exports.MSG_SERVER_SETUP = MSG_SERVER_SETUP; exports.PARAM_ROLE = PARAM_ROLE; exports.PARAM_PATH = PARAM_PATH; exports.PARAM_MAX_REQUEST_ID = PARAM_MAX_REQUEST_ID; exports.PARAM_MOQT_IMPLEMENTATION = PARAM_MOQT_IMPLEMENTATION; exports.MESSAGE_TYPE_MAP = MESSAGE_TYPE_MAP; exports.MESSAGE_ID_MAP = MESSAGE_ID_MAP; exports.FilterType = FilterType; exports.GroupOrder = GroupOrder; exports.FetchType = FetchType; exports.encodeSubgroupStream = encodeSubgroupStream; exports.encodeDatagram = encodeDatagram; exports.encodeFetchStream = encodeFetchStream; exports.decodeSubgroupStream = decodeSubgroupStream; exports.decodeDatagram = decodeDatagram; exports.decodeFetchStream = decodeFetchStream; exports.decodeDataStream = decodeDataStream; exports.createSubgroupStreamDecoder = createSubgroupStreamDecoder; exports.createFetchStreamDecoder = createFetchStreamDecoder; exports.createDataStreamDecoder = createDataStreamDecoder; exports.encodeMessage = encodeMessage; exports.decodeMessage = decodeMessage; exports.createStreamDecoder = createStreamDecoder; exports.createDraft14Codec = createDraft14Codec;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { B as BaseCodec, b as DecodeResult } from './types-DuIO7cWK.cjs';
|
|
2
|
-
import { D as Draft14Message, f as SubgroupStream, d as DatagramObject, e as FetchStream, c as Draft14DataStream, S as SubgroupStreamHeader, O as ObjectPayload, F as FetchStreamHeader, b as DataStreamEvent } from './types
|
|
2
|
+
import { D as Draft14Message, f as SubgroupStream, d as DatagramObject, e as FetchStream, c as Draft14DataStream, S as SubgroupStreamHeader, O as ObjectPayload, F as FetchStreamHeader, b as DataStreamEvent } from './types--FGt0sAp.cjs';
|
|
3
3
|
|
|
4
4
|
/**
|
|
5
5
|
* Encode a draft-14 control message with type(varint) + length(uint16 BE) + payload.
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { B as BaseCodec, b as DecodeResult } from './types-DuIO7cWK.js';
|
|
2
|
-
import { D as Draft14Message, f as SubgroupStream, d as DatagramObject, e as FetchStream, c as Draft14DataStream, S as SubgroupStreamHeader, O as ObjectPayload, F as FetchStreamHeader, b as DataStreamEvent } from './types
|
|
2
|
+
import { D as Draft14Message, f as SubgroupStream, d as DatagramObject, e as FetchStream, c as Draft14DataStream, S as SubgroupStreamHeader, O as ObjectPayload, F as FetchStreamHeader, b as DataStreamEvent } from './types--FGt0sAp.js';
|
|
3
3
|
|
|
4
4
|
/**
|
|
5
5
|
* Encode a draft-14 control message with type(varint) + length(uint16 BE) + payload.
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export { D as Draft08Codec, c as createDraft08Codec, a as createStreamDecoder, d as decodeMessage, e as encodeMessage } from './codec-R9TJCq-E.cjs';
|
|
2
2
|
import { b as Draft08DataStream, c as DatagramObject, d as DatagramStatusObject, F as FetchStream, S as SubgroupStream, a as Draft08MessageType, D as Draft08Message } from './types-jV1yDDBA.cjs';
|
|
3
3
|
export { e as DataStreamEvent, f as DataStreamHeader, g as Draft08Announce, h as Draft08AnnounceCancel, i as Draft08AnnounceError, j as Draft08AnnounceOk, k as Draft08BaseMessage, l as Draft08ClientSetup, m as Draft08Fetch, n as Draft08FetchCancel, o as Draft08FetchError, p as Draft08FetchOk, q as Draft08GoAway, r as Draft08MaxSubscribeId, s as Draft08Params, t as Draft08ServerSetup, u as Draft08SetupParams, v as Draft08Subscribe, w as Draft08SubscribeAnnounces, x as Draft08SubscribeAnnouncesError, y as Draft08SubscribeAnnouncesOk, z as Draft08SubscribeDone, A as Draft08SubscribeError, B as Draft08SubscribeOk, C as Draft08SubscribeUpdate, E as Draft08SubscribesBlocked, G as Draft08TrackStatus, H as Draft08TrackStatusRequest, I as Draft08Unannounce, J as Draft08Unsubscribe, K as Draft08UnsubscribeAnnounces, L as FetchObjectPayload, M as FetchStreamHeader, N as JoiningFetch, O as ObjectPayload, P as StandaloneFetch, Q as SubgroupStreamHeader, U as UnknownParam } from './types-jV1yDDBA.cjs';
|
|
4
|
-
export { createDraft08SessionState } from './
|
|
4
|
+
export { createDraft08SessionState } from './draft08-session.cjs';
|
|
5
5
|
import { g as SessionPhase, j as SubscriptionState, b as AnnounceState, c as FetchState, V as ValidationResult, T as TransitionResult } from './session-types-C7UONex5.cjs';
|
|
6
6
|
export { A as AnnouncePhase, F as FetchPhase, P as ProtocolViolation, d as ProtocolViolationCode, a as SessionState, h as SideEffect, i as SubscriptionPhase } from './session-types-C7UONex5.cjs';
|
|
7
7
|
import { b as DecodeResult } from './types-DuIO7cWK.cjs';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export { D as Draft08Codec, c as createDraft08Codec, a as createStreamDecoder, d as decodeMessage, e as encodeMessage } from './codec-wtt6WF1K.js';
|
|
2
2
|
import { b as Draft08DataStream, c as DatagramObject, d as DatagramStatusObject, F as FetchStream, S as SubgroupStream, a as Draft08MessageType, D as Draft08Message } from './types-jV1yDDBA.js';
|
|
3
3
|
export { e as DataStreamEvent, f as DataStreamHeader, g as Draft08Announce, h as Draft08AnnounceCancel, i as Draft08AnnounceError, j as Draft08AnnounceOk, k as Draft08BaseMessage, l as Draft08ClientSetup, m as Draft08Fetch, n as Draft08FetchCancel, o as Draft08FetchError, p as Draft08FetchOk, q as Draft08GoAway, r as Draft08MaxSubscribeId, s as Draft08Params, t as Draft08ServerSetup, u as Draft08SetupParams, v as Draft08Subscribe, w as Draft08SubscribeAnnounces, x as Draft08SubscribeAnnouncesError, y as Draft08SubscribeAnnouncesOk, z as Draft08SubscribeDone, A as Draft08SubscribeError, B as Draft08SubscribeOk, C as Draft08SubscribeUpdate, E as Draft08SubscribesBlocked, G as Draft08TrackStatus, H as Draft08TrackStatusRequest, I as Draft08Unannounce, J as Draft08Unsubscribe, K as Draft08UnsubscribeAnnounces, L as FetchObjectPayload, M as FetchStreamHeader, N as JoiningFetch, O as ObjectPayload, P as StandaloneFetch, Q as SubgroupStreamHeader, U as UnknownParam } from './types-jV1yDDBA.js';
|
|
4
|
-
export { createDraft08SessionState } from './
|
|
4
|
+
export { createDraft08SessionState } from './draft08-session.js';
|
|
5
5
|
import { g as SessionPhase, j as SubscriptionState, b as AnnounceState, c as FetchState, V as ValidationResult, T as TransitionResult } from './session-types-X-IYEGoG.js';
|
|
6
6
|
export { A as AnnouncePhase, F as FetchPhase, P as ProtocolViolation, d as ProtocolViolationCode, a as SessionState, h as SideEffect, i as SubscriptionPhase } from './session-types-X-IYEGoG.js';
|
|
7
7
|
import { b as DecodeResult } from './types-DuIO7cWK.js';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export { D as Draft09Codec, c as createDraft09Codec, a as createStreamDecoder, d as decodeMessage, e as encodeMessage } from './codec-j819z_hL.cjs';
|
|
2
2
|
import { b as Draft09DataStream, c as DatagramObject, d as DatagramStatusObject, F as FetchStream, S as SubgroupStream, a as Draft09MessageType, D as Draft09Message } from './types-B3g5G9KP.cjs';
|
|
3
3
|
export { e as DataStreamEvent, f as DataStreamHeader, g as Draft09Announce, h as Draft09AnnounceCancel, i as Draft09AnnounceError, j as Draft09AnnounceOk, k as Draft09BaseMessage, l as Draft09ClientSetup, m as Draft09Fetch, n as Draft09FetchCancel, o as Draft09FetchError, p as Draft09FetchOk, q as Draft09GoAway, r as Draft09MaxSubscribeId, s as Draft09Params, t as Draft09ServerSetup, u as Draft09SetupParams, v as Draft09Subscribe, w as Draft09SubscribeAnnounces, x as Draft09SubscribeAnnouncesError, y as Draft09SubscribeAnnouncesOk, z as Draft09SubscribeDone, A as Draft09SubscribeError, B as Draft09SubscribeOk, C as Draft09SubscribeUpdate, E as Draft09SubscribesBlocked, G as Draft09TrackStatus, H as Draft09TrackStatusRequest, I as Draft09Unannounce, J as Draft09Unsubscribe, K as Draft09UnsubscribeAnnounces, L as FetchObjectPayload, M as FetchStreamHeader, N as JoiningFetch, O as ObjectPayload, P as StandaloneFetch, Q as SubgroupStreamHeader, U as UnknownParam } from './types-B3g5G9KP.cjs';
|
|
4
|
-
export { createDraft09SessionState } from './
|
|
4
|
+
export { createDraft09SessionState } from './draft09-session.cjs';
|
|
5
5
|
import { g as SessionPhase, j as SubscriptionState, b as AnnounceState, c as FetchState, V as ValidationResult, T as TransitionResult } from './session-types-C7UONex5.cjs';
|
|
6
6
|
export { A as AnnouncePhase, F as FetchPhase, P as ProtocolViolation, d as ProtocolViolationCode, a as SessionState, h as SideEffect, i as SubscriptionPhase } from './session-types-C7UONex5.cjs';
|
|
7
7
|
import { b as DecodeResult } from './types-DuIO7cWK.cjs';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export { D as Draft09Codec, c as createDraft09Codec, a as createStreamDecoder, d as decodeMessage, e as encodeMessage } from './codec-3Ppy_5Gd.js';
|
|
2
2
|
import { b as Draft09DataStream, c as DatagramObject, d as DatagramStatusObject, F as FetchStream, S as SubgroupStream, a as Draft09MessageType, D as Draft09Message } from './types-B3g5G9KP.js';
|
|
3
3
|
export { e as DataStreamEvent, f as DataStreamHeader, g as Draft09Announce, h as Draft09AnnounceCancel, i as Draft09AnnounceError, j as Draft09AnnounceOk, k as Draft09BaseMessage, l as Draft09ClientSetup, m as Draft09Fetch, n as Draft09FetchCancel, o as Draft09FetchError, p as Draft09FetchOk, q as Draft09GoAway, r as Draft09MaxSubscribeId, s as Draft09Params, t as Draft09ServerSetup, u as Draft09SetupParams, v as Draft09Subscribe, w as Draft09SubscribeAnnounces, x as Draft09SubscribeAnnouncesError, y as Draft09SubscribeAnnouncesOk, z as Draft09SubscribeDone, A as Draft09SubscribeError, B as Draft09SubscribeOk, C as Draft09SubscribeUpdate, E as Draft09SubscribesBlocked, G as Draft09TrackStatus, H as Draft09TrackStatusRequest, I as Draft09Unannounce, J as Draft09Unsubscribe, K as Draft09UnsubscribeAnnounces, L as FetchObjectPayload, M as FetchStreamHeader, N as JoiningFetch, O as ObjectPayload, P as StandaloneFetch, Q as SubgroupStreamHeader, U as UnknownParam } from './types-B3g5G9KP.js';
|
|
4
|
-
export { createDraft09SessionState } from './
|
|
4
|
+
export { createDraft09SessionState } from './draft09-session.js';
|
|
5
5
|
import { g as SessionPhase, j as SubscriptionState, b as AnnounceState, c as FetchState, V as ValidationResult, T as TransitionResult } from './session-types-X-IYEGoG.js';
|
|
6
6
|
export { A as AnnouncePhase, F as FetchPhase, P as ProtocolViolation, d as ProtocolViolationCode, a as SessionState, h as SideEffect, i as SubscriptionPhase } from './session-types-X-IYEGoG.js';
|
|
7
7
|
import { b as DecodeResult } from './types-DuIO7cWK.js';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { k as SessionStateOptionsRole, a as SessionState } from './session-types-C7UONex5.cjs';
|
|
2
2
|
export { F as FetchPhase, c as FetchState, P as ProtocolViolation, d as ProtocolViolationCode, e as PublishPhase, f as PublishState, g as SessionPhase, h as SideEffect, i as SubscriptionPhase, j as SubscriptionState, T as TransitionResult, V as ValidationResult } from './session-types-C7UONex5.cjs';
|
|
3
|
-
import { D as Draft14Message, a as Draft14MessageType } from './types
|
|
3
|
+
import { D as Draft14Message, a as Draft14MessageType } from './types--FGt0sAp.cjs';
|
|
4
4
|
import './types-DuIO7cWK.cjs';
|
|
5
5
|
|
|
6
6
|
declare function createDraft14SessionState(role: SessionStateOptionsRole): SessionState<Draft14Message, Draft14MessageType>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { k as SessionStateOptionsRole, a as SessionState } from './session-types-X-IYEGoG.js';
|
|
2
2
|
export { F as FetchPhase, c as FetchState, P as ProtocolViolation, d as ProtocolViolationCode, e as PublishPhase, f as PublishState, g as SessionPhase, h as SideEffect, i as SubscriptionPhase, j as SubscriptionState, T as TransitionResult, V as ValidationResult } from './session-types-X-IYEGoG.js';
|
|
3
|
-
import { D as Draft14Message, a as Draft14MessageType } from './types
|
|
3
|
+
import { D as Draft14Message, a as Draft14MessageType } from './types--FGt0sAp.js';
|
|
4
4
|
import './types-DuIO7cWK.js';
|
|
5
5
|
|
|
6
6
|
declare function createDraft14SessionState(role: SessionStateOptionsRole): SessionState<Draft14Message, Draft14MessageType>;
|
package/dist/draft14.cjs
CHANGED
|
@@ -51,7 +51,8 @@
|
|
|
51
51
|
|
|
52
52
|
|
|
53
53
|
|
|
54
|
-
|
|
54
|
+
|
|
55
|
+
var _chunkXHDPQHYRcjs = require('./chunk-XHDPQHYR.cjs');
|
|
55
56
|
|
|
56
57
|
|
|
57
58
|
|
|
@@ -128,4 +129,5 @@ var DRAFT_VERSION = 0xff00000en;
|
|
|
128
129
|
|
|
129
130
|
|
|
130
131
|
|
|
131
|
-
|
|
132
|
+
|
|
133
|
+
exports.BIDIRECTIONAL_MESSAGES = _chunkE65QKRSNcjs.BIDIRECTIONAL_MESSAGES; exports.CLIENT_ONLY_MESSAGES = _chunkE65QKRSNcjs.CLIENT_ONLY_MESSAGES; exports.CONTROL_MESSAGES = _chunkE65QKRSNcjs.CONTROL_MESSAGES; exports.DRAFT_VERSION = DRAFT_VERSION; exports.Draft14SessionFSM = _chunkE65QKRSNcjs.Draft14SessionFSM; exports.FetchType = _chunkXHDPQHYRcjs.FetchType; exports.FilterType = _chunkXHDPQHYRcjs.FilterType; exports.GroupOrder = _chunkXHDPQHYRcjs.GroupOrder; exports.MESSAGE_ID_MAP = _chunkXHDPQHYRcjs.MESSAGE_ID_MAP; exports.MESSAGE_TYPE_MAP = _chunkXHDPQHYRcjs.MESSAGE_TYPE_MAP; exports.MSG_CLIENT_SETUP = _chunkXHDPQHYRcjs.MSG_CLIENT_SETUP; exports.MSG_FETCH = _chunkXHDPQHYRcjs.MSG_FETCH; exports.MSG_FETCH_CANCEL = _chunkXHDPQHYRcjs.MSG_FETCH_CANCEL; exports.MSG_FETCH_ERROR = _chunkXHDPQHYRcjs.MSG_FETCH_ERROR; exports.MSG_FETCH_OK = _chunkXHDPQHYRcjs.MSG_FETCH_OK; exports.MSG_GOAWAY = _chunkXHDPQHYRcjs.MSG_GOAWAY; exports.MSG_MAX_REQUEST_ID = _chunkXHDPQHYRcjs.MSG_MAX_REQUEST_ID; exports.MSG_PUBLISH = _chunkXHDPQHYRcjs.MSG_PUBLISH; exports.MSG_PUBLISH_DONE = _chunkXHDPQHYRcjs.MSG_PUBLISH_DONE; exports.MSG_PUBLISH_ERROR = _chunkXHDPQHYRcjs.MSG_PUBLISH_ERROR; exports.MSG_PUBLISH_NAMESPACE = _chunkXHDPQHYRcjs.MSG_PUBLISH_NAMESPACE; exports.MSG_PUBLISH_NAMESPACE_CANCEL = _chunkXHDPQHYRcjs.MSG_PUBLISH_NAMESPACE_CANCEL; exports.MSG_PUBLISH_NAMESPACE_DONE = _chunkXHDPQHYRcjs.MSG_PUBLISH_NAMESPACE_DONE; exports.MSG_PUBLISH_NAMESPACE_ERROR = _chunkXHDPQHYRcjs.MSG_PUBLISH_NAMESPACE_ERROR; exports.MSG_PUBLISH_NAMESPACE_OK = _chunkXHDPQHYRcjs.MSG_PUBLISH_NAMESPACE_OK; exports.MSG_PUBLISH_OK = _chunkXHDPQHYRcjs.MSG_PUBLISH_OK; exports.MSG_REQUESTS_BLOCKED = _chunkXHDPQHYRcjs.MSG_REQUESTS_BLOCKED; exports.MSG_SERVER_SETUP = _chunkXHDPQHYRcjs.MSG_SERVER_SETUP; exports.MSG_SUBSCRIBE = _chunkXHDPQHYRcjs.MSG_SUBSCRIBE; exports.MSG_SUBSCRIBE_ERROR = _chunkXHDPQHYRcjs.MSG_SUBSCRIBE_ERROR; exports.MSG_SUBSCRIBE_NAMESPACE = _chunkXHDPQHYRcjs.MSG_SUBSCRIBE_NAMESPACE; exports.MSG_SUBSCRIBE_NAMESPACE_ERROR = _chunkXHDPQHYRcjs.MSG_SUBSCRIBE_NAMESPACE_ERROR; exports.MSG_SUBSCRIBE_NAMESPACE_OK = _chunkXHDPQHYRcjs.MSG_SUBSCRIBE_NAMESPACE_OK; exports.MSG_SUBSCRIBE_OK = _chunkXHDPQHYRcjs.MSG_SUBSCRIBE_OK; exports.MSG_SUBSCRIBE_UPDATE = _chunkXHDPQHYRcjs.MSG_SUBSCRIBE_UPDATE; exports.MSG_TRACK_STATUS = _chunkXHDPQHYRcjs.MSG_TRACK_STATUS; exports.MSG_TRACK_STATUS_ERROR = _chunkXHDPQHYRcjs.MSG_TRACK_STATUS_ERROR; exports.MSG_TRACK_STATUS_OK = _chunkXHDPQHYRcjs.MSG_TRACK_STATUS_OK; exports.MSG_UNSUBSCRIBE = _chunkXHDPQHYRcjs.MSG_UNSUBSCRIBE; exports.MSG_UNSUBSCRIBE_NAMESPACE = _chunkXHDPQHYRcjs.MSG_UNSUBSCRIBE_NAMESPACE; exports.PARAM_MAX_REQUEST_ID = _chunkXHDPQHYRcjs.PARAM_MAX_REQUEST_ID; exports.PARAM_MOQT_IMPLEMENTATION = _chunkXHDPQHYRcjs.PARAM_MOQT_IMPLEMENTATION; exports.PARAM_PATH = _chunkXHDPQHYRcjs.PARAM_PATH; exports.PARAM_ROLE = _chunkXHDPQHYRcjs.PARAM_ROLE; exports.SERVER_ONLY_MESSAGES = _chunkE65QKRSNcjs.SERVER_ONLY_MESSAGES; exports.createDataStreamDecoder = _chunkXHDPQHYRcjs.createDataStreamDecoder; exports.createDraft14Codec = _chunkXHDPQHYRcjs.createDraft14Codec; exports.createDraft14SessionState = _chunkE65QKRSNcjs.createDraft14SessionState; exports.createFetchStreamDecoder = _chunkXHDPQHYRcjs.createFetchStreamDecoder; exports.createStreamDecoder = _chunkXHDPQHYRcjs.createStreamDecoder; exports.createSubgroupStreamDecoder = _chunkXHDPQHYRcjs.createSubgroupStreamDecoder; exports.decodeDataStream = _chunkXHDPQHYRcjs.decodeDataStream; exports.decodeDatagram = _chunkXHDPQHYRcjs.decodeDatagram; exports.decodeFetchStream = _chunkXHDPQHYRcjs.decodeFetchStream; exports.decodeMessage = _chunkXHDPQHYRcjs.decodeMessage; exports.decodeSubgroupStream = _chunkXHDPQHYRcjs.decodeSubgroupStream; exports.encodeDatagram = _chunkXHDPQHYRcjs.encodeDatagram; exports.encodeFetchStream = _chunkXHDPQHYRcjs.encodeFetchStream; exports.encodeMessage = _chunkXHDPQHYRcjs.encodeMessage; exports.encodeSubgroupStream = _chunkXHDPQHYRcjs.encodeSubgroupStream; exports.getLegalIncoming = _chunkE65QKRSNcjs.getLegalIncoming; exports.getLegalOutgoing = _chunkE65QKRSNcjs.getLegalOutgoing;
|
package/dist/draft14.d.cts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export { D as Draft14Codec, c as createDraft14Codec, a as createStreamDecoder, d as decodeMessage, e as encodeMessage } from './codec-
|
|
2
|
-
import { b as DataStreamEvent, F as FetchStreamHeader, O as ObjectPayload, S as SubgroupStreamHeader, c as Draft14DataStream, d as DatagramObject, e as FetchStream, f as SubgroupStream, a as Draft14MessageType, D as Draft14Message } from './types
|
|
3
|
-
export { A as AuthorizationToken, g as DataStreamHeader, h as Draft14BaseMessage, i as Draft14ClientSetup, j as Draft14Fetch, k as Draft14FetchCancel, l as Draft14FetchError, m as Draft14FetchOk, n as Draft14GoAway, o as Draft14MaxRequestId, p as Draft14Params, q as Draft14Publish, r as Draft14PublishDone, s as Draft14PublishError, t as Draft14PublishNamespace, u as Draft14PublishNamespaceCancel, v as Draft14PublishNamespaceDone, w as Draft14PublishNamespaceError, x as Draft14PublishNamespaceOk, y as Draft14PublishOk, z as Draft14RequestsBlocked, B as Draft14ServerSetup, C as Draft14Subscribe, E as Draft14SubscribeError, G as Draft14SubscribeNamespace, H as Draft14SubscribeNamespaceError, I as Draft14SubscribeNamespaceOk, J as Draft14SubscribeOk, K as Draft14SubscribeUpdate, L as Draft14TrackStatus, M as Draft14TrackStatusError, N as Draft14TrackStatusOk, P as Draft14Unsubscribe, Q as Draft14UnsubscribeNamespace, R as FetchObjectPayload, T as FetchType, U as FetchTypeValue, V as FilterType, W as FilterTypeValue, X as GroupOrder, Y as GroupOrderValue, Z as Location, _ as UnknownParam } from './types
|
|
1
|
+
export { D as Draft14Codec, c as createDraft14Codec, a as createStreamDecoder, d as decodeMessage, e as encodeMessage } from './codec-BO5Go0Lm.cjs';
|
|
2
|
+
import { b as DataStreamEvent, F as FetchStreamHeader, O as ObjectPayload, S as SubgroupStreamHeader, c as Draft14DataStream, d as DatagramObject, e as FetchStream, f as SubgroupStream, a as Draft14MessageType, D as Draft14Message } from './types--FGt0sAp.cjs';
|
|
3
|
+
export { A as AuthorizationToken, g as DataStreamHeader, h as Draft14BaseMessage, i as Draft14ClientSetup, j as Draft14Fetch, k as Draft14FetchCancel, l as Draft14FetchError, m as Draft14FetchOk, n as Draft14GoAway, o as Draft14MaxRequestId, p as Draft14Params, q as Draft14Publish, r as Draft14PublishDone, s as Draft14PublishError, t as Draft14PublishNamespace, u as Draft14PublishNamespaceCancel, v as Draft14PublishNamespaceDone, w as Draft14PublishNamespaceError, x as Draft14PublishNamespaceOk, y as Draft14PublishOk, z as Draft14RequestsBlocked, B as Draft14ServerSetup, C as Draft14Subscribe, E as Draft14SubscribeError, G as Draft14SubscribeNamespace, H as Draft14SubscribeNamespaceError, I as Draft14SubscribeNamespaceOk, J as Draft14SubscribeOk, K as Draft14SubscribeUpdate, L as Draft14TrackStatus, M as Draft14TrackStatusError, N as Draft14TrackStatusOk, P as Draft14Unsubscribe, Q as Draft14UnsubscribeNamespace, R as FetchObjectPayload, T as FetchType, U as FetchTypeValue, V as FilterType, W as FilterTypeValue, X as GroupOrder, Y as GroupOrderValue, Z as Location, _ as UnknownParam } from './types--FGt0sAp.cjs';
|
|
4
4
|
export { createDraft14SessionState } from './draft14-session.cjs';
|
|
5
5
|
import { g as SessionPhase, j as SubscriptionState, b as AnnounceState, f as PublishState, c as FetchState, V as ValidationResult, T as TransitionResult } from './session-types-C7UONex5.cjs';
|
|
6
6
|
export { F as FetchPhase, P as ProtocolViolation, d as ProtocolViolationCode, e as PublishPhase, a as SessionState, h as SideEffect, i as SubscriptionPhase } from './session-types-C7UONex5.cjs';
|
|
@@ -93,6 +93,7 @@ declare const MSG_SERVER_SETUP = 33n;
|
|
|
93
93
|
declare const PARAM_ROLE = 0n;
|
|
94
94
|
declare const PARAM_PATH = 1n;
|
|
95
95
|
declare const PARAM_MAX_REQUEST_ID = 2n;
|
|
96
|
+
declare const PARAM_MOQT_IMPLEMENTATION = 7n;
|
|
96
97
|
declare const MESSAGE_TYPE_MAP: ReadonlyMap<bigint, string>;
|
|
97
98
|
declare const MESSAGE_ID_MAP: ReadonlyMap<string, bigint>;
|
|
98
99
|
|
|
@@ -161,4 +162,4 @@ declare class Draft14SessionFSM {
|
|
|
161
162
|
|
|
162
163
|
declare const DRAFT_VERSION = 4278190094n;
|
|
163
164
|
|
|
164
|
-
export { BIDIRECTIONAL_MESSAGES, CLIENT_ONLY_MESSAGES, CONTROL_MESSAGES, DRAFT_VERSION, DataStreamEvent, DatagramObject, Draft14DataStream, Draft14Message, Draft14MessageType, Draft14SessionFSM, FetchState, FetchStream, FetchStreamHeader, MESSAGE_ID_MAP, MESSAGE_TYPE_MAP, MSG_CLIENT_SETUP, MSG_FETCH, MSG_FETCH_CANCEL, MSG_FETCH_ERROR, MSG_FETCH_OK, MSG_GOAWAY, MSG_MAX_REQUEST_ID, MSG_PUBLISH, MSG_PUBLISH_DONE, MSG_PUBLISH_ERROR, MSG_PUBLISH_NAMESPACE, MSG_PUBLISH_NAMESPACE_CANCEL, MSG_PUBLISH_NAMESPACE_DONE, MSG_PUBLISH_NAMESPACE_ERROR, MSG_PUBLISH_NAMESPACE_OK, MSG_PUBLISH_OK, MSG_REQUESTS_BLOCKED, MSG_SERVER_SETUP, MSG_SUBSCRIBE, MSG_SUBSCRIBE_ERROR, MSG_SUBSCRIBE_NAMESPACE, MSG_SUBSCRIBE_NAMESPACE_ERROR, MSG_SUBSCRIBE_NAMESPACE_OK, MSG_SUBSCRIBE_OK, MSG_SUBSCRIBE_UPDATE, MSG_TRACK_STATUS, MSG_TRACK_STATUS_ERROR, MSG_TRACK_STATUS_OK, MSG_UNSUBSCRIBE, MSG_UNSUBSCRIBE_NAMESPACE, ObjectPayload, PARAM_MAX_REQUEST_ID, PARAM_PATH, PARAM_ROLE, PublishState, SERVER_ONLY_MESSAGES, SessionPhase, SubgroupStream, SubgroupStreamHeader, SubscriptionState, TransitionResult, ValidationResult, createDataStreamDecoder, createFetchStreamDecoder, createSubgroupStreamDecoder, decodeDataStream, decodeDatagram, decodeFetchStream, decodeSubgroupStream, encodeDatagram, encodeFetchStream, encodeSubgroupStream, getLegalIncoming, getLegalOutgoing };
|
|
165
|
+
export { BIDIRECTIONAL_MESSAGES, CLIENT_ONLY_MESSAGES, CONTROL_MESSAGES, DRAFT_VERSION, DataStreamEvent, DatagramObject, Draft14DataStream, Draft14Message, Draft14MessageType, Draft14SessionFSM, FetchState, FetchStream, FetchStreamHeader, MESSAGE_ID_MAP, MESSAGE_TYPE_MAP, MSG_CLIENT_SETUP, MSG_FETCH, MSG_FETCH_CANCEL, MSG_FETCH_ERROR, MSG_FETCH_OK, MSG_GOAWAY, MSG_MAX_REQUEST_ID, MSG_PUBLISH, MSG_PUBLISH_DONE, MSG_PUBLISH_ERROR, MSG_PUBLISH_NAMESPACE, MSG_PUBLISH_NAMESPACE_CANCEL, MSG_PUBLISH_NAMESPACE_DONE, MSG_PUBLISH_NAMESPACE_ERROR, MSG_PUBLISH_NAMESPACE_OK, MSG_PUBLISH_OK, MSG_REQUESTS_BLOCKED, MSG_SERVER_SETUP, MSG_SUBSCRIBE, MSG_SUBSCRIBE_ERROR, MSG_SUBSCRIBE_NAMESPACE, MSG_SUBSCRIBE_NAMESPACE_ERROR, MSG_SUBSCRIBE_NAMESPACE_OK, MSG_SUBSCRIBE_OK, MSG_SUBSCRIBE_UPDATE, MSG_TRACK_STATUS, MSG_TRACK_STATUS_ERROR, MSG_TRACK_STATUS_OK, MSG_UNSUBSCRIBE, MSG_UNSUBSCRIBE_NAMESPACE, ObjectPayload, PARAM_MAX_REQUEST_ID, PARAM_MOQT_IMPLEMENTATION, PARAM_PATH, PARAM_ROLE, PublishState, SERVER_ONLY_MESSAGES, SessionPhase, SubgroupStream, SubgroupStreamHeader, SubscriptionState, TransitionResult, ValidationResult, createDataStreamDecoder, createFetchStreamDecoder, createSubgroupStreamDecoder, decodeDataStream, decodeDatagram, decodeFetchStream, decodeSubgroupStream, encodeDatagram, encodeFetchStream, encodeSubgroupStream, getLegalIncoming, getLegalOutgoing };
|
package/dist/draft14.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export { D as Draft14Codec, c as createDraft14Codec, a as createStreamDecoder, d as decodeMessage, e as encodeMessage } from './codec-
|
|
2
|
-
import { b as DataStreamEvent, F as FetchStreamHeader, O as ObjectPayload, S as SubgroupStreamHeader, c as Draft14DataStream, d as DatagramObject, e as FetchStream, f as SubgroupStream, a as Draft14MessageType, D as Draft14Message } from './types
|
|
3
|
-
export { A as AuthorizationToken, g as DataStreamHeader, h as Draft14BaseMessage, i as Draft14ClientSetup, j as Draft14Fetch, k as Draft14FetchCancel, l as Draft14FetchError, m as Draft14FetchOk, n as Draft14GoAway, o as Draft14MaxRequestId, p as Draft14Params, q as Draft14Publish, r as Draft14PublishDone, s as Draft14PublishError, t as Draft14PublishNamespace, u as Draft14PublishNamespaceCancel, v as Draft14PublishNamespaceDone, w as Draft14PublishNamespaceError, x as Draft14PublishNamespaceOk, y as Draft14PublishOk, z as Draft14RequestsBlocked, B as Draft14ServerSetup, C as Draft14Subscribe, E as Draft14SubscribeError, G as Draft14SubscribeNamespace, H as Draft14SubscribeNamespaceError, I as Draft14SubscribeNamespaceOk, J as Draft14SubscribeOk, K as Draft14SubscribeUpdate, L as Draft14TrackStatus, M as Draft14TrackStatusError, N as Draft14TrackStatusOk, P as Draft14Unsubscribe, Q as Draft14UnsubscribeNamespace, R as FetchObjectPayload, T as FetchType, U as FetchTypeValue, V as FilterType, W as FilterTypeValue, X as GroupOrder, Y as GroupOrderValue, Z as Location, _ as UnknownParam } from './types
|
|
1
|
+
export { D as Draft14Codec, c as createDraft14Codec, a as createStreamDecoder, d as decodeMessage, e as encodeMessage } from './codec-iMEwV1UO.js';
|
|
2
|
+
import { b as DataStreamEvent, F as FetchStreamHeader, O as ObjectPayload, S as SubgroupStreamHeader, c as Draft14DataStream, d as DatagramObject, e as FetchStream, f as SubgroupStream, a as Draft14MessageType, D as Draft14Message } from './types--FGt0sAp.js';
|
|
3
|
+
export { A as AuthorizationToken, g as DataStreamHeader, h as Draft14BaseMessage, i as Draft14ClientSetup, j as Draft14Fetch, k as Draft14FetchCancel, l as Draft14FetchError, m as Draft14FetchOk, n as Draft14GoAway, o as Draft14MaxRequestId, p as Draft14Params, q as Draft14Publish, r as Draft14PublishDone, s as Draft14PublishError, t as Draft14PublishNamespace, u as Draft14PublishNamespaceCancel, v as Draft14PublishNamespaceDone, w as Draft14PublishNamespaceError, x as Draft14PublishNamespaceOk, y as Draft14PublishOk, z as Draft14RequestsBlocked, B as Draft14ServerSetup, C as Draft14Subscribe, E as Draft14SubscribeError, G as Draft14SubscribeNamespace, H as Draft14SubscribeNamespaceError, I as Draft14SubscribeNamespaceOk, J as Draft14SubscribeOk, K as Draft14SubscribeUpdate, L as Draft14TrackStatus, M as Draft14TrackStatusError, N as Draft14TrackStatusOk, P as Draft14Unsubscribe, Q as Draft14UnsubscribeNamespace, R as FetchObjectPayload, T as FetchType, U as FetchTypeValue, V as FilterType, W as FilterTypeValue, X as GroupOrder, Y as GroupOrderValue, Z as Location, _ as UnknownParam } from './types--FGt0sAp.js';
|
|
4
4
|
export { createDraft14SessionState } from './draft14-session.js';
|
|
5
5
|
import { g as SessionPhase, j as SubscriptionState, b as AnnounceState, f as PublishState, c as FetchState, V as ValidationResult, T as TransitionResult } from './session-types-X-IYEGoG.js';
|
|
6
6
|
export { F as FetchPhase, P as ProtocolViolation, d as ProtocolViolationCode, e as PublishPhase, a as SessionState, h as SideEffect, i as SubscriptionPhase } from './session-types-X-IYEGoG.js';
|
|
@@ -93,6 +93,7 @@ declare const MSG_SERVER_SETUP = 33n;
|
|
|
93
93
|
declare const PARAM_ROLE = 0n;
|
|
94
94
|
declare const PARAM_PATH = 1n;
|
|
95
95
|
declare const PARAM_MAX_REQUEST_ID = 2n;
|
|
96
|
+
declare const PARAM_MOQT_IMPLEMENTATION = 7n;
|
|
96
97
|
declare const MESSAGE_TYPE_MAP: ReadonlyMap<bigint, string>;
|
|
97
98
|
declare const MESSAGE_ID_MAP: ReadonlyMap<string, bigint>;
|
|
98
99
|
|
|
@@ -161,4 +162,4 @@ declare class Draft14SessionFSM {
|
|
|
161
162
|
|
|
162
163
|
declare const DRAFT_VERSION = 4278190094n;
|
|
163
164
|
|
|
164
|
-
export { BIDIRECTIONAL_MESSAGES, CLIENT_ONLY_MESSAGES, CONTROL_MESSAGES, DRAFT_VERSION, DataStreamEvent, DatagramObject, Draft14DataStream, Draft14Message, Draft14MessageType, Draft14SessionFSM, FetchState, FetchStream, FetchStreamHeader, MESSAGE_ID_MAP, MESSAGE_TYPE_MAP, MSG_CLIENT_SETUP, MSG_FETCH, MSG_FETCH_CANCEL, MSG_FETCH_ERROR, MSG_FETCH_OK, MSG_GOAWAY, MSG_MAX_REQUEST_ID, MSG_PUBLISH, MSG_PUBLISH_DONE, MSG_PUBLISH_ERROR, MSG_PUBLISH_NAMESPACE, MSG_PUBLISH_NAMESPACE_CANCEL, MSG_PUBLISH_NAMESPACE_DONE, MSG_PUBLISH_NAMESPACE_ERROR, MSG_PUBLISH_NAMESPACE_OK, MSG_PUBLISH_OK, MSG_REQUESTS_BLOCKED, MSG_SERVER_SETUP, MSG_SUBSCRIBE, MSG_SUBSCRIBE_ERROR, MSG_SUBSCRIBE_NAMESPACE, MSG_SUBSCRIBE_NAMESPACE_ERROR, MSG_SUBSCRIBE_NAMESPACE_OK, MSG_SUBSCRIBE_OK, MSG_SUBSCRIBE_UPDATE, MSG_TRACK_STATUS, MSG_TRACK_STATUS_ERROR, MSG_TRACK_STATUS_OK, MSG_UNSUBSCRIBE, MSG_UNSUBSCRIBE_NAMESPACE, ObjectPayload, PARAM_MAX_REQUEST_ID, PARAM_PATH, PARAM_ROLE, PublishState, SERVER_ONLY_MESSAGES, SessionPhase, SubgroupStream, SubgroupStreamHeader, SubscriptionState, TransitionResult, ValidationResult, createDataStreamDecoder, createFetchStreamDecoder, createSubgroupStreamDecoder, decodeDataStream, decodeDatagram, decodeFetchStream, decodeSubgroupStream, encodeDatagram, encodeFetchStream, encodeSubgroupStream, getLegalIncoming, getLegalOutgoing };
|
|
165
|
+
export { BIDIRECTIONAL_MESSAGES, CLIENT_ONLY_MESSAGES, CONTROL_MESSAGES, DRAFT_VERSION, DataStreamEvent, DatagramObject, Draft14DataStream, Draft14Message, Draft14MessageType, Draft14SessionFSM, FetchState, FetchStream, FetchStreamHeader, MESSAGE_ID_MAP, MESSAGE_TYPE_MAP, MSG_CLIENT_SETUP, MSG_FETCH, MSG_FETCH_CANCEL, MSG_FETCH_ERROR, MSG_FETCH_OK, MSG_GOAWAY, MSG_MAX_REQUEST_ID, MSG_PUBLISH, MSG_PUBLISH_DONE, MSG_PUBLISH_ERROR, MSG_PUBLISH_NAMESPACE, MSG_PUBLISH_NAMESPACE_CANCEL, MSG_PUBLISH_NAMESPACE_DONE, MSG_PUBLISH_NAMESPACE_ERROR, MSG_PUBLISH_NAMESPACE_OK, MSG_PUBLISH_OK, MSG_REQUESTS_BLOCKED, MSG_SERVER_SETUP, MSG_SUBSCRIBE, MSG_SUBSCRIBE_ERROR, MSG_SUBSCRIBE_NAMESPACE, MSG_SUBSCRIBE_NAMESPACE_ERROR, MSG_SUBSCRIBE_NAMESPACE_OK, MSG_SUBSCRIBE_OK, MSG_SUBSCRIBE_UPDATE, MSG_TRACK_STATUS, MSG_TRACK_STATUS_ERROR, MSG_TRACK_STATUS_OK, MSG_UNSUBSCRIBE, MSG_UNSUBSCRIBE_NAMESPACE, ObjectPayload, PARAM_MAX_REQUEST_ID, PARAM_MOQT_IMPLEMENTATION, PARAM_PATH, PARAM_ROLE, PublishState, SERVER_ONLY_MESSAGES, SessionPhase, SubgroupStream, SubgroupStreamHeader, SubscriptionState, TransitionResult, ValidationResult, createDataStreamDecoder, createFetchStreamDecoder, createSubgroupStreamDecoder, decodeDataStream, decodeDatagram, decodeFetchStream, decodeSubgroupStream, encodeDatagram, encodeFetchStream, encodeSubgroupStream, getLegalIncoming, getLegalOutgoing };
|
package/dist/draft14.js
CHANGED
|
@@ -35,6 +35,7 @@ import {
|
|
|
35
35
|
MSG_UNSUBSCRIBE,
|
|
36
36
|
MSG_UNSUBSCRIBE_NAMESPACE,
|
|
37
37
|
PARAM_MAX_REQUEST_ID,
|
|
38
|
+
PARAM_MOQT_IMPLEMENTATION,
|
|
38
39
|
PARAM_PATH,
|
|
39
40
|
PARAM_ROLE,
|
|
40
41
|
createDataStreamDecoder,
|
|
@@ -51,7 +52,7 @@ import {
|
|
|
51
52
|
encodeFetchStream,
|
|
52
53
|
encodeMessage,
|
|
53
54
|
encodeSubgroupStream
|
|
54
|
-
} from "./chunk-
|
|
55
|
+
} from "./chunk-BLEFTWEB.js";
|
|
55
56
|
import {
|
|
56
57
|
BIDIRECTIONAL_MESSAGES,
|
|
57
58
|
CLIENT_ONLY_MESSAGES,
|
|
@@ -108,6 +109,7 @@ export {
|
|
|
108
109
|
MSG_UNSUBSCRIBE,
|
|
109
110
|
MSG_UNSUBSCRIBE_NAMESPACE,
|
|
110
111
|
PARAM_MAX_REQUEST_ID,
|
|
112
|
+
PARAM_MOQT_IMPLEMENTATION,
|
|
111
113
|
PARAM_PATH,
|
|
112
114
|
PARAM_ROLE,
|
|
113
115
|
SERVER_ONLY_MESSAGES,
|
package/dist/index.cjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunkXHDPQHYRcjs = require('./chunk-XHDPQHYR.cjs');
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
var _chunkOKG2HT25cjs = require('./chunk-OKG2HT25.cjs');
|
|
@@ -73,7 +73,7 @@ Supported draft values: ${Object.keys(DRAFT_VERSIONS).join(", ")}`
|
|
|
73
73
|
case "13":
|
|
74
74
|
return _chunk3XKO6PCRcjs.createDraft13Codec.call(void 0, );
|
|
75
75
|
case "14":
|
|
76
|
-
return
|
|
76
|
+
return _chunkXHDPQHYRcjs.createDraft14Codec.call(void 0, );
|
|
77
77
|
case "15":
|
|
78
78
|
return _chunkOKG2HT25cjs.createDraft15Codec.call(void 0, );
|
|
79
79
|
case "16":
|
package/dist/index.d.cts
CHANGED
|
@@ -7,7 +7,7 @@ import { D as Draft10Codec } from './codec-DDUBJGn0.cjs';
|
|
|
7
7
|
import { D as Draft11Codec } from './codec-w8z2j_uo.cjs';
|
|
8
8
|
import { D as Draft12Codec } from './codec-COy4uuPO.cjs';
|
|
9
9
|
import { D as Draft13Codec } from './codec-DoOGjjDq.cjs';
|
|
10
|
-
import { D as Draft14Codec } from './codec-
|
|
10
|
+
import { D as Draft14Codec } from './codec-BO5Go0Lm.cjs';
|
|
11
11
|
import { D as Draft15Codec } from './codec-BB0U8MF2.cjs';
|
|
12
12
|
import { D as Draft16Codec } from './codec-z6_2PSzi.cjs';
|
|
13
13
|
import { D as Draft17Codec } from './codec-BN6jk0Td.cjs';
|
|
@@ -18,7 +18,7 @@ import './types-0IWbU9Z_.cjs';
|
|
|
18
18
|
import './types--Q7_DcvP.cjs';
|
|
19
19
|
import './types-C2qKTRR_.cjs';
|
|
20
20
|
import './types-DrQpTW1G.cjs';
|
|
21
|
-
import './types
|
|
21
|
+
import './types--FGt0sAp.cjs';
|
|
22
22
|
import './types-DuxfOYiO.cjs';
|
|
23
23
|
import './types-BFpFNM_m.cjs';
|
|
24
24
|
import './types-Br7fm2mf.cjs';
|
package/dist/index.d.ts
CHANGED
|
@@ -7,7 +7,7 @@ import { D as Draft10Codec } from './codec-ZwV-Njt6.js';
|
|
|
7
7
|
import { D as Draft11Codec } from './codec-DNfml-se.js';
|
|
8
8
|
import { D as Draft12Codec } from './codec-J7ekOSMc.js';
|
|
9
9
|
import { D as Draft13Codec } from './codec-BU0gaSZm.js';
|
|
10
|
-
import { D as Draft14Codec } from './codec-
|
|
10
|
+
import { D as Draft14Codec } from './codec-iMEwV1UO.js';
|
|
11
11
|
import { D as Draft15Codec } from './codec-BHHfBTnV.js';
|
|
12
12
|
import { D as Draft16Codec } from './codec-C-Yk2RNa.js';
|
|
13
13
|
import { D as Draft17Codec } from './codec-D2QVSH9D.js';
|
|
@@ -18,7 +18,7 @@ import './types-0IWbU9Z_.js';
|
|
|
18
18
|
import './types--Q7_DcvP.js';
|
|
19
19
|
import './types-C2qKTRR_.js';
|
|
20
20
|
import './types-DrQpTW1G.js';
|
|
21
|
-
import './types
|
|
21
|
+
import './types--FGt0sAp.js';
|
|
22
22
|
import './types-DuxfOYiO.js';
|
|
23
23
|
import './types-BFpFNM_m.js';
|
|
24
24
|
import './types-Br7fm2mf.js';
|
package/dist/index.js
CHANGED
package/dist/session.d.cts
CHANGED
|
@@ -8,7 +8,7 @@ import { D as Draft10Message, a as Draft10MessageType } from './types-0IWbU9Z_.c
|
|
|
8
8
|
import { D as Draft11Message, a as Draft11MessageType } from './types--Q7_DcvP.cjs';
|
|
9
9
|
import { D as Draft12Message, a as Draft12MessageType } from './types-C2qKTRR_.cjs';
|
|
10
10
|
import { D as Draft13Message, a as Draft13MessageType } from './types-DrQpTW1G.cjs';
|
|
11
|
-
import { D as Draft14Message, a as Draft14MessageType } from './types
|
|
11
|
+
import { D as Draft14Message, a as Draft14MessageType } from './types--FGt0sAp.cjs';
|
|
12
12
|
import { D as Draft15Message, a as Draft15MessageType } from './types-DuxfOYiO.cjs';
|
|
13
13
|
import { D as Draft16Message, a as Draft16MessageType } from './types-BFpFNM_m.cjs';
|
|
14
14
|
import { D as Draft17Message, a as Draft17MessageType } from './types-Br7fm2mf.cjs';
|
|
@@ -18,8 +18,7 @@ import { D as Draft17Message, a as Draft17MessageType } from './types-Br7fm2mf.c
|
|
|
18
18
|
*
|
|
19
19
|
* Requires a codec instance (which carries the draft version).
|
|
20
20
|
* For direct access, use draft-scoped imports:
|
|
21
|
-
* import {
|
|
22
|
-
* import { createDraft14SessionState } from '@moqtap/codec/draft14/session';
|
|
21
|
+
* import { createDraft17SessionState } from '@moqtap/codec/draft17/session';
|
|
23
22
|
*/
|
|
24
23
|
|
|
25
24
|
type DraftSessionStateMap = {
|
package/dist/session.d.ts
CHANGED
|
@@ -8,7 +8,7 @@ import { D as Draft10Message, a as Draft10MessageType } from './types-0IWbU9Z_.j
|
|
|
8
8
|
import { D as Draft11Message, a as Draft11MessageType } from './types--Q7_DcvP.js';
|
|
9
9
|
import { D as Draft12Message, a as Draft12MessageType } from './types-C2qKTRR_.js';
|
|
10
10
|
import { D as Draft13Message, a as Draft13MessageType } from './types-DrQpTW1G.js';
|
|
11
|
-
import { D as Draft14Message, a as Draft14MessageType } from './types
|
|
11
|
+
import { D as Draft14Message, a as Draft14MessageType } from './types--FGt0sAp.js';
|
|
12
12
|
import { D as Draft15Message, a as Draft15MessageType } from './types-DuxfOYiO.js';
|
|
13
13
|
import { D as Draft16Message, a as Draft16MessageType } from './types-BFpFNM_m.js';
|
|
14
14
|
import { D as Draft17Message, a as Draft17MessageType } from './types-Br7fm2mf.js';
|
|
@@ -18,8 +18,7 @@ import { D as Draft17Message, a as Draft17MessageType } from './types-Br7fm2mf.j
|
|
|
18
18
|
*
|
|
19
19
|
* Requires a codec instance (which carries the draft version).
|
|
20
20
|
* For direct access, use draft-scoped imports:
|
|
21
|
-
* import {
|
|
22
|
-
* import { createDraft14SessionState } from '@moqtap/codec/draft14/session';
|
|
21
|
+
* import { createDraft17SessionState } from '@moqtap/codec/draft17/session';
|
|
23
22
|
*/
|
|
24
23
|
|
|
25
24
|
type DraftSessionStateMap = {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@moqtap/codec",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.1",
|
|
4
4
|
"description": "MoQT wire-format codec and session state machine — multi-draft, zero dependencies",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -41,41 +41,41 @@
|
|
|
41
41
|
"import": "./dist/session.js",
|
|
42
42
|
"require": "./dist/session.cjs"
|
|
43
43
|
},
|
|
44
|
-
"./
|
|
44
|
+
"./draft07": {
|
|
45
45
|
"bun": "./src/drafts/draft07/index.ts",
|
|
46
|
-
"types": "./dist/
|
|
47
|
-
"import": "./dist/
|
|
48
|
-
"require": "./dist/
|
|
46
|
+
"types": "./dist/draft07.d.ts",
|
|
47
|
+
"import": "./dist/draft07.js",
|
|
48
|
+
"require": "./dist/draft07.cjs"
|
|
49
49
|
},
|
|
50
|
-
"./
|
|
50
|
+
"./draft07/session": {
|
|
51
51
|
"bun": "./src/drafts/draft07/session.ts",
|
|
52
|
-
"types": "./dist/
|
|
53
|
-
"import": "./dist/
|
|
54
|
-
"require": "./dist/
|
|
52
|
+
"types": "./dist/draft07-session.d.ts",
|
|
53
|
+
"import": "./dist/draft07-session.js",
|
|
54
|
+
"require": "./dist/draft07-session.cjs"
|
|
55
55
|
},
|
|
56
|
-
"./
|
|
56
|
+
"./draft08": {
|
|
57
57
|
"bun": "./src/drafts/draft08/index.ts",
|
|
58
|
-
"types": "./dist/
|
|
59
|
-
"import": "./dist/
|
|
60
|
-
"require": "./dist/
|
|
58
|
+
"types": "./dist/draft08.d.ts",
|
|
59
|
+
"import": "./dist/draft08.js",
|
|
60
|
+
"require": "./dist/draft08.cjs"
|
|
61
61
|
},
|
|
62
|
-
"./
|
|
62
|
+
"./draft08/session": {
|
|
63
63
|
"bun": "./src/drafts/draft08/session.ts",
|
|
64
|
-
"types": "./dist/
|
|
65
|
-
"import": "./dist/
|
|
66
|
-
"require": "./dist/
|
|
64
|
+
"types": "./dist/draft08-session.d.ts",
|
|
65
|
+
"import": "./dist/draft08-session.js",
|
|
66
|
+
"require": "./dist/draft08-session.cjs"
|
|
67
67
|
},
|
|
68
|
-
"./
|
|
68
|
+
"./draft09": {
|
|
69
69
|
"bun": "./src/drafts/draft09/index.ts",
|
|
70
|
-
"types": "./dist/
|
|
71
|
-
"import": "./dist/
|
|
72
|
-
"require": "./dist/
|
|
70
|
+
"types": "./dist/draft09.d.ts",
|
|
71
|
+
"import": "./dist/draft09.js",
|
|
72
|
+
"require": "./dist/draft09.cjs"
|
|
73
73
|
},
|
|
74
|
-
"./
|
|
74
|
+
"./draft09/session": {
|
|
75
75
|
"bun": "./src/drafts/draft09/session.ts",
|
|
76
|
-
"types": "./dist/
|
|
77
|
-
"import": "./dist/
|
|
78
|
-
"require": "./dist/
|
|
76
|
+
"types": "./dist/draft09-session.d.ts",
|
|
77
|
+
"import": "./dist/draft09-session.js",
|
|
78
|
+
"require": "./dist/draft09-session.cjs"
|
|
79
79
|
},
|
|
80
80
|
"./draft10": {
|
|
81
81
|
"bun": "./src/drafts/draft10/index.ts",
|
|
@@ -36,6 +36,7 @@ import {
|
|
|
36
36
|
MSG_UNSUBSCRIBE,
|
|
37
37
|
MSG_UNSUBSCRIBE_NAMESPACE,
|
|
38
38
|
PARAM_MAX_REQUEST_ID,
|
|
39
|
+
PARAM_MOQT_IMPLEMENTATION,
|
|
39
40
|
PARAM_PATH,
|
|
40
41
|
PARAM_ROLE,
|
|
41
42
|
} from './messages.js'
|
|
@@ -79,6 +80,7 @@ function encodeSetupParams(params: Draft14Params, writer: BufferWriter): void {
|
|
|
79
80
|
if (params.max_request_id !== undefined) count++
|
|
80
81
|
if (params.authority !== undefined) count++
|
|
81
82
|
if (params.max_auth_token_cache_size !== undefined) count++
|
|
83
|
+
if (params.moqt_implementation !== undefined) count++
|
|
82
84
|
if (params.unknown) count += params.unknown.length
|
|
83
85
|
|
|
84
86
|
writer.writeVarInt(count)
|
|
@@ -107,6 +109,12 @@ function encodeSetupParams(params: Draft14Params, writer: BufferWriter): void {
|
|
|
107
109
|
writer.writeVarInt(encoded.byteLength)
|
|
108
110
|
writer.writeBytes(encoded)
|
|
109
111
|
}
|
|
112
|
+
if (params.moqt_implementation !== undefined) {
|
|
113
|
+
writer.writeVarInt(PARAM_MOQT_IMPLEMENTATION)
|
|
114
|
+
const encoded = textEncoder.encode(params.moqt_implementation)
|
|
115
|
+
writer.writeVarInt(encoded.byteLength)
|
|
116
|
+
writer.writeBytes(encoded)
|
|
117
|
+
}
|
|
110
118
|
if (params.unknown) {
|
|
111
119
|
for (const u of params.unknown) {
|
|
112
120
|
const id = BigInt(u.id)
|
|
@@ -151,6 +159,8 @@ function decodeSetupParams(reader: BufferReader): Draft14Params {
|
|
|
151
159
|
result.path = textDecoder.decode(bytes)
|
|
152
160
|
} else if (paramType === PARAM_AUTHORITY) {
|
|
153
161
|
result.authority = textDecoder.decode(bytes)
|
|
162
|
+
} else if (paramType === PARAM_MOQT_IMPLEMENTATION) {
|
|
163
|
+
result.moqt_implementation = textDecoder.decode(bytes)
|
|
154
164
|
} else {
|
|
155
165
|
unknown.push({
|
|
156
166
|
id: `0x${paramType.toString(16)}`,
|
|
@@ -35,6 +35,7 @@ export const MSG_SERVER_SETUP = 0x21n
|
|
|
35
35
|
export const PARAM_ROLE = 0x00n
|
|
36
36
|
export const PARAM_PATH = 0x01n
|
|
37
37
|
export const PARAM_MAX_REQUEST_ID = 0x02n
|
|
38
|
+
export const PARAM_MOQT_IMPLEMENTATION = 0x07n
|
|
38
39
|
|
|
39
40
|
// Map from wire ID to message type name
|
|
40
41
|
export const MESSAGE_TYPE_MAP: ReadonlyMap<bigint, string> = new Map([
|
|
@@ -44,6 +44,7 @@ export interface Draft14Params {
|
|
|
44
44
|
max_request_id?: bigint
|
|
45
45
|
authority?: string
|
|
46
46
|
max_auth_token_cache_size?: bigint
|
|
47
|
+
moqt_implementation?: string // 0x07 odd, length-prefixed UTF-8
|
|
47
48
|
// Message parameters (SUBSCRIBE, PUBLISH, etc.)
|
|
48
49
|
delivery_timeout?: bigint
|
|
49
50
|
authorization_token?: AuthorizationToken
|
package/src/session.ts
CHANGED
|
@@ -3,8 +3,7 @@
|
|
|
3
3
|
*
|
|
4
4
|
* Requires a codec instance (which carries the draft version).
|
|
5
5
|
* For direct access, use draft-scoped imports:
|
|
6
|
-
* import {
|
|
7
|
-
* import { createDraft14SessionState } from '@moqtap/codec/draft14/session';
|
|
6
|
+
* import { createDraft17SessionState } from '@moqtap/codec/draft17/session';
|
|
8
7
|
*/
|
|
9
8
|
|
|
10
9
|
import type { SessionState, SessionStateOptions } from './core/session-types.js'
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|