@inditextech/weave-store-azure-web-pubsub 4.0.0 → 4.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/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$3 = process.stderr.isTTY ? formatColor$1 : formatPlain$1;
641
- var output = format$3.call(this, msg, caller, stack.slice(i));
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$1 = /^[\u000b\u0020-\u007e\u0080-\u00ff]+$/;
9051
- var TOKEN_REGEXP$1 = /^[!#$%&'*+.^_`|~0-9A-Za-z-]+$/;
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$1 = /([\\"])/g;
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$1 = /^[!#$%&'*+.^_`|~0-9A-Za-z-]+\/[!#$%&'*+.^_`|~0-9A-Za-z-]+$/;
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$2;
9076
- exports.parse = parse$5;
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$2(obj) {
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$1.test(type)) throw new TypeError("invalid type");
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$1.test(param)) throw new TypeError("invalid parameter name");
9096
- string += "; " + param + "=" + qstring$1(parameters[param]);
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$5(string) {
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$1.test(type)) throw new TypeError("invalid media type");
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$1(val) {
9157
+ function qstring$2(val) {
9158
9158
  var str = String(val);
9159
- if (TOKEN_REGEXP$1.test(str)) return str;
9160
- if (str.length > 0 && !TEXT_REGEXP$1.test(str)) throw new TypeError("invalid parameter value");
9161
- return "\"" + str.replace(QUOTE_REGEXP$1, "\\$1") + "\"";
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$4 = url.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$4(str);
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$4(str);
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 = require_content_type();
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 = tryNormalizeType(value);
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
- var type = contentType$1.parse(value).type;
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$3 = process.stderr.isTTY ? formatColor : formatPlain;
18898
- var output = format$3.call(this, msg, caller, stack.slice(i));
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
  /**
@@ -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":"315c0301-1","name":"constants.d.ts"},{"uid":"315c0301-3","name":"store-azure-web-pubsub.d.ts"},{"uid":"315c0301-5","name":"client.d.ts"},{"uid":"315c0301-7","name":"types.d.ts"},{"uid":"315c0301-9","name":"yjs.d.ts"},{"name":"server","children":[{"name":"event-handler","children":[{"name":"enum/mqtt-error-codes","children":[{"uid":"315c0301-11","name":"mqtt-disconnect-reason-code.d.ts"},{"uid":"315c0301-13","name":"mqtt-v311-connect-return-code.d.ts"},{"uid":"315c0301-15","name":"mqtt-v500-connect-reason-code.d.ts"}]},{"uid":"315c0301-17","name":"cloud-events-protocols.d.ts"},{"uid":"315c0301-19","name":"web-pubsub-event-handler.d.ts"}]},{"uid":"315c0301-21","name":"azure-web-pubsub-host.d.ts"},{"uid":"315c0301-23","name":"azure-web-pubsub-sync-handler.d.ts"},{"uid":"315c0301-25","name":"azure-web-pubsub-server.d.ts"}]},{"uid":"315c0301-27","name":"index.server.d.ts"}]}]},{"name":"server.js","children":[{"uid":"315c0301-29","name":"rolldown:runtime"},{"name":"home/runner/work/weavejs/weavejs/code/node_modules","children":[{"name":"ee-first/index.js","uid":"315c0301-31"},{"name":"on-finished/index.js","uid":"315c0301-33"},{"name":"koa-compose/index.js","uid":"315c0301-35"},{"name":"statuses","children":[{"uid":"315c0301-37","name":"codes.json"},{"uid":"315c0301-39","name":"index.js"}]},{"name":"depd/index.js","uid":"315c0301-41"},{"name":"setprototypeof/index.js","uid":"315c0301-43"},{"name":"inherits","children":[{"uid":"315c0301-45","name":"inherits_browser.js"},{"uid":"315c0301-47","name":"inherits.js"}]},{"name":"toidentifier/index.js","uid":"315c0301-49"},{"name":"http-errors/index.js","uid":"315c0301-51"},{"name":"koa","children":[{"name":"node_modules","children":[{"name":"negotiator","children":[{"name":"lib","children":[{"uid":"315c0301-53","name":"charset.js"},{"uid":"315c0301-55","name":"encoding.js"},{"uid":"315c0301-57","name":"language.js"},{"uid":"315c0301-59","name":"mediaType.js"}]},{"uid":"315c0301-61","name":"index.js"}]},{"name":"mime-db","children":[{"uid":"315c0301-63","name":"db.json"},{"uid":"315c0301-65","name":"index.js"}]},{"name":"accepts","children":[{"name":"node_modules/mime-types/index.js","uid":"315c0301-67"},{"uid":"315c0301-69","name":"index.js"}]},{"name":"fresh/index.js","uid":"315c0301-89"},{"name":"content-disposition/index.js","uid":"315c0301-95"}]},{"name":"lib","children":[{"uid":"315c0301-75","name":"search-params.js"},{"uid":"315c0301-91","name":"only.js"},{"uid":"315c0301-93","name":"request.js"},{"uid":"315c0301-105","name":"is-stream.js"},{"uid":"315c0301-107","name":"response.js"},{"uid":"315c0301-139","name":"context.js"},{"uid":"315c0301-141","name":"application.js"}]},{"name":"dist/koa.mjs","uid":"315c0301-143"}]},{"name":"content-type/index.js","uid":"315c0301-71"},{"name":"parseurl/index.js","uid":"315c0301-73"},{"name":"mime-db","children":[{"uid":"315c0301-77","name":"db.json"},{"uid":"315c0301-79","name":"index.js"}]},{"name":"mime-types","children":[{"uid":"315c0301-81","name":"mimeScore.js"},{"uid":"315c0301-83","name":"index.js"}]},{"name":"media-typer/index.js","uid":"315c0301-85"},{"name":"type-is/index.js","uid":"315c0301-87"},{"name":"escape-html/index.js","uid":"315c0301-97"},{"name":"destroy/index.js","uid":"315c0301-99"},{"name":"encodeurl/index.js","uid":"315c0301-101"},{"name":"vary/index.js","uid":"315c0301-103"},{"name":"http-assert","children":[{"name":"node_modules","children":[{"name":"depd","children":[{"name":"lib/compat","children":[{"uid":"315c0301-109","name":"callsite-tostring.js"},{"uid":"315c0301-111","name":"event-listener-count.js"},{"uid":"315c0301-113","name":"index.js"}]},{"uid":"315c0301-115","name":"index.js"}]},{"name":"statuses","children":[{"uid":"315c0301-117","name":"codes.json"},{"uid":"315c0301-119","name":"index.js"}]},{"name":"http-errors/index.js","uid":"315c0301-121"}]},{"uid":"315c0301-129","name":"index.js"}]},{"name":"deep-equal","children":[{"name":"lib","children":[{"uid":"315c0301-123","name":"keys.js"},{"uid":"315c0301-125","name":"is_arguments.js"}]},{"uid":"315c0301-127","name":"index.js"}]},{"name":"delegates/index.js","uid":"315c0301-131"},{"name":"tsscmp/lib/index.js","uid":"315c0301-133"},{"name":"keygrip/index.js","uid":"315c0301-135"},{"name":"cookies/index.js","uid":"315c0301-137"},{"name":"emittery","children":[{"uid":"315c0301-145","name":"maps.js"},{"uid":"315c0301-147","name":"index.js"}]},{"name":"@typespec/ts-http-runtime/dist/esm/logger","children":[{"uid":"315c0301-155","name":"log.js"},{"uid":"315c0301-157","name":"debug.js"},{"uid":"315c0301-159","name":"logger.js"},{"uid":"315c0301-161","name":"internal.js"}]},{"name":"@azure/logger/dist/esm/index.js","uid":"315c0301-163"},{"name":"lib0","children":[{"uid":"315c0301-179","name":"binary.js"},{"uid":"315c0301-181","name":"math.js"},{"uid":"315c0301-183","name":"number.js"},{"uid":"315c0301-185","name":"set.js"},{"uid":"315c0301-187","name":"array.js"},{"uid":"315c0301-189","name":"string.js"},{"uid":"315c0301-191","name":"error.js"},{"uid":"315c0301-193","name":"encoding.js"},{"uid":"315c0301-195","name":"decoding.js"},{"uid":"315c0301-199","name":"time.js"},{"uid":"315c0301-201","name":"map.js"},{"uid":"315c0301-203","name":"observable.js"},{"name":"trait/equality.js","uid":"315c0301-205"},{"uid":"315c0301-207","name":"object.js"},{"uid":"315c0301-209","name":"function.js"}]},{"name":"y-protocols","children":[{"uid":"315c0301-197","name":"sync.js"},{"uid":"315c0301-211","name":"awareness.js"}]}]},{"name":"src","children":[{"uid":"315c0301-149","name":"types.ts"},{"uid":"315c0301-151","name":"yjs.ts"},{"name":"server","children":[{"name":"event-handler","children":[{"uid":"315c0301-153","name":"utils.ts"},{"uid":"315c0301-165","name":"logger.ts"},{"name":"enum/mqtt-error-codes","children":[{"uid":"315c0301-167","name":"mqtt-v311-connect-return-code.ts"},{"uid":"315c0301-169","name":"mqtt-v500-connect-reason-code.ts"},{"uid":"315c0301-175","name":"mqtt-disconnect-reason-code.ts"}]},{"uid":"315c0301-171","name":"cloud-events-dispatcher.ts"},{"uid":"315c0301-173","name":"web-pubsub-event-handler.ts"},{"uid":"315c0301-177","name":"index.ts"}]},{"uid":"315c0301-217","name":"azure-web-pubsub-host.ts"},{"uid":"315c0301-219","name":"utils.ts"},{"uid":"315c0301-221","name":"azure-web-pubsub-sync-handler.ts"},{"uid":"315c0301-223","name":"azure-web-pubsub-server.ts"}]},{"uid":"315c0301-213","name":"utils.ts"},{"uid":"315c0301-215","name":"constants.ts"},{"uid":"315c0301-225","name":"index.server.ts"}]}]}],"isRoot":true},"nodeParts":{"315c0301-1":{"renderedLength":495,"gzipLength":252,"brotliLength":216,"metaUid":"315c0301-0"},"315c0301-3":{"renderedLength":439,"gzipLength":218,"brotliLength":181,"metaUid":"315c0301-2"},"315c0301-5":{"renderedLength":503,"gzipLength":227,"brotliLength":207,"metaUid":"315c0301-4"},"315c0301-7":{"renderedLength":2854,"gzipLength":701,"brotliLength":599,"metaUid":"315c0301-6"},"315c0301-9":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"315c0301-8"},"315c0301-11":{"renderedLength":183,"gzipLength":153,"brotliLength":127,"metaUid":"315c0301-10"},"315c0301-13":{"renderedLength":185,"gzipLength":158,"brotliLength":134,"metaUid":"315c0301-12"},"315c0301-15":{"renderedLength":287,"gzipLength":217,"brotliLength":172,"metaUid":"315c0301-14"},"315c0301-17":{"renderedLength":3151,"gzipLength":737,"brotliLength":638,"metaUid":"315c0301-16"},"315c0301-19":{"renderedLength":297,"gzipLength":206,"brotliLength":157,"metaUid":"315c0301-18"},"315c0301-21":{"renderedLength":393,"gzipLength":219,"brotliLength":175,"metaUid":"315c0301-20"},"315c0301-23":{"renderedLength":660,"gzipLength":257,"brotliLength":224,"metaUid":"315c0301-22"},"315c0301-25":{"renderedLength":837,"gzipLength":313,"brotliLength":292,"metaUid":"315c0301-24"},"315c0301-27":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"315c0301-26"},"315c0301-29":{"renderedLength":1207,"gzipLength":605,"brotliLength":543,"metaUid":"315c0301-28"},"315c0301-31":{"renderedLength":1564,"gzipLength":706,"brotliLength":596,"metaUid":"315c0301-30"},"315c0301-33":{"renderedLength":4007,"gzipLength":1364,"brotliLength":1159,"metaUid":"315c0301-32"},"315c0301-35":{"renderedLength":1215,"gzipLength":579,"brotliLength":486,"metaUid":"315c0301-34"},"315c0301-37":{"renderedLength":1972,"gzipLength":887,"brotliLength":672,"metaUid":"315c0301-36"},"315c0301-39":{"renderedLength":2400,"gzipLength":869,"brotliLength":753,"metaUid":"315c0301-38"},"315c0301-41":{"renderedLength":9963,"gzipLength":2915,"brotliLength":2537,"metaUid":"315c0301-40"},"315c0301-43":{"renderedLength":539,"gzipLength":301,"brotliLength":240,"metaUid":"315c0301-42"},"315c0301-45":{"renderedLength":776,"gzipLength":325,"brotliLength":273,"metaUid":"315c0301-44"},"315c0301-47":{"renderedLength":421,"gzipLength":243,"brotliLength":189,"metaUid":"315c0301-46"},"315c0301-49":{"renderedLength":555,"gzipLength":334,"brotliLength":293,"metaUid":"315c0301-48"},"315c0301-51":{"renderedLength":5891,"gzipLength":1672,"brotliLength":1457,"metaUid":"315c0301-50"},"315c0301-53":{"renderedLength":2924,"gzipLength":1038,"brotliLength":889,"metaUid":"315c0301-52"},"315c0301-55":{"renderedLength":3185,"gzipLength":1097,"brotliLength":947,"metaUid":"315c0301-54"},"315c0301-57":{"renderedLength":3204,"gzipLength":1106,"brotliLength":946,"metaUid":"315c0301-56"},"315c0301-59":{"renderedLength":4875,"gzipLength":1580,"brotliLength":1382,"metaUid":"315c0301-58"},"315c0301-61":{"renderedLength":2492,"gzipLength":584,"brotliLength":463,"metaUid":"315c0301-60"},"315c0301-63":{"renderedLength":179113,"gzipLength":20857,"brotliLength":18454,"metaUid":"315c0301-62"},"315c0301-65":{"renderedLength":378,"gzipLength":247,"brotliLength":180,"metaUid":"315c0301-64"},"315c0301-67":{"renderedLength":3288,"gzipLength":1125,"brotliLength":943,"metaUid":"315c0301-66"},"315c0301-69":{"renderedLength":4839,"gzipLength":1430,"brotliLength":1184,"metaUid":"315c0301-68"},"315c0301-71":{"renderedLength":4580,"gzipLength":1602,"brotliLength":1378,"metaUid":"315c0301-70"},"315c0301-73":{"renderedLength":2361,"gzipLength":840,"brotliLength":724,"metaUid":"315c0301-72"},"315c0301-75":{"renderedLength":1001,"gzipLength":470,"brotliLength":412,"metaUid":"315c0301-74"},"315c0301-77":{"renderedLength":196147,"gzipLength":22796,"brotliLength":20148,"metaUid":"315c0301-76"},"315c0301-79":{"renderedLength":340,"gzipLength":239,"brotliLength":179,"metaUid":"315c0301-78"},"315c0301-81":{"renderedLength":1135,"gzipLength":551,"brotliLength":451,"metaUid":"315c0301-80"},"315c0301-83":{"renderedLength":3826,"gzipLength":1245,"brotliLength":1041,"metaUid":"315c0301-82"},"315c0301-85":{"renderedLength":3005,"gzipLength":1003,"brotliLength":826,"metaUid":"315c0301-84"},"315c0301-87":{"renderedLength":4937,"gzipLength":1710,"brotliLength":1434,"metaUid":"315c0301-86"},"315c0301-89":{"renderedLength":2331,"gzipLength":934,"brotliLength":770,"metaUid":"315c0301-88"},"315c0301-91":{"renderedLength":358,"gzipLength":243,"brotliLength":196,"metaUid":"315c0301-90"},"315c0301-93":{"renderedLength":6502,"gzipLength":2120,"brotliLength":1841,"metaUid":"315c0301-92"},"315c0301-95":{"renderedLength":9656,"gzipLength":3099,"brotliLength":2691,"metaUid":"315c0301-94"},"315c0301-97":{"renderedLength":1254,"gzipLength":553,"brotliLength":435,"metaUid":"315c0301-96"},"315c0301-99":{"renderedLength":3902,"gzipLength":1266,"brotliLength":1077,"metaUid":"315c0301-98"},"315c0301-101":{"renderedLength":1642,"gzipLength":817,"brotliLength":689,"metaUid":"315c0301-100"},"315c0301-103":{"renderedLength":2506,"gzipLength":1039,"brotliLength":883,"metaUid":"315c0301-102"},"315c0301-105":{"renderedLength":594,"gzipLength":280,"brotliLength":250,"metaUid":"315c0301-104"},"315c0301-107":{"renderedLength":7222,"gzipLength":2266,"brotliLength":1986,"metaUid":"315c0301-106"},"315c0301-109":{"renderedLength":2266,"gzipLength":778,"brotliLength":683,"metaUid":"315c0301-108"},"315c0301-111":{"renderedLength":516,"gzipLength":280,"brotliLength":234,"metaUid":"315c0301-110"},"315c0301-113":{"renderedLength":1500,"gzipLength":595,"brotliLength":503,"metaUid":"315c0301-112"},"315c0301-115":{"renderedLength":9704,"gzipLength":2759,"brotliLength":2416,"metaUid":"315c0301-114"},"315c0301-117":{"renderedLength":2052,"gzipLength":911,"brotliLength":698,"metaUid":"315c0301-116"},"315c0301-119":{"renderedLength":1954,"gzipLength":796,"brotliLength":685,"metaUid":"315c0301-118"},"315c0301-121":{"renderedLength":5938,"gzipLength":1705,"brotliLength":1478,"metaUid":"315c0301-120"},"315c0301-123":{"renderedLength":374,"gzipLength":238,"brotliLength":203,"metaUid":"315c0301-122"},"315c0301-125":{"renderedLength":816,"gzipLength":350,"brotliLength":289,"metaUid":"315c0301-124"},"315c0301-127":{"renderedLength":1965,"gzipLength":723,"brotliLength":610,"metaUid":"315c0301-126"},"315c0301-129":{"renderedLength":1190,"gzipLength":335,"brotliLength":292,"metaUid":"315c0301-128"},"315c0301-131":{"renderedLength":2232,"gzipLength":572,"brotliLength":488,"metaUid":"315c0301-130"},"315c0301-133":{"renderedLength":763,"gzipLength":394,"brotliLength":324,"metaUid":"315c0301-132"},"315c0301-135":{"renderedLength":1218,"gzipLength":561,"brotliLength":471,"metaUid":"315c0301-134"},"315c0301-137":{"renderedLength":7410,"gzipLength":2440,"brotliLength":2099,"metaUid":"315c0301-136"},"315c0301-139":{"renderedLength":3398,"gzipLength":1280,"brotliLength":1125,"metaUid":"315c0301-138"},"315c0301-141":{"renderedLength":8688,"gzipLength":2935,"brotliLength":2591,"metaUid":"315c0301-140"},"315c0301-143":{"renderedLength":115,"gzipLength":115,"brotliLength":96,"metaUid":"315c0301-142"},"315c0301-145":{"renderedLength":158,"gzipLength":122,"brotliLength":109,"metaUid":"315c0301-144"},"315c0301-147":{"renderedLength":12602,"gzipLength":2888,"brotliLength":2560,"metaUid":"315c0301-146"},"315c0301-149":{"renderedLength":476,"gzipLength":226,"brotliLength":185,"metaUid":"315c0301-148"},"315c0301-151":{"renderedLength":57,"gzipLength":73,"brotliLength":61,"metaUid":"315c0301-150"},"315c0301-153":{"renderedLength":1101,"gzipLength":525,"brotliLength":451,"metaUid":"315c0301-152"},"315c0301-155":{"renderedLength":193,"gzipLength":167,"brotliLength":140,"metaUid":"315c0301-154"},"315c0301-157":{"renderedLength":4071,"gzipLength":1245,"brotliLength":1076,"metaUid":"315c0301-156"},"315c0301-159":{"renderedLength":3184,"gzipLength":1154,"brotliLength":992,"metaUid":"315c0301-158"},"315c0301-161":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"315c0301-160"},"315c0301-163":{"renderedLength":640,"gzipLength":402,"brotliLength":306,"metaUid":"315c0301-162"},"315c0301-165":{"renderedLength":119,"gzipLength":120,"brotliLength":94,"metaUid":"315c0301-164"},"315c0301-167":{"renderedLength":1465,"gzipLength":547,"brotliLength":434,"metaUid":"315c0301-166"},"315c0301-169":{"renderedLength":5173,"gzipLength":1349,"brotliLength":1076,"metaUid":"315c0301-168"},"315c0301-171":{"renderedLength":12076,"gzipLength":2763,"brotliLength":2437,"metaUid":"315c0301-170"},"315c0301-173":{"renderedLength":2508,"gzipLength":891,"brotliLength":756,"metaUid":"315c0301-172"},"315c0301-175":{"renderedLength":7967,"gzipLength":1797,"brotliLength":1463,"metaUid":"315c0301-174"},"315c0301-177":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"315c0301-176"},"315c0301-179":{"renderedLength":905,"gzipLength":297,"brotliLength":224,"metaUid":"315c0301-178"},"315c0301-181":{"renderedLength":453,"gzipLength":238,"brotliLength":195,"metaUid":"315c0301-180"},"315c0301-183":{"renderedLength":448,"gzipLength":260,"brotliLength":219,"metaUid":"315c0301-182"},"315c0301-185":{"renderedLength":147,"gzipLength":138,"brotliLength":123,"metaUid":"315c0301-184"},"315c0301-187":{"renderedLength":263,"gzipLength":198,"brotliLength":150,"metaUid":"315c0301-186"},"315c0301-189":{"renderedLength":1356,"gzipLength":600,"brotliLength":498,"metaUid":"315c0301-188"},"315c0301-191":{"renderedLength":202,"gzipLength":167,"brotliLength":134,"metaUid":"315c0301-190"},"315c0301-193":{"renderedLength":4121,"gzipLength":1201,"brotliLength":1057,"metaUid":"315c0301-192"},"315c0301-195":{"renderedLength":4493,"gzipLength":1532,"brotliLength":1293,"metaUid":"315c0301-194"},"315c0301-197":{"renderedLength":4603,"gzipLength":1487,"brotliLength":1223,"metaUid":"315c0301-196"},"315c0301-199":{"renderedLength":141,"gzipLength":136,"brotliLength":102,"metaUid":"315c0301-198"},"315c0301-201":{"renderedLength":892,"gzipLength":479,"brotliLength":439,"metaUid":"315c0301-200"},"315c0301-203":{"renderedLength":1299,"gzipLength":592,"brotliLength":509,"metaUid":"315c0301-202"},"315c0301-205":{"renderedLength":113,"gzipLength":111,"brotliLength":86,"metaUid":"315c0301-204"},"315c0301-207":{"renderedLength":433,"gzipLength":244,"brotliLength":205,"metaUid":"315c0301-206"},"315c0301-209":{"renderedLength":1387,"gzipLength":543,"brotliLength":463,"metaUid":"315c0301-208"},"315c0301-211":{"renderedLength":7280,"gzipLength":2180,"brotliLength":1870,"metaUid":"315c0301-210"},"315c0301-213":{"renderedLength":748,"gzipLength":280,"brotliLength":255,"metaUid":"315c0301-212"},"315c0301-215":{"renderedLength":824,"gzipLength":410,"brotliLength":339,"metaUid":"315c0301-214"},"315c0301-217":{"renderedLength":11102,"gzipLength":2714,"brotliLength":2392,"metaUid":"315c0301-216"},"315c0301-219":{"renderedLength":471,"gzipLength":274,"brotliLength":235,"metaUid":"315c0301-218"},"315c0301-221":{"renderedLength":5756,"gzipLength":1602,"brotliLength":1386,"metaUid":"315c0301-220"},"315c0301-223":{"renderedLength":2106,"gzipLength":712,"brotliLength":607,"metaUid":"315c0301-222"},"315c0301-225":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"315c0301-224"}},"nodeMetas":{"315c0301-0":{"id":"/src/constants.d.ts","moduleParts":{"server.d.ts":"315c0301-1"},"imported":[{"uid":"315c0301-6"}],"importedBy":[{"uid":"315c0301-26"},{"uid":"315c0301-6"}]},"315c0301-2":{"id":"/src/store-azure-web-pubsub.d.ts","moduleParts":{"server.d.ts":"315c0301-3"},"imported":[{"uid":"315c0301-240"},{"uid":"315c0301-230"},{"uid":"315c0301-4"},{"uid":"315c0301-6"}],"importedBy":[{"uid":"315c0301-4"}]},"315c0301-4":{"id":"/src/client.d.ts","moduleParts":{"server.d.ts":"315c0301-5"},"imported":[{"uid":"315c0301-228"},{"uid":"315c0301-235"},{"uid":"315c0301-239"},{"uid":"315c0301-231"},{"uid":"315c0301-6"},{"uid":"315c0301-2"},{"uid":"315c0301-230"}],"importedBy":[{"uid":"315c0301-6"},{"uid":"315c0301-2"}]},"315c0301-6":{"id":"/src/types.d.ts","moduleParts":{"server.d.ts":"315c0301-7"},"imported":[{"uid":"315c0301-233"},{"uid":"315c0301-234"},{"uid":"315c0301-235"},{"uid":"315c0301-26"},{"uid":"315c0301-0"},{"uid":"315c0301-4"},{"uid":"315c0301-236"},{"uid":"315c0301-237"},{"uid":"315c0301-230"}],"importedBy":[{"uid":"315c0301-26"},{"uid":"315c0301-24"},{"uid":"315c0301-20"},{"uid":"315c0301-0"},{"uid":"315c0301-22"},{"uid":"315c0301-4"},{"uid":"315c0301-2"}]},"315c0301-8":{"id":"/src/yjs.d.ts","moduleParts":{"server.d.ts":"315c0301-9"},"imported":[{"uid":"315c0301-235"}],"importedBy":[{"uid":"315c0301-24"},{"uid":"315c0301-20"},{"uid":"315c0301-22"}]},"315c0301-10":{"id":"/src/server/event-handler/enum/mqtt-error-codes/mqtt-disconnect-reason-code.d.ts","moduleParts":{"server.d.ts":"315c0301-11"},"imported":[],"importedBy":[{"uid":"315c0301-226"},{"uid":"315c0301-16"}]},"315c0301-12":{"id":"/src/server/event-handler/enum/mqtt-error-codes/mqtt-v311-connect-return-code.d.ts","moduleParts":{"server.d.ts":"315c0301-13"},"imported":[],"importedBy":[{"uid":"315c0301-226"},{"uid":"315c0301-16"}]},"315c0301-14":{"id":"/src/server/event-handler/enum/mqtt-error-codes/mqtt-v500-connect-reason-code.d.ts","moduleParts":{"server.d.ts":"315c0301-15"},"imported":[],"importedBy":[{"uid":"315c0301-226"},{"uid":"315c0301-16"}]},"315c0301-16":{"id":"/src/server/event-handler/cloud-events-protocols.d.ts","moduleParts":{"server.d.ts":"315c0301-17"},"imported":[{"uid":"315c0301-10"},{"uid":"315c0301-12"},{"uid":"315c0301-14"}],"importedBy":[{"uid":"315c0301-226"},{"uid":"315c0301-18"}]},"315c0301-18":{"id":"/src/server/event-handler/web-pubsub-event-handler.d.ts","moduleParts":{"server.d.ts":"315c0301-19"},"imported":[{"uid":"315c0301-238"},{"uid":"315c0301-227"},{"uid":"315c0301-16"}],"importedBy":[{"uid":"315c0301-226"}]},"315c0301-20":{"id":"/src/server/azure-web-pubsub-host.d.ts","moduleParts":{"server.d.ts":"315c0301-21"},"imported":[{"uid":"315c0301-231"},{"uid":"315c0301-232"},{"uid":"315c0301-8"},{"uid":"315c0301-24"},{"uid":"315c0301-6"},{"uid":"315c0301-22"},{"uid":"315c0301-230"}],"importedBy":[{"uid":"315c0301-26"},{"uid":"315c0301-22"}]},"315c0301-22":{"id":"/src/server/azure-web-pubsub-sync-handler.d.ts","moduleParts":{"server.d.ts":"315c0301-23"},"imported":[{"uid":"315c0301-8"},{"uid":"315c0301-232"},{"uid":"315c0301-226"},{"uid":"315c0301-6"},{"uid":"315c0301-20"},{"uid":"315c0301-24"},{"uid":"315c0301-230"}],"importedBy":[{"uid":"315c0301-24"},{"uid":"315c0301-20"}]},"315c0301-24":{"id":"/src/server/azure-web-pubsub-server.d.ts","moduleParts":{"server.d.ts":"315c0301-25"},"imported":[{"uid":"315c0301-227"},{"uid":"315c0301-228"},{"uid":"315c0301-6"},{"uid":"315c0301-22"},{"uid":"315c0301-226"},{"uid":"315c0301-229"},{"uid":"315c0301-8"},{"uid":"315c0301-230"}],"importedBy":[{"uid":"315c0301-26"},{"uid":"315c0301-20"},{"uid":"315c0301-22"}]},"315c0301-26":{"id":"/src/index.server.d.ts","moduleParts":{"server.d.ts":"315c0301-27"},"imported":[{"uid":"315c0301-24"},{"uid":"315c0301-20"},{"uid":"315c0301-226"},{"uid":"315c0301-0"},{"uid":"315c0301-6"}],"importedBy":[{"uid":"315c0301-6"}],"isEntry":true},"315c0301-28":{"id":"rolldown:runtime","moduleParts":{"server.js":"315c0301-29"},"imported":[],"importedBy":[]},"315c0301-30":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/ee-first/index.js","moduleParts":{"server.js":"315c0301-31"},"imported":[],"importedBy":[{"uid":"315c0301-32"}]},"315c0301-32":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/on-finished/index.js","moduleParts":{"server.js":"315c0301-33"},"imported":[{"uid":"315c0301-30"},{"uid":"315c0301-252"}],"importedBy":[{"uid":"315c0301-140"},{"uid":"315c0301-106"}]},"315c0301-34":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/koa-compose/index.js","moduleParts":{"server.js":"315c0301-35"},"imported":[],"importedBy":[{"uid":"315c0301-140"}]},"315c0301-36":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/statuses/codes.json","moduleParts":{"server.js":"315c0301-37"},"imported":[],"importedBy":[{"uid":"315c0301-38"}]},"315c0301-38":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/statuses/index.js","moduleParts":{"server.js":"315c0301-39"},"imported":[{"uid":"315c0301-36"}],"importedBy":[{"uid":"315c0301-140"},{"uid":"315c0301-50"},{"uid":"315c0301-106"},{"uid":"315c0301-138"}]},"315c0301-40":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/depd/index.js","moduleParts":{"server.js":"315c0301-41"},"imported":[{"uid":"315c0301-259"}],"importedBy":[{"uid":"315c0301-50"},{"uid":"315c0301-136"}]},"315c0301-42":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/setprototypeof/index.js","moduleParts":{"server.js":"315c0301-43"},"imported":[],"importedBy":[{"uid":"315c0301-50"},{"uid":"315c0301-120"}]},"315c0301-44":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/inherits/inherits_browser.js","moduleParts":{"server.js":"315c0301-45"},"imported":[],"importedBy":[{"uid":"315c0301-46"}]},"315c0301-46":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/inherits/inherits.js","moduleParts":{"server.js":"315c0301-47"},"imported":[{"uid":"315c0301-255"},{"uid":"315c0301-44"}],"importedBy":[{"uid":"315c0301-50"},{"uid":"315c0301-120"}]},"315c0301-48":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/toidentifier/index.js","moduleParts":{"server.js":"315c0301-49"},"imported":[],"importedBy":[{"uid":"315c0301-50"},{"uid":"315c0301-120"}]},"315c0301-50":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/http-errors/index.js","moduleParts":{"server.js":"315c0301-51"},"imported":[{"uid":"315c0301-40"},{"uid":"315c0301-42"},{"uid":"315c0301-38"},{"uid":"315c0301-46"},{"uid":"315c0301-48"}],"importedBy":[{"uid":"315c0301-140"},{"uid":"315c0301-138"}]},"315c0301-52":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/koa/node_modules/negotiator/lib/charset.js","moduleParts":{"server.js":"315c0301-53"},"imported":[],"importedBy":[{"uid":"315c0301-60"}]},"315c0301-54":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/koa/node_modules/negotiator/lib/encoding.js","moduleParts":{"server.js":"315c0301-55"},"imported":[],"importedBy":[{"uid":"315c0301-60"}]},"315c0301-56":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/koa/node_modules/negotiator/lib/language.js","moduleParts":{"server.js":"315c0301-57"},"imported":[],"importedBy":[{"uid":"315c0301-60"}]},"315c0301-58":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/koa/node_modules/negotiator/lib/mediaType.js","moduleParts":{"server.js":"315c0301-59"},"imported":[],"importedBy":[{"uid":"315c0301-60"}]},"315c0301-60":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/koa/node_modules/negotiator/index.js","moduleParts":{"server.js":"315c0301-61"},"imported":[{"uid":"315c0301-52"},{"uid":"315c0301-54"},{"uid":"315c0301-56"},{"uid":"315c0301-58"}],"importedBy":[{"uid":"315c0301-68"}]},"315c0301-62":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/koa/node_modules/mime-db/db.json","moduleParts":{"server.js":"315c0301-63"},"imported":[],"importedBy":[{"uid":"315c0301-64"}]},"315c0301-64":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/koa/node_modules/mime-db/index.js","moduleParts":{"server.js":"315c0301-65"},"imported":[{"uid":"315c0301-62"}],"importedBy":[{"uid":"315c0301-66"}]},"315c0301-66":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/koa/node_modules/accepts/node_modules/mime-types/index.js","moduleParts":{"server.js":"315c0301-67"},"imported":[{"uid":"315c0301-64"},{"uid":"315c0301-259"}],"importedBy":[{"uid":"315c0301-68"}]},"315c0301-68":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/koa/node_modules/accepts/index.js","moduleParts":{"server.js":"315c0301-69"},"imported":[{"uid":"315c0301-60"},{"uid":"315c0301-66"}],"importedBy":[{"uid":"315c0301-92"}]},"315c0301-70":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/content-type/index.js","moduleParts":{"server.js":"315c0301-71"},"imported":[],"importedBy":[{"uid":"315c0301-92"},{"uid":"315c0301-86"}]},"315c0301-72":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/parseurl/index.js","moduleParts":{"server.js":"315c0301-73"},"imported":[{"uid":"315c0301-253"}],"importedBy":[{"uid":"315c0301-92"}]},"315c0301-74":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/koa/lib/search-params.js","moduleParts":{"server.js":"315c0301-75"},"imported":[{"uid":"315c0301-253"}],"importedBy":[{"uid":"315c0301-92"}]},"315c0301-76":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/mime-db/db.json","moduleParts":{"server.js":"315c0301-77"},"imported":[],"importedBy":[{"uid":"315c0301-78"}]},"315c0301-78":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/mime-db/index.js","moduleParts":{"server.js":"315c0301-79"},"imported":[{"uid":"315c0301-76"}],"importedBy":[{"uid":"315c0301-82"}]},"315c0301-80":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/mime-types/mimeScore.js","moduleParts":{"server.js":"315c0301-81"},"imported":[],"importedBy":[{"uid":"315c0301-82"}]},"315c0301-82":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/mime-types/index.js","moduleParts":{"server.js":"315c0301-83"},"imported":[{"uid":"315c0301-78"},{"uid":"315c0301-259"},{"uid":"315c0301-80"}],"importedBy":[{"uid":"315c0301-106"},{"uid":"315c0301-86"}]},"315c0301-84":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/media-typer/index.js","moduleParts":{"server.js":"315c0301-85"},"imported":[],"importedBy":[{"uid":"315c0301-86"}]},"315c0301-86":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/type-is/index.js","moduleParts":{"server.js":"315c0301-87"},"imported":[{"uid":"315c0301-70"},{"uid":"315c0301-82"},{"uid":"315c0301-84"}],"importedBy":[{"uid":"315c0301-92"},{"uid":"315c0301-106"}]},"315c0301-88":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/koa/node_modules/fresh/index.js","moduleParts":{"server.js":"315c0301-89"},"imported":[],"importedBy":[{"uid":"315c0301-92"}]},"315c0301-90":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/koa/lib/only.js","moduleParts":{"server.js":"315c0301-91"},"imported":[],"importedBy":[{"uid":"315c0301-140"},{"uid":"315c0301-92"},{"uid":"315c0301-106"}]},"315c0301-92":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/koa/lib/request.js","moduleParts":{"server.js":"315c0301-93"},"imported":[{"uid":"315c0301-253"},{"uid":"315c0301-254"},{"uid":"315c0301-68"},{"uid":"315c0301-70"},{"uid":"315c0301-72"},{"uid":"315c0301-74"},{"uid":"315c0301-86"},{"uid":"315c0301-88"},{"uid":"315c0301-90"},{"uid":"315c0301-255"}],"importedBy":[{"uid":"315c0301-140"}]},"315c0301-94":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/koa/node_modules/content-disposition/index.js","moduleParts":{"server.js":"315c0301-95"},"imported":[{"uid":"315c0301-259"}],"importedBy":[{"uid":"315c0301-106"}]},"315c0301-96":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/escape-html/index.js","moduleParts":{"server.js":"315c0301-97"},"imported":[],"importedBy":[{"uid":"315c0301-106"}]},"315c0301-98":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/destroy/index.js","moduleParts":{"server.js":"315c0301-99"},"imported":[{"uid":"315c0301-260"},{"uid":"315c0301-261"},{"uid":"315c0301-258"},{"uid":"315c0301-262"}],"importedBy":[{"uid":"315c0301-106"}]},"315c0301-100":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/encodeurl/index.js","moduleParts":{"server.js":"315c0301-101"},"imported":[],"importedBy":[{"uid":"315c0301-106"}]},"315c0301-102":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/vary/index.js","moduleParts":{"server.js":"315c0301-103"},"imported":[],"importedBy":[{"uid":"315c0301-106"}]},"315c0301-104":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/koa/lib/is-stream.js","moduleParts":{"server.js":"315c0301-105"},"imported":[{"uid":"315c0301-258"}],"importedBy":[{"uid":"315c0301-140"},{"uid":"315c0301-106"}]},"315c0301-106":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/koa/lib/response.js","moduleParts":{"server.js":"315c0301-107"},"imported":[{"uid":"315c0301-256"},{"uid":"315c0301-257"},{"uid":"315c0301-244"},{"uid":"315c0301-94"},{"uid":"315c0301-32"},{"uid":"315c0301-96"},{"uid":"315c0301-86"},{"uid":"315c0301-38"},{"uid":"315c0301-98"},{"uid":"315c0301-100"},{"uid":"315c0301-102"},{"uid":"315c0301-82"},{"uid":"315c0301-104"},{"uid":"315c0301-90"}],"importedBy":[{"uid":"315c0301-140"}]},"315c0301-108":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/http-assert/node_modules/depd/lib/compat/callsite-tostring.js","moduleParts":{"server.js":"315c0301-109"},"imported":[],"importedBy":[{"uid":"315c0301-112"}]},"315c0301-110":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/http-assert/node_modules/depd/lib/compat/event-listener-count.js","moduleParts":{"server.js":"315c0301-111"},"imported":[],"importedBy":[{"uid":"315c0301-112"}]},"315c0301-112":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/http-assert/node_modules/depd/lib/compat/index.js","moduleParts":{"server.js":"315c0301-113"},"imported":[{"uid":"315c0301-260"},{"uid":"315c0301-108"},{"uid":"315c0301-110"}],"importedBy":[{"uid":"315c0301-114"}]},"315c0301-114":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/http-assert/node_modules/depd/index.js","moduleParts":{"server.js":"315c0301-115"},"imported":[{"uid":"315c0301-112"},{"uid":"315c0301-259"}],"importedBy":[{"uid":"315c0301-120"}]},"315c0301-116":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/http-assert/node_modules/statuses/codes.json","moduleParts":{"server.js":"315c0301-117"},"imported":[],"importedBy":[{"uid":"315c0301-118"}]},"315c0301-118":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/http-assert/node_modules/statuses/index.js","moduleParts":{"server.js":"315c0301-119"},"imported":[{"uid":"315c0301-116"}],"importedBy":[{"uid":"315c0301-120"}]},"315c0301-120":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/http-assert/node_modules/http-errors/index.js","moduleParts":{"server.js":"315c0301-121"},"imported":[{"uid":"315c0301-114"},{"uid":"315c0301-42"},{"uid":"315c0301-118"},{"uid":"315c0301-46"},{"uid":"315c0301-48"}],"importedBy":[{"uid":"315c0301-128"}]},"315c0301-122":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/deep-equal/lib/keys.js","moduleParts":{"server.js":"315c0301-123"},"imported":[],"importedBy":[{"uid":"315c0301-126"}]},"315c0301-124":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/deep-equal/lib/is_arguments.js","moduleParts":{"server.js":"315c0301-125"},"imported":[],"importedBy":[{"uid":"315c0301-126"}]},"315c0301-126":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/deep-equal/index.js","moduleParts":{"server.js":"315c0301-127"},"imported":[{"uid":"315c0301-122"},{"uid":"315c0301-124"}],"importedBy":[{"uid":"315c0301-128"}]},"315c0301-128":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/http-assert/index.js","moduleParts":{"server.js":"315c0301-129"},"imported":[{"uid":"315c0301-120"},{"uid":"315c0301-126"}],"importedBy":[{"uid":"315c0301-138"}]},"315c0301-130":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/delegates/index.js","moduleParts":{"server.js":"315c0301-131"},"imported":[],"importedBy":[{"uid":"315c0301-138"}]},"315c0301-132":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/tsscmp/lib/index.js","moduleParts":{"server.js":"315c0301-133"},"imported":[{"uid":"315c0301-264"}],"importedBy":[{"uid":"315c0301-134"}]},"315c0301-134":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/keygrip/index.js","moduleParts":{"server.js":"315c0301-135"},"imported":[{"uid":"315c0301-132"},{"uid":"315c0301-264"}],"importedBy":[{"uid":"315c0301-136"}]},"315c0301-136":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/cookies/index.js","moduleParts":{"server.js":"315c0301-137"},"imported":[{"uid":"315c0301-40"},{"uid":"315c0301-134"},{"uid":"315c0301-263"}],"importedBy":[{"uid":"315c0301-138"}]},"315c0301-138":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/koa/lib/context.js","moduleParts":{"server.js":"315c0301-139"},"imported":[{"uid":"315c0301-255"},{"uid":"315c0301-50"},{"uid":"315c0301-128"},{"uid":"315c0301-130"},{"uid":"315c0301-38"},{"uid":"315c0301-136"}],"importedBy":[{"uid":"315c0301-140"}]},"315c0301-140":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/koa/lib/application.js","moduleParts":{"server.js":"315c0301-141"},"imported":[{"uid":"315c0301-244"},{"uid":"315c0301-245"},{"uid":"315c0301-246"},{"uid":"315c0301-247"},{"uid":"315c0301-248"},{"uid":"315c0301-249"},{"uid":"315c0301-32"},{"uid":"315c0301-34"},{"uid":"315c0301-38"},{"uid":"315c0301-50"},{"uid":"315c0301-92"},{"uid":"315c0301-106"},{"uid":"315c0301-138"},{"uid":"315c0301-104"},{"uid":"315c0301-90"}],"importedBy":[{"uid":"315c0301-142"}]},"315c0301-142":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/koa/dist/koa.mjs","moduleParts":{"server.js":"315c0301-143"},"imported":[{"uid":"315c0301-140"}],"importedBy":[{"uid":"315c0301-222"}]},"315c0301-144":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/emittery/maps.js","moduleParts":{"server.js":"315c0301-145"},"imported":[],"importedBy":[{"uid":"315c0301-146"}]},"315c0301-146":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/emittery/index.js","moduleParts":{"server.js":"315c0301-147"},"imported":[{"uid":"315c0301-144"}],"importedBy":[{"uid":"315c0301-222"}]},"315c0301-148":{"id":"/src/types.ts","moduleParts":{"server.js":"315c0301-149"},"imported":[],"importedBy":[{"uid":"315c0301-224"},{"uid":"315c0301-222"},{"uid":"315c0301-216"},{"uid":"315c0301-220"}]},"315c0301-150":{"id":"/src/yjs.ts","moduleParts":{"server.js":"315c0301-151"},"imported":[{"uid":"315c0301-235"}],"importedBy":[{"uid":"315c0301-216"},{"uid":"315c0301-220"},{"uid":"315c0301-218"}]},"315c0301-152":{"id":"/src/server/event-handler/utils.ts","moduleParts":{"server.js":"315c0301-153"},"imported":[],"importedBy":[{"uid":"315c0301-170"}]},"315c0301-154":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/@typespec/ts-http-runtime/dist/esm/logger/log.js","moduleParts":{"server.js":"315c0301-155"},"imported":[{"uid":"315c0301-265"},{"uid":"315c0301-244"},{"uid":"315c0301-266"}],"importedBy":[{"uid":"315c0301-156"}]},"315c0301-156":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/@typespec/ts-http-runtime/dist/esm/logger/debug.js","moduleParts":{"server.js":"315c0301-157"},"imported":[{"uid":"315c0301-154"}],"importedBy":[{"uid":"315c0301-158"}]},"315c0301-158":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/@typespec/ts-http-runtime/dist/esm/logger/logger.js","moduleParts":{"server.js":"315c0301-159"},"imported":[{"uid":"315c0301-156"}],"importedBy":[{"uid":"315c0301-160"}]},"315c0301-160":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/@typespec/ts-http-runtime/dist/esm/logger/internal.js","moduleParts":{"server.js":"315c0301-161"},"imported":[{"uid":"315c0301-158"}],"importedBy":[{"uid":"315c0301-162"}]},"315c0301-162":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/@azure/logger/dist/esm/index.js","moduleParts":{"server.js":"315c0301-163"},"imported":[{"uid":"315c0301-160"}],"importedBy":[{"uid":"315c0301-164"}]},"315c0301-164":{"id":"/src/server/event-handler/logger.ts","moduleParts":{"server.js":"315c0301-165"},"imported":[{"uid":"315c0301-162"}],"importedBy":[{"uid":"315c0301-170"}]},"315c0301-166":{"id":"/src/server/event-handler/enum/mqtt-error-codes/mqtt-v311-connect-return-code.ts","moduleParts":{"server.js":"315c0301-167"},"imported":[],"importedBy":[{"uid":"315c0301-176"},{"uid":"315c0301-170"}]},"315c0301-168":{"id":"/src/server/event-handler/enum/mqtt-error-codes/mqtt-v500-connect-reason-code.ts","moduleParts":{"server.js":"315c0301-169"},"imported":[],"importedBy":[{"uid":"315c0301-176"},{"uid":"315c0301-170"}]},"315c0301-170":{"id":"/src/server/event-handler/cloud-events-dispatcher.ts","moduleParts":{"server.js":"315c0301-171"},"imported":[{"uid":"315c0301-152"},{"uid":"315c0301-251"},{"uid":"315c0301-164"},{"uid":"315c0301-166"},{"uid":"315c0301-168"}],"importedBy":[{"uid":"315c0301-172"}]},"315c0301-172":{"id":"/src/server/event-handler/web-pubsub-event-handler.ts","moduleParts":{"server.js":"315c0301-173"},"imported":[{"uid":"315c0301-170"}],"importedBy":[{"uid":"315c0301-176"}]},"315c0301-174":{"id":"/src/server/event-handler/enum/mqtt-error-codes/mqtt-disconnect-reason-code.ts","moduleParts":{"server.js":"315c0301-175"},"imported":[],"importedBy":[{"uid":"315c0301-176"}]},"315c0301-176":{"id":"/src/server/event-handler/index.ts","moduleParts":{"server.js":"315c0301-177"},"imported":[{"uid":"315c0301-172"},{"uid":"315c0301-243"},{"uid":"315c0301-166"},{"uid":"315c0301-168"},{"uid":"315c0301-174"}],"importedBy":[{"uid":"315c0301-224"},{"uid":"315c0301-220"}]},"315c0301-178":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/lib0/binary.js","moduleParts":{"server.js":"315c0301-179"},"imported":[],"importedBy":[{"uid":"315c0301-194"},{"uid":"315c0301-192"},{"uid":"315c0301-182"}]},"315c0301-180":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/lib0/math.js","moduleParts":{"server.js":"315c0301-181"},"imported":[],"importedBy":[{"uid":"315c0301-194"},{"uid":"315c0301-192"},{"uid":"315c0301-210"},{"uid":"315c0301-182"},{"uid":"315c0301-198"},{"uid":"315c0301-250"}]},"315c0301-182":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/lib0/number.js","moduleParts":{"server.js":"315c0301-183"},"imported":[{"uid":"315c0301-180"},{"uid":"315c0301-178"}],"importedBy":[{"uid":"315c0301-194"},{"uid":"315c0301-192"}]},"315c0301-184":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/lib0/set.js","moduleParts":{"server.js":"315c0301-185"},"imported":[],"importedBy":[{"uid":"315c0301-186"},{"uid":"315c0301-202"}]},"315c0301-186":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/lib0/array.js","moduleParts":{"server.js":"315c0301-187"},"imported":[{"uid":"315c0301-184"}],"importedBy":[{"uid":"315c0301-192"},{"uid":"315c0301-188"},{"uid":"315c0301-202"},{"uid":"315c0301-208"}]},"315c0301-188":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/lib0/string.js","moduleParts":{"server.js":"315c0301-189"},"imported":[{"uid":"315c0301-186"}],"importedBy":[{"uid":"315c0301-194"},{"uid":"315c0301-192"}]},"315c0301-190":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/lib0/error.js","moduleParts":{"server.js":"315c0301-191"},"imported":[],"importedBy":[{"uid":"315c0301-194"}]},"315c0301-192":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/lib0/encoding.js","moduleParts":{"server.js":"315c0301-193"},"imported":[{"uid":"315c0301-180"},{"uid":"315c0301-182"},{"uid":"315c0301-178"},{"uid":"315c0301-188"},{"uid":"315c0301-186"}],"importedBy":[{"uid":"315c0301-216"},{"uid":"315c0301-194"},{"uid":"315c0301-196"},{"uid":"315c0301-210"}]},"315c0301-194":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/lib0/decoding.js","moduleParts":{"server.js":"315c0301-195"},"imported":[{"uid":"315c0301-178"},{"uid":"315c0301-180"},{"uid":"315c0301-182"},{"uid":"315c0301-188"},{"uid":"315c0301-190"},{"uid":"315c0301-192"}],"importedBy":[{"uid":"315c0301-216"},{"uid":"315c0301-196"},{"uid":"315c0301-210"}]},"315c0301-196":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/y-protocols/sync.js","moduleParts":{"server.js":"315c0301-197"},"imported":[{"uid":"315c0301-192"},{"uid":"315c0301-194"},{"uid":"315c0301-235"}],"importedBy":[{"uid":"315c0301-216"}]},"315c0301-198":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/lib0/time.js","moduleParts":{"server.js":"315c0301-199"},"imported":[{"uid":"315c0301-250"},{"uid":"315c0301-180"}],"importedBy":[{"uid":"315c0301-210"}]},"315c0301-200":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/lib0/map.js","moduleParts":{"server.js":"315c0301-201"},"imported":[],"importedBy":[{"uid":"315c0301-202"}]},"315c0301-202":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/lib0/observable.js","moduleParts":{"server.js":"315c0301-203"},"imported":[{"uid":"315c0301-200"},{"uid":"315c0301-184"},{"uid":"315c0301-186"}],"importedBy":[{"uid":"315c0301-210"}]},"315c0301-204":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/lib0/trait/equality.js","moduleParts":{"server.js":"315c0301-205"},"imported":[],"importedBy":[{"uid":"315c0301-208"},{"uid":"315c0301-206"}]},"315c0301-206":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/lib0/object.js","moduleParts":{"server.js":"315c0301-207"},"imported":[{"uid":"315c0301-204"}],"importedBy":[{"uid":"315c0301-208"}]},"315c0301-208":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/lib0/function.js","moduleParts":{"server.js":"315c0301-209"},"imported":[{"uid":"315c0301-186"},{"uid":"315c0301-206"},{"uid":"315c0301-204"}],"importedBy":[{"uid":"315c0301-210"}]},"315c0301-210":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/y-protocols/awareness.js","moduleParts":{"server.js":"315c0301-211"},"imported":[{"uid":"315c0301-192"},{"uid":"315c0301-194"},{"uid":"315c0301-198"},{"uid":"315c0301-180"},{"uid":"315c0301-202"},{"uid":"315c0301-208"},{"uid":"315c0301-235"}],"importedBy":[{"uid":"315c0301-216"}]},"315c0301-212":{"id":"/src/utils.ts","moduleParts":{"server.js":"315c0301-213"},"imported":[],"importedBy":[{"uid":"315c0301-216"}]},"315c0301-214":{"id":"/src/constants.ts","moduleParts":{"server.js":"315c0301-215"},"imported":[],"importedBy":[{"uid":"315c0301-224"},{"uid":"315c0301-216"},{"uid":"315c0301-220"}]},"315c0301-216":{"id":"/src/server/azure-web-pubsub-host.ts","moduleParts":{"server.js":"315c0301-217"},"imported":[{"uid":"315c0301-242"},{"uid":"315c0301-194"},{"uid":"315c0301-192"},{"uid":"315c0301-196"},{"uid":"315c0301-210"},{"uid":"315c0301-232"},{"uid":"315c0301-233"},{"uid":"315c0301-150"},{"uid":"315c0301-148"},{"uid":"315c0301-212"},{"uid":"315c0301-240"},{"uid":"315c0301-214"}],"importedBy":[{"uid":"315c0301-224"},{"uid":"315c0301-220"}]},"315c0301-218":{"id":"/src/server/utils.ts","moduleParts":{"server.js":"315c0301-219"},"imported":[{"uid":"315c0301-150"},{"uid":"315c0301-242"}],"importedBy":[{"uid":"315c0301-220"}]},"315c0301-220":{"id":"/src/server/azure-web-pubsub-sync-handler.ts","moduleParts":{"server.js":"315c0301-221"},"imported":[{"uid":"315c0301-150"},{"uid":"315c0301-232"},{"uid":"315c0301-176"},{"uid":"315c0301-148"},{"uid":"315c0301-216"},{"uid":"315c0301-222"},{"uid":"315c0301-218"},{"uid":"315c0301-214"}],"importedBy":[{"uid":"315c0301-222"}]},"315c0301-222":{"id":"/src/server/azure-web-pubsub-server.ts","moduleParts":{"server.js":"315c0301-223"},"imported":[{"uid":"315c0301-232"},{"uid":"315c0301-234"},{"uid":"315c0301-142"},{"uid":"315c0301-146"},{"uid":"315c0301-148"},{"uid":"315c0301-220"},{"uid":"315c0301-241"}],"importedBy":[{"uid":"315c0301-224"},{"uid":"315c0301-220"}]},"315c0301-224":{"id":"/src/index.server.ts","moduleParts":{"server.js":"315c0301-225"},"imported":[{"uid":"315c0301-222"},{"uid":"315c0301-216"},{"uid":"315c0301-176"},{"uid":"315c0301-214"},{"uid":"315c0301-148"}],"importedBy":[],"isEntry":true},"315c0301-226":{"id":"/src/server/event-handler/index.d.ts","moduleParts":{},"imported":[{"uid":"315c0301-18"},{"uid":"315c0301-16"},{"uid":"315c0301-12"},{"uid":"315c0301-14"},{"uid":"315c0301-10"}],"importedBy":[{"uid":"315c0301-26"},{"uid":"315c0301-24"},{"uid":"315c0301-22"}]},"315c0301-227":{"id":"koa","moduleParts":{},"imported":[],"importedBy":[{"uid":"315c0301-24"},{"uid":"315c0301-18"}]},"315c0301-228":{"id":"emittery","moduleParts":{},"imported":[],"importedBy":[{"uid":"315c0301-24"},{"uid":"315c0301-4"}]},"315c0301-229":{"id":"express","moduleParts":{},"imported":[],"importedBy":[{"uid":"315c0301-24"}]},"315c0301-230":{"id":"@inditextech/weave-types","moduleParts":{},"imported":[],"importedBy":[{"uid":"315c0301-24"},{"uid":"315c0301-20"},{"uid":"315c0301-6"},{"uid":"315c0301-22"},{"uid":"315c0301-4"},{"uid":"315c0301-2"}]},"315c0301-231":{"id":"y-protocols/awareness","moduleParts":{},"imported":[],"importedBy":[{"uid":"315c0301-20"},{"uid":"315c0301-4"}]},"315c0301-232":{"id":"@azure/web-pubsub","moduleParts":{},"imported":[],"importedBy":[{"uid":"315c0301-20"},{"uid":"315c0301-22"},{"uid":"315c0301-222"},{"uid":"315c0301-216"},{"uid":"315c0301-220"}]},"315c0301-233":{"id":"ws","moduleParts":{},"imported":[],"importedBy":[{"uid":"315c0301-6"},{"uid":"315c0301-216"}]},"315c0301-234":{"id":"@azure/identity","moduleParts":{},"imported":[],"importedBy":[{"uid":"315c0301-6"},{"uid":"315c0301-222"}]},"315c0301-235":{"id":"yjs","moduleParts":{},"imported":[],"importedBy":[{"uid":"315c0301-6"},{"uid":"315c0301-8"},{"uid":"315c0301-4"},{"uid":"315c0301-196"},{"uid":"315c0301-210"},{"uid":"315c0301-150"}]},"315c0301-236":{"id":"lib0/encoding","moduleParts":{},"imported":[],"importedBy":[{"uid":"315c0301-6"}]},"315c0301-237":{"id":"lib0/decoding","moduleParts":{},"imported":[],"importedBy":[{"uid":"315c0301-6"}]},"315c0301-238":{"id":"express-serve-static-core","moduleParts":{},"imported":[],"importedBy":[{"uid":"315c0301-18"}]},"315c0301-239":{"id":"reconnecting-websocket","moduleParts":{},"imported":[],"importedBy":[{"uid":"315c0301-4"}]},"315c0301-240":{"id":"@inditextech/weave-sdk","moduleParts":{},"imported":[],"importedBy":[{"uid":"315c0301-2"},{"uid":"315c0301-216"}]},"315c0301-241":{"id":"@inditextech/weave-sdk/server","moduleParts":{},"imported":[],"importedBy":[{"uid":"315c0301-222"}]},"315c0301-242":{"id":"node:crypto","moduleParts":{},"imported":[],"importedBy":[{"uid":"315c0301-216"},{"uid":"315c0301-218"}]},"315c0301-243":{"id":"/src/server/event-handler/cloud-events-protocols.ts","moduleParts":{},"imported":[],"importedBy":[{"uid":"315c0301-176"}]},"315c0301-244":{"id":"node:util","moduleParts":{},"imported":[],"importedBy":[{"uid":"315c0301-140"},{"uid":"315c0301-106"},{"uid":"315c0301-154"}]},"315c0301-245":{"id":"node:v8","moduleParts":{},"imported":[],"importedBy":[{"uid":"315c0301-140"}]},"315c0301-246":{"id":"node:events","moduleParts":{},"imported":[],"importedBy":[{"uid":"315c0301-140"}]},"315c0301-247":{"id":"node:stream","moduleParts":{},"imported":[],"importedBy":[{"uid":"315c0301-140"}]},"315c0301-248":{"id":"node:http","moduleParts":{},"imported":[],"importedBy":[{"uid":"315c0301-140"}]},"315c0301-249":{"id":"node:async_hooks","moduleParts":{},"imported":[],"importedBy":[{"uid":"315c0301-140"}]},"315c0301-250":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/lib0/metric.js","moduleParts":{},"imported":[{"uid":"315c0301-180"}],"importedBy":[{"uid":"315c0301-198"}]},"315c0301-251":{"id":"node:url","moduleParts":{},"imported":[],"importedBy":[{"uid":"315c0301-170"}]},"315c0301-252":{"id":"async_hooks","moduleParts":{},"imported":[],"importedBy":[{"uid":"315c0301-32"}]},"315c0301-253":{"id":"url","moduleParts":{},"imported":[],"importedBy":[{"uid":"315c0301-92"},{"uid":"315c0301-72"},{"uid":"315c0301-74"}]},"315c0301-254":{"id":"net","moduleParts":{},"imported":[],"importedBy":[{"uid":"315c0301-92"}]},"315c0301-255":{"id":"util","moduleParts":{},"imported":[],"importedBy":[{"uid":"315c0301-92"},{"uid":"315c0301-138"},{"uid":"315c0301-46"}]},"315c0301-256":{"id":"node:assert","moduleParts":{},"imported":[],"importedBy":[{"uid":"315c0301-106"}]},"315c0301-257":{"id":"node:path","moduleParts":{},"imported":[],"importedBy":[{"uid":"315c0301-106"}]},"315c0301-258":{"id":"stream","moduleParts":{},"imported":[],"importedBy":[{"uid":"315c0301-104"},{"uid":"315c0301-98"}]},"315c0301-259":{"id":"path","moduleParts":{},"imported":[],"importedBy":[{"uid":"315c0301-40"},{"uid":"315c0301-94"},{"uid":"315c0301-82"},{"uid":"315c0301-66"},{"uid":"315c0301-114"}]},"315c0301-260":{"id":"events","moduleParts":{},"imported":[],"importedBy":[{"uid":"315c0301-98"},{"uid":"315c0301-112"}]},"315c0301-261":{"id":"fs","moduleParts":{},"imported":[],"importedBy":[{"uid":"315c0301-98"}]},"315c0301-262":{"id":"zlib","moduleParts":{},"imported":[],"importedBy":[{"uid":"315c0301-98"}]},"315c0301-263":{"id":"http","moduleParts":{},"imported":[],"importedBy":[{"uid":"315c0301-136"}]},"315c0301-264":{"id":"crypto","moduleParts":{},"imported":[],"importedBy":[{"uid":"315c0301-134"},{"uid":"315c0301-132"}]},"315c0301-265":{"id":"node:os","moduleParts":{},"imported":[],"importedBy":[{"uid":"315c0301-154"}]},"315c0301-266":{"id":"node:process","moduleParts":{},"imported":[],"importedBy":[{"uid":"315c0301-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":"a7bcd06f-1","name":"constants.d.ts"},{"uid":"a7bcd06f-3","name":"store-azure-web-pubsub.d.ts"},{"uid":"a7bcd06f-5","name":"client.d.ts"},{"uid":"a7bcd06f-7","name":"types.d.ts"},{"uid":"a7bcd06f-9","name":"yjs.d.ts"},{"name":"server","children":[{"name":"event-handler","children":[{"name":"enum/mqtt-error-codes","children":[{"uid":"a7bcd06f-11","name":"mqtt-disconnect-reason-code.d.ts"},{"uid":"a7bcd06f-13","name":"mqtt-v311-connect-return-code.d.ts"},{"uid":"a7bcd06f-15","name":"mqtt-v500-connect-reason-code.d.ts"}]},{"uid":"a7bcd06f-17","name":"cloud-events-protocols.d.ts"},{"uid":"a7bcd06f-19","name":"web-pubsub-event-handler.d.ts"}]},{"uid":"a7bcd06f-21","name":"azure-web-pubsub-host.d.ts"},{"uid":"a7bcd06f-23","name":"azure-web-pubsub-sync-handler.d.ts"},{"uid":"a7bcd06f-25","name":"azure-web-pubsub-server.d.ts"}]},{"uid":"a7bcd06f-27","name":"index.server.d.ts"}]}]},{"name":"server.js","children":[{"uid":"a7bcd06f-29","name":"rolldown:runtime"},{"name":"home/runner/work/weavejs/weavejs/code/node_modules","children":[{"name":"ee-first/index.js","uid":"a7bcd06f-31"},{"name":"on-finished/index.js","uid":"a7bcd06f-33"},{"name":"koa-compose/index.js","uid":"a7bcd06f-35"},{"name":"statuses","children":[{"uid":"a7bcd06f-37","name":"codes.json"},{"uid":"a7bcd06f-39","name":"index.js"}]},{"name":"depd/index.js","uid":"a7bcd06f-41"},{"name":"setprototypeof/index.js","uid":"a7bcd06f-43"},{"name":"inherits","children":[{"uid":"a7bcd06f-45","name":"inherits_browser.js"},{"uid":"a7bcd06f-47","name":"inherits.js"}]},{"name":"toidentifier/index.js","uid":"a7bcd06f-49"},{"name":"http-errors/index.js","uid":"a7bcd06f-51"},{"name":"koa","children":[{"name":"node_modules","children":[{"name":"negotiator","children":[{"name":"lib","children":[{"uid":"a7bcd06f-53","name":"charset.js"},{"uid":"a7bcd06f-55","name":"encoding.js"},{"uid":"a7bcd06f-57","name":"language.js"},{"uid":"a7bcd06f-59","name":"mediaType.js"}]},{"uid":"a7bcd06f-61","name":"index.js"}]},{"name":"mime-db","children":[{"uid":"a7bcd06f-63","name":"db.json"},{"uid":"a7bcd06f-65","name":"index.js"}]},{"name":"accepts","children":[{"name":"node_modules/mime-types/index.js","uid":"a7bcd06f-67"},{"uid":"a7bcd06f-69","name":"index.js"}]},{"name":"fresh/index.js","uid":"a7bcd06f-91"},{"name":"content-disposition/index.js","uid":"a7bcd06f-97"}]},{"name":"lib","children":[{"uid":"a7bcd06f-75","name":"search-params.js"},{"uid":"a7bcd06f-93","name":"only.js"},{"uid":"a7bcd06f-95","name":"request.js"},{"uid":"a7bcd06f-107","name":"is-stream.js"},{"uid":"a7bcd06f-109","name":"response.js"},{"uid":"a7bcd06f-141","name":"context.js"},{"uid":"a7bcd06f-143","name":"application.js"}]},{"name":"dist/koa.mjs","uid":"a7bcd06f-145"}]},{"name":"content-type/index.js","uid":"a7bcd06f-71"},{"name":"parseurl/index.js","uid":"a7bcd06f-73"},{"name":"type-is","children":[{"name":"node_modules/content-type/dist/index.js","uid":"a7bcd06f-77"},{"uid":"a7bcd06f-89","name":"index.js"}]},{"name":"mime-db","children":[{"uid":"a7bcd06f-79","name":"db.json"},{"uid":"a7bcd06f-81","name":"index.js"}]},{"name":"mime-types","children":[{"uid":"a7bcd06f-83","name":"mimeScore.js"},{"uid":"a7bcd06f-85","name":"index.js"}]},{"name":"media-typer/index.js","uid":"a7bcd06f-87"},{"name":"escape-html/index.js","uid":"a7bcd06f-99"},{"name":"destroy/index.js","uid":"a7bcd06f-101"},{"name":"encodeurl/index.js","uid":"a7bcd06f-103"},{"name":"vary/index.js","uid":"a7bcd06f-105"},{"name":"http-assert","children":[{"name":"node_modules","children":[{"name":"depd","children":[{"name":"lib/compat","children":[{"uid":"a7bcd06f-111","name":"callsite-tostring.js"},{"uid":"a7bcd06f-113","name":"event-listener-count.js"},{"uid":"a7bcd06f-115","name":"index.js"}]},{"uid":"a7bcd06f-117","name":"index.js"}]},{"name":"statuses","children":[{"uid":"a7bcd06f-119","name":"codes.json"},{"uid":"a7bcd06f-121","name":"index.js"}]},{"name":"http-errors/index.js","uid":"a7bcd06f-123"}]},{"uid":"a7bcd06f-131","name":"index.js"}]},{"name":"deep-equal","children":[{"name":"lib","children":[{"uid":"a7bcd06f-125","name":"keys.js"},{"uid":"a7bcd06f-127","name":"is_arguments.js"}]},{"uid":"a7bcd06f-129","name":"index.js"}]},{"name":"delegates/index.js","uid":"a7bcd06f-133"},{"name":"tsscmp/lib/index.js","uid":"a7bcd06f-135"},{"name":"keygrip/index.js","uid":"a7bcd06f-137"},{"name":"cookies/index.js","uid":"a7bcd06f-139"},{"name":"emittery","children":[{"uid":"a7bcd06f-147","name":"maps.js"},{"uid":"a7bcd06f-149","name":"index.js"}]},{"name":"@typespec/ts-http-runtime/dist/esm/logger","children":[{"uid":"a7bcd06f-157","name":"log.js"},{"uid":"a7bcd06f-159","name":"debug.js"},{"uid":"a7bcd06f-161","name":"logger.js"},{"uid":"a7bcd06f-163","name":"internal.js"}]},{"name":"@azure/logger/dist/esm/index.js","uid":"a7bcd06f-165"},{"name":"lib0","children":[{"uid":"a7bcd06f-181","name":"binary.js"},{"uid":"a7bcd06f-183","name":"math.js"},{"uid":"a7bcd06f-185","name":"number.js"},{"uid":"a7bcd06f-187","name":"set.js"},{"uid":"a7bcd06f-189","name":"array.js"},{"uid":"a7bcd06f-191","name":"string.js"},{"uid":"a7bcd06f-193","name":"error.js"},{"uid":"a7bcd06f-195","name":"encoding.js"},{"uid":"a7bcd06f-197","name":"decoding.js"},{"uid":"a7bcd06f-201","name":"time.js"},{"uid":"a7bcd06f-203","name":"map.js"},{"uid":"a7bcd06f-205","name":"observable.js"},{"name":"trait/equality.js","uid":"a7bcd06f-207"},{"uid":"a7bcd06f-209","name":"object.js"},{"uid":"a7bcd06f-211","name":"function.js"}]},{"name":"y-protocols","children":[{"uid":"a7bcd06f-199","name":"sync.js"},{"uid":"a7bcd06f-213","name":"awareness.js"}]}]},{"name":"src","children":[{"uid":"a7bcd06f-151","name":"types.ts"},{"uid":"a7bcd06f-153","name":"yjs.ts"},{"name":"server","children":[{"name":"event-handler","children":[{"uid":"a7bcd06f-155","name":"utils.ts"},{"uid":"a7bcd06f-167","name":"logger.ts"},{"name":"enum/mqtt-error-codes","children":[{"uid":"a7bcd06f-169","name":"mqtt-v311-connect-return-code.ts"},{"uid":"a7bcd06f-171","name":"mqtt-v500-connect-reason-code.ts"},{"uid":"a7bcd06f-177","name":"mqtt-disconnect-reason-code.ts"}]},{"uid":"a7bcd06f-173","name":"cloud-events-dispatcher.ts"},{"uid":"a7bcd06f-175","name":"web-pubsub-event-handler.ts"},{"uid":"a7bcd06f-179","name":"index.ts"}]},{"uid":"a7bcd06f-219","name":"azure-web-pubsub-host.ts"},{"uid":"a7bcd06f-221","name":"utils.ts"},{"uid":"a7bcd06f-223","name":"azure-web-pubsub-sync-handler.ts"},{"uid":"a7bcd06f-225","name":"azure-web-pubsub-server.ts"}]},{"uid":"a7bcd06f-215","name":"utils.ts"},{"uid":"a7bcd06f-217","name":"constants.ts"},{"uid":"a7bcd06f-227","name":"index.server.ts"}]}]}],"isRoot":true},"nodeParts":{"a7bcd06f-1":{"renderedLength":495,"gzipLength":251,"brotliLength":215,"metaUid":"a7bcd06f-0"},"a7bcd06f-3":{"renderedLength":439,"gzipLength":218,"brotliLength":181,"metaUid":"a7bcd06f-2"},"a7bcd06f-5":{"renderedLength":503,"gzipLength":227,"brotliLength":207,"metaUid":"a7bcd06f-4"},"a7bcd06f-7":{"renderedLength":2852,"gzipLength":702,"brotliLength":603,"metaUid":"a7bcd06f-6"},"a7bcd06f-9":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"a7bcd06f-8"},"a7bcd06f-11":{"renderedLength":183,"gzipLength":153,"brotliLength":124,"metaUid":"a7bcd06f-10"},"a7bcd06f-13":{"renderedLength":185,"gzipLength":158,"brotliLength":130,"metaUid":"a7bcd06f-12"},"a7bcd06f-15":{"renderedLength":287,"gzipLength":218,"brotliLength":172,"metaUid":"a7bcd06f-14"},"a7bcd06f-17":{"renderedLength":3151,"gzipLength":737,"brotliLength":642,"metaUid":"a7bcd06f-16"},"a7bcd06f-19":{"renderedLength":297,"gzipLength":206,"brotliLength":156,"metaUid":"a7bcd06f-18"},"a7bcd06f-21":{"renderedLength":393,"gzipLength":219,"brotliLength":187,"metaUid":"a7bcd06f-20"},"a7bcd06f-23":{"renderedLength":660,"gzipLength":257,"brotliLength":224,"metaUid":"a7bcd06f-22"},"a7bcd06f-25":{"renderedLength":839,"gzipLength":316,"brotliLength":294,"metaUid":"a7bcd06f-24"},"a7bcd06f-27":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"a7bcd06f-26"},"a7bcd06f-29":{"renderedLength":1207,"gzipLength":605,"brotliLength":543,"metaUid":"a7bcd06f-28"},"a7bcd06f-31":{"renderedLength":1564,"gzipLength":706,"brotliLength":596,"metaUid":"a7bcd06f-30"},"a7bcd06f-33":{"renderedLength":4007,"gzipLength":1364,"brotliLength":1159,"metaUid":"a7bcd06f-32"},"a7bcd06f-35":{"renderedLength":1215,"gzipLength":579,"brotliLength":486,"metaUid":"a7bcd06f-34"},"a7bcd06f-37":{"renderedLength":1972,"gzipLength":887,"brotliLength":672,"metaUid":"a7bcd06f-36"},"a7bcd06f-39":{"renderedLength":2400,"gzipLength":869,"brotliLength":753,"metaUid":"a7bcd06f-38"},"a7bcd06f-41":{"renderedLength":9963,"gzipLength":2916,"brotliLength":2538,"metaUid":"a7bcd06f-40"},"a7bcd06f-43":{"renderedLength":539,"gzipLength":301,"brotliLength":240,"metaUid":"a7bcd06f-42"},"a7bcd06f-45":{"renderedLength":776,"gzipLength":325,"brotliLength":273,"metaUid":"a7bcd06f-44"},"a7bcd06f-47":{"renderedLength":421,"gzipLength":243,"brotliLength":189,"metaUid":"a7bcd06f-46"},"a7bcd06f-49":{"renderedLength":555,"gzipLength":334,"brotliLength":293,"metaUid":"a7bcd06f-48"},"a7bcd06f-51":{"renderedLength":5891,"gzipLength":1672,"brotliLength":1457,"metaUid":"a7bcd06f-50"},"a7bcd06f-53":{"renderedLength":2924,"gzipLength":1038,"brotliLength":889,"metaUid":"a7bcd06f-52"},"a7bcd06f-55":{"renderedLength":3185,"gzipLength":1097,"brotliLength":947,"metaUid":"a7bcd06f-54"},"a7bcd06f-57":{"renderedLength":3204,"gzipLength":1106,"brotliLength":946,"metaUid":"a7bcd06f-56"},"a7bcd06f-59":{"renderedLength":4875,"gzipLength":1580,"brotliLength":1382,"metaUid":"a7bcd06f-58"},"a7bcd06f-61":{"renderedLength":2492,"gzipLength":584,"brotliLength":463,"metaUid":"a7bcd06f-60"},"a7bcd06f-63":{"renderedLength":179113,"gzipLength":20857,"brotliLength":18454,"metaUid":"a7bcd06f-62"},"a7bcd06f-65":{"renderedLength":378,"gzipLength":247,"brotliLength":180,"metaUid":"a7bcd06f-64"},"a7bcd06f-67":{"renderedLength":3288,"gzipLength":1125,"brotliLength":943,"metaUid":"a7bcd06f-66"},"a7bcd06f-69":{"renderedLength":4839,"gzipLength":1430,"brotliLength":1184,"metaUid":"a7bcd06f-68"},"a7bcd06f-71":{"renderedLength":4580,"gzipLength":1605,"brotliLength":1381,"metaUid":"a7bcd06f-70"},"a7bcd06f-73":{"renderedLength":2361,"gzipLength":840,"brotliLength":724,"metaUid":"a7bcd06f-72"},"a7bcd06f-75":{"renderedLength":1001,"gzipLength":470,"brotliLength":412,"metaUid":"a7bcd06f-74"},"a7bcd06f-77":{"renderedLength":4745,"gzipLength":1614,"brotliLength":1371,"metaUid":"a7bcd06f-76"},"a7bcd06f-79":{"renderedLength":196147,"gzipLength":22796,"brotliLength":20148,"metaUid":"a7bcd06f-78"},"a7bcd06f-81":{"renderedLength":340,"gzipLength":239,"brotliLength":179,"metaUid":"a7bcd06f-80"},"a7bcd06f-83":{"renderedLength":1135,"gzipLength":551,"brotliLength":451,"metaUid":"a7bcd06f-82"},"a7bcd06f-85":{"renderedLength":3826,"gzipLength":1245,"brotliLength":1041,"metaUid":"a7bcd06f-84"},"a7bcd06f-87":{"renderedLength":3005,"gzipLength":1003,"brotliLength":826,"metaUid":"a7bcd06f-86"},"a7bcd06f-89":{"renderedLength":4799,"gzipLength":1697,"brotliLength":1412,"metaUid":"a7bcd06f-88"},"a7bcd06f-91":{"renderedLength":2331,"gzipLength":934,"brotliLength":770,"metaUid":"a7bcd06f-90"},"a7bcd06f-93":{"renderedLength":358,"gzipLength":243,"brotliLength":196,"metaUid":"a7bcd06f-92"},"a7bcd06f-95":{"renderedLength":6502,"gzipLength":2120,"brotliLength":1841,"metaUid":"a7bcd06f-94"},"a7bcd06f-97":{"renderedLength":9656,"gzipLength":3099,"brotliLength":2691,"metaUid":"a7bcd06f-96"},"a7bcd06f-99":{"renderedLength":1254,"gzipLength":553,"brotliLength":435,"metaUid":"a7bcd06f-98"},"a7bcd06f-101":{"renderedLength":3902,"gzipLength":1266,"brotliLength":1077,"metaUid":"a7bcd06f-100"},"a7bcd06f-103":{"renderedLength":1642,"gzipLength":817,"brotliLength":689,"metaUid":"a7bcd06f-102"},"a7bcd06f-105":{"renderedLength":2506,"gzipLength":1039,"brotliLength":883,"metaUid":"a7bcd06f-104"},"a7bcd06f-107":{"renderedLength":594,"gzipLength":280,"brotliLength":250,"metaUid":"a7bcd06f-106"},"a7bcd06f-109":{"renderedLength":7222,"gzipLength":2266,"brotliLength":1986,"metaUid":"a7bcd06f-108"},"a7bcd06f-111":{"renderedLength":2266,"gzipLength":778,"brotliLength":683,"metaUid":"a7bcd06f-110"},"a7bcd06f-113":{"renderedLength":516,"gzipLength":280,"brotliLength":234,"metaUid":"a7bcd06f-112"},"a7bcd06f-115":{"renderedLength":1500,"gzipLength":595,"brotliLength":503,"metaUid":"a7bcd06f-114"},"a7bcd06f-117":{"renderedLength":9704,"gzipLength":2761,"brotliLength":2417,"metaUid":"a7bcd06f-116"},"a7bcd06f-119":{"renderedLength":2052,"gzipLength":911,"brotliLength":698,"metaUid":"a7bcd06f-118"},"a7bcd06f-121":{"renderedLength":1954,"gzipLength":796,"brotliLength":685,"metaUid":"a7bcd06f-120"},"a7bcd06f-123":{"renderedLength":5938,"gzipLength":1705,"brotliLength":1478,"metaUid":"a7bcd06f-122"},"a7bcd06f-125":{"renderedLength":374,"gzipLength":238,"brotliLength":203,"metaUid":"a7bcd06f-124"},"a7bcd06f-127":{"renderedLength":816,"gzipLength":350,"brotliLength":289,"metaUid":"a7bcd06f-126"},"a7bcd06f-129":{"renderedLength":1965,"gzipLength":723,"brotliLength":610,"metaUid":"a7bcd06f-128"},"a7bcd06f-131":{"renderedLength":1190,"gzipLength":335,"brotliLength":292,"metaUid":"a7bcd06f-130"},"a7bcd06f-133":{"renderedLength":2232,"gzipLength":572,"brotliLength":488,"metaUid":"a7bcd06f-132"},"a7bcd06f-135":{"renderedLength":763,"gzipLength":394,"brotliLength":324,"metaUid":"a7bcd06f-134"},"a7bcd06f-137":{"renderedLength":1218,"gzipLength":561,"brotliLength":471,"metaUid":"a7bcd06f-136"},"a7bcd06f-139":{"renderedLength":7410,"gzipLength":2440,"brotliLength":2099,"metaUid":"a7bcd06f-138"},"a7bcd06f-141":{"renderedLength":3398,"gzipLength":1280,"brotliLength":1125,"metaUid":"a7bcd06f-140"},"a7bcd06f-143":{"renderedLength":8688,"gzipLength":2935,"brotliLength":2591,"metaUid":"a7bcd06f-142"},"a7bcd06f-145":{"renderedLength":115,"gzipLength":115,"brotliLength":96,"metaUid":"a7bcd06f-144"},"a7bcd06f-147":{"renderedLength":158,"gzipLength":122,"brotliLength":109,"metaUid":"a7bcd06f-146"},"a7bcd06f-149":{"renderedLength":12602,"gzipLength":2888,"brotliLength":2560,"metaUid":"a7bcd06f-148"},"a7bcd06f-151":{"renderedLength":476,"gzipLength":226,"brotliLength":185,"metaUid":"a7bcd06f-150"},"a7bcd06f-153":{"renderedLength":57,"gzipLength":73,"brotliLength":61,"metaUid":"a7bcd06f-152"},"a7bcd06f-155":{"renderedLength":1101,"gzipLength":525,"brotliLength":451,"metaUid":"a7bcd06f-154"},"a7bcd06f-157":{"renderedLength":193,"gzipLength":167,"brotliLength":140,"metaUid":"a7bcd06f-156"},"a7bcd06f-159":{"renderedLength":4071,"gzipLength":1245,"brotliLength":1076,"metaUid":"a7bcd06f-158"},"a7bcd06f-161":{"renderedLength":3184,"gzipLength":1154,"brotliLength":992,"metaUid":"a7bcd06f-160"},"a7bcd06f-163":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"a7bcd06f-162"},"a7bcd06f-165":{"renderedLength":640,"gzipLength":402,"brotliLength":306,"metaUid":"a7bcd06f-164"},"a7bcd06f-167":{"renderedLength":119,"gzipLength":120,"brotliLength":94,"metaUid":"a7bcd06f-166"},"a7bcd06f-169":{"renderedLength":1465,"gzipLength":547,"brotliLength":434,"metaUid":"a7bcd06f-168"},"a7bcd06f-171":{"renderedLength":5173,"gzipLength":1349,"brotliLength":1076,"metaUid":"a7bcd06f-170"},"a7bcd06f-173":{"renderedLength":12076,"gzipLength":2763,"brotliLength":2437,"metaUid":"a7bcd06f-172"},"a7bcd06f-175":{"renderedLength":2508,"gzipLength":891,"brotliLength":756,"metaUid":"a7bcd06f-174"},"a7bcd06f-177":{"renderedLength":7967,"gzipLength":1797,"brotliLength":1463,"metaUid":"a7bcd06f-176"},"a7bcd06f-179":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"a7bcd06f-178"},"a7bcd06f-181":{"renderedLength":905,"gzipLength":297,"brotliLength":224,"metaUid":"a7bcd06f-180"},"a7bcd06f-183":{"renderedLength":453,"gzipLength":238,"brotliLength":195,"metaUid":"a7bcd06f-182"},"a7bcd06f-185":{"renderedLength":448,"gzipLength":260,"brotliLength":219,"metaUid":"a7bcd06f-184"},"a7bcd06f-187":{"renderedLength":147,"gzipLength":138,"brotliLength":123,"metaUid":"a7bcd06f-186"},"a7bcd06f-189":{"renderedLength":263,"gzipLength":198,"brotliLength":150,"metaUid":"a7bcd06f-188"},"a7bcd06f-191":{"renderedLength":1356,"gzipLength":600,"brotliLength":498,"metaUid":"a7bcd06f-190"},"a7bcd06f-193":{"renderedLength":202,"gzipLength":167,"brotliLength":134,"metaUid":"a7bcd06f-192"},"a7bcd06f-195":{"renderedLength":4121,"gzipLength":1201,"brotliLength":1057,"metaUid":"a7bcd06f-194"},"a7bcd06f-197":{"renderedLength":4493,"gzipLength":1532,"brotliLength":1293,"metaUid":"a7bcd06f-196"},"a7bcd06f-199":{"renderedLength":4603,"gzipLength":1487,"brotliLength":1223,"metaUid":"a7bcd06f-198"},"a7bcd06f-201":{"renderedLength":141,"gzipLength":136,"brotliLength":102,"metaUid":"a7bcd06f-200"},"a7bcd06f-203":{"renderedLength":892,"gzipLength":479,"brotliLength":439,"metaUid":"a7bcd06f-202"},"a7bcd06f-205":{"renderedLength":1299,"gzipLength":592,"brotliLength":509,"metaUid":"a7bcd06f-204"},"a7bcd06f-207":{"renderedLength":113,"gzipLength":111,"brotliLength":86,"metaUid":"a7bcd06f-206"},"a7bcd06f-209":{"renderedLength":433,"gzipLength":244,"brotliLength":205,"metaUid":"a7bcd06f-208"},"a7bcd06f-211":{"renderedLength":1387,"gzipLength":543,"brotliLength":463,"metaUid":"a7bcd06f-210"},"a7bcd06f-213":{"renderedLength":7280,"gzipLength":2180,"brotliLength":1870,"metaUid":"a7bcd06f-212"},"a7bcd06f-215":{"renderedLength":748,"gzipLength":280,"brotliLength":255,"metaUid":"a7bcd06f-214"},"a7bcd06f-217":{"renderedLength":824,"gzipLength":410,"brotliLength":339,"metaUid":"a7bcd06f-216"},"a7bcd06f-219":{"renderedLength":11102,"gzipLength":2714,"brotliLength":2392,"metaUid":"a7bcd06f-218"},"a7bcd06f-221":{"renderedLength":471,"gzipLength":274,"brotliLength":235,"metaUid":"a7bcd06f-220"},"a7bcd06f-223":{"renderedLength":5756,"gzipLength":1602,"brotliLength":1386,"metaUid":"a7bcd06f-222"},"a7bcd06f-225":{"renderedLength":2106,"gzipLength":712,"brotliLength":607,"metaUid":"a7bcd06f-224"},"a7bcd06f-227":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"a7bcd06f-226"}},"nodeMetas":{"a7bcd06f-0":{"id":"/src/constants.d.ts","moduleParts":{"server.d.ts":"a7bcd06f-1"},"imported":[{"uid":"a7bcd06f-6"}],"importedBy":[{"uid":"a7bcd06f-26"},{"uid":"a7bcd06f-6"}]},"a7bcd06f-2":{"id":"/src/store-azure-web-pubsub.d.ts","moduleParts":{"server.d.ts":"a7bcd06f-3"},"imported":[{"uid":"a7bcd06f-242"},{"uid":"a7bcd06f-232"},{"uid":"a7bcd06f-4"},{"uid":"a7bcd06f-6"}],"importedBy":[{"uid":"a7bcd06f-4"}]},"a7bcd06f-4":{"id":"/src/client.d.ts","moduleParts":{"server.d.ts":"a7bcd06f-5"},"imported":[{"uid":"a7bcd06f-230"},{"uid":"a7bcd06f-237"},{"uid":"a7bcd06f-241"},{"uid":"a7bcd06f-233"},{"uid":"a7bcd06f-6"},{"uid":"a7bcd06f-2"},{"uid":"a7bcd06f-232"}],"importedBy":[{"uid":"a7bcd06f-6"},{"uid":"a7bcd06f-2"}]},"a7bcd06f-6":{"id":"/src/types.d.ts","moduleParts":{"server.d.ts":"a7bcd06f-7"},"imported":[{"uid":"a7bcd06f-235"},{"uid":"a7bcd06f-236"},{"uid":"a7bcd06f-237"},{"uid":"a7bcd06f-26"},{"uid":"a7bcd06f-0"},{"uid":"a7bcd06f-4"},{"uid":"a7bcd06f-238"},{"uid":"a7bcd06f-239"},{"uid":"a7bcd06f-232"}],"importedBy":[{"uid":"a7bcd06f-26"},{"uid":"a7bcd06f-24"},{"uid":"a7bcd06f-20"},{"uid":"a7bcd06f-0"},{"uid":"a7bcd06f-22"},{"uid":"a7bcd06f-4"},{"uid":"a7bcd06f-2"}]},"a7bcd06f-8":{"id":"/src/yjs.d.ts","moduleParts":{"server.d.ts":"a7bcd06f-9"},"imported":[{"uid":"a7bcd06f-237"}],"importedBy":[{"uid":"a7bcd06f-24"},{"uid":"a7bcd06f-20"},{"uid":"a7bcd06f-22"}]},"a7bcd06f-10":{"id":"/src/server/event-handler/enum/mqtt-error-codes/mqtt-disconnect-reason-code.d.ts","moduleParts":{"server.d.ts":"a7bcd06f-11"},"imported":[],"importedBy":[{"uid":"a7bcd06f-228"},{"uid":"a7bcd06f-16"}]},"a7bcd06f-12":{"id":"/src/server/event-handler/enum/mqtt-error-codes/mqtt-v311-connect-return-code.d.ts","moduleParts":{"server.d.ts":"a7bcd06f-13"},"imported":[],"importedBy":[{"uid":"a7bcd06f-228"},{"uid":"a7bcd06f-16"}]},"a7bcd06f-14":{"id":"/src/server/event-handler/enum/mqtt-error-codes/mqtt-v500-connect-reason-code.d.ts","moduleParts":{"server.d.ts":"a7bcd06f-15"},"imported":[],"importedBy":[{"uid":"a7bcd06f-228"},{"uid":"a7bcd06f-16"}]},"a7bcd06f-16":{"id":"/src/server/event-handler/cloud-events-protocols.d.ts","moduleParts":{"server.d.ts":"a7bcd06f-17"},"imported":[{"uid":"a7bcd06f-10"},{"uid":"a7bcd06f-12"},{"uid":"a7bcd06f-14"}],"importedBy":[{"uid":"a7bcd06f-228"},{"uid":"a7bcd06f-18"}]},"a7bcd06f-18":{"id":"/src/server/event-handler/web-pubsub-event-handler.d.ts","moduleParts":{"server.d.ts":"a7bcd06f-19"},"imported":[{"uid":"a7bcd06f-240"},{"uid":"a7bcd06f-229"},{"uid":"a7bcd06f-16"}],"importedBy":[{"uid":"a7bcd06f-228"}]},"a7bcd06f-20":{"id":"/src/server/azure-web-pubsub-host.d.ts","moduleParts":{"server.d.ts":"a7bcd06f-21"},"imported":[{"uid":"a7bcd06f-233"},{"uid":"a7bcd06f-234"},{"uid":"a7bcd06f-8"},{"uid":"a7bcd06f-24"},{"uid":"a7bcd06f-6"},{"uid":"a7bcd06f-22"},{"uid":"a7bcd06f-232"}],"importedBy":[{"uid":"a7bcd06f-26"},{"uid":"a7bcd06f-22"}]},"a7bcd06f-22":{"id":"/src/server/azure-web-pubsub-sync-handler.d.ts","moduleParts":{"server.d.ts":"a7bcd06f-23"},"imported":[{"uid":"a7bcd06f-8"},{"uid":"a7bcd06f-234"},{"uid":"a7bcd06f-228"},{"uid":"a7bcd06f-6"},{"uid":"a7bcd06f-20"},{"uid":"a7bcd06f-24"},{"uid":"a7bcd06f-232"}],"importedBy":[{"uid":"a7bcd06f-24"},{"uid":"a7bcd06f-20"}]},"a7bcd06f-24":{"id":"/src/server/azure-web-pubsub-server.d.ts","moduleParts":{"server.d.ts":"a7bcd06f-25"},"imported":[{"uid":"a7bcd06f-229"},{"uid":"a7bcd06f-230"},{"uid":"a7bcd06f-6"},{"uid":"a7bcd06f-22"},{"uid":"a7bcd06f-228"},{"uid":"a7bcd06f-231"},{"uid":"a7bcd06f-8"},{"uid":"a7bcd06f-232"}],"importedBy":[{"uid":"a7bcd06f-26"},{"uid":"a7bcd06f-20"},{"uid":"a7bcd06f-22"}]},"a7bcd06f-26":{"id":"/src/index.server.d.ts","moduleParts":{"server.d.ts":"a7bcd06f-27"},"imported":[{"uid":"a7bcd06f-24"},{"uid":"a7bcd06f-20"},{"uid":"a7bcd06f-228"},{"uid":"a7bcd06f-0"},{"uid":"a7bcd06f-6"}],"importedBy":[{"uid":"a7bcd06f-6"}],"isEntry":true},"a7bcd06f-28":{"id":"rolldown:runtime","moduleParts":{"server.js":"a7bcd06f-29"},"imported":[],"importedBy":[]},"a7bcd06f-30":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/ee-first/index.js","moduleParts":{"server.js":"a7bcd06f-31"},"imported":[],"importedBy":[{"uid":"a7bcd06f-32"}]},"a7bcd06f-32":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/on-finished/index.js","moduleParts":{"server.js":"a7bcd06f-33"},"imported":[{"uid":"a7bcd06f-30"},{"uid":"a7bcd06f-254"}],"importedBy":[{"uid":"a7bcd06f-142"},{"uid":"a7bcd06f-108"}]},"a7bcd06f-34":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/koa-compose/index.js","moduleParts":{"server.js":"a7bcd06f-35"},"imported":[],"importedBy":[{"uid":"a7bcd06f-142"}]},"a7bcd06f-36":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/statuses/codes.json","moduleParts":{"server.js":"a7bcd06f-37"},"imported":[],"importedBy":[{"uid":"a7bcd06f-38"}]},"a7bcd06f-38":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/statuses/index.js","moduleParts":{"server.js":"a7bcd06f-39"},"imported":[{"uid":"a7bcd06f-36"}],"importedBy":[{"uid":"a7bcd06f-142"},{"uid":"a7bcd06f-50"},{"uid":"a7bcd06f-108"},{"uid":"a7bcd06f-140"}]},"a7bcd06f-40":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/depd/index.js","moduleParts":{"server.js":"a7bcd06f-41"},"imported":[{"uid":"a7bcd06f-261"}],"importedBy":[{"uid":"a7bcd06f-50"},{"uid":"a7bcd06f-138"}]},"a7bcd06f-42":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/setprototypeof/index.js","moduleParts":{"server.js":"a7bcd06f-43"},"imported":[],"importedBy":[{"uid":"a7bcd06f-50"},{"uid":"a7bcd06f-122"}]},"a7bcd06f-44":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/inherits/inherits_browser.js","moduleParts":{"server.js":"a7bcd06f-45"},"imported":[],"importedBy":[{"uid":"a7bcd06f-46"}]},"a7bcd06f-46":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/inherits/inherits.js","moduleParts":{"server.js":"a7bcd06f-47"},"imported":[{"uid":"a7bcd06f-257"},{"uid":"a7bcd06f-44"}],"importedBy":[{"uid":"a7bcd06f-50"},{"uid":"a7bcd06f-122"}]},"a7bcd06f-48":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/toidentifier/index.js","moduleParts":{"server.js":"a7bcd06f-49"},"imported":[],"importedBy":[{"uid":"a7bcd06f-50"},{"uid":"a7bcd06f-122"}]},"a7bcd06f-50":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/http-errors/index.js","moduleParts":{"server.js":"a7bcd06f-51"},"imported":[{"uid":"a7bcd06f-40"},{"uid":"a7bcd06f-42"},{"uid":"a7bcd06f-38"},{"uid":"a7bcd06f-46"},{"uid":"a7bcd06f-48"}],"importedBy":[{"uid":"a7bcd06f-142"},{"uid":"a7bcd06f-140"}]},"a7bcd06f-52":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/koa/node_modules/negotiator/lib/charset.js","moduleParts":{"server.js":"a7bcd06f-53"},"imported":[],"importedBy":[{"uid":"a7bcd06f-60"}]},"a7bcd06f-54":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/koa/node_modules/negotiator/lib/encoding.js","moduleParts":{"server.js":"a7bcd06f-55"},"imported":[],"importedBy":[{"uid":"a7bcd06f-60"}]},"a7bcd06f-56":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/koa/node_modules/negotiator/lib/language.js","moduleParts":{"server.js":"a7bcd06f-57"},"imported":[],"importedBy":[{"uid":"a7bcd06f-60"}]},"a7bcd06f-58":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/koa/node_modules/negotiator/lib/mediaType.js","moduleParts":{"server.js":"a7bcd06f-59"},"imported":[],"importedBy":[{"uid":"a7bcd06f-60"}]},"a7bcd06f-60":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/koa/node_modules/negotiator/index.js","moduleParts":{"server.js":"a7bcd06f-61"},"imported":[{"uid":"a7bcd06f-52"},{"uid":"a7bcd06f-54"},{"uid":"a7bcd06f-56"},{"uid":"a7bcd06f-58"}],"importedBy":[{"uid":"a7bcd06f-68"}]},"a7bcd06f-62":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/koa/node_modules/mime-db/db.json","moduleParts":{"server.js":"a7bcd06f-63"},"imported":[],"importedBy":[{"uid":"a7bcd06f-64"}]},"a7bcd06f-64":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/koa/node_modules/mime-db/index.js","moduleParts":{"server.js":"a7bcd06f-65"},"imported":[{"uid":"a7bcd06f-62"}],"importedBy":[{"uid":"a7bcd06f-66"}]},"a7bcd06f-66":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/koa/node_modules/accepts/node_modules/mime-types/index.js","moduleParts":{"server.js":"a7bcd06f-67"},"imported":[{"uid":"a7bcd06f-64"},{"uid":"a7bcd06f-261"}],"importedBy":[{"uid":"a7bcd06f-68"}]},"a7bcd06f-68":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/koa/node_modules/accepts/index.js","moduleParts":{"server.js":"a7bcd06f-69"},"imported":[{"uid":"a7bcd06f-60"},{"uid":"a7bcd06f-66"}],"importedBy":[{"uid":"a7bcd06f-94"}]},"a7bcd06f-70":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/content-type/index.js","moduleParts":{"server.js":"a7bcd06f-71"},"imported":[],"importedBy":[{"uid":"a7bcd06f-94"}]},"a7bcd06f-72":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/parseurl/index.js","moduleParts":{"server.js":"a7bcd06f-73"},"imported":[{"uid":"a7bcd06f-255"}],"importedBy":[{"uid":"a7bcd06f-94"}]},"a7bcd06f-74":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/koa/lib/search-params.js","moduleParts":{"server.js":"a7bcd06f-75"},"imported":[{"uid":"a7bcd06f-255"}],"importedBy":[{"uid":"a7bcd06f-94"}]},"a7bcd06f-76":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/type-is/node_modules/content-type/dist/index.js","moduleParts":{"server.js":"a7bcd06f-77"},"imported":[],"importedBy":[{"uid":"a7bcd06f-88"}]},"a7bcd06f-78":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/mime-db/db.json","moduleParts":{"server.js":"a7bcd06f-79"},"imported":[],"importedBy":[{"uid":"a7bcd06f-80"}]},"a7bcd06f-80":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/mime-db/index.js","moduleParts":{"server.js":"a7bcd06f-81"},"imported":[{"uid":"a7bcd06f-78"}],"importedBy":[{"uid":"a7bcd06f-84"}]},"a7bcd06f-82":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/mime-types/mimeScore.js","moduleParts":{"server.js":"a7bcd06f-83"},"imported":[],"importedBy":[{"uid":"a7bcd06f-84"}]},"a7bcd06f-84":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/mime-types/index.js","moduleParts":{"server.js":"a7bcd06f-85"},"imported":[{"uid":"a7bcd06f-80"},{"uid":"a7bcd06f-261"},{"uid":"a7bcd06f-82"}],"importedBy":[{"uid":"a7bcd06f-108"},{"uid":"a7bcd06f-88"}]},"a7bcd06f-86":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/media-typer/index.js","moduleParts":{"server.js":"a7bcd06f-87"},"imported":[],"importedBy":[{"uid":"a7bcd06f-88"}]},"a7bcd06f-88":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/type-is/index.js","moduleParts":{"server.js":"a7bcd06f-89"},"imported":[{"uid":"a7bcd06f-76"},{"uid":"a7bcd06f-84"},{"uid":"a7bcd06f-86"}],"importedBy":[{"uid":"a7bcd06f-94"},{"uid":"a7bcd06f-108"}]},"a7bcd06f-90":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/koa/node_modules/fresh/index.js","moduleParts":{"server.js":"a7bcd06f-91"},"imported":[],"importedBy":[{"uid":"a7bcd06f-94"}]},"a7bcd06f-92":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/koa/lib/only.js","moduleParts":{"server.js":"a7bcd06f-93"},"imported":[],"importedBy":[{"uid":"a7bcd06f-142"},{"uid":"a7bcd06f-94"},{"uid":"a7bcd06f-108"}]},"a7bcd06f-94":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/koa/lib/request.js","moduleParts":{"server.js":"a7bcd06f-95"},"imported":[{"uid":"a7bcd06f-255"},{"uid":"a7bcd06f-256"},{"uid":"a7bcd06f-68"},{"uid":"a7bcd06f-70"},{"uid":"a7bcd06f-72"},{"uid":"a7bcd06f-74"},{"uid":"a7bcd06f-88"},{"uid":"a7bcd06f-90"},{"uid":"a7bcd06f-92"},{"uid":"a7bcd06f-257"}],"importedBy":[{"uid":"a7bcd06f-142"}]},"a7bcd06f-96":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/koa/node_modules/content-disposition/index.js","moduleParts":{"server.js":"a7bcd06f-97"},"imported":[{"uid":"a7bcd06f-261"}],"importedBy":[{"uid":"a7bcd06f-108"}]},"a7bcd06f-98":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/escape-html/index.js","moduleParts":{"server.js":"a7bcd06f-99"},"imported":[],"importedBy":[{"uid":"a7bcd06f-108"}]},"a7bcd06f-100":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/destroy/index.js","moduleParts":{"server.js":"a7bcd06f-101"},"imported":[{"uid":"a7bcd06f-262"},{"uid":"a7bcd06f-263"},{"uid":"a7bcd06f-260"},{"uid":"a7bcd06f-264"}],"importedBy":[{"uid":"a7bcd06f-108"}]},"a7bcd06f-102":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/encodeurl/index.js","moduleParts":{"server.js":"a7bcd06f-103"},"imported":[],"importedBy":[{"uid":"a7bcd06f-108"}]},"a7bcd06f-104":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/vary/index.js","moduleParts":{"server.js":"a7bcd06f-105"},"imported":[],"importedBy":[{"uid":"a7bcd06f-108"}]},"a7bcd06f-106":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/koa/lib/is-stream.js","moduleParts":{"server.js":"a7bcd06f-107"},"imported":[{"uid":"a7bcd06f-260"}],"importedBy":[{"uid":"a7bcd06f-142"},{"uid":"a7bcd06f-108"}]},"a7bcd06f-108":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/koa/lib/response.js","moduleParts":{"server.js":"a7bcd06f-109"},"imported":[{"uid":"a7bcd06f-258"},{"uid":"a7bcd06f-259"},{"uid":"a7bcd06f-246"},{"uid":"a7bcd06f-96"},{"uid":"a7bcd06f-32"},{"uid":"a7bcd06f-98"},{"uid":"a7bcd06f-88"},{"uid":"a7bcd06f-38"},{"uid":"a7bcd06f-100"},{"uid":"a7bcd06f-102"},{"uid":"a7bcd06f-104"},{"uid":"a7bcd06f-84"},{"uid":"a7bcd06f-106"},{"uid":"a7bcd06f-92"}],"importedBy":[{"uid":"a7bcd06f-142"}]},"a7bcd06f-110":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/http-assert/node_modules/depd/lib/compat/callsite-tostring.js","moduleParts":{"server.js":"a7bcd06f-111"},"imported":[],"importedBy":[{"uid":"a7bcd06f-114"}]},"a7bcd06f-112":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/http-assert/node_modules/depd/lib/compat/event-listener-count.js","moduleParts":{"server.js":"a7bcd06f-113"},"imported":[],"importedBy":[{"uid":"a7bcd06f-114"}]},"a7bcd06f-114":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/http-assert/node_modules/depd/lib/compat/index.js","moduleParts":{"server.js":"a7bcd06f-115"},"imported":[{"uid":"a7bcd06f-262"},{"uid":"a7bcd06f-110"},{"uid":"a7bcd06f-112"}],"importedBy":[{"uid":"a7bcd06f-116"}]},"a7bcd06f-116":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/http-assert/node_modules/depd/index.js","moduleParts":{"server.js":"a7bcd06f-117"},"imported":[{"uid":"a7bcd06f-114"},{"uid":"a7bcd06f-261"}],"importedBy":[{"uid":"a7bcd06f-122"}]},"a7bcd06f-118":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/http-assert/node_modules/statuses/codes.json","moduleParts":{"server.js":"a7bcd06f-119"},"imported":[],"importedBy":[{"uid":"a7bcd06f-120"}]},"a7bcd06f-120":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/http-assert/node_modules/statuses/index.js","moduleParts":{"server.js":"a7bcd06f-121"},"imported":[{"uid":"a7bcd06f-118"}],"importedBy":[{"uid":"a7bcd06f-122"}]},"a7bcd06f-122":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/http-assert/node_modules/http-errors/index.js","moduleParts":{"server.js":"a7bcd06f-123"},"imported":[{"uid":"a7bcd06f-116"},{"uid":"a7bcd06f-42"},{"uid":"a7bcd06f-120"},{"uid":"a7bcd06f-46"},{"uid":"a7bcd06f-48"}],"importedBy":[{"uid":"a7bcd06f-130"}]},"a7bcd06f-124":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/deep-equal/lib/keys.js","moduleParts":{"server.js":"a7bcd06f-125"},"imported":[],"importedBy":[{"uid":"a7bcd06f-128"}]},"a7bcd06f-126":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/deep-equal/lib/is_arguments.js","moduleParts":{"server.js":"a7bcd06f-127"},"imported":[],"importedBy":[{"uid":"a7bcd06f-128"}]},"a7bcd06f-128":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/deep-equal/index.js","moduleParts":{"server.js":"a7bcd06f-129"},"imported":[{"uid":"a7bcd06f-124"},{"uid":"a7bcd06f-126"}],"importedBy":[{"uid":"a7bcd06f-130"}]},"a7bcd06f-130":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/http-assert/index.js","moduleParts":{"server.js":"a7bcd06f-131"},"imported":[{"uid":"a7bcd06f-122"},{"uid":"a7bcd06f-128"}],"importedBy":[{"uid":"a7bcd06f-140"}]},"a7bcd06f-132":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/delegates/index.js","moduleParts":{"server.js":"a7bcd06f-133"},"imported":[],"importedBy":[{"uid":"a7bcd06f-140"}]},"a7bcd06f-134":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/tsscmp/lib/index.js","moduleParts":{"server.js":"a7bcd06f-135"},"imported":[{"uid":"a7bcd06f-266"}],"importedBy":[{"uid":"a7bcd06f-136"}]},"a7bcd06f-136":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/keygrip/index.js","moduleParts":{"server.js":"a7bcd06f-137"},"imported":[{"uid":"a7bcd06f-134"},{"uid":"a7bcd06f-266"}],"importedBy":[{"uid":"a7bcd06f-138"}]},"a7bcd06f-138":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/cookies/index.js","moduleParts":{"server.js":"a7bcd06f-139"},"imported":[{"uid":"a7bcd06f-40"},{"uid":"a7bcd06f-136"},{"uid":"a7bcd06f-265"}],"importedBy":[{"uid":"a7bcd06f-140"}]},"a7bcd06f-140":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/koa/lib/context.js","moduleParts":{"server.js":"a7bcd06f-141"},"imported":[{"uid":"a7bcd06f-257"},{"uid":"a7bcd06f-50"},{"uid":"a7bcd06f-130"},{"uid":"a7bcd06f-132"},{"uid":"a7bcd06f-38"},{"uid":"a7bcd06f-138"}],"importedBy":[{"uid":"a7bcd06f-142"}]},"a7bcd06f-142":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/koa/lib/application.js","moduleParts":{"server.js":"a7bcd06f-143"},"imported":[{"uid":"a7bcd06f-246"},{"uid":"a7bcd06f-247"},{"uid":"a7bcd06f-248"},{"uid":"a7bcd06f-249"},{"uid":"a7bcd06f-250"},{"uid":"a7bcd06f-251"},{"uid":"a7bcd06f-32"},{"uid":"a7bcd06f-34"},{"uid":"a7bcd06f-38"},{"uid":"a7bcd06f-50"},{"uid":"a7bcd06f-94"},{"uid":"a7bcd06f-108"},{"uid":"a7bcd06f-140"},{"uid":"a7bcd06f-106"},{"uid":"a7bcd06f-92"}],"importedBy":[{"uid":"a7bcd06f-144"}]},"a7bcd06f-144":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/koa/dist/koa.mjs","moduleParts":{"server.js":"a7bcd06f-145"},"imported":[{"uid":"a7bcd06f-142"}],"importedBy":[{"uid":"a7bcd06f-224"}]},"a7bcd06f-146":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/emittery/maps.js","moduleParts":{"server.js":"a7bcd06f-147"},"imported":[],"importedBy":[{"uid":"a7bcd06f-148"}]},"a7bcd06f-148":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/emittery/index.js","moduleParts":{"server.js":"a7bcd06f-149"},"imported":[{"uid":"a7bcd06f-146"}],"importedBy":[{"uid":"a7bcd06f-224"}]},"a7bcd06f-150":{"id":"/src/types.ts","moduleParts":{"server.js":"a7bcd06f-151"},"imported":[],"importedBy":[{"uid":"a7bcd06f-226"},{"uid":"a7bcd06f-224"},{"uid":"a7bcd06f-218"},{"uid":"a7bcd06f-222"}]},"a7bcd06f-152":{"id":"/src/yjs.ts","moduleParts":{"server.js":"a7bcd06f-153"},"imported":[{"uid":"a7bcd06f-237"}],"importedBy":[{"uid":"a7bcd06f-218"},{"uid":"a7bcd06f-222"},{"uid":"a7bcd06f-220"}]},"a7bcd06f-154":{"id":"/src/server/event-handler/utils.ts","moduleParts":{"server.js":"a7bcd06f-155"},"imported":[],"importedBy":[{"uid":"a7bcd06f-172"}]},"a7bcd06f-156":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/@typespec/ts-http-runtime/dist/esm/logger/log.js","moduleParts":{"server.js":"a7bcd06f-157"},"imported":[{"uid":"a7bcd06f-267"},{"uid":"a7bcd06f-246"},{"uid":"a7bcd06f-268"}],"importedBy":[{"uid":"a7bcd06f-158"}]},"a7bcd06f-158":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/@typespec/ts-http-runtime/dist/esm/logger/debug.js","moduleParts":{"server.js":"a7bcd06f-159"},"imported":[{"uid":"a7bcd06f-156"}],"importedBy":[{"uid":"a7bcd06f-160"}]},"a7bcd06f-160":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/@typespec/ts-http-runtime/dist/esm/logger/logger.js","moduleParts":{"server.js":"a7bcd06f-161"},"imported":[{"uid":"a7bcd06f-158"}],"importedBy":[{"uid":"a7bcd06f-162"}]},"a7bcd06f-162":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/@typespec/ts-http-runtime/dist/esm/logger/internal.js","moduleParts":{"server.js":"a7bcd06f-163"},"imported":[{"uid":"a7bcd06f-160"}],"importedBy":[{"uid":"a7bcd06f-164"}]},"a7bcd06f-164":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/@azure/logger/dist/esm/index.js","moduleParts":{"server.js":"a7bcd06f-165"},"imported":[{"uid":"a7bcd06f-162"}],"importedBy":[{"uid":"a7bcd06f-166"}]},"a7bcd06f-166":{"id":"/src/server/event-handler/logger.ts","moduleParts":{"server.js":"a7bcd06f-167"},"imported":[{"uid":"a7bcd06f-164"}],"importedBy":[{"uid":"a7bcd06f-172"}]},"a7bcd06f-168":{"id":"/src/server/event-handler/enum/mqtt-error-codes/mqtt-v311-connect-return-code.ts","moduleParts":{"server.js":"a7bcd06f-169"},"imported":[],"importedBy":[{"uid":"a7bcd06f-178"},{"uid":"a7bcd06f-172"}]},"a7bcd06f-170":{"id":"/src/server/event-handler/enum/mqtt-error-codes/mqtt-v500-connect-reason-code.ts","moduleParts":{"server.js":"a7bcd06f-171"},"imported":[],"importedBy":[{"uid":"a7bcd06f-178"},{"uid":"a7bcd06f-172"}]},"a7bcd06f-172":{"id":"/src/server/event-handler/cloud-events-dispatcher.ts","moduleParts":{"server.js":"a7bcd06f-173"},"imported":[{"uid":"a7bcd06f-154"},{"uid":"a7bcd06f-253"},{"uid":"a7bcd06f-166"},{"uid":"a7bcd06f-168"},{"uid":"a7bcd06f-170"}],"importedBy":[{"uid":"a7bcd06f-174"}]},"a7bcd06f-174":{"id":"/src/server/event-handler/web-pubsub-event-handler.ts","moduleParts":{"server.js":"a7bcd06f-175"},"imported":[{"uid":"a7bcd06f-172"}],"importedBy":[{"uid":"a7bcd06f-178"}]},"a7bcd06f-176":{"id":"/src/server/event-handler/enum/mqtt-error-codes/mqtt-disconnect-reason-code.ts","moduleParts":{"server.js":"a7bcd06f-177"},"imported":[],"importedBy":[{"uid":"a7bcd06f-178"}]},"a7bcd06f-178":{"id":"/src/server/event-handler/index.ts","moduleParts":{"server.js":"a7bcd06f-179"},"imported":[{"uid":"a7bcd06f-174"},{"uid":"a7bcd06f-245"},{"uid":"a7bcd06f-168"},{"uid":"a7bcd06f-170"},{"uid":"a7bcd06f-176"}],"importedBy":[{"uid":"a7bcd06f-226"},{"uid":"a7bcd06f-222"}]},"a7bcd06f-180":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/lib0/binary.js","moduleParts":{"server.js":"a7bcd06f-181"},"imported":[],"importedBy":[{"uid":"a7bcd06f-196"},{"uid":"a7bcd06f-194"},{"uid":"a7bcd06f-184"}]},"a7bcd06f-182":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/lib0/math.js","moduleParts":{"server.js":"a7bcd06f-183"},"imported":[],"importedBy":[{"uid":"a7bcd06f-196"},{"uid":"a7bcd06f-194"},{"uid":"a7bcd06f-212"},{"uid":"a7bcd06f-184"},{"uid":"a7bcd06f-200"},{"uid":"a7bcd06f-252"}]},"a7bcd06f-184":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/lib0/number.js","moduleParts":{"server.js":"a7bcd06f-185"},"imported":[{"uid":"a7bcd06f-182"},{"uid":"a7bcd06f-180"}],"importedBy":[{"uid":"a7bcd06f-196"},{"uid":"a7bcd06f-194"}]},"a7bcd06f-186":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/lib0/set.js","moduleParts":{"server.js":"a7bcd06f-187"},"imported":[],"importedBy":[{"uid":"a7bcd06f-188"},{"uid":"a7bcd06f-204"}]},"a7bcd06f-188":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/lib0/array.js","moduleParts":{"server.js":"a7bcd06f-189"},"imported":[{"uid":"a7bcd06f-186"}],"importedBy":[{"uid":"a7bcd06f-194"},{"uid":"a7bcd06f-190"},{"uid":"a7bcd06f-204"},{"uid":"a7bcd06f-210"}]},"a7bcd06f-190":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/lib0/string.js","moduleParts":{"server.js":"a7bcd06f-191"},"imported":[{"uid":"a7bcd06f-188"}],"importedBy":[{"uid":"a7bcd06f-196"},{"uid":"a7bcd06f-194"}]},"a7bcd06f-192":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/lib0/error.js","moduleParts":{"server.js":"a7bcd06f-193"},"imported":[],"importedBy":[{"uid":"a7bcd06f-196"}]},"a7bcd06f-194":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/lib0/encoding.js","moduleParts":{"server.js":"a7bcd06f-195"},"imported":[{"uid":"a7bcd06f-182"},{"uid":"a7bcd06f-184"},{"uid":"a7bcd06f-180"},{"uid":"a7bcd06f-190"},{"uid":"a7bcd06f-188"}],"importedBy":[{"uid":"a7bcd06f-218"},{"uid":"a7bcd06f-196"},{"uid":"a7bcd06f-198"},{"uid":"a7bcd06f-212"}]},"a7bcd06f-196":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/lib0/decoding.js","moduleParts":{"server.js":"a7bcd06f-197"},"imported":[{"uid":"a7bcd06f-180"},{"uid":"a7bcd06f-182"},{"uid":"a7bcd06f-184"},{"uid":"a7bcd06f-190"},{"uid":"a7bcd06f-192"},{"uid":"a7bcd06f-194"}],"importedBy":[{"uid":"a7bcd06f-218"},{"uid":"a7bcd06f-198"},{"uid":"a7bcd06f-212"}]},"a7bcd06f-198":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/y-protocols/sync.js","moduleParts":{"server.js":"a7bcd06f-199"},"imported":[{"uid":"a7bcd06f-194"},{"uid":"a7bcd06f-196"},{"uid":"a7bcd06f-237"}],"importedBy":[{"uid":"a7bcd06f-218"}]},"a7bcd06f-200":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/lib0/time.js","moduleParts":{"server.js":"a7bcd06f-201"},"imported":[{"uid":"a7bcd06f-252"},{"uid":"a7bcd06f-182"}],"importedBy":[{"uid":"a7bcd06f-212"}]},"a7bcd06f-202":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/lib0/map.js","moduleParts":{"server.js":"a7bcd06f-203"},"imported":[],"importedBy":[{"uid":"a7bcd06f-204"}]},"a7bcd06f-204":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/lib0/observable.js","moduleParts":{"server.js":"a7bcd06f-205"},"imported":[{"uid":"a7bcd06f-202"},{"uid":"a7bcd06f-186"},{"uid":"a7bcd06f-188"}],"importedBy":[{"uid":"a7bcd06f-212"}]},"a7bcd06f-206":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/lib0/trait/equality.js","moduleParts":{"server.js":"a7bcd06f-207"},"imported":[],"importedBy":[{"uid":"a7bcd06f-210"},{"uid":"a7bcd06f-208"}]},"a7bcd06f-208":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/lib0/object.js","moduleParts":{"server.js":"a7bcd06f-209"},"imported":[{"uid":"a7bcd06f-206"}],"importedBy":[{"uid":"a7bcd06f-210"}]},"a7bcd06f-210":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/lib0/function.js","moduleParts":{"server.js":"a7bcd06f-211"},"imported":[{"uid":"a7bcd06f-188"},{"uid":"a7bcd06f-208"},{"uid":"a7bcd06f-206"}],"importedBy":[{"uid":"a7bcd06f-212"}]},"a7bcd06f-212":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/y-protocols/awareness.js","moduleParts":{"server.js":"a7bcd06f-213"},"imported":[{"uid":"a7bcd06f-194"},{"uid":"a7bcd06f-196"},{"uid":"a7bcd06f-200"},{"uid":"a7bcd06f-182"},{"uid":"a7bcd06f-204"},{"uid":"a7bcd06f-210"},{"uid":"a7bcd06f-237"}],"importedBy":[{"uid":"a7bcd06f-218"}]},"a7bcd06f-214":{"id":"/src/utils.ts","moduleParts":{"server.js":"a7bcd06f-215"},"imported":[],"importedBy":[{"uid":"a7bcd06f-218"}]},"a7bcd06f-216":{"id":"/src/constants.ts","moduleParts":{"server.js":"a7bcd06f-217"},"imported":[],"importedBy":[{"uid":"a7bcd06f-226"},{"uid":"a7bcd06f-218"},{"uid":"a7bcd06f-222"}]},"a7bcd06f-218":{"id":"/src/server/azure-web-pubsub-host.ts","moduleParts":{"server.js":"a7bcd06f-219"},"imported":[{"uid":"a7bcd06f-244"},{"uid":"a7bcd06f-196"},{"uid":"a7bcd06f-194"},{"uid":"a7bcd06f-198"},{"uid":"a7bcd06f-212"},{"uid":"a7bcd06f-234"},{"uid":"a7bcd06f-235"},{"uid":"a7bcd06f-152"},{"uid":"a7bcd06f-150"},{"uid":"a7bcd06f-214"},{"uid":"a7bcd06f-242"},{"uid":"a7bcd06f-216"}],"importedBy":[{"uid":"a7bcd06f-226"},{"uid":"a7bcd06f-222"}]},"a7bcd06f-220":{"id":"/src/server/utils.ts","moduleParts":{"server.js":"a7bcd06f-221"},"imported":[{"uid":"a7bcd06f-152"},{"uid":"a7bcd06f-244"}],"importedBy":[{"uid":"a7bcd06f-222"}]},"a7bcd06f-222":{"id":"/src/server/azure-web-pubsub-sync-handler.ts","moduleParts":{"server.js":"a7bcd06f-223"},"imported":[{"uid":"a7bcd06f-152"},{"uid":"a7bcd06f-234"},{"uid":"a7bcd06f-178"},{"uid":"a7bcd06f-150"},{"uid":"a7bcd06f-218"},{"uid":"a7bcd06f-224"},{"uid":"a7bcd06f-220"},{"uid":"a7bcd06f-216"}],"importedBy":[{"uid":"a7bcd06f-224"}]},"a7bcd06f-224":{"id":"/src/server/azure-web-pubsub-server.ts","moduleParts":{"server.js":"a7bcd06f-225"},"imported":[{"uid":"a7bcd06f-234"},{"uid":"a7bcd06f-236"},{"uid":"a7bcd06f-144"},{"uid":"a7bcd06f-148"},{"uid":"a7bcd06f-150"},{"uid":"a7bcd06f-222"},{"uid":"a7bcd06f-243"}],"importedBy":[{"uid":"a7bcd06f-226"},{"uid":"a7bcd06f-222"}]},"a7bcd06f-226":{"id":"/src/index.server.ts","moduleParts":{"server.js":"a7bcd06f-227"},"imported":[{"uid":"a7bcd06f-224"},{"uid":"a7bcd06f-218"},{"uid":"a7bcd06f-178"},{"uid":"a7bcd06f-216"},{"uid":"a7bcd06f-150"}],"importedBy":[],"isEntry":true},"a7bcd06f-228":{"id":"/src/server/event-handler/index.d.ts","moduleParts":{},"imported":[{"uid":"a7bcd06f-18"},{"uid":"a7bcd06f-16"},{"uid":"a7bcd06f-12"},{"uid":"a7bcd06f-14"},{"uid":"a7bcd06f-10"}],"importedBy":[{"uid":"a7bcd06f-26"},{"uid":"a7bcd06f-24"},{"uid":"a7bcd06f-22"}]},"a7bcd06f-229":{"id":"koa","moduleParts":{},"imported":[],"importedBy":[{"uid":"a7bcd06f-24"},{"uid":"a7bcd06f-18"}]},"a7bcd06f-230":{"id":"emittery","moduleParts":{},"imported":[],"importedBy":[{"uid":"a7bcd06f-24"},{"uid":"a7bcd06f-4"}]},"a7bcd06f-231":{"id":"express","moduleParts":{},"imported":[],"importedBy":[{"uid":"a7bcd06f-24"}]},"a7bcd06f-232":{"id":"@inditextech/weave-types","moduleParts":{},"imported":[],"importedBy":[{"uid":"a7bcd06f-24"},{"uid":"a7bcd06f-20"},{"uid":"a7bcd06f-6"},{"uid":"a7bcd06f-22"},{"uid":"a7bcd06f-4"},{"uid":"a7bcd06f-2"}]},"a7bcd06f-233":{"id":"y-protocols/awareness","moduleParts":{},"imported":[],"importedBy":[{"uid":"a7bcd06f-20"},{"uid":"a7bcd06f-4"}]},"a7bcd06f-234":{"id":"@azure/web-pubsub","moduleParts":{},"imported":[],"importedBy":[{"uid":"a7bcd06f-20"},{"uid":"a7bcd06f-22"},{"uid":"a7bcd06f-224"},{"uid":"a7bcd06f-218"},{"uid":"a7bcd06f-222"}]},"a7bcd06f-235":{"id":"ws","moduleParts":{},"imported":[],"importedBy":[{"uid":"a7bcd06f-6"},{"uid":"a7bcd06f-218"}]},"a7bcd06f-236":{"id":"@azure/identity","moduleParts":{},"imported":[],"importedBy":[{"uid":"a7bcd06f-6"},{"uid":"a7bcd06f-224"}]},"a7bcd06f-237":{"id":"yjs","moduleParts":{},"imported":[],"importedBy":[{"uid":"a7bcd06f-6"},{"uid":"a7bcd06f-8"},{"uid":"a7bcd06f-4"},{"uid":"a7bcd06f-198"},{"uid":"a7bcd06f-212"},{"uid":"a7bcd06f-152"}]},"a7bcd06f-238":{"id":"lib0/encoding","moduleParts":{},"imported":[],"importedBy":[{"uid":"a7bcd06f-6"}]},"a7bcd06f-239":{"id":"lib0/decoding","moduleParts":{},"imported":[],"importedBy":[{"uid":"a7bcd06f-6"}]},"a7bcd06f-240":{"id":"express-serve-static-core","moduleParts":{},"imported":[],"importedBy":[{"uid":"a7bcd06f-18"}]},"a7bcd06f-241":{"id":"reconnecting-websocket","moduleParts":{},"imported":[],"importedBy":[{"uid":"a7bcd06f-4"}]},"a7bcd06f-242":{"id":"@inditextech/weave-sdk","moduleParts":{},"imported":[],"importedBy":[{"uid":"a7bcd06f-2"},{"uid":"a7bcd06f-218"}]},"a7bcd06f-243":{"id":"@inditextech/weave-sdk/server","moduleParts":{},"imported":[],"importedBy":[{"uid":"a7bcd06f-224"}]},"a7bcd06f-244":{"id":"node:crypto","moduleParts":{},"imported":[],"importedBy":[{"uid":"a7bcd06f-218"},{"uid":"a7bcd06f-220"}]},"a7bcd06f-245":{"id":"/src/server/event-handler/cloud-events-protocols.ts","moduleParts":{},"imported":[],"importedBy":[{"uid":"a7bcd06f-178"}]},"a7bcd06f-246":{"id":"node:util","moduleParts":{},"imported":[],"importedBy":[{"uid":"a7bcd06f-142"},{"uid":"a7bcd06f-108"},{"uid":"a7bcd06f-156"}]},"a7bcd06f-247":{"id":"node:v8","moduleParts":{},"imported":[],"importedBy":[{"uid":"a7bcd06f-142"}]},"a7bcd06f-248":{"id":"node:events","moduleParts":{},"imported":[],"importedBy":[{"uid":"a7bcd06f-142"}]},"a7bcd06f-249":{"id":"node:stream","moduleParts":{},"imported":[],"importedBy":[{"uid":"a7bcd06f-142"}]},"a7bcd06f-250":{"id":"node:http","moduleParts":{},"imported":[],"importedBy":[{"uid":"a7bcd06f-142"}]},"a7bcd06f-251":{"id":"node:async_hooks","moduleParts":{},"imported":[],"importedBy":[{"uid":"a7bcd06f-142"}]},"a7bcd06f-252":{"id":"/home/runner/work/weavejs/weavejs/code/node_modules/lib0/metric.js","moduleParts":{},"imported":[{"uid":"a7bcd06f-182"}],"importedBy":[{"uid":"a7bcd06f-200"}]},"a7bcd06f-253":{"id":"node:url","moduleParts":{},"imported":[],"importedBy":[{"uid":"a7bcd06f-172"}]},"a7bcd06f-254":{"id":"async_hooks","moduleParts":{},"imported":[],"importedBy":[{"uid":"a7bcd06f-32"}]},"a7bcd06f-255":{"id":"url","moduleParts":{},"imported":[],"importedBy":[{"uid":"a7bcd06f-94"},{"uid":"a7bcd06f-72"},{"uid":"a7bcd06f-74"}]},"a7bcd06f-256":{"id":"net","moduleParts":{},"imported":[],"importedBy":[{"uid":"a7bcd06f-94"}]},"a7bcd06f-257":{"id":"util","moduleParts":{},"imported":[],"importedBy":[{"uid":"a7bcd06f-94"},{"uid":"a7bcd06f-140"},{"uid":"a7bcd06f-46"}]},"a7bcd06f-258":{"id":"node:assert","moduleParts":{},"imported":[],"importedBy":[{"uid":"a7bcd06f-108"}]},"a7bcd06f-259":{"id":"node:path","moduleParts":{},"imported":[],"importedBy":[{"uid":"a7bcd06f-108"}]},"a7bcd06f-260":{"id":"stream","moduleParts":{},"imported":[],"importedBy":[{"uid":"a7bcd06f-106"},{"uid":"a7bcd06f-100"}]},"a7bcd06f-261":{"id":"path","moduleParts":{},"imported":[],"importedBy":[{"uid":"a7bcd06f-40"},{"uid":"a7bcd06f-96"},{"uid":"a7bcd06f-84"},{"uid":"a7bcd06f-66"},{"uid":"a7bcd06f-116"}]},"a7bcd06f-262":{"id":"events","moduleParts":{},"imported":[],"importedBy":[{"uid":"a7bcd06f-100"},{"uid":"a7bcd06f-114"}]},"a7bcd06f-263":{"id":"fs","moduleParts":{},"imported":[],"importedBy":[{"uid":"a7bcd06f-100"}]},"a7bcd06f-264":{"id":"zlib","moduleParts":{},"imported":[],"importedBy":[{"uid":"a7bcd06f-100"}]},"a7bcd06f-265":{"id":"http","moduleParts":{},"imported":[],"importedBy":[{"uid":"a7bcd06f-138"}]},"a7bcd06f-266":{"id":"crypto","moduleParts":{},"imported":[],"importedBy":[{"uid":"a7bcd06f-136"},{"uid":"a7bcd06f-134"}]},"a7bcd06f-267":{"id":"node:os","moduleParts":{},"imported":[],"importedBy":[{"uid":"a7bcd06f-156"}]},"a7bcd06f-268":{"id":"node:process","moduleParts":{},"imported":[],"importedBy":[{"uid":"a7bcd06f-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": "4.0.0",
3
+ "version": "4.0.1",
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": "4.0.0",
60
- "@inditextech/weave-types": "4.0.0",
59
+ "@inditextech/weave-sdk": "4.0.1",
60
+ "@inditextech/weave-types": "4.0.1",
61
61
  "@syncedstore/core": "0.6.0",
62
62
  "buffer": "6.0.3",
63
63
  "reconnecting-websocket": "4.4.0",