@spine-event-engine/storage 2.0.0-snapshot.2
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/LICENSE +201 -0
- package/README.md +160 -0
- package/REFERENCE.md +120 -0
- package/dist/entity/entity-history-record-spec.d.ts +26 -0
- package/dist/entity/entity-history-record-spec.d.ts.map +1 -0
- package/dist/entity/entity-history-record-spec.js +77 -0
- package/dist/entity/entity-history-record-spec.js.map +1 -0
- package/dist/entity/entity-history-storage.d.ts +111 -0
- package/dist/entity/entity-history-storage.d.ts.map +1 -0
- package/dist/entity/entity-history-storage.js +40 -0
- package/dist/entity/entity-history-storage.js.map +1 -0
- package/dist/entity/entity-record.d.ts +31 -0
- package/dist/entity/entity-record.d.ts.map +1 -0
- package/dist/entity/entity-record.js +15 -0
- package/dist/entity/entity-record.js.map +1 -0
- package/dist/entity/history-conformance.d.ts +55 -0
- package/dist/entity/history-conformance.d.ts.map +1 -0
- package/dist/entity/history-conformance.js +165 -0
- package/dist/entity/history-conformance.js.map +1 -0
- package/dist/event/event-store.d.ts +141 -0
- package/dist/event/event-store.d.ts.map +1 -0
- package/dist/event/event-store.js +407 -0
- package/dist/event/event-store.js.map +1 -0
- package/dist/index.d.ts +23 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +30 -0
- package/dist/index.js.map +1 -0
- package/dist/internal/delivery-cleanup.d.ts +99 -0
- package/dist/internal/delivery-cleanup.d.ts.map +1 -0
- package/dist/internal/delivery-cleanup.js +38 -0
- package/dist/internal/delivery-cleanup.js.map +1 -0
- package/dist/internal/entity-commit.d.ts +108 -0
- package/dist/internal/entity-commit.d.ts.map +1 -0
- package/dist/internal/entity-commit.js +32 -0
- package/dist/internal/entity-commit.js.map +1 -0
- package/dist/internal/entity-history.d.ts +12 -0
- package/dist/internal/entity-history.d.ts.map +1 -0
- package/dist/internal/entity-history.js +17 -0
- package/dist/internal/entity-history.js.map +1 -0
- package/dist/internal/event-store.d.ts +8 -0
- package/dist/internal/event-store.d.ts.map +1 -0
- package/dist/internal/event-store.js +21 -0
- package/dist/internal/event-store.js.map +1 -0
- package/dist/internal/query-values.d.ts +5 -0
- package/dist/internal/query-values.d.ts.map +1 -0
- package/dist/internal/query-values.js +18 -0
- package/dist/internal/query-values.js.map +1 -0
- package/dist/internal/tenancy.d.ts +89 -0
- package/dist/internal/tenancy.d.ts.map +1 -0
- package/dist/internal/tenancy.js +97 -0
- package/dist/internal/tenancy.js.map +1 -0
- package/dist/memory/canonical-utf8.d.ts +21 -0
- package/dist/memory/canonical-utf8.d.ts.map +1 -0
- package/dist/memory/canonical-utf8.js +65 -0
- package/dist/memory/canonical-utf8.js.map +1 -0
- package/dist/memory/in-memory-entity-commit.d.ts +35 -0
- package/dist/memory/in-memory-entity-commit.d.ts.map +1 -0
- package/dist/memory/in-memory-entity-commit.js +183 -0
- package/dist/memory/in-memory-entity-commit.js.map +1 -0
- package/dist/memory/in-memory-entity-history.d.ts +379 -0
- package/dist/memory/in-memory-entity-history.d.ts.map +1 -0
- package/dist/memory/in-memory-entity-history.js +756 -0
- package/dist/memory/in-memory-entity-history.js.map +1 -0
- package/dist/memory/in-memory-record-storage.d.ts +78 -0
- package/dist/memory/in-memory-record-storage.d.ts.map +1 -0
- package/dist/memory/in-memory-record-storage.js +127 -0
- package/dist/memory/in-memory-record-storage.js.map +1 -0
- package/dist/memory/in-memory-storage-backend.d.ts +38 -0
- package/dist/memory/in-memory-storage-backend.d.ts.map +1 -0
- package/dist/memory/in-memory-storage-backend.js +108 -0
- package/dist/memory/in-memory-storage-backend.js.map +1 -0
- package/dist/memory/in-memory-storage-factory.d.ts +58 -0
- package/dist/memory/in-memory-storage-factory.d.ts.map +1 -0
- package/dist/memory/in-memory-storage-factory.js +148 -0
- package/dist/memory/in-memory-storage-factory.js.map +1 -0
- package/dist/memory/memory-delivery-cleanup.d.ts +32 -0
- package/dist/memory/memory-delivery-cleanup.d.ts.map +1 -0
- package/dist/memory/memory-delivery-cleanup.js +61 -0
- package/dist/memory/memory-delivery-cleanup.js.map +1 -0
- package/dist/memory/tenant-records.d.ts +66 -0
- package/dist/memory/tenant-records.d.ts.map +1 -0
- package/dist/memory/tenant-records.js +573 -0
- package/dist/memory/tenant-records.js.map +1 -0
- package/dist/query/query-execution.d.ts +50 -0
- package/dist/query/query-execution.d.ts.map +1 -0
- package/dist/query/query-execution.js +222 -0
- package/dist/query/query-execution.js.map +1 -0
- package/dist/query/query-policy.d.ts +115 -0
- package/dist/query/query-policy.d.ts.map +1 -0
- package/dist/query/query-policy.js +294 -0
- package/dist/query/query-policy.js.map +1 -0
- package/dist/record/column-mapping.d.ts +41 -0
- package/dist/record/column-mapping.d.ts.map +1 -0
- package/dist/record/column-mapping.js +36 -0
- package/dist/record/column-mapping.js.map +1 -0
- package/dist/record/column-type.d.ts +75 -0
- package/dist/record/column-type.d.ts.map +1 -0
- package/dist/record/column-type.js +69 -0
- package/dist/record/column-type.js.map +1 -0
- package/dist/record/record-column.d.ts +23 -0
- package/dist/record/record-column.d.ts.map +1 -0
- package/dist/record/record-column.js +41 -0
- package/dist/record/record-column.js.map +1 -0
- package/dist/record/record-mask.d.ts +11 -0
- package/dist/record/record-mask.d.ts.map +1 -0
- package/dist/record/record-mask.js +82 -0
- package/dist/record/record-mask.js.map +1 -0
- package/dist/record/record-query.d.ts +102 -0
- package/dist/record/record-query.d.ts.map +1 -0
- package/dist/record/record-query.js +44 -0
- package/dist/record/record-query.js.map +1 -0
- package/dist/record/record-spec.d.ts +101 -0
- package/dist/record/record-spec.d.ts.map +1 -0
- package/dist/record/record-spec.js +159 -0
- package/dist/record/record-spec.js.map +1 -0
- package/dist/record/record-storage.d.ts +202 -0
- package/dist/record/record-storage.d.ts.map +1 -0
- package/dist/record/record-storage.js +234 -0
- package/dist/record/record-storage.js.map +1 -0
- package/dist/record/storage-group.d.ts +17 -0
- package/dist/record/storage-group.d.ts.map +1 -0
- package/dist/record/storage-group.js +37 -0
- package/dist/record/storage-group.js.map +1 -0
- package/dist/storage/storage-factory.d.ts +44 -0
- package/dist/storage/storage-factory.d.ts.map +1 -0
- package/dist/storage/storage-factory.js +54 -0
- package/dist/storage/storage-factory.js.map +1 -0
- package/dist/storage/storage.d.ts +62 -0
- package/dist/storage/storage.d.ts.map +1 -0
- package/dist/storage/storage.js +15 -0
- package/dist/storage/storage.js.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/package.json +56 -0
|
@@ -0,0 +1,234 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright 2026, CodeMatters. All rights reserved.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
|
|
5
|
+
* in compliance with the License. You may obtain a copy of the License at
|
|
6
|
+
*
|
|
7
|
+
* https://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
*
|
|
9
|
+
* Unless required by applicable law or agreed to in writing, software distributed under the License
|
|
10
|
+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
|
|
11
|
+
* or implied. See the License for the specific language governing permissions and limitations under
|
|
12
|
+
* the License.
|
|
13
|
+
*/
|
|
14
|
+
import { RecordMask } from "./record-mask.js";
|
|
15
|
+
import { RecordQuery } from "./record-query.js";
|
|
16
|
+
import { defaultQueryCandidateLimit, QueryCandidateLimitError, StorageQueryEvaluator, } from "../query/query-execution.js";
|
|
17
|
+
import { StorageQueryPolicy } from "../query/query-policy.js";
|
|
18
|
+
/**
|
|
19
|
+
* Common record-oriented storage contract for identified Protobuf messages.
|
|
20
|
+
*/
|
|
21
|
+
export class RecordStorage {
|
|
22
|
+
// prettier-ignore
|
|
23
|
+
/**
|
|
24
|
+
* Declares whether this handle provides atomic compare-and-set mutations.
|
|
25
|
+
*
|
|
26
|
+
* The base contract defaults to `false`. An adapter sets this to `true` only
|
|
27
|
+
* when its `compareAndSet()` implementation is atomic across compatible
|
|
28
|
+
* handles. Registry and delivery code must reject a handle that leaves this
|
|
29
|
+
* capability disabled rather than treating a failed conditional write as a
|
|
30
|
+
* collision.
|
|
31
|
+
*/
|
|
32
|
+
atomicCompareAndSet = false;
|
|
33
|
+
#context;
|
|
34
|
+
#open = true;
|
|
35
|
+
#recordSpec;
|
|
36
|
+
/**
|
|
37
|
+
* Creates storage for one context and record specification.
|
|
38
|
+
* @param context The storage and tenant context.
|
|
39
|
+
* @param recordSpec The records managed by this storage.
|
|
40
|
+
*/
|
|
41
|
+
constructor(context, recordSpec) {
|
|
42
|
+
this.#context = context;
|
|
43
|
+
this.#recordSpec = recordSpec;
|
|
44
|
+
}
|
|
45
|
+
/**
|
|
46
|
+
* Returns the context that scopes this storage and its tenant slices.
|
|
47
|
+
* @returns The storage context.
|
|
48
|
+
*/
|
|
49
|
+
get context() {
|
|
50
|
+
return this.#context;
|
|
51
|
+
}
|
|
52
|
+
/**
|
|
53
|
+
* Returns the declarative record specification for this storage.
|
|
54
|
+
* @returns The managed record specification.
|
|
55
|
+
*/
|
|
56
|
+
get recordSpec() {
|
|
57
|
+
return this.#recordSpec;
|
|
58
|
+
}
|
|
59
|
+
/**
|
|
60
|
+
* Closes this record storage. Future operations fail.
|
|
61
|
+
*/
|
|
62
|
+
close() {
|
|
63
|
+
this.#open = false;
|
|
64
|
+
}
|
|
65
|
+
/**
|
|
66
|
+
* Returns whether this record storage still accepts operations.
|
|
67
|
+
* @returns Whether the storage is open.
|
|
68
|
+
*/
|
|
69
|
+
isOpen() {
|
|
70
|
+
return this.#open;
|
|
71
|
+
}
|
|
72
|
+
/**
|
|
73
|
+
* Deletes one stored record by actual storage slot ID.
|
|
74
|
+
* @param id The storage slot identifier.
|
|
75
|
+
* @returns Whether a record was deleted.
|
|
76
|
+
*/
|
|
77
|
+
async delete(id) {
|
|
78
|
+
this.requireOpen();
|
|
79
|
+
return this.deleteRecord(this.#recordSpec.cloneId(id));
|
|
80
|
+
}
|
|
81
|
+
/**
|
|
82
|
+
* Reads one record by actual storage slot ID, optionally applying a mask.
|
|
83
|
+
* @param id The storage slot identifier.
|
|
84
|
+
* @param options The read options.
|
|
85
|
+
* @returns The matching record, if present.
|
|
86
|
+
*/
|
|
87
|
+
async read(id, options = {}) {
|
|
88
|
+
this.requireOpen();
|
|
89
|
+
const record = await this.readRecord(this.#recordSpec.cloneId(id));
|
|
90
|
+
return record === undefined
|
|
91
|
+
? undefined
|
|
92
|
+
: RecordMask.apply(this.#recordSpec.cloneRecord(record), options.mask);
|
|
93
|
+
}
|
|
94
|
+
/**
|
|
95
|
+
* Reads matching logical record identifiers derived from stored record bodies
|
|
96
|
+
* in deterministic query order.
|
|
97
|
+
* @param query The record query.
|
|
98
|
+
* @returns The matching logical identifiers.
|
|
99
|
+
*/
|
|
100
|
+
async index(query = {}) {
|
|
101
|
+
this.requireOpen();
|
|
102
|
+
RecordQuery.validate(query);
|
|
103
|
+
const entries = await this.queryRecordEntries(query);
|
|
104
|
+
return entries.map((entry) => this.#recordSpec.cloneId(this.#recordSpec.idValueIn(entry.record)));
|
|
105
|
+
}
|
|
106
|
+
/**
|
|
107
|
+
* Processes records by actual storage slot IDs, columns, sorting,
|
|
108
|
+
* continuations, limits, and optional masks.
|
|
109
|
+
*
|
|
110
|
+
* `RecordQuery.ids`, when present, filters storage slot IDs rather than
|
|
111
|
+
* logical IDs derived from record bodies.
|
|
112
|
+
* @param query The record query.
|
|
113
|
+
* @returns The matching records.
|
|
114
|
+
*/
|
|
115
|
+
async query(query = {}) {
|
|
116
|
+
this.requireOpen();
|
|
117
|
+
RecordQuery.validate(query);
|
|
118
|
+
const entries = await this.queryRecordEntries(query);
|
|
119
|
+
return entries.map((entry) => RecordMask.apply(this.#recordSpec.cloneRecord(entry.record), query.mask));
|
|
120
|
+
}
|
|
121
|
+
/**
|
|
122
|
+
* Processes stored records together with the actual storage slot IDs they
|
|
123
|
+
* currently occupy in the requested sorted and continued order.
|
|
124
|
+
*
|
|
125
|
+
* `RecordQuery.ids`, when present, filters those storage slot IDs rather
|
|
126
|
+
* than logical IDs derived from record bodies.
|
|
127
|
+
* @param query The record query.
|
|
128
|
+
* @returns The matching storage entries.
|
|
129
|
+
*/
|
|
130
|
+
async queryEntries(query = {}) {
|
|
131
|
+
this.requireOpen();
|
|
132
|
+
RecordQuery.validate(query);
|
|
133
|
+
const entries = await this.queryRecordEntries(query);
|
|
134
|
+
return entries.map((entry) => Object.freeze({
|
|
135
|
+
id: this.#recordSpec.cloneId(entry.id),
|
|
136
|
+
record: RecordMask.apply(this.#recordSpec.cloneRecord(entry.record), query.mask),
|
|
137
|
+
}));
|
|
138
|
+
}
|
|
139
|
+
/**
|
|
140
|
+
* Executes one provider-independent normalized query plan.
|
|
141
|
+
* @param plan The validated normalized plan.
|
|
142
|
+
* @returns The matching records.
|
|
143
|
+
*/
|
|
144
|
+
async queryPlan(plan) {
|
|
145
|
+
const entries = await this.queryPlanEntries(plan);
|
|
146
|
+
return entries.map((entry) => entry.record);
|
|
147
|
+
}
|
|
148
|
+
/**
|
|
149
|
+
* Executes a normalized plan and retains actual storage slot IDs.
|
|
150
|
+
* @param plan The validated normalized plan.
|
|
151
|
+
* @returns The matching storage entries.
|
|
152
|
+
*/
|
|
153
|
+
async queryPlanEntries(plan) {
|
|
154
|
+
this.requireOpen();
|
|
155
|
+
StorageQueryPolicy.validate(plan, this.queryCapabilities());
|
|
156
|
+
const candidates = await this.queryPlanRecordEntries(plan);
|
|
157
|
+
const candidateLimit = plan.candidateLimit ?? defaultQueryCandidateLimit;
|
|
158
|
+
if (candidates.length > candidateLimit) {
|
|
159
|
+
throw new QueryCandidateLimitError(candidateLimit);
|
|
160
|
+
}
|
|
161
|
+
const materialized = candidates.map((entry) => {
|
|
162
|
+
const stored = this.#recordSpec.materialize(entry.record);
|
|
163
|
+
return { id: entry.id, record: stored.record, columns: stored.columns };
|
|
164
|
+
});
|
|
165
|
+
return StorageQueryEvaluator.evaluate(materialized, plan).map((entry) => Object.freeze({
|
|
166
|
+
id: this.#recordSpec.cloneId(entry.id),
|
|
167
|
+
record: RecordMask.apply(this.#recordSpec.cloneRecord(entry.record), plan.mask?.paths),
|
|
168
|
+
}));
|
|
169
|
+
}
|
|
170
|
+
/**
|
|
171
|
+
* Writes one record, replacing any previous value with the same ID.
|
|
172
|
+
* @param record The record to write.
|
|
173
|
+
* @returns Completes when the record is written.
|
|
174
|
+
*/
|
|
175
|
+
async write(record) {
|
|
176
|
+
this.requireOpen();
|
|
177
|
+
await this.writeRecord(this.#recordSpec.materialize(record));
|
|
178
|
+
}
|
|
179
|
+
/**
|
|
180
|
+
* Compares the current stored record for one ID with an expected value and
|
|
181
|
+
* write or delete only when they still match.
|
|
182
|
+
*
|
|
183
|
+
* Implementations must apply this atomically across independently opened
|
|
184
|
+
* storage handles that share the same logical backing store. Passing
|
|
185
|
+
* `undefined` as `next` performs a conditional delete. A `false` result means
|
|
186
|
+
* the current stored value did not match `expected`, so no mutation was
|
|
187
|
+
* applied. The `id` argument names an actual storage slot, not a logical ID
|
|
188
|
+
* derived from a record body. Adapters that cannot guarantee this behavior
|
|
189
|
+
* are not valid for delivery leasing or deduplication.
|
|
190
|
+
* @param id The storage slot identifier.
|
|
191
|
+
* @param expected The expected current record.
|
|
192
|
+
* @param next The record to write, or undefined to delete.
|
|
193
|
+
* @returns Whether the conditional mutation was applied.
|
|
194
|
+
*/
|
|
195
|
+
async compareAndSet(id, expected, next) {
|
|
196
|
+
this.requireOpen();
|
|
197
|
+
return this.compareAndSetRecord(this.#recordSpec.cloneId(id), expected === undefined ? undefined : this.#recordSpec.materialize(expected), next === undefined ? undefined : this.#recordSpec.materialize(next));
|
|
198
|
+
}
|
|
199
|
+
/**
|
|
200
|
+
* Writes records in order, materializing all values before persistence.
|
|
201
|
+
* @param records The records to write.
|
|
202
|
+
* @returns Completes when the records are written.
|
|
203
|
+
*/
|
|
204
|
+
async writeAll(records) {
|
|
205
|
+
this.requireOpen();
|
|
206
|
+
const materializedRecords = [...records].map((record) => this.#recordSpec.materialize(record));
|
|
207
|
+
await this.writeAllRecords(materializedRecords);
|
|
208
|
+
}
|
|
209
|
+
/**
|
|
210
|
+
* Returns logical normalized features admitted before provider access.
|
|
211
|
+
* @returns The supported query capabilities.
|
|
212
|
+
*/
|
|
213
|
+
queryCapabilities() {
|
|
214
|
+
return { comparisons: [], features: [] };
|
|
215
|
+
}
|
|
216
|
+
/**
|
|
217
|
+
* Returns provider candidates for a normalized plan; shared evaluation applies the complete plan afterward.
|
|
218
|
+
* @param plan The normalized query plan.
|
|
219
|
+
* @returns The candidate storage entries.
|
|
220
|
+
*/
|
|
221
|
+
queryPlanRecordEntries(plan) {
|
|
222
|
+
if (plan.predicate !== undefined || (plan.order?.length ?? 0) > 0 || plan.limit !== undefined)
|
|
223
|
+
return Promise.reject(new TypeError("Storage provider must implement normalized query-plan execution."));
|
|
224
|
+
return this.queryRecordEntries({
|
|
225
|
+
limit: (plan.candidateLimit ?? defaultQueryCandidateLimit) + 1,
|
|
226
|
+
});
|
|
227
|
+
}
|
|
228
|
+
requireOpen() {
|
|
229
|
+
if (!this.#open) {
|
|
230
|
+
throw new Error("RecordStorage is closed.");
|
|
231
|
+
}
|
|
232
|
+
}
|
|
233
|
+
}
|
|
234
|
+
//# sourceMappingURL=record-storage.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"record-storage.js","sourceRoot":"","sources":["../../src/record/record-storage.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Names a distinct physical group for records with the same source and record types.
|
|
3
|
+
*/
|
|
4
|
+
export declare class StorageGroup {
|
|
5
|
+
#private;
|
|
6
|
+
/**
|
|
7
|
+
* Creates a named record-storage group.
|
|
8
|
+
* @param name The non-blank provider-visible group name.
|
|
9
|
+
*/
|
|
10
|
+
constructor(name: string);
|
|
11
|
+
/**
|
|
12
|
+
* Returns the group name.
|
|
13
|
+
* @returns The provider-visible group name.
|
|
14
|
+
*/
|
|
15
|
+
get name(): string;
|
|
16
|
+
}
|
|
17
|
+
//# sourceMappingURL=storage-group.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"storage-group.d.ts","sourceRoot":"","sources":["../../src/record/storage-group.ts"],"names":[],"mappings":"AAcA;;GAEG;AACH,qBAAa,YAAY;;IAGvB;;;OAGG;gBACS,IAAI,EAAE,MAAM;IAOxB;;;OAGG;IACH,IAAI,IAAI,IAAI,MAAM,CAEjB;CACF"}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright 2026, CodeMatters. All rights reserved.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
|
|
5
|
+
* in compliance with the License. You may obtain a copy of the License at
|
|
6
|
+
*
|
|
7
|
+
* https://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
*
|
|
9
|
+
* Unless required by applicable law or agreed to in writing, software distributed under the License
|
|
10
|
+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
|
|
11
|
+
* or implied. See the License for the specific language governing permissions and limitations under
|
|
12
|
+
* the License.
|
|
13
|
+
*/
|
|
14
|
+
/**
|
|
15
|
+
* Names a distinct physical group for records with the same source and record types.
|
|
16
|
+
*/
|
|
17
|
+
export class StorageGroup {
|
|
18
|
+
#name;
|
|
19
|
+
/**
|
|
20
|
+
* Creates a named record-storage group.
|
|
21
|
+
* @param name The non-blank provider-visible group name.
|
|
22
|
+
*/
|
|
23
|
+
constructor(name) {
|
|
24
|
+
if (name.trim().length === 0) {
|
|
25
|
+
throw new Error("Storage group name must not be blank.");
|
|
26
|
+
}
|
|
27
|
+
this.#name = name;
|
|
28
|
+
}
|
|
29
|
+
/**
|
|
30
|
+
* Returns the group name.
|
|
31
|
+
* @returns The provider-visible group name.
|
|
32
|
+
*/
|
|
33
|
+
get name() {
|
|
34
|
+
return this.#name;
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
//# sourceMappingURL=storage-group.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"storage-group.js","sourceRoot":"","sources":["../../src/record/storage-group.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;GAYG;AAEH;;GAEG;AACH,MAAM,OAAO,YAAY;IACd,KAAK,CAAS;IAEvB;;;OAGG;IACH,YAAY,IAAY;QACtB,IAAI,IAAI,CAAC,IAAI,EAAE,CAAC,MAAM,KAAK,CAAC,EAAE,CAAC;YAC7B,MAAM,IAAI,KAAK,CAAC,uCAAuC,CAAC,CAAC;QAC3D,CAAC;QACD,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;IACpB,CAAC;IAED;;;OAGG;IACH,IAAI,IAAI;QACN,OAAO,IAAI,CAAC,KAAK,CAAC;IACpB,CAAC;CACF"}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import type { Message } from "@bufbuild/protobuf";
|
|
2
|
+
import type { RecordSpec } from "../record/record-spec.js";
|
|
3
|
+
import type { RecordStorage } from "../record/record-storage.js";
|
|
4
|
+
import type { StorageGroup } from "../record/storage-group.js";
|
|
5
|
+
import type { Storage, StorageContext } from "./storage.js";
|
|
6
|
+
/**
|
|
7
|
+
* Mandatory storage-adapter seam for Spine TS runtime storage.
|
|
8
|
+
*/
|
|
9
|
+
export declare abstract class StorageFactory implements Storage {
|
|
10
|
+
#private;
|
|
11
|
+
/**
|
|
12
|
+
* Closes the storage factory. Future storage creation fails.
|
|
13
|
+
*/
|
|
14
|
+
close(): void;
|
|
15
|
+
/**
|
|
16
|
+
* Returns whether the storage factory accepts storage creation.
|
|
17
|
+
* @returns Whether the factory is open.
|
|
18
|
+
*/
|
|
19
|
+
isOpen(): boolean;
|
|
20
|
+
/**
|
|
21
|
+
* Creates a record storage for one context and one declarative record specification.
|
|
22
|
+
*
|
|
23
|
+
* Repeated calls share backing records only when context, RecordSpec, and
|
|
24
|
+
* StorageGroup all name the same physical family; two omitted groups are the
|
|
25
|
+
* same ungrouped family. Handles remain independently closeable.
|
|
26
|
+
*
|
|
27
|
+
* @param context Supplies the bounded-context and tenant scope.
|
|
28
|
+
* @param recordSpec Supplies the declarative physical record layout.
|
|
29
|
+
* @param group Separates records that share one source type.
|
|
30
|
+
* @returns The independently closeable record storage handle.
|
|
31
|
+
*/
|
|
32
|
+
createRecordStorage<I, R extends Message>(context: StorageContext, recordSpec: RecordSpec<I, R>, group?: StorageGroup): RecordStorage<I, R>;
|
|
33
|
+
/**
|
|
34
|
+
* Creates a provider-specific record storage.
|
|
35
|
+
*
|
|
36
|
+
* @param context The storage context.
|
|
37
|
+
* @param recordSpec The record specification.
|
|
38
|
+
* @param group Separates records that share one source type.
|
|
39
|
+
* @returns The created record storage.
|
|
40
|
+
*/
|
|
41
|
+
protected abstract onCreateRecordStorage<I, R extends Message>(context: StorageContext, recordSpec: RecordSpec<I, R>, group?: StorageGroup): RecordStorage<I, R>;
|
|
42
|
+
private requireOpen;
|
|
43
|
+
}
|
|
44
|
+
//# sourceMappingURL=storage-factory.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"storage-factory.d.ts","sourceRoot":"","sources":["../../src/storage/storage-factory.ts"],"names":[],"mappings":"AAcA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,oBAAoB,CAAC;AAElD,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAC;AAC3D,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,6BAA6B,CAAC;AACjE,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,4BAA4B,CAAC;AAC/D,OAAO,KAAK,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,cAAc,CAAC;AAE5D;;GAEG;AACH,8BAAsB,cAAe,YAAW,OAAO;;IAGrD;;OAEG;IACH,KAAK,IAAI,IAAI;IAIb;;;OAGG;IACH,MAAM,IAAI,OAAO;IAIjB;;;;;;;;;;;OAWG;IACH,mBAAmB,CAAC,CAAC,EAAE,CAAC,SAAS,OAAO,EACtC,OAAO,EAAE,cAAc,EACvB,UAAU,EAAE,UAAU,CAAC,CAAC,EAAE,CAAC,CAAC,EAC5B,KAAK,CAAC,EAAE,YAAY,GACnB,aAAa,CAAC,CAAC,EAAE,CAAC,CAAC;IAKtB;;;;;;;OAOG;IACH,SAAS,CAAC,QAAQ,CAAC,qBAAqB,CAAC,CAAC,EAAE,CAAC,SAAS,OAAO,EAC3D,OAAO,EAAE,cAAc,EACvB,UAAU,EAAE,UAAU,CAAC,CAAC,EAAE,CAAC,CAAC,EAC5B,KAAK,CAAC,EAAE,YAAY,GACnB,aAAa,CAAC,CAAC,EAAE,CAAC,CAAC;IAEtB,OAAO,CAAC,WAAW;CAKpB"}
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright 2026, CodeMatters. All rights reserved.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
|
|
5
|
+
* in compliance with the License. You may obtain a copy of the License at
|
|
6
|
+
*
|
|
7
|
+
* https://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
*
|
|
9
|
+
* Unless required by applicable law or agreed to in writing, software distributed under the License
|
|
10
|
+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
|
|
11
|
+
* or implied. See the License for the specific language governing permissions and limitations under
|
|
12
|
+
* the License.
|
|
13
|
+
*/
|
|
14
|
+
/**
|
|
15
|
+
* Mandatory storage-adapter seam for Spine TS runtime storage.
|
|
16
|
+
*/
|
|
17
|
+
export class StorageFactory {
|
|
18
|
+
#open = true;
|
|
19
|
+
/**
|
|
20
|
+
* Closes the storage factory. Future storage creation fails.
|
|
21
|
+
*/
|
|
22
|
+
close() {
|
|
23
|
+
this.#open = false;
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* Returns whether the storage factory accepts storage creation.
|
|
27
|
+
* @returns Whether the factory is open.
|
|
28
|
+
*/
|
|
29
|
+
isOpen() {
|
|
30
|
+
return this.#open;
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* Creates a record storage for one context and one declarative record specification.
|
|
34
|
+
*
|
|
35
|
+
* Repeated calls share backing records only when context, RecordSpec, and
|
|
36
|
+
* StorageGroup all name the same physical family; two omitted groups are the
|
|
37
|
+
* same ungrouped family. Handles remain independently closeable.
|
|
38
|
+
*
|
|
39
|
+
* @param context Supplies the bounded-context and tenant scope.
|
|
40
|
+
* @param recordSpec Supplies the declarative physical record layout.
|
|
41
|
+
* @param group Separates records that share one source type.
|
|
42
|
+
* @returns The independently closeable record storage handle.
|
|
43
|
+
*/
|
|
44
|
+
createRecordStorage(context, recordSpec, group) {
|
|
45
|
+
this.requireOpen();
|
|
46
|
+
return this.onCreateRecordStorage(context, recordSpec, group);
|
|
47
|
+
}
|
|
48
|
+
requireOpen() {
|
|
49
|
+
if (!this.#open) {
|
|
50
|
+
throw new Error("StorageFactory is closed.");
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
//# sourceMappingURL=storage-factory.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"storage-factory.js","sourceRoot":"","sources":["../../src/storage/storage-factory.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;GAYG;AASH;;GAEG;AACH,MAAM,OAAgB,cAAc;IAClC,KAAK,GAAG,IAAI,CAAC;IAEb;;OAEG;IACH,KAAK;QACH,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;IACrB,CAAC;IAED;;;OAGG;IACH,MAAM;QACJ,OAAO,IAAI,CAAC,KAAK,CAAC;IACpB,CAAC;IAED;;;;;;;;;;;OAWG;IACH,mBAAmB,CACjB,OAAuB,EACvB,UAA4B,EAC5B,KAAoB;QAEpB,IAAI,CAAC,WAAW,EAAE,CAAC;QACnB,OAAO,IAAI,CAAC,qBAAqB,CAAC,OAAO,EAAE,UAAU,EAAE,KAAK,CAAC,CAAC;IAChE,CAAC;IAgBO,WAAW;QACjB,IAAI,CAAC,IAAI,CAAC,KAAK,EAAE,CAAC;YAChB,MAAM,IAAI,KAAK,CAAC,2BAA2B,CAAC,CAAC;QAC/C,CAAC;IACH,CAAC;CACF"}
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Common closeable contract shared by storage factories and concrete storages.
|
|
3
|
+
*/
|
|
4
|
+
export interface Storage {
|
|
5
|
+
/**
|
|
6
|
+
* Closes the storage. Future operations fail.
|
|
7
|
+
*/
|
|
8
|
+
close(): void;
|
|
9
|
+
/**
|
|
10
|
+
* Returns whether the storage accepts operations.
|
|
11
|
+
* @returns Whether the storage is open.
|
|
12
|
+
*/
|
|
13
|
+
isOpen(): boolean;
|
|
14
|
+
}
|
|
15
|
+
/**
|
|
16
|
+
* Diagnostic context name and tenancy mode before one operation selects a tenant.
|
|
17
|
+
*
|
|
18
|
+
* This is configuration only. It cannot select a physical provider boundary;
|
|
19
|
+
* multitenant storage operations require a complete `StorageContext`.
|
|
20
|
+
*/
|
|
21
|
+
export interface StorageMode {
|
|
22
|
+
/**
|
|
23
|
+
* Bounded Context name used only in diagnostics.
|
|
24
|
+
*/
|
|
25
|
+
readonly name: string;
|
|
26
|
+
/**
|
|
27
|
+
* Whether each storage operation must select a complete tenant.
|
|
28
|
+
*/
|
|
29
|
+
readonly multitenant: boolean;
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* Diagnostic context plus the provider tenant boundary for a storage operation.
|
|
33
|
+
*/
|
|
34
|
+
export type StorageContext = {
|
|
35
|
+
/**
|
|
36
|
+
* Bounded Context name used only in diagnostics.
|
|
37
|
+
*
|
|
38
|
+
* Providers must not use this value in a database, namespace, table, kind,
|
|
39
|
+
* key, query, transaction, lock, cache key, or record-family identity.
|
|
40
|
+
*/
|
|
41
|
+
readonly name: string;
|
|
42
|
+
} & ({
|
|
43
|
+
/**
|
|
44
|
+
* Declares one unpartitioned single-tenant storage boundary.
|
|
45
|
+
*/
|
|
46
|
+
readonly multitenant: false;
|
|
47
|
+
/**
|
|
48
|
+
* Single-tenant storage does not accept a tenant identifier.
|
|
49
|
+
*/
|
|
50
|
+
readonly tenantId?: never;
|
|
51
|
+
} | {
|
|
52
|
+
/**
|
|
53
|
+
* Declares storage partitioned by complete tenant identities.
|
|
54
|
+
*/
|
|
55
|
+
readonly multitenant: true;
|
|
56
|
+
/**
|
|
57
|
+
* Complete generated tenant identity required for provider selection.
|
|
58
|
+
*/
|
|
59
|
+
readonly tenantId: TenantId;
|
|
60
|
+
});
|
|
61
|
+
import type { TenantId } from "@spine-event-engine/proto";
|
|
62
|
+
//# sourceMappingURL=storage.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"storage.d.ts","sourceRoot":"","sources":["../../src/storage/storage.ts"],"names":[],"mappings":"AAcA;;GAEG;AACH,MAAM,WAAW,OAAO;IAGtB;;OAEG;IACH,KAAK,IAAI,IAAI,CAAC;IAEd;;;OAGG;IACH,MAAM,IAAI,OAAO,CAAC;CACnB;AAED;;;;;GAKG;AACH,MAAM,WAAW,WAAW;IAG1B;;OAEG;IACH,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IAEtB;;OAEG;IACH,QAAQ,CAAC,WAAW,EAAE,OAAO,CAAC;CAC/B;AAED;;GAEG;AACH,MAAM,MAAM,cAAc,GAAG;IAG3B;;;;;OAKG;IACH,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;CACvB,GAAG,CACA;IAGE;;OAEG;IACH,QAAQ,CAAC,WAAW,EAAE,KAAK,CAAC;IAE5B;;OAEG;IACH,QAAQ,CAAC,QAAQ,CAAC,EAAE,KAAK,CAAC;CAC3B,GACD;IAGE;;OAEG;IACH,QAAQ,CAAC,WAAW,EAAE,IAAI,CAAC;IAE3B;;OAEG;IACH,QAAQ,CAAC,QAAQ,EAAE,QAAQ,CAAC;CAC7B,CACJ,CAAC;AACF,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,2BAA2B,CAAC"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright 2026, CodeMatters. All rights reserved.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
|
|
5
|
+
* in compliance with the License. You may obtain a copy of the License at
|
|
6
|
+
*
|
|
7
|
+
* https://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
*
|
|
9
|
+
* Unless required by applicable law or agreed to in writing, software distributed under the License
|
|
10
|
+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
|
|
11
|
+
* or implied. See the License for the specific language governing permissions and limitations under
|
|
12
|
+
* the License.
|
|
13
|
+
*/
|
|
14
|
+
export {};
|
|
15
|
+
//# sourceMappingURL=storage.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"storage.js","sourceRoot":"","sources":["../../src/storage/storage.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;GAYG"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"fileNames":["../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2023.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2024.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2023.array.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2023.collection.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2023.intl.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2024.collection.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2024.object.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2024.promise.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2024.regexp.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2024.string.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/.pnpm/@bufbuild+protobuf@2.12.1/node_modules/@bufbuild/protobuf/dist/esm/json-value.d.ts","../../../node_modules/.pnpm/@bufbuild+protobuf@2.12.1/node_modules/@bufbuild/protobuf/dist/esm/codegenv2/types.d.ts","../../../node_modules/.pnpm/@bufbuild+protobuf@2.12.1/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/descriptor_pb.d.ts","../../../node_modules/.pnpm/@bufbuild+protobuf@2.12.1/node_modules/@bufbuild/protobuf/dist/esm/reflect/scalar.d.ts","../../../node_modules/.pnpm/@bufbuild+protobuf@2.12.1/node_modules/@bufbuild/protobuf/dist/esm/descriptors.d.ts","../../../node_modules/.pnpm/@bufbuild+protobuf@2.12.1/node_modules/@bufbuild/protobuf/dist/esm/codegenv1/types.d.ts","../../../node_modules/.pnpm/@bufbuild+protobuf@2.12.1/node_modules/@bufbuild/protobuf/dist/esm/reflect/unsafe.d.ts","../../../node_modules/.pnpm/@bufbuild+protobuf@2.12.1/node_modules/@bufbuild/protobuf/dist/esm/reflect/reflect-types.d.ts","../../../node_modules/.pnpm/@bufbuild+protobuf@2.12.1/node_modules/@bufbuild/protobuf/dist/esm/reflect/guard.d.ts","../../../node_modules/.pnpm/@bufbuild+protobuf@2.12.1/node_modules/@bufbuild/protobuf/dist/esm/wire/binary-encoding.d.ts","../../../node_modules/.pnpm/@bufbuild+protobuf@2.12.1/node_modules/@bufbuild/protobuf/dist/esm/wire/base64-encoding.d.ts","../../../node_modules/.pnpm/@bufbuild+protobuf@2.12.1/node_modules/@bufbuild/protobuf/dist/esm/wire/text-encoding.d.ts","../../../node_modules/.pnpm/@bufbuild+protobuf@2.12.1/node_modules/@bufbuild/protobuf/dist/esm/wire/text-format.d.ts","../../../node_modules/.pnpm/@bufbuild+protobuf@2.12.1/node_modules/@bufbuild/protobuf/dist/esm/reflect/error.d.ts","../../../node_modules/.pnpm/@bufbuild+protobuf@2.12.1/node_modules/@bufbuild/protobuf/dist/esm/reflect/names.d.ts","../../../node_modules/.pnpm/@bufbuild+protobuf@2.12.1/node_modules/@bufbuild/protobuf/dist/esm/reflect/nested-types.d.ts","../../../node_modules/.pnpm/@bufbuild+protobuf@2.12.1/node_modules/@bufbuild/protobuf/dist/esm/reflect/reflect.d.ts","../../../node_modules/.pnpm/@bufbuild+protobuf@2.12.1/node_modules/@bufbuild/protobuf/dist/esm/registry.d.ts","../../../node_modules/.pnpm/@bufbuild+protobuf@2.12.1/node_modules/@bufbuild/protobuf/dist/esm/reflect/path.d.ts","../../../node_modules/.pnpm/@bufbuild+protobuf@2.12.1/node_modules/@bufbuild/protobuf/dist/esm/reflect/index.d.ts","../../../node_modules/.pnpm/@bufbuild+protobuf@2.12.1/node_modules/@bufbuild/protobuf/dist/esm/to-binary.d.ts","../../../node_modules/.pnpm/@bufbuild+protobuf@2.12.1/node_modules/@bufbuild/protobuf/dist/esm/from-binary.d.ts","../../../node_modules/.pnpm/@bufbuild+protobuf@2.12.1/node_modules/@bufbuild/protobuf/dist/esm/wire/size-delimited.d.ts","../../../node_modules/.pnpm/@bufbuild+protobuf@2.12.1/node_modules/@bufbuild/protobuf/dist/esm/wire/index.d.ts","../../../node_modules/.pnpm/@bufbuild+protobuf@2.12.1/node_modules/@bufbuild/protobuf/dist/esm/types.d.ts","../../../node_modules/.pnpm/@bufbuild+protobuf@2.12.1/node_modules/@bufbuild/protobuf/dist/esm/is-message.d.ts","../../../node_modules/.pnpm/@bufbuild+protobuf@2.12.1/node_modules/@bufbuild/protobuf/dist/esm/create.d.ts","../../../node_modules/.pnpm/@bufbuild+protobuf@2.12.1/node_modules/@bufbuild/protobuf/dist/esm/clone.d.ts","../../../node_modules/.pnpm/@bufbuild+protobuf@2.12.1/node_modules/@bufbuild/protobuf/dist/esm/equals.d.ts","../../../node_modules/.pnpm/@bufbuild+protobuf@2.12.1/node_modules/@bufbuild/protobuf/dist/esm/fields.d.ts","../../../node_modules/.pnpm/@bufbuild+protobuf@2.12.1/node_modules/@bufbuild/protobuf/dist/esm/to-json.d.ts","../../../node_modules/.pnpm/@bufbuild+protobuf@2.12.1/node_modules/@bufbuild/protobuf/dist/esm/from-json.d.ts","../../../node_modules/.pnpm/@bufbuild+protobuf@2.12.1/node_modules/@bufbuild/protobuf/dist/esm/merge.d.ts","../../../node_modules/.pnpm/@bufbuild+protobuf@2.12.1/node_modules/@bufbuild/protobuf/dist/esm/extensions.d.ts","../../../node_modules/.pnpm/@bufbuild+protobuf@2.12.1/node_modules/@bufbuild/protobuf/dist/esm/proto-int64.d.ts","../../../node_modules/.pnpm/@bufbuild+protobuf@2.12.1/node_modules/@bufbuild/protobuf/dist/esm/index.d.ts","../../../node_modules/.pnpm/@bufbuild+protobuf@2.12.1/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/timestamp_pb.d.ts","../../../node_modules/.pnpm/@bufbuild+protobuf@2.12.1/node_modules/@bufbuild/protobuf/dist/esm/wkt/timestamp.d.ts","../../../node_modules/.pnpm/@bufbuild+protobuf@2.12.1/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/duration_pb.d.ts","../../../node_modules/.pnpm/@bufbuild+protobuf@2.12.1/node_modules/@bufbuild/protobuf/dist/esm/wkt/duration.d.ts","../../../node_modules/.pnpm/@bufbuild+protobuf@2.12.1/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/any_pb.d.ts","../../../node_modules/.pnpm/@bufbuild+protobuf@2.12.1/node_modules/@bufbuild/protobuf/dist/esm/wkt/any.d.ts","../../../node_modules/.pnpm/@bufbuild+protobuf@2.12.1/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/wrappers_pb.d.ts","../../../node_modules/.pnpm/@bufbuild+protobuf@2.12.1/node_modules/@bufbuild/protobuf/dist/esm/wkt/wrappers.d.ts","../../../node_modules/.pnpm/@bufbuild+protobuf@2.12.1/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/source_context_pb.d.ts","../../../node_modules/.pnpm/@bufbuild+protobuf@2.12.1/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/type_pb.d.ts","../../../node_modules/.pnpm/@bufbuild+protobuf@2.12.1/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/api_pb.d.ts","../../../node_modules/.pnpm/@bufbuild+protobuf@2.12.1/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/cpp_features_pb.d.ts","../../../node_modules/.pnpm/@bufbuild+protobuf@2.12.1/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/empty_pb.d.ts","../../../node_modules/.pnpm/@bufbuild+protobuf@2.12.1/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/field_mask_pb.d.ts","../../../node_modules/.pnpm/@bufbuild+protobuf@2.12.1/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/go_features_pb.d.ts","../../../node_modules/.pnpm/@bufbuild+protobuf@2.12.1/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/java_features_pb.d.ts","../../../node_modules/.pnpm/@bufbuild+protobuf@2.12.1/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/struct_pb.d.ts","../../../node_modules/.pnpm/@bufbuild+protobuf@2.12.1/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/compiler/plugin_pb.d.ts","../../../node_modules/.pnpm/@bufbuild+protobuf@2.12.1/node_modules/@bufbuild/protobuf/dist/esm/wkt/index.d.ts","../../../node_modules/.pnpm/@bufbuild+protobuf@2.12.1/node_modules/@bufbuild/protobuf/dist/esm/codegenv2/boot.d.ts","../../../node_modules/.pnpm/@bufbuild+protobuf@2.12.1/node_modules/@bufbuild/protobuf/dist/esm/codegenv2/embed.d.ts","../../../node_modules/.pnpm/@bufbuild+protobuf@2.12.1/node_modules/@bufbuild/protobuf/dist/esm/codegenv2/enum.d.ts","../../../node_modules/.pnpm/@bufbuild+protobuf@2.12.1/node_modules/@bufbuild/protobuf/dist/esm/codegenv2/extension.d.ts","../../../node_modules/.pnpm/@bufbuild+protobuf@2.12.1/node_modules/@bufbuild/protobuf/dist/esm/codegenv2/file.d.ts","../../../node_modules/.pnpm/@bufbuild+protobuf@2.12.1/node_modules/@bufbuild/protobuf/dist/esm/codegenv2/message.d.ts","../../../node_modules/.pnpm/@bufbuild+protobuf@2.12.1/node_modules/@bufbuild/protobuf/dist/esm/codegenv2/service.d.ts","../../../node_modules/.pnpm/@bufbuild+protobuf@2.12.1/node_modules/@bufbuild/protobuf/dist/esm/codegenv2/symbols.d.ts","../../../node_modules/.pnpm/@bufbuild+protobuf@2.12.1/node_modules/@bufbuild/protobuf/dist/esm/codegenv2/scalar.d.ts","../../../node_modules/.pnpm/@bufbuild+protobuf@2.12.1/node_modules/@bufbuild/protobuf/dist/esm/codegenv2/index.d.ts","../../proto/dist/generated/spine/base/field_path_pb.d.ts","../../proto/dist/generated/spine/core/user_id_pb.d.ts","../../proto/dist/generated/spine/net/internet_domain_pb.d.ts","../../proto/dist/generated/spine/net/email_address_pb.d.ts","../../proto/dist/generated/spine/core/tenant_id_pb.d.ts","../../proto/dist/generated/spine/time/time_pb.d.ts","../../proto/dist/generated/spine/ui/language_pb.d.ts","../../proto/dist/generated/spine/core/actor_context_pb.d.ts","../../proto/dist/generated/spine/core/version_pb.d.ts","../../proto/dist/generated/spine/core/diagnostics_pb.d.ts","../../proto/dist/generated/spine/core/command_pb.d.ts","../../proto/dist/generated/spine/core/enrichment_pb.d.ts","../../proto/dist/generated/spine/core/event_pb.d.ts","../../proto/dist/generated/spine/options_pb.d.ts","../../proto/dist/generated/spine/string/template_string_pb.d.ts","../../proto/dist/src/model/proto-module.d.ts","../../proto/dist/generated/proto-module.d.ts","../../proto/dist/generated/spine/validation/validation_error_pb.d.ts","../../proto/dist/generated/spine/base/error_pb.d.ts","../../proto/dist/generated/spine/core/response_pb.d.ts","../../proto/dist/generated/spine/core/ack_pb.d.ts","../../proto/dist/generated/spine/core/bounded_context_pb.d.ts","../../proto/dist/generated/spine/server/integration/broker_pb.d.ts","../../proto/dist/generated/spine/server/transport/transport_pb.d.ts","../../proto/dist/src/index.d.ts","../src/record/column-type.ts","../src/record/record-column.ts","../src/record/record-mask.ts","../src/record/record-query.ts","../src/record/record-spec.ts","../src/storage/storage.ts","../src/query/query-policy.ts","../src/query/query-execution.ts","../src/record/record-storage.ts","../src/record/storage-group.ts","../src/storage/storage-factory.ts","../src/internal/tenancy.ts","../src/event/event-store.ts","../../proto/dist/generated/spine/server/entity/entity_pb.d.ts","../src/entity/entity-history-storage.ts","../src/memory/canonical-utf8.ts","../src/memory/tenant-records.ts","../src/memory/in-memory-record-storage.ts","../src/memory/in-memory-storage-backend.ts","../../proto/dist/generated/spine/server/entity/state_key_pb.d.ts","../src/entity/entity-history-record-spec.ts","../src/entity/entity-record.ts","../src/memory/in-memory-entity-history.ts","../src/entity/history-conformance.ts","../src/internal/entity-history.ts","../src/internal/entity-commit.ts","../src/memory/in-memory-entity-commit.ts","../src/internal/delivery-cleanup.ts","../src/memory/memory-delivery-cleanup.ts","../src/memory/in-memory-storage-factory.ts","../src/record/column-mapping.ts","../src/index.ts","../src/internal/event-store.ts","../src/internal/query-values.ts"],"fileIdsList":[[74,94],[70,74,94],[72,74],[72,74,125],[70,71,74],[71,74,94],[74],[71,125,126,127,128,129,130,131,132,133],[71,74],[72,73],[74,87,94],[72,74,77,91,94],[74,79,89,94],[70,74,87,94],[70,74,87,90,91,94,95,96,97,98,99,100,101,102,103,104],[73,74,77,94],[73,77,78,83,84,85,86,88],[74,87],[73,74,76,94],[74,77,94],[70,71,74,75,78,93],[79,80,81,82,92],[74,90,91,94],[74,87,94,110],[108],[71,94],[71,94,114,115],[71,72,94],[70,71,94],[71,94,110,114],[72,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123],[106],[74,94,112],[150],[105,124,134],[105,134],[105,124,134,154],[105,124,134,136,139,140,141],[105,124,134,142,144],[105,124,134,142,143],[105,124,134,142,143,144,145,146],[105,124,134,147,153],[105,134,137,138],[105,124,134,143],[105,124,134,156],[134],[105,124,134,135,149],[124,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158],[105,124,134,159,160,161,164,169,173,179],[105,124,159,173],[166,167,173],[105,124,159,160,161,164,173,174,181,182],[105,124,159,160,161,163,164,165,168,170,171],[160,161,162,163,164,165,166,167,168,169,170,171,172,174,177,178,189,190],[105,164,165,170],[105,159,165,170,181,184],[174,180,181,182,183,185],[172],[167],[105,159,165],[105,159,164,165,169,170,171,172,173,176,177,179,180,181,182,185],[105,124,134,159,161,163,164,165,166,167,168,171,173,174,175,178,179,181],[105,163,164,165,166,167,168,171,176],[171],[105,164,165,168,169,170,171,176,177,178,180,182,185,186,187,188],[105,164,165,169,176,187],[105,163,164,168,175],[166],[160],[105],[162],[105,134,161],[105,162,163,164,165,166,167],[105,164,165,168,169],[159]],"fileInfos":[{"version":"bcd24271a113971ba9eb71ff8cb01bc6b0f872a85c23fdbe5d93065b375933cd","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f88bedbeb09c6f5a6645cb24c7c55f1aa22d19ae96c8e6959cbd8b85a707bc6","impliedFormat":1},{"version":"7fe93b39b810eadd916be8db880dd7f0f7012a5cc6ffb62de8f62a2117fa6f1f","impliedFormat":1},{"version":"bb0074cc08b84a2374af33d8bf044b80851ccc9e719a5e202eacf40db2c31600","impliedFormat":1},{"version":"1a7daebe4f45fb03d9ec53d60008fbf9ac45a697fdc89e4ce218bc94b94f94d6","impliedFormat":1},{"version":"f94b133a3cb14a288803be545ac2683e0d0ff6661bcd37e31aaaec54fc382aed","impliedFormat":1},{"version":"f59d0650799f8782fd74cf73c19223730c6d1b9198671b1c5b3a38e1188b5953","impliedFormat":1},{"version":"8a15b4607d9a499e2dbeed9ec0d3c0d7372c850b2d5f1fb259e8f6d41d468a84","impliedFormat":1},{"version":"26e0fe14baee4e127f4365d1ae0b276f400562e45e19e35fd2d4c296684715e6","impliedFormat":1},{"version":"1e9332c23e9a907175e0ffc6a49e236f97b48838cc8aec9ce7e4cec21e544b65","impliedFormat":1},{"version":"3753fbc1113dc511214802a2342280a8b284ab9094f6420e7aa171e868679f91","impliedFormat":1},{"version":"eadcffda2aa84802c73938e589b9e58248d74c59cb7fcbca6474e3435ac15504","affectsGlobalScope":true,"impliedFormat":1},{"version":"105ba8ff7ba746404fe1a2e189d1d3d2e0eb29a08c18dded791af02f29fb4711","affectsGlobalScope":true,"impliedFormat":1},{"version":"00343ca5b2e3d48fa5df1db6e32ea2a59afab09590274a6cccb1dbae82e60c7c","affectsGlobalScope":true,"impliedFormat":1},{"version":"ebd9f816d4002697cb2864bea1f0b70a103124e18a8cd9645eeccc09bdf80ab4","affectsGlobalScope":true,"impliedFormat":1},{"version":"2c1afac30a01772cd2a9a298a7ce7706b5892e447bb46bdbeef720f7b5da77ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"7b0225f483e4fa685625ebe43dd584bb7973bbd84e66a6ba7bbe175ee1048b4f","affectsGlobalScope":true,"impliedFormat":1},{"version":"c0a4b8ac6ce74679c1da2b3795296f5896e31c38e888469a8e0f99dc3305de60","affectsGlobalScope":true,"impliedFormat":1},{"version":"3084a7b5f569088e0146533a00830e206565de65cae2239509168b11434cd84f","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5079c53f0f141a0698faa903e76cb41cd664e3efb01cc17a5c46ec2eb0bef42","affectsGlobalScope":true,"impliedFormat":1},{"version":"32cafbc484dea6b0ab62cf8473182bbcb23020d70845b406f80b7526f38ae862","affectsGlobalScope":true,"impliedFormat":1},{"version":"fca4cdcb6d6c5ef18a869003d02c9f0fd95df8cfaf6eb431cd3376bc034cad36","affectsGlobalScope":true,"impliedFormat":1},{"version":"b93ec88115de9a9dc1b602291b85baf825c85666bf25985cc5f698073892b467","affectsGlobalScope":true,"impliedFormat":1},{"version":"f5c06dcc3fe849fcb297c247865a161f995cc29de7aa823afdd75aaaddc1419b","affectsGlobalScope":true,"impliedFormat":1},{"version":"b77e16112127a4b169ef0b8c3a4d730edf459c5f25fe52d5e436a6919206c4d7","affectsGlobalScope":true,"impliedFormat":1},{"version":"fbffd9337146eff822c7c00acbb78b01ea7ea23987f6c961eba689349e744f8c","affectsGlobalScope":true,"impliedFormat":1},{"version":"a995c0e49b721312f74fdfb89e4ba29bd9824c770bbb4021d74d2bf560e4c6bd","affectsGlobalScope":true,"impliedFormat":1},{"version":"c7b3542146734342e440a84b213384bfa188835537ddbda50d30766f0593aff9","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce6180fa19b1cccd07ee7f7dbb9a367ac19c0ed160573e4686425060b6df7f57","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f02e2476bccb9dbe21280d6090f0df17d2f66b74711489415a8aa4df73c9675","affectsGlobalScope":true,"impliedFormat":1},{"version":"45e3ab34c1c013c8ab2dc1ba4c80c780744b13b5676800ae2e3be27ae862c40c","affectsGlobalScope":true,"impliedFormat":1},{"version":"805c86f6cca8d7702a62a844856dbaa2a3fd2abef0536e65d48732441dde5b5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"e42e397f1a5a77994f0185fd1466520691456c772d06bf843e5084ceb879a0ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"f4c2b41f90c95b1c532ecc874bd3c111865793b23aebcc1c3cbbabcd5d76ffb0","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab26191cfad5b66afa11b8bf935ef1cd88fabfcb28d30b2dfa6fad877d050332","affectsGlobalScope":true,"impliedFormat":1},{"version":"2088bc26531e38fb05eedac2951480db5309f6be3fa4a08d2221abb0f5b4200d","affectsGlobalScope":true,"impliedFormat":1},{"version":"cb9d366c425fea79716a8fb3af0d78e6b22ebbab3bd64d25063b42dc9f531c1e","affectsGlobalScope":true,"impliedFormat":1},{"version":"500934a8089c26d57ebdb688fc9757389bb6207a3c8f0674d68efa900d2abb34","affectsGlobalScope":true,"impliedFormat":1},{"version":"689da16f46e647cef0d64b0def88910e818a5877ca5379ede156ca3afb780ac3","affectsGlobalScope":true,"impliedFormat":1},{"version":"bc21cc8b6fee4f4c2440d08035b7ea3c06b3511314c8bab6bef7a92de58a2593","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ca53d13d2957003abb47922a71866ba7cb2068f8d154877c596d63c359fed25","affectsGlobalScope":true,"impliedFormat":1},{"version":"54725f8c4df3d900cb4dac84b64689ce29548da0b4e9b7c2de61d41c79293611","affectsGlobalScope":true,"impliedFormat":1},{"version":"e5594bc3076ac29e6c1ebda77939bc4c8833de72f654b6e376862c0473199323","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f3eb332c2d73e729f3364fcc0c2b375e72a121e8157d25a82d67a138c83a95c","affectsGlobalScope":true,"impliedFormat":1},{"version":"6f4427f9642ce8d500970e4e69d1397f64072ab73b97e476b4002a646ac743b1","affectsGlobalScope":true,"impliedFormat":1},{"version":"48915f327cd1dea4d7bd358d9dc7732f58f9e1626a29cc0c05c8c692419d9bb7","affectsGlobalScope":true,"impliedFormat":1},{"version":"b7bf9377723203b5a6a4b920164df22d56a43f593269ba6ae1fdc97774b68855","affectsGlobalScope":true,"impliedFormat":1},{"version":"db9709688f82c9e5f65a119c64d835f906efe5f559d08b11642d56eb85b79357","affectsGlobalScope":true,"impliedFormat":1},{"version":"4b25b8c874acd1a4cf8444c3617e037d444d19080ac9f634b405583fd10ce1f7","affectsGlobalScope":true,"impliedFormat":1},{"version":"37be57d7c90cf1f8112ee2636a068d8fd181289f82b744160ec56a7dc158a9f5","affectsGlobalScope":true,"impliedFormat":1},{"version":"a917a49ac94cd26b754ab84e113369a75d1a47a710661d7cd25e961cc797065f","affectsGlobalScope":true,"impliedFormat":1},{"version":"6d3261badeb7843d157ef3e6f5d1427d0eeb0af0cf9df84a62cfd29fd47ac86e","affectsGlobalScope":true,"impliedFormat":1},{"version":"195daca651dde22f2167ac0d0a05e215308119a3100f5e6268e8317d05a92526","affectsGlobalScope":true,"impliedFormat":1},{"version":"8b11e4285cd2bb164a4dc09248bdec69e9842517db4ca47c1ba913011e44ff2f","affectsGlobalScope":true,"impliedFormat":1},{"version":"0508571a52475e245b02bc50fa1394065a0a3d05277fbf5120c3784b85651799","affectsGlobalScope":true,"impliedFormat":1},{"version":"8f9af488f510c3015af3cc8c267a9e9d96c4dd38a1fdff0e11dc5a544711415b","affectsGlobalScope":true,"impliedFormat":1},{"version":"fc611fea8d30ea72c6bbfb599c9b4d393ce22e2f5bfef2172534781e7d138104","affectsGlobalScope":true,"impliedFormat":1},{"version":"0bd714129fca875f7d4c477a1a392200b0bcd13fb2e80928cd334b63830ea047","affectsGlobalScope":true,"impliedFormat":1},{"version":"e2c9037ae6cd2c52d80ceef0b3c5ffdb488627d71529cf4f63776daf11161c9a","affectsGlobalScope":true,"impliedFormat":1},{"version":"135d5cf4d345f59f1a9caadfafcd858d3d9cc68290db616cc85797224448cccc","affectsGlobalScope":true,"impliedFormat":1},{"version":"bc238c3f81c2984751932b6aab223cd5b830e0ac6cad76389e5e9d2ffc03287d","affectsGlobalScope":true,"impliedFormat":1},{"version":"4a07f9b76d361f572620927e5735b77d6d2101c23cdd94383eb5b706e7b36357","affectsGlobalScope":true,"impliedFormat":1},{"version":"7c4e8dc6ab834cc6baa0227e030606d29e3e8449a9f67cdf5605ea5493c4db29","affectsGlobalScope":true,"impliedFormat":1},{"version":"de7ba0fd02e06cd9a5bd4ab441ed0e122735786e67dde1e849cced1cd8b46b78","affectsGlobalScope":true,"impliedFormat":1},{"version":"6148e4e88d720a06855071c3db02069434142a8332cf9c182cda551adedf3156","affectsGlobalScope":true,"impliedFormat":1},{"version":"d63dba625b108316a40c95a4425f8d4294e0deeccfd6c7e59d819efa19e23409","affectsGlobalScope":true,"impliedFormat":1},{"version":"0568d6befee03dd435bed4fc25c4e46865b24bdcb8c563fdc21f580a2c301904","affectsGlobalScope":true,"impliedFormat":1},{"version":"1ce14b81c5cc821994aa8ec1d42b220dd41b27fcc06373bce3958af7421b77d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3a048b3e9302ef9a34ef4ebb9aecfb28b66abb3bce577206a79fee559c230da","affectsGlobalScope":true,"impliedFormat":1},{"version":"42324ae49b347a0c3786cbbc137112fdaffa46e2c62fb5f4ea316e23a8041da8","impliedFormat":99},{"version":"da4758de0c6609eaa77775a385f040bf8b0f927c899d27e94e106bc37a1aa97d","impliedFormat":99},{"version":"712d3d297f55c5a7e89f822f088a1d1ba20276daf2633d9973d0ce82be3a506a","impliedFormat":99},{"version":"dcfa8edc5da695585e53b7544faee29745b66180d4501198c56692b0f0d52818","impliedFormat":99},{"version":"0f48464cd48a8e3ea5312f62c3b758c0c51c2fc2861294b67157e526ba6d005f","impliedFormat":99},{"version":"705aa653e781823df677190a8ff684805739e74f2f50860d310e8601da19d852","impliedFormat":99},{"version":"9e4a31ab17c275f49625e9cc5d5c1130c67ba86af532294c357534594631f40e","impliedFormat":99},{"version":"64eeef76c7037e61d4bb05f70076978105105f7e13b3191b8d1e17a3ac238069","impliedFormat":99},{"version":"5593440344062522e165ac4e22fb2c5b5b5e37c36f1c4eec28c4a45ab9cd69b4","impliedFormat":99},{"version":"692f1e4e9ae2e36b9de3c7c095b9cdd5d2c61cb5cb95ac07f8c3ef96581bd112","impliedFormat":99},{"version":"213018b77ede3d85fb08e7c3f16eb74fdd63fe0f8c426cf9bd073f56ae4f74a5","impliedFormat":99},{"version":"456a022fbac8ade78d45f4872b51732d4fa9277869fe5e872b84129b10c99988","impliedFormat":99},{"version":"e2edffb28e4b058115ff37c9eae06b5e9e346a04c4a69e134a6aa889d0461741","impliedFormat":99},{"version":"9e7a73194e54c8997d305f1fd55084b6c00345432549d5e4911a8d209dacaab6","impliedFormat":99},{"version":"3e7e8574836aa676bd5fbd732b8577e3894e4d84a9a1783bc95b33cb07d47598","impliedFormat":99},{"version":"6d537343a60b60a5074a059971cd019139ce16bc07c8dace952c2d1e6b061bc4","impliedFormat":99},{"version":"6e5f487a0ea2e10829d45b7a3888ade2e901ec4423a48c0ff5aee355bc70d5aa","impliedFormat":99},{"version":"213376670843aa2398aaaf57967b47ac967d9869e161df41a0dd6e4e21489119","impliedFormat":99},{"version":"f93007dc88d8256405248be4806e41044f91fe0b71e59655fd775f8e153de71d","impliedFormat":99},{"version":"83b3f4318d585a7353766468259f26b3dbe00c1e2584f269c03088749416c889","impliedFormat":99},{"version":"8d9e472be581576e30f30783d8c30b46e45acfdf0cbcd6dc7f37bb34672412cd","impliedFormat":99},{"version":"2fd4db5d2e22cee5ba5a5ee45c7357498cc1c11583a4727b2b5a76b535f90b8f","impliedFormat":99},{"version":"ab8f7dd0e886d2b7e38f7754fd24c4d029cb8eeb8f43262c3f182b2fe894ee4b","impliedFormat":99},{"version":"a7114eb40f84278eacbd3b67a10f28bde8f139e4b5c9e7be634f32d6be79a0f7","impliedFormat":99},{"version":"2415bfa117b2a24e7d41d229e6bda3fe3679ef765b92b73fb12cd01a8db9491d","impliedFormat":99},{"version":"d13e95194a4e39d255971136c025679c16c5f72cbfdc4c9d49075c7f9129b68f","impliedFormat":99},{"version":"a169ea6f6eb49b7ac0212d3070f4379d7433ac098ed46b6d2867ae24839cd79a","impliedFormat":99},{"version":"cc5970c174f4d5473201768c5ed267c4052efec308b1e5537132c2525bf6e3cd","impliedFormat":99},{"version":"44eed2a3eefa6ef676a7810b6c75bff948b8a4840e08d3a4cd531e629b20d74e","impliedFormat":99},{"version":"7e0736c57a0a0fe112725146a32f78c69765bbe397a0f5b5877fd12b8f60a203","impliedFormat":99},{"version":"23fca36fb482f1c8c939c03f40ed1a42601c44292a0fa1a0088e41bc5017c51e","impliedFormat":99},{"version":"b10dce423fc5b5e0772606342d4d436ebdaa2d2ab007101eec445f8442ec916a","impliedFormat":99},{"version":"2f9ea699735e78c9451c886e75cb5994cdba1fa56720eefca80df2302cc94930","impliedFormat":99},{"version":"d41fd5f032feb9e70ab1145ca579d197e962a52a22cdc3b4f2983f97b3225048","impliedFormat":99},{"version":"8ccfd8867eb08b17c7fe3a75c251f014d583defe37ee21d592a53badb400724b","impliedFormat":99},{"version":"6798d285cf63c6416c86690891c0b7bfc9c8feaa1ff8a932d4095889b4a42bef","impliedFormat":99},{"version":"b380e7bc87c19cbb2be0c64e05a1dff6135d08c10558610779d3194704d4c7ea","impliedFormat":99},{"version":"ba2a7dd1f6ed9a9b4cb99c9a8378a71b4402308b2d51bdc1957dfd455b457694","impliedFormat":99},{"version":"644b3f8b803367fe3b23224a342cb9a4dfe060d74a751d12002e6e7f52e5e461","impliedFormat":99},{"version":"5f074c98bd1a217f18db5aac2e27ff6e9f005d77befcacc1ec59fdcdc6ca60dd","impliedFormat":99},{"version":"97d02f298f92b4bf04b507880c48a41272122fe6888a5bb0a077437026453d24","impliedFormat":99},{"version":"67c45e7d971a3a72406ae5ac48080d4a4cb5ecc032b5a46cfbd69328a17a69b9","impliedFormat":99},{"version":"10d36cb847747faa56ff9f0f307b98b5f217349eb23dd7594e86c565e470aa2a","impliedFormat":99},{"version":"77cb5bf94be52625eb33c867d13260726c08757092c221605cc165941641e05d","impliedFormat":99},{"version":"4b96beb38c71f31d9427863a8116f0f74f766c35c98094df8e5d84a821a56bd9","impliedFormat":99},{"version":"055e8888f5de38fb5ea37ae63b1f8b0e6d7af10081accc5898243b059f32cb3d","impliedFormat":99},{"version":"f8a1f5c4975d9477c7a68300d84263645957fff2275aad159a0ce7fb2dc781a0","impliedFormat":99},{"version":"52a7510b2e1899b56dc446a3ff6f3eb929e11a754bbb9b1cae9a9d3aff2c9f42","impliedFormat":99},{"version":"903dc49a69785783f17abda4b44a74b080c8fbe7cfcaa06074dca76638a2bd13","impliedFormat":99},{"version":"e219a353846d8c188bd80e6e360392f9b26d0aafa2957322cc602083408a4d2c","impliedFormat":99},{"version":"4db332d1bbe5734c299299685213026cc537064ebf75513faf2182e038b45583","impliedFormat":99},{"version":"806a54bf89448522cdd6b9bd9a514034e5c727a0cda161ec06e065545218ecdc","impliedFormat":99},{"version":"80eca435a8e1f2a4d0145e968e7b46b6693aa9f09137395965a2ff583eaad5fc","impliedFormat":99},{"version":"1d8f23b86506881304902042050e043ea7d3ec4e3145196ef58f5c16808e6a81","impliedFormat":99},{"version":"6c9ce902e8cc2fdfa2d7979fdff2ae341966610baa6209ad6dde57f503d49fa0","impliedFormat":99},{"version":"0eaa960ef12452dbcdf65c8eac7c911faef8f459ed39a99d2ab34b9015aecca3","impliedFormat":99},{"version":"dbb274c45c744c2fb4a135fd7f5efb1e1c9ed1394de0f0ce776b38443faf5aa5","impliedFormat":99},{"version":"72c4a46226a3d7d6fa883cac212f2a346c9052de6cd3a895988afa2e81698ea6","impliedFormat":99},{"version":"314af91ec010e81f89207256064c68871798d2f979a632d227a4e9e2379b8f75","impliedFormat":99},{"version":"c1c5a951894ba0de853755f53a860454eeb12e4550e44faced1702ec48b7032b","impliedFormat":99},{"version":"9b099b3f8674577109eccbeb4e7d1fa54ce0c4d781b88e45d2ebea7765da879c","impliedFormat":99},{"version":"c8e4a090dd30aa3cd8a35910bfc1b055ed8d3dc523b60890b3ccefb4dbed84bf","impliedFormat":99},{"version":"38988be62089d8a4f115ddf971488a63025b5faa993856b59d831513e33344da","impliedFormat":99},{"version":"c361c3d85a097d0b6648da8bd6e19a2ddab396c31f4313de7d23ab9851d53af1","impliedFormat":99},{"version":"1761d398c323f9bcacb4d40e685f0fd541d70d47f430aab96eae37eb3c4e2498","impliedFormat":99},{"version":"1584db1c0718d01f4c6bf92bc15f796fe5ae2f65b7f56eaa61698ff5f108a67c","impliedFormat":99},{"version":"dcb037b1ced96f1949fedc8ba50ab1c6f01b64600d2ee7353cd4a831f1b502b5","impliedFormat":99},{"version":"b5120d44949548d379ee2c414573515deb873c2d38cce6f0df826dc7c33135a5","impliedFormat":99},{"version":"ca94e79ea0f85bbca862bcd6b11ecd0ebb873405481f14c3977e2bc4876efb0a","impliedFormat":99},{"version":"5c3c71a3f4fc0975c2746cb99c96808bc873fbf5456e868e7b99a84573295217","impliedFormat":99},{"version":"95a84e9c94c0284e4827d474772cabd0f39a4d8a33748ea06c349a583022a369","impliedFormat":99},{"version":"258c58fff49890ca80aae4e1a07e75237119ba23665222ddbf0bc3274ece20a0","impliedFormat":99},{"version":"dfd88400af9f381f772dc534fe1635fc7db490dca71bf06c13ce8e83dbbee40d","impliedFormat":99},{"version":"4f9d4a05824659b6913ad759841884ccfa66a17cba339f7628c187f54429e468","impliedFormat":99},{"version":"a3b34a3bd7ca764da6b3e639449f6e2afbcf606c40215d649198bd409e6d4a86","impliedFormat":99},{"version":"2f5be92c28d59ecb8aea18445f5c3896a37d643e9f8c5c45fd0c0f620712a157","impliedFormat":99},{"version":"7505c41791bb83bf71295be842e3080ac261a4d20f8419f2884dc865706cbf91","impliedFormat":99},{"version":"03073900a3b6b1c5da41c823403ebdf3e22da58823ea7e42017ac91a36c0aabd","impliedFormat":99},{"version":"698f7f1a2aa9e9b8bc05efe6652bd629b095b8c2f0f6f675255484166140de2c","impliedFormat":99},{"version":"c7342e9e7160d0e490d688d23753ae3e6e3f9623da18caa449e27e872d9f4fa6","impliedFormat":99},{"version":"ea0fdffbd6afa6171cc2f687fdd883f29f8c96a210eec256bde515ece6bbb36a","impliedFormat":99},{"version":"b412f2cfde1d51ff5065b6884e9f1508e6e3c94fd8562664f3b6330641b59bc1","impliedFormat":99},{"version":"0e0449a1fe5f90b42355e9be24bb2fd9c30beeef5b5df36e2b055d7dffc55181","impliedFormat":99},{"version":"8d7189d325069c648b65d243433d89abf634eed20ccf54a9273709d86811a750","impliedFormat":99},{"version":"a7ec1d045c3c4bd3f0b6ef178edc66c18e6ae8f1782b019a7e9bed702e64e997","impliedFormat":99},{"version":"82e06b5048e3793d67037665976d63e6fbcd18a426442db0ce8304b11d44e61c","impliedFormat":99},{"version":"dcc0be65a6456e479046868c8ca4f50334c880cc5bedaec66b31a1306d6f5603","impliedFormat":99},{"version":"9e8784fff8e61afa8df7b8bf910763824a3b23be0521e9b9adf9d1023e2c8d74","impliedFormat":99},{"version":"ec508027fe75ed9ddb4f4d0b0417db45a64909cf449410bc0f0b27f4d1e3becc","impliedFormat":99},{"version":"7e9569778418246514937d76c6855e869d93de1a4c4444fccfe3cc4b3ebfa021","impliedFormat":99},{"version":"49c27e6522fcb7ecea3d98cf09e92b9db33ffe4f7894ced12cdb08434f1f5b63","signature":"346b2c6c52dec2d84a220200144fde7129e6371b4394727b1f9ea5fa41b288a5","impliedFormat":99},{"version":"75461305d46523923e4df072aae1932c5243c4fae54553cfd6f46d7e4104b0e5","signature":"f493f629ce972ff6a417c0dff04df7de13978ddb727842e039fd0d51c80d33e7","impliedFormat":99},{"version":"89b7e72679012149a19cc65a6e576b78481abec25595f50ad60e493e8411c303","signature":"ed99f8a4cc497b631725914dd474c2b51db7122ea8def87f9c1dd8f9de5e7c6a","impliedFormat":99},{"version":"cef33f0e844daa25f63f84bdc9ffcef585c2f1b8d9e09d2b5fcc168b03c66a53","signature":"882a223037493ab0d7134141cce32bae72f76d743a010506f73348313a20a507","impliedFormat":99},{"version":"e41ad85ec0e3892bdd94c03c6eaecccc038fab3df97bf3fa973964947eba3f85","signature":"cf4b0726b7cfacd2619077fa9c6cd1cb118b1b327954fae0dad54ca8be86489f","impliedFormat":99},{"version":"77c937847cb198ab00c37ad5dcd7ffdb01e84f71bd9ac1959b3c0feb1e835ee1","signature":"a36824a4241a1a0f71bacd1d271d1ab52cdb2f996ae54db5f50f2758a9375c2c","impliedFormat":99},{"version":"bcbd0a210e5dc3112abc47922e5f4bb1d2dae30a7587084afc3f17bb9dd82911","signature":"f3b335ea86f92877ee5b262d03e6887786970dcb02bcb05da23c1c7779e63427","impliedFormat":99},{"version":"0f119dde6b9c5519675ecb9b8ad718997d018248cd761a4b7cdccabef87ca877","signature":"a8a6d9661c3c6ce716dbfc255d8c0dabd63cf4da10fcbc198ac6297c55a38ca0","impliedFormat":99},{"version":"02f306fcf19e2ffdb86e551c05a85309127119d58398151a362ec21376651411","signature":"132cbeeb6192435bcfd0b9fae53e618a0e997c403032278ae7660ae8f4b63f5e","impliedFormat":99},{"version":"7ef5b0031b466f6a446f92fef66d4a72bdd1d0536df19d7f7b6b46899939a044","signature":"a23de58cbf5168209351142661d4dafa98c5d7868e754460e230a14d68d98a13","impliedFormat":99},{"version":"f622ee25ff5f40954cf3bde05f5704928f56e9abf331fce6567cf18f6c04999a","signature":"303d17a9b5866bb6feaf0a600fd39f1ee6f28ca563b98571f3d471746fd8b546","impliedFormat":99},{"version":"b9fe8f3343ab2af429f01a039e39dbce03f151c6bba88bc549a9892431eb5fdb","signature":"ee7171b67bc9f0058af7d420d91407b498aaf8a0dd06b7a086aa25d7789bfceb","impliedFormat":99},{"version":"d8afbf6de73a0568ea1910439de2689430a7113a8c28be15e95409c8f4df4c0f","signature":"f8eae6640b9474630311e6b6e1d63e7053648f2e2bd11eaf5c0658d10da13273","impliedFormat":99},{"version":"0cff780452c723944e680cf277838a4df68d6984e2f0a47494ee84e9b1446713","impliedFormat":99},{"version":"6eaee624872f18eca28721b160de5fb5023efd2fa60e0d6956c3767b48ce2b82","signature":"1e6d6dd1eb50f79492ee068e9c5acbdc9ff13ca1d108b158ee7f863226507b22","impliedFormat":99},{"version":"c933281dd5647b3024d1caad315d1e4d48d367561e57c2d46381e9f01f4d97b1","signature":"7d4581c823b3f3c9482b2d170ad7ee5ff20aef60fb9e9882286bab72f5cf4194","impliedFormat":99},{"version":"8b4d5f930321fa33b6f8d4ff2ecf9bdd51c97ec8ffcb8bd1dd28146b36ffd117","signature":"a37dbc778577b2a531ee915e1b4fdec41ea939d31382b59b35027f18059a4074","impliedFormat":99},{"version":"0392e7cf59f5a08b11df473ed843db4c30fb873b505f1a40f45f8fc8b3914866","signature":"226fc4c1ebab07b65c0109d335e3b50711daeaa23e0f533dbd2832f530425bdd","impliedFormat":99},{"version":"8c8be3717c0eda6c1f34cf442929f7d109e55f386b015a271dd895dd0bc4a4bd","signature":"e0c32f4233276206a79d4e365d37b97f8adf3f60055866636273378287fad86f","impliedFormat":99},{"version":"3bccb53eb8569a4a36d72b90ccc1b24431f4223488f2a8b2dbe46e27fd610b66","impliedFormat":99},{"version":"b51989ebf6135fe5a05bd27f7d0094d91f4bd0547b3bff032860e7f3c7f0699f","signature":"b72f1ea05e4fbac71f074c80fe0e17b6ca72259882ccc7c9d345d039891b8b29","impliedFormat":99},{"version":"5c8f81510e2ed8dba5e3661259d1570a4f21474ee7e72009b87c881f089f4994","signature":"416246fae26d9c0d2bcd958d0b5b22ab65a87ca06fb5b5d9e31dee7b47ced2a9","impliedFormat":99},{"version":"db8670be87b856f809e543e4010fc2eaa5426496dab765cbbf527cc040034bfa","signature":"1ae6ca7c4ab8ff1b174b2689afc35887482bc9c03034382c25c41cdd7255b559","impliedFormat":99},{"version":"21238b0ff43fa471e5e80afb4e6d4b81d706c091a114dc8e218358ce68c84212","signature":"0d41a6500cd1ce062a4de192b1637f1942a7679fc6fb2e62a3245838fb1cd573","impliedFormat":99},{"version":"09dea56c46f2491d0a9da2ecb26cddca34c691e977c8badbb61d0472e9545bb7","signature":"3d761c56b3f3aa8564396edee7a73c414c64c9266362aae5b45d0d55c498ba48","impliedFormat":99},{"version":"d45e66c16f072ec21c2efc3963270e25579f1eba348569dfe1e55131151e524e","signature":"f27d12245b3d132d636d53664603abec61c8d6c9e191757511e69ec05a167fd9","impliedFormat":99},{"version":"64f35e692bcf710970015591e92c880d99bcd3929a4f89a5bef6ae6f2434b4df","signature":"5b33c7fc1de784b978752f353a2ffde5155c9756a5f70e551c59339e96a7a8f2","impliedFormat":99},{"version":"e47b22e0129bcfb9e1ff12423af1723e125eb2420e511c0122bc79a9f610111f","signature":"d98dd5a084ed1f0d90dfdde00ac77b407883f576506a1d346ba401eb3fd8a1c5","impliedFormat":99},{"version":"b6823d3cb6751b936e569b301adb29c6bf6eece5e3c742d973810f753d502615","signature":"88ecf9e2d618754310593ae9204774e07c5fbea153a31e9d33a1703170c6c7a7","impliedFormat":99},{"version":"0234e4a9f22882ff7a8beab138b9dee9af3b5981dc199ebc40ce175572643a23","signature":"7700a997adf293e549bb1e1bbd547b49710b26542e0bf42fd148a7d944804e54","impliedFormat":99},{"version":"fe58de7e1f8a4969a6141e97fad7247f7dfd8c82cd1392d6133609f68fb08133","signature":"2a24fe9d0abecffdb5a4a47d68f5f31e44777451fa22884a8f22cac392a8a60a","impliedFormat":99},{"version":"0ccbf0292bf8d3bec783343dc978bc607c7e296b1745453a712875816a9a5865","signature":"3fa9c760ce99d8f49cf1bb806998aa22d479b6fc10e32abbafe2466d80f0f00e","impliedFormat":99},{"version":"1bc0e249257ed16cbcc900400a9c87b8815212c09fae99fc2269beba311f8e6e","signature":"3b41a9160c98b9aedf78c30d28ef090a47826bb133b4955bbe1d27470c3c2bc5","impliedFormat":99},{"version":"c695dd5a419e53da45ba9bbe7204b7501928b29792a2c79b7c7aa6678bb8f520","signature":"9c8b2de88481e74dfbeba14156a5d6df4ea3659e3c83b290ca7c107d8abfad51","impliedFormat":99}],"root":[[160,172],[174,178],[180,193]],"options":{"composite":true,"declaration":true,"declarationMap":true,"exactOptionalPropertyTypes":true,"isolatedDeclarations":true,"module":199,"noImplicitOverride":true,"noUncheckedIndexedAccess":true,"outDir":"./","rootDir":"../src","skipLibCheck":false,"sourceMap":true,"strict":true,"target":11,"tsBuildInfoFile":"./tsconfig.tsbuildinfo","useUnknownInCatchVariables":true,"verbatimModuleSyntax":true},"referencedMap":[[97,1],[75,2],[125,3],[126,4],[127,5],[128,6],[129,7],[134,8],[130,6],[133,7],[131,9],[71,2],[96,1],[74,10],[98,11],[103,12],[99,1],[91,13],[101,14],[105,15],[95,1],[102,1],[83,7],[78,16],[89,17],[84,7],[85,7],[88,18],[77,19],[86,20],[73,7],[76,7],[87,3],[90,13],[100,14],[94,21],[93,22],[92,23],[82,7],[111,24],[109,25],[110,26],[116,27],[123,28],[117,28],[72,26],[108,26],[118,26],[119,26],[120,28],[121,28],[114,26],[122,29],[106,26],[115,30],[112,26],[124,31],[107,32],[113,33],[151,34],[153,35],[135,36],[155,37],[142,38],[156,36],[145,39],[144,40],[146,35],[147,41],[154,42],[139,43],[136,36],[143,35],[138,36],[137,36],[148,35],[173,44],[179,35],[157,45],[158,36],[149,36],[140,36],[141,46],[152,47],[159,48],[150,36],[180,49],[174,50],[181,51],[183,52],[172,53],[191,54],[187,55],[185,56],[184,57],[192,58],[193,59],[171,60],[186,61],[182,62],[177,63],[178,64],[189,65],[188,66],[176,67],[167,68],[190,69],[160,70],[161,69],[163,71],[164,72],[168,73],[170,74],[165,75]],"latestChangedDtsFile":"./internal/query-values.d.ts","version":"6.0.3"}
|