@inditextech/weave-store-azure-web-pubsub 3.9.1 → 3.10.0
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/dist/server.js +189 -40
- package/dist/server.stats.html +1 -1
- package/package.json +3 -3
package/dist/server.js
CHANGED
|
@@ -637,8 +637,8 @@ var require_depd$1 = __commonJS({ "../../node_modules/depd/index.js"(exports, mo
|
|
|
637
637
|
process.emit("deprecation", err);
|
|
638
638
|
return;
|
|
639
639
|
}
|
|
640
|
-
var format$
|
|
641
|
-
var output = format$
|
|
640
|
+
var format$4 = process.stderr.isTTY ? formatColor$1 : formatPlain$1;
|
|
641
|
+
var output = format$4.call(this, msg, caller, stack.slice(i));
|
|
642
642
|
process.stderr.write(output + "\n", "utf8");
|
|
643
643
|
}
|
|
644
644
|
/**
|
|
@@ -9047,8 +9047,8 @@ var require_content_type = __commonJS({ "../../node_modules/content-type/index.j
|
|
|
9047
9047
|
* quoted-pair = "\" ( HTAB / SP / VCHAR / obs-text )
|
|
9048
9048
|
*/
|
|
9049
9049
|
var PARAM_REGEXP$1 = /; *([!#$%&'*+.^_`|~0-9A-Za-z-]+) *= *("(?:[\u000b\u0020\u0021\u0023-\u005b\u005d-\u007e\u0080-\u00ff]|\\[\u000b\u0020-\u00ff])*"|[!#$%&'*+.^_`|~0-9A-Za-z-]+) */g;
|
|
9050
|
-
var TEXT_REGEXP$
|
|
9051
|
-
var TOKEN_REGEXP$
|
|
9050
|
+
var TEXT_REGEXP$2 = /^[\u000b\u0020-\u007e\u0080-\u00ff]+$/;
|
|
9051
|
+
var TOKEN_REGEXP$2 = /^[!#$%&'*+.^_`|~0-9A-Za-z-]+$/;
|
|
9052
9052
|
/**
|
|
9053
9053
|
* RegExp to match quoted-pair in RFC 7230 sec 3.2.6
|
|
9054
9054
|
*
|
|
@@ -9059,7 +9059,7 @@ var require_content_type = __commonJS({ "../../node_modules/content-type/index.j
|
|
|
9059
9059
|
/**
|
|
9060
9060
|
* RegExp to match chars that must be quoted-pair in RFC 7230 sec 3.2.6
|
|
9061
9061
|
*/
|
|
9062
|
-
var QUOTE_REGEXP$
|
|
9062
|
+
var QUOTE_REGEXP$2 = /([\\"])/g;
|
|
9063
9063
|
/**
|
|
9064
9064
|
* RegExp to match type in RFC 7231 sec 3.1.1.1
|
|
9065
9065
|
*
|
|
@@ -9067,13 +9067,13 @@ var require_content_type = __commonJS({ "../../node_modules/content-type/index.j
|
|
|
9067
9067
|
* type = token
|
|
9068
9068
|
* subtype = token
|
|
9069
9069
|
*/
|
|
9070
|
-
var TYPE_REGEXP$
|
|
9070
|
+
var TYPE_REGEXP$2 = /^[!#$%&'*+.^_`|~0-9A-Za-z-]+\/[!#$%&'*+.^_`|~0-9A-Za-z-]+$/;
|
|
9071
9071
|
/**
|
|
9072
9072
|
* Module exports.
|
|
9073
9073
|
* @public
|
|
9074
9074
|
*/
|
|
9075
|
-
exports.format = format$
|
|
9076
|
-
exports.parse = parse$
|
|
9075
|
+
exports.format = format$3;
|
|
9076
|
+
exports.parse = parse$6;
|
|
9077
9077
|
/**
|
|
9078
9078
|
* Format object to media type.
|
|
9079
9079
|
*
|
|
@@ -9081,19 +9081,19 @@ var require_content_type = __commonJS({ "../../node_modules/content-type/index.j
|
|
|
9081
9081
|
* @return {string}
|
|
9082
9082
|
* @public
|
|
9083
9083
|
*/
|
|
9084
|
-
function format$
|
|
9084
|
+
function format$3(obj) {
|
|
9085
9085
|
if (!obj || typeof obj !== "object") throw new TypeError("argument obj is required");
|
|
9086
9086
|
var parameters = obj.parameters;
|
|
9087
9087
|
var type = obj.type;
|
|
9088
|
-
if (!type || !TYPE_REGEXP$
|
|
9088
|
+
if (!type || !TYPE_REGEXP$2.test(type)) throw new TypeError("invalid type");
|
|
9089
9089
|
var string = type;
|
|
9090
9090
|
if (parameters && typeof parameters === "object") {
|
|
9091
9091
|
var param;
|
|
9092
9092
|
var params = Object.keys(parameters).sort();
|
|
9093
9093
|
for (var i = 0; i < params.length; i++) {
|
|
9094
9094
|
param = params[i];
|
|
9095
|
-
if (!TOKEN_REGEXP$
|
|
9096
|
-
string += "; " + param + "=" + qstring$
|
|
9095
|
+
if (!TOKEN_REGEXP$2.test(param)) throw new TypeError("invalid parameter name");
|
|
9096
|
+
string += "; " + param + "=" + qstring$2(parameters[param]);
|
|
9097
9097
|
}
|
|
9098
9098
|
}
|
|
9099
9099
|
return string;
|
|
@@ -9105,13 +9105,13 @@ var require_content_type = __commonJS({ "../../node_modules/content-type/index.j
|
|
|
9105
9105
|
* @return {Object}
|
|
9106
9106
|
* @public
|
|
9107
9107
|
*/
|
|
9108
|
-
function parse$
|
|
9108
|
+
function parse$6(string) {
|
|
9109
9109
|
if (!string) throw new TypeError("argument string is required");
|
|
9110
9110
|
var header = typeof string === "object" ? getcontenttype(string) : string;
|
|
9111
9111
|
if (typeof header !== "string") throw new TypeError("argument string is required to be a string");
|
|
9112
9112
|
var index = header.indexOf(";");
|
|
9113
9113
|
var type = index !== -1 ? header.slice(0, index).trim() : header.trim();
|
|
9114
|
-
if (!TYPE_REGEXP$
|
|
9114
|
+
if (!TYPE_REGEXP$2.test(type)) throw new TypeError("invalid media type");
|
|
9115
9115
|
var obj = new ContentType(type.toLowerCase());
|
|
9116
9116
|
if (index !== -1) {
|
|
9117
9117
|
var key;
|
|
@@ -9154,11 +9154,11 @@ var require_content_type = __commonJS({ "../../node_modules/content-type/index.j
|
|
|
9154
9154
|
* @return {string}
|
|
9155
9155
|
* @private
|
|
9156
9156
|
*/
|
|
9157
|
-
function qstring$
|
|
9157
|
+
function qstring$2(val) {
|
|
9158
9158
|
var str = String(val);
|
|
9159
|
-
if (TOKEN_REGEXP$
|
|
9160
|
-
if (str.length > 0 && !TEXT_REGEXP$
|
|
9161
|
-
return "\"" + str.replace(QUOTE_REGEXP$
|
|
9159
|
+
if (TOKEN_REGEXP$2.test(str)) return str;
|
|
9160
|
+
if (str.length > 0 && !TEXT_REGEXP$2.test(str)) throw new TypeError("invalid parameter value");
|
|
9161
|
+
return "\"" + str.replace(QUOTE_REGEXP$2, "\\$1") + "\"";
|
|
9162
9162
|
}
|
|
9163
9163
|
/**
|
|
9164
9164
|
* Class to represent a content type.
|
|
@@ -9178,7 +9178,7 @@ var require_parseurl = __commonJS({ "../../node_modules/parseurl/index.js"(expor
|
|
|
9178
9178
|
* @private
|
|
9179
9179
|
*/
|
|
9180
9180
|
var url = __require("url");
|
|
9181
|
-
var parse$
|
|
9181
|
+
var parse$5 = url.parse;
|
|
9182
9182
|
var Url = url.Url;
|
|
9183
9183
|
/**
|
|
9184
9184
|
* Module exports.
|
|
@@ -9226,7 +9226,7 @@ var require_parseurl = __commonJS({ "../../node_modules/parseurl/index.js"(expor
|
|
|
9226
9226
|
* @private
|
|
9227
9227
|
*/
|
|
9228
9228
|
function fastparse(str) {
|
|
9229
|
-
if (typeof str !== "string" || str.charCodeAt(0) !== 47) return parse$
|
|
9229
|
+
if (typeof str !== "string" || str.charCodeAt(0) !== 47) return parse$5(str);
|
|
9230
9230
|
var pathname = str;
|
|
9231
9231
|
var query = null;
|
|
9232
9232
|
var search = null;
|
|
@@ -9245,7 +9245,7 @@ var require_parseurl = __commonJS({ "../../node_modules/parseurl/index.js"(expor
|
|
|
9245
9245
|
case 32:
|
|
9246
9246
|
case 35:
|
|
9247
9247
|
case 160:
|
|
9248
|
-
case 65279: return parse$
|
|
9248
|
+
case 65279: return parse$5(str);
|
|
9249
9249
|
}
|
|
9250
9250
|
var url$1 = Url !== void 0 ? new Url() : {};
|
|
9251
9251
|
url$1.path = str;
|
|
@@ -9299,6 +9299,167 @@ var require_search_params = __commonJS({ "../../node_modules/koa/lib/search-para
|
|
|
9299
9299
|
};
|
|
9300
9300
|
} });
|
|
9301
9301
|
|
|
9302
|
+
//#endregion
|
|
9303
|
+
//#region ../../node_modules/type-is/node_modules/content-type/dist/index.js
|
|
9304
|
+
var require_dist = __commonJS({ "../../node_modules/type-is/node_modules/content-type/dist/index.js"(exports) {
|
|
9305
|
+
/*!
|
|
9306
|
+
* content-type
|
|
9307
|
+
* Copyright(c) 2015 Douglas Christopher Wilson
|
|
9308
|
+
* MIT Licensed
|
|
9309
|
+
*/
|
|
9310
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9311
|
+
exports.format = format$2;
|
|
9312
|
+
exports.parse = parse$4;
|
|
9313
|
+
const TEXT_REGEXP$1 = /^[\u0009\u0020-\u007e\u0080-\u00ff]*$/;
|
|
9314
|
+
const TOKEN_REGEXP$1 = /^[!#$%&'*+.^_`|~0-9A-Za-z-]+$/;
|
|
9315
|
+
/**
|
|
9316
|
+
* RegExp to match chars that must be quoted-pair in RFC 9110 sec 5.6.4
|
|
9317
|
+
*/
|
|
9318
|
+
const QUOTE_REGEXP$1 = /[\\"]/g;
|
|
9319
|
+
/**
|
|
9320
|
+
* RegExp to match type in RFC 9110 sec 8.3.1
|
|
9321
|
+
*
|
|
9322
|
+
* media-type = type "/" subtype
|
|
9323
|
+
* type = token
|
|
9324
|
+
* subtype = token
|
|
9325
|
+
*/
|
|
9326
|
+
const TYPE_REGEXP$1 = /^[!#$%&'*+.^_`|~0-9A-Za-z-]+\/[!#$%&'*+.^_`|~0-9A-Za-z-]+$/;
|
|
9327
|
+
/**
|
|
9328
|
+
* Null object perf optimization. Faster than `Object.create(null)` and `{ __proto__: null }`.
|
|
9329
|
+
*/
|
|
9330
|
+
const NullObject = /* @__PURE__ */ (() => {
|
|
9331
|
+
const C = function() {};
|
|
9332
|
+
C.prototype = Object.create(null);
|
|
9333
|
+
return C;
|
|
9334
|
+
})();
|
|
9335
|
+
/**
|
|
9336
|
+
* Format an object into a `Content-Type` header.
|
|
9337
|
+
*/
|
|
9338
|
+
function format$2(obj) {
|
|
9339
|
+
const { type, parameters } = obj;
|
|
9340
|
+
if (!type || !TYPE_REGEXP$1.test(type)) throw new TypeError(`Invalid type: ${type}`);
|
|
9341
|
+
let result = type;
|
|
9342
|
+
if (parameters) for (const param of Object.keys(parameters)) {
|
|
9343
|
+
if (!TOKEN_REGEXP$1.test(param)) throw new TypeError(`Invalid parameter name: ${param}`);
|
|
9344
|
+
result += `; ${param}=${qstring$1(parameters[param])}`;
|
|
9345
|
+
}
|
|
9346
|
+
return result;
|
|
9347
|
+
}
|
|
9348
|
+
/**
|
|
9349
|
+
* Parse a `Content-Type` header.
|
|
9350
|
+
*/
|
|
9351
|
+
function parse$4(header, options) {
|
|
9352
|
+
const len = header.length;
|
|
9353
|
+
let index = skipOWS(header, 0, len);
|
|
9354
|
+
const valueStart = index;
|
|
9355
|
+
index = skipValue(header, index, len);
|
|
9356
|
+
const valueEnd = trailingOWS(header, valueStart, index);
|
|
9357
|
+
const type = header.slice(valueStart, valueEnd).toLowerCase();
|
|
9358
|
+
const parameters = options?.parameters === false ? new NullObject() : parseParameters(header, index, len);
|
|
9359
|
+
return {
|
|
9360
|
+
type,
|
|
9361
|
+
parameters
|
|
9362
|
+
};
|
|
9363
|
+
}
|
|
9364
|
+
const SP = 32;
|
|
9365
|
+
const HTAB = 9;
|
|
9366
|
+
const SEMI = 59;
|
|
9367
|
+
const EQ = 61;
|
|
9368
|
+
const DQUOTE = 34;
|
|
9369
|
+
const BSLASH = 92;
|
|
9370
|
+
/**
|
|
9371
|
+
* Parses the parameters of a `Content-Type` header starting at the given index.
|
|
9372
|
+
*/
|
|
9373
|
+
function parseParameters(header, index, len) {
|
|
9374
|
+
const parameters = new NullObject();
|
|
9375
|
+
parameter: while (index < len) {
|
|
9376
|
+
index = skipOWS(header, index + 1, len);
|
|
9377
|
+
const keyStart = index;
|
|
9378
|
+
while (index < len) {
|
|
9379
|
+
const code = header.charCodeAt(index);
|
|
9380
|
+
if (code === SEMI) continue parameter;
|
|
9381
|
+
if (code === EQ) {
|
|
9382
|
+
const keyEnd = trailingOWS(header, keyStart, index);
|
|
9383
|
+
const key = header.slice(keyStart, keyEnd).toLowerCase();
|
|
9384
|
+
index = skipOWS(header, index + 1, len);
|
|
9385
|
+
if (index < len && header.charCodeAt(index) === DQUOTE) {
|
|
9386
|
+
index++;
|
|
9387
|
+
let value = "";
|
|
9388
|
+
while (index < len) {
|
|
9389
|
+
const code$1 = header.charCodeAt(index++);
|
|
9390
|
+
if (code$1 === DQUOTE) {
|
|
9391
|
+
index = skipValue(header, index, len);
|
|
9392
|
+
if (parameters[key] === void 0) parameters[key] = value;
|
|
9393
|
+
break;
|
|
9394
|
+
}
|
|
9395
|
+
if (code$1 === BSLASH && index < len) {
|
|
9396
|
+
value += header[index++];
|
|
9397
|
+
continue;
|
|
9398
|
+
}
|
|
9399
|
+
value += String.fromCharCode(code$1);
|
|
9400
|
+
}
|
|
9401
|
+
continue parameter;
|
|
9402
|
+
}
|
|
9403
|
+
const valueStart = index;
|
|
9404
|
+
index = skipValue(header, index, len);
|
|
9405
|
+
if (parameters[key] === void 0) {
|
|
9406
|
+
const valueEnd = trailingOWS(header, valueStart, index);
|
|
9407
|
+
parameters[key] = header.slice(valueStart, valueEnd);
|
|
9408
|
+
}
|
|
9409
|
+
continue parameter;
|
|
9410
|
+
}
|
|
9411
|
+
index++;
|
|
9412
|
+
}
|
|
9413
|
+
}
|
|
9414
|
+
return parameters;
|
|
9415
|
+
}
|
|
9416
|
+
/**
|
|
9417
|
+
* Skip over characters until a semicolon.
|
|
9418
|
+
*/
|
|
9419
|
+
function skipValue(str, index, len) {
|
|
9420
|
+
while (index < len) {
|
|
9421
|
+
const char = str.charCodeAt(index);
|
|
9422
|
+
if (char === SEMI) break;
|
|
9423
|
+
index++;
|
|
9424
|
+
}
|
|
9425
|
+
return index;
|
|
9426
|
+
}
|
|
9427
|
+
/**
|
|
9428
|
+
* Skip optional whitespace (OWS) in an HTTP header value.
|
|
9429
|
+
*
|
|
9430
|
+
* OWS is defined in RFC 9110 sec 5.6.3 as SP (" ") or HTAB ("\t").
|
|
9431
|
+
*/
|
|
9432
|
+
function skipOWS(header, index, len) {
|
|
9433
|
+
while (index < len) {
|
|
9434
|
+
const char = header.charCodeAt(index);
|
|
9435
|
+
if (char !== SP && char !== HTAB) break;
|
|
9436
|
+
index++;
|
|
9437
|
+
}
|
|
9438
|
+
return index;
|
|
9439
|
+
}
|
|
9440
|
+
/**
|
|
9441
|
+
* Trim optional whitespace (OWS) from the end of a substring.
|
|
9442
|
+
*
|
|
9443
|
+
* OWS is defined in RFC 9110 sec 5.6.3 as SP (" ") or HTAB ("\t").
|
|
9444
|
+
*/
|
|
9445
|
+
function trailingOWS(header, start, end) {
|
|
9446
|
+
while (end > start) {
|
|
9447
|
+
const char = header.charCodeAt(end - 1);
|
|
9448
|
+
if (char !== SP && char !== HTAB) break;
|
|
9449
|
+
end--;
|
|
9450
|
+
}
|
|
9451
|
+
return end;
|
|
9452
|
+
}
|
|
9453
|
+
/**
|
|
9454
|
+
* Serialize a parameter value.
|
|
9455
|
+
*/
|
|
9456
|
+
function qstring$1(str) {
|
|
9457
|
+
if (TOKEN_REGEXP$1.test(str)) return str;
|
|
9458
|
+
if (TEXT_REGEXP$1.test(str)) return `"${str.replace(QUOTE_REGEXP$1, "\\$&")}"`;
|
|
9459
|
+
throw new TypeError(`Invalid parameter value: ${str}`);
|
|
9460
|
+
}
|
|
9461
|
+
} });
|
|
9462
|
+
|
|
9302
9463
|
//#endregion
|
|
9303
9464
|
//#region ../../node_modules/mime-db/db.json
|
|
9304
9465
|
var require_db = __commonJS({ "../../node_modules/mime-db/db.json"(exports, module) {
|
|
@@ -17203,7 +17364,7 @@ var require_type_is = __commonJS({ "../../node_modules/type-is/index.js"(exports
|
|
|
17203
17364
|
* Module dependencies.
|
|
17204
17365
|
* @private
|
|
17205
17366
|
*/
|
|
17206
|
-
var contentType$1 =
|
|
17367
|
+
var contentType$1 = require_dist();
|
|
17207
17368
|
var mime = require_mime_types();
|
|
17208
17369
|
var typer = require_media_typer();
|
|
17209
17370
|
/**
|
|
@@ -17229,9 +17390,10 @@ var require_type_is = __commonJS({ "../../node_modules/type-is/index.js"(exports
|
|
|
17229
17390
|
* @public
|
|
17230
17391
|
*/
|
|
17231
17392
|
function typeis$2(value, types_) {
|
|
17393
|
+
if (value && typeof value === "object") value = value.headers["content-type"];
|
|
17232
17394
|
var i;
|
|
17233
17395
|
var types = types_;
|
|
17234
|
-
var val =
|
|
17396
|
+
var val = normalizeType(value);
|
|
17235
17397
|
if (!val) return false;
|
|
17236
17398
|
if (types && !Array.isArray(types)) {
|
|
17237
17399
|
types = new Array(arguments.length - 1);
|
|
@@ -17340,23 +17502,10 @@ var require_type_is = __commonJS({ "../../node_modules/type-is/index.js"(exports
|
|
|
17340
17502
|
* @private
|
|
17341
17503
|
*/
|
|
17342
17504
|
function normalizeType(value) {
|
|
17343
|
-
|
|
17505
|
+
if (!value) return null;
|
|
17506
|
+
var type = contentType$1.parse(value, { parameters: false }).type;
|
|
17344
17507
|
return typer.test(type) ? type : null;
|
|
17345
17508
|
}
|
|
17346
|
-
/**
|
|
17347
|
-
* Try to normalize a type and remove parameters.
|
|
17348
|
-
*
|
|
17349
|
-
* @param {string} value
|
|
17350
|
-
* @return {(string|null)}
|
|
17351
|
-
* @private
|
|
17352
|
-
*/
|
|
17353
|
-
function tryNormalizeType(value) {
|
|
17354
|
-
try {
|
|
17355
|
-
return value ? normalizeType(value) : null;
|
|
17356
|
-
} catch (err) {
|
|
17357
|
-
return null;
|
|
17358
|
-
}
|
|
17359
|
-
}
|
|
17360
17509
|
} });
|
|
17361
17510
|
|
|
17362
17511
|
//#endregion
|
|
@@ -18894,8 +19043,8 @@ var require_depd = __commonJS({ "../../node_modules/http-assert/node_modules/dep
|
|
|
18894
19043
|
process.emit("deprecation", err);
|
|
18895
19044
|
return;
|
|
18896
19045
|
}
|
|
18897
|
-
var format$
|
|
18898
|
-
var output = format$
|
|
19046
|
+
var format$4 = process.stderr.isTTY ? formatColor : formatPlain;
|
|
19047
|
+
var output = format$4.call(this, msg, caller, stack.slice(i));
|
|
18899
19048
|
process.stderr.write(output + "\n", "utf8");
|
|
18900
19049
|
}
|
|
18901
19050
|
/**
|
package/dist/server.stats.html
CHANGED
|
@@ -4930,7 +4930,7 @@ var drawChart = (function (exports) {
|
|
|
4930
4930
|
</script>
|
|
4931
4931
|
<script>
|
|
4932
4932
|
/*<!--*/
|
|
4933
|
-
const data = {"version":2,"tree":{"name":"root","children":[{"name":"server.d.ts","children":[{"name":"src","children":[{"uid":"9f37f680-1","name":"constants.d.ts"},{"uid":"9f37f680-3","name":"store-azure-web-pubsub.d.ts"},{"uid":"9f37f680-5","name":"client.d.ts"},{"uid":"9f37f680-7","name":"types.d.ts"},{"uid":"9f37f680-9","name":"yjs.d.ts"},{"name":"server","children":[{"name":"event-handler","children":[{"name":"enum/mqtt-error-codes","children":[{"uid":"9f37f680-11","name":"mqtt-disconnect-reason-code.d.ts"},{"uid":"9f37f680-13","name":"mqtt-v311-connect-return-code.d.ts"},{"uid":"9f37f680-15","name":"mqtt-v500-connect-reason-code.d.ts"}]},{"uid":"9f37f680-17","name":"cloud-events-protocols.d.ts"},{"uid":"9f37f680-19","name":"web-pubsub-event-handler.d.ts"}]},{"uid":"9f37f680-21","name":"azure-web-pubsub-host.d.ts"},{"uid":"9f37f680-23","name":"azure-web-pubsub-sync-handler.d.ts"},{"uid":"9f37f680-25","name":"azure-web-pubsub-server.d.ts"}]},{"uid":"9f37f680-27","name":"index.server.d.ts"}]}]},{"name":"server.js","children":[{"uid":"9f37f680-29","name":"rolldown:runtime"},{"name":"home/runner/work/weavejs/weavejs/code/node_modules","children":[{"name":"ee-first/index.js","uid":"9f37f680-31"},{"name":"on-finished/index.js","uid":"9f37f680-33"},{"name":"koa-compose/index.js","uid":"9f37f680-35"},{"name":"statuses","children":[{"uid":"9f37f680-37","name":"codes.json"},{"uid":"9f37f680-39","name":"index.js"}]},{"name":"depd/index.js","uid":"9f37f680-41"},{"name":"setprototypeof/index.js","uid":"9f37f680-43"},{"name":"inherits","children":[{"uid":"9f37f680-45","name":"inherits_browser.js"},{"uid":"9f37f680-47","name":"inherits.js"}]},{"name":"toidentifier/index.js","uid":"9f37f680-49"},{"name":"http-errors/index.js","uid":"9f37f680-51"},{"name":"koa","children":[{"name":"node_modules","children":[{"name":"negotiator","children":[{"name":"lib","children":[{"uid":"9f37f680-53","name":"charset.js"},{"uid":"9f37f680-55","name":"encoding.js"},{"uid":"9f37f680-57","name":"language.js"},{"uid":"9f37f680-59","name":"mediaType.js"}]},{"uid":"9f37f680-61","name":"index.js"}]},{"name":"mime-db","children":[{"uid":"9f37f680-63","name":"db.json"},{"uid":"9f37f680-65","name":"index.js"}]},{"name":"accepts","children":[{"name":"node_modules/mime-types/index.js","uid":"9f37f680-67"},{"uid":"9f37f680-69","name":"index.js"}]},{"name":"fresh/index.js","uid":"9f37f680-89"},{"name":"content-disposition/index.js","uid":"9f37f680-95"}]},{"name":"lib","children":[{"uid":"9f37f680-75","name":"search-params.js"},{"uid":"9f37f680-91","name":"only.js"},{"uid":"9f37f680-93","name":"request.js"},{"uid":"9f37f680-105","name":"is-stream.js"},{"uid":"9f37f680-107","name":"response.js"},{"uid":"9f37f680-139","name":"context.js"},{"uid":"9f37f680-141","name":"application.js"}]},{"name":"dist/koa.mjs","uid":"9f37f680-143"}]},{"name":"content-type/index.js","uid":"9f37f680-71"},{"name":"parseurl/index.js","uid":"9f37f680-73"},{"name":"mime-db","children":[{"uid":"9f37f680-77","name":"db.json"},{"uid":"9f37f680-79","name":"index.js"}]},{"name":"mime-types","children":[{"uid":"9f37f680-81","name":"mimeScore.js"},{"uid":"9f37f680-83","name":"index.js"}]},{"name":"media-typer/index.js","uid":"9f37f680-85"},{"name":"type-is/index.js","uid":"9f37f680-87"},{"name":"escape-html/index.js","uid":"9f37f680-97"},{"name":"destroy/index.js","uid":"9f37f680-99"},{"name":"encodeurl/index.js","uid":"9f37f680-101"},{"name":"vary/index.js","uid":"9f37f680-103"},{"name":"http-assert","children":[{"name":"node_modules","children":[{"name":"depd","children":[{"name":"lib/compat","children":[{"uid":"9f37f680-109","name":"callsite-tostring.js"},{"uid":"9f37f680-111","name":"event-listener-count.js"},{"uid":"9f37f680-113","name":"index.js"}]},{"uid":"9f37f680-115","name":"index.js"}]},{"name":"statuses","children":[{"uid":"9f37f680-117","name":"codes.json"},{"uid":"9f37f680-119","name":"index.js"}]},{"name":"http-errors/index.js","uid":"9f37f680-121"}]},{"uid":"9f37f680-129","name":"index.js"}]},{"name":"deep-equal","children":[{"name":"lib","children":[{"uid":"9f37f680-123","name":"keys.js"},{"uid":"9f37f680-125","name":"is_arguments.js"}]},{"uid":"9f37f680-127","name":"index.js"}]},{"name":"delegates/index.js","uid":"9f37f680-131"},{"name":"tsscmp/lib/index.js","uid":"9f37f680-133"},{"name":"keygrip/index.js","uid":"9f37f680-135"},{"name":"cookies/index.js","uid":"9f37f680-137"},{"name":"emittery","children":[{"uid":"9f37f680-145","name":"maps.js"},{"uid":"9f37f680-147","name":"index.js"}]},{"name":"@typespec/ts-http-runtime/dist/esm/logger","children":[{"uid":"9f37f680-155","name":"log.js"},{"uid":"9f37f680-157","name":"debug.js"},{"uid":"9f37f680-159","name":"logger.js"},{"uid":"9f37f680-161","name":"internal.js"}]},{"name":"@azure/logger/dist/esm/index.js","uid":"9f37f680-163"},{"name":"lib0","children":[{"uid":"9f37f680-179","name":"binary.js"},{"uid":"9f37f680-181","name":"math.js"},{"uid":"9f37f680-183","name":"number.js"},{"uid":"9f37f680-185","name":"set.js"},{"uid":"9f37f680-187","name":"array.js"},{"uid":"9f37f680-189","name":"string.js"},{"uid":"9f37f680-191","name":"error.js"},{"uid":"9f37f680-193","name":"encoding.js"},{"uid":"9f37f680-195","name":"decoding.js"},{"uid":"9f37f680-199","name":"time.js"},{"uid":"9f37f680-201","name":"map.js"},{"uid":"9f37f680-203","name":"observable.js"},{"name":"trait/equality.js","uid":"9f37f680-205"},{"uid":"9f37f680-207","name":"object.js"},{"uid":"9f37f680-209","name":"function.js"}]},{"name":"y-protocols","children":[{"uid":"9f37f680-197","name":"sync.js"},{"uid":"9f37f680-211","name":"awareness.js"}]}]},{"name":"src","children":[{"uid":"9f37f680-149","name":"types.ts"},{"uid":"9f37f680-151","name":"yjs.ts"},{"name":"server","children":[{"name":"event-handler","children":[{"uid":"9f37f680-153","name":"utils.ts"},{"uid":"9f37f680-165","name":"logger.ts"},{"name":"enum/mqtt-error-codes","children":[{"uid":"9f37f680-167","name":"mqtt-v311-connect-return-code.ts"},{"uid":"9f37f680-169","name":"mqtt-v500-connect-reason-code.ts"},{"uid":"9f37f680-175","name":"mqtt-disconnect-reason-code.ts"}]},{"uid":"9f37f680-171","name":"cloud-events-dispatcher.ts"},{"uid":"9f37f680-173","name":"web-pubsub-event-handler.ts"},{"uid":"9f37f680-177","name":"index.ts"}]},{"uid":"9f37f680-217","name":"azure-web-pubsub-host.ts"},{"uid":"9f37f680-219","name":"utils.ts"},{"uid":"9f37f680-221","name":"azure-web-pubsub-sync-handler.ts"},{"uid":"9f37f680-223","name":"azure-web-pubsub-server.ts"}]},{"uid":"9f37f680-213","name":"utils.ts"},{"uid":"9f37f680-215","name":"constants.ts"},{"uid":"9f37f680-225","name":"index.server.ts"}]}]}],"isRoot":true},"nodeParts":{"9f37f680-1":{"renderedLength":495,"gzipLength":252,"brotliLength":216,"metaUid":"9f37f680-0"},"9f37f680-3":{"renderedLength":439,"gzipLength":218,"brotliLength":181,"metaUid":"9f37f680-2"},"9f37f680-5":{"renderedLength":503,"gzipLength":227,"brotliLength":207,"metaUid":"9f37f680-4"},"9f37f680-7":{"renderedLength":2852,"gzipLength":702,"brotliLength":603,"metaUid":"9f37f680-6"},"9f37f680-9":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"9f37f680-8"},"9f37f680-11":{"renderedLength":183,"gzipLength":153,"brotliLength":124,"metaUid":"9f37f680-10"},"9f37f680-13":{"renderedLength":185,"gzipLength":158,"brotliLength":130,"metaUid":"9f37f680-12"},"9f37f680-15":{"renderedLength":287,"gzipLength":218,"brotliLength":172,"metaUid":"9f37f680-14"},"9f37f680-17":{"renderedLength":3151,"gzipLength":737,"brotliLength":643,"metaUid":"9f37f680-16"},"9f37f680-19":{"renderedLength":297,"gzipLength":206,"brotliLength":157,"metaUid":"9f37f680-18"},"9f37f680-21":{"renderedLength":393,"gzipLength":219,"brotliLength":175,"metaUid":"9f37f680-20"},"9f37f680-23":{"renderedLength":660,"gzipLength":257,"brotliLength":224,"metaUid":"9f37f680-22"},"9f37f680-25":{"renderedLength":839,"gzipLength":315,"brotliLength":294,"metaUid":"9f37f680-24"},"9f37f680-27":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"9f37f680-26"},"9f37f680-29":{"renderedLength":1207,"gzipLength":605,"brotliLength":543,"metaUid":"9f37f680-28"},"9f37f680-31":{"renderedLength":1564,"gzipLength":706,"brotliLength":596,"metaUid":"9f37f680-30"},"9f37f680-33":{"renderedLength":4007,"gzipLength":1364,"brotliLength":1159,"metaUid":"9f37f680-32"},"9f37f680-35":{"renderedLength":1215,"gzipLength":579,"brotliLength":486,"metaUid":"9f37f680-34"},"9f37f680-37":{"renderedLength":1972,"gzipLength":887,"brotliLength":672,"metaUid":"9f37f680-36"},"9f37f680-39":{"renderedLength":2400,"gzipLength":869,"brotliLength":753,"metaUid":"9f37f680-38"},"9f37f680-41":{"renderedLength":9963,"gzipLength":2915,"brotliLength":2537,"metaUid":"9f37f680-40"},"9f37f680-43":{"renderedLength":539,"gzipLength":301,"brotliLength":240,"metaUid":"9f37f680-42"},"9f37f680-45":{"renderedLength":776,"gzipLength":325,"brotliLength":273,"metaUid":"9f37f680-44"},"9f37f680-47":{"renderedLength":421,"gzipLength":243,"brotliLength":189,"metaUid":"9f37f680-46"},"9f37f680-49":{"renderedLength":555,"gzipLength":334,"brotliLength":293,"metaUid":"9f37f680-48"},"9f37f680-51":{"renderedLength":5891,"gzipLength":1672,"brotliLength":1457,"metaUid":"9f37f680-50"},"9f37f680-53":{"renderedLength":2924,"gzipLength":1038,"brotliLength":889,"metaUid":"9f37f680-52"},"9f37f680-55":{"renderedLength":3185,"gzipLength":1097,"brotliLength":947,"metaUid":"9f37f680-54"},"9f37f680-57":{"renderedLength":3204,"gzipLength":1106,"brotliLength":946,"metaUid":"9f37f680-56"},"9f37f680-59":{"renderedLength":4875,"gzipLength":1580,"brotliLength":1382,"metaUid":"9f37f680-58"},"9f37f680-61":{"renderedLength":2492,"gzipLength":584,"brotliLength":463,"metaUid":"9f37f680-60"},"9f37f680-63":{"renderedLength":179113,"gzipLength":20857,"brotliLength":18454,"metaUid":"9f37f680-62"},"9f37f680-65":{"renderedLength":378,"gzipLength":247,"brotliLength":180,"metaUid":"9f37f680-64"},"9f37f680-67":{"renderedLength":3288,"gzipLength":1125,"brotliLength":943,"metaUid":"9f37f680-66"},"9f37f680-69":{"renderedLength":4839,"gzipLength":1430,"brotliLength":1184,"metaUid":"9f37f680-68"},"9f37f680-71":{"renderedLength":4580,"gzipLength":1602,"brotliLength":1378,"metaUid":"9f37f680-70"},"9f37f680-73":{"renderedLength":2361,"gzipLength":840,"brotliLength":724,"metaUid":"9f37f680-72"},"9f37f680-75":{"renderedLength":1001,"gzipLength":470,"brotliLength":412,"metaUid":"9f37f680-74"},"9f37f680-77":{"renderedLength":196147,"gzipLength":22796,"brotliLength":20148,"metaUid":"9f37f680-76"},"9f37f680-79":{"renderedLength":340,"gzipLength":239,"brotliLength":179,"metaUid":"9f37f680-78"},"9f37f680-81":{"renderedLength":1135,"gzipLength":551,"brotliLength":451,"metaUid":"9f37f680-80"},"9f37f680-83":{"renderedLength":3826,"gzipLength":1245,"brotliLength":1041,"metaUid":"9f37f680-82"},"9f37f680-85":{"renderedLength":3005,"gzipLength":1003,"brotliLength":826,"metaUid":"9f37f680-84"},"9f37f680-87":{"renderedLength":4937,"gzipLength":1710,"brotliLength":1434,"metaUid":"9f37f680-86"},"9f37f680-89":{"renderedLength":2331,"gzipLength":934,"brotliLength":770,"metaUid":"9f37f680-88"},"9f37f680-91":{"renderedLength":358,"gzipLength":243,"brotliLength":196,"metaUid":"9f37f680-90"},"9f37f680-93":{"renderedLength":6502,"gzipLength":2120,"brotliLength":1841,"metaUid":"9f37f680-92"},"9f37f680-95":{"renderedLength":9656,"gzipLength":3099,"brotliLength":2691,"metaUid":"9f37f680-94"},"9f37f680-97":{"renderedLength":1254,"gzipLength":553,"brotliLength":435,"metaUid":"9f37f680-96"},"9f37f680-99":{"renderedLength":3902,"gzipLength":1266,"brotliLength":1077,"metaUid":"9f37f680-98"},"9f37f680-101":{"renderedLength":1642,"gzipLength":817,"brotliLength":689,"metaUid":"9f37f680-100"},"9f37f680-103":{"renderedLength":2506,"gzipLength":1039,"brotliLength":883,"metaUid":"9f37f680-102"},"9f37f680-105":{"renderedLength":594,"gzipLength":280,"brotliLength":250,"metaUid":"9f37f680-104"},"9f37f680-107":{"renderedLength":7222,"gzipLength":2266,"brotliLength":1986,"metaUid":"9f37f680-106"},"9f37f680-109":{"renderedLength":2266,"gzipLength":778,"brotliLength":683,"metaUid":"9f37f680-108"},"9f37f680-111":{"renderedLength":516,"gzipLength":280,"brotliLength":234,"metaUid":"9f37f680-110"},"9f37f680-113":{"renderedLength":1500,"gzipLength":595,"brotliLength":503,"metaUid":"9f37f680-112"},"9f37f680-115":{"renderedLength":9704,"gzipLength":2759,"brotliLength":2416,"metaUid":"9f37f680-114"},"9f37f680-117":{"renderedLength":2052,"gzipLength":911,"brotliLength":698,"metaUid":"9f37f680-116"},"9f37f680-119":{"renderedLength":1954,"gzipLength":796,"brotliLength":685,"metaUid":"9f37f680-118"},"9f37f680-121":{"renderedLength":5938,"gzipLength":1705,"brotliLength":1478,"metaUid":"9f37f680-120"},"9f37f680-123":{"renderedLength":374,"gzipLength":238,"brotliLength":203,"metaUid":"9f37f680-122"},"9f37f680-125":{"renderedLength":816,"gzipLength":350,"brotliLength":289,"metaUid":"9f37f680-124"},"9f37f680-127":{"renderedLength":1965,"gzipLength":723,"brotliLength":610,"metaUid":"9f37f680-126"},"9f37f680-129":{"renderedLength":1190,"gzipLength":335,"brotliLength":292,"metaUid":"9f37f680-128"},"9f37f680-131":{"renderedLength":2232,"gzipLength":572,"brotliLength":488,"metaUid":"9f37f680-130"},"9f37f680-133":{"renderedLength":763,"gzipLength":394,"brotliLength":324,"metaUid":"9f37f680-132"},"9f37f680-135":{"renderedLength":1218,"gzipLength":561,"brotliLength":471,"metaUid":"9f37f680-134"},"9f37f680-137":{"renderedLength":7410,"gzipLength":2440,"brotliLength":2099,"metaUid":"9f37f680-136"},"9f37f680-139":{"renderedLength":3398,"gzipLength":1280,"brotliLength":1125,"metaUid":"9f37f680-138"},"9f37f680-141":{"renderedLength":8688,"gzipLength":2935,"brotliLength":2591,"metaUid":"9f37f680-140"},"9f37f680-143":{"renderedLength":115,"gzipLength":115,"brotliLength":96,"metaUid":"9f37f680-142"},"9f37f680-145":{"renderedLength":158,"gzipLength":122,"brotliLength":109,"metaUid":"9f37f680-144"},"9f37f680-147":{"renderedLength":12602,"gzipLength":2888,"brotliLength":2560,"metaUid":"9f37f680-146"},"9f37f680-149":{"renderedLength":476,"gzipLength":226,"brotliLength":185,"metaUid":"9f37f680-148"},"9f37f680-151":{"renderedLength":57,"gzipLength":73,"brotliLength":61,"metaUid":"9f37f680-150"},"9f37f680-153":{"renderedLength":1101,"gzipLength":525,"brotliLength":451,"metaUid":"9f37f680-152"},"9f37f680-155":{"renderedLength":193,"gzipLength":167,"brotliLength":140,"metaUid":"9f37f680-154"},"9f37f680-157":{"renderedLength":4071,"gzipLength":1245,"brotliLength":1076,"metaUid":"9f37f680-156"},"9f37f680-159":{"renderedLength":3184,"gzipLength":1154,"brotliLength":992,"metaUid":"9f37f680-158"},"9f37f680-161":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"9f37f680-160"},"9f37f680-163":{"renderedLength":640,"gzipLength":402,"brotliLength":306,"metaUid":"9f37f680-162"},"9f37f680-165":{"renderedLength":119,"gzipLength":120,"brotliLength":94,"metaUid":"9f37f680-164"},"9f37f680-167":{"renderedLength":1465,"gzipLength":547,"brotliLength":434,"metaUid":"9f37f680-166"},"9f37f680-169":{"renderedLength":5173,"gzipLength":1349,"brotliLength":1076,"metaUid":"9f37f680-168"},"9f37f680-171":{"renderedLength":12076,"gzipLength":2763,"brotliLength":2437,"metaUid":"9f37f680-170"},"9f37f680-173":{"renderedLength":2508,"gzipLength":891,"brotliLength":756,"metaUid":"9f37f680-172"},"9f37f680-175":{"renderedLength":7967,"gzipLength":1797,"brotliLength":1463,"metaUid":"9f37f680-174"},"9f37f680-177":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"9f37f680-176"},"9f37f680-179":{"renderedLength":905,"gzipLength":297,"brotliLength":224,"metaUid":"9f37f680-178"},"9f37f680-181":{"renderedLength":453,"gzipLength":238,"brotliLength":195,"metaUid":"9f37f680-180"},"9f37f680-183":{"renderedLength":448,"gzipLength":260,"brotliLength":219,"metaUid":"9f37f680-182"},"9f37f680-185":{"renderedLength":147,"gzipLength":138,"brotliLength":123,"metaUid":"9f37f680-184"},"9f37f680-187":{"renderedLength":263,"gzipLength":198,"brotliLength":150,"metaUid":"9f37f680-186"},"9f37f680-189":{"renderedLength":1356,"gzipLength":600,"brotliLength":498,"metaUid":"9f37f680-188"},"9f37f680-191":{"renderedLength":202,"gzipLength":167,"brotliLength":134,"metaUid":"9f37f680-190"},"9f37f680-193":{"renderedLength":4121,"gzipLength":1201,"brotliLength":1057,"metaUid":"9f37f680-192"},"9f37f680-195":{"renderedLength":4493,"gzipLength":1532,"brotliLength":1293,"metaUid":"9f37f680-194"},"9f37f680-197":{"renderedLength":4603,"gzipLength":1487,"brotliLength":1223,"metaUid":"9f37f680-196"},"9f37f680-199":{"renderedLength":141,"gzipLength":136,"brotliLength":102,"metaUid":"9f37f680-198"},"9f37f680-201":{"renderedLength":892,"gzipLength":479,"brotliLength":439,"metaUid":"9f37f680-200"},"9f37f680-203":{"renderedLength":1299,"gzipLength":592,"brotliLength":509,"metaUid":"9f37f680-202"},"9f37f680-205":{"renderedLength":113,"gzipLength":111,"brotliLength":86,"metaUid":"9f37f680-204"},"9f37f680-207":{"renderedLength":433,"gzipLength":244,"brotliLength":205,"metaUid":"9f37f680-206"},"9f37f680-209":{"renderedLength":1387,"gzipLength":543,"brotliLength":463,"metaUid":"9f37f680-208"},"9f37f680-211":{"renderedLength":7280,"gzipLength":2180,"brotliLength":1870,"metaUid":"9f37f680-210"},"9f37f680-213":{"renderedLength":748,"gzipLength":280,"brotliLength":255,"metaUid":"9f37f680-212"},"9f37f680-215":{"renderedLength":824,"gzipLength":410,"brotliLength":339,"metaUid":"9f37f680-214"},"9f37f680-217":{"renderedLength":11102,"gzipLength":2714,"brotliLength":2392,"metaUid":"9f37f680-216"},"9f37f680-219":{"renderedLength":471,"gzipLength":274,"brotliLength":235,"metaUid":"9f37f680-218"},"9f37f680-221":{"renderedLength":5756,"gzipLength":1602,"brotliLength":1386,"metaUid":"9f37f680-220"},"9f37f680-223":{"renderedLength":2106,"gzipLength":712,"brotliLength":607,"metaUid":"9f37f680-222"},"9f37f680-225":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"9f37f680-224"}},"nodeMetas":{"9f37f680-0":{"id":"/src/constants.d.ts","moduleParts":{"server.d.ts":"9f37f680-1"},"imported":[{"uid":"9f37f680-6"}],"importedBy":[{"uid":"9f37f680-26"},{"uid":"9f37f680-6"}]},"9f37f680-2":{"id":"/src/store-azure-web-pubsub.d.ts","moduleParts":{"server.d.ts":"9f37f680-3"},"imported":[{"uid":"9f37f680-240"},{"uid":"9f37f680-230"},{"uid":"9f37f680-4"},{"uid":"9f37f680-6"}],"importedBy":[{"uid":"9f37f680-4"}]},"9f37f680-4":{"id":"/src/client.d.ts","moduleParts":{"server.d.ts":"9f37f680-5"},"imported":[{"uid":"9f37f680-228"},{"uid":"9f37f680-235"},{"uid":"9f37f680-239"},{"uid":"9f37f680-231"},{"uid":"9f37f680-6"},{"uid":"9f37f680-2"},{"uid":"9f37f680-230"}],"importedBy":[{"uid":"9f37f680-6"},{"uid":"9f37f680-2"}]},"9f37f680-6":{"id":"/src/types.d.ts","moduleParts":{"server.d.ts":"9f37f680-7"},"imported":[{"uid":"9f37f680-233"},{"uid":"9f37f680-234"},{"uid":"9f37f680-235"},{"uid":"9f37f680-26"},{"uid":"9f37f680-0"},{"uid":"9f37f680-4"},{"uid":"9f37f680-236"},{"uid":"9f37f680-237"},{"uid":"9f37f680-230"}],"importedBy":[{"uid":"9f37f680-26"},{"uid":"9f37f680-24"},{"uid":"9f37f680-20"},{"uid":"9f37f680-0"},{"uid":"9f37f680-22"},{"uid":"9f37f680-4"},{"uid":"9f37f680-2"}]},"9f37f680-8":{"id":"/src/yjs.d.ts","moduleParts":{"server.d.ts":"9f37f680-9"},"imported":[{"uid":"9f37f680-235"}],"importedBy":[{"uid":"9f37f680-24"},{"uid":"9f37f680-20"},{"uid":"9f37f680-22"}]},"9f37f680-10":{"id":"/src/server/event-handler/enum/mqtt-error-codes/mqtt-disconnect-reason-code.d.ts","moduleParts":{"server.d.ts":"9f37f680-11"},"imported":[],"importedBy":[{"uid":"9f37f680-226"},{"uid":"9f37f680-16"}]},"9f37f680-12":{"id":"/src/server/event-handler/enum/mqtt-error-codes/mqtt-v311-connect-return-code.d.ts","moduleParts":{"server.d.ts":"9f37f680-13"},"imported":[],"importedBy":[{"uid":"9f37f680-226"},{"uid":"9f37f680-16"}]},"9f37f680-14":{"id":"/src/server/event-handler/enum/mqtt-error-codes/mqtt-v500-connect-reason-code.d.ts","moduleParts":{"server.d.ts":"9f37f680-15"},"imported":[],"importedBy":[{"uid":"9f37f680-226"},{"uid":"9f37f680-16"}]},"9f37f680-16":{"id":"/src/server/event-handler/cloud-events-protocols.d.ts","moduleParts":{"server.d.ts":"9f37f680-17"},"imported":[{"uid":"9f37f680-10"},{"uid":"9f37f680-12"},{"uid":"9f37f680-14"}],"importedBy":[{"uid":"9f37f680-226"},{"uid":"9f37f680-18"}]},"9f37f680-18":{"id":"/src/server/event-handler/web-pubsub-event-handler.d.ts","moduleParts":{"server.d.ts":"9f37f680-19"},"imported":[{"uid":"9f37f680-238"},{"uid":"9f37f680-227"},{"uid":"9f37f680-16"}],"importedBy":[{"uid":"9f37f680-226"}]},"9f37f680-20":{"id":"/src/server/azure-web-pubsub-host.d.ts","moduleParts":{"server.d.ts":"9f37f680-21"},"imported":[{"uid":"9f37f680-231"},{"uid":"9f37f680-232"},{"uid":"9f37f680-8"},{"uid":"9f37f680-24"},{"uid":"9f37f680-6"},{"uid":"9f37f680-22"},{"uid":"9f37f680-230"}],"importedBy":[{"uid":"9f37f680-26"},{"uid":"9f37f680-22"}]},"9f37f680-22":{"id":"/src/server/azure-web-pubsub-sync-handler.d.ts","moduleParts":{"server.d.ts":"9f37f680-23"},"imported":[{"uid":"9f37f680-8"},{"uid":"9f37f680-232"},{"uid":"9f37f680-226"},{"uid":"9f37f680-6"},{"uid":"9f37f680-20"},{"uid":"9f37f680-24"},{"uid":"9f37f680-230"}],"importedBy":[{"uid":"9f37f680-24"},{"uid":"9f37f680-20"}]},"9f37f680-24":{"id":"/src/server/azure-web-pubsub-server.d.ts","moduleParts":{"server.d.ts":"9f37f680-25"},"imported":[{"uid":"9f37f680-227"},{"uid":"9f37f680-228"},{"uid":"9f37f680-6"},{"uid":"9f37f680-22"},{"uid":"9f37f680-226"},{"uid":"9f37f680-229"},{"uid":"9f37f680-8"},{"uid":"9f37f680-230"}],"importedBy":[{"uid":"9f37f680-26"},{"uid":"9f37f680-20"},{"uid":"9f37f680-22"}]},"9f37f680-26":{"id":"/src/index.server.d.ts","moduleParts":{"server.d.ts":"9f37f680-27"},"imported":[{"uid":"9f37f680-24"},{"uid":"9f37f680-20"},{"uid":"9f37f680-226"},{"uid":"9f37f680-0"},{"uid":"9f37f680-6"}],"importedBy":[{"uid":"9f37f680-6"}],"isEntry":true},"9f37f680-28":{"id":"rolldown:runtime","moduleParts":{"server.js":"9f37f680-29"},"imported":[],"importedBy":[]},"9f37f680-30":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/ee-first/index.js","moduleParts":{"server.js":"9f37f680-31"},"imported":[],"importedBy":[{"uid":"9f37f680-32"}]},"9f37f680-32":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/on-finished/index.js","moduleParts":{"server.js":"9f37f680-33"},"imported":[{"uid":"9f37f680-30"},{"uid":"9f37f680-252"}],"importedBy":[{"uid":"9f37f680-140"},{"uid":"9f37f680-106"}]},"9f37f680-34":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/koa-compose/index.js","moduleParts":{"server.js":"9f37f680-35"},"imported":[],"importedBy":[{"uid":"9f37f680-140"}]},"9f37f680-36":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/statuses/codes.json","moduleParts":{"server.js":"9f37f680-37"},"imported":[],"importedBy":[{"uid":"9f37f680-38"}]},"9f37f680-38":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/statuses/index.js","moduleParts":{"server.js":"9f37f680-39"},"imported":[{"uid":"9f37f680-36"}],"importedBy":[{"uid":"9f37f680-140"},{"uid":"9f37f680-50"},{"uid":"9f37f680-106"},{"uid":"9f37f680-138"}]},"9f37f680-40":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/depd/index.js","moduleParts":{"server.js":"9f37f680-41"},"imported":[{"uid":"9f37f680-259"}],"importedBy":[{"uid":"9f37f680-50"},{"uid":"9f37f680-136"}]},"9f37f680-42":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/setprototypeof/index.js","moduleParts":{"server.js":"9f37f680-43"},"imported":[],"importedBy":[{"uid":"9f37f680-50"},{"uid":"9f37f680-120"}]},"9f37f680-44":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/inherits/inherits_browser.js","moduleParts":{"server.js":"9f37f680-45"},"imported":[],"importedBy":[{"uid":"9f37f680-46"}]},"9f37f680-46":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/inherits/inherits.js","moduleParts":{"server.js":"9f37f680-47"},"imported":[{"uid":"9f37f680-255"},{"uid":"9f37f680-44"}],"importedBy":[{"uid":"9f37f680-50"},{"uid":"9f37f680-120"}]},"9f37f680-48":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/toidentifier/index.js","moduleParts":{"server.js":"9f37f680-49"},"imported":[],"importedBy":[{"uid":"9f37f680-50"},{"uid":"9f37f680-120"}]},"9f37f680-50":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/http-errors/index.js","moduleParts":{"server.js":"9f37f680-51"},"imported":[{"uid":"9f37f680-40"},{"uid":"9f37f680-42"},{"uid":"9f37f680-38"},{"uid":"9f37f680-46"},{"uid":"9f37f680-48"}],"importedBy":[{"uid":"9f37f680-140"},{"uid":"9f37f680-138"}]},"9f37f680-52":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/koa/node_modules/negotiator/lib/charset.js","moduleParts":{"server.js":"9f37f680-53"},"imported":[],"importedBy":[{"uid":"9f37f680-60"}]},"9f37f680-54":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/koa/node_modules/negotiator/lib/encoding.js","moduleParts":{"server.js":"9f37f680-55"},"imported":[],"importedBy":[{"uid":"9f37f680-60"}]},"9f37f680-56":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/koa/node_modules/negotiator/lib/language.js","moduleParts":{"server.js":"9f37f680-57"},"imported":[],"importedBy":[{"uid":"9f37f680-60"}]},"9f37f680-58":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/koa/node_modules/negotiator/lib/mediaType.js","moduleParts":{"server.js":"9f37f680-59"},"imported":[],"importedBy":[{"uid":"9f37f680-60"}]},"9f37f680-60":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/koa/node_modules/negotiator/index.js","moduleParts":{"server.js":"9f37f680-61"},"imported":[{"uid":"9f37f680-52"},{"uid":"9f37f680-54"},{"uid":"9f37f680-56"},{"uid":"9f37f680-58"}],"importedBy":[{"uid":"9f37f680-68"}]},"9f37f680-62":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/koa/node_modules/mime-db/db.json","moduleParts":{"server.js":"9f37f680-63"},"imported":[],"importedBy":[{"uid":"9f37f680-64"}]},"9f37f680-64":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/koa/node_modules/mime-db/index.js","moduleParts":{"server.js":"9f37f680-65"},"imported":[{"uid":"9f37f680-62"}],"importedBy":[{"uid":"9f37f680-66"}]},"9f37f680-66":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/koa/node_modules/accepts/node_modules/mime-types/index.js","moduleParts":{"server.js":"9f37f680-67"},"imported":[{"uid":"9f37f680-64"},{"uid":"9f37f680-259"}],"importedBy":[{"uid":"9f37f680-68"}]},"9f37f680-68":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/koa/node_modules/accepts/index.js","moduleParts":{"server.js":"9f37f680-69"},"imported":[{"uid":"9f37f680-60"},{"uid":"9f37f680-66"}],"importedBy":[{"uid":"9f37f680-92"}]},"9f37f680-70":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/content-type/index.js","moduleParts":{"server.js":"9f37f680-71"},"imported":[],"importedBy":[{"uid":"9f37f680-92"},{"uid":"9f37f680-86"}]},"9f37f680-72":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/parseurl/index.js","moduleParts":{"server.js":"9f37f680-73"},"imported":[{"uid":"9f37f680-253"}],"importedBy":[{"uid":"9f37f680-92"}]},"9f37f680-74":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/koa/lib/search-params.js","moduleParts":{"server.js":"9f37f680-75"},"imported":[{"uid":"9f37f680-253"}],"importedBy":[{"uid":"9f37f680-92"}]},"9f37f680-76":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/mime-db/db.json","moduleParts":{"server.js":"9f37f680-77"},"imported":[],"importedBy":[{"uid":"9f37f680-78"}]},"9f37f680-78":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/mime-db/index.js","moduleParts":{"server.js":"9f37f680-79"},"imported":[{"uid":"9f37f680-76"}],"importedBy":[{"uid":"9f37f680-82"}]},"9f37f680-80":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/mime-types/mimeScore.js","moduleParts":{"server.js":"9f37f680-81"},"imported":[],"importedBy":[{"uid":"9f37f680-82"}]},"9f37f680-82":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/mime-types/index.js","moduleParts":{"server.js":"9f37f680-83"},"imported":[{"uid":"9f37f680-78"},{"uid":"9f37f680-259"},{"uid":"9f37f680-80"}],"importedBy":[{"uid":"9f37f680-106"},{"uid":"9f37f680-86"}]},"9f37f680-84":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/media-typer/index.js","moduleParts":{"server.js":"9f37f680-85"},"imported":[],"importedBy":[{"uid":"9f37f680-86"}]},"9f37f680-86":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/type-is/index.js","moduleParts":{"server.js":"9f37f680-87"},"imported":[{"uid":"9f37f680-70"},{"uid":"9f37f680-82"},{"uid":"9f37f680-84"}],"importedBy":[{"uid":"9f37f680-92"},{"uid":"9f37f680-106"}]},"9f37f680-88":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/koa/node_modules/fresh/index.js","moduleParts":{"server.js":"9f37f680-89"},"imported":[],"importedBy":[{"uid":"9f37f680-92"}]},"9f37f680-90":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/koa/lib/only.js","moduleParts":{"server.js":"9f37f680-91"},"imported":[],"importedBy":[{"uid":"9f37f680-140"},{"uid":"9f37f680-92"},{"uid":"9f37f680-106"}]},"9f37f680-92":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/koa/lib/request.js","moduleParts":{"server.js":"9f37f680-93"},"imported":[{"uid":"9f37f680-253"},{"uid":"9f37f680-254"},{"uid":"9f37f680-68"},{"uid":"9f37f680-70"},{"uid":"9f37f680-72"},{"uid":"9f37f680-74"},{"uid":"9f37f680-86"},{"uid":"9f37f680-88"},{"uid":"9f37f680-90"},{"uid":"9f37f680-255"}],"importedBy":[{"uid":"9f37f680-140"}]},"9f37f680-94":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/koa/node_modules/content-disposition/index.js","moduleParts":{"server.js":"9f37f680-95"},"imported":[{"uid":"9f37f680-259"}],"importedBy":[{"uid":"9f37f680-106"}]},"9f37f680-96":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/escape-html/index.js","moduleParts":{"server.js":"9f37f680-97"},"imported":[],"importedBy":[{"uid":"9f37f680-106"}]},"9f37f680-98":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/destroy/index.js","moduleParts":{"server.js":"9f37f680-99"},"imported":[{"uid":"9f37f680-260"},{"uid":"9f37f680-261"},{"uid":"9f37f680-258"},{"uid":"9f37f680-262"}],"importedBy":[{"uid":"9f37f680-106"}]},"9f37f680-100":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/encodeurl/index.js","moduleParts":{"server.js":"9f37f680-101"},"imported":[],"importedBy":[{"uid":"9f37f680-106"}]},"9f37f680-102":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/vary/index.js","moduleParts":{"server.js":"9f37f680-103"},"imported":[],"importedBy":[{"uid":"9f37f680-106"}]},"9f37f680-104":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/koa/lib/is-stream.js","moduleParts":{"server.js":"9f37f680-105"},"imported":[{"uid":"9f37f680-258"}],"importedBy":[{"uid":"9f37f680-140"},{"uid":"9f37f680-106"}]},"9f37f680-106":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/koa/lib/response.js","moduleParts":{"server.js":"9f37f680-107"},"imported":[{"uid":"9f37f680-256"},{"uid":"9f37f680-257"},{"uid":"9f37f680-244"},{"uid":"9f37f680-94"},{"uid":"9f37f680-32"},{"uid":"9f37f680-96"},{"uid":"9f37f680-86"},{"uid":"9f37f680-38"},{"uid":"9f37f680-98"},{"uid":"9f37f680-100"},{"uid":"9f37f680-102"},{"uid":"9f37f680-82"},{"uid":"9f37f680-104"},{"uid":"9f37f680-90"}],"importedBy":[{"uid":"9f37f680-140"}]},"9f37f680-108":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/http-assert/node_modules/depd/lib/compat/callsite-tostring.js","moduleParts":{"server.js":"9f37f680-109"},"imported":[],"importedBy":[{"uid":"9f37f680-112"}]},"9f37f680-110":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/http-assert/node_modules/depd/lib/compat/event-listener-count.js","moduleParts":{"server.js":"9f37f680-111"},"imported":[],"importedBy":[{"uid":"9f37f680-112"}]},"9f37f680-112":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/http-assert/node_modules/depd/lib/compat/index.js","moduleParts":{"server.js":"9f37f680-113"},"imported":[{"uid":"9f37f680-260"},{"uid":"9f37f680-108"},{"uid":"9f37f680-110"}],"importedBy":[{"uid":"9f37f680-114"}]},"9f37f680-114":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/http-assert/node_modules/depd/index.js","moduleParts":{"server.js":"9f37f680-115"},"imported":[{"uid":"9f37f680-112"},{"uid":"9f37f680-259"}],"importedBy":[{"uid":"9f37f680-120"}]},"9f37f680-116":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/http-assert/node_modules/statuses/codes.json","moduleParts":{"server.js":"9f37f680-117"},"imported":[],"importedBy":[{"uid":"9f37f680-118"}]},"9f37f680-118":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/http-assert/node_modules/statuses/index.js","moduleParts":{"server.js":"9f37f680-119"},"imported":[{"uid":"9f37f680-116"}],"importedBy":[{"uid":"9f37f680-120"}]},"9f37f680-120":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/http-assert/node_modules/http-errors/index.js","moduleParts":{"server.js":"9f37f680-121"},"imported":[{"uid":"9f37f680-114"},{"uid":"9f37f680-42"},{"uid":"9f37f680-118"},{"uid":"9f37f680-46"},{"uid":"9f37f680-48"}],"importedBy":[{"uid":"9f37f680-128"}]},"9f37f680-122":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/deep-equal/lib/keys.js","moduleParts":{"server.js":"9f37f680-123"},"imported":[],"importedBy":[{"uid":"9f37f680-126"}]},"9f37f680-124":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/deep-equal/lib/is_arguments.js","moduleParts":{"server.js":"9f37f680-125"},"imported":[],"importedBy":[{"uid":"9f37f680-126"}]},"9f37f680-126":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/deep-equal/index.js","moduleParts":{"server.js":"9f37f680-127"},"imported":[{"uid":"9f37f680-122"},{"uid":"9f37f680-124"}],"importedBy":[{"uid":"9f37f680-128"}]},"9f37f680-128":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/http-assert/index.js","moduleParts":{"server.js":"9f37f680-129"},"imported":[{"uid":"9f37f680-120"},{"uid":"9f37f680-126"}],"importedBy":[{"uid":"9f37f680-138"}]},"9f37f680-130":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/delegates/index.js","moduleParts":{"server.js":"9f37f680-131"},"imported":[],"importedBy":[{"uid":"9f37f680-138"}]},"9f37f680-132":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/tsscmp/lib/index.js","moduleParts":{"server.js":"9f37f680-133"},"imported":[{"uid":"9f37f680-264"}],"importedBy":[{"uid":"9f37f680-134"}]},"9f37f680-134":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/keygrip/index.js","moduleParts":{"server.js":"9f37f680-135"},"imported":[{"uid":"9f37f680-132"},{"uid":"9f37f680-264"}],"importedBy":[{"uid":"9f37f680-136"}]},"9f37f680-136":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/cookies/index.js","moduleParts":{"server.js":"9f37f680-137"},"imported":[{"uid":"9f37f680-40"},{"uid":"9f37f680-134"},{"uid":"9f37f680-263"}],"importedBy":[{"uid":"9f37f680-138"}]},"9f37f680-138":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/koa/lib/context.js","moduleParts":{"server.js":"9f37f680-139"},"imported":[{"uid":"9f37f680-255"},{"uid":"9f37f680-50"},{"uid":"9f37f680-128"},{"uid":"9f37f680-130"},{"uid":"9f37f680-38"},{"uid":"9f37f680-136"}],"importedBy":[{"uid":"9f37f680-140"}]},"9f37f680-140":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/koa/lib/application.js","moduleParts":{"server.js":"9f37f680-141"},"imported":[{"uid":"9f37f680-244"},{"uid":"9f37f680-245"},{"uid":"9f37f680-246"},{"uid":"9f37f680-247"},{"uid":"9f37f680-248"},{"uid":"9f37f680-249"},{"uid":"9f37f680-32"},{"uid":"9f37f680-34"},{"uid":"9f37f680-38"},{"uid":"9f37f680-50"},{"uid":"9f37f680-92"},{"uid":"9f37f680-106"},{"uid":"9f37f680-138"},{"uid":"9f37f680-104"},{"uid":"9f37f680-90"}],"importedBy":[{"uid":"9f37f680-142"}]},"9f37f680-142":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/koa/dist/koa.mjs","moduleParts":{"server.js":"9f37f680-143"},"imported":[{"uid":"9f37f680-140"}],"importedBy":[{"uid":"9f37f680-222"}]},"9f37f680-144":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/emittery/maps.js","moduleParts":{"server.js":"9f37f680-145"},"imported":[],"importedBy":[{"uid":"9f37f680-146"}]},"9f37f680-146":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/emittery/index.js","moduleParts":{"server.js":"9f37f680-147"},"imported":[{"uid":"9f37f680-144"}],"importedBy":[{"uid":"9f37f680-222"}]},"9f37f680-148":{"id":"/src/types.ts","moduleParts":{"server.js":"9f37f680-149"},"imported":[],"importedBy":[{"uid":"9f37f680-224"},{"uid":"9f37f680-222"},{"uid":"9f37f680-216"},{"uid":"9f37f680-220"}]},"9f37f680-150":{"id":"/src/yjs.ts","moduleParts":{"server.js":"9f37f680-151"},"imported":[{"uid":"9f37f680-235"}],"importedBy":[{"uid":"9f37f680-216"},{"uid":"9f37f680-220"},{"uid":"9f37f680-218"}]},"9f37f680-152":{"id":"/src/server/event-handler/utils.ts","moduleParts":{"server.js":"9f37f680-153"},"imported":[],"importedBy":[{"uid":"9f37f680-170"}]},"9f37f680-154":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/@typespec/ts-http-runtime/dist/esm/logger/log.js","moduleParts":{"server.js":"9f37f680-155"},"imported":[{"uid":"9f37f680-265"},{"uid":"9f37f680-244"},{"uid":"9f37f680-266"}],"importedBy":[{"uid":"9f37f680-156"}]},"9f37f680-156":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/@typespec/ts-http-runtime/dist/esm/logger/debug.js","moduleParts":{"server.js":"9f37f680-157"},"imported":[{"uid":"9f37f680-154"}],"importedBy":[{"uid":"9f37f680-158"}]},"9f37f680-158":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/@typespec/ts-http-runtime/dist/esm/logger/logger.js","moduleParts":{"server.js":"9f37f680-159"},"imported":[{"uid":"9f37f680-156"}],"importedBy":[{"uid":"9f37f680-160"}]},"9f37f680-160":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/@typespec/ts-http-runtime/dist/esm/logger/internal.js","moduleParts":{"server.js":"9f37f680-161"},"imported":[{"uid":"9f37f680-158"}],"importedBy":[{"uid":"9f37f680-162"}]},"9f37f680-162":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/@azure/logger/dist/esm/index.js","moduleParts":{"server.js":"9f37f680-163"},"imported":[{"uid":"9f37f680-160"}],"importedBy":[{"uid":"9f37f680-164"}]},"9f37f680-164":{"id":"/src/server/event-handler/logger.ts","moduleParts":{"server.js":"9f37f680-165"},"imported":[{"uid":"9f37f680-162"}],"importedBy":[{"uid":"9f37f680-170"}]},"9f37f680-166":{"id":"/src/server/event-handler/enum/mqtt-error-codes/mqtt-v311-connect-return-code.ts","moduleParts":{"server.js":"9f37f680-167"},"imported":[],"importedBy":[{"uid":"9f37f680-176"},{"uid":"9f37f680-170"}]},"9f37f680-168":{"id":"/src/server/event-handler/enum/mqtt-error-codes/mqtt-v500-connect-reason-code.ts","moduleParts":{"server.js":"9f37f680-169"},"imported":[],"importedBy":[{"uid":"9f37f680-176"},{"uid":"9f37f680-170"}]},"9f37f680-170":{"id":"/src/server/event-handler/cloud-events-dispatcher.ts","moduleParts":{"server.js":"9f37f680-171"},"imported":[{"uid":"9f37f680-152"},{"uid":"9f37f680-251"},{"uid":"9f37f680-164"},{"uid":"9f37f680-166"},{"uid":"9f37f680-168"}],"importedBy":[{"uid":"9f37f680-172"}]},"9f37f680-172":{"id":"/src/server/event-handler/web-pubsub-event-handler.ts","moduleParts":{"server.js":"9f37f680-173"},"imported":[{"uid":"9f37f680-170"}],"importedBy":[{"uid":"9f37f680-176"}]},"9f37f680-174":{"id":"/src/server/event-handler/enum/mqtt-error-codes/mqtt-disconnect-reason-code.ts","moduleParts":{"server.js":"9f37f680-175"},"imported":[],"importedBy":[{"uid":"9f37f680-176"}]},"9f37f680-176":{"id":"/src/server/event-handler/index.ts","moduleParts":{"server.js":"9f37f680-177"},"imported":[{"uid":"9f37f680-172"},{"uid":"9f37f680-243"},{"uid":"9f37f680-166"},{"uid":"9f37f680-168"},{"uid":"9f37f680-174"}],"importedBy":[{"uid":"9f37f680-224"},{"uid":"9f37f680-220"}]},"9f37f680-178":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/lib0/binary.js","moduleParts":{"server.js":"9f37f680-179"},"imported":[],"importedBy":[{"uid":"9f37f680-194"},{"uid":"9f37f680-192"},{"uid":"9f37f680-182"}]},"9f37f680-180":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/lib0/math.js","moduleParts":{"server.js":"9f37f680-181"},"imported":[],"importedBy":[{"uid":"9f37f680-194"},{"uid":"9f37f680-192"},{"uid":"9f37f680-210"},{"uid":"9f37f680-182"},{"uid":"9f37f680-198"},{"uid":"9f37f680-250"}]},"9f37f680-182":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/lib0/number.js","moduleParts":{"server.js":"9f37f680-183"},"imported":[{"uid":"9f37f680-180"},{"uid":"9f37f680-178"}],"importedBy":[{"uid":"9f37f680-194"},{"uid":"9f37f680-192"}]},"9f37f680-184":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/lib0/set.js","moduleParts":{"server.js":"9f37f680-185"},"imported":[],"importedBy":[{"uid":"9f37f680-186"},{"uid":"9f37f680-202"}]},"9f37f680-186":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/lib0/array.js","moduleParts":{"server.js":"9f37f680-187"},"imported":[{"uid":"9f37f680-184"}],"importedBy":[{"uid":"9f37f680-192"},{"uid":"9f37f680-188"},{"uid":"9f37f680-202"},{"uid":"9f37f680-208"}]},"9f37f680-188":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/lib0/string.js","moduleParts":{"server.js":"9f37f680-189"},"imported":[{"uid":"9f37f680-186"}],"importedBy":[{"uid":"9f37f680-194"},{"uid":"9f37f680-192"}]},"9f37f680-190":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/lib0/error.js","moduleParts":{"server.js":"9f37f680-191"},"imported":[],"importedBy":[{"uid":"9f37f680-194"}]},"9f37f680-192":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/lib0/encoding.js","moduleParts":{"server.js":"9f37f680-193"},"imported":[{"uid":"9f37f680-180"},{"uid":"9f37f680-182"},{"uid":"9f37f680-178"},{"uid":"9f37f680-188"},{"uid":"9f37f680-186"}],"importedBy":[{"uid":"9f37f680-216"},{"uid":"9f37f680-194"},{"uid":"9f37f680-196"},{"uid":"9f37f680-210"}]},"9f37f680-194":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/lib0/decoding.js","moduleParts":{"server.js":"9f37f680-195"},"imported":[{"uid":"9f37f680-178"},{"uid":"9f37f680-180"},{"uid":"9f37f680-182"},{"uid":"9f37f680-188"},{"uid":"9f37f680-190"},{"uid":"9f37f680-192"}],"importedBy":[{"uid":"9f37f680-216"},{"uid":"9f37f680-196"},{"uid":"9f37f680-210"}]},"9f37f680-196":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/y-protocols/sync.js","moduleParts":{"server.js":"9f37f680-197"},"imported":[{"uid":"9f37f680-192"},{"uid":"9f37f680-194"},{"uid":"9f37f680-235"}],"importedBy":[{"uid":"9f37f680-216"}]},"9f37f680-198":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/lib0/time.js","moduleParts":{"server.js":"9f37f680-199"},"imported":[{"uid":"9f37f680-250"},{"uid":"9f37f680-180"}],"importedBy":[{"uid":"9f37f680-210"}]},"9f37f680-200":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/lib0/map.js","moduleParts":{"server.js":"9f37f680-201"},"imported":[],"importedBy":[{"uid":"9f37f680-202"}]},"9f37f680-202":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/lib0/observable.js","moduleParts":{"server.js":"9f37f680-203"},"imported":[{"uid":"9f37f680-200"},{"uid":"9f37f680-184"},{"uid":"9f37f680-186"}],"importedBy":[{"uid":"9f37f680-210"}]},"9f37f680-204":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/lib0/trait/equality.js","moduleParts":{"server.js":"9f37f680-205"},"imported":[],"importedBy":[{"uid":"9f37f680-208"},{"uid":"9f37f680-206"}]},"9f37f680-206":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/lib0/object.js","moduleParts":{"server.js":"9f37f680-207"},"imported":[{"uid":"9f37f680-204"}],"importedBy":[{"uid":"9f37f680-208"}]},"9f37f680-208":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/lib0/function.js","moduleParts":{"server.js":"9f37f680-209"},"imported":[{"uid":"9f37f680-186"},{"uid":"9f37f680-206"},{"uid":"9f37f680-204"}],"importedBy":[{"uid":"9f37f680-210"}]},"9f37f680-210":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/y-protocols/awareness.js","moduleParts":{"server.js":"9f37f680-211"},"imported":[{"uid":"9f37f680-192"},{"uid":"9f37f680-194"},{"uid":"9f37f680-198"},{"uid":"9f37f680-180"},{"uid":"9f37f680-202"},{"uid":"9f37f680-208"},{"uid":"9f37f680-235"}],"importedBy":[{"uid":"9f37f680-216"}]},"9f37f680-212":{"id":"/src/utils.ts","moduleParts":{"server.js":"9f37f680-213"},"imported":[],"importedBy":[{"uid":"9f37f680-216"}]},"9f37f680-214":{"id":"/src/constants.ts","moduleParts":{"server.js":"9f37f680-215"},"imported":[],"importedBy":[{"uid":"9f37f680-224"},{"uid":"9f37f680-216"},{"uid":"9f37f680-220"}]},"9f37f680-216":{"id":"/src/server/azure-web-pubsub-host.ts","moduleParts":{"server.js":"9f37f680-217"},"imported":[{"uid":"9f37f680-242"},{"uid":"9f37f680-194"},{"uid":"9f37f680-192"},{"uid":"9f37f680-196"},{"uid":"9f37f680-210"},{"uid":"9f37f680-232"},{"uid":"9f37f680-233"},{"uid":"9f37f680-150"},{"uid":"9f37f680-148"},{"uid":"9f37f680-212"},{"uid":"9f37f680-240"},{"uid":"9f37f680-214"}],"importedBy":[{"uid":"9f37f680-224"},{"uid":"9f37f680-220"}]},"9f37f680-218":{"id":"/src/server/utils.ts","moduleParts":{"server.js":"9f37f680-219"},"imported":[{"uid":"9f37f680-150"},{"uid":"9f37f680-242"}],"importedBy":[{"uid":"9f37f680-220"}]},"9f37f680-220":{"id":"/src/server/azure-web-pubsub-sync-handler.ts","moduleParts":{"server.js":"9f37f680-221"},"imported":[{"uid":"9f37f680-150"},{"uid":"9f37f680-232"},{"uid":"9f37f680-176"},{"uid":"9f37f680-148"},{"uid":"9f37f680-216"},{"uid":"9f37f680-222"},{"uid":"9f37f680-218"},{"uid":"9f37f680-214"}],"importedBy":[{"uid":"9f37f680-222"}]},"9f37f680-222":{"id":"/src/server/azure-web-pubsub-server.ts","moduleParts":{"server.js":"9f37f680-223"},"imported":[{"uid":"9f37f680-232"},{"uid":"9f37f680-234"},{"uid":"9f37f680-142"},{"uid":"9f37f680-146"},{"uid":"9f37f680-148"},{"uid":"9f37f680-220"},{"uid":"9f37f680-241"}],"importedBy":[{"uid":"9f37f680-224"},{"uid":"9f37f680-220"}]},"9f37f680-224":{"id":"/src/index.server.ts","moduleParts":{"server.js":"9f37f680-225"},"imported":[{"uid":"9f37f680-222"},{"uid":"9f37f680-216"},{"uid":"9f37f680-176"},{"uid":"9f37f680-214"},{"uid":"9f37f680-148"}],"importedBy":[],"isEntry":true},"9f37f680-226":{"id":"/src/server/event-handler/index.d.ts","moduleParts":{},"imported":[{"uid":"9f37f680-18"},{"uid":"9f37f680-16"},{"uid":"9f37f680-12"},{"uid":"9f37f680-14"},{"uid":"9f37f680-10"}],"importedBy":[{"uid":"9f37f680-26"},{"uid":"9f37f680-24"},{"uid":"9f37f680-22"}]},"9f37f680-227":{"id":"koa","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f37f680-24"},{"uid":"9f37f680-18"}]},"9f37f680-228":{"id":"emittery","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f37f680-24"},{"uid":"9f37f680-4"}]},"9f37f680-229":{"id":"express","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f37f680-24"}]},"9f37f680-230":{"id":"@inditextech/weave-types","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f37f680-24"},{"uid":"9f37f680-20"},{"uid":"9f37f680-6"},{"uid":"9f37f680-22"},{"uid":"9f37f680-4"},{"uid":"9f37f680-2"}]},"9f37f680-231":{"id":"y-protocols/awareness","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f37f680-20"},{"uid":"9f37f680-4"}]},"9f37f680-232":{"id":"@azure/web-pubsub","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f37f680-20"},{"uid":"9f37f680-22"},{"uid":"9f37f680-222"},{"uid":"9f37f680-216"},{"uid":"9f37f680-220"}]},"9f37f680-233":{"id":"ws","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f37f680-6"},{"uid":"9f37f680-216"}]},"9f37f680-234":{"id":"@azure/identity","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f37f680-6"},{"uid":"9f37f680-222"}]},"9f37f680-235":{"id":"yjs","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f37f680-6"},{"uid":"9f37f680-8"},{"uid":"9f37f680-4"},{"uid":"9f37f680-196"},{"uid":"9f37f680-210"},{"uid":"9f37f680-150"}]},"9f37f680-236":{"id":"lib0/encoding","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f37f680-6"}]},"9f37f680-237":{"id":"lib0/decoding","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f37f680-6"}]},"9f37f680-238":{"id":"express-serve-static-core","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f37f680-18"}]},"9f37f680-239":{"id":"reconnecting-websocket","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f37f680-4"}]},"9f37f680-240":{"id":"@inditextech/weave-sdk","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f37f680-2"},{"uid":"9f37f680-216"}]},"9f37f680-241":{"id":"@inditextech/weave-sdk/server","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f37f680-222"}]},"9f37f680-242":{"id":"node:crypto","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f37f680-216"},{"uid":"9f37f680-218"}]},"9f37f680-243":{"id":"/src/server/event-handler/cloud-events-protocols.ts","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f37f680-176"}]},"9f37f680-244":{"id":"node:util","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f37f680-140"},{"uid":"9f37f680-106"},{"uid":"9f37f680-154"}]},"9f37f680-245":{"id":"node:v8","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f37f680-140"}]},"9f37f680-246":{"id":"node:events","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f37f680-140"}]},"9f37f680-247":{"id":"node:stream","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f37f680-140"}]},"9f37f680-248":{"id":"node:http","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f37f680-140"}]},"9f37f680-249":{"id":"node:async_hooks","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f37f680-140"}]},"9f37f680-250":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/lib0/metric.js","moduleParts":{},"imported":[{"uid":"9f37f680-180"}],"importedBy":[{"uid":"9f37f680-198"}]},"9f37f680-251":{"id":"node:url","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f37f680-170"}]},"9f37f680-252":{"id":"async_hooks","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f37f680-32"}]},"9f37f680-253":{"id":"url","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f37f680-92"},{"uid":"9f37f680-72"},{"uid":"9f37f680-74"}]},"9f37f680-254":{"id":"net","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f37f680-92"}]},"9f37f680-255":{"id":"util","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f37f680-92"},{"uid":"9f37f680-138"},{"uid":"9f37f680-46"}]},"9f37f680-256":{"id":"node:assert","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f37f680-106"}]},"9f37f680-257":{"id":"node:path","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f37f680-106"}]},"9f37f680-258":{"id":"stream","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f37f680-104"},{"uid":"9f37f680-98"}]},"9f37f680-259":{"id":"path","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f37f680-40"},{"uid":"9f37f680-94"},{"uid":"9f37f680-82"},{"uid":"9f37f680-66"},{"uid":"9f37f680-114"}]},"9f37f680-260":{"id":"events","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f37f680-98"},{"uid":"9f37f680-112"}]},"9f37f680-261":{"id":"fs","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f37f680-98"}]},"9f37f680-262":{"id":"zlib","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f37f680-98"}]},"9f37f680-263":{"id":"http","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f37f680-136"}]},"9f37f680-264":{"id":"crypto","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f37f680-134"},{"uid":"9f37f680-132"}]},"9f37f680-265":{"id":"node:os","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f37f680-154"}]},"9f37f680-266":{"id":"node:process","moduleParts":{},"imported":[],"importedBy":[{"uid":"9f37f680-154"}]}},"env":{"rollup":"4.23.0"},"options":{"gzip":true,"brotli":true,"sourcemap":false}};
|
|
4933
|
+
const data = {"version":2,"tree":{"name":"root","children":[{"name":"server.d.ts","children":[{"name":"src","children":[{"uid":"c28ed105-1","name":"constants.d.ts"},{"uid":"c28ed105-3","name":"store-azure-web-pubsub.d.ts"},{"uid":"c28ed105-5","name":"client.d.ts"},{"uid":"c28ed105-7","name":"types.d.ts"},{"uid":"c28ed105-9","name":"yjs.d.ts"},{"name":"server","children":[{"name":"event-handler","children":[{"name":"enum/mqtt-error-codes","children":[{"uid":"c28ed105-11","name":"mqtt-disconnect-reason-code.d.ts"},{"uid":"c28ed105-13","name":"mqtt-v311-connect-return-code.d.ts"},{"uid":"c28ed105-15","name":"mqtt-v500-connect-reason-code.d.ts"}]},{"uid":"c28ed105-17","name":"cloud-events-protocols.d.ts"},{"uid":"c28ed105-19","name":"web-pubsub-event-handler.d.ts"}]},{"uid":"c28ed105-21","name":"azure-web-pubsub-host.d.ts"},{"uid":"c28ed105-23","name":"azure-web-pubsub-sync-handler.d.ts"},{"uid":"c28ed105-25","name":"azure-web-pubsub-server.d.ts"}]},{"uid":"c28ed105-27","name":"index.server.d.ts"}]}]},{"name":"server.js","children":[{"uid":"c28ed105-29","name":"rolldown:runtime"},{"name":"home/runner/work/weavejs/weavejs/code/node_modules","children":[{"name":"ee-first/index.js","uid":"c28ed105-31"},{"name":"on-finished/index.js","uid":"c28ed105-33"},{"name":"koa-compose/index.js","uid":"c28ed105-35"},{"name":"statuses","children":[{"uid":"c28ed105-37","name":"codes.json"},{"uid":"c28ed105-39","name":"index.js"}]},{"name":"depd/index.js","uid":"c28ed105-41"},{"name":"setprototypeof/index.js","uid":"c28ed105-43"},{"name":"inherits","children":[{"uid":"c28ed105-45","name":"inherits_browser.js"},{"uid":"c28ed105-47","name":"inherits.js"}]},{"name":"toidentifier/index.js","uid":"c28ed105-49"},{"name":"http-errors/index.js","uid":"c28ed105-51"},{"name":"koa","children":[{"name":"node_modules","children":[{"name":"negotiator","children":[{"name":"lib","children":[{"uid":"c28ed105-53","name":"charset.js"},{"uid":"c28ed105-55","name":"encoding.js"},{"uid":"c28ed105-57","name":"language.js"},{"uid":"c28ed105-59","name":"mediaType.js"}]},{"uid":"c28ed105-61","name":"index.js"}]},{"name":"mime-db","children":[{"uid":"c28ed105-63","name":"db.json"},{"uid":"c28ed105-65","name":"index.js"}]},{"name":"accepts","children":[{"name":"node_modules/mime-types/index.js","uid":"c28ed105-67"},{"uid":"c28ed105-69","name":"index.js"}]},{"name":"fresh/index.js","uid":"c28ed105-91"},{"name":"content-disposition/index.js","uid":"c28ed105-97"}]},{"name":"lib","children":[{"uid":"c28ed105-75","name":"search-params.js"},{"uid":"c28ed105-93","name":"only.js"},{"uid":"c28ed105-95","name":"request.js"},{"uid":"c28ed105-107","name":"is-stream.js"},{"uid":"c28ed105-109","name":"response.js"},{"uid":"c28ed105-141","name":"context.js"},{"uid":"c28ed105-143","name":"application.js"}]},{"name":"dist/koa.mjs","uid":"c28ed105-145"}]},{"name":"content-type/index.js","uid":"c28ed105-71"},{"name":"parseurl/index.js","uid":"c28ed105-73"},{"name":"type-is","children":[{"name":"node_modules/content-type/dist/index.js","uid":"c28ed105-77"},{"uid":"c28ed105-89","name":"index.js"}]},{"name":"mime-db","children":[{"uid":"c28ed105-79","name":"db.json"},{"uid":"c28ed105-81","name":"index.js"}]},{"name":"mime-types","children":[{"uid":"c28ed105-83","name":"mimeScore.js"},{"uid":"c28ed105-85","name":"index.js"}]},{"name":"media-typer/index.js","uid":"c28ed105-87"},{"name":"escape-html/index.js","uid":"c28ed105-99"},{"name":"destroy/index.js","uid":"c28ed105-101"},{"name":"encodeurl/index.js","uid":"c28ed105-103"},{"name":"vary/index.js","uid":"c28ed105-105"},{"name":"http-assert","children":[{"name":"node_modules","children":[{"name":"depd","children":[{"name":"lib/compat","children":[{"uid":"c28ed105-111","name":"callsite-tostring.js"},{"uid":"c28ed105-113","name":"event-listener-count.js"},{"uid":"c28ed105-115","name":"index.js"}]},{"uid":"c28ed105-117","name":"index.js"}]},{"name":"statuses","children":[{"uid":"c28ed105-119","name":"codes.json"},{"uid":"c28ed105-121","name":"index.js"}]},{"name":"http-errors/index.js","uid":"c28ed105-123"}]},{"uid":"c28ed105-131","name":"index.js"}]},{"name":"deep-equal","children":[{"name":"lib","children":[{"uid":"c28ed105-125","name":"keys.js"},{"uid":"c28ed105-127","name":"is_arguments.js"}]},{"uid":"c28ed105-129","name":"index.js"}]},{"name":"delegates/index.js","uid":"c28ed105-133"},{"name":"tsscmp/lib/index.js","uid":"c28ed105-135"},{"name":"keygrip/index.js","uid":"c28ed105-137"},{"name":"cookies/index.js","uid":"c28ed105-139"},{"name":"emittery","children":[{"uid":"c28ed105-147","name":"maps.js"},{"uid":"c28ed105-149","name":"index.js"}]},{"name":"@typespec/ts-http-runtime/dist/esm/logger","children":[{"uid":"c28ed105-157","name":"log.js"},{"uid":"c28ed105-159","name":"debug.js"},{"uid":"c28ed105-161","name":"logger.js"},{"uid":"c28ed105-163","name":"internal.js"}]},{"name":"@azure/logger/dist/esm/index.js","uid":"c28ed105-165"},{"name":"lib0","children":[{"uid":"c28ed105-181","name":"binary.js"},{"uid":"c28ed105-183","name":"math.js"},{"uid":"c28ed105-185","name":"number.js"},{"uid":"c28ed105-187","name":"set.js"},{"uid":"c28ed105-189","name":"array.js"},{"uid":"c28ed105-191","name":"string.js"},{"uid":"c28ed105-193","name":"error.js"},{"uid":"c28ed105-195","name":"encoding.js"},{"uid":"c28ed105-197","name":"decoding.js"},{"uid":"c28ed105-201","name":"time.js"},{"uid":"c28ed105-203","name":"map.js"},{"uid":"c28ed105-205","name":"observable.js"},{"name":"trait/equality.js","uid":"c28ed105-207"},{"uid":"c28ed105-209","name":"object.js"},{"uid":"c28ed105-211","name":"function.js"}]},{"name":"y-protocols","children":[{"uid":"c28ed105-199","name":"sync.js"},{"uid":"c28ed105-213","name":"awareness.js"}]}]},{"name":"src","children":[{"uid":"c28ed105-151","name":"types.ts"},{"uid":"c28ed105-153","name":"yjs.ts"},{"name":"server","children":[{"name":"event-handler","children":[{"uid":"c28ed105-155","name":"utils.ts"},{"uid":"c28ed105-167","name":"logger.ts"},{"name":"enum/mqtt-error-codes","children":[{"uid":"c28ed105-169","name":"mqtt-v311-connect-return-code.ts"},{"uid":"c28ed105-171","name":"mqtt-v500-connect-reason-code.ts"},{"uid":"c28ed105-177","name":"mqtt-disconnect-reason-code.ts"}]},{"uid":"c28ed105-173","name":"cloud-events-dispatcher.ts"},{"uid":"c28ed105-175","name":"web-pubsub-event-handler.ts"},{"uid":"c28ed105-179","name":"index.ts"}]},{"uid":"c28ed105-219","name":"azure-web-pubsub-host.ts"},{"uid":"c28ed105-221","name":"utils.ts"},{"uid":"c28ed105-223","name":"azure-web-pubsub-sync-handler.ts"},{"uid":"c28ed105-225","name":"azure-web-pubsub-server.ts"}]},{"uid":"c28ed105-215","name":"utils.ts"},{"uid":"c28ed105-217","name":"constants.ts"},{"uid":"c28ed105-227","name":"index.server.ts"}]}]}],"isRoot":true},"nodeParts":{"c28ed105-1":{"renderedLength":495,"gzipLength":252,"brotliLength":216,"metaUid":"c28ed105-0"},"c28ed105-3":{"renderedLength":439,"gzipLength":218,"brotliLength":181,"metaUid":"c28ed105-2"},"c28ed105-5":{"renderedLength":503,"gzipLength":227,"brotliLength":207,"metaUid":"c28ed105-4"},"c28ed105-7":{"renderedLength":2852,"gzipLength":702,"brotliLength":603,"metaUid":"c28ed105-6"},"c28ed105-9":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c28ed105-8"},"c28ed105-11":{"renderedLength":183,"gzipLength":153,"brotliLength":124,"metaUid":"c28ed105-10"},"c28ed105-13":{"renderedLength":185,"gzipLength":158,"brotliLength":130,"metaUid":"c28ed105-12"},"c28ed105-15":{"renderedLength":287,"gzipLength":218,"brotliLength":172,"metaUid":"c28ed105-14"},"c28ed105-17":{"renderedLength":3151,"gzipLength":738,"brotliLength":644,"metaUid":"c28ed105-16"},"c28ed105-19":{"renderedLength":297,"gzipLength":206,"brotliLength":157,"metaUid":"c28ed105-18"},"c28ed105-21":{"renderedLength":393,"gzipLength":219,"brotliLength":187,"metaUid":"c28ed105-20"},"c28ed105-23":{"renderedLength":660,"gzipLength":257,"brotliLength":225,"metaUid":"c28ed105-22"},"c28ed105-25":{"renderedLength":839,"gzipLength":315,"brotliLength":294,"metaUid":"c28ed105-24"},"c28ed105-27":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c28ed105-26"},"c28ed105-29":{"renderedLength":1207,"gzipLength":605,"brotliLength":543,"metaUid":"c28ed105-28"},"c28ed105-31":{"renderedLength":1564,"gzipLength":706,"brotliLength":596,"metaUid":"c28ed105-30"},"c28ed105-33":{"renderedLength":4007,"gzipLength":1364,"brotliLength":1159,"metaUid":"c28ed105-32"},"c28ed105-35":{"renderedLength":1215,"gzipLength":579,"brotliLength":486,"metaUid":"c28ed105-34"},"c28ed105-37":{"renderedLength":1972,"gzipLength":887,"brotliLength":672,"metaUid":"c28ed105-36"},"c28ed105-39":{"renderedLength":2400,"gzipLength":869,"brotliLength":753,"metaUid":"c28ed105-38"},"c28ed105-41":{"renderedLength":9963,"gzipLength":2916,"brotliLength":2538,"metaUid":"c28ed105-40"},"c28ed105-43":{"renderedLength":539,"gzipLength":301,"brotliLength":240,"metaUid":"c28ed105-42"},"c28ed105-45":{"renderedLength":776,"gzipLength":325,"brotliLength":273,"metaUid":"c28ed105-44"},"c28ed105-47":{"renderedLength":421,"gzipLength":243,"brotliLength":189,"metaUid":"c28ed105-46"},"c28ed105-49":{"renderedLength":555,"gzipLength":334,"brotliLength":293,"metaUid":"c28ed105-48"},"c28ed105-51":{"renderedLength":5891,"gzipLength":1672,"brotliLength":1457,"metaUid":"c28ed105-50"},"c28ed105-53":{"renderedLength":2924,"gzipLength":1038,"brotliLength":889,"metaUid":"c28ed105-52"},"c28ed105-55":{"renderedLength":3185,"gzipLength":1097,"brotliLength":947,"metaUid":"c28ed105-54"},"c28ed105-57":{"renderedLength":3204,"gzipLength":1106,"brotliLength":946,"metaUid":"c28ed105-56"},"c28ed105-59":{"renderedLength":4875,"gzipLength":1580,"brotliLength":1382,"metaUid":"c28ed105-58"},"c28ed105-61":{"renderedLength":2492,"gzipLength":584,"brotliLength":463,"metaUid":"c28ed105-60"},"c28ed105-63":{"renderedLength":179113,"gzipLength":20857,"brotliLength":18454,"metaUid":"c28ed105-62"},"c28ed105-65":{"renderedLength":378,"gzipLength":247,"brotliLength":180,"metaUid":"c28ed105-64"},"c28ed105-67":{"renderedLength":3288,"gzipLength":1125,"brotliLength":943,"metaUid":"c28ed105-66"},"c28ed105-69":{"renderedLength":4839,"gzipLength":1430,"brotliLength":1184,"metaUid":"c28ed105-68"},"c28ed105-71":{"renderedLength":4580,"gzipLength":1605,"brotliLength":1381,"metaUid":"c28ed105-70"},"c28ed105-73":{"renderedLength":2361,"gzipLength":840,"brotliLength":724,"metaUid":"c28ed105-72"},"c28ed105-75":{"renderedLength":1001,"gzipLength":470,"brotliLength":412,"metaUid":"c28ed105-74"},"c28ed105-77":{"renderedLength":4745,"gzipLength":1614,"brotliLength":1371,"metaUid":"c28ed105-76"},"c28ed105-79":{"renderedLength":196147,"gzipLength":22796,"brotliLength":20148,"metaUid":"c28ed105-78"},"c28ed105-81":{"renderedLength":340,"gzipLength":239,"brotliLength":179,"metaUid":"c28ed105-80"},"c28ed105-83":{"renderedLength":1135,"gzipLength":551,"brotliLength":451,"metaUid":"c28ed105-82"},"c28ed105-85":{"renderedLength":3826,"gzipLength":1245,"brotliLength":1041,"metaUid":"c28ed105-84"},"c28ed105-87":{"renderedLength":3005,"gzipLength":1003,"brotliLength":826,"metaUid":"c28ed105-86"},"c28ed105-89":{"renderedLength":4799,"gzipLength":1697,"brotliLength":1412,"metaUid":"c28ed105-88"},"c28ed105-91":{"renderedLength":2331,"gzipLength":934,"brotliLength":770,"metaUid":"c28ed105-90"},"c28ed105-93":{"renderedLength":358,"gzipLength":243,"brotliLength":196,"metaUid":"c28ed105-92"},"c28ed105-95":{"renderedLength":6502,"gzipLength":2120,"brotliLength":1841,"metaUid":"c28ed105-94"},"c28ed105-97":{"renderedLength":9656,"gzipLength":3099,"brotliLength":2691,"metaUid":"c28ed105-96"},"c28ed105-99":{"renderedLength":1254,"gzipLength":553,"brotliLength":435,"metaUid":"c28ed105-98"},"c28ed105-101":{"renderedLength":3902,"gzipLength":1266,"brotliLength":1077,"metaUid":"c28ed105-100"},"c28ed105-103":{"renderedLength":1642,"gzipLength":817,"brotliLength":689,"metaUid":"c28ed105-102"},"c28ed105-105":{"renderedLength":2506,"gzipLength":1039,"brotliLength":883,"metaUid":"c28ed105-104"},"c28ed105-107":{"renderedLength":594,"gzipLength":280,"brotliLength":250,"metaUid":"c28ed105-106"},"c28ed105-109":{"renderedLength":7222,"gzipLength":2266,"brotliLength":1986,"metaUid":"c28ed105-108"},"c28ed105-111":{"renderedLength":2266,"gzipLength":778,"brotliLength":683,"metaUid":"c28ed105-110"},"c28ed105-113":{"renderedLength":516,"gzipLength":280,"brotliLength":234,"metaUid":"c28ed105-112"},"c28ed105-115":{"renderedLength":1500,"gzipLength":595,"brotliLength":503,"metaUid":"c28ed105-114"},"c28ed105-117":{"renderedLength":9704,"gzipLength":2761,"brotliLength":2417,"metaUid":"c28ed105-116"},"c28ed105-119":{"renderedLength":2052,"gzipLength":911,"brotliLength":698,"metaUid":"c28ed105-118"},"c28ed105-121":{"renderedLength":1954,"gzipLength":796,"brotliLength":685,"metaUid":"c28ed105-120"},"c28ed105-123":{"renderedLength":5938,"gzipLength":1705,"brotliLength":1478,"metaUid":"c28ed105-122"},"c28ed105-125":{"renderedLength":374,"gzipLength":238,"brotliLength":203,"metaUid":"c28ed105-124"},"c28ed105-127":{"renderedLength":816,"gzipLength":350,"brotliLength":289,"metaUid":"c28ed105-126"},"c28ed105-129":{"renderedLength":1965,"gzipLength":723,"brotliLength":610,"metaUid":"c28ed105-128"},"c28ed105-131":{"renderedLength":1190,"gzipLength":335,"brotliLength":292,"metaUid":"c28ed105-130"},"c28ed105-133":{"renderedLength":2232,"gzipLength":572,"brotliLength":488,"metaUid":"c28ed105-132"},"c28ed105-135":{"renderedLength":763,"gzipLength":394,"brotliLength":324,"metaUid":"c28ed105-134"},"c28ed105-137":{"renderedLength":1218,"gzipLength":561,"brotliLength":471,"metaUid":"c28ed105-136"},"c28ed105-139":{"renderedLength":7410,"gzipLength":2440,"brotliLength":2099,"metaUid":"c28ed105-138"},"c28ed105-141":{"renderedLength":3398,"gzipLength":1280,"brotliLength":1125,"metaUid":"c28ed105-140"},"c28ed105-143":{"renderedLength":8688,"gzipLength":2935,"brotliLength":2591,"metaUid":"c28ed105-142"},"c28ed105-145":{"renderedLength":115,"gzipLength":115,"brotliLength":96,"metaUid":"c28ed105-144"},"c28ed105-147":{"renderedLength":158,"gzipLength":122,"brotliLength":109,"metaUid":"c28ed105-146"},"c28ed105-149":{"renderedLength":12602,"gzipLength":2888,"brotliLength":2560,"metaUid":"c28ed105-148"},"c28ed105-151":{"renderedLength":476,"gzipLength":226,"brotliLength":185,"metaUid":"c28ed105-150"},"c28ed105-153":{"renderedLength":57,"gzipLength":73,"brotliLength":61,"metaUid":"c28ed105-152"},"c28ed105-155":{"renderedLength":1101,"gzipLength":525,"brotliLength":451,"metaUid":"c28ed105-154"},"c28ed105-157":{"renderedLength":193,"gzipLength":167,"brotliLength":140,"metaUid":"c28ed105-156"},"c28ed105-159":{"renderedLength":4071,"gzipLength":1245,"brotliLength":1076,"metaUid":"c28ed105-158"},"c28ed105-161":{"renderedLength":3184,"gzipLength":1154,"brotliLength":992,"metaUid":"c28ed105-160"},"c28ed105-163":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c28ed105-162"},"c28ed105-165":{"renderedLength":640,"gzipLength":402,"brotliLength":306,"metaUid":"c28ed105-164"},"c28ed105-167":{"renderedLength":119,"gzipLength":120,"brotliLength":94,"metaUid":"c28ed105-166"},"c28ed105-169":{"renderedLength":1465,"gzipLength":547,"brotliLength":434,"metaUid":"c28ed105-168"},"c28ed105-171":{"renderedLength":5173,"gzipLength":1349,"brotliLength":1076,"metaUid":"c28ed105-170"},"c28ed105-173":{"renderedLength":12076,"gzipLength":2763,"brotliLength":2437,"metaUid":"c28ed105-172"},"c28ed105-175":{"renderedLength":2508,"gzipLength":891,"brotliLength":756,"metaUid":"c28ed105-174"},"c28ed105-177":{"renderedLength":7967,"gzipLength":1797,"brotliLength":1463,"metaUid":"c28ed105-176"},"c28ed105-179":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c28ed105-178"},"c28ed105-181":{"renderedLength":905,"gzipLength":297,"brotliLength":224,"metaUid":"c28ed105-180"},"c28ed105-183":{"renderedLength":453,"gzipLength":238,"brotliLength":195,"metaUid":"c28ed105-182"},"c28ed105-185":{"renderedLength":448,"gzipLength":260,"brotliLength":219,"metaUid":"c28ed105-184"},"c28ed105-187":{"renderedLength":147,"gzipLength":138,"brotliLength":123,"metaUid":"c28ed105-186"},"c28ed105-189":{"renderedLength":263,"gzipLength":198,"brotliLength":150,"metaUid":"c28ed105-188"},"c28ed105-191":{"renderedLength":1356,"gzipLength":600,"brotliLength":498,"metaUid":"c28ed105-190"},"c28ed105-193":{"renderedLength":202,"gzipLength":167,"brotliLength":134,"metaUid":"c28ed105-192"},"c28ed105-195":{"renderedLength":4121,"gzipLength":1201,"brotliLength":1057,"metaUid":"c28ed105-194"},"c28ed105-197":{"renderedLength":4493,"gzipLength":1532,"brotliLength":1293,"metaUid":"c28ed105-196"},"c28ed105-199":{"renderedLength":4603,"gzipLength":1487,"brotliLength":1223,"metaUid":"c28ed105-198"},"c28ed105-201":{"renderedLength":141,"gzipLength":136,"brotliLength":102,"metaUid":"c28ed105-200"},"c28ed105-203":{"renderedLength":892,"gzipLength":479,"brotliLength":439,"metaUid":"c28ed105-202"},"c28ed105-205":{"renderedLength":1299,"gzipLength":592,"brotliLength":509,"metaUid":"c28ed105-204"},"c28ed105-207":{"renderedLength":113,"gzipLength":111,"brotliLength":86,"metaUid":"c28ed105-206"},"c28ed105-209":{"renderedLength":433,"gzipLength":244,"brotliLength":205,"metaUid":"c28ed105-208"},"c28ed105-211":{"renderedLength":1387,"gzipLength":543,"brotliLength":463,"metaUid":"c28ed105-210"},"c28ed105-213":{"renderedLength":7280,"gzipLength":2180,"brotliLength":1870,"metaUid":"c28ed105-212"},"c28ed105-215":{"renderedLength":748,"gzipLength":280,"brotliLength":255,"metaUid":"c28ed105-214"},"c28ed105-217":{"renderedLength":824,"gzipLength":410,"brotliLength":339,"metaUid":"c28ed105-216"},"c28ed105-219":{"renderedLength":11102,"gzipLength":2714,"brotliLength":2392,"metaUid":"c28ed105-218"},"c28ed105-221":{"renderedLength":471,"gzipLength":274,"brotliLength":235,"metaUid":"c28ed105-220"},"c28ed105-223":{"renderedLength":5756,"gzipLength":1602,"brotliLength":1386,"metaUid":"c28ed105-222"},"c28ed105-225":{"renderedLength":2106,"gzipLength":712,"brotliLength":607,"metaUid":"c28ed105-224"},"c28ed105-227":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c28ed105-226"}},"nodeMetas":{"c28ed105-0":{"id":"/src/constants.d.ts","moduleParts":{"server.d.ts":"c28ed105-1"},"imported":[{"uid":"c28ed105-6"}],"importedBy":[{"uid":"c28ed105-26"},{"uid":"c28ed105-6"}]},"c28ed105-2":{"id":"/src/store-azure-web-pubsub.d.ts","moduleParts":{"server.d.ts":"c28ed105-3"},"imported":[{"uid":"c28ed105-242"},{"uid":"c28ed105-232"},{"uid":"c28ed105-4"},{"uid":"c28ed105-6"}],"importedBy":[{"uid":"c28ed105-4"}]},"c28ed105-4":{"id":"/src/client.d.ts","moduleParts":{"server.d.ts":"c28ed105-5"},"imported":[{"uid":"c28ed105-230"},{"uid":"c28ed105-237"},{"uid":"c28ed105-241"},{"uid":"c28ed105-233"},{"uid":"c28ed105-6"},{"uid":"c28ed105-2"},{"uid":"c28ed105-232"}],"importedBy":[{"uid":"c28ed105-6"},{"uid":"c28ed105-2"}]},"c28ed105-6":{"id":"/src/types.d.ts","moduleParts":{"server.d.ts":"c28ed105-7"},"imported":[{"uid":"c28ed105-235"},{"uid":"c28ed105-236"},{"uid":"c28ed105-237"},{"uid":"c28ed105-26"},{"uid":"c28ed105-0"},{"uid":"c28ed105-4"},{"uid":"c28ed105-238"},{"uid":"c28ed105-239"},{"uid":"c28ed105-232"}],"importedBy":[{"uid":"c28ed105-26"},{"uid":"c28ed105-24"},{"uid":"c28ed105-20"},{"uid":"c28ed105-0"},{"uid":"c28ed105-22"},{"uid":"c28ed105-4"},{"uid":"c28ed105-2"}]},"c28ed105-8":{"id":"/src/yjs.d.ts","moduleParts":{"server.d.ts":"c28ed105-9"},"imported":[{"uid":"c28ed105-237"}],"importedBy":[{"uid":"c28ed105-24"},{"uid":"c28ed105-20"},{"uid":"c28ed105-22"}]},"c28ed105-10":{"id":"/src/server/event-handler/enum/mqtt-error-codes/mqtt-disconnect-reason-code.d.ts","moduleParts":{"server.d.ts":"c28ed105-11"},"imported":[],"importedBy":[{"uid":"c28ed105-228"},{"uid":"c28ed105-16"}]},"c28ed105-12":{"id":"/src/server/event-handler/enum/mqtt-error-codes/mqtt-v311-connect-return-code.d.ts","moduleParts":{"server.d.ts":"c28ed105-13"},"imported":[],"importedBy":[{"uid":"c28ed105-228"},{"uid":"c28ed105-16"}]},"c28ed105-14":{"id":"/src/server/event-handler/enum/mqtt-error-codes/mqtt-v500-connect-reason-code.d.ts","moduleParts":{"server.d.ts":"c28ed105-15"},"imported":[],"importedBy":[{"uid":"c28ed105-228"},{"uid":"c28ed105-16"}]},"c28ed105-16":{"id":"/src/server/event-handler/cloud-events-protocols.d.ts","moduleParts":{"server.d.ts":"c28ed105-17"},"imported":[{"uid":"c28ed105-10"},{"uid":"c28ed105-12"},{"uid":"c28ed105-14"}],"importedBy":[{"uid":"c28ed105-228"},{"uid":"c28ed105-18"}]},"c28ed105-18":{"id":"/src/server/event-handler/web-pubsub-event-handler.d.ts","moduleParts":{"server.d.ts":"c28ed105-19"},"imported":[{"uid":"c28ed105-240"},{"uid":"c28ed105-229"},{"uid":"c28ed105-16"}],"importedBy":[{"uid":"c28ed105-228"}]},"c28ed105-20":{"id":"/src/server/azure-web-pubsub-host.d.ts","moduleParts":{"server.d.ts":"c28ed105-21"},"imported":[{"uid":"c28ed105-233"},{"uid":"c28ed105-234"},{"uid":"c28ed105-8"},{"uid":"c28ed105-24"},{"uid":"c28ed105-6"},{"uid":"c28ed105-22"},{"uid":"c28ed105-232"}],"importedBy":[{"uid":"c28ed105-26"},{"uid":"c28ed105-22"}]},"c28ed105-22":{"id":"/src/server/azure-web-pubsub-sync-handler.d.ts","moduleParts":{"server.d.ts":"c28ed105-23"},"imported":[{"uid":"c28ed105-8"},{"uid":"c28ed105-234"},{"uid":"c28ed105-228"},{"uid":"c28ed105-6"},{"uid":"c28ed105-20"},{"uid":"c28ed105-24"},{"uid":"c28ed105-232"}],"importedBy":[{"uid":"c28ed105-24"},{"uid":"c28ed105-20"}]},"c28ed105-24":{"id":"/src/server/azure-web-pubsub-server.d.ts","moduleParts":{"server.d.ts":"c28ed105-25"},"imported":[{"uid":"c28ed105-229"},{"uid":"c28ed105-230"},{"uid":"c28ed105-6"},{"uid":"c28ed105-22"},{"uid":"c28ed105-228"},{"uid":"c28ed105-231"},{"uid":"c28ed105-8"},{"uid":"c28ed105-232"}],"importedBy":[{"uid":"c28ed105-26"},{"uid":"c28ed105-20"},{"uid":"c28ed105-22"}]},"c28ed105-26":{"id":"/src/index.server.d.ts","moduleParts":{"server.d.ts":"c28ed105-27"},"imported":[{"uid":"c28ed105-24"},{"uid":"c28ed105-20"},{"uid":"c28ed105-228"},{"uid":"c28ed105-0"},{"uid":"c28ed105-6"}],"importedBy":[{"uid":"c28ed105-6"}],"isEntry":true},"c28ed105-28":{"id":"rolldown:runtime","moduleParts":{"server.js":"c28ed105-29"},"imported":[],"importedBy":[]},"c28ed105-30":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/ee-first/index.js","moduleParts":{"server.js":"c28ed105-31"},"imported":[],"importedBy":[{"uid":"c28ed105-32"}]},"c28ed105-32":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/on-finished/index.js","moduleParts":{"server.js":"c28ed105-33"},"imported":[{"uid":"c28ed105-30"},{"uid":"c28ed105-254"}],"importedBy":[{"uid":"c28ed105-142"},{"uid":"c28ed105-108"}]},"c28ed105-34":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/koa-compose/index.js","moduleParts":{"server.js":"c28ed105-35"},"imported":[],"importedBy":[{"uid":"c28ed105-142"}]},"c28ed105-36":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/statuses/codes.json","moduleParts":{"server.js":"c28ed105-37"},"imported":[],"importedBy":[{"uid":"c28ed105-38"}]},"c28ed105-38":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/statuses/index.js","moduleParts":{"server.js":"c28ed105-39"},"imported":[{"uid":"c28ed105-36"}],"importedBy":[{"uid":"c28ed105-142"},{"uid":"c28ed105-50"},{"uid":"c28ed105-108"},{"uid":"c28ed105-140"}]},"c28ed105-40":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/depd/index.js","moduleParts":{"server.js":"c28ed105-41"},"imported":[{"uid":"c28ed105-261"}],"importedBy":[{"uid":"c28ed105-50"},{"uid":"c28ed105-138"}]},"c28ed105-42":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/setprototypeof/index.js","moduleParts":{"server.js":"c28ed105-43"},"imported":[],"importedBy":[{"uid":"c28ed105-50"},{"uid":"c28ed105-122"}]},"c28ed105-44":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/inherits/inherits_browser.js","moduleParts":{"server.js":"c28ed105-45"},"imported":[],"importedBy":[{"uid":"c28ed105-46"}]},"c28ed105-46":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/inherits/inherits.js","moduleParts":{"server.js":"c28ed105-47"},"imported":[{"uid":"c28ed105-257"},{"uid":"c28ed105-44"}],"importedBy":[{"uid":"c28ed105-50"},{"uid":"c28ed105-122"}]},"c28ed105-48":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/toidentifier/index.js","moduleParts":{"server.js":"c28ed105-49"},"imported":[],"importedBy":[{"uid":"c28ed105-50"},{"uid":"c28ed105-122"}]},"c28ed105-50":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/http-errors/index.js","moduleParts":{"server.js":"c28ed105-51"},"imported":[{"uid":"c28ed105-40"},{"uid":"c28ed105-42"},{"uid":"c28ed105-38"},{"uid":"c28ed105-46"},{"uid":"c28ed105-48"}],"importedBy":[{"uid":"c28ed105-142"},{"uid":"c28ed105-140"}]},"c28ed105-52":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/koa/node_modules/negotiator/lib/charset.js","moduleParts":{"server.js":"c28ed105-53"},"imported":[],"importedBy":[{"uid":"c28ed105-60"}]},"c28ed105-54":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/koa/node_modules/negotiator/lib/encoding.js","moduleParts":{"server.js":"c28ed105-55"},"imported":[],"importedBy":[{"uid":"c28ed105-60"}]},"c28ed105-56":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/koa/node_modules/negotiator/lib/language.js","moduleParts":{"server.js":"c28ed105-57"},"imported":[],"importedBy":[{"uid":"c28ed105-60"}]},"c28ed105-58":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/koa/node_modules/negotiator/lib/mediaType.js","moduleParts":{"server.js":"c28ed105-59"},"imported":[],"importedBy":[{"uid":"c28ed105-60"}]},"c28ed105-60":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/koa/node_modules/negotiator/index.js","moduleParts":{"server.js":"c28ed105-61"},"imported":[{"uid":"c28ed105-52"},{"uid":"c28ed105-54"},{"uid":"c28ed105-56"},{"uid":"c28ed105-58"}],"importedBy":[{"uid":"c28ed105-68"}]},"c28ed105-62":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/koa/node_modules/mime-db/db.json","moduleParts":{"server.js":"c28ed105-63"},"imported":[],"importedBy":[{"uid":"c28ed105-64"}]},"c28ed105-64":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/koa/node_modules/mime-db/index.js","moduleParts":{"server.js":"c28ed105-65"},"imported":[{"uid":"c28ed105-62"}],"importedBy":[{"uid":"c28ed105-66"}]},"c28ed105-66":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/koa/node_modules/accepts/node_modules/mime-types/index.js","moduleParts":{"server.js":"c28ed105-67"},"imported":[{"uid":"c28ed105-64"},{"uid":"c28ed105-261"}],"importedBy":[{"uid":"c28ed105-68"}]},"c28ed105-68":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/koa/node_modules/accepts/index.js","moduleParts":{"server.js":"c28ed105-69"},"imported":[{"uid":"c28ed105-60"},{"uid":"c28ed105-66"}],"importedBy":[{"uid":"c28ed105-94"}]},"c28ed105-70":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/content-type/index.js","moduleParts":{"server.js":"c28ed105-71"},"imported":[],"importedBy":[{"uid":"c28ed105-94"}]},"c28ed105-72":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/parseurl/index.js","moduleParts":{"server.js":"c28ed105-73"},"imported":[{"uid":"c28ed105-255"}],"importedBy":[{"uid":"c28ed105-94"}]},"c28ed105-74":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/koa/lib/search-params.js","moduleParts":{"server.js":"c28ed105-75"},"imported":[{"uid":"c28ed105-255"}],"importedBy":[{"uid":"c28ed105-94"}]},"c28ed105-76":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/type-is/node_modules/content-type/dist/index.js","moduleParts":{"server.js":"c28ed105-77"},"imported":[],"importedBy":[{"uid":"c28ed105-88"}]},"c28ed105-78":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/mime-db/db.json","moduleParts":{"server.js":"c28ed105-79"},"imported":[],"importedBy":[{"uid":"c28ed105-80"}]},"c28ed105-80":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/mime-db/index.js","moduleParts":{"server.js":"c28ed105-81"},"imported":[{"uid":"c28ed105-78"}],"importedBy":[{"uid":"c28ed105-84"}]},"c28ed105-82":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/mime-types/mimeScore.js","moduleParts":{"server.js":"c28ed105-83"},"imported":[],"importedBy":[{"uid":"c28ed105-84"}]},"c28ed105-84":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/mime-types/index.js","moduleParts":{"server.js":"c28ed105-85"},"imported":[{"uid":"c28ed105-80"},{"uid":"c28ed105-261"},{"uid":"c28ed105-82"}],"importedBy":[{"uid":"c28ed105-108"},{"uid":"c28ed105-88"}]},"c28ed105-86":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/media-typer/index.js","moduleParts":{"server.js":"c28ed105-87"},"imported":[],"importedBy":[{"uid":"c28ed105-88"}]},"c28ed105-88":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/type-is/index.js","moduleParts":{"server.js":"c28ed105-89"},"imported":[{"uid":"c28ed105-76"},{"uid":"c28ed105-84"},{"uid":"c28ed105-86"}],"importedBy":[{"uid":"c28ed105-94"},{"uid":"c28ed105-108"}]},"c28ed105-90":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/koa/node_modules/fresh/index.js","moduleParts":{"server.js":"c28ed105-91"},"imported":[],"importedBy":[{"uid":"c28ed105-94"}]},"c28ed105-92":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/koa/lib/only.js","moduleParts":{"server.js":"c28ed105-93"},"imported":[],"importedBy":[{"uid":"c28ed105-142"},{"uid":"c28ed105-94"},{"uid":"c28ed105-108"}]},"c28ed105-94":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/koa/lib/request.js","moduleParts":{"server.js":"c28ed105-95"},"imported":[{"uid":"c28ed105-255"},{"uid":"c28ed105-256"},{"uid":"c28ed105-68"},{"uid":"c28ed105-70"},{"uid":"c28ed105-72"},{"uid":"c28ed105-74"},{"uid":"c28ed105-88"},{"uid":"c28ed105-90"},{"uid":"c28ed105-92"},{"uid":"c28ed105-257"}],"importedBy":[{"uid":"c28ed105-142"}]},"c28ed105-96":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/koa/node_modules/content-disposition/index.js","moduleParts":{"server.js":"c28ed105-97"},"imported":[{"uid":"c28ed105-261"}],"importedBy":[{"uid":"c28ed105-108"}]},"c28ed105-98":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/escape-html/index.js","moduleParts":{"server.js":"c28ed105-99"},"imported":[],"importedBy":[{"uid":"c28ed105-108"}]},"c28ed105-100":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/destroy/index.js","moduleParts":{"server.js":"c28ed105-101"},"imported":[{"uid":"c28ed105-262"},{"uid":"c28ed105-263"},{"uid":"c28ed105-260"},{"uid":"c28ed105-264"}],"importedBy":[{"uid":"c28ed105-108"}]},"c28ed105-102":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/encodeurl/index.js","moduleParts":{"server.js":"c28ed105-103"},"imported":[],"importedBy":[{"uid":"c28ed105-108"}]},"c28ed105-104":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/vary/index.js","moduleParts":{"server.js":"c28ed105-105"},"imported":[],"importedBy":[{"uid":"c28ed105-108"}]},"c28ed105-106":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/koa/lib/is-stream.js","moduleParts":{"server.js":"c28ed105-107"},"imported":[{"uid":"c28ed105-260"}],"importedBy":[{"uid":"c28ed105-142"},{"uid":"c28ed105-108"}]},"c28ed105-108":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/koa/lib/response.js","moduleParts":{"server.js":"c28ed105-109"},"imported":[{"uid":"c28ed105-258"},{"uid":"c28ed105-259"},{"uid":"c28ed105-246"},{"uid":"c28ed105-96"},{"uid":"c28ed105-32"},{"uid":"c28ed105-98"},{"uid":"c28ed105-88"},{"uid":"c28ed105-38"},{"uid":"c28ed105-100"},{"uid":"c28ed105-102"},{"uid":"c28ed105-104"},{"uid":"c28ed105-84"},{"uid":"c28ed105-106"},{"uid":"c28ed105-92"}],"importedBy":[{"uid":"c28ed105-142"}]},"c28ed105-110":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/http-assert/node_modules/depd/lib/compat/callsite-tostring.js","moduleParts":{"server.js":"c28ed105-111"},"imported":[],"importedBy":[{"uid":"c28ed105-114"}]},"c28ed105-112":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/http-assert/node_modules/depd/lib/compat/event-listener-count.js","moduleParts":{"server.js":"c28ed105-113"},"imported":[],"importedBy":[{"uid":"c28ed105-114"}]},"c28ed105-114":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/http-assert/node_modules/depd/lib/compat/index.js","moduleParts":{"server.js":"c28ed105-115"},"imported":[{"uid":"c28ed105-262"},{"uid":"c28ed105-110"},{"uid":"c28ed105-112"}],"importedBy":[{"uid":"c28ed105-116"}]},"c28ed105-116":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/http-assert/node_modules/depd/index.js","moduleParts":{"server.js":"c28ed105-117"},"imported":[{"uid":"c28ed105-114"},{"uid":"c28ed105-261"}],"importedBy":[{"uid":"c28ed105-122"}]},"c28ed105-118":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/http-assert/node_modules/statuses/codes.json","moduleParts":{"server.js":"c28ed105-119"},"imported":[],"importedBy":[{"uid":"c28ed105-120"}]},"c28ed105-120":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/http-assert/node_modules/statuses/index.js","moduleParts":{"server.js":"c28ed105-121"},"imported":[{"uid":"c28ed105-118"}],"importedBy":[{"uid":"c28ed105-122"}]},"c28ed105-122":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/http-assert/node_modules/http-errors/index.js","moduleParts":{"server.js":"c28ed105-123"},"imported":[{"uid":"c28ed105-116"},{"uid":"c28ed105-42"},{"uid":"c28ed105-120"},{"uid":"c28ed105-46"},{"uid":"c28ed105-48"}],"importedBy":[{"uid":"c28ed105-130"}]},"c28ed105-124":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/deep-equal/lib/keys.js","moduleParts":{"server.js":"c28ed105-125"},"imported":[],"importedBy":[{"uid":"c28ed105-128"}]},"c28ed105-126":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/deep-equal/lib/is_arguments.js","moduleParts":{"server.js":"c28ed105-127"},"imported":[],"importedBy":[{"uid":"c28ed105-128"}]},"c28ed105-128":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/deep-equal/index.js","moduleParts":{"server.js":"c28ed105-129"},"imported":[{"uid":"c28ed105-124"},{"uid":"c28ed105-126"}],"importedBy":[{"uid":"c28ed105-130"}]},"c28ed105-130":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/http-assert/index.js","moduleParts":{"server.js":"c28ed105-131"},"imported":[{"uid":"c28ed105-122"},{"uid":"c28ed105-128"}],"importedBy":[{"uid":"c28ed105-140"}]},"c28ed105-132":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/delegates/index.js","moduleParts":{"server.js":"c28ed105-133"},"imported":[],"importedBy":[{"uid":"c28ed105-140"}]},"c28ed105-134":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/tsscmp/lib/index.js","moduleParts":{"server.js":"c28ed105-135"},"imported":[{"uid":"c28ed105-266"}],"importedBy":[{"uid":"c28ed105-136"}]},"c28ed105-136":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/keygrip/index.js","moduleParts":{"server.js":"c28ed105-137"},"imported":[{"uid":"c28ed105-134"},{"uid":"c28ed105-266"}],"importedBy":[{"uid":"c28ed105-138"}]},"c28ed105-138":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/cookies/index.js","moduleParts":{"server.js":"c28ed105-139"},"imported":[{"uid":"c28ed105-40"},{"uid":"c28ed105-136"},{"uid":"c28ed105-265"}],"importedBy":[{"uid":"c28ed105-140"}]},"c28ed105-140":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/koa/lib/context.js","moduleParts":{"server.js":"c28ed105-141"},"imported":[{"uid":"c28ed105-257"},{"uid":"c28ed105-50"},{"uid":"c28ed105-130"},{"uid":"c28ed105-132"},{"uid":"c28ed105-38"},{"uid":"c28ed105-138"}],"importedBy":[{"uid":"c28ed105-142"}]},"c28ed105-142":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/koa/lib/application.js","moduleParts":{"server.js":"c28ed105-143"},"imported":[{"uid":"c28ed105-246"},{"uid":"c28ed105-247"},{"uid":"c28ed105-248"},{"uid":"c28ed105-249"},{"uid":"c28ed105-250"},{"uid":"c28ed105-251"},{"uid":"c28ed105-32"},{"uid":"c28ed105-34"},{"uid":"c28ed105-38"},{"uid":"c28ed105-50"},{"uid":"c28ed105-94"},{"uid":"c28ed105-108"},{"uid":"c28ed105-140"},{"uid":"c28ed105-106"},{"uid":"c28ed105-92"}],"importedBy":[{"uid":"c28ed105-144"}]},"c28ed105-144":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/koa/dist/koa.mjs","moduleParts":{"server.js":"c28ed105-145"},"imported":[{"uid":"c28ed105-142"}],"importedBy":[{"uid":"c28ed105-224"}]},"c28ed105-146":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/emittery/maps.js","moduleParts":{"server.js":"c28ed105-147"},"imported":[],"importedBy":[{"uid":"c28ed105-148"}]},"c28ed105-148":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/emittery/index.js","moduleParts":{"server.js":"c28ed105-149"},"imported":[{"uid":"c28ed105-146"}],"importedBy":[{"uid":"c28ed105-224"}]},"c28ed105-150":{"id":"/src/types.ts","moduleParts":{"server.js":"c28ed105-151"},"imported":[],"importedBy":[{"uid":"c28ed105-226"},{"uid":"c28ed105-224"},{"uid":"c28ed105-218"},{"uid":"c28ed105-222"}]},"c28ed105-152":{"id":"/src/yjs.ts","moduleParts":{"server.js":"c28ed105-153"},"imported":[{"uid":"c28ed105-237"}],"importedBy":[{"uid":"c28ed105-218"},{"uid":"c28ed105-222"},{"uid":"c28ed105-220"}]},"c28ed105-154":{"id":"/src/server/event-handler/utils.ts","moduleParts":{"server.js":"c28ed105-155"},"imported":[],"importedBy":[{"uid":"c28ed105-172"}]},"c28ed105-156":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/@typespec/ts-http-runtime/dist/esm/logger/log.js","moduleParts":{"server.js":"c28ed105-157"},"imported":[{"uid":"c28ed105-267"},{"uid":"c28ed105-246"},{"uid":"c28ed105-268"}],"importedBy":[{"uid":"c28ed105-158"}]},"c28ed105-158":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/@typespec/ts-http-runtime/dist/esm/logger/debug.js","moduleParts":{"server.js":"c28ed105-159"},"imported":[{"uid":"c28ed105-156"}],"importedBy":[{"uid":"c28ed105-160"}]},"c28ed105-160":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/@typespec/ts-http-runtime/dist/esm/logger/logger.js","moduleParts":{"server.js":"c28ed105-161"},"imported":[{"uid":"c28ed105-158"}],"importedBy":[{"uid":"c28ed105-162"}]},"c28ed105-162":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/@typespec/ts-http-runtime/dist/esm/logger/internal.js","moduleParts":{"server.js":"c28ed105-163"},"imported":[{"uid":"c28ed105-160"}],"importedBy":[{"uid":"c28ed105-164"}]},"c28ed105-164":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/@azure/logger/dist/esm/index.js","moduleParts":{"server.js":"c28ed105-165"},"imported":[{"uid":"c28ed105-162"}],"importedBy":[{"uid":"c28ed105-166"}]},"c28ed105-166":{"id":"/src/server/event-handler/logger.ts","moduleParts":{"server.js":"c28ed105-167"},"imported":[{"uid":"c28ed105-164"}],"importedBy":[{"uid":"c28ed105-172"}]},"c28ed105-168":{"id":"/src/server/event-handler/enum/mqtt-error-codes/mqtt-v311-connect-return-code.ts","moduleParts":{"server.js":"c28ed105-169"},"imported":[],"importedBy":[{"uid":"c28ed105-178"},{"uid":"c28ed105-172"}]},"c28ed105-170":{"id":"/src/server/event-handler/enum/mqtt-error-codes/mqtt-v500-connect-reason-code.ts","moduleParts":{"server.js":"c28ed105-171"},"imported":[],"importedBy":[{"uid":"c28ed105-178"},{"uid":"c28ed105-172"}]},"c28ed105-172":{"id":"/src/server/event-handler/cloud-events-dispatcher.ts","moduleParts":{"server.js":"c28ed105-173"},"imported":[{"uid":"c28ed105-154"},{"uid":"c28ed105-253"},{"uid":"c28ed105-166"},{"uid":"c28ed105-168"},{"uid":"c28ed105-170"}],"importedBy":[{"uid":"c28ed105-174"}]},"c28ed105-174":{"id":"/src/server/event-handler/web-pubsub-event-handler.ts","moduleParts":{"server.js":"c28ed105-175"},"imported":[{"uid":"c28ed105-172"}],"importedBy":[{"uid":"c28ed105-178"}]},"c28ed105-176":{"id":"/src/server/event-handler/enum/mqtt-error-codes/mqtt-disconnect-reason-code.ts","moduleParts":{"server.js":"c28ed105-177"},"imported":[],"importedBy":[{"uid":"c28ed105-178"}]},"c28ed105-178":{"id":"/src/server/event-handler/index.ts","moduleParts":{"server.js":"c28ed105-179"},"imported":[{"uid":"c28ed105-174"},{"uid":"c28ed105-245"},{"uid":"c28ed105-168"},{"uid":"c28ed105-170"},{"uid":"c28ed105-176"}],"importedBy":[{"uid":"c28ed105-226"},{"uid":"c28ed105-222"}]},"c28ed105-180":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/lib0/binary.js","moduleParts":{"server.js":"c28ed105-181"},"imported":[],"importedBy":[{"uid":"c28ed105-196"},{"uid":"c28ed105-194"},{"uid":"c28ed105-184"}]},"c28ed105-182":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/lib0/math.js","moduleParts":{"server.js":"c28ed105-183"},"imported":[],"importedBy":[{"uid":"c28ed105-196"},{"uid":"c28ed105-194"},{"uid":"c28ed105-212"},{"uid":"c28ed105-184"},{"uid":"c28ed105-200"},{"uid":"c28ed105-252"}]},"c28ed105-184":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/lib0/number.js","moduleParts":{"server.js":"c28ed105-185"},"imported":[{"uid":"c28ed105-182"},{"uid":"c28ed105-180"}],"importedBy":[{"uid":"c28ed105-196"},{"uid":"c28ed105-194"}]},"c28ed105-186":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/lib0/set.js","moduleParts":{"server.js":"c28ed105-187"},"imported":[],"importedBy":[{"uid":"c28ed105-188"},{"uid":"c28ed105-204"}]},"c28ed105-188":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/lib0/array.js","moduleParts":{"server.js":"c28ed105-189"},"imported":[{"uid":"c28ed105-186"}],"importedBy":[{"uid":"c28ed105-194"},{"uid":"c28ed105-190"},{"uid":"c28ed105-204"},{"uid":"c28ed105-210"}]},"c28ed105-190":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/lib0/string.js","moduleParts":{"server.js":"c28ed105-191"},"imported":[{"uid":"c28ed105-188"}],"importedBy":[{"uid":"c28ed105-196"},{"uid":"c28ed105-194"}]},"c28ed105-192":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/lib0/error.js","moduleParts":{"server.js":"c28ed105-193"},"imported":[],"importedBy":[{"uid":"c28ed105-196"}]},"c28ed105-194":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/lib0/encoding.js","moduleParts":{"server.js":"c28ed105-195"},"imported":[{"uid":"c28ed105-182"},{"uid":"c28ed105-184"},{"uid":"c28ed105-180"},{"uid":"c28ed105-190"},{"uid":"c28ed105-188"}],"importedBy":[{"uid":"c28ed105-218"},{"uid":"c28ed105-196"},{"uid":"c28ed105-198"},{"uid":"c28ed105-212"}]},"c28ed105-196":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/lib0/decoding.js","moduleParts":{"server.js":"c28ed105-197"},"imported":[{"uid":"c28ed105-180"},{"uid":"c28ed105-182"},{"uid":"c28ed105-184"},{"uid":"c28ed105-190"},{"uid":"c28ed105-192"},{"uid":"c28ed105-194"}],"importedBy":[{"uid":"c28ed105-218"},{"uid":"c28ed105-198"},{"uid":"c28ed105-212"}]},"c28ed105-198":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/y-protocols/sync.js","moduleParts":{"server.js":"c28ed105-199"},"imported":[{"uid":"c28ed105-194"},{"uid":"c28ed105-196"},{"uid":"c28ed105-237"}],"importedBy":[{"uid":"c28ed105-218"}]},"c28ed105-200":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/lib0/time.js","moduleParts":{"server.js":"c28ed105-201"},"imported":[{"uid":"c28ed105-252"},{"uid":"c28ed105-182"}],"importedBy":[{"uid":"c28ed105-212"}]},"c28ed105-202":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/lib0/map.js","moduleParts":{"server.js":"c28ed105-203"},"imported":[],"importedBy":[{"uid":"c28ed105-204"}]},"c28ed105-204":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/lib0/observable.js","moduleParts":{"server.js":"c28ed105-205"},"imported":[{"uid":"c28ed105-202"},{"uid":"c28ed105-186"},{"uid":"c28ed105-188"}],"importedBy":[{"uid":"c28ed105-212"}]},"c28ed105-206":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/lib0/trait/equality.js","moduleParts":{"server.js":"c28ed105-207"},"imported":[],"importedBy":[{"uid":"c28ed105-210"},{"uid":"c28ed105-208"}]},"c28ed105-208":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/lib0/object.js","moduleParts":{"server.js":"c28ed105-209"},"imported":[{"uid":"c28ed105-206"}],"importedBy":[{"uid":"c28ed105-210"}]},"c28ed105-210":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/lib0/function.js","moduleParts":{"server.js":"c28ed105-211"},"imported":[{"uid":"c28ed105-188"},{"uid":"c28ed105-208"},{"uid":"c28ed105-206"}],"importedBy":[{"uid":"c28ed105-212"}]},"c28ed105-212":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/y-protocols/awareness.js","moduleParts":{"server.js":"c28ed105-213"},"imported":[{"uid":"c28ed105-194"},{"uid":"c28ed105-196"},{"uid":"c28ed105-200"},{"uid":"c28ed105-182"},{"uid":"c28ed105-204"},{"uid":"c28ed105-210"},{"uid":"c28ed105-237"}],"importedBy":[{"uid":"c28ed105-218"}]},"c28ed105-214":{"id":"/src/utils.ts","moduleParts":{"server.js":"c28ed105-215"},"imported":[],"importedBy":[{"uid":"c28ed105-218"}]},"c28ed105-216":{"id":"/src/constants.ts","moduleParts":{"server.js":"c28ed105-217"},"imported":[],"importedBy":[{"uid":"c28ed105-226"},{"uid":"c28ed105-218"},{"uid":"c28ed105-222"}]},"c28ed105-218":{"id":"/src/server/azure-web-pubsub-host.ts","moduleParts":{"server.js":"c28ed105-219"},"imported":[{"uid":"c28ed105-244"},{"uid":"c28ed105-196"},{"uid":"c28ed105-194"},{"uid":"c28ed105-198"},{"uid":"c28ed105-212"},{"uid":"c28ed105-234"},{"uid":"c28ed105-235"},{"uid":"c28ed105-152"},{"uid":"c28ed105-150"},{"uid":"c28ed105-214"},{"uid":"c28ed105-242"},{"uid":"c28ed105-216"}],"importedBy":[{"uid":"c28ed105-226"},{"uid":"c28ed105-222"}]},"c28ed105-220":{"id":"/src/server/utils.ts","moduleParts":{"server.js":"c28ed105-221"},"imported":[{"uid":"c28ed105-152"},{"uid":"c28ed105-244"}],"importedBy":[{"uid":"c28ed105-222"}]},"c28ed105-222":{"id":"/src/server/azure-web-pubsub-sync-handler.ts","moduleParts":{"server.js":"c28ed105-223"},"imported":[{"uid":"c28ed105-152"},{"uid":"c28ed105-234"},{"uid":"c28ed105-178"},{"uid":"c28ed105-150"},{"uid":"c28ed105-218"},{"uid":"c28ed105-224"},{"uid":"c28ed105-220"},{"uid":"c28ed105-216"}],"importedBy":[{"uid":"c28ed105-224"}]},"c28ed105-224":{"id":"/src/server/azure-web-pubsub-server.ts","moduleParts":{"server.js":"c28ed105-225"},"imported":[{"uid":"c28ed105-234"},{"uid":"c28ed105-236"},{"uid":"c28ed105-144"},{"uid":"c28ed105-148"},{"uid":"c28ed105-150"},{"uid":"c28ed105-222"},{"uid":"c28ed105-243"}],"importedBy":[{"uid":"c28ed105-226"},{"uid":"c28ed105-222"}]},"c28ed105-226":{"id":"/src/index.server.ts","moduleParts":{"server.js":"c28ed105-227"},"imported":[{"uid":"c28ed105-224"},{"uid":"c28ed105-218"},{"uid":"c28ed105-178"},{"uid":"c28ed105-216"},{"uid":"c28ed105-150"}],"importedBy":[],"isEntry":true},"c28ed105-228":{"id":"/src/server/event-handler/index.d.ts","moduleParts":{},"imported":[{"uid":"c28ed105-18"},{"uid":"c28ed105-16"},{"uid":"c28ed105-12"},{"uid":"c28ed105-14"},{"uid":"c28ed105-10"}],"importedBy":[{"uid":"c28ed105-26"},{"uid":"c28ed105-24"},{"uid":"c28ed105-22"}]},"c28ed105-229":{"id":"koa","moduleParts":{},"imported":[],"importedBy":[{"uid":"c28ed105-24"},{"uid":"c28ed105-18"}]},"c28ed105-230":{"id":"emittery","moduleParts":{},"imported":[],"importedBy":[{"uid":"c28ed105-24"},{"uid":"c28ed105-4"}]},"c28ed105-231":{"id":"express","moduleParts":{},"imported":[],"importedBy":[{"uid":"c28ed105-24"}]},"c28ed105-232":{"id":"@inditextech/weave-types","moduleParts":{},"imported":[],"importedBy":[{"uid":"c28ed105-24"},{"uid":"c28ed105-20"},{"uid":"c28ed105-6"},{"uid":"c28ed105-22"},{"uid":"c28ed105-4"},{"uid":"c28ed105-2"}]},"c28ed105-233":{"id":"y-protocols/awareness","moduleParts":{},"imported":[],"importedBy":[{"uid":"c28ed105-20"},{"uid":"c28ed105-4"}]},"c28ed105-234":{"id":"@azure/web-pubsub","moduleParts":{},"imported":[],"importedBy":[{"uid":"c28ed105-20"},{"uid":"c28ed105-22"},{"uid":"c28ed105-224"},{"uid":"c28ed105-218"},{"uid":"c28ed105-222"}]},"c28ed105-235":{"id":"ws","moduleParts":{},"imported":[],"importedBy":[{"uid":"c28ed105-6"},{"uid":"c28ed105-218"}]},"c28ed105-236":{"id":"@azure/identity","moduleParts":{},"imported":[],"importedBy":[{"uid":"c28ed105-6"},{"uid":"c28ed105-224"}]},"c28ed105-237":{"id":"yjs","moduleParts":{},"imported":[],"importedBy":[{"uid":"c28ed105-6"},{"uid":"c28ed105-8"},{"uid":"c28ed105-4"},{"uid":"c28ed105-198"},{"uid":"c28ed105-212"},{"uid":"c28ed105-152"}]},"c28ed105-238":{"id":"lib0/encoding","moduleParts":{},"imported":[],"importedBy":[{"uid":"c28ed105-6"}]},"c28ed105-239":{"id":"lib0/decoding","moduleParts":{},"imported":[],"importedBy":[{"uid":"c28ed105-6"}]},"c28ed105-240":{"id":"express-serve-static-core","moduleParts":{},"imported":[],"importedBy":[{"uid":"c28ed105-18"}]},"c28ed105-241":{"id":"reconnecting-websocket","moduleParts":{},"imported":[],"importedBy":[{"uid":"c28ed105-4"}]},"c28ed105-242":{"id":"@inditextech/weave-sdk","moduleParts":{},"imported":[],"importedBy":[{"uid":"c28ed105-2"},{"uid":"c28ed105-218"}]},"c28ed105-243":{"id":"@inditextech/weave-sdk/server","moduleParts":{},"imported":[],"importedBy":[{"uid":"c28ed105-224"}]},"c28ed105-244":{"id":"node:crypto","moduleParts":{},"imported":[],"importedBy":[{"uid":"c28ed105-218"},{"uid":"c28ed105-220"}]},"c28ed105-245":{"id":"/src/server/event-handler/cloud-events-protocols.ts","moduleParts":{},"imported":[],"importedBy":[{"uid":"c28ed105-178"}]},"c28ed105-246":{"id":"node:util","moduleParts":{},"imported":[],"importedBy":[{"uid":"c28ed105-142"},{"uid":"c28ed105-108"},{"uid":"c28ed105-156"}]},"c28ed105-247":{"id":"node:v8","moduleParts":{},"imported":[],"importedBy":[{"uid":"c28ed105-142"}]},"c28ed105-248":{"id":"node:events","moduleParts":{},"imported":[],"importedBy":[{"uid":"c28ed105-142"}]},"c28ed105-249":{"id":"node:stream","moduleParts":{},"imported":[],"importedBy":[{"uid":"c28ed105-142"}]},"c28ed105-250":{"id":"node:http","moduleParts":{},"imported":[],"importedBy":[{"uid":"c28ed105-142"}]},"c28ed105-251":{"id":"node:async_hooks","moduleParts":{},"imported":[],"importedBy":[{"uid":"c28ed105-142"}]},"c28ed105-252":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/lib0/metric.js","moduleParts":{},"imported":[{"uid":"c28ed105-182"}],"importedBy":[{"uid":"c28ed105-200"}]},"c28ed105-253":{"id":"node:url","moduleParts":{},"imported":[],"importedBy":[{"uid":"c28ed105-172"}]},"c28ed105-254":{"id":"async_hooks","moduleParts":{},"imported":[],"importedBy":[{"uid":"c28ed105-32"}]},"c28ed105-255":{"id":"url","moduleParts":{},"imported":[],"importedBy":[{"uid":"c28ed105-94"},{"uid":"c28ed105-72"},{"uid":"c28ed105-74"}]},"c28ed105-256":{"id":"net","moduleParts":{},"imported":[],"importedBy":[{"uid":"c28ed105-94"}]},"c28ed105-257":{"id":"util","moduleParts":{},"imported":[],"importedBy":[{"uid":"c28ed105-94"},{"uid":"c28ed105-140"},{"uid":"c28ed105-46"}]},"c28ed105-258":{"id":"node:assert","moduleParts":{},"imported":[],"importedBy":[{"uid":"c28ed105-108"}]},"c28ed105-259":{"id":"node:path","moduleParts":{},"imported":[],"importedBy":[{"uid":"c28ed105-108"}]},"c28ed105-260":{"id":"stream","moduleParts":{},"imported":[],"importedBy":[{"uid":"c28ed105-106"},{"uid":"c28ed105-100"}]},"c28ed105-261":{"id":"path","moduleParts":{},"imported":[],"importedBy":[{"uid":"c28ed105-40"},{"uid":"c28ed105-96"},{"uid":"c28ed105-84"},{"uid":"c28ed105-66"},{"uid":"c28ed105-116"}]},"c28ed105-262":{"id":"events","moduleParts":{},"imported":[],"importedBy":[{"uid":"c28ed105-100"},{"uid":"c28ed105-114"}]},"c28ed105-263":{"id":"fs","moduleParts":{},"imported":[],"importedBy":[{"uid":"c28ed105-100"}]},"c28ed105-264":{"id":"zlib","moduleParts":{},"imported":[],"importedBy":[{"uid":"c28ed105-100"}]},"c28ed105-265":{"id":"http","moduleParts":{},"imported":[],"importedBy":[{"uid":"c28ed105-138"}]},"c28ed105-266":{"id":"crypto","moduleParts":{},"imported":[],"importedBy":[{"uid":"c28ed105-136"},{"uid":"c28ed105-134"}]},"c28ed105-267":{"id":"node:os","moduleParts":{},"imported":[],"importedBy":[{"uid":"c28ed105-156"}]},"c28ed105-268":{"id":"node:process","moduleParts":{},"imported":[],"importedBy":[{"uid":"c28ed105-156"}]}},"env":{"rollup":"4.23.0"},"options":{"gzip":true,"brotli":true,"sourcemap":false}};
|
|
4934
4934
|
|
|
4935
4935
|
const run = () => {
|
|
4936
4936
|
const width = window.innerWidth;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inditextech/weave-store-azure-web-pubsub",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.10.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": "Jesus Manuel Piñeiro Cid <jesusmpc@inditex.com>",
|
|
@@ -56,8 +56,8 @@
|
|
|
56
56
|
"dependencies": {
|
|
57
57
|
"@azure/identity": "4.10.2",
|
|
58
58
|
"@azure/web-pubsub": "1.2.0",
|
|
59
|
-
"@inditextech/weave-sdk": "3.
|
|
60
|
-
"@inditextech/weave-types": "3.
|
|
59
|
+
"@inditextech/weave-sdk": "3.10.0",
|
|
60
|
+
"@inditextech/weave-types": "3.10.0",
|
|
61
61
|
"@syncedstore/core": "0.6.0",
|
|
62
62
|
"buffer": "6.0.3",
|
|
63
63
|
"reconnecting-websocket": "4.4.0",
|