@dxos/protocols 2.33.8-dev.8609bc45 → 2.33.9-dev.e605934d

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (86) hide show
  1. package/dist/src/index.d.ts +1 -0
  2. package/dist/src/index.d.ts.map +1 -1
  3. package/dist/src/index.js +1 -0
  4. package/dist/src/index.js.map +1 -1
  5. package/dist/src/proto/gen/dxos/bot.d.ts.map +1 -1
  6. package/dist/src/proto/gen/dxos/bot.js.map +1 -1
  7. package/dist/src/proto/gen/dxos/client.d.ts.map +1 -1
  8. package/dist/src/proto/gen/dxos/client.js.map +1 -1
  9. package/dist/src/proto/gen/dxos/config.d.ts.map +1 -1
  10. package/dist/src/proto/gen/dxos/config.js.map +1 -1
  11. package/dist/src/proto/gen/dxos/credentials/auth.d.ts.map +1 -1
  12. package/dist/src/proto/gen/dxos/credentials/greet.d.ts +1 -1
  13. package/dist/src/proto/gen/dxos/credentials/greet.d.ts.map +1 -1
  14. package/dist/src/proto/gen/dxos/credentials/greet.js.map +1 -1
  15. package/dist/src/proto/gen/dxos/credentials/identity.d.ts.map +1 -1
  16. package/dist/src/proto/gen/dxos/credentials/party.d.ts.map +1 -1
  17. package/dist/src/proto/gen/dxos/credentials/party.js.map +1 -1
  18. package/dist/src/proto/gen/dxos/credentials.d.ts.map +1 -1
  19. package/dist/src/proto/gen/dxos/devtools.d.ts.map +1 -1
  20. package/dist/src/proto/gen/dxos/echo/feed.d.ts.map +1 -1
  21. package/dist/src/proto/gen/dxos/echo/feed.js.map +1 -1
  22. package/dist/src/proto/gen/dxos/echo/invitation.d.ts.map +1 -1
  23. package/dist/src/proto/gen/dxos/echo/invitation.js.map +1 -1
  24. package/dist/src/proto/gen/dxos/echo/metadata.d.ts +6 -5
  25. package/dist/src/proto/gen/dxos/echo/metadata.d.ts.map +1 -1
  26. package/dist/src/proto/gen/dxos/echo/service.d.ts.map +1 -1
  27. package/dist/src/proto/gen/dxos/echo/snapshot.d.ts.map +1 -1
  28. package/dist/src/proto/gen/dxos/echo/timeframe.d.ts.map +1 -1
  29. package/dist/src/proto/gen/dxos/halo/keys.d.ts.map +1 -1
  30. package/dist/src/proto/gen/dxos/halo/keys.js.map +1 -1
  31. package/dist/src/proto/gen/dxos/rpc.d.ts.map +1 -1
  32. package/dist/src/proto/gen/dxos/rpc.js.map +1 -1
  33. package/dist/src/proto/gen/dxos/test/echo.d.ts +11 -0
  34. package/dist/src/proto/gen/dxos/test/echo.d.ts.map +1 -0
  35. package/dist/src/proto/gen/dxos/test/echo.js +3 -0
  36. package/dist/src/proto/gen/dxos/test/echo.js.map +1 -0
  37. package/dist/src/proto/gen/google/protobuf.d.ts.map +1 -1
  38. package/dist/src/proto/gen/google/protobuf.js.map +1 -1
  39. package/dist/src/proto/gen/index.d.ts +4 -0
  40. package/dist/src/proto/gen/index.d.ts.map +1 -1
  41. package/dist/src/proto/gen/index.js +1 -1
  42. package/dist/src/proto/gen/index.js.map +1 -1
  43. package/dist/src/public-key.d.ts +19 -0
  44. package/dist/src/public-key.d.ts.map +1 -1
  45. package/dist/src/public-key.js +35 -1
  46. package/dist/src/public-key.js.map +1 -1
  47. package/dist/src/public-key.test.js +7 -0
  48. package/dist/src/public-key.test.js.map +1 -1
  49. package/dist/src/timeframe.d.ts +57 -0
  50. package/dist/src/timeframe.d.ts.map +1 -0
  51. package/dist/src/timeframe.js +127 -0
  52. package/dist/src/timeframe.js.map +1 -0
  53. package/dist/src/timeframe.test.d.ts +2 -0
  54. package/dist/src/timeframe.test.d.ts.map +1 -0
  55. package/dist/src/timeframe.test.js +113 -0
  56. package/dist/src/timeframe.test.js.map +1 -0
  57. package/dist/tsconfig.tsbuildinfo +1 -1
  58. package/package.json +5 -3
  59. package/src/index.ts +1 -0
  60. package/src/proto/dxos/echo/metadata.proto +10 -7
  61. package/src/proto/dxos/halo/greet.proto +1 -2
  62. package/src/proto/dxos/test/echo.proto +20 -0
  63. package/src/proto/gen/dxos/bot.ts +1 -0
  64. package/src/proto/gen/dxos/client.ts +1 -0
  65. package/src/proto/gen/dxos/config.ts +1 -0
  66. package/src/proto/gen/dxos/credentials/auth.ts +1 -0
  67. package/src/proto/gen/dxos/credentials/greet.ts +2 -1
  68. package/src/proto/gen/dxos/credentials/identity.ts +1 -0
  69. package/src/proto/gen/dxos/credentials/party.ts +1 -0
  70. package/src/proto/gen/dxos/credentials.ts +1 -0
  71. package/src/proto/gen/dxos/devtools.ts +1 -0
  72. package/src/proto/gen/dxos/echo/feed.ts +1 -0
  73. package/src/proto/gen/dxos/echo/invitation.ts +1 -0
  74. package/src/proto/gen/dxos/echo/metadata.ts +7 -5
  75. package/src/proto/gen/dxos/echo/service.ts +1 -0
  76. package/src/proto/gen/dxos/echo/snapshot.ts +1 -0
  77. package/src/proto/gen/dxos/echo/timeframe.ts +1 -0
  78. package/src/proto/gen/dxos/halo/keys.ts +1 -0
  79. package/src/proto/gen/dxos/rpc.ts +1 -0
  80. package/src/proto/gen/dxos/test/echo.ts +29 -0
  81. package/src/proto/gen/google/protobuf.ts +1 -0
  82. package/src/proto/gen/index.ts +5 -1
  83. package/src/public-key.test.ts +10 -0
  84. package/src/public-key.ts +38 -0
  85. package/src/timeframe.test.ts +125 -0
  86. package/src/timeframe.ts +144 -0
@@ -1 +1 @@
1
- {"version":3,"file":"public-key.js","sourceRoot":"","sources":["../../src/public-key.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"public-key.js","sourceRoot":"","sources":["../../src/public-key.ts"],"names":[],"mappings":"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"}
@@ -5,6 +5,13 @@
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
6
  const public_key_1 = require("./public-key");
7
7
  const KEY_HEX = '2c28f0d08ccc5340aee02655675be5796227a28d27b9704df34b7d8b2d9fddc7';
8
+ it('Basic key operations', () => {
9
+ const publicKey = public_key_1.PublicKey.random().asBuffer();
10
+ expect(public_key_1.PublicKey.bufferize(public_key_1.PublicKey.stringify(publicKey))).toEqual(publicKey);
11
+ expect(() => public_key_1.PublicKey.stringify('not-a-buffer')).toThrowError();
12
+ expect(() => public_key_1.PublicKey.bufferize('not-a-value-hex-key')).toThrowError();
13
+ expect(() => public_key_1.PublicKey.bufferize(publicKey)).toThrowError();
14
+ });
8
15
  it('formatting', () => {
9
16
  const key = public_key_1.PublicKey.fromHex(KEY_HEX);
10
17
  expect(public_key_1.PublicKey.isPublicKey(key)).toEqual(true);
@@ -1 +1 @@
1
- {"version":3,"file":"public-key.test.js","sourceRoot":"","sources":["../../src/public-key.test.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"public-key.test.js","sourceRoot":"","sources":["../../src/public-key.test.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,57 @@
1
+ /// <reference types="node" />
2
+ import { inspect } from 'util';
3
+ import { PublicKey } from './public-key';
4
+ /**
5
+ * A mapping of feed key to a sequence number on that feed.
6
+ * Describes how many messages have been processed.
7
+ */
8
+ export declare class Timeframe {
9
+ private readonly _keys;
10
+ private readonly _frames;
11
+ constructor(frames?: [PublicKey, number][]);
12
+ get(key: PublicKey): number | undefined;
13
+ set(key: PublicKey, value: number): void;
14
+ frames(): [PublicKey, number][];
15
+ size(): number;
16
+ isEmpty(): boolean;
17
+ /**
18
+ * Returns a new timeframe with specified keys removed.
19
+ * @param keys
20
+ */
21
+ withoutKeys(keys: PublicKey[]): Timeframe;
22
+ /**
23
+ * Returns a total amount of messages represented by this timeframe.
24
+ */
25
+ totalMessages(): number;
26
+ toJSON(): Record<string, number>;
27
+ toString(): string;
28
+ /**
29
+ * Used by NodeJS to get textual representation of this object when it's printed with a `console.log` statement.
30
+ */
31
+ [inspect.custom](): string;
32
+ /**
33
+ * Merges the values, updating the highest sequence numbers.
34
+ * @param timeframes
35
+ */
36
+ static merge(...timeframes: Timeframe[]): Timeframe;
37
+ /**
38
+ * Compares two timeframes and returns an array of frames from the first timeframe where the sequence number
39
+ * is greater than the associated sequence number from the second timeframe.
40
+ *
41
+ * @param tf1
42
+ * @param tf2
43
+ */
44
+ static dependencies(tf1: Timeframe, tf2: Timeframe): Timeframe;
45
+ }
46
+ export declare const timeframeSubstitutions: {
47
+ 'dxos.echo.timeframe.TimeframeVector': {
48
+ encode: (timeframe: Timeframe) => {
49
+ frames: {
50
+ feedKey: Uint8Array;
51
+ seq: number;
52
+ }[];
53
+ };
54
+ decode: (vector: any) => Timeframe;
55
+ };
56
+ };
57
+ //# sourceMappingURL=timeframe.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"timeframe.d.ts","sourceRoot":"","sources":["../../src/timeframe.ts"],"names":[],"mappings":";AAIA,OAAO,EAAE,OAAO,EAAE,MAAM,MAAM,CAAC;AAE/B,OAAO,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAEzC;;;GAGG;AACH,qBAAa,SAAS;IAEpB,OAAO,CAAC,QAAQ,CAAC,KAAK,CAAgC;IACtD,OAAO,CAAC,QAAQ,CAAC,OAAO,CAA6B;gBAExC,MAAM,GAAE,CAAC,SAAS,EAAE,MAAM,CAAC,EAAO;IAM/C,GAAG,CAAE,GAAG,EAAE,SAAS;IAKnB,GAAG,CAAE,GAAG,EAAE,SAAS,EAAE,KAAK,EAAE,MAAM;IAOlC,MAAM,IAAK,CAAC,SAAS,EAAE,MAAM,CAAC,EAAE;IAchC,IAAI;IAKJ,OAAO;IAIP;;;OAGG;IACH,WAAW,CAAE,IAAI,EAAE,SAAS,EAAE,GAAG,SAAS;IAK1C;;OAEG;IACH,aAAa,IAAK,MAAM;IAIxB,MAAM;IAON,QAAQ;IAIR;;OAEG;IACH,CAAC,OAAO,CAAC,MAAM,CAAC;IAIhB;;;OAGG;IACH,MAAM,CAAC,KAAK,CAAE,GAAG,UAAU,EAAE,SAAS,EAAE,GAAG,SAAS;IAcpD;;;;;;OAMG;IACH,MAAM,CAAC,YAAY,CACjB,GAAG,EAAE,SAAS,EAAE,GAAG,EAAE,SAAS,GAC7B,SAAS;CAWb;AAED,eAAO,MAAM,sBAAsB;;4BAEX,SAAS;;;;;;yBAGZ,GAAG;;CAMvB,CAAC"}
@@ -0,0 +1,127 @@
1
+ "use strict";
2
+ //
3
+ // Copyright 2020 DXOS.org
4
+ //
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.timeframeSubstitutions = exports.Timeframe = void 0;
7
+ const util_1 = require("util");
8
+ const public_key_1 = require("./public-key");
9
+ /**
10
+ * A mapping of feed key to a sequence number on that feed.
11
+ * Describes how many messages have been processed.
12
+ */
13
+ class Timeframe {
14
+ constructor(frames = []) {
15
+ // Cannot use ComplexMap because @dxos/util depends on @dxos/protocols for PublicKey.
16
+ this._keys = new Map();
17
+ this._frames = new Map();
18
+ for (const [key, seq] of frames) {
19
+ this.set(key, seq);
20
+ }
21
+ }
22
+ get(key) {
23
+ const keyString = key.toString();
24
+ return this._frames.get(keyString);
25
+ }
26
+ set(key, value) {
27
+ const keyString = key.toString();
28
+ this._frames.set(keyString, value);
29
+ this._keys.set(keyString, key);
30
+ }
31
+ // TODO(burdon): Change to getter.
32
+ frames() {
33
+ return Array.from(this._frames.entries())
34
+ .map(([keyString, value]) => {
35
+ const key = this._keys.get(keyString);
36
+ if (!key) {
37
+ return undefined;
38
+ }
39
+ return [key, value];
40
+ })
41
+ .filter((frame) => !!frame);
42
+ }
43
+ // TODO(burdon): Change to getter.
44
+ size() {
45
+ return this._frames.size;
46
+ }
47
+ // TODO(burdon): Change to getter (empty).
48
+ isEmpty() {
49
+ return this.size() === 0;
50
+ }
51
+ /**
52
+ * Returns a new timeframe with specified keys removed.
53
+ * @param keys
54
+ */
55
+ withoutKeys(keys) {
56
+ return new Timeframe(this.frames().filter(([frameKey]) => keys.every(key => Buffer.compare(key.asBuffer(), frameKey.asBuffer()) !== 0)));
57
+ }
58
+ /**
59
+ * Returns a total amount of messages represented by this timeframe.
60
+ */
61
+ totalMessages() {
62
+ return Array.from(this._frames.values()).reduce((acc, seq) => acc + seq + 1, 0);
63
+ }
64
+ toJSON() {
65
+ return this.frames().reduce((frames, [key, seq]) => {
66
+ frames[key.truncate()] = seq;
67
+ return frames;
68
+ }, {});
69
+ }
70
+ toString() {
71
+ return `(${this.frames().map(([key, seq]) => `${key.truncate()} => ${seq}`).join(', ')})`;
72
+ }
73
+ /**
74
+ * Used by NodeJS to get textual representation of this object when it's printed with a `console.log` statement.
75
+ */
76
+ [util_1.inspect.custom]() {
77
+ return `Timeframe${this.toString()}`;
78
+ }
79
+ /**
80
+ * Merges the values, updating the highest sequence numbers.
81
+ * @param timeframes
82
+ */
83
+ static merge(...timeframes) {
84
+ const result = new Timeframe();
85
+ for (const timeframe of timeframes) {
86
+ for (const [key, seq] of timeframe.frames()) {
87
+ const current = result.get(key);
88
+ if (current === undefined || seq > current) {
89
+ result.set(key, seq);
90
+ }
91
+ }
92
+ }
93
+ return result;
94
+ }
95
+ /**
96
+ * Compares two timeframes and returns an array of frames from the first timeframe where the sequence number
97
+ * is greater than the associated sequence number from the second timeframe.
98
+ *
99
+ * @param tf1
100
+ * @param tf2
101
+ */
102
+ static dependencies(tf1, tf2) {
103
+ const result = new Timeframe();
104
+ for (const [key, seq] of tf1.frames()) {
105
+ const otherSeq = tf2.get(key);
106
+ if (otherSeq === undefined || otherSeq < seq) {
107
+ result.set(key, seq);
108
+ }
109
+ }
110
+ return result;
111
+ }
112
+ }
113
+ exports.Timeframe = Timeframe;
114
+ exports.timeframeSubstitutions = {
115
+ 'dxos.echo.timeframe.TimeframeVector': {
116
+ encode: (timeframe) => ({
117
+ frames: timeframe.frames().map(([feedKey, seq]) => ({ feedKey: feedKey.asUint8Array(), seq }))
118
+ }),
119
+ decode: (vector) => {
120
+ var _a;
121
+ return new Timeframe(((_a = vector.frames) !== null && _a !== void 0 ? _a : [])
122
+ .filter((frame) => frame.feedKey != null && frame.seq != null)
123
+ .map((frame) => [public_key_1.PublicKey.from(new Uint8Array(frame.feedKey)), frame.seq]));
124
+ }
125
+ }
126
+ };
127
+ //# sourceMappingURL=timeframe.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"timeframe.js","sourceRoot":"","sources":["../../src/timeframe.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=timeframe.test.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"timeframe.test.d.ts","sourceRoot":"","sources":["../../src/timeframe.test.ts"],"names":[],"mappings":""}
@@ -0,0 +1,113 @@
1
+ "use strict";
2
+ //
3
+ // Copyright 2020 DXOS.org
4
+ //
5
+ var __importDefault = (this && this.__importDefault) || function (mod) {
6
+ return (mod && mod.__esModule) ? mod : { "default": mod };
7
+ };
8
+ Object.defineProperty(exports, "__esModule", { value: true });
9
+ const debug_1 = __importDefault(require("debug"));
10
+ const public_key_1 = require("./public-key");
11
+ const timeframe_1 = require("./timeframe");
12
+ const log = (0, debug_1.default)('dxos:protocols:timeframe:test');
13
+ describe('spacetime', () => {
14
+ test('constructors', () => {
15
+ const feedKey = public_key_1.PublicKey.random();
16
+ const tf1 = new timeframe_1.Timeframe([[feedKey, 1]]);
17
+ log(tf1.toString());
18
+ expect(tf1).toBeTruthy();
19
+ });
20
+ test('merge/subtract', () => {
21
+ const feedKey1 = public_key_1.PublicKey.random();
22
+ const feedKey2 = public_key_1.PublicKey.random();
23
+ const feedKey3 = public_key_1.PublicKey.random();
24
+ {
25
+ // Merge.
26
+ const tf1 = new timeframe_1.Timeframe();
27
+ const tf2 = new timeframe_1.Timeframe([[feedKey1, 2], [feedKey2, 1]]);
28
+ const tf3 = timeframe_1.Timeframe.merge(tf1, tf2);
29
+ expect(tf3.frames()).toHaveLength(2);
30
+ }
31
+ {
32
+ // Merge (no change).
33
+ const tf1 = new timeframe_1.Timeframe([[feedKey1, 1], [feedKey2, 1]]);
34
+ const tf2 = new timeframe_1.Timeframe([[feedKey1, 2], [feedKey3, 1]]);
35
+ const tf3 = timeframe_1.Timeframe.merge(tf1, tf2);
36
+ expect(tf3.frames()).toHaveLength(3);
37
+ }
38
+ {
39
+ // Merge (no change).
40
+ const tf1 = new timeframe_1.Timeframe([[feedKey1, 1]]);
41
+ const tf2 = new timeframe_1.Timeframe([[feedKey1, 3]]);
42
+ const tf3 = new timeframe_1.Timeframe([[feedKey1, 2]]);
43
+ const tf4 = timeframe_1.Timeframe.merge(tf1, tf2, tf3);
44
+ log(tf4.toString());
45
+ expect(tf4.frames()).toHaveLength(1);
46
+ expect(tf4.get(feedKey1)).toBe(3);
47
+ }
48
+ {
49
+ // Remove keys.
50
+ const tf1 = new timeframe_1.Timeframe([[feedKey1, 1], [feedKey2, 2]]);
51
+ const tf2 = tf1.withoutKeys([feedKey1, feedKey3]);
52
+ expect(tf2.frames()).toHaveLength(1);
53
+ }
54
+ });
55
+ test('dependencies', () => {
56
+ const feedKey1 = public_key_1.PublicKey.random();
57
+ const feedKey2 = public_key_1.PublicKey.random();
58
+ const feedKey3 = public_key_1.PublicKey.random();
59
+ {
60
+ const tf1 = new timeframe_1.Timeframe();
61
+ const tf2 = new timeframe_1.Timeframe();
62
+ const tf3 = timeframe_1.Timeframe.dependencies(tf1, tf2);
63
+ log(tf3.toString());
64
+ expect(tf3.frames()).toHaveLength(0);
65
+ }
66
+ {
67
+ const tf1 = new timeframe_1.Timeframe();
68
+ const tf2 = new timeframe_1.Timeframe([[feedKey1, 10], [feedKey2, 11]]);
69
+ const tf3 = timeframe_1.Timeframe.dependencies(tf1, tf2);
70
+ log(tf3.toString());
71
+ expect(tf3.frames()).toHaveLength(0);
72
+ }
73
+ {
74
+ const tf1 = new timeframe_1.Timeframe([[feedKey1, 10], [feedKey2, 10]]);
75
+ const tf2 = new timeframe_1.Timeframe();
76
+ const tf3 = timeframe_1.Timeframe.dependencies(tf1, tf2);
77
+ log(tf3.toString());
78
+ expect(tf3.frames()).toHaveLength(2);
79
+ }
80
+ // TODO(burdon): Test 0.
81
+ {
82
+ const tf1 = new timeframe_1.Timeframe([[feedKey1, 0]]);
83
+ const tf2 = new timeframe_1.Timeframe([[feedKey1, 0]]);
84
+ const tf3 = timeframe_1.Timeframe.dependencies(tf1, tf2);
85
+ log(tf3.toString());
86
+ expect(tf3.frames()).toHaveLength(0);
87
+ }
88
+ {
89
+ const tf1 = new timeframe_1.Timeframe([[feedKey1, 1]]);
90
+ const tf2 = new timeframe_1.Timeframe([[feedKey1, 1]]);
91
+ const tf3 = timeframe_1.Timeframe.dependencies(tf1, tf2);
92
+ log(tf1.toString());
93
+ log(tf2.toString());
94
+ log(tf3.toString());
95
+ expect(tf3.frames()).toHaveLength(0);
96
+ }
97
+ {
98
+ const tf1 = new timeframe_1.Timeframe([[feedKey1, 10], [feedKey2, 10]]);
99
+ const tf2 = new timeframe_1.Timeframe([[feedKey1, 10], [feedKey2, 11]]);
100
+ const tf3 = timeframe_1.Timeframe.dependencies(tf1, tf2);
101
+ log(tf3.toString());
102
+ expect(tf3.frames()).toHaveLength(0);
103
+ }
104
+ {
105
+ const tf1 = new timeframe_1.Timeframe([[feedKey1, 10], [feedKey2, 10], [feedKey3, 10]]);
106
+ const tf2 = new timeframe_1.Timeframe([[feedKey1, 10], [feedKey2, 9]]);
107
+ const tf3 = timeframe_1.Timeframe.dependencies(tf1, tf2);
108
+ log(tf3.toString());
109
+ expect(tf3.frames()).toHaveLength(2);
110
+ }
111
+ });
112
+ });
113
+ //# sourceMappingURL=timeframe.test.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"timeframe.test.js","sourceRoot":"","sources":["../../src/timeframe.test.ts"],"names":[],"mappings":"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"}
@@ -1 +1 @@
1
- {"program":{"fileNames":["../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es5.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2015.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2016.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2017.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2018.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2019.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2020.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2021.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2022.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.esnext.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/assert.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/assert/strict.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/globals.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/async_hooks.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/buffer.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/child_process.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/cluster.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/console.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/constants.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/crypto.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/dgram.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/diagnostics_channel.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/dns.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/dns/promises.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/domain.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/events.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/fs.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/fs/promises.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/http.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/http2.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/https.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/inspector.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/module.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/net.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/os.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/path.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/perf_hooks.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/process.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/punycode.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/querystring.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/readline.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/repl.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/stream.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/stream/promises.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/stream/consumers.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/stream/web.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/string_decoder.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/timers.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/timers/promises.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/tls.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/trace_events.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/tty.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/url.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/util.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/v8.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/vm.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/wasi.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/worker_threads.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/zlib.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/globals.global.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/index.d.ts","../../codec-protobuf/dist/src/interface.d.ts","../../codec-protobuf/dist/src/buffer-patch.d.ts","../../../../common/temp/node_modules/.pnpm/protobufjs@6.11.2/node_modules/protobufjs/index.d.ts","../../codec-protobuf/dist/src/stream.d.ts","../../codec-protobuf/dist/src/service.d.ts","../../codec-protobuf/dist/src/schema.d.ts","../../codec-protobuf/dist/src/common.d.ts","../../codec-protobuf/dist/src/mapping.d.ts","../../codec-protobuf/dist/src/codec.d.ts","../../codec-protobuf/dist/src/sanitizer.d.ts","../../codec-protobuf/dist/src/substitutions/any.d.ts","../../codec-protobuf/dist/src/substitutions/timestamp.d.ts","../../codec-protobuf/dist/src/substitutions/index.d.ts","../../codec-protobuf/dist/src/index.d.ts","../src/proto/gen/google/protobuf.ts","../src/proto/gen/dxos/rpc.ts","../src/proto/gen/dxos/echo/timeframe.ts","../src/proto/gen/dxos/echo/snapshot.ts","../src/proto/gen/dxos/echo/service.ts","../src/proto/gen/dxos/echo/metadata.ts","../src/proto/gen/dxos/echo/invitation.ts","../src/proto/gen/dxos/echo/feed.ts","../src/proto/gen/dxos/devtools.ts","../src/proto/gen/dxos/credentials/party.ts","../src/proto/gen/dxos/credentials/identity.ts","../src/proto/gen/dxos/credentials/greet.ts","../src/proto/gen/dxos/credentials/auth.ts","../src/proto/gen/dxos/credentials.ts","../src/proto/gen/dxos/config.ts","../src/proto/gen/dxos/client.ts","../src/proto/gen/dxos/bot.ts","../src/proto/gen/dxos/halo/keys.ts","../src/proto/index.ts","../../../../common/temp/node_modules/.pnpm/@types+randombytes@2.0.0/node_modules/@types/randombytes/index.d.ts","../src/public-key.ts","../src/index.ts","../src/public-key.test.ts","../src/proto/gen/index.ts","../../../../common/temp/node_modules/.pnpm/jest-diff@26.6.2/node_modules/jest-diff/build/cleanupSemantic.d.ts","../../../../common/temp/node_modules/.pnpm/jest-diff@26.6.2/node_modules/jest-diff/build/types.d.ts","../../../../common/temp/node_modules/.pnpm/jest-diff@26.6.2/node_modules/jest-diff/build/diffLines.d.ts","../../../../common/temp/node_modules/.pnpm/jest-diff@26.6.2/node_modules/jest-diff/build/printDiffs.d.ts","../../../../common/temp/node_modules/.pnpm/jest-diff@26.6.2/node_modules/jest-diff/build/index.d.ts","../../../../common/temp/node_modules/.pnpm/pretty-format@26.6.2/node_modules/pretty-format/build/types.d.ts","../../../../common/temp/node_modules/.pnpm/pretty-format@26.6.2/node_modules/pretty-format/build/index.d.ts","../../../../common/temp/node_modules/.pnpm/@types+jest@26.0.24/node_modules/@types/jest/index.d.ts"],"fileInfos":[{"version":"f5c28122bee592cfaf5c72ed7bcc47f453b79778ffa6e301f45d21a0970719d4","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9","746d62152361558ea6d6115cf0da4dd10ede041d14882ede3568bce5dc4b4f1f","3eb679a56cab01203a1ba7edeade937f6a2a4c718513b2cd930b579807fa9359","aea179452def8a6152f98f63b191b84e7cbd69b0e248c91e61fb2e52328abe8c",{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"181f1784c6c10b751631b24ce60c7f78b20665db4550b335be179217bacc0d5f","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"cd483c056da900716879771893a3c9772b66c3c88f8943b4205aec738a94b1d0","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"6c55633c733c8378db65ac3da7a767c3cf2cf3057f0565a9124a16a3a2019e87","affectsGlobalScope":true},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true},{"version":"ff667ee99e5a28c3dc5063a3cfd4d3436699e3fb035d4451037da7f567da542a","affectsGlobalScope":true},{"version":"34478567f8a80171f88f2f30808beb7da15eac0538ae91282dd33dce928d98ed","affectsGlobalScope":true},{"version":"6ea9ab679ea030cf46c16a711a316078e9e02619ebaf07a7fcd16964aba88f2d","affectsGlobalScope":true},{"version":"6bda95ea27a59a276e46043b7065b55bd4b316c25e70e29b572958fa77565d43","affectsGlobalScope":true},{"version":"aedb8de1abb2ff1095c153854a6df7deae4a5709c37297f9d6e9948b6806fa66","affectsGlobalScope":true},{"version":"11ffe3c281f375fff9ffdde8bbec7669b4dd671905509079f866f2354a788064","affectsGlobalScope":true},{"version":"c37f8a49593a0030eecb51bbfa270e709bec9d79a6cc3bb851ef348d4e6b26f8","affectsGlobalScope":true},"0d5a2ee1fdfa82740e0103389b9efd6bfe145a20018a2da3c02b89666181f4d9","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"92d63add669d18ebc349efbacd88966d6f2ccdddfb1b880b2db98ae3aa7bf7c4","affectsGlobalScope":true},"ccc94049a9841fe47abe5baef6be9a38fc6228807974ae675fb15dc22531b4be",{"version":"aeeee3998c5a730f8689f04038d41cf4245c9edbf6ef29a698e45b36e399b8ed","affectsGlobalScope":true},"95843d5cfafced8f3f8a5ce57d2335f0bcd361b9483587d12a25e4bd403b8216","afc6e96061af46bcff47246158caee7e056f5288783f2d83d6858cd25be1c565",{"version":"34f5bcac12b36d70304b73de5f5aab3bb91bd9919f984be80579ebcad03a624e","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","2f520601649a893e6a49a8851ebfcf4be8ce090dc1281c2a08a871cb04e8251f","f50c975ab7b50e25a69e3d8a3773894125b44e9698924105f23b812bf7488baf","2b8c764f856a1dd0a9a2bf23e5efddbff157de8138b0754010be561ae5fcaa90","76650408392bf49a8fbf3e2b6b302712a92d76af77b06e2da1cc8077359c4409","0af3121e68297b2247dd331c0d24dba599e50736a7517a5622d5591aae4a3122","6972fca26f6e9bd56197568d4379f99071a90766e06b4fcb5920a0130a9202be",{"version":"4a2628e95962c8ab756121faa3ac2ed348112ff7a87b5c286dd2cc3326546b4c","affectsGlobalScope":true},"80793b2277f31baa199234daed806fff0fb11491d1ebd3357e520c3558063f00","a049a59a02009fc023684fcfaf0ac526fe36c35dcc5d2b7d620c1750ba11b083","e3b886bacdd1fbf1f72e654596c80a55c7bc1d10bdf464aaf52f45ecd243862f","c665d5c50c2573aefd98f0ffb12c5583e333ed94294ce6f144a4163a8c84f09b","4b9a003b5c556c96784132945bb41c655ea11273b1917f5c8d0c154dd5fd20dd","a458dc78104cc80048ac24fdc02fe6dce254838094c2f25641b3f954d9721241",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"8a215750db3e2073511e07c9e293c8c40d6109e5c7368845e060bcc12adbae6f","abc1c425b2ad6720433f40f1877abfa4223f0f3dd486c9c28c492179ca183cb6","945a841f9a591197154c85386bc5a1467d42d325104bb36db51bc566bbb240be","10c39ce1df102994b47d4bc0c71aa9a6aea76f4651a5ec51914431f50bc883a1",{"version":"8207e7e6db9aa5fc7e61c8f17ba74cf9c115d26f51f91ee93f790815a7ea9dfb","affectsGlobalScope":true},"9f1069b9e2c051737b1f9b4f1baf50e4a63385a6a89c32235549ae87fc3d5492","ee18f2da7a037c6ceeb112a084e485aead9ea166980bf433474559eac1b46553","29c2706fa0cc49a2bd90c83234da33d08bb9554ecec675e91c1f85087f5a5324","0acbf26bf958f9e80c1ffa587b74749d2697b75b484062d36e103c137c562bc3","3fa48484c65913004d5abb5c0f917b61ea4684f32d05bb28c1ecfa5f05a9ed12","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"33eee034727baf564056b4ea719075c23d3b4767d0b5f9c6933b81f3d77774d2","c33a6ea7147af60d8e98f1ac127047f4b0d4e2ce28b8f08ff3de07ca7cc00637",{"version":"b42b47e17b8ece2424ae8039feb944c2e3ba4b262986aebd582e51efbdca93dc","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","2408611d9b4146e35d1dbd1f443ccd8e187c74614a54b80300728277529dbf11","998a3de5237518c0b3ac00a11b3b4417affb008aa20aedee52f3fdae3cb86151","ad41008ffe077206e1811fc873f4d9005b5fd7f6ab52bb6118fef600815a5cb4",{"version":"dd9ea469d1bfaf589c6a196275d35cb1aa14014707c2c46d920c7b921e8f5bca","affectsGlobalScope":true},"badae0df9a8016ac36994b0a0e7b82ba6aaa3528e175a8c3cb161e4683eec03e","c3db860bcaaaeb3bbc23f353bbda1f8ab82756c8d5e973bebb3953cb09ea68f2","235a53595bd20b0b0eeb1a29cb2887c67c48375e92f03749b2488fbd46d0b1a0","bc09393cd4cd13f69cf1366d4236fbae5359bb550f0de4e15767e9a91d63dfb1","9c266243b01545e11d2733a55ad02b4c00ecdbda99c561cd1674f96e89cdc958","c71155c05fc76ff948a4759abc1cb9feec036509f500174bc18dad4c7827a60c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"1503a452a67127e5c2da794d1c7c44344d5038373aae16c9b03ac964db159edd","0b181bbecdeb6becd582512ef095df3010f35da151c6f9b1f4672f37a564138f","a83c633597b14a433d9e3de3fc5cefe94d15120bda99527f02a9ce032a585e98","1558c642e03689d42843e7b047b9c20e77ee09ab388ff854484db5dcfbed11da","2f9c5296a20d97caa55616024cecd97676b364c389a11438a80589e2398dc99b","b835eabf1f7bd5a448c05645ad2b5d91658964486e7e7b597a77277b1cee1f4d","1cff09c6ff590bb65bd5566f6d7cc2e9fec5ff68eec0f3aef8c69867cd220809","0724b631bcad7be2efbbfee090de5ac9fb49a5180f8c3c106b5ad277764b700b","baec91b5297bbf84172dd802c5cf63c1b1c4c6decc14172b2df3de47c445bc38","6ad76201753175dae31aff88fa6f51482b595cc1b44cb223f83fcc94d2bb028d","2da7f849cc9a920aeb4b3e2cdd6304204688b3627c8f4fb91e8cbb5fd9a10067","4436545a1c5b2fc79659d71811b4d871a3e5533af64e37433730474ff4a63d20","773d53f5104b0adebf2b02cd35f567e74d148f003cc5de1b9f9dd58e4247336f","24c477490b4bde0038a611748d56d3c20cecd2ee4f35b8f03e43a98e37e0a668","5fdbdfeac99e876c2baee0188fb439c65c552408643991e13bfb2352ef0e7cbf",{"version":"6515a5ad39e5c824ae9707d67d893cbd4dc750e8051c24e6607e77081d2649bf","signature":"8ec7dc3c73798dfeb5e64aa09797aec2e497d28953ab13ef2e260539a0c4f2a6"},{"version":"a00190ae77a6b68f3ac73a6675d3b5f56162900b1460393c66a3aeb8e85a615f","signature":"66dfc1dec1b3aabb62e720bbf99763c315eefa5b323bdb485d5edc39053241df"},{"version":"5fab3672da846d1af93bc6659798a36d2d0d1684364fcc6779cbb5c9e3e6fd49","signature":"b69b1c1641aa7aab5382bc16f7778f47e1b7d4fba200d3a77f0741f8f05c64cc"},{"version":"6bc0927557233e51a738efb8774bda1f6ba9061ff3754ca955095d05e9ba0ddc","signature":"53bd464c4582d63e112dae90fb673abcf78f19cf123e728abe55585a3ae927ac"},{"version":"a8afe03b2a51f7932a2bbcbf7f5c6f2f10f82c0cd3db806f6448e3e15f837133","signature":"ad6aa207bab284a409f8f8882a94664e70cdd97bfea74fb2cfcc2f2addb19b41"},{"version":"3ba4e5264aa2ce3d2f5bd60ea50644efadf7a196b7ea37582294890fd3a5f3d6","signature":"2fdf286ed8f3c2e9cbee12aff4f042f204c70f9f8cef39e5b75c45745c71c53d"},{"version":"10636a077a2b377512cce153489f296daf5a58e8bcd84652409735f9808039e1","signature":"44967f2fcbf277128d347b9c0c7d026a8d59afc1e3a1a93957a8c94d3d2376a6"},{"version":"574fdb0a7b5ac6ea07a82153ce96754683cedb0d86bfe7878ff0d6f6dafdbd7b","signature":"059f1fb9047b2bf8d779c9e1f8c6b5954688a985fbb630abda7d5c24e70188ad"},{"version":"0af0d0ead2cc6a0477dfbdc256e01a60f2ba5ab5f28ed8b966117b74c9a30ab5","signature":"42ba8c568352300f6b29373ee07bb3cd26c958b676be5a6c6291c016c9a5e79b"},{"version":"793d58e9e964c01c25e13834f3c5ad9063361e86cb0db1a421d84996f36432ff","signature":"b672b4ba9b1eb5f29531964e15419a49681f2ab12a911d9685664a45bddbb4ec"},{"version":"c8ff8bc9e179f98f0647ef8ddc73ebd792c04fd2a508595435c5392e3a82e015","signature":"f0a71be2ebe7c5209deca7d30ca3840c4b7fa1688ffe4bb517bca77a1dae86ec"},{"version":"7df75ebbe73c5a345805acffb04108c878478a8022c4060d068cc03d8edd7bc4","signature":"02a984f7e65e852271175c668c487f2a2e9a6b448d97189cc69500652e00bcc1"},{"version":"85578da230eaa9b5273ff65149c274c62353abd57e31c529f871e4514f72015a","signature":"9d4d25ee37a7f20cbdd467dd4cb32587025c137312b204ca3d1ebf3607d76bcd"},{"version":"5976f4d1981022e0aecd58a1cdf57f0a5baf5f1cf48242169b067a0d8fdd2517","signature":"6183520a8b43b6372ca6c54894d22614e1d333b18732257f522c2d9bf331b5da"},{"version":"a4bca2114657194eb838d135b86109e86edc647bff0d839583b34880e956b795","signature":"dadbd1be3f000d2bba2e203761da954d0a948d52d8c6bf79f4c3b8bf1173da2f"},{"version":"8d0fa66be2022f70a3493b48d812239920468148d2096724bf33f836729699a3","signature":"3afbb498c1ea4447780a684181371e5166a899f8657f7d646da02b020bca8ac9"},{"version":"18571ce9498872c322d5fb783aef74d4630f2c533f04c753c31649fc9ce6c981","signature":"0fc7a1b5fc0a66d23ae5fea77ea0dceb661148d23e392143e8a621d4cd456754"},{"version":"56ed496bbf2aa1c310bc1a5440283e204c141420273aef3e081765b99e3b84de","signature":"8f2751ff59930d1c39926b212f95315b63907f01f47009e5e4c09bcd178cfd8e"},{"version":"e8cd1fb9213f322baddc45e9a0fe52b3793282879854199aab54b4116a88a24f","signature":"960517b319496c25fa90ff88b19ee0ee737bc3837eed05777c706d3b5ebd17ab"},"e109f5f766ef2fb64aa3c0a8918ebfb66c011f3f43611b536512675bc1d32834",{"version":"a47fa8484dfe0fd05f42c1b9206bc7c391b4530cc8533c4c1d44c38300cfc886","signature":"6083edd0f973c13fd20de6330e14fe15f74d9821e3ab856199f037becb6cb781"},{"version":"1c3bdc0a759e45f29a3f41cdd3e02b5f7b375c0b3522a397d1e3e28746a46c4e","signature":"454e4c3fdae769ff84d0e392528931d60469bf25b20ca8c7aeb5830d65657c4d"},{"version":"36550f991a28825f7dc4cb1e25e48830c5510aff3951e189bfe812a52c00e3eb","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"6140430b1627c77aaf35399a49765653f21b2098dcd27b36329af85294baf848","signature":"772be7b847e6c3d3be73cd4e45afdd63ee5ddeddaf99c2c0ed53935f6abe523b"},"d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","69da61a7b5093dac77fa3bec8be95dcf9a74c95a0e9161edb98bb24e30e439d2","561eca7a381b96d6ccac6e4061e6d2ae53f5bc44203f3fd9f5b26864c32ae6e9","62ea38627e3ebab429f7616812a9394d327c2bc271003dfba985de9b4137369f","b4439890c168d646357928431100daac5cbdee1d345a34e6bf6eca9f3abe22bc","5d72971a459517c44c1379dab9ed248e87a61ba0a1e0f25c9d67e1e640cd9a09","02d734976af36f4273d930bea88b3e62adf6b078cf120c1c63d49aa8d8427c5c",{"version":"516a426e3960379f310107635b8f3a7e8c307c6c665080b128039d9299ec4087","affectsGlobalScope":true}],"options":{"composite":true,"declarationMap":true,"esModuleInterop":true,"experimentalDecorators":true,"jsx":2,"module":1,"noImplicitOverride":true,"outDir":"./","skipLibCheck":true,"sourceMap":true,"strict":true,"stripInternal":true,"target":5},"fileIdsList":[[96,146,148],[53,96],[56,96],[57,62,96],[58,68,69,76,85,95,96],[58,59,68,76,96],[60,96],[61,62,69,77,96],[62,85,92,96],[63,65,68,76,96],[64,96],[65,66,96],[67,68,96],[68,96],[68,69,70,85,95,96],[68,69,70,85,96],[96],[71,76,85,95,96],[68,69,71,72,76,85,92,95,96],[71,73,85,92,95,96],[53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102],[68,74,96],[75,95,96],[65,68,76,85,96],[77,96],[78,96],[56,79,96],[80,94,96,100],[81,96],[82,96],[68,83,96],[83,84,96,98],[68,85,86,87,96],[85,87,96],[85,86,96],[88,96],[89,96],[68,90,91,96],[90,91,96],[62,76,92,96],[93,96],[76,94,96],[57,71,82,95,96],[62,96],[85,96,97],[96,98],[96,99],[57,62,68,70,79,85,95,96,98,100],[85,96,101],[62,96,103],[96,142,143],[96,142,143,144,145],[96,147],[96,103,104],[96,104,106,109,111],[96,109],[96,104,105,107,108,109,110,112,113,116],[96,110],[96,106],[96,106,108,110,112],[96,106,107,109],[96,114,115],[96,136,138],[96,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,135],[96,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,134,135],[96,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133,134,135],[96,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132,133,134,135],[96,117,118,119,120,121,122,123,124,125,126,127,128,129,131,132,133,134,135],[96,117,118,119,120,121,122,123,124,125,126,127,128,130,131,132,133,134,135],[96,117,118,119,120,121,122,123,124,125,126,127,129,130,131,132,133,134,135],[96,117,118,119,120,121,122,123,124,125,126,128,129,130,131,132,133,134,135],[96,117,118,119,120,121,122,123,124,125,127,128,129,130,131,132,133,134,135],[96,117,118,119,120,121,122,123,124,126,127,128,129,130,131,132,133,134,135],[96,117,118,119,120,121,122,123,125,126,127,128,129,130,131,132,133,134,135],[96,117,118,119,120,121,122,124,125,126,127,128,129,130,131,132,133,134,135],[96,117,118,119,120,121,123,124,125,126,127,128,129,130,131,132,133,134,135],[96,117,118,119,120,122,123,124,125,126,127,128,129,130,131,132,133,134,135],[96,117,118,119,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135],[96,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134],[96,117,118,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135],[96,117,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135],[96,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135],[96,135],[96,138],[96,137],[136,138],[117,118,124,132,133,135],[117,120,121,124,132,135],[118],[118,135],[135],[131,135],[117,119,120,121,125,131,135],[120,121],[118,120,135],[117,120,121,125,135],[120,125,135],[131],[117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135]],"referencedMap":[[149,1],[53,2],[54,2],[56,3],[57,4],[58,5],[59,6],[60,7],[61,8],[62,9],[63,10],[64,11],[65,12],[66,12],[67,13],[68,14],[69,15],[70,16],[55,17],[102,17],[71,18],[72,19],[73,20],[103,21],[74,22],[75,23],[76,24],[77,25],[78,26],[79,27],[80,28],[81,29],[82,30],[83,31],[84,32],[85,33],[87,34],[86,35],[88,36],[89,37],[90,38],[91,39],[92,40],[93,41],[94,42],[95,43],[96,44],[97,45],[98,46],[99,47],[100,48],[101,49],[137,50],[142,17],[144,51],[146,52],[145,51],[143,17],[148,53],[147,17],[106,17],[12,17],[11,17],[2,17],[13,17],[14,17],[15,17],[16,17],[17,17],[18,17],[19,17],[20,17],[3,17],[4,17],[24,17],[21,17],[22,17],[23,17],[25,17],[26,17],[27,17],[5,17],[28,17],[29,17],[30,17],[31,17],[6,17],[32,17],[33,17],[34,17],[35,17],[7,17],[36,17],[41,17],[42,17],[37,17],[38,17],[39,17],[40,17],[8,17],[46,17],[43,17],[44,17],[45,17],[47,17],[9,17],[48,17],[49,17],[50,17],[51,17],[1,17],[10,17],[52,17],[105,54],[112,55],[110,56],[117,57],[104,17],[111,58],[113,59],[109,60],[108,61],[107,17],[114,56],[116,62],[115,17],[139,63],[134,64],[133,65],[132,66],[131,67],[130,68],[129,69],[128,70],[127,71],[126,72],[125,73],[124,74],[123,75],[122,76],[121,77],[120,78],[135,79],[119,80],[118,81],[141,82],[136,83],[140,84],[138,85]],"exportedModulesMap":[[149,1],[53,2],[54,2],[56,3],[57,4],[58,5],[59,6],[60,7],[61,8],[62,9],[63,10],[64,11],[65,12],[66,12],[67,13],[68,14],[69,15],[70,16],[55,17],[102,17],[71,18],[72,19],[73,20],[103,21],[74,22],[75,23],[76,24],[77,25],[78,26],[79,27],[80,28],[81,29],[82,30],[83,31],[84,32],[85,33],[87,34],[86,35],[88,36],[89,37],[90,38],[91,39],[92,40],[93,41],[94,42],[95,43],[96,44],[97,45],[98,46],[99,47],[100,48],[101,49],[137,50],[142,17],[144,51],[146,52],[145,51],[143,17],[148,53],[147,17],[106,17],[12,17],[11,17],[2,17],[13,17],[14,17],[15,17],[16,17],[17,17],[18,17],[19,17],[20,17],[3,17],[4,17],[24,17],[21,17],[22,17],[23,17],[25,17],[26,17],[27,17],[5,17],[28,17],[29,17],[30,17],[31,17],[6,17],[32,17],[33,17],[34,17],[35,17],[7,17],[36,17],[41,17],[42,17],[37,17],[38,17],[39,17],[40,17],[8,17],[46,17],[43,17],[44,17],[45,17],[47,17],[9,17],[48,17],[49,17],[50,17],[51,17],[1,17],[10,17],[52,17],[105,54],[112,55],[110,56],[117,57],[104,17],[111,58],[113,59],[109,60],[108,61],[107,17],[114,56],[116,62],[115,17],[139,86],[134,87],[133,88],[132,89],[131,90],[130,90],[129,90],[128,91],[127,92],[126,93],[125,94],[123,95],[122,96],[121,97],[135,98],[119,89],[141,99],[136,91],[138,17]],"semanticDiagnosticsPerFile":[149,53,54,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,55,102,71,72,73,103,74,75,76,77,78,79,80,81,82,83,84,85,87,86,88,89,90,91,92,93,94,95,96,97,98,99,100,101,137,142,144,146,145,143,148,147,106,12,11,2,13,14,15,16,17,18,19,20,3,4,24,21,22,23,25,26,27,5,28,29,30,31,6,32,33,34,35,7,36,41,42,37,38,39,40,8,46,43,44,45,47,9,48,49,50,51,1,10,52,105,112,110,117,104,111,113,109,108,107,114,116,115,139,134,133,132,131,130,129,128,127,126,125,124,123,122,121,120,135,119,118,141,136,140,138]},"version":"4.7.4"}
1
+ {"program":{"fileNames":["../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es5.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2015.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2016.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2017.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2018.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2019.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2020.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2021.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2022.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.esnext.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../codec-protobuf/dist/src/interface.d.ts","../../codec-protobuf/dist/src/buffer-patch.d.ts","../../../../common/temp/node_modules/.pnpm/protobufjs@6.11.2/node_modules/protobufjs/index.d.ts","../../codec-protobuf/dist/src/stream.d.ts","../../codec-protobuf/dist/src/service.d.ts","../../codec-protobuf/dist/src/schema.d.ts","../../codec-protobuf/dist/src/common.d.ts","../../codec-protobuf/dist/src/mapping.d.ts","../../codec-protobuf/dist/src/codec.d.ts","../../codec-protobuf/dist/src/sanitizer.d.ts","../../codec-protobuf/dist/src/substitutions/any.d.ts","../../codec-protobuf/dist/src/substitutions/timestamp.d.ts","../../codec-protobuf/dist/src/substitutions/index.d.ts","../../codec-protobuf/dist/src/index.d.ts","../src/proto/gen/google/protobuf.ts","../src/proto/gen/dxos/test/echo.ts","../src/proto/gen/dxos/rpc.ts","../src/proto/gen/dxos/echo/timeframe.ts","../src/proto/gen/dxos/echo/snapshot.ts","../src/proto/gen/dxos/echo/service.ts","../src/proto/gen/dxos/echo/metadata.ts","../src/proto/gen/dxos/echo/invitation.ts","../src/proto/gen/dxos/echo/feed.ts","../src/proto/gen/dxos/devtools.ts","../src/proto/gen/dxos/credentials/party.ts","../src/proto/gen/dxos/credentials/identity.ts","../src/proto/gen/dxos/credentials/greet.ts","../src/proto/gen/dxos/credentials/auth.ts","../src/proto/gen/dxos/credentials.ts","../src/proto/gen/dxos/config.ts","../src/proto/gen/dxos/client.ts","../src/proto/gen/dxos/bot.ts","../src/proto/gen/dxos/halo/keys.ts","../src/proto/index.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/assert.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/assert/strict.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/globals.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/async_hooks.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/buffer.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/child_process.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/cluster.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/console.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/constants.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/crypto.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/dgram.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/diagnostics_channel.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/dns.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/dns/promises.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/domain.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/events.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/fs.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/fs/promises.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/http.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/http2.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/https.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/inspector.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/module.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/net.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/os.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/path.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/perf_hooks.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/process.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/punycode.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/querystring.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/readline.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/repl.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/stream.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/stream/promises.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/stream/consumers.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/stream/web.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/string_decoder.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/timers.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/timers/promises.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/tls.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/trace_events.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/tty.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/url.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/util.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/v8.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/vm.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/wasi.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/worker_threads.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/zlib.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/globals.global.d.ts","../../../../common/temp/node_modules/.pnpm/@types+node@16.11.27/node_modules/@types/node/index.d.ts","../../../../common/temp/node_modules/.pnpm/@types+randombytes@2.0.0/node_modules/@types/randombytes/index.d.ts","../src/public-key.ts","../src/timeframe.ts","../src/index.ts","../src/public-key.test.ts","../../../../common/temp/node_modules/.pnpm/@types+ms@0.7.31/node_modules/@types/ms/index.d.ts","../../../../common/temp/node_modules/.pnpm/@types+debug@4.1.7/node_modules/@types/debug/index.d.ts","../src/timeframe.test.ts","../src/proto/gen/index.ts","../../../../common/temp/node_modules/.pnpm/jest-diff@26.6.2/node_modules/jest-diff/build/cleanupSemantic.d.ts","../../../../common/temp/node_modules/.pnpm/jest-diff@26.6.2/node_modules/jest-diff/build/types.d.ts","../../../../common/temp/node_modules/.pnpm/jest-diff@26.6.2/node_modules/jest-diff/build/diffLines.d.ts","../../../../common/temp/node_modules/.pnpm/jest-diff@26.6.2/node_modules/jest-diff/build/printDiffs.d.ts","../../../../common/temp/node_modules/.pnpm/jest-diff@26.6.2/node_modules/jest-diff/build/index.d.ts","../../../../common/temp/node_modules/.pnpm/pretty-format@26.6.2/node_modules/pretty-format/build/types.d.ts","../../../../common/temp/node_modules/.pnpm/pretty-format@26.6.2/node_modules/pretty-format/build/index.d.ts","../../../../common/temp/node_modules/.pnpm/@types+jest@26.0.24/node_modules/@types/jest/index.d.ts"],"fileInfos":[{"version":"f5c28122bee592cfaf5c72ed7bcc47f453b79778ffa6e301f45d21a0970719d4","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9","746d62152361558ea6d6115cf0da4dd10ede041d14882ede3568bce5dc4b4f1f","3eb679a56cab01203a1ba7edeade937f6a2a4c718513b2cd930b579807fa9359","aea179452def8a6152f98f63b191b84e7cbd69b0e248c91e61fb2e52328abe8c",{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"181f1784c6c10b751631b24ce60c7f78b20665db4550b335be179217bacc0d5f","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"cd483c056da900716879771893a3c9772b66c3c88f8943b4205aec738a94b1d0","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"6c55633c733c8378db65ac3da7a767c3cf2cf3057f0565a9124a16a3a2019e87","affectsGlobalScope":true},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true},{"version":"ff667ee99e5a28c3dc5063a3cfd4d3436699e3fb035d4451037da7f567da542a","affectsGlobalScope":true},{"version":"34478567f8a80171f88f2f30808beb7da15eac0538ae91282dd33dce928d98ed","affectsGlobalScope":true},{"version":"6ea9ab679ea030cf46c16a711a316078e9e02619ebaf07a7fcd16964aba88f2d","affectsGlobalScope":true},{"version":"6bda95ea27a59a276e46043b7065b55bd4b316c25e70e29b572958fa77565d43","affectsGlobalScope":true},{"version":"aedb8de1abb2ff1095c153854a6df7deae4a5709c37297f9d6e9948b6806fa66","affectsGlobalScope":true},{"version":"11ffe3c281f375fff9ffdde8bbec7669b4dd671905509079f866f2354a788064","affectsGlobalScope":true},{"version":"c37f8a49593a0030eecb51bbfa270e709bec9d79a6cc3bb851ef348d4e6b26f8","affectsGlobalScope":true},"0b181bbecdeb6becd582512ef095df3010f35da151c6f9b1f4672f37a564138f","81ff0123bd67ad04d1cc940c5c0ae7e4cbe9856923f2d60690f2d7248114922a","1558c642e03689d42843e7b047b9c20e77ee09ab388ff854484db5dcfbed11da","2f9c5296a20d97caa55616024cecd97676b364c389a11438a80589e2398dc99b","b835eabf1f7bd5a448c05645ad2b5d91658964486e7e7b597a77277b1cee1f4d","1cff09c6ff590bb65bd5566f6d7cc2e9fec5ff68eec0f3aef8c69867cd220809","0724b631bcad7be2efbbfee090de5ac9fb49a5180f8c3c106b5ad277764b700b","baec91b5297bbf84172dd802c5cf63c1b1c4c6decc14172b2df3de47c445bc38","6ad76201753175dae31aff88fa6f51482b595cc1b44cb223f83fcc94d2bb028d","2da7f849cc9a920aeb4b3e2cdd6304204688b3627c8f4fb91e8cbb5fd9a10067","4436545a1c5b2fc79659d71811b4d871a3e5533af64e37433730474ff4a63d20","773d53f5104b0adebf2b02cd35f567e74d148f003cc5de1b9f9dd58e4247336f","24c477490b4bde0038a611748d56d3c20cecd2ee4f35b8f03e43a98e37e0a668","5fdbdfeac99e876c2baee0188fb439c65c552408643991e13bfb2352ef0e7cbf",{"version":"9126445da7570b7e2ed9672553607b1836a416be5577ecf082baa944f7c30b0a","signature":"8ec7dc3c73798dfeb5e64aa09797aec2e497d28953ab13ef2e260539a0c4f2a6"},{"version":"fd246f5ae775a63a29f2bc51abcc5f233166af1948669b091e14a8337df39ee4","signature":"48c7a0c1fdde4761f65cc50ea303c1cebceac2f2e8735d5191dc1e90db4c44a2"},{"version":"9617dbe07f69f8bbd6cadd87b10d9cbae67e9854f9a3d88c216eeaa96e177c62","signature":"66dfc1dec1b3aabb62e720bbf99763c315eefa5b323bdb485d5edc39053241df"},{"version":"3f23ccf9ba6a105c71dc5d249243fe368a6a1c1ace8af8b7dd523a24de8e1648","signature":"b69b1c1641aa7aab5382bc16f7778f47e1b7d4fba200d3a77f0741f8f05c64cc"},{"version":"25f1501db129dcc438d4e89baafb87d117199883b1f426e64ccb29a17bb1de55","signature":"53bd464c4582d63e112dae90fb673abcf78f19cf123e728abe55585a3ae927ac"},{"version":"25f9aa095dcabaab0a5c857c8259128b7a5b92322ccee9d9798434351ea7565d","signature":"ad6aa207bab284a409f8f8882a94664e70cdd97bfea74fb2cfcc2f2addb19b41"},{"version":"7fc1e27f9dd33855d218071d35e50e855ee3767078dfe384f5b9fe550ddca499","signature":"892dc941ee30fbede1683f2dc4e1059b77e7d862a6a0a3eea6be22a57db7bca9"},{"version":"fa5685f5c103308fbf9199e7a185bd96b201010df5808d73dc3563ba9c621e61","signature":"44967f2fcbf277128d347b9c0c7d026a8d59afc1e3a1a93957a8c94d3d2376a6"},{"version":"d6e173a6fbe4359af1bffff5f417511aae4cdb2929396fcbb7fab56c84929dfb","signature":"059f1fb9047b2bf8d779c9e1f8c6b5954688a985fbb630abda7d5c24e70188ad"},{"version":"b2c1850a29e8d9793d54ce405a94d8c71c2f342254367feb5b75d514acb1a401","signature":"42ba8c568352300f6b29373ee07bb3cd26c958b676be5a6c6291c016c9a5e79b"},{"version":"b9adcd180f1b95b4b6e7cd7b40ec338d7bba3b1e8e4774665b97524122c95eea","signature":"b672b4ba9b1eb5f29531964e15419a49681f2ab12a911d9685664a45bddbb4ec"},{"version":"93039113535999755db23e88ec8f159909e329ef7e039d5371691a2519c0e01d","signature":"f0a71be2ebe7c5209deca7d30ca3840c4b7fa1688ffe4bb517bca77a1dae86ec"},{"version":"8f4b89d4f2226d333317e42f557cfcde24807fdae766b46df30c87bec0281c71","signature":"77bac4909e510f22813bf3738b154baaeddcf2db3d67718568b33bccc7ec4bca"},{"version":"ceefa0f45526217f7ca330c5f75108a2617f0efa4c5de06574ac107aea5189bf","signature":"9d4d25ee37a7f20cbdd467dd4cb32587025c137312b204ca3d1ebf3607d76bcd"},{"version":"8bc90a822d353293fcb9c872f54aa7dc17550c18380e357073db1a3f335a6afb","signature":"6183520a8b43b6372ca6c54894d22614e1d333b18732257f522c2d9bf331b5da"},{"version":"fc15c1f59db4391c105d88e1a0c72edd99656e570625e2558ea4cab1b23a850b","signature":"dadbd1be3f000d2bba2e203761da954d0a948d52d8c6bf79f4c3b8bf1173da2f"},{"version":"7727a6611763e46aceda53c936486a3cb53a0aaa204d382be6b046c63e84b3bf","signature":"3afbb498c1ea4447780a684181371e5166a899f8657f7d646da02b020bca8ac9"},{"version":"c17765bf3c0a38dda855fe9afbe168809a0a3282a48bb9c78a09a13b8da7f7cc","signature":"0fc7a1b5fc0a66d23ae5fea77ea0dceb661148d23e392143e8a621d4cd456754"},{"version":"5af8bd60bf7351aa529318e14c1ef83d71b728c8b926f9992ee53e520b743c82","signature":"8f2751ff59930d1c39926b212f95315b63907f01f47009e5e4c09bcd178cfd8e"},{"version":"e8cd1fb9213f322baddc45e9a0fe52b3793282879854199aab54b4116a88a24f","signature":"960517b319496c25fa90ff88b19ee0ee737bc3837eed05777c706d3b5ebd17ab"},"0d5a2ee1fdfa82740e0103389b9efd6bfe145a20018a2da3c02b89666181f4d9","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"92d63add669d18ebc349efbacd88966d6f2ccdddfb1b880b2db98ae3aa7bf7c4","affectsGlobalScope":true},"ccc94049a9841fe47abe5baef6be9a38fc6228807974ae675fb15dc22531b4be",{"version":"aeeee3998c5a730f8689f04038d41cf4245c9edbf6ef29a698e45b36e399b8ed","affectsGlobalScope":true},"95843d5cfafced8f3f8a5ce57d2335f0bcd361b9483587d12a25e4bd403b8216","afc6e96061af46bcff47246158caee7e056f5288783f2d83d6858cd25be1c565",{"version":"34f5bcac12b36d70304b73de5f5aab3bb91bd9919f984be80579ebcad03a624e","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","2f520601649a893e6a49a8851ebfcf4be8ce090dc1281c2a08a871cb04e8251f","f50c975ab7b50e25a69e3d8a3773894125b44e9698924105f23b812bf7488baf","2b8c764f856a1dd0a9a2bf23e5efddbff157de8138b0754010be561ae5fcaa90","76650408392bf49a8fbf3e2b6b302712a92d76af77b06e2da1cc8077359c4409","0af3121e68297b2247dd331c0d24dba599e50736a7517a5622d5591aae4a3122","6972fca26f6e9bd56197568d4379f99071a90766e06b4fcb5920a0130a9202be",{"version":"4a2628e95962c8ab756121faa3ac2ed348112ff7a87b5c286dd2cc3326546b4c","affectsGlobalScope":true},"80793b2277f31baa199234daed806fff0fb11491d1ebd3357e520c3558063f00","a049a59a02009fc023684fcfaf0ac526fe36c35dcc5d2b7d620c1750ba11b083","e3b886bacdd1fbf1f72e654596c80a55c7bc1d10bdf464aaf52f45ecd243862f","c665d5c50c2573aefd98f0ffb12c5583e333ed94294ce6f144a4163a8c84f09b","4b9a003b5c556c96784132945bb41c655ea11273b1917f5c8d0c154dd5fd20dd","a458dc78104cc80048ac24fdc02fe6dce254838094c2f25641b3f954d9721241",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"8a215750db3e2073511e07c9e293c8c40d6109e5c7368845e060bcc12adbae6f","abc1c425b2ad6720433f40f1877abfa4223f0f3dd486c9c28c492179ca183cb6","945a841f9a591197154c85386bc5a1467d42d325104bb36db51bc566bbb240be","10c39ce1df102994b47d4bc0c71aa9a6aea76f4651a5ec51914431f50bc883a1",{"version":"8207e7e6db9aa5fc7e61c8f17ba74cf9c115d26f51f91ee93f790815a7ea9dfb","affectsGlobalScope":true},"9f1069b9e2c051737b1f9b4f1baf50e4a63385a6a89c32235549ae87fc3d5492","ee18f2da7a037c6ceeb112a084e485aead9ea166980bf433474559eac1b46553","29c2706fa0cc49a2bd90c83234da33d08bb9554ecec675e91c1f85087f5a5324","0acbf26bf958f9e80c1ffa587b74749d2697b75b484062d36e103c137c562bc3","3fa48484c65913004d5abb5c0f917b61ea4684f32d05bb28c1ecfa5f05a9ed12","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"33eee034727baf564056b4ea719075c23d3b4767d0b5f9c6933b81f3d77774d2","c33a6ea7147af60d8e98f1ac127047f4b0d4e2ce28b8f08ff3de07ca7cc00637",{"version":"b42b47e17b8ece2424ae8039feb944c2e3ba4b262986aebd582e51efbdca93dc","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","2408611d9b4146e35d1dbd1f443ccd8e187c74614a54b80300728277529dbf11","998a3de5237518c0b3ac00a11b3b4417affb008aa20aedee52f3fdae3cb86151","ad41008ffe077206e1811fc873f4d9005b5fd7f6ab52bb6118fef600815a5cb4",{"version":"dd9ea469d1bfaf589c6a196275d35cb1aa14014707c2c46d920c7b921e8f5bca","affectsGlobalScope":true},"badae0df9a8016ac36994b0a0e7b82ba6aaa3528e175a8c3cb161e4683eec03e","c3db860bcaaaeb3bbc23f353bbda1f8ab82756c8d5e973bebb3953cb09ea68f2","235a53595bd20b0b0eeb1a29cb2887c67c48375e92f03749b2488fbd46d0b1a0","bc09393cd4cd13f69cf1366d4236fbae5359bb550f0de4e15767e9a91d63dfb1","9c266243b01545e11d2733a55ad02b4c00ecdbda99c561cd1674f96e89cdc958","c71155c05fc76ff948a4759abc1cb9feec036509f500174bc18dad4c7827a60c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"1503a452a67127e5c2da794d1c7c44344d5038373aae16c9b03ac964db159edd","e109f5f766ef2fb64aa3c0a8918ebfb66c011f3f43611b536512675bc1d32834",{"version":"94c9caea4d2d97b4312a0e82e6013f54f5dd42a544351b082170d6cd0591525a","signature":"a9a31384db243f01f7226e1e2a1831c4f745206f4611f7a0e5fc6af1ec1df58e"},{"version":"ed0161b79eef82d42c9e725d5c6535d7973e5be3e94cdf73e829a5c5bf62bbc3","signature":"1d86339ad5226f760fe9ec2183cd32178f61e6d1d67453c330db90679ef66ea4"},{"version":"e28c1ad453b700d4ec4dbd87c005ea679aad30494294b523a22455d0d7452f98","signature":"d66ca971ce99018cba98a6b70589edeb8c5ec0cfc55a2033a5df5f4a30ae1068"},{"version":"62404ee0903352be1e11cc4b4cf4eb0a10d4543c46f45f4f3a8efaee4f771d57","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},"6a9c5127096b35264eb7cd21b2417bfc1d42cceca9ba4ce2bb0c3410b7816042","78828b06c0d3b586954015e9ebde5480b009e166c71244763bda328ec0920f41",{"version":"043516cd4b72035a444d4b1104c67ebeed2048a96855a43ad337e5b36ea4dace","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"fbedecc1ec32c1aeca61c1f9ec5664d03366a7aca6fe85f041830c254038dc77","signature":"0af717d690049d6df4e558465401545a097e13382e546713d5be941d630be38e"},"d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","69da61a7b5093dac77fa3bec8be95dcf9a74c95a0e9161edb98bb24e30e439d2","561eca7a381b96d6ccac6e4061e6d2ae53f5bc44203f3fd9f5b26864c32ae6e9","62ea38627e3ebab429f7616812a9394d327c2bc271003dfba985de9b4137369f","b4439890c168d646357928431100daac5cbdee1d345a34e6bf6eca9f3abe22bc","5d72971a459517c44c1379dab9ed248e87a61ba0a1e0f25c9d67e1e640cd9a09","02d734976af36f4273d930bea88b3e62adf6b078cf120c1c63d49aa8d8427c5c",{"version":"516a426e3960379f310107635b8f3a7e8c307c6c665080b128039d9299ec4087","affectsGlobalScope":true}],"options":{"composite":true,"declarationMap":true,"esModuleInterop":true,"experimentalDecorators":true,"jsx":2,"module":1,"noImplicitOverride":true,"outDir":"./","skipLibCheck":true,"sourceMap":true,"strict":true,"stripInternal":true,"target":5},"fileIdsList":[[130,143],[130,151,153],[130],[87,130],[90,130],[91,96,130],[92,102,103,110,119,129,130],[92,93,102,110,130],[94,130],[95,96,103,111,130],[96,119,126,130],[97,99,102,110,130],[98,130],[99,100,130],[101,102,130],[102,130],[102,103,104,119,129,130],[102,103,104,119,130],[105,110,119,129,130],[102,103,105,106,110,119,126,129,130],[105,107,119,126,129,130],[87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136],[102,108,130],[109,129,130],[99,102,110,119,130],[111,130],[112,130],[90,113,130],[114,128,130,134],[115,130],[116,130],[102,117,130],[117,118,130,132],[102,119,120,121,130],[119,121,130],[119,120,130],[122,130],[123,130],[102,124,125,130],[124,125,130],[96,110,126,130],[127,130],[110,128,130],[91,105,116,129,130],[96,130],[119,130,131],[130,132],[130,133],[91,96,102,104,113,119,129,130,132,134],[119,130,135],[96,130,137],[130,147,148],[130,147,148,149,150],[130,152],[53,130],[53,55,58,60,130],[58,130],[53,54,56,57,58,59,61,62,65,130],[59,130],[55,130],[55,57,59,61,130],[55,56,58,130],[63,64,130],[86,130,139,140],[66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,85,130],[66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,84,85,130],[66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,83,84,85,130],[66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,82,83,84,85,130],[66,67,68,69,70,71,72,73,74,75,76,77,78,79,81,82,83,84,85,130],[66,67,68,69,70,71,72,73,74,75,76,77,78,80,81,82,83,84,85,130],[66,67,68,69,70,71,72,73,74,75,76,77,79,80,81,82,83,84,85,130],[66,67,68,69,70,71,72,73,74,75,76,78,79,80,81,82,83,84,85,130],[66,67,68,69,70,71,72,73,74,75,77,78,79,80,81,82,83,84,85,130],[66,67,68,69,70,71,72,73,74,76,77,78,79,80,81,82,83,84,85,130],[66,67,68,69,70,71,72,73,75,76,77,78,79,80,81,82,83,84,85,130],[66,67,68,69,70,71,72,74,75,76,77,78,79,80,81,82,83,84,85,130],[66,67,68,69,70,71,73,74,75,76,77,78,79,80,81,82,83,84,85,130],[66,67,68,69,70,72,73,74,75,76,77,78,79,80,81,82,83,84,85,130],[66,67,68,69,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,130],[66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,130],[66,67,68,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,130],[66,67,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,130],[66,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,130],[66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,130],[85,130],[130,139],[87,130,138],[130,139,140,144],[86,139,140],[66,67,74,82,83,85],[66,70,71,74,82,85],[67],[67,85],[85],[81,85],[66,69,70,71,75,81,85],[70,71],[67,70,85],[66,70,71,75,85],[70,75,85],[81],[66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85]],"referencedMap":[[144,1],[154,2],[143,3],[87,4],[88,4],[90,5],[91,6],[92,7],[93,8],[94,9],[95,10],[96,11],[97,12],[98,13],[99,14],[100,14],[101,15],[102,16],[103,17],[104,18],[89,3],[136,3],[105,19],[106,20],[107,21],[137,22],[108,23],[109,24],[110,25],[111,26],[112,27],[113,28],[114,29],[115,30],[116,31],[117,32],[118,33],[119,34],[121,35],[120,36],[122,37],[123,38],[124,39],[125,40],[126,41],[127,42],[128,43],[129,44],[130,45],[131,46],[132,47],[133,48],[134,49],[135,50],[138,51],[147,3],[149,52],[151,53],[150,52],[148,3],[153,54],[152,3],[55,3],[12,3],[11,3],[2,3],[13,3],[14,3],[15,3],[16,3],[17,3],[18,3],[19,3],[20,3],[3,3],[4,3],[24,3],[21,3],[22,3],[23,3],[25,3],[26,3],[27,3],[5,3],[28,3],[29,3],[30,3],[31,3],[6,3],[32,3],[33,3],[34,3],[35,3],[7,3],[36,3],[41,3],[42,3],[37,3],[38,3],[39,3],[40,3],[8,3],[46,3],[43,3],[44,3],[45,3],[47,3],[9,3],[48,3],[49,3],[50,3],[51,3],[1,3],[10,3],[52,3],[54,55],[61,56],[59,57],[66,58],[53,3],[60,59],[62,60],[58,61],[57,62],[56,3],[63,57],[65,63],[64,3],[141,64],[84,65],[83,66],[82,67],[81,68],[80,69],[79,70],[78,71],[77,72],[76,73],[75,74],[74,75],[73,76],[72,77],[71,78],[70,79],[85,80],[69,81],[68,82],[67,83],[146,84],[86,85],[142,86],[139,87],[145,88],[140,86]],"exportedModulesMap":[[144,1],[154,2],[143,3],[87,4],[88,4],[90,5],[91,6],[92,7],[93,8],[94,9],[95,10],[96,11],[97,12],[98,13],[99,14],[100,14],[101,15],[102,16],[103,17],[104,18],[89,3],[136,3],[105,19],[106,20],[107,21],[137,22],[108,23],[109,24],[110,25],[111,26],[112,27],[113,28],[114,29],[115,30],[116,31],[117,32],[118,33],[119,34],[121,35],[120,36],[122,37],[123,38],[124,39],[125,40],[126,41],[127,42],[128,43],[129,44],[130,45],[131,46],[132,47],[133,48],[134,49],[135,50],[138,51],[147,3],[149,52],[151,53],[150,52],[148,3],[153,54],[152,3],[55,3],[12,3],[11,3],[2,3],[13,3],[14,3],[15,3],[16,3],[17,3],[18,3],[19,3],[20,3],[3,3],[4,3],[24,3],[21,3],[22,3],[23,3],[25,3],[26,3],[27,3],[5,3],[28,3],[29,3],[30,3],[31,3],[6,3],[32,3],[33,3],[34,3],[35,3],[7,3],[36,3],[41,3],[42,3],[37,3],[38,3],[39,3],[40,3],[8,3],[46,3],[43,3],[44,3],[45,3],[47,3],[9,3],[48,3],[49,3],[50,3],[51,3],[1,3],[10,3],[52,3],[54,55],[61,56],[59,57],[66,58],[53,3],[60,59],[62,60],[58,61],[57,62],[56,3],[63,57],[65,63],[64,3],[141,89],[84,90],[83,91],[82,92],[81,93],[80,93],[79,93],[78,94],[77,95],[76,96],[75,97],[73,98],[72,99],[71,100],[85,101],[69,92],[146,102],[86,94],[139,3],[140,86]],"semanticDiagnosticsPerFile":[144,154,143,87,88,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,89,136,105,106,107,137,108,109,110,111,112,113,114,115,116,117,118,119,121,120,122,123,124,125,126,127,128,129,130,131,132,133,134,135,138,147,149,151,150,148,153,152,55,12,11,2,13,14,15,16,17,18,19,20,3,4,24,21,22,23,25,26,27,5,28,29,30,31,6,32,33,34,35,7,36,41,42,37,38,39,40,8,46,43,44,45,47,9,48,49,50,51,1,10,52,54,61,59,66,53,60,62,58,57,56,63,65,64,141,84,83,82,81,80,79,78,77,76,75,74,73,72,71,70,85,69,68,67,146,86,142,139,145,140]},"version":"4.7.4"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dxos/protocols",
3
- "version": "2.33.8-dev.8609bc45",
3
+ "version": "2.33.9-dev.e605934d",
4
4
  "description": "Protobuf definitions for DXOS protocols.",
5
5
  "license": "MIT",
6
6
  "author": "DXOS.org",
@@ -11,15 +11,17 @@
11
11
  "src"
12
12
  ],
13
13
  "dependencies": {
14
- "@dxos/codec-protobuf": "2.33.8-dev.8609bc45",
14
+ "@dxos/codec-protobuf": "2.33.9-dev.e605934d",
15
15
  "randombytes": "^2.1.0"
16
16
  },
17
17
  "devDependencies": {
18
18
  "@dxos/eslint-plugin": "~1.0.34",
19
- "@dxos/protocols-toolchain": "2.33.7",
19
+ "@dxos/protocols-toolchain": "2.33.8",
20
+ "@types/debug": "^4.1.7",
20
21
  "@types/jest": "^26.0.7",
21
22
  "@types/node": "^16.11.27",
22
23
  "@types/randombytes": "^2.0.0",
24
+ "debug": "^4.3.3",
23
25
  "eslint": "^7.12.1",
24
26
  "typescript": "^4.7.2"
25
27
  },