@peerbit/any-store-interface 1.0.1 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/src/messages.js +733 -315
- package/dist/src/messages.js.map +1 -1
- package/package.json +2 -2
package/dist/src/messages.js
CHANGED
|
@@ -1,350 +1,768 @@
|
|
|
1
|
-
var
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
var __esDecorate = (this && this.__esDecorate) || function (ctor, descriptorIn, decorators, contextIn, initializers, extraInitializers) {
|
|
2
|
+
function accept(f) { if (f !== void 0 && typeof f !== "function") throw new TypeError("Function expected"); return f; }
|
|
3
|
+
var kind = contextIn.kind, key = kind === "getter" ? "get" : kind === "setter" ? "set" : "value";
|
|
4
|
+
var target = !descriptorIn && ctor ? contextIn["static"] ? ctor : ctor.prototype : null;
|
|
5
|
+
var descriptor = descriptorIn || (target ? Object.getOwnPropertyDescriptor(target, contextIn.name) : {});
|
|
6
|
+
var _, done = false;
|
|
7
|
+
for (var i = decorators.length - 1; i >= 0; i--) {
|
|
8
|
+
var context = {};
|
|
9
|
+
for (var p in contextIn) context[p] = p === "access" ? {} : contextIn[p];
|
|
10
|
+
for (var p in contextIn.access) context.access[p] = contextIn.access[p];
|
|
11
|
+
context.addInitializer = function (f) { if (done) throw new TypeError("Cannot add initializers after decoration has completed"); extraInitializers.push(accept(f || null)); };
|
|
12
|
+
var result = (0, decorators[i])(kind === "accessor" ? { get: descriptor.get, set: descriptor.set } : descriptor[key], context);
|
|
13
|
+
if (kind === "accessor") {
|
|
14
|
+
if (result === void 0) continue;
|
|
15
|
+
if (result === null || typeof result !== "object") throw new TypeError("Object expected");
|
|
16
|
+
if (_ = accept(result.get)) descriptor.get = _;
|
|
17
|
+
if (_ = accept(result.set)) descriptor.set = _;
|
|
18
|
+
if (_ = accept(result.init)) initializers.unshift(_);
|
|
19
|
+
}
|
|
20
|
+
else if (_ = accept(result)) {
|
|
21
|
+
if (kind === "field") initializers.unshift(_);
|
|
22
|
+
else descriptor[key] = _;
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
if (target) Object.defineProperty(target, contextIn.name, descriptor);
|
|
26
|
+
done = true;
|
|
6
27
|
};
|
|
7
|
-
var
|
|
8
|
-
|
|
28
|
+
var __runInitializers = (this && this.__runInitializers) || function (thisArg, initializers, value) {
|
|
29
|
+
var useValue = arguments.length > 2;
|
|
30
|
+
for (var i = 0; i < initializers.length; i++) {
|
|
31
|
+
value = useValue ? initializers[i].call(thisArg, value) : initializers[i].call(thisArg);
|
|
32
|
+
}
|
|
33
|
+
return useValue ? value : void 0;
|
|
9
34
|
};
|
|
10
35
|
import { field, option, variant, vec } from "@dao-xyz/borsh";
|
|
11
36
|
import { v4 as uuid } from "uuid";
|
|
12
37
|
export const levelKey = (level) => JSON.stringify(level);
|
|
13
|
-
let MemoryRequest =
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
38
|
+
let MemoryRequest = (() => {
|
|
39
|
+
let _classDecorators = [variant(0)];
|
|
40
|
+
let _classDescriptor;
|
|
41
|
+
let _classExtraInitializers = [];
|
|
42
|
+
let _classThis;
|
|
43
|
+
let _messageId_decorators;
|
|
44
|
+
let _messageId_initializers = [];
|
|
45
|
+
let _messageId_extraInitializers = [];
|
|
46
|
+
var MemoryRequest = class {
|
|
47
|
+
static { _classThis = this; }
|
|
48
|
+
static {
|
|
49
|
+
const _metadata = typeof Symbol === "function" && Symbol.metadata ? Object.create(null) : void 0;
|
|
50
|
+
_messageId_decorators = [field({ type: "string" })];
|
|
51
|
+
__esDecorate(null, null, _messageId_decorators, { kind: "field", name: "messageId", static: false, private: false, access: { has: obj => "messageId" in obj, get: obj => obj.messageId, set: (obj, value) => { obj.messageId = value; } }, metadata: _metadata }, _messageId_initializers, _messageId_extraInitializers);
|
|
52
|
+
__esDecorate(null, _classDescriptor = { value: _classThis }, _classDecorators, { kind: "class", name: _classThis.name, metadata: _metadata }, null, _classExtraInitializers);
|
|
53
|
+
MemoryRequest = _classThis = _classDescriptor.value;
|
|
54
|
+
if (_metadata) Object.defineProperty(_classThis, Symbol.metadata, { enumerable: true, configurable: true, writable: true, value: _metadata });
|
|
55
|
+
__runInitializers(_classThis, _classExtraInitializers);
|
|
56
|
+
}
|
|
57
|
+
messageId = __runInitializers(this, _messageId_initializers, void 0);
|
|
58
|
+
constructor(messageId) {
|
|
59
|
+
__runInitializers(this, _messageId_extraInitializers);
|
|
60
|
+
this.messageId = messageId || uuid();
|
|
61
|
+
}
|
|
62
|
+
};
|
|
63
|
+
return MemoryRequest = _classThis;
|
|
64
|
+
})();
|
|
27
65
|
export { MemoryRequest };
|
|
28
|
-
let MemoryMessage =
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
66
|
+
let MemoryMessage = (() => {
|
|
67
|
+
let _classDecorators = [variant(0)];
|
|
68
|
+
let _classDescriptor;
|
|
69
|
+
let _classExtraInitializers = [];
|
|
70
|
+
let _classThis;
|
|
71
|
+
let _classSuper = MemoryRequest;
|
|
72
|
+
let _level_decorators;
|
|
73
|
+
let _level_initializers = [];
|
|
74
|
+
let _level_extraInitializers = [];
|
|
75
|
+
var MemoryMessage = class extends _classSuper {
|
|
76
|
+
static { _classThis = this; }
|
|
77
|
+
static {
|
|
78
|
+
const _metadata = typeof Symbol === "function" && Symbol.metadata ? Object.create(_classSuper[Symbol.metadata] ?? null) : void 0;
|
|
79
|
+
_level_decorators = [field({ type: vec("string") })];
|
|
80
|
+
__esDecorate(null, null, _level_decorators, { kind: "field", name: "level", static: false, private: false, access: { has: obj => "level" in obj, get: obj => obj.level, set: (obj, value) => { obj.level = value; } }, metadata: _metadata }, _level_initializers, _level_extraInitializers);
|
|
81
|
+
__esDecorate(null, _classDescriptor = { value: _classThis }, _classDecorators, { kind: "class", name: _classThis.name, metadata: _metadata }, null, _classExtraInitializers);
|
|
82
|
+
MemoryMessage = _classThis = _classDescriptor.value;
|
|
83
|
+
if (_metadata) Object.defineProperty(_classThis, Symbol.metadata, { enumerable: true, configurable: true, writable: true, value: _metadata });
|
|
84
|
+
__runInitializers(_classThis, _classExtraInitializers);
|
|
85
|
+
}
|
|
86
|
+
level = __runInitializers(this, _level_initializers, void 0); // [] means root, ['x'] means sublevel named 'x'
|
|
87
|
+
constructor(properties) {
|
|
88
|
+
super();
|
|
89
|
+
__runInitializers(this, _level_extraInitializers);
|
|
90
|
+
this.level = properties.level;
|
|
91
|
+
}
|
|
92
|
+
};
|
|
93
|
+
return MemoryMessage = _classThis;
|
|
94
|
+
})();
|
|
43
95
|
export { MemoryMessage };
|
|
44
|
-
let REQ_Status =
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
96
|
+
let REQ_Status = (() => {
|
|
97
|
+
let _classDecorators = [variant(0)];
|
|
98
|
+
let _classDescriptor;
|
|
99
|
+
let _classExtraInitializers = [];
|
|
100
|
+
let _classThis;
|
|
101
|
+
let _classSuper = MemoryMessage;
|
|
102
|
+
var REQ_Status = class extends _classSuper {
|
|
103
|
+
static { _classThis = this; }
|
|
104
|
+
static {
|
|
105
|
+
const _metadata = typeof Symbol === "function" && Symbol.metadata ? Object.create(_classSuper[Symbol.metadata] ?? null) : void 0;
|
|
106
|
+
__esDecorate(null, _classDescriptor = { value: _classThis }, _classDecorators, { kind: "class", name: _classThis.name, metadata: _metadata }, null, _classExtraInitializers);
|
|
107
|
+
REQ_Status = _classThis = _classDescriptor.value;
|
|
108
|
+
if (_metadata) Object.defineProperty(_classThis, Symbol.metadata, { enumerable: true, configurable: true, writable: true, value: _metadata });
|
|
109
|
+
__runInitializers(_classThis, _classExtraInitializers);
|
|
110
|
+
}
|
|
111
|
+
};
|
|
112
|
+
return REQ_Status = _classThis;
|
|
113
|
+
})();
|
|
49
114
|
export { REQ_Status };
|
|
50
|
-
let RESP_Status =
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
115
|
+
let RESP_Status = (() => {
|
|
116
|
+
let _classDecorators = [variant(1)];
|
|
117
|
+
let _classDescriptor;
|
|
118
|
+
let _classExtraInitializers = [];
|
|
119
|
+
let _classThis;
|
|
120
|
+
let _classSuper = MemoryMessage;
|
|
121
|
+
let _status_decorators;
|
|
122
|
+
let _status_initializers = [];
|
|
123
|
+
let _status_extraInitializers = [];
|
|
124
|
+
var RESP_Status = class extends _classSuper {
|
|
125
|
+
static { _classThis = this; }
|
|
126
|
+
static {
|
|
127
|
+
const _metadata = typeof Symbol === "function" && Symbol.metadata ? Object.create(_classSuper[Symbol.metadata] ?? null) : void 0;
|
|
128
|
+
_status_decorators = [field({ type: "string" })];
|
|
129
|
+
__esDecorate(null, null, _status_decorators, { kind: "field", name: "status", static: false, private: false, access: { has: obj => "status" in obj, get: obj => obj.status, set: (obj, value) => { obj.status = value; } }, metadata: _metadata }, _status_initializers, _status_extraInitializers);
|
|
130
|
+
__esDecorate(null, _classDescriptor = { value: _classThis }, _classDecorators, { kind: "class", name: _classThis.name, metadata: _metadata }, null, _classExtraInitializers);
|
|
131
|
+
RESP_Status = _classThis = _classDescriptor.value;
|
|
132
|
+
if (_metadata) Object.defineProperty(_classThis, Symbol.metadata, { enumerable: true, configurable: true, writable: true, value: _metadata });
|
|
133
|
+
__runInitializers(_classThis, _classExtraInitializers);
|
|
134
|
+
}
|
|
135
|
+
status = __runInitializers(this, _status_initializers, void 0);
|
|
136
|
+
constructor(properties) {
|
|
137
|
+
super(properties);
|
|
138
|
+
__runInitializers(this, _status_extraInitializers);
|
|
139
|
+
this.status = properties.status;
|
|
140
|
+
}
|
|
141
|
+
};
|
|
142
|
+
return RESP_Status = _classThis;
|
|
143
|
+
})();
|
|
65
144
|
export { RESP_Status };
|
|
66
|
-
let REQ_Open =
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
145
|
+
let REQ_Open = (() => {
|
|
146
|
+
let _classDecorators = [variant(2)];
|
|
147
|
+
let _classDescriptor;
|
|
148
|
+
let _classExtraInitializers = [];
|
|
149
|
+
let _classThis;
|
|
150
|
+
let _classSuper = MemoryMessage;
|
|
151
|
+
var REQ_Open = class extends _classSuper {
|
|
152
|
+
static { _classThis = this; }
|
|
153
|
+
static {
|
|
154
|
+
const _metadata = typeof Symbol === "function" && Symbol.metadata ? Object.create(_classSuper[Symbol.metadata] ?? null) : void 0;
|
|
155
|
+
__esDecorate(null, _classDescriptor = { value: _classThis }, _classDecorators, { kind: "class", name: _classThis.name, metadata: _metadata }, null, _classExtraInitializers);
|
|
156
|
+
REQ_Open = _classThis = _classDescriptor.value;
|
|
157
|
+
if (_metadata) Object.defineProperty(_classThis, Symbol.metadata, { enumerable: true, configurable: true, writable: true, value: _metadata });
|
|
158
|
+
__runInitializers(_classThis, _classExtraInitializers);
|
|
159
|
+
}
|
|
160
|
+
};
|
|
161
|
+
return REQ_Open = _classThis;
|
|
162
|
+
})();
|
|
71
163
|
export { REQ_Open };
|
|
72
|
-
let RESP_Open =
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
164
|
+
let RESP_Open = (() => {
|
|
165
|
+
let _classDecorators = [variant(3)];
|
|
166
|
+
let _classDescriptor;
|
|
167
|
+
let _classExtraInitializers = [];
|
|
168
|
+
let _classThis;
|
|
169
|
+
let _classSuper = MemoryMessage;
|
|
170
|
+
var RESP_Open = class extends _classSuper {
|
|
171
|
+
static { _classThis = this; }
|
|
172
|
+
static {
|
|
173
|
+
const _metadata = typeof Symbol === "function" && Symbol.metadata ? Object.create(_classSuper[Symbol.metadata] ?? null) : void 0;
|
|
174
|
+
__esDecorate(null, _classDescriptor = { value: _classThis }, _classDecorators, { kind: "class", name: _classThis.name, metadata: _metadata }, null, _classExtraInitializers);
|
|
175
|
+
RESP_Open = _classThis = _classDescriptor.value;
|
|
176
|
+
if (_metadata) Object.defineProperty(_classThis, Symbol.metadata, { enumerable: true, configurable: true, writable: true, value: _metadata });
|
|
177
|
+
__runInitializers(_classThis, _classExtraInitializers);
|
|
178
|
+
}
|
|
179
|
+
};
|
|
180
|
+
return RESP_Open = _classThis;
|
|
181
|
+
})();
|
|
77
182
|
export { RESP_Open };
|
|
78
|
-
let REQ_Close =
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
183
|
+
let REQ_Close = (() => {
|
|
184
|
+
let _classDecorators = [variant(4)];
|
|
185
|
+
let _classDescriptor;
|
|
186
|
+
let _classExtraInitializers = [];
|
|
187
|
+
let _classThis;
|
|
188
|
+
let _classSuper = MemoryMessage;
|
|
189
|
+
var REQ_Close = class extends _classSuper {
|
|
190
|
+
static { _classThis = this; }
|
|
191
|
+
static {
|
|
192
|
+
const _metadata = typeof Symbol === "function" && Symbol.metadata ? Object.create(_classSuper[Symbol.metadata] ?? null) : void 0;
|
|
193
|
+
__esDecorate(null, _classDescriptor = { value: _classThis }, _classDecorators, { kind: "class", name: _classThis.name, metadata: _metadata }, null, _classExtraInitializers);
|
|
194
|
+
REQ_Close = _classThis = _classDescriptor.value;
|
|
195
|
+
if (_metadata) Object.defineProperty(_classThis, Symbol.metadata, { enumerable: true, configurable: true, writable: true, value: _metadata });
|
|
196
|
+
__runInitializers(_classThis, _classExtraInitializers);
|
|
197
|
+
}
|
|
198
|
+
};
|
|
199
|
+
return REQ_Close = _classThis;
|
|
200
|
+
})();
|
|
83
201
|
export { REQ_Close };
|
|
84
|
-
let RESP_Close =
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
202
|
+
let RESP_Close = (() => {
|
|
203
|
+
let _classDecorators = [variant(5)];
|
|
204
|
+
let _classDescriptor;
|
|
205
|
+
let _classExtraInitializers = [];
|
|
206
|
+
let _classThis;
|
|
207
|
+
let _classSuper = MemoryMessage;
|
|
208
|
+
var RESP_Close = class extends _classSuper {
|
|
209
|
+
static { _classThis = this; }
|
|
210
|
+
static {
|
|
211
|
+
const _metadata = typeof Symbol === "function" && Symbol.metadata ? Object.create(_classSuper[Symbol.metadata] ?? null) : void 0;
|
|
212
|
+
__esDecorate(null, _classDescriptor = { value: _classThis }, _classDecorators, { kind: "class", name: _classThis.name, metadata: _metadata }, null, _classExtraInitializers);
|
|
213
|
+
RESP_Close = _classThis = _classDescriptor.value;
|
|
214
|
+
if (_metadata) Object.defineProperty(_classThis, Symbol.metadata, { enumerable: true, configurable: true, writable: true, value: _metadata });
|
|
215
|
+
__runInitializers(_classThis, _classExtraInitializers);
|
|
216
|
+
}
|
|
217
|
+
};
|
|
218
|
+
return RESP_Close = _classThis;
|
|
219
|
+
})();
|
|
89
220
|
export { RESP_Close };
|
|
90
|
-
let REQ_Get =
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
221
|
+
let REQ_Get = (() => {
|
|
222
|
+
let _classDecorators = [variant(6)];
|
|
223
|
+
let _classDescriptor;
|
|
224
|
+
let _classExtraInitializers = [];
|
|
225
|
+
let _classThis;
|
|
226
|
+
let _classSuper = MemoryMessage;
|
|
227
|
+
let _key_decorators;
|
|
228
|
+
let _key_initializers = [];
|
|
229
|
+
let _key_extraInitializers = [];
|
|
230
|
+
var REQ_Get = class extends _classSuper {
|
|
231
|
+
static { _classThis = this; }
|
|
232
|
+
static {
|
|
233
|
+
const _metadata = typeof Symbol === "function" && Symbol.metadata ? Object.create(_classSuper[Symbol.metadata] ?? null) : void 0;
|
|
234
|
+
_key_decorators = [field({ type: "string" })];
|
|
235
|
+
__esDecorate(null, null, _key_decorators, { kind: "field", name: "key", static: false, private: false, access: { has: obj => "key" in obj, get: obj => obj.key, set: (obj, value) => { obj.key = value; } }, metadata: _metadata }, _key_initializers, _key_extraInitializers);
|
|
236
|
+
__esDecorate(null, _classDescriptor = { value: _classThis }, _classDecorators, { kind: "class", name: _classThis.name, metadata: _metadata }, null, _classExtraInitializers);
|
|
237
|
+
REQ_Get = _classThis = _classDescriptor.value;
|
|
238
|
+
if (_metadata) Object.defineProperty(_classThis, Symbol.metadata, { enumerable: true, configurable: true, writable: true, value: _metadata });
|
|
239
|
+
__runInitializers(_classThis, _classExtraInitializers);
|
|
240
|
+
}
|
|
241
|
+
key = __runInitializers(this, _key_initializers, void 0);
|
|
242
|
+
constructor(properties) {
|
|
243
|
+
super(properties);
|
|
244
|
+
__runInitializers(this, _key_extraInitializers);
|
|
245
|
+
this.key = properties.key;
|
|
246
|
+
}
|
|
247
|
+
};
|
|
248
|
+
return REQ_Get = _classThis;
|
|
249
|
+
})();
|
|
105
250
|
export { REQ_Get };
|
|
106
|
-
let RESP_Get =
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
251
|
+
let RESP_Get = (() => {
|
|
252
|
+
let _classDecorators = [variant(7)];
|
|
253
|
+
let _classDescriptor;
|
|
254
|
+
let _classExtraInitializers = [];
|
|
255
|
+
let _classThis;
|
|
256
|
+
let _classSuper = MemoryMessage;
|
|
257
|
+
let _bytes_decorators;
|
|
258
|
+
let _bytes_initializers = [];
|
|
259
|
+
let _bytes_extraInitializers = [];
|
|
260
|
+
var RESP_Get = class extends _classSuper {
|
|
261
|
+
static { _classThis = this; }
|
|
262
|
+
static {
|
|
263
|
+
const _metadata = typeof Symbol === "function" && Symbol.metadata ? Object.create(_classSuper[Symbol.metadata] ?? null) : void 0;
|
|
264
|
+
_bytes_decorators = [field({ type: option(Uint8Array) })];
|
|
265
|
+
__esDecorate(null, null, _bytes_decorators, { kind: "field", name: "bytes", static: false, private: false, access: { has: obj => "bytes" in obj, get: obj => obj.bytes, set: (obj, value) => { obj.bytes = value; } }, metadata: _metadata }, _bytes_initializers, _bytes_extraInitializers);
|
|
266
|
+
__esDecorate(null, _classDescriptor = { value: _classThis }, _classDecorators, { kind: "class", name: _classThis.name, metadata: _metadata }, null, _classExtraInitializers);
|
|
267
|
+
RESP_Get = _classThis = _classDescriptor.value;
|
|
268
|
+
if (_metadata) Object.defineProperty(_classThis, Symbol.metadata, { enumerable: true, configurable: true, writable: true, value: _metadata });
|
|
269
|
+
__runInitializers(_classThis, _classExtraInitializers);
|
|
270
|
+
}
|
|
271
|
+
bytes = __runInitializers(this, _bytes_initializers, void 0);
|
|
272
|
+
constructor(properties) {
|
|
273
|
+
super(properties);
|
|
274
|
+
__runInitializers(this, _bytes_extraInitializers);
|
|
275
|
+
this.bytes = properties.bytes;
|
|
276
|
+
}
|
|
277
|
+
};
|
|
278
|
+
return RESP_Get = _classThis;
|
|
279
|
+
})();
|
|
121
280
|
export { RESP_Get };
|
|
122
|
-
let REQ_Put =
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
281
|
+
let REQ_Put = (() => {
|
|
282
|
+
let _classDecorators = [variant(8)];
|
|
283
|
+
let _classDescriptor;
|
|
284
|
+
let _classExtraInitializers = [];
|
|
285
|
+
let _classThis;
|
|
286
|
+
let _classSuper = MemoryMessage;
|
|
287
|
+
let _key_decorators;
|
|
288
|
+
let _key_initializers = [];
|
|
289
|
+
let _key_extraInitializers = [];
|
|
290
|
+
let _bytes_decorators;
|
|
291
|
+
let _bytes_initializers = [];
|
|
292
|
+
let _bytes_extraInitializers = [];
|
|
293
|
+
var REQ_Put = class extends _classSuper {
|
|
294
|
+
static { _classThis = this; }
|
|
295
|
+
static {
|
|
296
|
+
const _metadata = typeof Symbol === "function" && Symbol.metadata ? Object.create(_classSuper[Symbol.metadata] ?? null) : void 0;
|
|
297
|
+
_key_decorators = [field({ type: "string" })];
|
|
298
|
+
_bytes_decorators = [field({ type: Uint8Array })];
|
|
299
|
+
__esDecorate(null, null, _key_decorators, { kind: "field", name: "key", static: false, private: false, access: { has: obj => "key" in obj, get: obj => obj.key, set: (obj, value) => { obj.key = value; } }, metadata: _metadata }, _key_initializers, _key_extraInitializers);
|
|
300
|
+
__esDecorate(null, null, _bytes_decorators, { kind: "field", name: "bytes", static: false, private: false, access: { has: obj => "bytes" in obj, get: obj => obj.bytes, set: (obj, value) => { obj.bytes = value; } }, metadata: _metadata }, _bytes_initializers, _bytes_extraInitializers);
|
|
301
|
+
__esDecorate(null, _classDescriptor = { value: _classThis }, _classDecorators, { kind: "class", name: _classThis.name, metadata: _metadata }, null, _classExtraInitializers);
|
|
302
|
+
REQ_Put = _classThis = _classDescriptor.value;
|
|
303
|
+
if (_metadata) Object.defineProperty(_classThis, Symbol.metadata, { enumerable: true, configurable: true, writable: true, value: _metadata });
|
|
304
|
+
__runInitializers(_classThis, _classExtraInitializers);
|
|
305
|
+
}
|
|
306
|
+
key = __runInitializers(this, _key_initializers, void 0);
|
|
307
|
+
bytes = (__runInitializers(this, _key_extraInitializers), __runInitializers(this, _bytes_initializers, void 0));
|
|
308
|
+
constructor(properties) {
|
|
309
|
+
super(properties);
|
|
310
|
+
__runInitializers(this, _bytes_extraInitializers);
|
|
311
|
+
this.key = properties.key;
|
|
312
|
+
this.bytes = properties.bytes;
|
|
313
|
+
}
|
|
314
|
+
};
|
|
315
|
+
return REQ_Put = _classThis;
|
|
316
|
+
})();
|
|
143
317
|
export { REQ_Put };
|
|
144
|
-
let RESP_Put =
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
318
|
+
let RESP_Put = (() => {
|
|
319
|
+
let _classDecorators = [variant(9)];
|
|
320
|
+
let _classDescriptor;
|
|
321
|
+
let _classExtraInitializers = [];
|
|
322
|
+
let _classThis;
|
|
323
|
+
let _classSuper = MemoryMessage;
|
|
324
|
+
var RESP_Put = class extends _classSuper {
|
|
325
|
+
static { _classThis = this; }
|
|
326
|
+
static {
|
|
327
|
+
const _metadata = typeof Symbol === "function" && Symbol.metadata ? Object.create(_classSuper[Symbol.metadata] ?? null) : void 0;
|
|
328
|
+
__esDecorate(null, _classDescriptor = { value: _classThis }, _classDecorators, { kind: "class", name: _classThis.name, metadata: _metadata }, null, _classExtraInitializers);
|
|
329
|
+
RESP_Put = _classThis = _classDescriptor.value;
|
|
330
|
+
if (_metadata) Object.defineProperty(_classThis, Symbol.metadata, { enumerable: true, configurable: true, writable: true, value: _metadata });
|
|
331
|
+
__runInitializers(_classThis, _classExtraInitializers);
|
|
332
|
+
}
|
|
333
|
+
};
|
|
334
|
+
return RESP_Put = _classThis;
|
|
335
|
+
})();
|
|
149
336
|
export { RESP_Put };
|
|
150
|
-
let REQ_Del =
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
337
|
+
let REQ_Del = (() => {
|
|
338
|
+
let _classDecorators = [variant(10)];
|
|
339
|
+
let _classDescriptor;
|
|
340
|
+
let _classExtraInitializers = [];
|
|
341
|
+
let _classThis;
|
|
342
|
+
let _classSuper = MemoryMessage;
|
|
343
|
+
let _key_decorators;
|
|
344
|
+
let _key_initializers = [];
|
|
345
|
+
let _key_extraInitializers = [];
|
|
346
|
+
var REQ_Del = class extends _classSuper {
|
|
347
|
+
static { _classThis = this; }
|
|
348
|
+
static {
|
|
349
|
+
const _metadata = typeof Symbol === "function" && Symbol.metadata ? Object.create(_classSuper[Symbol.metadata] ?? null) : void 0;
|
|
350
|
+
_key_decorators = [field({ type: "string" })];
|
|
351
|
+
__esDecorate(null, null, _key_decorators, { kind: "field", name: "key", static: false, private: false, access: { has: obj => "key" in obj, get: obj => obj.key, set: (obj, value) => { obj.key = value; } }, metadata: _metadata }, _key_initializers, _key_extraInitializers);
|
|
352
|
+
__esDecorate(null, _classDescriptor = { value: _classThis }, _classDecorators, { kind: "class", name: _classThis.name, metadata: _metadata }, null, _classExtraInitializers);
|
|
353
|
+
REQ_Del = _classThis = _classDescriptor.value;
|
|
354
|
+
if (_metadata) Object.defineProperty(_classThis, Symbol.metadata, { enumerable: true, configurable: true, writable: true, value: _metadata });
|
|
355
|
+
__runInitializers(_classThis, _classExtraInitializers);
|
|
356
|
+
}
|
|
357
|
+
key = __runInitializers(this, _key_initializers, void 0);
|
|
358
|
+
constructor(properties) {
|
|
359
|
+
super(properties);
|
|
360
|
+
__runInitializers(this, _key_extraInitializers);
|
|
361
|
+
this.key = properties.key;
|
|
362
|
+
}
|
|
363
|
+
};
|
|
364
|
+
return REQ_Del = _classThis;
|
|
365
|
+
})();
|
|
165
366
|
export { REQ_Del };
|
|
166
|
-
let RESP_Del =
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
367
|
+
let RESP_Del = (() => {
|
|
368
|
+
let _classDecorators = [variant(11)];
|
|
369
|
+
let _classDescriptor;
|
|
370
|
+
let _classExtraInitializers = [];
|
|
371
|
+
let _classThis;
|
|
372
|
+
let _classSuper = MemoryMessage;
|
|
373
|
+
var RESP_Del = class extends _classSuper {
|
|
374
|
+
static { _classThis = this; }
|
|
375
|
+
static {
|
|
376
|
+
const _metadata = typeof Symbol === "function" && Symbol.metadata ? Object.create(_classSuper[Symbol.metadata] ?? null) : void 0;
|
|
377
|
+
__esDecorate(null, _classDescriptor = { value: _classThis }, _classDecorators, { kind: "class", name: _classThis.name, metadata: _metadata }, null, _classExtraInitializers);
|
|
378
|
+
RESP_Del = _classThis = _classDescriptor.value;
|
|
379
|
+
if (_metadata) Object.defineProperty(_classThis, Symbol.metadata, { enumerable: true, configurable: true, writable: true, value: _metadata });
|
|
380
|
+
__runInitializers(_classThis, _classExtraInitializers);
|
|
381
|
+
}
|
|
382
|
+
};
|
|
383
|
+
return RESP_Del = _classThis;
|
|
384
|
+
})();
|
|
171
385
|
export { RESP_Del };
|
|
172
|
-
let REQ_Iterator_Next =
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
386
|
+
let REQ_Iterator_Next = (() => {
|
|
387
|
+
let _classDecorators = [variant(12)];
|
|
388
|
+
let _classDescriptor;
|
|
389
|
+
let _classExtraInitializers = [];
|
|
390
|
+
let _classThis;
|
|
391
|
+
let _classSuper = MemoryMessage;
|
|
392
|
+
let _id_decorators;
|
|
393
|
+
let _id_initializers = [];
|
|
394
|
+
let _id_extraInitializers = [];
|
|
395
|
+
let _step_decorators;
|
|
396
|
+
let _step_initializers = [];
|
|
397
|
+
let _step_extraInitializers = [];
|
|
398
|
+
var REQ_Iterator_Next = class extends _classSuper {
|
|
399
|
+
static { _classThis = this; }
|
|
400
|
+
static {
|
|
401
|
+
const _metadata = typeof Symbol === "function" && Symbol.metadata ? Object.create(_classSuper[Symbol.metadata] ?? null) : void 0;
|
|
402
|
+
_id_decorators = [field({ type: "string" })];
|
|
403
|
+
_step_decorators = [field({ type: "u32" })];
|
|
404
|
+
__esDecorate(null, null, _id_decorators, { kind: "field", name: "id", static: false, private: false, access: { has: obj => "id" in obj, get: obj => obj.id, set: (obj, value) => { obj.id = value; } }, metadata: _metadata }, _id_initializers, _id_extraInitializers);
|
|
405
|
+
__esDecorate(null, null, _step_decorators, { kind: "field", name: "step", static: false, private: false, access: { has: obj => "step" in obj, get: obj => obj.step, set: (obj, value) => { obj.step = value; } }, metadata: _metadata }, _step_initializers, _step_extraInitializers);
|
|
406
|
+
__esDecorate(null, _classDescriptor = { value: _classThis }, _classDecorators, { kind: "class", name: _classThis.name, metadata: _metadata }, null, _classExtraInitializers);
|
|
407
|
+
REQ_Iterator_Next = _classThis = _classDescriptor.value;
|
|
408
|
+
if (_metadata) Object.defineProperty(_classThis, Symbol.metadata, { enumerable: true, configurable: true, writable: true, value: _metadata });
|
|
409
|
+
__runInitializers(_classThis, _classExtraInitializers);
|
|
410
|
+
}
|
|
411
|
+
id = __runInitializers(this, _id_initializers, void 0);
|
|
412
|
+
step = (__runInitializers(this, _id_extraInitializers), __runInitializers(this, _step_initializers, void 0));
|
|
413
|
+
constructor(properties) {
|
|
414
|
+
super(properties);
|
|
415
|
+
__runInitializers(this, _step_extraInitializers);
|
|
416
|
+
this.id = properties.id;
|
|
417
|
+
this.step = 1;
|
|
418
|
+
}
|
|
419
|
+
};
|
|
420
|
+
return REQ_Iterator_Next = _classThis;
|
|
421
|
+
})();
|
|
193
422
|
export { REQ_Iterator_Next };
|
|
194
|
-
let RESP_Iterator_Next =
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
423
|
+
let RESP_Iterator_Next = (() => {
|
|
424
|
+
let _classDecorators = [variant(13)];
|
|
425
|
+
let _classDescriptor;
|
|
426
|
+
let _classExtraInitializers = [];
|
|
427
|
+
let _classThis;
|
|
428
|
+
let _classSuper = MemoryMessage;
|
|
429
|
+
let _keys_decorators;
|
|
430
|
+
let _keys_initializers = [];
|
|
431
|
+
let _keys_extraInitializers = [];
|
|
432
|
+
let _values_decorators;
|
|
433
|
+
let _values_initializers = [];
|
|
434
|
+
let _values_extraInitializers = [];
|
|
435
|
+
var RESP_Iterator_Next = class extends _classSuper {
|
|
436
|
+
static { _classThis = this; }
|
|
437
|
+
static {
|
|
438
|
+
const _metadata = typeof Symbol === "function" && Symbol.metadata ? Object.create(_classSuper[Symbol.metadata] ?? null) : void 0;
|
|
439
|
+
_keys_decorators = [field({ type: vec("string") })];
|
|
440
|
+
_values_decorators = [field({ type: vec(Uint8Array) })];
|
|
441
|
+
__esDecorate(null, null, _keys_decorators, { kind: "field", name: "keys", static: false, private: false, access: { has: obj => "keys" in obj, get: obj => obj.keys, set: (obj, value) => { obj.keys = value; } }, metadata: _metadata }, _keys_initializers, _keys_extraInitializers);
|
|
442
|
+
__esDecorate(null, null, _values_decorators, { kind: "field", name: "values", static: false, private: false, access: { has: obj => "values" in obj, get: obj => obj.values, set: (obj, value) => { obj.values = value; } }, metadata: _metadata }, _values_initializers, _values_extraInitializers);
|
|
443
|
+
__esDecorate(null, _classDescriptor = { value: _classThis }, _classDecorators, { kind: "class", name: _classThis.name, metadata: _metadata }, null, _classExtraInitializers);
|
|
444
|
+
RESP_Iterator_Next = _classThis = _classDescriptor.value;
|
|
445
|
+
if (_metadata) Object.defineProperty(_classThis, Symbol.metadata, { enumerable: true, configurable: true, writable: true, value: _metadata });
|
|
446
|
+
__runInitializers(_classThis, _classExtraInitializers);
|
|
447
|
+
}
|
|
448
|
+
keys = __runInitializers(this, _keys_initializers, void 0);
|
|
449
|
+
values = (__runInitializers(this, _keys_extraInitializers), __runInitializers(this, _values_initializers, void 0));
|
|
450
|
+
constructor(properties) {
|
|
451
|
+
super(properties);
|
|
452
|
+
__runInitializers(this, _values_extraInitializers);
|
|
453
|
+
this.keys = properties.keys;
|
|
454
|
+
this.values = properties.values;
|
|
455
|
+
}
|
|
456
|
+
};
|
|
457
|
+
return RESP_Iterator_Next = _classThis;
|
|
458
|
+
})();
|
|
215
459
|
export { RESP_Iterator_Next };
|
|
216
|
-
let REQ_Iterator_Stop =
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
460
|
+
let REQ_Iterator_Stop = (() => {
|
|
461
|
+
let _classDecorators = [variant(14)];
|
|
462
|
+
let _classDescriptor;
|
|
463
|
+
let _classExtraInitializers = [];
|
|
464
|
+
let _classThis;
|
|
465
|
+
let _classSuper = MemoryMessage;
|
|
466
|
+
let _id_decorators;
|
|
467
|
+
let _id_initializers = [];
|
|
468
|
+
let _id_extraInitializers = [];
|
|
469
|
+
var REQ_Iterator_Stop = class extends _classSuper {
|
|
470
|
+
static { _classThis = this; }
|
|
471
|
+
static {
|
|
472
|
+
const _metadata = typeof Symbol === "function" && Symbol.metadata ? Object.create(_classSuper[Symbol.metadata] ?? null) : void 0;
|
|
473
|
+
_id_decorators = [field({ type: "string" })];
|
|
474
|
+
__esDecorate(null, null, _id_decorators, { kind: "field", name: "id", static: false, private: false, access: { has: obj => "id" in obj, get: obj => obj.id, set: (obj, value) => { obj.id = value; } }, metadata: _metadata }, _id_initializers, _id_extraInitializers);
|
|
475
|
+
__esDecorate(null, _classDescriptor = { value: _classThis }, _classDecorators, { kind: "class", name: _classThis.name, metadata: _metadata }, null, _classExtraInitializers);
|
|
476
|
+
REQ_Iterator_Stop = _classThis = _classDescriptor.value;
|
|
477
|
+
if (_metadata) Object.defineProperty(_classThis, Symbol.metadata, { enumerable: true, configurable: true, writable: true, value: _metadata });
|
|
478
|
+
__runInitializers(_classThis, _classExtraInitializers);
|
|
479
|
+
}
|
|
480
|
+
id = __runInitializers(this, _id_initializers, void 0);
|
|
481
|
+
constructor(properties) {
|
|
482
|
+
super(properties);
|
|
483
|
+
__runInitializers(this, _id_extraInitializers);
|
|
484
|
+
this.id = properties.id;
|
|
485
|
+
}
|
|
486
|
+
};
|
|
487
|
+
return REQ_Iterator_Stop = _classThis;
|
|
488
|
+
})();
|
|
231
489
|
export { REQ_Iterator_Stop };
|
|
232
|
-
let RESP_Iterator_Stop =
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
490
|
+
let RESP_Iterator_Stop = (() => {
|
|
491
|
+
let _classDecorators = [variant(15)];
|
|
492
|
+
let _classDescriptor;
|
|
493
|
+
let _classExtraInitializers = [];
|
|
494
|
+
let _classThis;
|
|
495
|
+
let _classSuper = MemoryMessage;
|
|
496
|
+
var RESP_Iterator_Stop = class extends _classSuper {
|
|
497
|
+
static { _classThis = this; }
|
|
498
|
+
static {
|
|
499
|
+
const _metadata = typeof Symbol === "function" && Symbol.metadata ? Object.create(_classSuper[Symbol.metadata] ?? null) : void 0;
|
|
500
|
+
__esDecorate(null, _classDescriptor = { value: _classThis }, _classDecorators, { kind: "class", name: _classThis.name, metadata: _metadata }, null, _classExtraInitializers);
|
|
501
|
+
RESP_Iterator_Stop = _classThis = _classDescriptor.value;
|
|
502
|
+
if (_metadata) Object.defineProperty(_classThis, Symbol.metadata, { enumerable: true, configurable: true, writable: true, value: _metadata });
|
|
503
|
+
__runInitializers(_classThis, _classExtraInitializers);
|
|
504
|
+
}
|
|
505
|
+
};
|
|
506
|
+
return RESP_Iterator_Stop = _classThis;
|
|
507
|
+
})();
|
|
237
508
|
export { RESP_Iterator_Stop };
|
|
238
|
-
let REQ_Sublevel =
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
509
|
+
let REQ_Sublevel = (() => {
|
|
510
|
+
let _classDecorators = [variant(16)];
|
|
511
|
+
let _classDescriptor;
|
|
512
|
+
let _classExtraInitializers = [];
|
|
513
|
+
let _classThis;
|
|
514
|
+
let _classSuper = MemoryMessage;
|
|
515
|
+
let _name_decorators;
|
|
516
|
+
let _name_initializers = [];
|
|
517
|
+
let _name_extraInitializers = [];
|
|
518
|
+
var REQ_Sublevel = class extends _classSuper {
|
|
519
|
+
static { _classThis = this; }
|
|
520
|
+
static {
|
|
521
|
+
const _metadata = typeof Symbol === "function" && Symbol.metadata ? Object.create(_classSuper[Symbol.metadata] ?? null) : void 0;
|
|
522
|
+
_name_decorators = [field({ type: "string" })];
|
|
523
|
+
__esDecorate(null, null, _name_decorators, { kind: "field", name: "name", static: false, private: false, access: { has: obj => "name" in obj, get: obj => obj.name, set: (obj, value) => { obj.name = value; } }, metadata: _metadata }, _name_initializers, _name_extraInitializers);
|
|
524
|
+
__esDecorate(null, _classDescriptor = { value: _classThis }, _classDecorators, { kind: "class", name: _classThis.name, metadata: _metadata }, null, _classExtraInitializers);
|
|
525
|
+
REQ_Sublevel = _classThis = _classDescriptor.value;
|
|
526
|
+
if (_metadata) Object.defineProperty(_classThis, Symbol.metadata, { enumerable: true, configurable: true, writable: true, value: _metadata });
|
|
527
|
+
__runInitializers(_classThis, _classExtraInitializers);
|
|
528
|
+
}
|
|
529
|
+
name = __runInitializers(this, _name_initializers, void 0);
|
|
530
|
+
constructor(properties) {
|
|
531
|
+
super(properties);
|
|
532
|
+
__runInitializers(this, _name_extraInitializers);
|
|
533
|
+
this.name = properties.name;
|
|
534
|
+
}
|
|
535
|
+
};
|
|
536
|
+
return REQ_Sublevel = _classThis;
|
|
537
|
+
})();
|
|
253
538
|
export { REQ_Sublevel };
|
|
254
|
-
let RESP_Sublevel =
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
539
|
+
let RESP_Sublevel = (() => {
|
|
540
|
+
let _classDecorators = [variant(17)];
|
|
541
|
+
let _classDescriptor;
|
|
542
|
+
let _classExtraInitializers = [];
|
|
543
|
+
let _classThis;
|
|
544
|
+
let _classSuper = MemoryMessage;
|
|
545
|
+
var RESP_Sublevel = class extends _classSuper {
|
|
546
|
+
static { _classThis = this; }
|
|
547
|
+
static {
|
|
548
|
+
const _metadata = typeof Symbol === "function" && Symbol.metadata ? Object.create(_classSuper[Symbol.metadata] ?? null) : void 0;
|
|
549
|
+
__esDecorate(null, _classDescriptor = { value: _classThis }, _classDecorators, { kind: "class", name: _classThis.name, metadata: _metadata }, null, _classExtraInitializers);
|
|
550
|
+
RESP_Sublevel = _classThis = _classDescriptor.value;
|
|
551
|
+
if (_metadata) Object.defineProperty(_classThis, Symbol.metadata, { enumerable: true, configurable: true, writable: true, value: _metadata });
|
|
552
|
+
__runInitializers(_classThis, _classExtraInitializers);
|
|
553
|
+
}
|
|
554
|
+
};
|
|
555
|
+
return RESP_Sublevel = _classThis;
|
|
556
|
+
})();
|
|
259
557
|
export { RESP_Sublevel };
|
|
260
|
-
let REQ_Clear =
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
558
|
+
let REQ_Clear = (() => {
|
|
559
|
+
let _classDecorators = [variant(18)];
|
|
560
|
+
let _classDescriptor;
|
|
561
|
+
let _classExtraInitializers = [];
|
|
562
|
+
let _classThis;
|
|
563
|
+
let _classSuper = MemoryMessage;
|
|
564
|
+
var REQ_Clear = class extends _classSuper {
|
|
565
|
+
static { _classThis = this; }
|
|
566
|
+
static {
|
|
567
|
+
const _metadata = typeof Symbol === "function" && Symbol.metadata ? Object.create(_classSuper[Symbol.metadata] ?? null) : void 0;
|
|
568
|
+
__esDecorate(null, _classDescriptor = { value: _classThis }, _classDecorators, { kind: "class", name: _classThis.name, metadata: _metadata }, null, _classExtraInitializers);
|
|
569
|
+
REQ_Clear = _classThis = _classDescriptor.value;
|
|
570
|
+
if (_metadata) Object.defineProperty(_classThis, Symbol.metadata, { enumerable: true, configurable: true, writable: true, value: _metadata });
|
|
571
|
+
__runInitializers(_classThis, _classExtraInitializers);
|
|
572
|
+
}
|
|
573
|
+
};
|
|
574
|
+
return REQ_Clear = _classThis;
|
|
575
|
+
})();
|
|
265
576
|
export { REQ_Clear };
|
|
266
|
-
let RESP_Clear =
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
577
|
+
let RESP_Clear = (() => {
|
|
578
|
+
let _classDecorators = [variant(19)];
|
|
579
|
+
let _classDescriptor;
|
|
580
|
+
let _classExtraInitializers = [];
|
|
581
|
+
let _classThis;
|
|
582
|
+
let _classSuper = MemoryMessage;
|
|
583
|
+
var RESP_Clear = class extends _classSuper {
|
|
584
|
+
static { _classThis = this; }
|
|
585
|
+
static {
|
|
586
|
+
const _metadata = typeof Symbol === "function" && Symbol.metadata ? Object.create(_classSuper[Symbol.metadata] ?? null) : void 0;
|
|
587
|
+
__esDecorate(null, _classDescriptor = { value: _classThis }, _classDecorators, { kind: "class", name: _classThis.name, metadata: _metadata }, null, _classExtraInitializers);
|
|
588
|
+
RESP_Clear = _classThis = _classDescriptor.value;
|
|
589
|
+
if (_metadata) Object.defineProperty(_classThis, Symbol.metadata, { enumerable: true, configurable: true, writable: true, value: _metadata });
|
|
590
|
+
__runInitializers(_classThis, _classExtraInitializers);
|
|
591
|
+
}
|
|
592
|
+
};
|
|
593
|
+
return RESP_Clear = _classThis;
|
|
594
|
+
})();
|
|
271
595
|
export { RESP_Clear };
|
|
272
|
-
let REQ_Idle =
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
596
|
+
let REQ_Idle = (() => {
|
|
597
|
+
let _classDecorators = [variant(20)];
|
|
598
|
+
let _classDescriptor;
|
|
599
|
+
let _classExtraInitializers = [];
|
|
600
|
+
let _classThis;
|
|
601
|
+
let _classSuper = MemoryMessage;
|
|
602
|
+
var REQ_Idle = class extends _classSuper {
|
|
603
|
+
static { _classThis = this; }
|
|
604
|
+
static {
|
|
605
|
+
const _metadata = typeof Symbol === "function" && Symbol.metadata ? Object.create(_classSuper[Symbol.metadata] ?? null) : void 0;
|
|
606
|
+
__esDecorate(null, _classDescriptor = { value: _classThis }, _classDecorators, { kind: "class", name: _classThis.name, metadata: _metadata }, null, _classExtraInitializers);
|
|
607
|
+
REQ_Idle = _classThis = _classDescriptor.value;
|
|
608
|
+
if (_metadata) Object.defineProperty(_classThis, Symbol.metadata, { enumerable: true, configurable: true, writable: true, value: _metadata });
|
|
609
|
+
__runInitializers(_classThis, _classExtraInitializers);
|
|
610
|
+
}
|
|
611
|
+
};
|
|
612
|
+
return REQ_Idle = _classThis;
|
|
613
|
+
})();
|
|
277
614
|
export { REQ_Idle };
|
|
278
|
-
let RESP_Idle =
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
615
|
+
let RESP_Idle = (() => {
|
|
616
|
+
let _classDecorators = [variant(21)];
|
|
617
|
+
let _classDescriptor;
|
|
618
|
+
let _classExtraInitializers = [];
|
|
619
|
+
let _classThis;
|
|
620
|
+
let _classSuper = MemoryMessage;
|
|
621
|
+
var RESP_Idle = class extends _classSuper {
|
|
622
|
+
static { _classThis = this; }
|
|
623
|
+
static {
|
|
624
|
+
const _metadata = typeof Symbol === "function" && Symbol.metadata ? Object.create(_classSuper[Symbol.metadata] ?? null) : void 0;
|
|
625
|
+
__esDecorate(null, _classDescriptor = { value: _classThis }, _classDecorators, { kind: "class", name: _classThis.name, metadata: _metadata }, null, _classExtraInitializers);
|
|
626
|
+
RESP_Idle = _classThis = _classDescriptor.value;
|
|
627
|
+
if (_metadata) Object.defineProperty(_classThis, Symbol.metadata, { enumerable: true, configurable: true, writable: true, value: _metadata });
|
|
628
|
+
__runInitializers(_classThis, _classExtraInitializers);
|
|
629
|
+
}
|
|
630
|
+
};
|
|
631
|
+
return RESP_Idle = _classThis;
|
|
632
|
+
})();
|
|
283
633
|
export { RESP_Idle };
|
|
284
|
-
let REQ_Size =
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
634
|
+
let REQ_Size = (() => {
|
|
635
|
+
let _classDecorators = [variant(22)];
|
|
636
|
+
let _classDescriptor;
|
|
637
|
+
let _classExtraInitializers = [];
|
|
638
|
+
let _classThis;
|
|
639
|
+
let _classSuper = MemoryMessage;
|
|
640
|
+
var REQ_Size = class extends _classSuper {
|
|
641
|
+
static { _classThis = this; }
|
|
642
|
+
static {
|
|
643
|
+
const _metadata = typeof Symbol === "function" && Symbol.metadata ? Object.create(_classSuper[Symbol.metadata] ?? null) : void 0;
|
|
644
|
+
__esDecorate(null, _classDescriptor = { value: _classThis }, _classDecorators, { kind: "class", name: _classThis.name, metadata: _metadata }, null, _classExtraInitializers);
|
|
645
|
+
REQ_Size = _classThis = _classDescriptor.value;
|
|
646
|
+
if (_metadata) Object.defineProperty(_classThis, Symbol.metadata, { enumerable: true, configurable: true, writable: true, value: _metadata });
|
|
647
|
+
__runInitializers(_classThis, _classExtraInitializers);
|
|
648
|
+
}
|
|
649
|
+
};
|
|
650
|
+
return REQ_Size = _classThis;
|
|
651
|
+
})();
|
|
289
652
|
export { REQ_Size };
|
|
290
|
-
let RESP_Size =
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
653
|
+
let RESP_Size = (() => {
|
|
654
|
+
let _classDecorators = [variant(23)];
|
|
655
|
+
let _classDescriptor;
|
|
656
|
+
let _classExtraInitializers = [];
|
|
657
|
+
let _classThis;
|
|
658
|
+
let _classSuper = MemoryMessage;
|
|
659
|
+
let __size_decorators;
|
|
660
|
+
let __size_initializers = [];
|
|
661
|
+
let __size_extraInitializers = [];
|
|
662
|
+
var RESP_Size = class extends _classSuper {
|
|
663
|
+
static { _classThis = this; }
|
|
664
|
+
static {
|
|
665
|
+
const _metadata = typeof Symbol === "function" && Symbol.metadata ? Object.create(_classSuper[Symbol.metadata] ?? null) : void 0;
|
|
666
|
+
__size_decorators = [field({ type: "u64" })];
|
|
667
|
+
__esDecorate(null, null, __size_decorators, { kind: "field", name: "_size", static: false, private: false, access: { has: obj => "_size" in obj, get: obj => obj._size, set: (obj, value) => { obj._size = value; } }, metadata: _metadata }, __size_initializers, __size_extraInitializers);
|
|
668
|
+
__esDecorate(null, _classDescriptor = { value: _classThis }, _classDecorators, { kind: "class", name: _classThis.name, metadata: _metadata }, null, _classExtraInitializers);
|
|
669
|
+
RESP_Size = _classThis = _classDescriptor.value;
|
|
670
|
+
if (_metadata) Object.defineProperty(_classThis, Symbol.metadata, { enumerable: true, configurable: true, writable: true, value: _metadata });
|
|
671
|
+
__runInitializers(_classThis, _classExtraInitializers);
|
|
672
|
+
}
|
|
673
|
+
_size = __runInitializers(this, __size_initializers, void 0);
|
|
674
|
+
constructor(properties) {
|
|
675
|
+
super(properties);
|
|
676
|
+
__runInitializers(this, __size_extraInitializers);
|
|
677
|
+
this._size = BigInt(properties.size);
|
|
678
|
+
}
|
|
679
|
+
get size() {
|
|
680
|
+
return Number(this._size);
|
|
681
|
+
}
|
|
682
|
+
};
|
|
683
|
+
return RESP_Size = _classThis;
|
|
684
|
+
})();
|
|
308
685
|
export { RESP_Size };
|
|
309
|
-
let REQ_Persisted =
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
686
|
+
let REQ_Persisted = (() => {
|
|
687
|
+
let _classDecorators = [variant(24)];
|
|
688
|
+
let _classDescriptor;
|
|
689
|
+
let _classExtraInitializers = [];
|
|
690
|
+
let _classThis;
|
|
691
|
+
let _classSuper = MemoryMessage;
|
|
692
|
+
var REQ_Persisted = class extends _classSuper {
|
|
693
|
+
static { _classThis = this; }
|
|
694
|
+
static {
|
|
695
|
+
const _metadata = typeof Symbol === "function" && Symbol.metadata ? Object.create(_classSuper[Symbol.metadata] ?? null) : void 0;
|
|
696
|
+
__esDecorate(null, _classDescriptor = { value: _classThis }, _classDecorators, { kind: "class", name: _classThis.name, metadata: _metadata }, null, _classExtraInitializers);
|
|
697
|
+
REQ_Persisted = _classThis = _classDescriptor.value;
|
|
698
|
+
if (_metadata) Object.defineProperty(_classThis, Symbol.metadata, { enumerable: true, configurable: true, writable: true, value: _metadata });
|
|
699
|
+
__runInitializers(_classThis, _classExtraInitializers);
|
|
700
|
+
}
|
|
701
|
+
};
|
|
702
|
+
return REQ_Persisted = _classThis;
|
|
703
|
+
})();
|
|
314
704
|
export { REQ_Persisted };
|
|
315
|
-
let RESP_Persisted =
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
705
|
+
let RESP_Persisted = (() => {
|
|
706
|
+
let _classDecorators = [variant(25)];
|
|
707
|
+
let _classDescriptor;
|
|
708
|
+
let _classExtraInitializers = [];
|
|
709
|
+
let _classThis;
|
|
710
|
+
let _classSuper = MemoryMessage;
|
|
711
|
+
let __persisted_decorators;
|
|
712
|
+
let __persisted_initializers = [];
|
|
713
|
+
let __persisted_extraInitializers = [];
|
|
714
|
+
var RESP_Persisted = class extends _classSuper {
|
|
715
|
+
static { _classThis = this; }
|
|
716
|
+
static {
|
|
717
|
+
const _metadata = typeof Symbol === "function" && Symbol.metadata ? Object.create(_classSuper[Symbol.metadata] ?? null) : void 0;
|
|
718
|
+
__persisted_decorators = [field({ type: "bool" })];
|
|
719
|
+
__esDecorate(null, null, __persisted_decorators, { kind: "field", name: "_persisted", static: false, private: false, access: { has: obj => "_persisted" in obj, get: obj => obj._persisted, set: (obj, value) => { obj._persisted = value; } }, metadata: _metadata }, __persisted_initializers, __persisted_extraInitializers);
|
|
720
|
+
__esDecorate(null, _classDescriptor = { value: _classThis }, _classDecorators, { kind: "class", name: _classThis.name, metadata: _metadata }, null, _classExtraInitializers);
|
|
721
|
+
RESP_Persisted = _classThis = _classDescriptor.value;
|
|
722
|
+
if (_metadata) Object.defineProperty(_classThis, Symbol.metadata, { enumerable: true, configurable: true, writable: true, value: _metadata });
|
|
723
|
+
__runInitializers(_classThis, _classExtraInitializers);
|
|
724
|
+
}
|
|
725
|
+
_persisted = __runInitializers(this, __persisted_initializers, void 0);
|
|
726
|
+
constructor(properties) {
|
|
727
|
+
super(properties);
|
|
728
|
+
__runInitializers(this, __persisted_extraInitializers);
|
|
729
|
+
this._persisted = properties.persisted;
|
|
730
|
+
}
|
|
731
|
+
get persisted() {
|
|
732
|
+
return this._persisted;
|
|
733
|
+
}
|
|
734
|
+
};
|
|
735
|
+
return RESP_Persisted = _classThis;
|
|
736
|
+
})();
|
|
333
737
|
export { RESP_Persisted };
|
|
334
|
-
let RESP_Error =
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
738
|
+
let RESP_Error = (() => {
|
|
739
|
+
let _classDecorators = [variant(26)];
|
|
740
|
+
let _classDescriptor;
|
|
741
|
+
let _classExtraInitializers = [];
|
|
742
|
+
let _classThis;
|
|
743
|
+
let _classSuper = MemoryMessage;
|
|
744
|
+
let _error_decorators;
|
|
745
|
+
let _error_initializers = [];
|
|
746
|
+
let _error_extraInitializers = [];
|
|
747
|
+
var RESP_Error = class extends _classSuper {
|
|
748
|
+
static { _classThis = this; }
|
|
749
|
+
static {
|
|
750
|
+
const _metadata = typeof Symbol === "function" && Symbol.metadata ? Object.create(_classSuper[Symbol.metadata] ?? null) : void 0;
|
|
751
|
+
_error_decorators = [field({ type: "string" })];
|
|
752
|
+
__esDecorate(null, null, _error_decorators, { kind: "field", name: "error", static: false, private: false, access: { has: obj => "error" in obj, get: obj => obj.error, set: (obj, value) => { obj.error = value; } }, metadata: _metadata }, _error_initializers, _error_extraInitializers);
|
|
753
|
+
__esDecorate(null, _classDescriptor = { value: _classThis }, _classDecorators, { kind: "class", name: _classThis.name, metadata: _metadata }, null, _classExtraInitializers);
|
|
754
|
+
RESP_Error = _classThis = _classDescriptor.value;
|
|
755
|
+
if (_metadata) Object.defineProperty(_classThis, Symbol.metadata, { enumerable: true, configurable: true, writable: true, value: _metadata });
|
|
756
|
+
__runInitializers(_classThis, _classExtraInitializers);
|
|
757
|
+
}
|
|
758
|
+
error = __runInitializers(this, _error_initializers, void 0);
|
|
759
|
+
constructor(properties) {
|
|
760
|
+
super(properties);
|
|
761
|
+
__runInitializers(this, _error_extraInitializers);
|
|
762
|
+
this.error = properties.error;
|
|
763
|
+
}
|
|
764
|
+
};
|
|
765
|
+
return RESP_Error = _classThis;
|
|
766
|
+
})();
|
|
349
767
|
export { RESP_Error };
|
|
350
768
|
//# sourceMappingURL=messages.js.map
|
package/dist/src/messages.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"messages.js","sourceRoot":"","sources":["../../src/messages.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"messages.js","sourceRoot":"","sources":["../../src/messages.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@peerbit/any-store-interface",
|
|
3
|
-
"version": "1.0
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"description": "Anystore interface",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"type": "module",
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
"dao.xyz"
|
|
67
67
|
],
|
|
68
68
|
"dependencies": {
|
|
69
|
-
"@dao-xyz/borsh": "^
|
|
69
|
+
"@dao-xyz/borsh": "^6.0.0",
|
|
70
70
|
"uuid": "^10.0.0"
|
|
71
71
|
},
|
|
72
72
|
"devDependencies": {
|