shinkansen-transmission 2.2.17 → 2.2.18
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/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "shinkansen-transmission",
|
3
|
-
"version": "2.2.
|
3
|
+
"version": "2.2.18",
|
4
4
|
"description": "Shinkansen Transmission",
|
5
5
|
"keywords": [
|
6
6
|
"Shinkansen",
|
@@ -66,6 +66,8 @@
|
|
66
66
|
"./transmission/common": "./src/transmission/common/index.mjs",
|
67
67
|
"./transmission/from-document-to-hash": "./src/transmission/from-document-to-hash/index.mjs",
|
68
68
|
"./transmission/from-hash-to-document": "./src/transmission/from-hash-to-document/index.mjs",
|
69
|
+
"./transmission/from-hash-to-document/transform-array-schema": "./src/transmission/from-hash-to-document/transform-array-schema.mjs",
|
70
|
+
"./transmission/from-hash-to-document/transform-object-schema": "./src/transmission/from-hash-to-document/transform-object-schema.mjs",
|
69
71
|
"./transmission/to-zashiki/transform-root-schema": "./src/transmission/to-zashiki/transform-root-schema.mjs",
|
70
72
|
"./transmission/to-zashiki/transform-schema": "./src/transmission/to-zashiki/transform-schema.mjs",
|
71
73
|
"./transmission/to-zashiki": "./src/transmission/to-zashiki/index.mjs",
|
@@ -214,178 +214,6 @@ export function transformItemsObjectFor (values, items = {}, parentUri = '#', ur
|
|
214
214
|
)
|
215
215
|
}
|
216
216
|
|
217
|
-
// https://json-schema.org/draft/2019-09/json-schema-validation.html#rfc.section.6
|
218
|
-
export function transformObjectSchemaNull (values, schema, { uri: parentUri, key: fieldKey }, uri = getUri(parentUri, fieldKey)) {
|
219
|
-
/*
|
220
|
-
* log('transformObjectSchemaNull')
|
221
|
-
*/
|
222
|
-
|
223
|
-
return transformNull(values, schema, parentUri, uri)
|
224
|
-
}
|
225
|
-
|
226
|
-
// https://json-schema.org/draft/2019-09/json-schema-validation.html#rfc.section.6
|
227
|
-
export function transformObjectSchemaBoolean (values, schema, { uri: parentUri, key: fieldKey }, uri = getUri(parentUri, fieldKey)) {
|
228
|
-
/*
|
229
|
-
* log('transformObjectSchemaBoolean')
|
230
|
-
*/
|
231
|
-
|
232
|
-
return transformBoolean(values, schema, parentUri, uri)
|
233
|
-
}
|
234
|
-
|
235
|
-
// https://json-schema.org/draft/2019-09/json-schema-validation.html#rfc.section.6.5
|
236
|
-
export function transformObjectSchemaObject (values, schema, { uri: parentUri, key: fieldKey }, uri = getUri(parentUri, fieldKey)) {
|
237
|
-
/*
|
238
|
-
* log('transformObjectSchemaObject')
|
239
|
-
*/
|
240
|
-
|
241
|
-
return transformObject(values, schema, uri, uri) // uri is parentUri and uri
|
242
|
-
}
|
243
|
-
|
244
|
-
// https://json-schema.org/draft/2019-09/json-schema-validation.html#rfc.section.6.4
|
245
|
-
export function transformObjectSchemaArray (values, schema, { uri: parentUri, key: fieldKey }, uri = getUri(parentUri, fieldKey)) {
|
246
|
-
/*
|
247
|
-
* log('transformObjectSchemaArray')
|
248
|
-
*/
|
249
|
-
|
250
|
-
return transformArray(values, schema, uri, uri) // uri is parentUri and uri
|
251
|
-
}
|
252
|
-
|
253
|
-
// https://json-schema.org/draft/2019-09/json-schema-validation.html#rfc.section.6.2
|
254
|
-
export function transformObjectSchemaNumber (values, schema, { uri: parentUri, key: fieldKey }, uri = getUri(parentUri, fieldKey)) {
|
255
|
-
/*
|
256
|
-
* log('transformObjectSchemaNumber')
|
257
|
-
*/
|
258
|
-
|
259
|
-
return transformNumber(values, schema, parentUri, uri)
|
260
|
-
}
|
261
|
-
|
262
|
-
// https://json-schema.org/draft/2019-09/json-schema-validation.html#rfc.section.6.3
|
263
|
-
export function transformObjectSchemaString (values, schema, { uri: parentUri, key: fieldKey }, uri = getUri(parentUri, fieldKey)) {
|
264
|
-
/*
|
265
|
-
* log('transformObjectSchemaString')
|
266
|
-
*/
|
267
|
-
|
268
|
-
return transformString(values, schema, parentUri, uri)
|
269
|
-
}
|
270
|
-
|
271
|
-
export function transformObjectSchema (values = {}, schema = {}, params = {}) {
|
272
|
-
/*
|
273
|
-
* log('transformObjectSchema')
|
274
|
-
*/
|
275
|
-
|
276
|
-
const { type } = schema
|
277
|
-
|
278
|
-
// https://json-schema.org/draft/2019-09/json-schema-core.html#rfc.section.4.2.1
|
279
|
-
switch (type) {
|
280
|
-
case 'null':
|
281
|
-
return transformObjectSchemaNull(values, schema, params)
|
282
|
-
|
283
|
-
case 'boolean':
|
284
|
-
return transformObjectSchemaBoolean(values, schema, params)
|
285
|
-
|
286
|
-
case 'object':
|
287
|
-
return transformObjectSchemaObject(values, schema, params)
|
288
|
-
|
289
|
-
case 'array':
|
290
|
-
return transformObjectSchemaArray(values, schema, params)
|
291
|
-
|
292
|
-
case 'number':
|
293
|
-
return transformObjectSchemaNumber(values, schema, params)
|
294
|
-
|
295
|
-
case 'string':
|
296
|
-
return transformObjectSchemaString(values, schema, params)
|
297
|
-
|
298
|
-
default:
|
299
|
-
throw new Error('Schema does not conform to Instance Data Model, https://json-schema.org/draft/2019-09/json-schema-core.html#rfc.section.4.2.1')
|
300
|
-
}
|
301
|
-
}
|
302
|
-
|
303
|
-
// https://json-schema.org/draft/2019-09/json-schema-validation.html#rfc.section.6
|
304
|
-
export function transformArraySchemaNull (values, schema, { uri: parentUri, index: arrayIndex }, uri = getUri(parentUri, arrayIndex)) {
|
305
|
-
/*
|
306
|
-
* log('transformArraySchemaNull')
|
307
|
-
*/
|
308
|
-
|
309
|
-
return transformNull(values, schema, parentUri, uri)
|
310
|
-
}
|
311
|
-
|
312
|
-
// https://json-schema.org/draft/2019-09/json-schema-validation.html#rfc.section.6
|
313
|
-
export function transformArraySchemaBoolean (values, schema, { uri: parentUri, index: arrayIndex }, uri = getUri(parentUri, arrayIndex)) {
|
314
|
-
/*
|
315
|
-
* log('transformArraySchemaBoolean')
|
316
|
-
*/
|
317
|
-
|
318
|
-
return transformBoolean(values, schema, parentUri, uri)
|
319
|
-
}
|
320
|
-
|
321
|
-
// https://json-schema.org/draft/2019-09/json-schema-validation.html#rfc.section.6.5
|
322
|
-
export function transformArraySchemaObject (values, schema, { uri: parentUri, index: arrayIndex }, uri = getUri(parentUri, arrayIndex)) {
|
323
|
-
/*
|
324
|
-
* log('transformArraySchemaObject')
|
325
|
-
*/
|
326
|
-
|
327
|
-
return transformObject(values, schema, uri, uri) // uri is parentUri and uri
|
328
|
-
}
|
329
|
-
|
330
|
-
// https://json-schema.org/draft/2019-09/json-schema-validation.html#rfc.section.6.4
|
331
|
-
export function transformArraySchemaArray (values, schema, { uri: parentUri, index: arrayIndex }, uri = getUri(parentUri, arrayIndex)) {
|
332
|
-
/*
|
333
|
-
* log('transformArraySchemaArray')
|
334
|
-
*/
|
335
|
-
|
336
|
-
return transformArray(values, schema, uri, uri) // uri is parentUri and uri
|
337
|
-
}
|
338
|
-
|
339
|
-
// https://json-schema.org/draft/2019-09/json-schema-validation.html#rfc.section.6.2
|
340
|
-
export function transformArraySchemaNumber (values, schema, { uri: parentUri, index: arrayIndex }, uri = getUri(parentUri, arrayIndex)) {
|
341
|
-
/*
|
342
|
-
* log('transformArraySchemaNumber')
|
343
|
-
*/
|
344
|
-
|
345
|
-
return transformNumber(values, schema, parentUri, uri)
|
346
|
-
}
|
347
|
-
|
348
|
-
// https://json-schema.org/draft/2019-09/json-schema-validation.html#rfc.section.6.3
|
349
|
-
export function transformArraySchemaString (values, schema, { uri: parentUri, index: arrayIndex }, uri = getUri(parentUri, arrayIndex)) {
|
350
|
-
/*
|
351
|
-
* log('transformArraySchemaString')
|
352
|
-
*/
|
353
|
-
|
354
|
-
return transformString(values, schema, parentUri, uri)
|
355
|
-
}
|
356
|
-
|
357
|
-
export function transformArraySchema (values = {}, schema = {}, params = {}) {
|
358
|
-
/*
|
359
|
-
* log('transformArraySchema')
|
360
|
-
*/
|
361
|
-
|
362
|
-
const { type } = schema
|
363
|
-
|
364
|
-
// https://json-schema.org/draft/2019-09/json-schema-core.html#rfc.section.4.2.1
|
365
|
-
switch (type) {
|
366
|
-
case 'null':
|
367
|
-
return transformArraySchemaNull(values, schema, params)
|
368
|
-
|
369
|
-
case 'boolean':
|
370
|
-
return transformArraySchemaBoolean(values, schema, params)
|
371
|
-
|
372
|
-
case 'object':
|
373
|
-
return transformArraySchemaObject(values, schema, params)
|
374
|
-
|
375
|
-
case 'array':
|
376
|
-
return transformArraySchemaArray(values, schema, params)
|
377
|
-
|
378
|
-
case 'number':
|
379
|
-
return transformArraySchemaNumber(values, schema, params)
|
380
|
-
|
381
|
-
case 'string':
|
382
|
-
return transformArraySchemaString(values, schema, params)
|
383
|
-
|
384
|
-
default:
|
385
|
-
throw new Error('Schema does not conform to Instance Data Model, https://json-schema.org/draft/2019-09/json-schema-core.html#rfc.section.4.2.1')
|
386
|
-
}
|
387
|
-
}
|
388
|
-
|
389
217
|
export function transformNull (values, schema, parentUri, uri) {
|
390
218
|
/*
|
391
219
|
* log('transformNull')
|
@@ -0,0 +1,102 @@
|
|
1
|
+
import debug from 'debug'
|
2
|
+
|
3
|
+
import {
|
4
|
+
getUri
|
5
|
+
} from 'shinkansen-transmission/transmission/common'
|
6
|
+
|
7
|
+
import {
|
8
|
+
transformNull,
|
9
|
+
transformBoolean,
|
10
|
+
transformObject,
|
11
|
+
transformArray,
|
12
|
+
transformNumber,
|
13
|
+
transformString
|
14
|
+
} from 'shinkansen-transmission/transmission/from-hash-to-document'
|
15
|
+
|
16
|
+
const log = debug('shinkansen-transmission/from-hash-to-document/transform-array-schema')
|
17
|
+
|
18
|
+
log('`shinkansen` is awake')
|
19
|
+
|
20
|
+
// https://json-schema.org/draft/2019-09/json-schema-validation.html#rfc.section.6
|
21
|
+
export function transformArraySchemaNull (values, schema, { uri: parentUri, index: arrayIndex }, uri = getUri(parentUri, arrayIndex)) {
|
22
|
+
/*
|
23
|
+
* log('transformArraySchemaNull')
|
24
|
+
*/
|
25
|
+
|
26
|
+
return transformNull(values, schema, parentUri, uri)
|
27
|
+
}
|
28
|
+
|
29
|
+
// https://json-schema.org/draft/2019-09/json-schema-validation.html#rfc.section.6
|
30
|
+
export function transformArraySchemaBoolean (values, schema, { uri: parentUri, index: arrayIndex }, uri = getUri(parentUri, arrayIndex)) {
|
31
|
+
/*
|
32
|
+
* log('transformArraySchemaBoolean')
|
33
|
+
*/
|
34
|
+
|
35
|
+
return transformBoolean(values, schema, parentUri, uri)
|
36
|
+
}
|
37
|
+
|
38
|
+
// https://json-schema.org/draft/2019-09/json-schema-validation.html#rfc.section.6.5
|
39
|
+
export function transformArraySchemaObject (values, schema, { uri: parentUri, index: arrayIndex }, uri = getUri(parentUri, arrayIndex)) {
|
40
|
+
/*
|
41
|
+
* log('transformArraySchemaObject')
|
42
|
+
*/
|
43
|
+
|
44
|
+
return transformObject(values, schema, uri, uri) // uri is parentUri and uri
|
45
|
+
}
|
46
|
+
|
47
|
+
// https://json-schema.org/draft/2019-09/json-schema-validation.html#rfc.section.6.4
|
48
|
+
export function transformArraySchemaArray (values, schema, { uri: parentUri, index: arrayIndex }, uri = getUri(parentUri, arrayIndex)) {
|
49
|
+
/*
|
50
|
+
* log('transformArraySchemaArray')
|
51
|
+
*/
|
52
|
+
|
53
|
+
return transformArray(values, schema, uri, uri) // uri is parentUri and uri
|
54
|
+
}
|
55
|
+
|
56
|
+
// https://json-schema.org/draft/2019-09/json-schema-validation.html#rfc.section.6.2
|
57
|
+
export function transformArraySchemaNumber (values, schema, { uri: parentUri, index: arrayIndex }, uri = getUri(parentUri, arrayIndex)) {
|
58
|
+
/*
|
59
|
+
* log('transformArraySchemaNumber')
|
60
|
+
*/
|
61
|
+
|
62
|
+
return transformNumber(values, schema, parentUri, uri)
|
63
|
+
}
|
64
|
+
|
65
|
+
// https://json-schema.org/draft/2019-09/json-schema-validation.html#rfc.section.6.3
|
66
|
+
export function transformArraySchemaString (values, schema, { uri: parentUri, index: arrayIndex }, uri = getUri(parentUri, arrayIndex)) {
|
67
|
+
/*
|
68
|
+
* log('transformArraySchemaString')
|
69
|
+
*/
|
70
|
+
|
71
|
+
return transformString(values, schema, parentUri, uri)
|
72
|
+
}
|
73
|
+
|
74
|
+
export default function transformArraySchema (values = {}, schema = {}, params = {}) {
|
75
|
+
log('transformArraySchema')
|
76
|
+
|
77
|
+
const { type } = schema
|
78
|
+
|
79
|
+
// https://json-schema.org/draft/2019-09/json-schema-core.html#rfc.section.4.2.1
|
80
|
+
switch (type) {
|
81
|
+
case 'null':
|
82
|
+
return transformArraySchemaNull(values, schema, params)
|
83
|
+
|
84
|
+
case 'boolean':
|
85
|
+
return transformArraySchemaBoolean(values, schema, params)
|
86
|
+
|
87
|
+
case 'object':
|
88
|
+
return transformArraySchemaObject(values, schema, params)
|
89
|
+
|
90
|
+
case 'array':
|
91
|
+
return transformArraySchemaArray(values, schema, params)
|
92
|
+
|
93
|
+
case 'number':
|
94
|
+
return transformArraySchemaNumber(values, schema, params)
|
95
|
+
|
96
|
+
case 'string':
|
97
|
+
return transformArraySchemaString(values, schema, params)
|
98
|
+
|
99
|
+
default:
|
100
|
+
throw new Error('Schema does not conform to Instance Data Model, https://json-schema.org/draft/2019-09/json-schema-core.html#rfc.section.4.2.1')
|
101
|
+
}
|
102
|
+
}
|
@@ -0,0 +1,102 @@
|
|
1
|
+
import debug from 'debug'
|
2
|
+
|
3
|
+
import {
|
4
|
+
getUri
|
5
|
+
} from 'shinkansen-transmission/transmission/common'
|
6
|
+
|
7
|
+
import {
|
8
|
+
transformNull,
|
9
|
+
transformBoolean,
|
10
|
+
transformObject,
|
11
|
+
transformArray,
|
12
|
+
transformNumber,
|
13
|
+
transformString
|
14
|
+
} from 'shinkansen-transmission/transmission/from-hash-to-document'
|
15
|
+
|
16
|
+
const log = debug('shinkansen-transmission/from-hash-to-document/transform-object-schema')
|
17
|
+
|
18
|
+
log('`shinkansen` is awake')
|
19
|
+
|
20
|
+
// https://json-schema.org/draft/2019-09/json-schema-validation.html#rfc.section.6
|
21
|
+
export function transformObjectSchemaNull (values, schema, { uri: parentUri, key: fieldKey }, uri = getUri(parentUri, fieldKey)) {
|
22
|
+
/*
|
23
|
+
* log('transformObjectSchemaNull')
|
24
|
+
*/
|
25
|
+
|
26
|
+
return transformNull(values, schema, parentUri, uri)
|
27
|
+
}
|
28
|
+
|
29
|
+
// https://json-schema.org/draft/2019-09/json-schema-validation.html#rfc.section.6
|
30
|
+
export function transformObjectSchemaBoolean (values, schema, { uri: parentUri, key: fieldKey }, uri = getUri(parentUri, fieldKey)) {
|
31
|
+
/*
|
32
|
+
* log('transformObjectSchemaBoolean')
|
33
|
+
*/
|
34
|
+
|
35
|
+
return transformBoolean(values, schema, parentUri, uri)
|
36
|
+
}
|
37
|
+
|
38
|
+
// https://json-schema.org/draft/2019-09/json-schema-validation.html#rfc.section.6.5
|
39
|
+
export function transformObjectSchemaObject (values, schema, { uri: parentUri, key: fieldKey }, uri = getUri(parentUri, fieldKey)) {
|
40
|
+
/*
|
41
|
+
* log('transformObjectSchemaObject')
|
42
|
+
*/
|
43
|
+
|
44
|
+
return transformObject(values, schema, uri, uri) // uri is parentUri and uri
|
45
|
+
}
|
46
|
+
|
47
|
+
// https://json-schema.org/draft/2019-09/json-schema-validation.html#rfc.section.6.4
|
48
|
+
export function transformObjectSchemaArray (values, schema, { uri: parentUri, key: fieldKey }, uri = getUri(parentUri, fieldKey)) {
|
49
|
+
/*
|
50
|
+
* log('transformObjectSchemaArray')
|
51
|
+
*/
|
52
|
+
|
53
|
+
return transformArray(values, schema, uri, uri) // uri is parentUri and uri
|
54
|
+
}
|
55
|
+
|
56
|
+
// https://json-schema.org/draft/2019-09/json-schema-validation.html#rfc.section.6.2
|
57
|
+
export function transformObjectSchemaNumber (values, schema, { uri: parentUri, key: fieldKey }, uri = getUri(parentUri, fieldKey)) {
|
58
|
+
/*
|
59
|
+
* log('transformObjectSchemaNumber')
|
60
|
+
*/
|
61
|
+
|
62
|
+
return transformNumber(values, schema, parentUri, uri)
|
63
|
+
}
|
64
|
+
|
65
|
+
// https://json-schema.org/draft/2019-09/json-schema-validation.html#rfc.section.6.3
|
66
|
+
export function transformObjectSchemaString (values, schema, { uri: parentUri, key: fieldKey }, uri = getUri(parentUri, fieldKey)) {
|
67
|
+
/*
|
68
|
+
* log('transformObjectSchemaString')
|
69
|
+
*/
|
70
|
+
|
71
|
+
return transformString(values, schema, parentUri, uri)
|
72
|
+
}
|
73
|
+
|
74
|
+
export default function transformObjectSchema (values = {}, schema = {}, params = {}) {
|
75
|
+
log('transformObjectSchema')
|
76
|
+
|
77
|
+
const { type } = schema
|
78
|
+
|
79
|
+
// https://json-schema.org/draft/2019-09/json-schema-core.html#rfc.section.4.2.1
|
80
|
+
switch (type) {
|
81
|
+
case 'null':
|
82
|
+
return transformObjectSchemaNull(values, schema, params)
|
83
|
+
|
84
|
+
case 'boolean':
|
85
|
+
return transformObjectSchemaBoolean(values, schema, params)
|
86
|
+
|
87
|
+
case 'object':
|
88
|
+
return transformObjectSchemaObject(values, schema, params)
|
89
|
+
|
90
|
+
case 'array':
|
91
|
+
return transformObjectSchemaArray(values, schema, params)
|
92
|
+
|
93
|
+
case 'number':
|
94
|
+
return transformObjectSchemaNumber(values, schema, params)
|
95
|
+
|
96
|
+
case 'string':
|
97
|
+
return transformObjectSchemaString(values, schema, params)
|
98
|
+
|
99
|
+
default:
|
100
|
+
throw new Error('Schema does not conform to Instance Data Model, https://json-schema.org/draft/2019-09/json-schema-core.html#rfc.section.4.2.1')
|
101
|
+
}
|
102
|
+
}
|