@fluidframework/debugger 2.0.0-internal.3.0.0 → 2.0.0-internal.3.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/.eslintrc.js +9 -12
- package/README.md +33 -33
- package/api-extractor.json +2 -2
- package/dist/fluidDebugger.d.ts.map +1 -1
- package/dist/fluidDebugger.js.map +1 -1
- package/dist/fluidDebuggerController.d.ts.map +1 -1
- package/dist/fluidDebuggerController.js +5 -2
- package/dist/fluidDebuggerController.js.map +1 -1
- package/dist/fluidDebuggerUi.d.ts.map +1 -1
- package/dist/fluidDebuggerUi.js +11 -5
- package/dist/fluidDebuggerUi.js.map +1 -1
- package/dist/messageSchema.js.map +1 -1
- package/dist/sanitize.js.map +1 -1
- package/dist/sanitizer.d.ts.map +1 -1
- package/dist/sanitizer.js +9 -5
- package/dist/sanitizer.js.map +1 -1
- package/lib/fluidDebugger.d.ts.map +1 -1
- package/lib/fluidDebugger.js.map +1 -1
- package/lib/fluidDebuggerController.d.ts.map +1 -1
- package/lib/fluidDebuggerController.js +5 -2
- package/lib/fluidDebuggerController.js.map +1 -1
- package/lib/fluidDebuggerUi.d.ts.map +1 -1
- package/lib/fluidDebuggerUi.js +11 -5
- package/lib/fluidDebuggerUi.js.map +1 -1
- package/lib/messageSchema.js.map +1 -1
- package/lib/sanitize.js.map +1 -1
- package/lib/sanitizer.d.ts.map +1 -1
- package/lib/sanitizer.js +9 -5
- package/lib/sanitizer.js.map +1 -1
- package/package.json +68 -67
- package/prettier.config.cjs +1 -1
- package/src/fluidDebugger.ts +30 -30
- package/src/fluidDebuggerController.ts +348 -322
- package/src/fluidDebuggerUi.ts +306 -281
- package/src/messageSchema.ts +367 -367
- package/src/sanitize.ts +29 -29
- package/src/sanitizer.ts +699 -638
- package/tsconfig.esnext.json +6 -6
- package/tsconfig.json +10 -15
package/src/messageSchema.ts
CHANGED
|
@@ -6,213 +6,213 @@
|
|
|
6
6
|
import { Schema } from "jsonschema";
|
|
7
7
|
|
|
8
8
|
export const joinContentsSchema = {
|
|
9
|
-
|
|
9
|
+
type: "null",
|
|
10
10
|
};
|
|
11
11
|
|
|
12
12
|
export const joinDataSchema = {
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
13
|
+
type: "object",
|
|
14
|
+
properties: {
|
|
15
|
+
clientId: { type: "string" },
|
|
16
|
+
detail: {
|
|
17
|
+
type: "object",
|
|
18
|
+
properties: {
|
|
19
|
+
details: { type: "object" },
|
|
20
|
+
mode: { type: "string" },
|
|
21
|
+
permission: { type: "array" },
|
|
22
|
+
scopes: { type: "array" },
|
|
23
|
+
type: { type: "string" },
|
|
24
|
+
user: {
|
|
25
|
+
type: "object",
|
|
26
|
+
properties: {
|
|
27
|
+
id: { type: "string" },
|
|
28
|
+
name: { type: "string" },
|
|
29
|
+
email: { type: "string" },
|
|
30
|
+
},
|
|
31
|
+
required: ["id", "name", "email"],
|
|
32
|
+
additionalProperties: false,
|
|
33
|
+
},
|
|
34
|
+
},
|
|
35
|
+
required: ["user"],
|
|
36
|
+
additionalProperties: false,
|
|
37
|
+
},
|
|
38
|
+
},
|
|
39
|
+
required: ["clientId", "detail"],
|
|
40
|
+
additionalProperties: false,
|
|
41
41
|
};
|
|
42
42
|
|
|
43
43
|
export const proposeContentsSchema = {
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
44
|
+
type: ["string", "object"],
|
|
45
|
+
properties: {
|
|
46
|
+
key: { type: "string" },
|
|
47
|
+
value: { type: "string" },
|
|
48
|
+
},
|
|
49
|
+
required: ["key"],
|
|
50
|
+
additionalProperties: false,
|
|
51
51
|
};
|
|
52
52
|
|
|
53
53
|
// The parsed json of a propose message's contents value
|
|
54
54
|
export const proposeCodeSchema = {
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
55
|
+
type: "object",
|
|
56
|
+
properties: {
|
|
57
|
+
key: { type: "string" },
|
|
58
|
+
value: {
|
|
59
|
+
type: "object",
|
|
60
|
+
properties: {
|
|
61
|
+
package: {
|
|
62
|
+
type: "object",
|
|
63
|
+
properties: {
|
|
64
|
+
name: { type: "string" },
|
|
65
|
+
version: { type: "string" },
|
|
66
|
+
fluid: { type: "object" },
|
|
67
|
+
},
|
|
68
|
+
required: ["name"],
|
|
69
|
+
},
|
|
70
|
+
config: { type: "object" },
|
|
71
|
+
},
|
|
72
|
+
required: ["package", "config"],
|
|
73
|
+
additionalProperties: false,
|
|
74
|
+
},
|
|
75
|
+
},
|
|
76
|
+
required: ["key", "value"],
|
|
77
|
+
additionalProperties: false,
|
|
78
78
|
};
|
|
79
79
|
|
|
80
80
|
// This also needs to be in the root "definitions" key as "entries" to be used
|
|
81
81
|
const attachSnapshotEntriesSchema = {
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
82
|
+
type: "object",
|
|
83
|
+
properties: {
|
|
84
|
+
mode: { type: "string" },
|
|
85
|
+
path: { type: "string" },
|
|
86
|
+
type: { enum: ["Blob", "Tree"] },
|
|
87
|
+
value: {
|
|
88
|
+
type: "object",
|
|
89
|
+
oneOf: [
|
|
90
|
+
// type Blob
|
|
91
|
+
{
|
|
92
|
+
properties: {
|
|
93
|
+
contents: { type: "string" },
|
|
94
|
+
encoding: { type: "string" },
|
|
95
|
+
// Verify this
|
|
96
|
+
id: { type: "null" },
|
|
97
|
+
},
|
|
98
|
+
required: ["contents", "encoding"],
|
|
99
|
+
additionalProperties: false,
|
|
100
|
+
},
|
|
101
|
+
// type Tree
|
|
102
|
+
{
|
|
103
|
+
properties: {
|
|
104
|
+
entries: {
|
|
105
|
+
type: "array",
|
|
106
|
+
items: { $ref: "#/definitions/entries" },
|
|
107
|
+
},
|
|
108
|
+
// Verify this
|
|
109
|
+
id: { type: "null" },
|
|
110
|
+
},
|
|
111
|
+
required: ["entries"],
|
|
112
|
+
additionalProperties: false,
|
|
113
|
+
},
|
|
114
|
+
],
|
|
115
|
+
},
|
|
116
|
+
},
|
|
117
|
+
required: ["mode", "path", "type", "value"],
|
|
118
|
+
additionalProperties: false,
|
|
119
119
|
};
|
|
120
120
|
|
|
121
121
|
export const attachContentsSchema = {
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
122
|
+
definitions: {
|
|
123
|
+
entries: attachSnapshotEntriesSchema,
|
|
124
|
+
},
|
|
125
|
+
type: "object",
|
|
126
|
+
properties: {
|
|
127
|
+
id: { type: "string" },
|
|
128
|
+
snapshot: {
|
|
129
|
+
type: "object",
|
|
130
|
+
properties: {
|
|
131
|
+
entries: {
|
|
132
|
+
type: "array",
|
|
133
|
+
items: { $ref: "#/definitions/entries" },
|
|
134
|
+
},
|
|
135
|
+
// Verify this
|
|
136
|
+
id: { type: "null" },
|
|
137
|
+
},
|
|
138
|
+
required: ["entries"],
|
|
139
|
+
additionalProperties: false,
|
|
140
|
+
},
|
|
141
|
+
type: { type: "string" },
|
|
142
|
+
},
|
|
143
|
+
required: ["id", "snapshot", "type"],
|
|
144
|
+
additionalProperties: false,
|
|
145
145
|
};
|
|
146
146
|
|
|
147
147
|
// can exist at the root level or within an op
|
|
148
148
|
export const chunkedOpContentsSchema = {
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
149
|
+
type: "object",
|
|
150
|
+
properties: {
|
|
151
|
+
chunkId: { type: "number" },
|
|
152
|
+
contents: { type: "string" },
|
|
153
|
+
originalType: { type: "string" },
|
|
154
|
+
totalChunks: { type: "number" },
|
|
155
|
+
},
|
|
156
|
+
required: ["chunkId", "contents", "originalType", "totalChunks"],
|
|
157
|
+
additionalProperties: false,
|
|
158
158
|
};
|
|
159
159
|
|
|
160
160
|
const contentsSchema = {
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
161
|
+
type: "object",
|
|
162
|
+
properties: {
|
|
163
|
+
address: { type: "string" },
|
|
164
|
+
contents: {
|
|
165
|
+
type: "object",
|
|
166
|
+
properties: {
|
|
167
|
+
content: { type: "object" },
|
|
168
|
+
type: { type: "string" },
|
|
169
|
+
},
|
|
170
|
+
required: ["content", "type"],
|
|
171
|
+
additionalProperties: false,
|
|
172
|
+
},
|
|
173
|
+
},
|
|
174
|
+
required: ["address", "contents"],
|
|
175
|
+
additionalProperties: false,
|
|
176
176
|
};
|
|
177
177
|
|
|
178
178
|
// special contents formats from containerRuntime.ts's ContainerMessageType
|
|
179
179
|
export const opContentsSchema = {
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
180
|
+
definitions: {
|
|
181
|
+
content: contentsSchema,
|
|
182
|
+
entries: attachSnapshotEntriesSchema,
|
|
183
|
+
attachContents: attachContentsSchema,
|
|
184
|
+
chunkedOpContents: chunkedOpContentsSchema,
|
|
185
|
+
},
|
|
186
|
+
type: "object",
|
|
187
|
+
oneOf: [
|
|
188
|
+
{
|
|
189
|
+
properties: {
|
|
190
|
+
type: { enum: ["component"] },
|
|
191
|
+
contents: { $ref: "#/definitions/content" },
|
|
192
|
+
},
|
|
193
|
+
required: ["type", "contents"],
|
|
194
|
+
additionalProperties: false,
|
|
195
|
+
},
|
|
196
|
+
{
|
|
197
|
+
properties: {
|
|
198
|
+
type: { enum: ["attach"] },
|
|
199
|
+
contents: { $ref: "#/definitions/attachContents" },
|
|
200
|
+
},
|
|
201
|
+
required: ["type", "contents"],
|
|
202
|
+
additionalProperties: false,
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
properties: {
|
|
206
|
+
type: { enum: ["chunkedOp"] },
|
|
207
|
+
contents: { $ref: "#/definitions/chunkedOpContents" },
|
|
208
|
+
},
|
|
209
|
+
required: ["type", "contents"],
|
|
210
|
+
additionalProperties: false,
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
$ref: "#/definitions/content",
|
|
214
|
+
},
|
|
215
|
+
],
|
|
216
216
|
};
|
|
217
217
|
|
|
218
218
|
// "op" message's contents.contents.content schemas
|
|
@@ -221,98 +221,98 @@ export const opContentsAttachSchema = attachContentsSchema;
|
|
|
221
221
|
|
|
222
222
|
// Ops from dds/register-collection's consensusRegisterCollection
|
|
223
223
|
export const opContentsRegisterCollectionSchema = {
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
224
|
+
type: "object",
|
|
225
|
+
properties: {
|
|
226
|
+
address: { type: "string" },
|
|
227
|
+
contents: {
|
|
228
|
+
type: "object",
|
|
229
|
+
properties: {
|
|
230
|
+
key: { type: "string" },
|
|
231
|
+
refSeq: { type: "number" },
|
|
232
|
+
serializedValue: { type: "string" },
|
|
233
|
+
value: {
|
|
234
|
+
type: "object",
|
|
235
|
+
properties: {
|
|
236
|
+
type: { type: "string" },
|
|
237
|
+
value: {},
|
|
238
|
+
},
|
|
239
|
+
required: ["type", "value"],
|
|
240
|
+
additionalProperties: false,
|
|
241
|
+
},
|
|
242
|
+
type: {
|
|
243
|
+
type: "string",
|
|
244
|
+
enum: ["write"],
|
|
245
|
+
},
|
|
246
|
+
},
|
|
247
|
+
required: ["key", "type"],
|
|
248
|
+
additionalProperties: false,
|
|
249
|
+
},
|
|
250
|
+
},
|
|
251
|
+
required: ["address", "contents"],
|
|
252
|
+
additionalProperties: false,
|
|
253
253
|
};
|
|
254
254
|
|
|
255
255
|
// Ops from dds/map's directory.ts
|
|
256
256
|
export const opContentsMapSchema = {
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
257
|
+
type: "object",
|
|
258
|
+
properties: {
|
|
259
|
+
address: { type: "string" },
|
|
260
|
+
contents: {
|
|
261
|
+
type: "object",
|
|
262
|
+
properties: {
|
|
263
|
+
key: { type: "string" },
|
|
264
|
+
path: { type: "string" },
|
|
265
|
+
subdirName: { type: "string" },
|
|
266
|
+
value: {
|
|
267
|
+
type: "object",
|
|
268
|
+
properties: {
|
|
269
|
+
type: { type: "string" },
|
|
270
|
+
value: {},
|
|
271
|
+
},
|
|
272
|
+
required: ["type"],
|
|
273
|
+
additionalProperties: false,
|
|
274
|
+
},
|
|
275
|
+
type: {
|
|
276
|
+
type: "string",
|
|
277
|
+
enum: [
|
|
278
|
+
"act",
|
|
279
|
+
"set",
|
|
280
|
+
"delete",
|
|
281
|
+
"clear",
|
|
282
|
+
"createSubDirectory",
|
|
283
|
+
"deleteSubDirectory",
|
|
284
|
+
],
|
|
285
|
+
},
|
|
286
|
+
},
|
|
287
|
+
required: ["type"],
|
|
288
|
+
additionalProperties: false,
|
|
289
|
+
// specific property combinations based on type value
|
|
290
|
+
oneOf: [
|
|
291
|
+
{
|
|
292
|
+
properties: { type: { enum: ["act"] } },
|
|
293
|
+
required: ["key", "path", "value"],
|
|
294
|
+
},
|
|
295
|
+
{
|
|
296
|
+
properties: { type: { enum: ["set"] } },
|
|
297
|
+
required: ["key", "value"],
|
|
298
|
+
},
|
|
299
|
+
{
|
|
300
|
+
properties: { type: { enum: ["delete"] } },
|
|
301
|
+
required: ["key"],
|
|
302
|
+
},
|
|
303
|
+
{
|
|
304
|
+
properties: { type: { enum: ["clear"] } },
|
|
305
|
+
required: ["path"],
|
|
306
|
+
},
|
|
307
|
+
{
|
|
308
|
+
properties: { type: { enum: ["createSubDirectory", "deleteSubDirectory"] } },
|
|
309
|
+
required: ["path", "subdirName"],
|
|
310
|
+
},
|
|
311
|
+
],
|
|
312
|
+
},
|
|
313
|
+
},
|
|
314
|
+
required: ["address", "contents"],
|
|
315
|
+
additionalProperties: false,
|
|
316
316
|
};
|
|
317
317
|
|
|
318
318
|
// from dds/merge-tree's ops.ts and opBuilder.ts
|
|
@@ -320,116 +320,116 @@ export const opContentsMapSchema = {
|
|
|
320
320
|
// corresponding interface definitions in ops.ts, and the more restrictive
|
|
321
321
|
// schema are used here
|
|
322
322
|
const mergeTreeRelativePosSchema = {
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
323
|
+
type: "object",
|
|
324
|
+
properties: {
|
|
325
|
+
id: { type: "string" },
|
|
326
|
+
before: { type: "boolean" },
|
|
327
|
+
offset: { type: "number" },
|
|
328
|
+
},
|
|
329
|
+
additionalProperties: false,
|
|
330
330
|
};
|
|
331
331
|
|
|
332
332
|
const mergeTreeDeltaOpSchema = {
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
333
|
+
type: "object",
|
|
334
|
+
properties: {
|
|
335
|
+
type: {
|
|
336
|
+
type: "number",
|
|
337
|
+
minimum: 0 /* MergeTreeDeltaType.INSERT */,
|
|
338
|
+
maximum: 2 /* MergeTreeDeltaType.ANNOTATE */,
|
|
339
|
+
},
|
|
340
|
+
},
|
|
341
|
+
required: ["type"],
|
|
342
|
+
oneOf: [
|
|
343
|
+
{
|
|
344
|
+
properties: {
|
|
345
|
+
type: { enum: [0] },
|
|
346
|
+
seg: { type: ["string", "object"] },
|
|
347
|
+
pos1: { type: "number" },
|
|
348
|
+
},
|
|
349
|
+
required: ["pos1"],
|
|
350
|
+
additionalProperties: false,
|
|
351
|
+
},
|
|
352
|
+
{
|
|
353
|
+
properties: {
|
|
354
|
+
type: { enum: [1] },
|
|
355
|
+
register: { type: "string" },
|
|
356
|
+
pos1: { type: "number" },
|
|
357
|
+
pos2: { type: "number" },
|
|
358
|
+
},
|
|
359
|
+
required: ["pos1"],
|
|
360
|
+
additionalProperties: false,
|
|
361
|
+
},
|
|
362
|
+
{
|
|
363
|
+
properties: {
|
|
364
|
+
type: { enum: [2] },
|
|
365
|
+
combiningOp: {
|
|
366
|
+
type: "object",
|
|
367
|
+
properties: {
|
|
368
|
+
defaultValue: {},
|
|
369
|
+
maxValue: {},
|
|
370
|
+
minValue: {},
|
|
371
|
+
name: { type: "string" },
|
|
372
|
+
},
|
|
373
|
+
required: ["name"],
|
|
374
|
+
additionalProperties: false,
|
|
375
|
+
},
|
|
376
|
+
pos1: { type: "number" },
|
|
377
|
+
pos2: { type: "number" },
|
|
378
|
+
props: { type: "object" },
|
|
379
|
+
register: { type: "string" },
|
|
380
|
+
relativePos1: { $ref: "#/definitions/relativePos" },
|
|
381
|
+
relativePos2: { $ref: "#/definitions/relativePos" },
|
|
382
|
+
},
|
|
383
|
+
required: ["props"],
|
|
384
|
+
additionalProperties: false,
|
|
385
|
+
},
|
|
386
|
+
// There's something weird with the typings/settings here where this doesn't get
|
|
387
|
+
// recognized as a valid Schema array if more than 1 item has "properties" defined
|
|
388
|
+
] as Schema[],
|
|
389
389
|
};
|
|
390
390
|
|
|
391
391
|
const mergeTreeGroupOpSchema = {
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
392
|
+
type: "object",
|
|
393
|
+
properties: {
|
|
394
|
+
ops: {
|
|
395
|
+
type: "array",
|
|
396
|
+
items: { $ref: "#/definitions/deltaOp" },
|
|
397
|
+
},
|
|
398
|
+
type: {
|
|
399
|
+
type: "number",
|
|
400
|
+
minimum: 3 /* MergeTreeDeltaType.GROUP */,
|
|
401
|
+
maximum: 3 /* MergeTreeDeltaType.GROUP */,
|
|
402
|
+
},
|
|
403
|
+
},
|
|
404
|
+
required: ["ops", "type"],
|
|
405
|
+
additionalProperties: false,
|
|
406
406
|
};
|
|
407
407
|
|
|
408
408
|
export const opContentsMergeTreeDeltaOpSchema = {
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
409
|
+
definitions: {
|
|
410
|
+
relativePos: mergeTreeRelativePosSchema,
|
|
411
|
+
deltaOp: mergeTreeDeltaOpSchema,
|
|
412
|
+
},
|
|
413
|
+
type: "object",
|
|
414
|
+
properties: {
|
|
415
|
+
address: { type: "string" },
|
|
416
|
+
contents: { $ref: "#/definitions/deltaOp" },
|
|
417
|
+
},
|
|
418
|
+
required: ["address", "contents"],
|
|
419
|
+
additionalProperties: false,
|
|
420
420
|
};
|
|
421
421
|
|
|
422
422
|
export const opContentsMergeTreeGroupOpSchema = {
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
423
|
+
definitions: {
|
|
424
|
+
relativePos: mergeTreeRelativePosSchema,
|
|
425
|
+
deltaOp: mergeTreeDeltaOpSchema,
|
|
426
|
+
groupOp: mergeTreeGroupOpSchema,
|
|
427
|
+
},
|
|
428
|
+
type: "object",
|
|
429
|
+
properties: {
|
|
430
|
+
address: { type: "string" },
|
|
431
|
+
contents: { $ref: "#/definitions/groupOp" },
|
|
432
|
+
},
|
|
433
|
+
required: ["address", "contents"],
|
|
434
|
+
additionalProperties: false,
|
|
435
435
|
};
|