@nxtedition/types 23.0.2 → 23.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (41) hide show
  1. package/dist/asset.d.ts +10 -0
  2. package/dist/asset.js +1 -0
  3. package/dist/common/clone.d.ts +32 -0
  4. package/dist/common/clone.js +602 -0
  5. package/dist/common/index.d.ts +3 -0
  6. package/dist/common/index.js +3 -0
  7. package/dist/common/nxtpression.d.ts +19 -0
  8. package/dist/common/nxtpression.js +240 -0
  9. package/dist/common/search.d.ts +69 -0
  10. package/dist/common/search.js +1591 -0
  11. package/dist/common/settings.d.ts +6 -5
  12. package/dist/common/settings.js +89 -36
  13. package/dist/domains/asset.d.ts +22 -0
  14. package/dist/domains/asset.js +232 -0
  15. package/dist/domains/clone.d.ts +14 -0
  16. package/dist/domains/clone.js +192 -0
  17. package/dist/domains/connection.d.ts +39 -15
  18. package/dist/domains/connection.js +621 -174
  19. package/dist/domains/design.d.ts +24 -0
  20. package/dist/domains/design.js +303 -0
  21. package/dist/domains/file.d.ts +17 -0
  22. package/dist/domains/file.js +233 -0
  23. package/dist/domains/index.d.ts +11 -1
  24. package/dist/domains/index.js +5 -0
  25. package/dist/domains/media.d.ts +28 -0
  26. package/dist/domains/media.js +346 -0
  27. package/dist/domains/published.d.ts +18 -0
  28. package/dist/domains/published.js +164 -0
  29. package/dist/domains/revs.d.ts +13 -0
  30. package/dist/domains/revs.js +125 -0
  31. package/dist/domains/search.d.ts +3 -0
  32. package/dist/domains/search.js +62 -13
  33. package/dist/domains/settings.js +70 -26
  34. package/dist/domains/user.d.ts +14 -0
  35. package/dist/domains/user.js +141 -0
  36. package/dist/index.d.ts +20 -6
  37. package/dist/index.js +135 -0
  38. package/dist/rpc.d.ts +8 -13
  39. package/dist/rpc.js +9 -9
  40. package/dist/schema.json +724 -1546
  41. package/package.json +1 -1
package/dist/schema.json CHANGED
@@ -33,15 +33,33 @@
33
33
  },
34
34
  "type": "object"
35
35
  },
36
+ "AssetCreatedRecord": {
37
+ "additionalProperties": false,
38
+ "properties": {
39
+ "time": {
40
+ "type": "string"
41
+ },
42
+ "user": {
43
+ "type": "string"
44
+ }
45
+ },
46
+ "type": "object"
47
+ },
36
48
  "AssetDomainRecords": {
37
49
  "additionalProperties": false,
38
50
  "properties": {
39
51
  ":asset.assignees?": {
40
52
  "$ref": "#/definitions/AssetAssigneesRecord"
41
53
  },
54
+ ":asset.created?": {
55
+ "$ref": "#/definitions/AssetCreatedRecord"
56
+ },
42
57
  ":asset.fileRefs?": {
43
58
  "$ref": "#/definitions/AssetFileRefsRecord"
44
59
  },
60
+ ":asset.modified?": {
61
+ "$ref": "#/definitions/AssetModifiedRecord"
62
+ },
45
63
  ":asset.refs?": {
46
64
  "$ref": "#/definitions/AssetRefsRecord"
47
65
  },
@@ -57,7 +75,9 @@
57
75
  },
58
76
  "required": [
59
77
  ":asset.assignees?",
78
+ ":asset.created?",
60
79
  ":asset.fileRefs?",
80
+ ":asset.modified?",
61
81
  ":asset.refs?",
62
82
  ":asset.tags?",
63
83
  ":asset.title?",
@@ -77,6 +97,18 @@
77
97
  },
78
98
  "type": "object"
79
99
  },
100
+ "AssetModifiedRecord": {
101
+ "additionalProperties": false,
102
+ "properties": {
103
+ "time": {
104
+ "type": "string"
105
+ },
106
+ "user": {
107
+ "type": "string"
108
+ }
109
+ },
110
+ "type": "object"
111
+ },
80
112
  "AssetPermission": {
81
113
  "additionalProperties": false,
82
114
  "properties": {
@@ -94,6 +126,54 @@
94
126
  ],
95
127
  "type": "object"
96
128
  },
129
+ "AssetRecords": {
130
+ "additionalProperties": false,
131
+ "properties": {
132
+ "asset.assignees": {
133
+ "additionalProperties": false,
134
+ "properties": {
135
+ "dynamic": {
136
+ "anyOf": [
137
+ {
138
+ "items": {
139
+ "type": "string"
140
+ },
141
+ "type": "array"
142
+ },
143
+ {
144
+ "const": false,
145
+ "type": "boolean"
146
+ }
147
+ ]
148
+ },
149
+ "value": {
150
+ "$ref": "#/definitions/Nxtpression"
151
+ }
152
+ },
153
+ "type": "object"
154
+ },
155
+ "asset.clone": {
156
+ "additionalProperties": false,
157
+ "properties": {
158
+ "rules": {
159
+ "items": {
160
+ "$ref": "#/definitions/CloneRule"
161
+ },
162
+ "type": "array"
163
+ }
164
+ },
165
+ "required": [
166
+ "rules"
167
+ ],
168
+ "type": "object"
169
+ }
170
+ },
171
+ "required": [
172
+ "asset.assignees",
173
+ "asset.clone"
174
+ ],
175
+ "type": "object"
176
+ },
97
177
  "AssetRef": {
98
178
  "additionalProperties": false,
99
179
  "properties": {
@@ -159,518 +239,6 @@
159
239
  },
160
240
  "type": "object"
161
241
  },
162
- "Block": {
163
- "additionalProperties": false,
164
- "properties": {
165
- "btime": {
166
- "additionalProperties": false,
167
- "properties": {
168
- "typia.tag": {
169
- "additionalProperties": false,
170
- "description": "This is a dummy property for compilation.\n\nIt does not mean anything in runtime.",
171
- "properties": {
172
- "exclusive": {
173
- "const": true,
174
- "type": "boolean"
175
- },
176
- "kind": {
177
- "const": "type",
178
- "type": "string"
179
- },
180
- "schema": {
181
- "additionalProperties": false,
182
- "properties": {
183
- "type": {
184
- "const": "integer",
185
- "type": "string"
186
- }
187
- },
188
- "required": [
189
- "type"
190
- ],
191
- "type": "object"
192
- },
193
- "target": {
194
- "enum": [
195
- "bigint",
196
- "number"
197
- ],
198
- "type": "string"
199
- },
200
- "validate": {
201
- "additionalProperties": false,
202
- "properties": {
203
- "bigint": {
204
- "const": "BigInt(0) <= $input",
205
- "type": "string"
206
- },
207
- "number": {
208
- "const": "Math.floor($input) === $input && 0 <= $input && $input <= 18446744073709551615",
209
- "type": "string"
210
- }
211
- },
212
- "required": [
213
- "bigint",
214
- "number"
215
- ],
216
- "type": "object"
217
- },
218
- "value": {
219
- "const": "uint64",
220
- "type": "string"
221
- }
222
- },
223
- "required": [
224
- "exclusive",
225
- "kind",
226
- "schema",
227
- "target",
228
- "validate",
229
- "value"
230
- ],
231
- "type": "object"
232
- }
233
- },
234
- "type": "object"
235
- },
236
- "error": {
237
- "anyOf": [
238
- {
239
- "$ref": "#/definitions/NxtError"
240
- },
241
- {
242
- "items": {
243
- "$ref": "#/definitions/NxtError"
244
- },
245
- "type": "array"
246
- }
247
- ]
248
- },
249
- "file": {
250
- "additionalProperties": false,
251
- "properties": {
252
- "typia.tag": {
253
- "additionalProperties": false,
254
- "description": "This is a dummy property for compilation.\n\nIt does not mean anything in runtime.",
255
- "properties": {
256
- "exclusive": {
257
- "items": [
258
- {
259
- "const": "format",
260
- "type": "string"
261
- },
262
- {
263
- "const": "pattern",
264
- "type": "string"
265
- }
266
- ],
267
- "maxItems": 2,
268
- "minItems": 2,
269
- "type": "array"
270
- },
271
- "kind": {
272
- "const": "pattern",
273
- "type": "string"
274
- },
275
- "schema": {
276
- "additionalProperties": false,
277
- "properties": {
278
- "pattern": {
279
- "const": "^[0-9A-Za-z~][0-9A-Za-z~._: -]*$",
280
- "type": "string"
281
- }
282
- },
283
- "required": [
284
- "pattern"
285
- ],
286
- "type": "object"
287
- },
288
- "target": {
289
- "const": "string",
290
- "type": "string"
291
- },
292
- "validate": {
293
- "const": "/^[0-9A-Za-z~][0-9A-Za-z~._: -]*$/.test($input)",
294
- "type": "string"
295
- },
296
- "value": {
297
- "const": "^[0-9A-Za-z~][0-9A-Za-z~._: -]*$",
298
- "type": "string"
299
- }
300
- },
301
- "required": [
302
- "exclusive",
303
- "kind",
304
- "schema",
305
- "target",
306
- "validate",
307
- "value"
308
- ],
309
- "type": "object"
310
- }
311
- },
312
- "type": "object"
313
- },
314
- "hash": {
315
- "additionalProperties": false,
316
- "properties": {
317
- "typia.tag": {
318
- "additionalProperties": false,
319
- "description": "This is a dummy property for compilation.\n\nIt does not mean anything in runtime.",
320
- "properties": {
321
- "exclusive": {
322
- "items": [
323
- {
324
- "const": "format",
325
- "type": "string"
326
- },
327
- {
328
- "const": "pattern",
329
- "type": "string"
330
- }
331
- ],
332
- "maxItems": 2,
333
- "minItems": 2,
334
- "type": "array"
335
- },
336
- "kind": {
337
- "const": "pattern",
338
- "type": "string"
339
- },
340
- "schema": {
341
- "additionalProperties": false,
342
- "properties": {
343
- "pattern": {
344
- "const": "^([A-Fa-f0-9]{32})?$",
345
- "type": "string"
346
- }
347
- },
348
- "required": [
349
- "pattern"
350
- ],
351
- "type": "object"
352
- },
353
- "target": {
354
- "const": "string",
355
- "type": "string"
356
- },
357
- "validate": {
358
- "const": "/^([A-Fa-f0-9]{32})?$/.test($input)",
359
- "type": "string"
360
- },
361
- "value": {
362
- "const": "^([A-Fa-f0-9]{32})?$",
363
- "type": "string"
364
- }
365
- },
366
- "required": [
367
- "exclusive",
368
- "kind",
369
- "schema",
370
- "target",
371
- "validate",
372
- "value"
373
- ],
374
- "type": "object"
375
- }
376
- },
377
- "type": "object"
378
- },
379
- "id": {
380
- "additionalProperties": false,
381
- "properties": {
382
- "typia.tag": {
383
- "additionalProperties": false,
384
- "description": "This is a dummy property for compilation.\n\nIt does not mean anything in runtime.",
385
- "properties": {
386
- "exclusive": {
387
- "items": [
388
- {
389
- "const": "format",
390
- "type": "string"
391
- },
392
- {
393
- "const": "pattern",
394
- "type": "string"
395
- }
396
- ],
397
- "maxItems": 2,
398
- "minItems": 2,
399
- "type": "array"
400
- },
401
- "kind": {
402
- "const": "pattern",
403
- "type": "string"
404
- },
405
- "schema": {
406
- "additionalProperties": false,
407
- "properties": {
408
- "pattern": {
409
- "const": "^[0-9A-Za-z~][0-9A-Za-z~._: -]*$",
410
- "type": "string"
411
- }
412
- },
413
- "required": [
414
- "pattern"
415
- ],
416
- "type": "object"
417
- },
418
- "target": {
419
- "const": "string",
420
- "type": "string"
421
- },
422
- "validate": {
423
- "const": "/^[0-9A-Za-z~][0-9A-Za-z~._: -]*$/.test($input)",
424
- "type": "string"
425
- },
426
- "value": {
427
- "const": "^[0-9A-Za-z~][0-9A-Za-z~._: -]*$",
428
- "type": "string"
429
- }
430
- },
431
- "required": [
432
- "exclusive",
433
- "kind",
434
- "schema",
435
- "target",
436
- "validate",
437
- "value"
438
- ],
439
- "type": "object"
440
- }
441
- },
442
- "type": "object"
443
- },
444
- "location": {
445
- "additionalProperties": false,
446
- "properties": {
447
- "typia.tag": {
448
- "additionalProperties": false,
449
- "description": "This is a dummy property for compilation.\n\nIt does not mean anything in runtime.",
450
- "properties": {
451
- "exclusive": {
452
- "items": [
453
- {
454
- "const": "format",
455
- "type": "string"
456
- },
457
- {
458
- "const": "pattern",
459
- "type": "string"
460
- }
461
- ],
462
- "maxItems": 2,
463
- "minItems": 2,
464
- "type": "array"
465
- },
466
- "kind": {
467
- "const": "pattern",
468
- "type": "string"
469
- },
470
- "schema": {
471
- "additionalProperties": false,
472
- "properties": {
473
- "pattern": {
474
- "const": "^[0-9A-Za-z~][0-9A-Za-z~._: -]*$",
475
- "type": "string"
476
- }
477
- },
478
- "required": [
479
- "pattern"
480
- ],
481
- "type": "object"
482
- },
483
- "target": {
484
- "const": "string",
485
- "type": "string"
486
- },
487
- "validate": {
488
- "const": "/^[0-9A-Za-z~][0-9A-Za-z~._: -]*$/.test($input)",
489
- "type": "string"
490
- },
491
- "value": {
492
- "const": "^[0-9A-Za-z~][0-9A-Za-z~._: -]*$",
493
- "type": "string"
494
- }
495
- },
496
- "required": [
497
- "exclusive",
498
- "kind",
499
- "schema",
500
- "target",
501
- "validate",
502
- "value"
503
- ],
504
- "type": "object"
505
- }
506
- },
507
- "type": "object"
508
- },
509
- "offset": {
510
- "additionalProperties": false,
511
- "properties": {
512
- "typia.tag": {
513
- "additionalProperties": false,
514
- "description": "This is a dummy property for compilation.\n\nIt does not mean anything in runtime.",
515
- "properties": {
516
- "exclusive": {
517
- "const": true,
518
- "type": "boolean"
519
- },
520
- "kind": {
521
- "const": "type",
522
- "type": "string"
523
- },
524
- "schema": {
525
- "additionalProperties": false,
526
- "properties": {
527
- "type": {
528
- "const": "integer",
529
- "type": "string"
530
- }
531
- },
532
- "required": [
533
- "type"
534
- ],
535
- "type": "object"
536
- },
537
- "target": {
538
- "enum": [
539
- "bigint",
540
- "number"
541
- ],
542
- "type": "string"
543
- },
544
- "validate": {
545
- "additionalProperties": false,
546
- "properties": {
547
- "bigint": {
548
- "const": "BigInt(0) <= $input",
549
- "type": "string"
550
- },
551
- "number": {
552
- "const": "Math.floor($input) === $input && 0 <= $input && $input <= 18446744073709551615",
553
- "type": "string"
554
- }
555
- },
556
- "required": [
557
- "bigint",
558
- "number"
559
- ],
560
- "type": "object"
561
- },
562
- "value": {
563
- "const": "uint64",
564
- "type": "string"
565
- }
566
- },
567
- "required": [
568
- "exclusive",
569
- "kind",
570
- "schema",
571
- "target",
572
- "validate",
573
- "value"
574
- ],
575
- "type": "object"
576
- }
577
- },
578
- "type": "object"
579
- },
580
- "path": {
581
- "type": "string"
582
- },
583
- "size": {
584
- "additionalProperties": false,
585
- "properties": {
586
- "typia.tag": {
587
- "additionalProperties": false,
588
- "description": "This is a dummy property for compilation.\n\nIt does not mean anything in runtime.",
589
- "properties": {
590
- "exclusive": {
591
- "const": true,
592
- "type": "boolean"
593
- },
594
- "kind": {
595
- "const": "type",
596
- "type": "string"
597
- },
598
- "schema": {
599
- "additionalProperties": false,
600
- "properties": {
601
- "type": {
602
- "const": "integer",
603
- "type": "string"
604
- }
605
- },
606
- "required": [
607
- "type"
608
- ],
609
- "type": "object"
610
- },
611
- "target": {
612
- "enum": [
613
- "bigint",
614
- "number"
615
- ],
616
- "type": "string"
617
- },
618
- "validate": {
619
- "additionalProperties": false,
620
- "properties": {
621
- "bigint": {
622
- "const": "BigInt(0) <= $input",
623
- "type": "string"
624
- },
625
- "number": {
626
- "const": "Math.floor($input) === $input && 0 <= $input && $input <= 18446744073709551615",
627
- "type": "string"
628
- }
629
- },
630
- "required": [
631
- "bigint",
632
- "number"
633
- ],
634
- "type": "object"
635
- },
636
- "value": {
637
- "const": "uint64",
638
- "type": "string"
639
- }
640
- },
641
- "required": [
642
- "exclusive",
643
- "kind",
644
- "schema",
645
- "target",
646
- "validate",
647
- "value"
648
- ],
649
- "type": "object"
650
- }
651
- },
652
- "type": "object"
653
- }
654
- },
655
- "required": [
656
- "btime",
657
- "error",
658
- "file",
659
- "hash",
660
- "id",
661
- "location",
662
- "offset",
663
- "path",
664
- "size"
665
- ],
666
- "type": "object"
667
- },
668
- "Blocks": {
669
- "items": {
670
- "$ref": "#/definitions/Block"
671
- },
672
- "type": "array"
673
- },
674
242
  "BundleDomainRecords": {
675
243
  "additionalProperties": false,
676
244
  "properties": {
@@ -711,6 +279,51 @@
711
279
  },
712
280
  "type": "object"
713
281
  },
282
+ "CloneDomainCloneRecord": {
283
+ "additionalProperties": false,
284
+ "properties": {
285
+ "rules": {
286
+ "items": {
287
+ "$ref": "#/definitions/CloneRule"
288
+ },
289
+ "type": "array"
290
+ }
291
+ },
292
+ "required": [
293
+ "rules"
294
+ ],
295
+ "type": "object"
296
+ },
297
+ "CloneDomainRecords": {
298
+ "additionalProperties": false,
299
+ "properties": {
300
+ ":clone": {
301
+ "$ref": "#/definitions/CloneDomainCloneRecord"
302
+ }
303
+ },
304
+ "required": [
305
+ ":clone"
306
+ ],
307
+ "type": "object"
308
+ },
309
+ "CloneRule": {
310
+ "additionalProperties": false,
311
+ "properties": {
312
+ "domain": {
313
+ "type": "string"
314
+ },
315
+ "path": {
316
+ "type": "string"
317
+ },
318
+ "template": {
319
+ "type": "string"
320
+ }
321
+ },
322
+ "required": [
323
+ "domain"
324
+ ],
325
+ "type": "object"
326
+ },
714
327
  "ConnectionDomainRecords": {
715
328
  "additionalProperties": false,
716
329
  "properties": {
@@ -744,6 +357,21 @@
744
357
  }
745
358
  ]
746
359
  },
360
+ "ConnectionRecordCommon": {
361
+ "additionalProperties": false,
362
+ "properties": {
363
+ "notifyOnPublish": {
364
+ "type": "boolean"
365
+ },
366
+ "type": {
367
+ "type": "string"
368
+ }
369
+ },
370
+ "required": [
371
+ "type"
372
+ ],
373
+ "type": "object"
374
+ },
747
375
  "ConnectionStatsRecord": {
748
376
  "additionalProperties": false,
749
377
  "properties": {
@@ -776,51 +404,151 @@
776
404
  "ContactDomainRecords": {
777
405
  "additionalProperties": false,
778
406
  "properties": {
779
- ":contact": {
780
- "$ref": "#/definitions/ContactRecord"
407
+ ":contact": {
408
+ "$ref": "#/definitions/ContactRecord"
409
+ }
410
+ },
411
+ "required": [
412
+ ":contact"
413
+ ],
414
+ "type": "object"
415
+ },
416
+ "ContactRecord": {
417
+ "additionalProperties": false,
418
+ "properties": {
419
+ "email": {
420
+ "type": "string"
421
+ },
422
+ "firstName": {
423
+ "type": "string"
424
+ },
425
+ "lastName": {
426
+ "type": "string"
427
+ },
428
+ "title": {
429
+ "type": "string"
430
+ }
431
+ },
432
+ "type": "object"
433
+ },
434
+ "CopyOperation": {
435
+ "additionalProperties": false,
436
+ "properties": {
437
+ "from": {
438
+ "type": "string"
439
+ },
440
+ "op": {
441
+ "const": "copy",
442
+ "type": "string"
443
+ },
444
+ "path": {
445
+ "type": "string"
446
+ }
447
+ },
448
+ "required": [
449
+ "from",
450
+ "op",
451
+ "path"
452
+ ],
453
+ "type": "object"
454
+ },
455
+ "DesignDomainRecord": {
456
+ "additionalProperties": false,
457
+ "properties": {
458
+ "rows": {
459
+ "items": {
460
+ "$ref": "#/definitions/DesignViewRow<Id,Key,Value>"
461
+ },
462
+ "type": "array"
463
+ }
464
+ },
465
+ "required": [
466
+ "rows"
467
+ ],
468
+ "type": "object"
469
+ },
470
+ "DesignDomainRecord<string,string,unknown>": {
471
+ "additionalProperties": false,
472
+ "properties": {
473
+ "rows": {
474
+ "items": {
475
+ "$ref": "#/definitions/DesignViewRow<string,string,unknown>"
476
+ },
477
+ "type": "array"
478
+ }
479
+ },
480
+ "required": [
481
+ "rows"
482
+ ],
483
+ "type": "object"
484
+ },
485
+ "DesignDomainRecords": {
486
+ "additionalProperties": false,
487
+ "properties": {
488
+ ":design": {
489
+ "$ref": "#/definitions/DesignDomainRecord<string,string,unknown>"
490
+ }
491
+ },
492
+ "required": [
493
+ ":design"
494
+ ],
495
+ "type": "object"
496
+ },
497
+ "DesignViewRow": {
498
+ "additionalProperties": false,
499
+ "properties": {
500
+ "id": {
501
+ "$ref": "#/definitions/Id_1"
502
+ },
503
+ "key": {
504
+ "$ref": "#/definitions/Key_1"
505
+ },
506
+ "value": {
507
+ "$ref": "#/definitions/Value_1"
781
508
  }
782
509
  },
783
510
  "required": [
784
- ":contact"
511
+ "id",
512
+ "key",
513
+ "value"
785
514
  ],
786
515
  "type": "object"
787
516
  },
788
- "ContactRecord": {
517
+ "DesignViewRow<Id,Key,Value>": {
789
518
  "additionalProperties": false,
790
519
  "properties": {
791
- "email": {
792
- "type": "string"
793
- },
794
- "firstName": {
795
- "type": "string"
520
+ "id": {
521
+ "$ref": "#/definitions/Id"
796
522
  },
797
- "lastName": {
798
- "type": "string"
523
+ "key": {
524
+ "$ref": "#/definitions/Key"
799
525
  },
800
- "title": {
801
- "type": "string"
526
+ "value": {
527
+ "$ref": "#/definitions/Value"
802
528
  }
803
529
  },
530
+ "required": [
531
+ "id",
532
+ "key",
533
+ "value"
534
+ ],
804
535
  "type": "object"
805
536
  },
806
- "CopyOperation": {
537
+ "DesignViewRow<string,string,unknown>": {
807
538
  "additionalProperties": false,
808
539
  "properties": {
809
- "from": {
540
+ "id": {
810
541
  "type": "string"
811
542
  },
812
- "op": {
813
- "const": "copy",
543
+ "key": {
814
544
  "type": "string"
815
545
  },
816
- "path": {
817
- "type": "string"
818
- }
546
+ "value": {}
819
547
  },
820
548
  "required": [
821
- "from",
822
- "op",
823
- "path"
549
+ "id",
550
+ "key",
551
+ "value"
824
552
  ],
825
553
  "type": "object"
826
554
  },
@@ -830,9 +558,15 @@
830
558
  ":asset.assignees?": {
831
559
  "$ref": "#/definitions/AssetAssigneesRecord"
832
560
  },
561
+ ":asset.created?": {
562
+ "$ref": "#/definitions/AssetCreatedRecord"
563
+ },
833
564
  ":asset.fileRefs?": {
834
565
  "$ref": "#/definitions/AssetFileRefsRecord"
835
566
  },
567
+ ":asset.modified?": {
568
+ "$ref": "#/definitions/AssetModifiedRecord"
569
+ },
836
570
  ":asset.refs?": {
837
571
  "$ref": "#/definitions/AssetRefsRecord"
838
572
  },
@@ -851,6 +585,9 @@
851
585
  ":bundle.revisions": {
852
586
  "$ref": "#/definitions/BundleRevisionsRecord"
853
587
  },
588
+ ":clone": {
589
+ "$ref": "#/definitions/CloneDomainCloneRecord"
590
+ },
854
591
  ":connection": {
855
592
  "$ref": "#/definitions/ConnectionRecord"
856
593
  },
@@ -863,6 +600,9 @@
863
600
  ":contact": {
864
601
  "$ref": "#/definitions/ContactRecord"
865
602
  },
603
+ ":design": {
604
+ "$ref": "#/definitions/DesignDomainRecord<string,string,unknown>"
605
+ },
866
606
  ":event": {
867
607
  "$ref": "#/definitions/EventRecord"
868
608
  },
@@ -872,6 +612,9 @@
872
612
  ":file.replicate": {
873
613
  "$ref": "#/definitions/FileReplicateRecord"
874
614
  },
615
+ ":file.restrictions": {
616
+ "$ref": "#/definitions/FileRestrictionsRecord"
617
+ },
875
618
  ":general.created": {
876
619
  "$ref": "#/definitions/GeneralCreatedRecord"
877
620
  },
@@ -896,9 +639,15 @@
896
639
  ":media.consolidate": {
897
640
  "$ref": "#/definitions/MediaConsolidateRecord"
898
641
  },
642
+ ":media.font": {
643
+ "$ref": "#/definitions/MediaFontRecord"
644
+ },
899
645
  ":media.renders?": {
900
646
  "$ref": "#/definitions/MediaRendersRecord"
901
647
  },
648
+ ":media.restrictions?": {
649
+ "$ref": "#/definitions/MediaRestrictionsRecord"
650
+ },
902
651
  ":media.source": {
903
652
  "$ref": "#/definitions/MediaSourceRecord"
904
653
  },
@@ -932,6 +681,12 @@
932
681
  ":publish.stats?": {
933
682
  "$ref": "#/definitions/PublishStatsRecord"
934
683
  },
684
+ ":published": {
685
+ "$ref": "#/definitions/PublishedRecord"
686
+ },
687
+ ":revs?": {
688
+ "$ref": "#/definitions/RevsRecord"
689
+ },
935
690
  ":role.tags": {
936
691
  "$ref": "#/definitions/RoleTagsRecord"
937
692
  },
@@ -946,24 +701,32 @@
946
701
  },
947
702
  ":template": {
948
703
  "$ref": "#/definitions/TemplateRecord"
704
+ },
705
+ ":user": {
706
+ "$ref": "#/definitions/UserRecord"
949
707
  }
950
708
  },
951
709
  "required": [
952
710
  ":asset.assignees?",
711
+ ":asset.created?",
953
712
  ":asset.fileRefs?",
713
+ ":asset.modified?",
954
714
  ":asset.refs?",
955
715
  ":asset.tags?",
956
716
  ":asset.title?",
957
717
  ":asset.types?",
958
718
  ":bundle",
959
719
  ":bundle.revisions",
720
+ ":clone",
960
721
  ":connection",
961
722
  ":connection.methods?",
962
723
  ":connection.stats?",
963
724
  ":contact",
725
+ ":design",
964
726
  ":event",
965
727
  ":event._template?",
966
728
  ":file.replicate",
729
+ ":file.restrictions",
967
730
  ":general.created",
968
731
  ":general.description",
969
732
  ":general.poster",
@@ -971,7 +734,9 @@
971
734
  ":general.tags",
972
735
  ":general.title",
973
736
  ":media.consolidate",
737
+ ":media.font",
974
738
  ":media.renders?",
739
+ ":media.restrictions?",
975
740
  ":media.source",
976
741
  ":media.transcriptChanges",
977
742
  ":permission",
@@ -982,14 +747,84 @@
982
747
  ":publish",
983
748
  ":publish.methods?",
984
749
  ":publish.stats?",
750
+ ":published",
751
+ ":revs?",
985
752
  ":role.tags",
986
753
  ":script.children",
987
754
  ":search",
988
755
  ":settings",
989
- ":template"
756
+ ":template",
757
+ ":user"
758
+ ],
759
+ "type": "object"
760
+ },
761
+ "DomainRows": {
762
+ "additionalProperties": false,
763
+ "properties": {
764
+ "rows": {
765
+ "items": {
766
+ "type": "string"
767
+ },
768
+ "type": "array"
769
+ }
770
+ },
771
+ "required": [
772
+ "rows"
990
773
  ],
991
774
  "type": "object"
992
775
  },
776
+ "Domains": {
777
+ "enum": [
778
+ ":asset.assignees?",
779
+ ":asset.created?",
780
+ ":asset.fileRefs?",
781
+ ":asset.modified?",
782
+ ":asset.refs?",
783
+ ":asset.tags?",
784
+ ":asset.title?",
785
+ ":asset.types?",
786
+ ":bundle",
787
+ ":bundle.revisions",
788
+ ":clone",
789
+ ":connection",
790
+ ":connection.methods?",
791
+ ":connection.stats?",
792
+ ":contact",
793
+ ":event",
794
+ ":event._template?",
795
+ ":file.replicate",
796
+ ":file.restrictions",
797
+ ":general.created",
798
+ ":general.description",
799
+ ":general.poster",
800
+ ":general.status",
801
+ ":general.tags",
802
+ ":general.title",
803
+ ":media.consolidate",
804
+ ":media.font",
805
+ ":media.renders?",
806
+ ":media.restrictions?",
807
+ ":media.source",
808
+ ":media.transcriptChanges",
809
+ ":permission",
810
+ ":permission?",
811
+ ":planning",
812
+ ":planning.assignees",
813
+ ":planning.deadline",
814
+ ":publish",
815
+ ":publish.methods?",
816
+ ":publish.stats?",
817
+ ":published",
818
+ ":revs?",
819
+ ":role.tags",
820
+ ":script.children",
821
+ ":search",
822
+ ":settings",
823
+ ":template",
824
+ ":user"
825
+ ],
826
+ "type": "string"
827
+ },
993
828
  "ElectronHubApi": {
994
829
  "additionalProperties": false,
995
830
  "properties": {
@@ -1107,6 +942,9 @@
1107
942
  },
1108
943
  "type": "array"
1109
944
  },
945
+ "notifyOnPublish": {
946
+ "type": "boolean"
947
+ },
1110
948
  "type": {
1111
949
  "const": "facebook",
1112
950
  "type": "string"
@@ -1188,354 +1026,7 @@
1188
1026
  "substatus": {
1189
1027
  "type": "string"
1190
1028
  }
1191
- },
1192
- "type": "object"
1193
- },
1194
- "File": {
1195
- "additionalProperties": false,
1196
- "properties": {
1197
- "btime": {
1198
- "additionalProperties": false,
1199
- "properties": {
1200
- "typia.tag": {
1201
- "additionalProperties": false,
1202
- "description": "This is a dummy property for compilation.\n\nIt does not mean anything in runtime.",
1203
- "properties": {
1204
- "exclusive": {
1205
- "const": true,
1206
- "type": "boolean"
1207
- },
1208
- "kind": {
1209
- "const": "type",
1210
- "type": "string"
1211
- },
1212
- "schema": {
1213
- "additionalProperties": false,
1214
- "properties": {
1215
- "type": {
1216
- "const": "integer",
1217
- "type": "string"
1218
- }
1219
- },
1220
- "required": [
1221
- "type"
1222
- ],
1223
- "type": "object"
1224
- },
1225
- "target": {
1226
- "enum": [
1227
- "bigint",
1228
- "number"
1229
- ],
1230
- "type": "string"
1231
- },
1232
- "validate": {
1233
- "additionalProperties": false,
1234
- "properties": {
1235
- "bigint": {
1236
- "const": "BigInt(0) <= $input",
1237
- "type": "string"
1238
- },
1239
- "number": {
1240
- "const": "Math.floor($input) === $input && 0 <= $input && $input <= 18446744073709551615",
1241
- "type": "string"
1242
- }
1243
- },
1244
- "required": [
1245
- "bigint",
1246
- "number"
1247
- ],
1248
- "type": "object"
1249
- },
1250
- "value": {
1251
- "const": "uint64",
1252
- "type": "string"
1253
- }
1254
- },
1255
- "required": [
1256
- "exclusive",
1257
- "kind",
1258
- "schema",
1259
- "target",
1260
- "validate",
1261
- "value"
1262
- ],
1263
- "type": "object"
1264
- }
1265
- },
1266
- "type": "object"
1267
- },
1268
- "completed": {
1269
- "type": "boolean"
1270
- },
1271
- "deleted": {
1272
- "type": "boolean"
1273
- },
1274
- "error": {
1275
- "anyOf": [
1276
- {
1277
- "$ref": "#/definitions/NxtError"
1278
- },
1279
- {
1280
- "items": {
1281
- "$ref": "#/definitions/NxtError"
1282
- },
1283
- "type": "array"
1284
- }
1285
- ]
1286
- },
1287
- "hash": {
1288
- "additionalProperties": false,
1289
- "properties": {
1290
- "typia.tag": {
1291
- "additionalProperties": false,
1292
- "description": "This is a dummy property for compilation.\n\nIt does not mean anything in runtime.",
1293
- "properties": {
1294
- "exclusive": {
1295
- "items": [
1296
- {
1297
- "const": "format",
1298
- "type": "string"
1299
- },
1300
- {
1301
- "const": "pattern",
1302
- "type": "string"
1303
- }
1304
- ],
1305
- "maxItems": 2,
1306
- "minItems": 2,
1307
- "type": "array"
1308
- },
1309
- "kind": {
1310
- "const": "pattern",
1311
- "type": "string"
1312
- },
1313
- "schema": {
1314
- "additionalProperties": false,
1315
- "properties": {
1316
- "pattern": {
1317
- "const": "^([A-Fa-f0-9]{32})?$",
1318
- "type": "string"
1319
- }
1320
- },
1321
- "required": [
1322
- "pattern"
1323
- ],
1324
- "type": "object"
1325
- },
1326
- "target": {
1327
- "const": "string",
1328
- "type": "string"
1329
- },
1330
- "validate": {
1331
- "const": "/^([A-Fa-f0-9]{32})?$/.test($input)",
1332
- "type": "string"
1333
- },
1334
- "value": {
1335
- "const": "^([A-Fa-f0-9]{32})?$",
1336
- "type": "string"
1337
- }
1338
- },
1339
- "required": [
1340
- "exclusive",
1341
- "kind",
1342
- "schema",
1343
- "target",
1344
- "validate",
1345
- "value"
1346
- ],
1347
- "type": "object"
1348
- }
1349
- },
1350
- "type": "object"
1351
- },
1352
- "id": {
1353
- "additionalProperties": false,
1354
- "properties": {
1355
- "typia.tag": {
1356
- "additionalProperties": false,
1357
- "description": "This is a dummy property for compilation.\n\nIt does not mean anything in runtime.",
1358
- "properties": {
1359
- "exclusive": {
1360
- "items": [
1361
- {
1362
- "const": "format",
1363
- "type": "string"
1364
- },
1365
- {
1366
- "const": "pattern",
1367
- "type": "string"
1368
- }
1369
- ],
1370
- "maxItems": 2,
1371
- "minItems": 2,
1372
- "type": "array"
1373
- },
1374
- "kind": {
1375
- "const": "pattern",
1376
- "type": "string"
1377
- },
1378
- "schema": {
1379
- "additionalProperties": false,
1380
- "properties": {
1381
- "pattern": {
1382
- "const": "^[0-9A-Za-z~][0-9A-Za-z~._: -]*$",
1383
- "type": "string"
1384
- }
1385
- },
1386
- "required": [
1387
- "pattern"
1388
- ],
1389
- "type": "object"
1390
- },
1391
- "target": {
1392
- "const": "string",
1393
- "type": "string"
1394
- },
1395
- "validate": {
1396
- "const": "/^[0-9A-Za-z~][0-9A-Za-z~._: -]*$/.test($input)",
1397
- "type": "string"
1398
- },
1399
- "value": {
1400
- "const": "^[0-9A-Za-z~][0-9A-Za-z~._: -]*$",
1401
- "type": "string"
1402
- }
1403
- },
1404
- "required": [
1405
- "exclusive",
1406
- "kind",
1407
- "schema",
1408
- "target",
1409
- "validate",
1410
- "value"
1411
- ],
1412
- "type": "object"
1413
- }
1414
- },
1415
- "type": "object"
1416
- },
1417
- "mimeType": {
1418
- "type": "string"
1419
- },
1420
- "refs": {
1421
- "items": {
1422
- "additionalProperties": false,
1423
- "properties": {
1424
- "end": {
1425
- "type": "number"
1426
- },
1427
- "file": {
1428
- "type": "string"
1429
- },
1430
- "offset": {
1431
- "type": "number"
1432
- },
1433
- "start": {
1434
- "type": "number"
1435
- }
1436
- },
1437
- "type": "object"
1438
- },
1439
- "type": "array"
1440
- },
1441
- "resumable": {
1442
- "type": "string"
1443
- },
1444
- "seekable": {
1445
- "type": "boolean"
1446
- },
1447
- "size": {
1448
- "additionalProperties": false,
1449
- "properties": {
1450
- "typia.tag": {
1451
- "additionalProperties": false,
1452
- "description": "This is a dummy property for compilation.\n\nIt does not mean anything in runtime.",
1453
- "properties": {
1454
- "exclusive": {
1455
- "const": true,
1456
- "type": "boolean"
1457
- },
1458
- "kind": {
1459
- "const": "type",
1460
- "type": "string"
1461
- },
1462
- "schema": {
1463
- "additionalProperties": false,
1464
- "properties": {
1465
- "type": {
1466
- "const": "integer",
1467
- "type": "string"
1468
- }
1469
- },
1470
- "required": [
1471
- "type"
1472
- ],
1473
- "type": "object"
1474
- },
1475
- "target": {
1476
- "enum": [
1477
- "bigint",
1478
- "number"
1479
- ],
1480
- "type": "string"
1481
- },
1482
- "validate": {
1483
- "additionalProperties": false,
1484
- "properties": {
1485
- "bigint": {
1486
- "const": "BigInt(0) <= $input",
1487
- "type": "string"
1488
- },
1489
- "number": {
1490
- "const": "Math.floor($input) === $input && 0 <= $input && $input <= 18446744073709551615",
1491
- "type": "string"
1492
- }
1493
- },
1494
- "required": [
1495
- "bigint",
1496
- "number"
1497
- ],
1498
- "type": "object"
1499
- },
1500
- "value": {
1501
- "const": "uint64",
1502
- "type": "string"
1503
- }
1504
- },
1505
- "required": [
1506
- "exclusive",
1507
- "kind",
1508
- "schema",
1509
- "target",
1510
- "validate",
1511
- "value"
1512
- ],
1513
- "type": "object"
1514
- }
1515
- },
1516
- "type": "object"
1517
- },
1518
- "tags": {
1519
- "items": {
1520
- "type": "string"
1521
- },
1522
- "type": "array"
1523
- }
1524
- },
1525
- "required": [
1526
- "btime",
1527
- "completed",
1528
- "deleted",
1529
- "error",
1530
- "hash",
1531
- "id",
1532
- "mimeType",
1533
- "refs",
1534
- "resumable",
1535
- "seekable",
1536
- "size",
1537
- "tags"
1538
- ],
1029
+ },
1539
1030
  "type": "object"
1540
1031
  },
1541
1032
  "FileDomainRecords": {
@@ -1543,16 +1034,27 @@
1543
1034
  "properties": {
1544
1035
  ":file.replicate": {
1545
1036
  "$ref": "#/definitions/FileReplicateRecord"
1037
+ },
1038
+ ":file.restrictions": {
1039
+ "$ref": "#/definitions/FileRestrictionsRecord"
1546
1040
  }
1547
1041
  },
1548
1042
  "required": [
1549
- ":file.replicate"
1043
+ ":file.replicate",
1044
+ ":file.restrictions"
1550
1045
  ],
1551
1046
  "type": "object"
1552
1047
  },
1553
1048
  "FilePublishConnectionRecord": {
1554
1049
  "additionalProperties": false,
1555
1050
  "properties": {
1051
+ "bucket": {
1052
+ "description": "S3 bucket name",
1053
+ "type": "string"
1054
+ },
1055
+ "client": {
1056
+ "description": "S3 client options"
1057
+ },
1556
1058
  "concurrency": {
1557
1059
  "type": "number"
1558
1060
  },
@@ -1562,12 +1064,36 @@
1562
1064
  "ignoreMissing": {
1563
1065
  "type": "boolean"
1564
1066
  },
1067
+ "listConcurrency": {
1068
+ "type": "number"
1069
+ },
1070
+ "metafile": {
1071
+ "additionalProperties": false,
1072
+ "properties": {
1073
+ "content": {
1074
+ "type": "string"
1075
+ }
1076
+ },
1077
+ "required": [
1078
+ "content"
1079
+ ],
1080
+ "type": "object"
1081
+ },
1082
+ "notifyOnPublish": {
1083
+ "type": "boolean"
1084
+ },
1085
+ "pollInterval": {
1086
+ "type": "number"
1087
+ },
1565
1088
  "port": {
1566
1089
  "type": "number"
1567
1090
  },
1568
1091
  "protocol": {
1569
1092
  "type": "string"
1570
1093
  },
1094
+ "stabilityThreshold": {
1095
+ "type": "number"
1096
+ },
1571
1097
  "type": {
1572
1098
  "const": "file",
1573
1099
  "type": "string"
@@ -1776,589 +1302,39 @@
1776
1302
  ],
1777
1303
  "type": "object"
1778
1304
  },
1779
- "FileStats": {
1780
- "additionalProperties": false,
1781
- "properties": {
1782
- "btime": {
1783
- "additionalProperties": false,
1784
- "properties": {
1785
- "typia.tag": {
1786
- "additionalProperties": false,
1787
- "description": "This is a dummy property for compilation.\n\nIt does not mean anything in runtime.",
1788
- "properties": {
1789
- "exclusive": {
1790
- "const": true,
1791
- "type": "boolean"
1792
- },
1793
- "kind": {
1794
- "const": "type",
1795
- "type": "string"
1796
- },
1797
- "schema": {
1798
- "additionalProperties": false,
1799
- "properties": {
1800
- "type": {
1801
- "const": "integer",
1802
- "type": "string"
1803
- }
1804
- },
1805
- "required": [
1806
- "type"
1807
- ],
1808
- "type": "object"
1809
- },
1810
- "target": {
1811
- "enum": [
1812
- "bigint",
1813
- "number"
1814
- ],
1815
- "type": "string"
1816
- },
1817
- "validate": {
1818
- "additionalProperties": false,
1819
- "properties": {
1820
- "bigint": {
1821
- "const": "BigInt(0) <= $input",
1822
- "type": "string"
1823
- },
1824
- "number": {
1825
- "const": "Math.floor($input) === $input && 0 <= $input && $input <= 18446744073709551615",
1826
- "type": "string"
1827
- }
1828
- },
1829
- "required": [
1830
- "bigint",
1831
- "number"
1832
- ],
1833
- "type": "object"
1834
- },
1835
- "value": {
1836
- "const": "uint64",
1837
- "type": "string"
1838
- }
1839
- },
1840
- "required": [
1841
- "exclusive",
1842
- "kind",
1843
- "schema",
1844
- "target",
1845
- "validate",
1846
- "value"
1847
- ],
1848
- "type": "object"
1849
- }
1850
- },
1851
- "type": "object"
1852
- },
1853
- "completed": {
1854
- "type": "boolean"
1855
- },
1856
- "deleted": {
1857
- "type": "boolean"
1858
- },
1859
- "error": {
1860
- "anyOf": [
1861
- {
1862
- "$ref": "#/definitions/NxtError"
1863
- },
1864
- {
1865
- "items": {
1866
- "$ref": "#/definitions/NxtError"
1867
- },
1868
- "type": "array"
1869
- }
1870
- ]
1871
- },
1872
- "hash": {
1873
- "additionalProperties": false,
1874
- "properties": {
1875
- "typia.tag": {
1876
- "additionalProperties": false,
1877
- "description": "This is a dummy property for compilation.\n\nIt does not mean anything in runtime.",
1878
- "properties": {
1879
- "exclusive": {
1880
- "items": [
1881
- {
1882
- "const": "format",
1883
- "type": "string"
1884
- },
1885
- {
1886
- "const": "pattern",
1887
- "type": "string"
1888
- }
1889
- ],
1890
- "maxItems": 2,
1891
- "minItems": 2,
1892
- "type": "array"
1893
- },
1894
- "kind": {
1895
- "const": "pattern",
1896
- "type": "string"
1897
- },
1898
- "schema": {
1899
- "additionalProperties": false,
1900
- "properties": {
1901
- "pattern": {
1902
- "const": "^([A-Fa-f0-9]{32})?$",
1903
- "type": "string"
1904
- }
1905
- },
1906
- "required": [
1907
- "pattern"
1908
- ],
1909
- "type": "object"
1910
- },
1911
- "target": {
1912
- "const": "string",
1913
- "type": "string"
1914
- },
1915
- "validate": {
1916
- "const": "/^([A-Fa-f0-9]{32})?$/.test($input)",
1917
- "type": "string"
1918
- },
1919
- "value": {
1920
- "const": "^([A-Fa-f0-9]{32})?$",
1921
- "type": "string"
1922
- }
1923
- },
1924
- "required": [
1925
- "exclusive",
1926
- "kind",
1927
- "schema",
1928
- "target",
1929
- "validate",
1930
- "value"
1931
- ],
1932
- "type": "object"
1933
- }
1934
- },
1935
- "type": "object"
1936
- },
1937
- "id": {
1938
- "additionalProperties": false,
1939
- "properties": {
1940
- "typia.tag": {
1941
- "additionalProperties": false,
1942
- "description": "This is a dummy property for compilation.\n\nIt does not mean anything in runtime.",
1943
- "properties": {
1944
- "exclusive": {
1945
- "items": [
1946
- {
1947
- "const": "format",
1948
- "type": "string"
1949
- },
1950
- {
1951
- "const": "pattern",
1952
- "type": "string"
1953
- }
1954
- ],
1955
- "maxItems": 2,
1956
- "minItems": 2,
1957
- "type": "array"
1958
- },
1959
- "kind": {
1960
- "const": "pattern",
1961
- "type": "string"
1962
- },
1963
- "schema": {
1964
- "additionalProperties": false,
1965
- "properties": {
1966
- "pattern": {
1967
- "const": "^[0-9A-Za-z~][0-9A-Za-z~._: -]*$",
1968
- "type": "string"
1969
- }
1970
- },
1971
- "required": [
1972
- "pattern"
1973
- ],
1974
- "type": "object"
1975
- },
1976
- "target": {
1977
- "const": "string",
1978
- "type": "string"
1979
- },
1980
- "validate": {
1981
- "const": "/^[0-9A-Za-z~][0-9A-Za-z~._: -]*$/.test($input)",
1982
- "type": "string"
1983
- },
1984
- "value": {
1985
- "const": "^[0-9A-Za-z~][0-9A-Za-z~._: -]*$",
1986
- "type": "string"
1987
- }
1988
- },
1989
- "required": [
1990
- "exclusive",
1991
- "kind",
1992
- "schema",
1993
- "target",
1994
- "validate",
1995
- "value"
1996
- ],
1997
- "type": "object"
1998
- }
1999
- },
2000
- "type": "object"
2001
- },
2002
- "locations": {
2003
- "items": {
1305
+ "FileRestrictionsRecord": {
1306
+ "additionalProperties": {
1307
+ "additionalProperties": false,
1308
+ "properties": {
1309
+ "asset": {
2004
1310
  "type": "string"
2005
1311
  },
2006
- "type": "array"
2007
- },
2008
- "mimeType": {
2009
- "type": "string"
2010
- },
2011
- "position": {
2012
- "additionalProperties": false,
2013
- "properties": {
2014
- "typia.tag": {
2015
- "additionalProperties": false,
2016
- "description": "This is a dummy property for compilation.\n\nIt does not mean anything in runtime.",
2017
- "properties": {
2018
- "exclusive": {
2019
- "const": true,
2020
- "type": "boolean"
2021
- },
2022
- "kind": {
2023
- "const": "type",
2024
- "type": "string"
2025
- },
2026
- "schema": {
2027
- "additionalProperties": false,
2028
- "properties": {
2029
- "type": {
2030
- "const": "integer",
2031
- "type": "string"
2032
- }
2033
- },
2034
- "required": [
2035
- "type"
2036
- ],
2037
- "type": "object"
2038
- },
2039
- "target": {
2040
- "enum": [
2041
- "bigint",
2042
- "number"
2043
- ],
2044
- "type": "string"
2045
- },
2046
- "validate": {
2047
- "additionalProperties": false,
2048
- "properties": {
2049
- "bigint": {
2050
- "const": "BigInt(0) <= $input",
2051
- "type": "string"
2052
- },
2053
- "number": {
2054
- "const": "Math.floor($input) === $input && 0 <= $input && $input <= 18446744073709551615",
2055
- "type": "string"
2056
- }
2057
- },
2058
- "required": [
2059
- "bigint",
2060
- "number"
2061
- ],
2062
- "type": "object"
2063
- },
2064
- "value": {
2065
- "const": "uint64",
2066
- "type": "string"
2067
- }
2068
- },
2069
- "required": [
2070
- "exclusive",
2071
- "kind",
2072
- "schema",
2073
- "target",
2074
- "validate",
2075
- "value"
2076
- ],
2077
- "type": "object"
2078
- }
1312
+ "date": {
1313
+ "type": "string"
2079
1314
  },
2080
- "type": "object"
2081
- },
2082
- "ranges": {
2083
- "items": {
2084
- "items": [
2085
- {
2086
- "additionalProperties": false,
2087
- "properties": {
2088
- "typia.tag": {
2089
- "additionalProperties": false,
2090
- "description": "This is a dummy property for compilation.\n\nIt does not mean anything in runtime.",
2091
- "properties": {
2092
- "exclusive": {
2093
- "items": [
2094
- {
2095
- "const": "minimum",
2096
- "type": "string"
2097
- },
2098
- {
2099
- "const": "exclusiveMinimum",
2100
- "type": "string"
2101
- }
2102
- ],
2103
- "maxItems": 2,
2104
- "minItems": 2,
2105
- "type": "array"
2106
- },
2107
- "kind": {
2108
- "const": "minimum",
2109
- "type": "string"
2110
- },
2111
- "schema": {
2112
- "additionalProperties": false,
2113
- "properties": {
2114
- "minimum": {
2115
- "const": 0,
2116
- "type": "number"
2117
- }
2118
- },
2119
- "required": [
2120
- "minimum"
2121
- ],
2122
- "type": "object"
2123
- },
2124
- "target": {
2125
- "const": "number",
2126
- "type": "string"
2127
- },
2128
- "validate": {
2129
- "const": "0 <= $input",
2130
- "type": "string"
2131
- },
2132
- "value": {
2133
- "const": 0,
2134
- "type": "number"
2135
- }
2136
- },
2137
- "required": [
2138
- "exclusive",
2139
- "kind",
2140
- "schema",
2141
- "target",
2142
- "validate",
2143
- "value"
2144
- ],
2145
- "type": "object"
2146
- }
2147
- },
2148
- "type": "object"
2149
- },
2150
- {
2151
- "additionalProperties": false,
2152
- "properties": {
2153
- "typia.tag": {
2154
- "additionalProperties": false,
2155
- "description": "This is a dummy property for compilation.\n\nIt does not mean anything in runtime.",
2156
- "properties": {
2157
- "exclusive": {
2158
- "items": [
2159
- {
2160
- "const": "minimum",
2161
- "type": "string"
2162
- },
2163
- {
2164
- "const": "exclusiveMinimum",
2165
- "type": "string"
2166
- }
2167
- ],
2168
- "maxItems": 2,
2169
- "minItems": 2,
2170
- "type": "array"
2171
- },
2172
- "kind": {
2173
- "const": "minimum",
2174
- "type": "string"
2175
- },
2176
- "schema": {
2177
- "additionalProperties": false,
2178
- "properties": {
2179
- "minimum": {
2180
- "const": 0,
2181
- "type": "number"
2182
- }
2183
- },
2184
- "required": [
2185
- "minimum"
2186
- ],
2187
- "type": "object"
2188
- },
2189
- "target": {
2190
- "const": "number",
2191
- "type": "string"
2192
- },
2193
- "validate": {
2194
- "const": "0 <= $input",
2195
- "type": "string"
2196
- },
2197
- "value": {
2198
- "const": 0,
2199
- "type": "number"
2200
- }
2201
- },
2202
- "required": [
2203
- "exclusive",
2204
- "kind",
2205
- "schema",
2206
- "target",
2207
- "validate",
2208
- "value"
2209
- ],
2210
- "type": "object"
2211
- }
2212
- },
2213
- "type": "object"
2214
- }
2215
- ],
2216
- "maxItems": 2,
2217
- "minItems": 2,
2218
- "type": "array"
1315
+ "end": {
1316
+ "type": "number"
2219
1317
  },
2220
- "type": "array"
2221
- },
2222
- "refs": {
2223
- "items": {
2224
- "additionalProperties": false,
2225
- "properties": {
2226
- "end": {
2227
- "type": "number"
2228
- },
2229
- "file": {
2230
- "type": "string"
2231
- },
2232
- "offset": {
2233
- "type": "number"
2234
- },
2235
- "start": {
2236
- "type": "number"
2237
- }
2238
- },
2239
- "type": "object"
1318
+ "start": {
1319
+ "type": "number"
2240
1320
  },
2241
- "type": "array"
2242
- },
2243
- "replicas": {
2244
- "items": {
1321
+ "text": {
2245
1322
  "type": "string"
2246
1323
  },
2247
- "type": "array"
2248
- },
2249
- "resumable": {
2250
- "type": "string"
2251
- },
2252
- "seekable": {
2253
- "type": "boolean"
2254
- },
2255
- "size": {
2256
- "additionalProperties": false,
2257
- "properties": {
2258
- "typia.tag": {
2259
- "additionalProperties": false,
2260
- "description": "This is a dummy property for compilation.\n\nIt does not mean anything in runtime.",
2261
- "properties": {
2262
- "exclusive": {
2263
- "const": true,
2264
- "type": "boolean"
2265
- },
2266
- "kind": {
2267
- "const": "type",
2268
- "type": "string"
2269
- },
2270
- "schema": {
2271
- "additionalProperties": false,
2272
- "properties": {
2273
- "type": {
2274
- "const": "integer",
2275
- "type": "string"
2276
- }
2277
- },
2278
- "required": [
2279
- "type"
2280
- ],
2281
- "type": "object"
2282
- },
2283
- "target": {
2284
- "enum": [
2285
- "bigint",
2286
- "number"
2287
- ],
2288
- "type": "string"
2289
- },
2290
- "validate": {
2291
- "additionalProperties": false,
2292
- "properties": {
2293
- "bigint": {
2294
- "const": "BigInt(0) <= $input",
2295
- "type": "string"
2296
- },
2297
- "number": {
2298
- "const": "Math.floor($input) === $input && 0 <= $input && $input <= 18446744073709551615",
2299
- "type": "string"
2300
- }
2301
- },
2302
- "required": [
2303
- "bigint",
2304
- "number"
2305
- ],
2306
- "type": "object"
2307
- },
2308
- "value": {
2309
- "const": "uint64",
2310
- "type": "string"
2311
- }
2312
- },
2313
- "required": [
2314
- "exclusive",
2315
- "kind",
2316
- "schema",
2317
- "target",
2318
- "validate",
2319
- "value"
2320
- ],
2321
- "type": "object"
2322
- }
2323
- },
2324
- "type": "object"
2325
- },
2326
- "tags": {
2327
- "items": {
1324
+ "user": {
2328
1325
  "type": "string"
2329
- },
2330
- "type": "array"
2331
- },
2332
- "uploading": {
2333
- "type": "boolean"
1326
+ }
2334
1327
  },
2335
- "zones": {
2336
- "items": {
2337
- "type": "string"
2338
- },
2339
- "type": "array"
2340
- }
1328
+ "required": [
1329
+ "asset",
1330
+ "date",
1331
+ "end",
1332
+ "start",
1333
+ "text",
1334
+ "user"
1335
+ ],
1336
+ "type": "object"
2341
1337
  },
2342
- "required": [
2343
- "btime",
2344
- "completed",
2345
- "deleted",
2346
- "error",
2347
- "hash",
2348
- "id",
2349
- "locations",
2350
- "mimeType",
2351
- "position",
2352
- "ranges",
2353
- "refs",
2354
- "replicas",
2355
- "resumable",
2356
- "seekable",
2357
- "size",
2358
- "tags",
2359
- "uploading",
2360
- "zones"
2361
- ],
2362
1338
  "type": "object"
2363
1339
  },
2364
1340
  "GeneralCreatedRecord": {
@@ -2477,6 +1453,22 @@
2477
1453
  },
2478
1454
  "type": "object"
2479
1455
  },
1456
+ "Id": {
1457
+ "additionalProperties": false,
1458
+ "type": "object"
1459
+ },
1460
+ "Id_1": {
1461
+ "additionalProperties": false,
1462
+ "type": "object"
1463
+ },
1464
+ "Key": {
1465
+ "additionalProperties": false,
1466
+ "type": "object"
1467
+ },
1468
+ "Key_1": {
1469
+ "additionalProperties": false,
1470
+ "type": "object"
1471
+ },
2480
1472
  "MediaConsolidateRecord": {
2481
1473
  "additionalProperties": false,
2482
1474
  "properties": {
@@ -2487,6 +1479,15 @@
2487
1479
  },
2488
1480
  "type": "object"
2489
1481
  },
1482
+ "MediaFontRecord": {
1483
+ "additionalProperties": false,
1484
+ "properties": {
1485
+ "sampleText": {
1486
+ "type": "string"
1487
+ }
1488
+ },
1489
+ "type": "object"
1490
+ },
2490
1491
  "MediaRenderRecordValue": {
2491
1492
  "additionalProperties": false,
2492
1493
  "properties": {
@@ -2512,12 +1513,51 @@
2512
1513
  "items": {
2513
1514
  "$ref": "#/definitions/MediaRenderRecordValue"
2514
1515
  },
2515
- "type": "array"
2516
- }
1516
+ "type": "array"
1517
+ }
1518
+ },
1519
+ "required": [
1520
+ "children"
1521
+ ],
1522
+ "type": "object"
1523
+ },
1524
+ "MediaRestrictionsRecord": {
1525
+ "additionalProperties": {
1526
+ "additionalProperties": false,
1527
+ "properties": {
1528
+ "asset": {
1529
+ "type": "string"
1530
+ },
1531
+ "date": {
1532
+ "type": "string"
1533
+ },
1534
+ "end": {
1535
+ "type": "number"
1536
+ },
1537
+ "file": {
1538
+ "type": "string"
1539
+ },
1540
+ "start": {
1541
+ "type": "number"
1542
+ },
1543
+ "text": {
1544
+ "type": "string"
1545
+ },
1546
+ "user": {
1547
+ "type": "string"
1548
+ }
1549
+ },
1550
+ "required": [
1551
+ "asset",
1552
+ "date",
1553
+ "end",
1554
+ "file",
1555
+ "start",
1556
+ "text",
1557
+ "user"
1558
+ ],
1559
+ "type": "object"
2517
1560
  },
2518
- "required": [
2519
- "children"
2520
- ],
2521
1561
  "type": "object"
2522
1562
  },
2523
1563
  "MediaSourceRecord": {
@@ -2686,6 +1726,28 @@
2686
1726
  ],
2687
1727
  "type": "object"
2688
1728
  },
1729
+ "Nxtpression": {
1730
+ "additionalProperties": false,
1731
+ "properties": {
1732
+ "__context": {
1733
+ "additionalProperties": true,
1734
+ "description": "TS-HACK: this property doesn't really exist on the nxtpression string,\nit is only here to make sure the generic Context won't get stripped.",
1735
+ "properties": {},
1736
+ "type": "object"
1737
+ },
1738
+ "__returnValue": {
1739
+ "description": "TS-HACK: this property doesn't really exist on the nxtpression string,\nit is only here to make sure the generic Context won't get stripped.",
1740
+ "type": "string"
1741
+ },
1742
+ "length": {
1743
+ "type": "number"
1744
+ }
1745
+ },
1746
+ "required": [
1747
+ "length"
1748
+ ],
1749
+ "type": "object"
1750
+ },
2689
1751
  "Operation": {
2690
1752
  "anyOf": [
2691
1753
  {
@@ -2760,7 +1822,7 @@
2760
1822
  },
2761
1823
  "keymap": {},
2762
1824
  "media": {
2763
- "$ref": "#/definitions/PartialObjectDeep<{guide?:{mask?:boolean;};stepManyFrames:number;liveZoomDuration:number;importTitleTemplate:string;tile:{preview:string;showRenderProgress:boolean;};timecodeReference:string;maxSubclipDuration:number;rewindStep:number;forwardStep:number;interlacedPlayback:string;playbackRates:number[];subtitles:{spacing:number;maxCharactersPerLine:number;};subtitleTemplateId?:string;initialVolume:string;guides:{label:string;aspectRatio:string;}[];download:boolean;transcribe?:{subtitleDisclaimer?:{isUserConfigurable?:boolean;defaultValue?:{enabled?:false;text?:{language:string;value:string;}[];offset?:number;duration?:number;};};};},{}>"
1825
+ "$ref": "#/definitions/PartialObjectDeep<{placeholder?:string;guide?:{mask?:boolean;};stepManyFrames:number;liveZoomDuration:number;importTitleTemplate:string;tile:{preview:boolean|\"play\"|\"seek\"|\"disabled\"|\"seekplay\";showRenderProgress:boolean;};timecodeReference:string;maxSubclipDuration:number;rewindStep:number;forwardStep:number;interlacedPlayback:string;playbackRates:number[];subtitles:{spacing:number;maxCharactersPerLine:number;};subtitleTemplateId?:string;initialVolume:string;guides:{label:string;aspectRatio:string;}[];download:boolean;transcribe?:{subtitleDisclaimer?:{isUserConfigurable?:boolean;defaultValue?:{enabled?:false;text?:{language:string;value:string;}[];offset?:number;duration?:number;};};};},{}>"
2764
1826
  },
2765
1827
  "module": {
2766
1828
  "$ref": "#/definitions/PartialObjectDeep<{tabs?:ModuleTabs;},{}>"
@@ -2990,83 +2052,6 @@
2990
2052
  },
2991
2053
  "type": "object"
2992
2054
  },
2993
- "PartialObjectDeep<{guide?:{mask?:boolean;};stepManyFrames:number;liveZoomDuration:number;importTitleTemplate:string;tile:{preview:string;showRenderProgress:boolean;};timecodeReference:string;maxSubclipDuration:number;rewindStep:number;forwardStep:number;interlacedPlayback:string;playbackRates:number[];subtitles:{spacing:number;maxCharactersPerLine:number;};subtitleTemplateId?:string;initialVolume:string;guides:{label:string;aspectRatio:string;}[];download:boolean;transcribe?:{subtitleDisclaimer?:{isUserConfigurable?:boolean;defaultValue?:{enabled?:false;text?:{language:string;value:string;}[];offset?:number;duration?:number;};};};},{}>": {
2994
- "additionalProperties": false,
2995
- "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
2996
- "properties": {
2997
- "download": {
2998
- "type": "boolean"
2999
- },
3000
- "forwardStep": {
3001
- "type": "number"
3002
- },
3003
- "guide": {
3004
- "$ref": "#/definitions/PartialObjectDeep<{mask?:boolean;},{}>"
3005
- },
3006
- "guides": {
3007
- "items": {
3008
- "additionalProperties": false,
3009
- "properties": {
3010
- "aspectRatio": {
3011
- "type": "string"
3012
- },
3013
- "label": {
3014
- "type": "string"
3015
- }
3016
- },
3017
- "required": [
3018
- "aspectRatio",
3019
- "label"
3020
- ],
3021
- "type": "object"
3022
- },
3023
- "type": "array"
3024
- },
3025
- "importTitleTemplate": {
3026
- "type": "string"
3027
- },
3028
- "initialVolume": {
3029
- "type": "string"
3030
- },
3031
- "interlacedPlayback": {
3032
- "type": "string"
3033
- },
3034
- "liveZoomDuration": {
3035
- "type": "number"
3036
- },
3037
- "maxSubclipDuration": {
3038
- "type": "number"
3039
- },
3040
- "playbackRates": {
3041
- "items": {
3042
- "type": "number"
3043
- },
3044
- "type": "array"
3045
- },
3046
- "rewindStep": {
3047
- "type": "number"
3048
- },
3049
- "stepManyFrames": {
3050
- "type": "number"
3051
- },
3052
- "subtitleTemplateId": {
3053
- "type": "string"
3054
- },
3055
- "subtitles": {
3056
- "$ref": "#/definitions/PartialObjectDeep<{spacing:number;maxCharactersPerLine:number;},{}>"
3057
- },
3058
- "tile": {
3059
- "$ref": "#/definitions/PartialObjectDeep<{preview:string;showRenderProgress:boolean;},{}>"
3060
- },
3061
- "timecodeReference": {
3062
- "type": "string"
3063
- },
3064
- "transcribe": {
3065
- "$ref": "#/definitions/PartialObjectDeep<{subtitleDisclaimer?:{isUserConfigurable?:boolean;defaultValue?:{enabled?:false;text?:{language:string;value:string;}[];offset?:number;duration?:number;};};},{}>"
3066
- }
3067
- },
3068
- "type": "object"
3069
- },
3070
2055
  "PartialObjectDeep<{include:string[];},{}>": {
3071
2056
  "additionalProperties": false,
3072
2057
  "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
@@ -3175,13 +2160,100 @@
3175
2160
  },
3176
2161
  "type": "object"
3177
2162
  },
3178
- "PartialObjectDeep<{preview:string;showRenderProgress:boolean;},{}>": {
2163
+ "PartialObjectDeep<{placeholder?:string;guide?:{mask?:boolean;};stepManyFrames:number;liveZoomDuration:number;importTitleTemplate:string;tile:{preview:boolean|\"play\"|\"seek\"|\"disabled\"|\"seekplay\";showRenderProgress:boolean;};timecodeReference:string;maxSubclipDuration:number;rewindStep:number;forwardStep:number;interlacedPlayback:string;playbackRates:number[];subtitles:{spacing:number;maxCharactersPerLine:number;};subtitleTemplateId?:string;initialVolume:string;guides:{label:string;aspectRatio:string;}[];download:boolean;transcribe?:{subtitleDisclaimer?:{isUserConfigurable?:boolean;defaultValue?:{enabled?:false;text?:{language:string;value:string;}[];offset?:number;duration?:number;};};};},{}>": {
3179
2164
  "additionalProperties": false,
3180
2165
  "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
3181
2166
  "properties": {
3182
- "preview": {
2167
+ "download": {
2168
+ "type": "boolean"
2169
+ },
2170
+ "forwardStep": {
2171
+ "type": "number"
2172
+ },
2173
+ "guide": {
2174
+ "$ref": "#/definitions/PartialObjectDeep<{mask?:boolean;},{}>"
2175
+ },
2176
+ "guides": {
2177
+ "items": {
2178
+ "additionalProperties": false,
2179
+ "properties": {
2180
+ "aspectRatio": {
2181
+ "type": "string"
2182
+ },
2183
+ "label": {
2184
+ "type": "string"
2185
+ }
2186
+ },
2187
+ "required": [
2188
+ "aspectRatio",
2189
+ "label"
2190
+ ],
2191
+ "type": "object"
2192
+ },
2193
+ "type": "array"
2194
+ },
2195
+ "importTitleTemplate": {
2196
+ "type": "string"
2197
+ },
2198
+ "initialVolume": {
2199
+ "type": "string"
2200
+ },
2201
+ "interlacedPlayback": {
2202
+ "type": "string"
2203
+ },
2204
+ "liveZoomDuration": {
2205
+ "type": "number"
2206
+ },
2207
+ "maxSubclipDuration": {
2208
+ "type": "number"
2209
+ },
2210
+ "placeholder": {
2211
+ "type": "string"
2212
+ },
2213
+ "playbackRates": {
2214
+ "items": {
2215
+ "type": "number"
2216
+ },
2217
+ "type": "array"
2218
+ },
2219
+ "rewindStep": {
2220
+ "type": "number"
2221
+ },
2222
+ "stepManyFrames": {
2223
+ "type": "number"
2224
+ },
2225
+ "subtitleTemplateId": {
2226
+ "type": "string"
2227
+ },
2228
+ "subtitles": {
2229
+ "$ref": "#/definitions/PartialObjectDeep<{spacing:number;maxCharactersPerLine:number;},{}>"
2230
+ },
2231
+ "tile": {
2232
+ "$ref": "#/definitions/PartialObjectDeep<{preview:boolean|\"play\"|\"seek\"|\"disabled\"|\"seekplay\";showRenderProgress:boolean;},{}>"
2233
+ },
2234
+ "timecodeReference": {
3183
2235
  "type": "string"
3184
2236
  },
2237
+ "transcribe": {
2238
+ "$ref": "#/definitions/PartialObjectDeep<{subtitleDisclaimer?:{isUserConfigurable?:boolean;defaultValue?:{enabled?:false;text?:{language:string;value:string;}[];offset?:number;duration?:number;};};},{}>"
2239
+ }
2240
+ },
2241
+ "type": "object"
2242
+ },
2243
+ "PartialObjectDeep<{preview:boolean|\"play\"|\"seek\"|\"disabled\"|\"seekplay\";showRenderProgress:boolean;},{}>": {
2244
+ "additionalProperties": false,
2245
+ "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
2246
+ "properties": {
2247
+ "preview": {
2248
+ "enum": [
2249
+ "disabled",
2250
+ false,
2251
+ "play",
2252
+ "seek",
2253
+ "seekplay",
2254
+ true
2255
+ ]
2256
+ },
3185
2257
  "showRenderProgress": {
3186
2258
  "type": "boolean"
3187
2259
  }
@@ -3437,6 +2509,37 @@
3437
2509
  }
3438
2510
  ]
3439
2511
  },
2512
+ "PublishedRecord": {
2513
+ "additionalProperties": false,
2514
+ "properties": {
2515
+ "asset": {
2516
+ "type": "string"
2517
+ },
2518
+ "connection": {
2519
+ "type": "string"
2520
+ },
2521
+ "parent": {
2522
+ "type": "string"
2523
+ },
2524
+ "time": {
2525
+ "type": "number"
2526
+ },
2527
+ "type": {
2528
+ "type": "string"
2529
+ },
2530
+ "user": {
2531
+ "type": "string"
2532
+ }
2533
+ },
2534
+ "required": [
2535
+ "asset",
2536
+ "connection",
2537
+ "parent",
2538
+ "time",
2539
+ "type"
2540
+ ],
2541
+ "type": "object"
2542
+ },
3440
2543
  "Record<string,FilePublishRemoteRender>": {
3441
2544
  "additionalProperties": false,
3442
2545
  "type": "object"
@@ -3473,17 +2576,43 @@
3473
2576
  "additionalProperties": false,
3474
2577
  "properties": {
3475
2578
  ":permission": {
2579
+ "$ref": "#/definitions/DomainRows"
2580
+ },
2581
+ "asset.assignees": {
2582
+ "additionalProperties": false,
2583
+ "properties": {
2584
+ "dynamic": {
2585
+ "anyOf": [
2586
+ {
2587
+ "items": {
2588
+ "type": "string"
2589
+ },
2590
+ "type": "array"
2591
+ },
2592
+ {
2593
+ "const": false,
2594
+ "type": "boolean"
2595
+ }
2596
+ ]
2597
+ },
2598
+ "value": {
2599
+ "$ref": "#/definitions/Nxtpression"
2600
+ }
2601
+ },
2602
+ "type": "object"
2603
+ },
2604
+ "asset.clone": {
3476
2605
  "additionalProperties": false,
3477
2606
  "properties": {
3478
- "rows": {
2607
+ "rules": {
3479
2608
  "items": {
3480
- "type": "string"
2609
+ "$ref": "#/definitions/CloneRule"
3481
2610
  },
3482
2611
  "type": "array"
3483
2612
  }
3484
2613
  },
3485
2614
  "required": [
3486
- "rows"
2615
+ "rules"
3487
2616
  ],
3488
2617
  "type": "object"
3489
2618
  },
@@ -3562,6 +2691,8 @@
3562
2691
  },
3563
2692
  "required": [
3564
2693
  ":permission",
2694
+ "asset.assignees",
2695
+ "asset.clone",
3565
2696
  "hub-transcribe:render-profile",
3566
2697
  "media.subtitles?",
3567
2698
  "media.transcribe?"
@@ -3616,6 +2747,9 @@
3616
2747
  "clientSecret": {
3617
2748
  "type": "string"
3618
2749
  },
2750
+ "notifyOnPublish": {
2751
+ "type": "boolean"
2752
+ },
3619
2753
  "type": {
3620
2754
  "const": "reuters",
3621
2755
  "type": "string"
@@ -3626,6 +2760,18 @@
3626
2760
  ],
3627
2761
  "type": "object"
3628
2762
  },
2763
+ "RevsRecord": {
2764
+ "additionalProperties": false,
2765
+ "properties": {
2766
+ "value": {
2767
+ "items": {
2768
+ "type": "string"
2769
+ },
2770
+ "type": "array"
2771
+ }
2772
+ },
2773
+ "type": "object"
2774
+ },
3629
2775
  "RoleTagsRecord": {
3630
2776
  "additionalProperties": false,
3631
2777
  "properties": {
@@ -3673,11 +2819,20 @@
3673
2819
  "SearchRecord": {
3674
2820
  "additionalProperties": false,
3675
2821
  "properties": {
2822
+ "error": {
2823
+ "type": "string"
2824
+ },
3676
2825
  "hits": {
3677
2826
  "items": {
3678
2827
  "type": "string"
3679
2828
  },
3680
2829
  "type": "array"
2830
+ },
2831
+ "relation": {
2832
+ "type": "string"
2833
+ },
2834
+ "total": {
2835
+ "type": "number"
3681
2836
  }
3682
2837
  },
3683
2838
  "required": [
@@ -3739,6 +2894,29 @@
3739
2894
  ],
3740
2895
  "type": "object"
3741
2896
  },
2897
+ "UserRecord": {
2898
+ "additionalProperties": false,
2899
+ "properties": {
2900
+ "roles": {
2901
+ "items": {
2902
+ "type": "string"
2903
+ },
2904
+ "type": "array"
2905
+ },
2906
+ "username": {
2907
+ "type": "string"
2908
+ }
2909
+ },
2910
+ "type": "object"
2911
+ },
2912
+ "Value": {
2913
+ "additionalProperties": false,
2914
+ "type": "object"
2915
+ },
2916
+ "Value_1": {
2917
+ "additionalProperties": false,
2918
+ "type": "object"
2919
+ },
3742
2920
  "YoutubePublishRecord": {
3743
2921
  "additionalProperties": false,
3744
2922
  "properties": {