@nxtedition/types 23.0.1 → 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 (43) hide show
  1. package/dist/app.d.ts +1 -12
  2. package/dist/asset.d.ts +10 -0
  3. package/dist/asset.js +1 -0
  4. package/dist/common/block.d.ts +1 -1
  5. package/dist/common/clone.d.ts +32 -0
  6. package/dist/common/clone.js +602 -0
  7. package/dist/common/index.d.ts +3 -0
  8. package/dist/common/index.js +3 -0
  9. package/dist/common/nxtpression.d.ts +19 -0
  10. package/dist/common/nxtpression.js +240 -0
  11. package/dist/common/search.d.ts +69 -0
  12. package/dist/common/search.js +1591 -0
  13. package/dist/common/settings.d.ts +6 -5
  14. package/dist/common/settings.js +89 -36
  15. package/dist/domains/asset.d.ts +22 -0
  16. package/dist/domains/asset.js +232 -0
  17. package/dist/domains/clone.d.ts +14 -0
  18. package/dist/domains/clone.js +192 -0
  19. package/dist/domains/connection.d.ts +39 -15
  20. package/dist/domains/connection.js +621 -174
  21. package/dist/domains/design.d.ts +24 -0
  22. package/dist/domains/design.js +303 -0
  23. package/dist/domains/file.d.ts +17 -0
  24. package/dist/domains/file.js +233 -0
  25. package/dist/domains/index.d.ts +11 -1
  26. package/dist/domains/index.js +5 -0
  27. package/dist/domains/media.d.ts +28 -0
  28. package/dist/domains/media.js +346 -0
  29. package/dist/domains/published.d.ts +18 -0
  30. package/dist/domains/published.js +164 -0
  31. package/dist/domains/revs.d.ts +13 -0
  32. package/dist/domains/revs.js +125 -0
  33. package/dist/domains/search.d.ts +3 -0
  34. package/dist/domains/search.js +62 -13
  35. package/dist/domains/settings.js +70 -26
  36. package/dist/domains/user.d.ts +14 -0
  37. package/dist/domains/user.js +141 -0
  38. package/dist/index.d.ts +20 -6
  39. package/dist/index.js +135 -0
  40. package/dist/rpc.d.ts +48 -13
  41. package/dist/rpc.js +505 -1
  42. package/dist/schema.json +3014 -0
  43. package/package.json +7 -3
@@ -0,0 +1,3014 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-07/schema#",
3
+ "definitions": {
4
+ "AddOperation": {
5
+ "additionalProperties": false,
6
+ "description": "All diff* functions should return a list of operations, often empty.\n\nEach operation should be an object with two to four fields:\n`op`: the name of the operation; one of \"add\", \"remove\", \"replace\", \"move\",\n\"copy\", or \"test\".\n`path`: a JSON pointer string\n`from`: a JSON pointer string\n`value`: a JSON value\n\nThe different operations have different arguments.\n\"add\": [`path`, `value`]\n\"remove\": [`path`]\n\"replace\": [`path`, `value`]\n\"move\": [`from`, `path`]\n\"copy\": [`from`, `path`]\n\"test\": [`path`, `value`]\n\nCurrently this only really differentiates between Arrays, Objects, and\nEverything Else, which is pretty much just what JSON substantially\ndifferentiates between.",
7
+ "properties": {
8
+ "op": {
9
+ "const": "add",
10
+ "type": "string"
11
+ },
12
+ "path": {
13
+ "type": "string"
14
+ },
15
+ "value": {}
16
+ },
17
+ "required": [
18
+ "op",
19
+ "path",
20
+ "value"
21
+ ],
22
+ "type": "object"
23
+ },
24
+ "AssetAssigneesRecord": {
25
+ "additionalProperties": false,
26
+ "properties": {
27
+ "value": {
28
+ "items": {
29
+ "type": "string"
30
+ },
31
+ "type": "array"
32
+ }
33
+ },
34
+ "type": "object"
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
+ },
48
+ "AssetDomainRecords": {
49
+ "additionalProperties": false,
50
+ "properties": {
51
+ ":asset.assignees?": {
52
+ "$ref": "#/definitions/AssetAssigneesRecord"
53
+ },
54
+ ":asset.created?": {
55
+ "$ref": "#/definitions/AssetCreatedRecord"
56
+ },
57
+ ":asset.fileRefs?": {
58
+ "$ref": "#/definitions/AssetFileRefsRecord"
59
+ },
60
+ ":asset.modified?": {
61
+ "$ref": "#/definitions/AssetModifiedRecord"
62
+ },
63
+ ":asset.refs?": {
64
+ "$ref": "#/definitions/AssetRefsRecord"
65
+ },
66
+ ":asset.tags?": {
67
+ "$ref": "#/definitions/AssetTagsRecord"
68
+ },
69
+ ":asset.title?": {
70
+ "$ref": "#/definitions/AssetTitleRecord"
71
+ },
72
+ ":asset.types?": {
73
+ "$ref": "#/definitions/AssetTypesRecord"
74
+ }
75
+ },
76
+ "required": [
77
+ ":asset.assignees?",
78
+ ":asset.created?",
79
+ ":asset.fileRefs?",
80
+ ":asset.modified?",
81
+ ":asset.refs?",
82
+ ":asset.tags?",
83
+ ":asset.title?",
84
+ ":asset.types?"
85
+ ],
86
+ "type": "object"
87
+ },
88
+ "AssetFileRefsRecord": {
89
+ "additionalProperties": false,
90
+ "properties": {
91
+ "value": {
92
+ "items": {
93
+ "type": "string"
94
+ },
95
+ "type": "array"
96
+ }
97
+ },
98
+ "type": "object"
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
+ },
112
+ "AssetPermission": {
113
+ "additionalProperties": false,
114
+ "properties": {
115
+ "method": {
116
+ "type": "string"
117
+ },
118
+ "type": {
119
+ "const": "asset",
120
+ "type": "string"
121
+ }
122
+ },
123
+ "required": [
124
+ "method",
125
+ "type"
126
+ ],
127
+ "type": "object"
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
+ },
177
+ "AssetRef": {
178
+ "additionalProperties": false,
179
+ "properties": {
180
+ "id": {
181
+ "type": "string"
182
+ },
183
+ "key": {
184
+ "type": "string"
185
+ },
186
+ "value": {
187
+ "type": "string"
188
+ }
189
+ },
190
+ "required": [
191
+ "id",
192
+ "key",
193
+ "value"
194
+ ],
195
+ "type": "object"
196
+ },
197
+ "AssetRefsRecord": {
198
+ "additionalProperties": false,
199
+ "properties": {
200
+ "value": {
201
+ "items": {
202
+ "$ref": "#/definitions/AssetRef"
203
+ },
204
+ "type": "array"
205
+ }
206
+ },
207
+ "type": "object"
208
+ },
209
+ "AssetTagsRecord": {
210
+ "additionalProperties": false,
211
+ "properties": {
212
+ "value": {
213
+ "items": {
214
+ "type": "string"
215
+ },
216
+ "type": "array"
217
+ }
218
+ },
219
+ "type": "object"
220
+ },
221
+ "AssetTitleRecord": {
222
+ "additionalProperties": false,
223
+ "properties": {
224
+ "value": {
225
+ "type": "string"
226
+ }
227
+ },
228
+ "type": "object"
229
+ },
230
+ "AssetTypesRecord": {
231
+ "additionalProperties": false,
232
+ "properties": {
233
+ "value": {
234
+ "items": {
235
+ "type": "string"
236
+ },
237
+ "type": "array"
238
+ }
239
+ },
240
+ "type": "object"
241
+ },
242
+ "BundleDomainRecords": {
243
+ "additionalProperties": false,
244
+ "properties": {
245
+ ":bundle": {
246
+ "$ref": "#/definitions/BundleRecord"
247
+ },
248
+ ":bundle.revisions": {
249
+ "$ref": "#/definitions/BundleRevisionsRecord"
250
+ }
251
+ },
252
+ "required": [
253
+ ":bundle",
254
+ ":bundle.revisions"
255
+ ],
256
+ "type": "object"
257
+ },
258
+ "BundleRecord": {
259
+ "additionalProperties": false,
260
+ "properties": {
261
+ "description": {
262
+ "type": "string"
263
+ },
264
+ "files": {
265
+ "$ref": "#/definitions/Record<string,string>"
266
+ },
267
+ "user": {
268
+ "type": "string"
269
+ }
270
+ },
271
+ "required": [
272
+ "files"
273
+ ],
274
+ "type": "object"
275
+ },
276
+ "BundleRevisionsRecord": {
277
+ "additionalProperties": {
278
+ "$ref": "#/definitions/BundleRecord"
279
+ },
280
+ "type": "object"
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
+ },
327
+ "ConnectionDomainRecords": {
328
+ "additionalProperties": false,
329
+ "properties": {
330
+ ":connection": {
331
+ "$ref": "#/definitions/ConnectionRecord"
332
+ },
333
+ ":connection.methods?": {
334
+ "$ref": "#/definitions/Record<string,object>"
335
+ },
336
+ ":connection.stats?": {
337
+ "$ref": "#/definitions/ConnectionStatsRecord"
338
+ }
339
+ },
340
+ "required": [
341
+ ":connection",
342
+ ":connection.methods?",
343
+ ":connection.stats?"
344
+ ],
345
+ "type": "object"
346
+ },
347
+ "ConnectionRecord": {
348
+ "anyOf": [
349
+ {
350
+ "$ref": "#/definitions/FilePublishConnectionRecord"
351
+ },
352
+ {
353
+ "$ref": "#/definitions/ReutersConnectionRecord"
354
+ },
355
+ {
356
+ "$ref": "#/definitions/FacebookConnectionRecord"
357
+ }
358
+ ]
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
+ },
375
+ "ConnectionStatsRecord": {
376
+ "additionalProperties": false,
377
+ "properties": {
378
+ "pages": {
379
+ "items": {
380
+ "additionalProperties": false,
381
+ "properties": {
382
+ "id": {}
383
+ },
384
+ "required": [
385
+ "id"
386
+ ],
387
+ "type": "object"
388
+ },
389
+ "type": "array"
390
+ },
391
+ "status": {
392
+ "type": "string"
393
+ },
394
+ "substatus": {
395
+ "type": "string"
396
+ }
397
+ },
398
+ "required": [
399
+ "status",
400
+ "substatus"
401
+ ],
402
+ "type": "object"
403
+ },
404
+ "ContactDomainRecords": {
405
+ "additionalProperties": false,
406
+ "properties": {
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"
508
+ }
509
+ },
510
+ "required": [
511
+ "id",
512
+ "key",
513
+ "value"
514
+ ],
515
+ "type": "object"
516
+ },
517
+ "DesignViewRow<Id,Key,Value>": {
518
+ "additionalProperties": false,
519
+ "properties": {
520
+ "id": {
521
+ "$ref": "#/definitions/Id"
522
+ },
523
+ "key": {
524
+ "$ref": "#/definitions/Key"
525
+ },
526
+ "value": {
527
+ "$ref": "#/definitions/Value"
528
+ }
529
+ },
530
+ "required": [
531
+ "id",
532
+ "key",
533
+ "value"
534
+ ],
535
+ "type": "object"
536
+ },
537
+ "DesignViewRow<string,string,unknown>": {
538
+ "additionalProperties": false,
539
+ "properties": {
540
+ "id": {
541
+ "type": "string"
542
+ },
543
+ "key": {
544
+ "type": "string"
545
+ },
546
+ "value": {}
547
+ },
548
+ "required": [
549
+ "id",
550
+ "key",
551
+ "value"
552
+ ],
553
+ "type": "object"
554
+ },
555
+ "DomainRecords": {
556
+ "additionalProperties": false,
557
+ "properties": {
558
+ ":asset.assignees?": {
559
+ "$ref": "#/definitions/AssetAssigneesRecord"
560
+ },
561
+ ":asset.created?": {
562
+ "$ref": "#/definitions/AssetCreatedRecord"
563
+ },
564
+ ":asset.fileRefs?": {
565
+ "$ref": "#/definitions/AssetFileRefsRecord"
566
+ },
567
+ ":asset.modified?": {
568
+ "$ref": "#/definitions/AssetModifiedRecord"
569
+ },
570
+ ":asset.refs?": {
571
+ "$ref": "#/definitions/AssetRefsRecord"
572
+ },
573
+ ":asset.tags?": {
574
+ "$ref": "#/definitions/AssetTagsRecord"
575
+ },
576
+ ":asset.title?": {
577
+ "$ref": "#/definitions/AssetTitleRecord"
578
+ },
579
+ ":asset.types?": {
580
+ "$ref": "#/definitions/AssetTypesRecord"
581
+ },
582
+ ":bundle": {
583
+ "$ref": "#/definitions/BundleRecord"
584
+ },
585
+ ":bundle.revisions": {
586
+ "$ref": "#/definitions/BundleRevisionsRecord"
587
+ },
588
+ ":clone": {
589
+ "$ref": "#/definitions/CloneDomainCloneRecord"
590
+ },
591
+ ":connection": {
592
+ "$ref": "#/definitions/ConnectionRecord"
593
+ },
594
+ ":connection.methods?": {
595
+ "$ref": "#/definitions/Record<string,object>"
596
+ },
597
+ ":connection.stats?": {
598
+ "$ref": "#/definitions/ConnectionStatsRecord"
599
+ },
600
+ ":contact": {
601
+ "$ref": "#/definitions/ContactRecord"
602
+ },
603
+ ":design": {
604
+ "$ref": "#/definitions/DesignDomainRecord<string,string,unknown>"
605
+ },
606
+ ":event": {
607
+ "$ref": "#/definitions/EventRecord"
608
+ },
609
+ ":event._template?": {
610
+ "$ref": "#/definitions/Record<string,unknown>"
611
+ },
612
+ ":file.replicate": {
613
+ "$ref": "#/definitions/FileReplicateRecord"
614
+ },
615
+ ":file.restrictions": {
616
+ "$ref": "#/definitions/FileRestrictionsRecord"
617
+ },
618
+ ":general.created": {
619
+ "$ref": "#/definitions/GeneralCreatedRecord"
620
+ },
621
+ ":general.description": {
622
+ "$ref": "#/definitions/GeneralDescriptionRecord"
623
+ },
624
+ ":general.poster": {
625
+ "$ref": "#/definitions/GeneralPosterRecord"
626
+ },
627
+ ":general.status": {
628
+ "additionalProperties": {
629
+ "$ref": "#/definitions/GeneralStatusRecordValue"
630
+ },
631
+ "type": "object"
632
+ },
633
+ ":general.tags": {
634
+ "$ref": "#/definitions/GeneralTagsRecord"
635
+ },
636
+ ":general.title": {
637
+ "$ref": "#/definitions/GeneralTitleRecord"
638
+ },
639
+ ":media.consolidate": {
640
+ "$ref": "#/definitions/MediaConsolidateRecord"
641
+ },
642
+ ":media.font": {
643
+ "$ref": "#/definitions/MediaFontRecord"
644
+ },
645
+ ":media.renders?": {
646
+ "$ref": "#/definitions/MediaRendersRecord"
647
+ },
648
+ ":media.restrictions?": {
649
+ "$ref": "#/definitions/MediaRestrictionsRecord"
650
+ },
651
+ ":media.source": {
652
+ "$ref": "#/definitions/MediaSourceRecord"
653
+ },
654
+ ":media.transcriptChanges": {
655
+ "additionalProperties": {
656
+ "$ref": "#/definitions/MediaTranscriptChangesRecordValue"
657
+ },
658
+ "type": "object"
659
+ },
660
+ ":permission": {
661
+ "$ref": "#/definitions/PermissionRecordPermisson"
662
+ },
663
+ ":permission?": {
664
+ "$ref": "#/definitions/ProvidedPermissionRecord"
665
+ },
666
+ ":planning": {
667
+ "$ref": "#/definitions/PlanningRecord"
668
+ },
669
+ ":planning.assignees": {
670
+ "$ref": "#/definitions/PlanningAssigneesRecord"
671
+ },
672
+ ":planning.deadline": {
673
+ "$ref": "#/definitions/PlanningDeadlineRecord"
674
+ },
675
+ ":publish": {
676
+ "$ref": "#/definitions/PublishRecord"
677
+ },
678
+ ":publish.methods?": {
679
+ "$ref": "#/definitions/Record<string,{rpcId:string;rpcData:Record<string,unknown>;}>"
680
+ },
681
+ ":publish.stats?": {
682
+ "$ref": "#/definitions/PublishStatsRecord"
683
+ },
684
+ ":published": {
685
+ "$ref": "#/definitions/PublishedRecord"
686
+ },
687
+ ":revs?": {
688
+ "$ref": "#/definitions/RevsRecord"
689
+ },
690
+ ":role.tags": {
691
+ "$ref": "#/definitions/RoleTagsRecord"
692
+ },
693
+ ":script.children": {
694
+ "$ref": "#/definitions/ScriptChildrenRecord"
695
+ },
696
+ ":search": {
697
+ "$ref": "#/definitions/SearchRecord"
698
+ },
699
+ ":settings": {
700
+ "$ref": "#/definitions/PartialObjectDeep<Settings,{}>"
701
+ },
702
+ ":template": {
703
+ "$ref": "#/definitions/TemplateRecord"
704
+ },
705
+ ":user": {
706
+ "$ref": "#/definitions/UserRecord"
707
+ }
708
+ },
709
+ "required": [
710
+ ":asset.assignees?",
711
+ ":asset.created?",
712
+ ":asset.fileRefs?",
713
+ ":asset.modified?",
714
+ ":asset.refs?",
715
+ ":asset.tags?",
716
+ ":asset.title?",
717
+ ":asset.types?",
718
+ ":bundle",
719
+ ":bundle.revisions",
720
+ ":clone",
721
+ ":connection",
722
+ ":connection.methods?",
723
+ ":connection.stats?",
724
+ ":contact",
725
+ ":design",
726
+ ":event",
727
+ ":event._template?",
728
+ ":file.replicate",
729
+ ":file.restrictions",
730
+ ":general.created",
731
+ ":general.description",
732
+ ":general.poster",
733
+ ":general.status",
734
+ ":general.tags",
735
+ ":general.title",
736
+ ":media.consolidate",
737
+ ":media.font",
738
+ ":media.renders?",
739
+ ":media.restrictions?",
740
+ ":media.source",
741
+ ":media.transcriptChanges",
742
+ ":permission",
743
+ ":permission?",
744
+ ":planning",
745
+ ":planning.assignees",
746
+ ":planning.deadline",
747
+ ":publish",
748
+ ":publish.methods?",
749
+ ":publish.stats?",
750
+ ":published",
751
+ ":revs?",
752
+ ":role.tags",
753
+ ":script.children",
754
+ ":search",
755
+ ":settings",
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"
773
+ ],
774
+ "type": "object"
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
+ },
828
+ "ElectronHubApi": {
829
+ "additionalProperties": false,
830
+ "properties": {
831
+ "clipboard": {},
832
+ "controlDownloadItem": {
833
+ "additionalProperties": false,
834
+ "type": "object"
835
+ },
836
+ "getCurrentVersion": {
837
+ "additionalProperties": false,
838
+ "type": "object"
839
+ },
840
+ "getLatestVersion": {
841
+ "additionalProperties": false,
842
+ "type": "object"
843
+ },
844
+ "getWebdavPath": {
845
+ "additionalProperties": false,
846
+ "type": "object"
847
+ },
848
+ "installDavinciPlugin": {
849
+ "additionalProperties": false,
850
+ "type": "object"
851
+ },
852
+ "openInApp": {
853
+ "additionalProperties": false,
854
+ "type": "object"
855
+ },
856
+ "showOpenDialog": {
857
+ "additionalProperties": false,
858
+ "type": "object"
859
+ },
860
+ "startDrag": {
861
+ "additionalProperties": false,
862
+ "type": "object"
863
+ },
864
+ "triggerUpdate": {
865
+ "additionalProperties": false,
866
+ "type": "object"
867
+ }
868
+ },
869
+ "required": [
870
+ "clipboard",
871
+ "controlDownloadItem",
872
+ "getCurrentVersion",
873
+ "getLatestVersion",
874
+ "getWebdavPath",
875
+ "installDavinciPlugin",
876
+ "openInApp",
877
+ "showOpenDialog",
878
+ "startDrag",
879
+ "triggerUpdate"
880
+ ],
881
+ "type": "object"
882
+ },
883
+ "EventDomainRecords": {
884
+ "additionalProperties": false,
885
+ "properties": {
886
+ ":event": {
887
+ "$ref": "#/definitions/EventRecord"
888
+ },
889
+ ":event._template?": {
890
+ "$ref": "#/definitions/Record<string,unknown>"
891
+ }
892
+ },
893
+ "required": [
894
+ ":event",
895
+ ":event._template?"
896
+ ],
897
+ "type": "object"
898
+ },
899
+ "EventRecord": {
900
+ "additionalProperties": false,
901
+ "properties": {
902
+ "duration": {
903
+ "type": "number"
904
+ },
905
+ "end": {
906
+ "type": "number"
907
+ },
908
+ "lang": {
909
+ "type": "string"
910
+ },
911
+ "start": {
912
+ "type": "number"
913
+ },
914
+ "style": {
915
+ "type": "string"
916
+ },
917
+ "styleOverrides": {
918
+ "$ref": "#/definitions/EventSubtitleStyle"
919
+ },
920
+ "text": {
921
+ "type": "string"
922
+ }
923
+ },
924
+ "type": "object"
925
+ },
926
+ "EventSubtitleStyle": {
927
+ "additionalProperties": false,
928
+ "properties": {
929
+ "alignment": {
930
+ "description": "1 - bottom left\n2 - bottom center\n3 - bottom right\n4 - center left\n5 - center center\n6 - center right\n7 - top left\n8 - top center\n9 - top right",
931
+ "type": "string"
932
+ }
933
+ },
934
+ "type": "object"
935
+ },
936
+ "FacebookConnectionRecord": {
937
+ "additionalProperties": false,
938
+ "properties": {
939
+ "grantedScopes": {
940
+ "items": {
941
+ "type": "string"
942
+ },
943
+ "type": "array"
944
+ },
945
+ "notifyOnPublish": {
946
+ "type": "boolean"
947
+ },
948
+ "type": {
949
+ "const": "facebook",
950
+ "type": "string"
951
+ }
952
+ },
953
+ "required": [
954
+ "type"
955
+ ],
956
+ "type": "object"
957
+ },
958
+ "FacebookPublishRecord": {
959
+ "additionalProperties": false,
960
+ "properties": {
961
+ "asset": {
962
+ "type": "string"
963
+ },
964
+ "connection": {
965
+ "type": "string"
966
+ },
967
+ "draft": {
968
+ "$ref": "#/definitions/Record<string,unknown>"
969
+ },
970
+ "error": {
971
+ "additionalProperties": false,
972
+ "properties": {
973
+ "method": {
974
+ "type": "string"
975
+ }
976
+ },
977
+ "required": [
978
+ "method"
979
+ ],
980
+ "type": "object"
981
+ },
982
+ "messages": {
983
+ "items": {
984
+ "$ref": "#/definitions/Message"
985
+ },
986
+ "type": "array"
987
+ },
988
+ "pageId": {
989
+ "type": "string"
990
+ },
991
+ "published": {
992
+ "$ref": "#/definitions/Record<string,unknown>"
993
+ },
994
+ "remote": {
995
+ "$ref": "#/definitions/Record<string,unknown>"
996
+ },
997
+ "render": {},
998
+ "type": {
999
+ "const": "facebook",
1000
+ "type": "string"
1001
+ }
1002
+ },
1003
+ "required": [
1004
+ "type"
1005
+ ],
1006
+ "type": "object"
1007
+ },
1008
+ "FacebookPublishStatsRecord": {
1009
+ "additionalProperties": false,
1010
+ "properties": {
1011
+ "defaults": {
1012
+ "$ref": "#/definitions/Record<string,unknown>"
1013
+ },
1014
+ "messages": {
1015
+ "items": {
1016
+ "$ref": "#/definitions/Message"
1017
+ },
1018
+ "type": "array"
1019
+ },
1020
+ "retrieved": {
1021
+ "$ref": "#/definitions/Record<string,unknown>"
1022
+ },
1023
+ "status": {
1024
+ "type": "string"
1025
+ },
1026
+ "substatus": {
1027
+ "type": "string"
1028
+ }
1029
+ },
1030
+ "type": "object"
1031
+ },
1032
+ "FileDomainRecords": {
1033
+ "additionalProperties": false,
1034
+ "properties": {
1035
+ ":file.replicate": {
1036
+ "$ref": "#/definitions/FileReplicateRecord"
1037
+ },
1038
+ ":file.restrictions": {
1039
+ "$ref": "#/definitions/FileRestrictionsRecord"
1040
+ }
1041
+ },
1042
+ "required": [
1043
+ ":file.replicate",
1044
+ ":file.restrictions"
1045
+ ],
1046
+ "type": "object"
1047
+ },
1048
+ "FilePublishConnectionRecord": {
1049
+ "additionalProperties": false,
1050
+ "properties": {
1051
+ "bucket": {
1052
+ "description": "S3 bucket name",
1053
+ "type": "string"
1054
+ },
1055
+ "client": {
1056
+ "description": "S3 client options"
1057
+ },
1058
+ "concurrency": {
1059
+ "type": "number"
1060
+ },
1061
+ "host": {
1062
+ "type": "string"
1063
+ },
1064
+ "ignoreMissing": {
1065
+ "type": "boolean"
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
+ },
1088
+ "port": {
1089
+ "type": "number"
1090
+ },
1091
+ "protocol": {
1092
+ "type": "string"
1093
+ },
1094
+ "stabilityThreshold": {
1095
+ "type": "number"
1096
+ },
1097
+ "type": {
1098
+ "const": "file",
1099
+ "type": "string"
1100
+ }
1101
+ },
1102
+ "required": [
1103
+ "protocol",
1104
+ "type"
1105
+ ],
1106
+ "type": "object"
1107
+ },
1108
+ "FilePublishDefaults": {
1109
+ "additionalProperties": false,
1110
+ "properties": {
1111
+ "directory": {
1112
+ "type": "string"
1113
+ },
1114
+ "filename": {
1115
+ "type": "string"
1116
+ },
1117
+ "renders": {
1118
+ "$ref": "#/definitions/Record<string,FilePublishRender>"
1119
+ }
1120
+ },
1121
+ "required": [
1122
+ "directory",
1123
+ "filename",
1124
+ "renders"
1125
+ ],
1126
+ "type": "object"
1127
+ },
1128
+ "FilePublishDraft": {
1129
+ "additionalProperties": false,
1130
+ "properties": {
1131
+ "directory": {
1132
+ "type": "string"
1133
+ },
1134
+ "filename": {
1135
+ "type": "string"
1136
+ }
1137
+ },
1138
+ "type": "object"
1139
+ },
1140
+ "FilePublishPublished": {
1141
+ "additionalProperties": false,
1142
+ "properties": {
1143
+ "directory": {
1144
+ "type": "string"
1145
+ },
1146
+ "filename": {
1147
+ "type": "string"
1148
+ }
1149
+ },
1150
+ "type": "object"
1151
+ },
1152
+ "FilePublishRecord": {
1153
+ "additionalProperties": false,
1154
+ "properties": {
1155
+ "asset": {
1156
+ "type": "string"
1157
+ },
1158
+ "connection": {
1159
+ "type": "string"
1160
+ },
1161
+ "directory": {
1162
+ "type": "string"
1163
+ },
1164
+ "draft": {
1165
+ "$ref": "#/definitions/FilePublishDraft"
1166
+ },
1167
+ "error": {
1168
+ "additionalProperties": false,
1169
+ "properties": {
1170
+ "method": {
1171
+ "type": "string"
1172
+ }
1173
+ },
1174
+ "required": [
1175
+ "method"
1176
+ ],
1177
+ "type": "object"
1178
+ },
1179
+ "filename": {
1180
+ "type": "string"
1181
+ },
1182
+ "messages": {
1183
+ "items": {
1184
+ "$ref": "#/definitions/Message"
1185
+ },
1186
+ "type": "array"
1187
+ },
1188
+ "published": {
1189
+ "$ref": "#/definitions/FilePublishPublished"
1190
+ },
1191
+ "remote": {
1192
+ "$ref": "#/definitions/FilePublishRemote"
1193
+ },
1194
+ "render": {},
1195
+ "renders": {
1196
+ "$ref": "#/definitions/Record<string,FilePublishRender>"
1197
+ },
1198
+ "type": {
1199
+ "const": "file",
1200
+ "type": "string"
1201
+ }
1202
+ },
1203
+ "required": [
1204
+ "type"
1205
+ ],
1206
+ "type": "object"
1207
+ },
1208
+ "FilePublishRemote": {
1209
+ "additionalProperties": false,
1210
+ "properties": {
1211
+ "directory": {
1212
+ "type": "string"
1213
+ },
1214
+ "filename": {
1215
+ "type": "string"
1216
+ },
1217
+ "renders": {
1218
+ "$ref": "#/definitions/Record<string,FilePublishRemoteRender>"
1219
+ }
1220
+ },
1221
+ "type": "object"
1222
+ },
1223
+ "FilePublishRetrieved": {
1224
+ "additionalProperties": false,
1225
+ "properties": {
1226
+ "directory": {
1227
+ "type": "string"
1228
+ },
1229
+ "filename": {
1230
+ "type": "string"
1231
+ },
1232
+ "renders": {
1233
+ "$ref": "#/definitions/Record<string,FilePublishRetrievedRender>"
1234
+ }
1235
+ },
1236
+ "type": "object"
1237
+ },
1238
+ "FilePublishStatsRecord": {
1239
+ "additionalProperties": false,
1240
+ "properties": {
1241
+ "defaults": {
1242
+ "$ref": "#/definitions/FilePublishDefaults"
1243
+ },
1244
+ "messages": {
1245
+ "items": {
1246
+ "$ref": "#/definitions/Message"
1247
+ },
1248
+ "type": "array"
1249
+ },
1250
+ "retrieved": {
1251
+ "$ref": "#/definitions/FilePublishRetrieved"
1252
+ },
1253
+ "status": {
1254
+ "type": "string"
1255
+ },
1256
+ "substatus": {
1257
+ "type": "string"
1258
+ }
1259
+ },
1260
+ "type": "object"
1261
+ },
1262
+ "FileReplica": {
1263
+ "additionalProperties": false,
1264
+ "properties": {
1265
+ "error": {
1266
+ "$ref": "#/definitions/NxtError"
1267
+ },
1268
+ "name": {
1269
+ "type": "string"
1270
+ },
1271
+ "status": {
1272
+ "enum": [
1273
+ "error",
1274
+ "ok"
1275
+ ],
1276
+ "type": "string"
1277
+ }
1278
+ },
1279
+ "required": [
1280
+ "error",
1281
+ "name",
1282
+ "status"
1283
+ ],
1284
+ "type": "object"
1285
+ },
1286
+ "FileReplicateRecord": {
1287
+ "additionalProperties": false,
1288
+ "properties": {
1289
+ "error": {
1290
+ "$ref": "#/definitions/NxtError"
1291
+ },
1292
+ "replicas": {
1293
+ "items": {
1294
+ "type": "string"
1295
+ },
1296
+ "type": "array"
1297
+ }
1298
+ },
1299
+ "required": [
1300
+ "error",
1301
+ "replicas"
1302
+ ],
1303
+ "type": "object"
1304
+ },
1305
+ "FileRestrictionsRecord": {
1306
+ "additionalProperties": {
1307
+ "additionalProperties": false,
1308
+ "properties": {
1309
+ "asset": {
1310
+ "type": "string"
1311
+ },
1312
+ "date": {
1313
+ "type": "string"
1314
+ },
1315
+ "end": {
1316
+ "type": "number"
1317
+ },
1318
+ "start": {
1319
+ "type": "number"
1320
+ },
1321
+ "text": {
1322
+ "type": "string"
1323
+ },
1324
+ "user": {
1325
+ "type": "string"
1326
+ }
1327
+ },
1328
+ "required": [
1329
+ "asset",
1330
+ "date",
1331
+ "end",
1332
+ "start",
1333
+ "text",
1334
+ "user"
1335
+ ],
1336
+ "type": "object"
1337
+ },
1338
+ "type": "object"
1339
+ },
1340
+ "GeneralCreatedRecord": {
1341
+ "additionalProperties": false,
1342
+ "properties": {
1343
+ "origin": {
1344
+ "type": "string"
1345
+ },
1346
+ "time": {
1347
+ "type": "string"
1348
+ },
1349
+ "user": {
1350
+ "type": "string"
1351
+ }
1352
+ },
1353
+ "type": "object"
1354
+ },
1355
+ "GeneralDescriptionRecord": {
1356
+ "additionalProperties": false,
1357
+ "properties": {
1358
+ "value": {
1359
+ "type": "string"
1360
+ }
1361
+ },
1362
+ "type": "object"
1363
+ },
1364
+ "GeneralDomainRecords": {
1365
+ "additionalProperties": false,
1366
+ "properties": {
1367
+ ":general.created": {
1368
+ "$ref": "#/definitions/GeneralCreatedRecord"
1369
+ },
1370
+ ":general.description": {
1371
+ "$ref": "#/definitions/GeneralDescriptionRecord"
1372
+ },
1373
+ ":general.poster": {
1374
+ "$ref": "#/definitions/GeneralPosterRecord"
1375
+ },
1376
+ ":general.status": {
1377
+ "additionalProperties": {
1378
+ "$ref": "#/definitions/GeneralStatusRecordValue"
1379
+ },
1380
+ "type": "object"
1381
+ },
1382
+ ":general.tags": {
1383
+ "$ref": "#/definitions/GeneralTagsRecord"
1384
+ },
1385
+ ":general.title": {
1386
+ "$ref": "#/definitions/GeneralTitleRecord"
1387
+ }
1388
+ },
1389
+ "required": [
1390
+ ":general.created",
1391
+ ":general.description",
1392
+ ":general.poster",
1393
+ ":general.status",
1394
+ ":general.tags",
1395
+ ":general.title"
1396
+ ],
1397
+ "type": "object"
1398
+ },
1399
+ "GeneralPosterRecord": {
1400
+ "additionalProperties": false,
1401
+ "properties": {
1402
+ "input": {
1403
+ "additionalProperties": false,
1404
+ "properties": {
1405
+ "file": {
1406
+ "type": "string"
1407
+ },
1408
+ "type": {
1409
+ "type": "string"
1410
+ }
1411
+ },
1412
+ "type": "object"
1413
+ },
1414
+ "preset": {
1415
+ "type": "string"
1416
+ }
1417
+ },
1418
+ "type": "object"
1419
+ },
1420
+ "GeneralStatusRecord": {
1421
+ "additionalProperties": {
1422
+ "$ref": "#/definitions/GeneralStatusRecordValue"
1423
+ },
1424
+ "type": "object"
1425
+ },
1426
+ "GeneralStatusRecordValue": {
1427
+ "additionalProperties": false,
1428
+ "properties": {
1429
+ "expose": {
1430
+ "type": "boolean"
1431
+ }
1432
+ },
1433
+ "type": "object"
1434
+ },
1435
+ "GeneralTagsRecord": {
1436
+ "additionalProperties": false,
1437
+ "properties": {
1438
+ "value": {
1439
+ "items": {
1440
+ "type": "string"
1441
+ },
1442
+ "type": "array"
1443
+ }
1444
+ },
1445
+ "type": "object"
1446
+ },
1447
+ "GeneralTitleRecord": {
1448
+ "additionalProperties": false,
1449
+ "properties": {
1450
+ "value": {
1451
+ "type": "string"
1452
+ }
1453
+ },
1454
+ "type": "object"
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
+ },
1472
+ "MediaConsolidateRecord": {
1473
+ "additionalProperties": false,
1474
+ "properties": {
1475
+ "error": {},
1476
+ "profile": {},
1477
+ "source": {},
1478
+ "target": {}
1479
+ },
1480
+ "type": "object"
1481
+ },
1482
+ "MediaFontRecord": {
1483
+ "additionalProperties": false,
1484
+ "properties": {
1485
+ "sampleText": {
1486
+ "type": "string"
1487
+ }
1488
+ },
1489
+ "type": "object"
1490
+ },
1491
+ "MediaRenderRecordValue": {
1492
+ "additionalProperties": false,
1493
+ "properties": {
1494
+ "children": {
1495
+ "items": {
1496
+ "$ref": "#/definitions/MediaRenderRecordValue"
1497
+ },
1498
+ "type": "array"
1499
+ },
1500
+ "id": {
1501
+ "type": "string"
1502
+ },
1503
+ "title": {
1504
+ "type": "string"
1505
+ }
1506
+ },
1507
+ "type": "object"
1508
+ },
1509
+ "MediaRendersRecord": {
1510
+ "additionalProperties": false,
1511
+ "properties": {
1512
+ "children": {
1513
+ "items": {
1514
+ "$ref": "#/definitions/MediaRenderRecordValue"
1515
+ },
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"
1560
+ },
1561
+ "type": "object"
1562
+ },
1563
+ "MediaSourceRecord": {
1564
+ "additionalProperties": false,
1565
+ "properties": {
1566
+ "end": {
1567
+ "type": "number"
1568
+ },
1569
+ "input": {
1570
+ "additionalProperties": false,
1571
+ "properties": {
1572
+ "file": {
1573
+ "type": "string"
1574
+ },
1575
+ "type": {
1576
+ "type": "string"
1577
+ }
1578
+ },
1579
+ "type": "object"
1580
+ },
1581
+ "lang": {
1582
+ "type": "string"
1583
+ },
1584
+ "start": {
1585
+ "type": "number"
1586
+ },
1587
+ "subtitle": {
1588
+ "type": "string"
1589
+ },
1590
+ "transcribe": {
1591
+ "additionalProperties": false,
1592
+ "properties": {
1593
+ "language": {
1594
+ "type": "string"
1595
+ },
1596
+ "pan": {
1597
+ "items": {
1598
+ "type": "number"
1599
+ },
1600
+ "type": "array"
1601
+ }
1602
+ },
1603
+ "type": "object"
1604
+ },
1605
+ "video": {
1606
+ "additionalProperties": false,
1607
+ "properties": {
1608
+ "crop": {
1609
+ "additionalProperties": false,
1610
+ "properties": {
1611
+ "height": {
1612
+ "type": "number"
1613
+ },
1614
+ "width": {
1615
+ "type": "number"
1616
+ },
1617
+ "x": {
1618
+ "type": "number"
1619
+ },
1620
+ "y": {
1621
+ "type": "number"
1622
+ }
1623
+ },
1624
+ "type": "object"
1625
+ }
1626
+ },
1627
+ "type": "object"
1628
+ }
1629
+ },
1630
+ "type": "object"
1631
+ },
1632
+ "MediaTranscriptChangesRecordValue": {
1633
+ "additionalProperties": false,
1634
+ "properties": {
1635
+ "patch": {
1636
+ "items": {
1637
+ "$ref": "#/definitions/Operation"
1638
+ },
1639
+ "type": "array"
1640
+ }
1641
+ },
1642
+ "type": "object"
1643
+ },
1644
+ "Message": {
1645
+ "additionalProperties": false,
1646
+ "properties": {
1647
+ "code": {
1648
+ "type": "string"
1649
+ },
1650
+ "level": {
1651
+ "type": "number"
1652
+ },
1653
+ "msg": {
1654
+ "type": "string"
1655
+ }
1656
+ },
1657
+ "required": [
1658
+ "code",
1659
+ "level",
1660
+ "msg"
1661
+ ],
1662
+ "type": "object"
1663
+ },
1664
+ "MoveOperation": {
1665
+ "additionalProperties": false,
1666
+ "properties": {
1667
+ "from": {
1668
+ "type": "string"
1669
+ },
1670
+ "op": {
1671
+ "const": "move",
1672
+ "type": "string"
1673
+ },
1674
+ "path": {
1675
+ "type": "string"
1676
+ }
1677
+ },
1678
+ "required": [
1679
+ "from",
1680
+ "op",
1681
+ "path"
1682
+ ],
1683
+ "type": "object"
1684
+ },
1685
+ "NxtError": {
1686
+ "additionalProperties": false,
1687
+ "properties": {
1688
+ "cause": {
1689
+ "$ref": "#/definitions/NxtError"
1690
+ },
1691
+ "code": {
1692
+ "type": "string"
1693
+ },
1694
+ "data": {
1695
+ "additionalProperties": true,
1696
+ "properties": {},
1697
+ "type": "object"
1698
+ },
1699
+ "errors": {
1700
+ "items": {
1701
+ "$ref": "#/definitions/NxtError"
1702
+ },
1703
+ "type": "array"
1704
+ },
1705
+ "exitCode": {
1706
+ "type": "number"
1707
+ },
1708
+ "headers": {
1709
+ "$ref": "#/definitions/Record<string,string>"
1710
+ },
1711
+ "message": {
1712
+ "type": "string"
1713
+ },
1714
+ "signalCode": {
1715
+ "type": "number"
1716
+ },
1717
+ "statusCode": {
1718
+ "type": "number"
1719
+ },
1720
+ "type": {
1721
+ "type": "string"
1722
+ }
1723
+ },
1724
+ "required": [
1725
+ "message"
1726
+ ],
1727
+ "type": "object"
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
+ },
1751
+ "Operation": {
1752
+ "anyOf": [
1753
+ {
1754
+ "$ref": "#/definitions/AddOperation"
1755
+ },
1756
+ {
1757
+ "$ref": "#/definitions/RemoveOperation"
1758
+ },
1759
+ {
1760
+ "$ref": "#/definitions/ReplaceOperation"
1761
+ },
1762
+ {
1763
+ "$ref": "#/definitions/MoveOperation"
1764
+ },
1765
+ {
1766
+ "$ref": "#/definitions/CopyOperation"
1767
+ },
1768
+ {
1769
+ "$ref": "#/definitions/TestOperation"
1770
+ }
1771
+ ]
1772
+ },
1773
+ "PartialObjectDeep<ModuleTabs,{}>": {
1774
+ "additionalProperties": false,
1775
+ "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
1776
+ "properties": {
1777
+ "settingsPanelStore": {
1778
+ "$ref": "#/definitions/PartialObjectDeep<SettingsPanelStoreTab,{}>"
1779
+ }
1780
+ },
1781
+ "type": "object"
1782
+ },
1783
+ "PartialObjectDeep<Settings,{}>": {
1784
+ "additionalProperties": false,
1785
+ "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
1786
+ "properties": {
1787
+ "assignees": {
1788
+ "$ref": "#/definitions/PartialObjectDeep<{include:string[];},{}>_1"
1789
+ },
1790
+ "autoLogoutTime": {
1791
+ "type": "number"
1792
+ },
1793
+ "browser": {
1794
+ "$ref": "#/definitions/PartialObjectDeep<{createMenu:{sortOrder:string[];};},{}>"
1795
+ },
1796
+ "clock": {
1797
+ "$ref": "#/definitions/PartialObjectDeep<{enable:boolean;show24Hours:boolean;showAmPm:boolean;showSeconds:boolean;showDayOfWeek:boolean;showDate:boolean;format?:string;},{}>"
1798
+ },
1799
+ "crashScreen": {
1800
+ "type": "boolean"
1801
+ },
1802
+ "dashboard": {
1803
+ "$ref": "#/definitions/PartialObjectDeep<{maxMru:number;maxTabs:number;},{}>"
1804
+ },
1805
+ "deadlines": {
1806
+ "$ref": "#/definitions/PartialObjectDeep<{include:string[];},{}>"
1807
+ },
1808
+ "debug": {
1809
+ "type": "boolean"
1810
+ },
1811
+ "events": {
1812
+ "$ref": "#/definitions/PartialObjectDeep<{graphicBaseTemplate?:string;},{}>"
1813
+ },
1814
+ "flags": {
1815
+ "$ref": "#/definitions/PartialObjectDeep<{utils:boolean;history:boolean;refs:boolean;access:boolean;files:boolean;export:boolean;json:boolean;hlsjs:boolean;resetRenders?:boolean;resetReplicas?:boolean;assetStatus?:boolean;consolidateMedia?:boolean;hideInAssetMenu?:boolean;assetRoute?:boolean;},{}>"
1816
+ },
1817
+ "gallery": {
1818
+ "$ref": "#/definitions/PartialObjectDeep<{dimOnBlur:boolean;},{}>"
1819
+ },
1820
+ "history": {
1821
+ "type": "boolean"
1822
+ },
1823
+ "keymap": {},
1824
+ "media": {
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;};};};},{}>"
1826
+ },
1827
+ "module": {
1828
+ "$ref": "#/definitions/PartialObjectDeep<{tabs?:ModuleTabs;},{}>"
1829
+ },
1830
+ "permission": {
1831
+ "$ref": "#/definitions/PartialObjectDeep<{overrideUserContact:boolean;overrideUserLogin:boolean;},{}>"
1832
+ },
1833
+ "plugins": {
1834
+ "$ref": "#/definitions/PartialObjectDeep<{adobe:{useProxies:boolean;};},{}>"
1835
+ },
1836
+ "predefinedTags": {
1837
+ "items": {
1838
+ "type": "string"
1839
+ },
1840
+ "type": "array"
1841
+ },
1842
+ "rundown": {
1843
+ "$ref": "#/definitions/PartialObjectDeep<{eventThumbnails:boolean;},{}>"
1844
+ },
1845
+ "script": {
1846
+ "$ref": "#/definitions/PartialObjectDeep<{createMenu:{showPreview:boolean;};colorTags:PromotedTag[];},{}>"
1847
+ },
1848
+ "storyboard": {
1849
+ "$ref": "#/definitions/PartialObjectDeep<{assets:{story:{excerpt:{maxLines:number;mode:string;};};};pipeline:{search:{maxItemsDisplayed:number;};};item:{maxHeight:number;};},{}>"
1850
+ },
1851
+ "swarm": {
1852
+ "$ref": "#/definitions/PartialObjectDeep<{color?:string;name?:string;},{}>"
1853
+ },
1854
+ "toolbarTags": {
1855
+ "$ref": "#/definitions/PartialObjectDeep<{exclude:string[];},{}>"
1856
+ }
1857
+ },
1858
+ "type": "object"
1859
+ },
1860
+ "PartialObjectDeep<SettingsPanelStoreTab,{}>": {
1861
+ "additionalProperties": false,
1862
+ "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
1863
+ "properties": {
1864
+ "activeSectionIndex": {
1865
+ "type": "number"
1866
+ },
1867
+ "activeTab": {
1868
+ "type": "string"
1869
+ }
1870
+ },
1871
+ "type": "object"
1872
+ },
1873
+ "PartialObjectDeep<{adobe:{useProxies:boolean;};},{}>": {
1874
+ "additionalProperties": false,
1875
+ "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
1876
+ "properties": {
1877
+ "adobe": {
1878
+ "$ref": "#/definitions/PartialObjectDeep<{useProxies:boolean;},{}>"
1879
+ }
1880
+ },
1881
+ "type": "object"
1882
+ },
1883
+ "PartialObjectDeep<{assets:{story:{excerpt:{maxLines:number;mode:string;};};};pipeline:{search:{maxItemsDisplayed:number;};};item:{maxHeight:number;};},{}>": {
1884
+ "additionalProperties": false,
1885
+ "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
1886
+ "properties": {
1887
+ "assets": {
1888
+ "$ref": "#/definitions/PartialObjectDeep<{story:{excerpt:{maxLines:number;mode:string;};};},{}>"
1889
+ },
1890
+ "item": {
1891
+ "$ref": "#/definitions/PartialObjectDeep<{maxHeight:number;},{}>"
1892
+ },
1893
+ "pipeline": {
1894
+ "$ref": "#/definitions/PartialObjectDeep<{search:{maxItemsDisplayed:number;};},{}>"
1895
+ }
1896
+ },
1897
+ "type": "object"
1898
+ },
1899
+ "PartialObjectDeep<{color?:string;name?:string;},{}>": {
1900
+ "additionalProperties": false,
1901
+ "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
1902
+ "properties": {
1903
+ "color": {
1904
+ "type": "string"
1905
+ },
1906
+ "name": {
1907
+ "type": "string"
1908
+ }
1909
+ },
1910
+ "type": "object"
1911
+ },
1912
+ "PartialObjectDeep<{createMenu:{showPreview:boolean;};colorTags:PromotedTag[];},{}>": {
1913
+ "additionalProperties": false,
1914
+ "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
1915
+ "properties": {
1916
+ "colorTags": {
1917
+ "items": {
1918
+ "$ref": "#/definitions/PromotedTag"
1919
+ },
1920
+ "type": "array"
1921
+ },
1922
+ "createMenu": {
1923
+ "$ref": "#/definitions/PartialObjectDeep<{showPreview:boolean;},{}>"
1924
+ }
1925
+ },
1926
+ "type": "object"
1927
+ },
1928
+ "PartialObjectDeep<{createMenu:{sortOrder:string[];};},{}>": {
1929
+ "additionalProperties": false,
1930
+ "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
1931
+ "properties": {
1932
+ "createMenu": {
1933
+ "$ref": "#/definitions/PartialObjectDeep<{sortOrder:string[];},{}>"
1934
+ }
1935
+ },
1936
+ "type": "object"
1937
+ },
1938
+ "PartialObjectDeep<{dimOnBlur:boolean;},{}>": {
1939
+ "additionalProperties": false,
1940
+ "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
1941
+ "properties": {
1942
+ "dimOnBlur": {
1943
+ "type": "boolean"
1944
+ }
1945
+ },
1946
+ "type": "object"
1947
+ },
1948
+ "PartialObjectDeep<{enable:boolean;show24Hours:boolean;showAmPm:boolean;showSeconds:boolean;showDayOfWeek:boolean;showDate:boolean;format?:string;},{}>": {
1949
+ "additionalProperties": false,
1950
+ "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
1951
+ "properties": {
1952
+ "enable": {
1953
+ "type": "boolean"
1954
+ },
1955
+ "format": {
1956
+ "type": "string"
1957
+ },
1958
+ "show24Hours": {
1959
+ "type": "boolean"
1960
+ },
1961
+ "showAmPm": {
1962
+ "type": "boolean"
1963
+ },
1964
+ "showDate": {
1965
+ "type": "boolean"
1966
+ },
1967
+ "showDayOfWeek": {
1968
+ "type": "boolean"
1969
+ },
1970
+ "showSeconds": {
1971
+ "type": "boolean"
1972
+ }
1973
+ },
1974
+ "type": "object"
1975
+ },
1976
+ "PartialObjectDeep<{enabled?:false;text?:{language:string;value:string;}[];offset?:number;duration?:number;},{}>": {
1977
+ "additionalProperties": false,
1978
+ "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
1979
+ "properties": {
1980
+ "duration": {
1981
+ "type": "number"
1982
+ },
1983
+ "enabled": {
1984
+ "const": false,
1985
+ "type": "boolean"
1986
+ },
1987
+ "offset": {
1988
+ "type": "number"
1989
+ },
1990
+ "text": {
1991
+ "items": {
1992
+ "additionalProperties": false,
1993
+ "properties": {
1994
+ "language": {
1995
+ "type": "string"
1996
+ },
1997
+ "value": {
1998
+ "type": "string"
1999
+ }
2000
+ },
2001
+ "required": [
2002
+ "language",
2003
+ "value"
2004
+ ],
2005
+ "type": "object"
2006
+ },
2007
+ "type": "array"
2008
+ }
2009
+ },
2010
+ "type": "object"
2011
+ },
2012
+ "PartialObjectDeep<{eventThumbnails:boolean;},{}>": {
2013
+ "additionalProperties": false,
2014
+ "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
2015
+ "properties": {
2016
+ "eventThumbnails": {
2017
+ "type": "boolean"
2018
+ }
2019
+ },
2020
+ "type": "object"
2021
+ },
2022
+ "PartialObjectDeep<{excerpt:{maxLines:number;mode:string;};},{}>": {
2023
+ "additionalProperties": false,
2024
+ "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
2025
+ "properties": {
2026
+ "excerpt": {
2027
+ "$ref": "#/definitions/PartialObjectDeep<{maxLines:number;mode:string;},{}>"
2028
+ }
2029
+ },
2030
+ "type": "object"
2031
+ },
2032
+ "PartialObjectDeep<{exclude:string[];},{}>": {
2033
+ "additionalProperties": false,
2034
+ "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
2035
+ "properties": {
2036
+ "exclude": {
2037
+ "items": {
2038
+ "type": "string"
2039
+ },
2040
+ "type": "array"
2041
+ }
2042
+ },
2043
+ "type": "object"
2044
+ },
2045
+ "PartialObjectDeep<{graphicBaseTemplate?:string;},{}>": {
2046
+ "additionalProperties": false,
2047
+ "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
2048
+ "properties": {
2049
+ "graphicBaseTemplate": {
2050
+ "type": "string"
2051
+ }
2052
+ },
2053
+ "type": "object"
2054
+ },
2055
+ "PartialObjectDeep<{include:string[];},{}>": {
2056
+ "additionalProperties": false,
2057
+ "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
2058
+ "properties": {
2059
+ "include": {
2060
+ "items": {
2061
+ "type": "string"
2062
+ },
2063
+ "type": "array"
2064
+ }
2065
+ },
2066
+ "type": "object"
2067
+ },
2068
+ "PartialObjectDeep<{include:string[];},{}>_1": {
2069
+ "additionalProperties": false,
2070
+ "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
2071
+ "properties": {
2072
+ "include": {
2073
+ "items": {
2074
+ "type": "string"
2075
+ },
2076
+ "type": "array"
2077
+ }
2078
+ },
2079
+ "type": "object"
2080
+ },
2081
+ "PartialObjectDeep<{isUserConfigurable?:boolean;defaultValue?:{enabled?:false;text?:{language:string;value:string;}[];offset?:number;duration?:number;};},{}>": {
2082
+ "additionalProperties": false,
2083
+ "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
2084
+ "properties": {
2085
+ "defaultValue": {
2086
+ "$ref": "#/definitions/PartialObjectDeep<{enabled?:false;text?:{language:string;value:string;}[];offset?:number;duration?:number;},{}>"
2087
+ },
2088
+ "isUserConfigurable": {
2089
+ "type": "boolean"
2090
+ }
2091
+ },
2092
+ "type": "object"
2093
+ },
2094
+ "PartialObjectDeep<{mask?:boolean;},{}>": {
2095
+ "additionalProperties": false,
2096
+ "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
2097
+ "properties": {
2098
+ "mask": {
2099
+ "type": "boolean"
2100
+ }
2101
+ },
2102
+ "type": "object"
2103
+ },
2104
+ "PartialObjectDeep<{maxHeight:number;},{}>": {
2105
+ "additionalProperties": false,
2106
+ "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
2107
+ "properties": {
2108
+ "maxHeight": {
2109
+ "type": "number"
2110
+ }
2111
+ },
2112
+ "type": "object"
2113
+ },
2114
+ "PartialObjectDeep<{maxItemsDisplayed:number;},{}>": {
2115
+ "additionalProperties": false,
2116
+ "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
2117
+ "properties": {
2118
+ "maxItemsDisplayed": {
2119
+ "type": "number"
2120
+ }
2121
+ },
2122
+ "type": "object"
2123
+ },
2124
+ "PartialObjectDeep<{maxLines:number;mode:string;},{}>": {
2125
+ "additionalProperties": false,
2126
+ "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
2127
+ "properties": {
2128
+ "maxLines": {
2129
+ "type": "number"
2130
+ },
2131
+ "mode": {
2132
+ "type": "string"
2133
+ }
2134
+ },
2135
+ "type": "object"
2136
+ },
2137
+ "PartialObjectDeep<{maxMru:number;maxTabs:number;},{}>": {
2138
+ "additionalProperties": false,
2139
+ "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
2140
+ "properties": {
2141
+ "maxMru": {
2142
+ "type": "number"
2143
+ },
2144
+ "maxTabs": {
2145
+ "type": "number"
2146
+ }
2147
+ },
2148
+ "type": "object"
2149
+ },
2150
+ "PartialObjectDeep<{overrideUserContact:boolean;overrideUserLogin:boolean;},{}>": {
2151
+ "additionalProperties": false,
2152
+ "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
2153
+ "properties": {
2154
+ "overrideUserContact": {
2155
+ "type": "boolean"
2156
+ },
2157
+ "overrideUserLogin": {
2158
+ "type": "boolean"
2159
+ }
2160
+ },
2161
+ "type": "object"
2162
+ },
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;};};};},{}>": {
2164
+ "additionalProperties": false,
2165
+ "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
2166
+ "properties": {
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": {
2235
+ "type": "string"
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
+ },
2257
+ "showRenderProgress": {
2258
+ "type": "boolean"
2259
+ }
2260
+ },
2261
+ "type": "object"
2262
+ },
2263
+ "PartialObjectDeep<{search:{maxItemsDisplayed:number;};},{}>": {
2264
+ "additionalProperties": false,
2265
+ "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
2266
+ "properties": {
2267
+ "search": {
2268
+ "$ref": "#/definitions/PartialObjectDeep<{maxItemsDisplayed:number;},{}>"
2269
+ }
2270
+ },
2271
+ "type": "object"
2272
+ },
2273
+ "PartialObjectDeep<{showPreview:boolean;},{}>": {
2274
+ "additionalProperties": false,
2275
+ "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
2276
+ "properties": {
2277
+ "showPreview": {
2278
+ "type": "boolean"
2279
+ }
2280
+ },
2281
+ "type": "object"
2282
+ },
2283
+ "PartialObjectDeep<{sortOrder:string[];},{}>": {
2284
+ "additionalProperties": false,
2285
+ "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
2286
+ "properties": {
2287
+ "sortOrder": {
2288
+ "items": {
2289
+ "type": "string"
2290
+ },
2291
+ "type": "array"
2292
+ }
2293
+ },
2294
+ "type": "object"
2295
+ },
2296
+ "PartialObjectDeep<{spacing:number;maxCharactersPerLine:number;},{}>": {
2297
+ "additionalProperties": false,
2298
+ "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
2299
+ "properties": {
2300
+ "maxCharactersPerLine": {
2301
+ "type": "number"
2302
+ },
2303
+ "spacing": {
2304
+ "type": "number"
2305
+ }
2306
+ },
2307
+ "type": "object"
2308
+ },
2309
+ "PartialObjectDeep<{story:{excerpt:{maxLines:number;mode:string;};};},{}>": {
2310
+ "additionalProperties": false,
2311
+ "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
2312
+ "properties": {
2313
+ "story": {
2314
+ "$ref": "#/definitions/PartialObjectDeep<{excerpt:{maxLines:number;mode:string;};},{}>"
2315
+ }
2316
+ },
2317
+ "type": "object"
2318
+ },
2319
+ "PartialObjectDeep<{subtitleDisclaimer?:{isUserConfigurable?:boolean;defaultValue?:{enabled?:false;text?:{language:string;value:string;}[];offset?:number;duration?:number;};};},{}>": {
2320
+ "additionalProperties": false,
2321
+ "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
2322
+ "properties": {
2323
+ "subtitleDisclaimer": {
2324
+ "$ref": "#/definitions/PartialObjectDeep<{isUserConfigurable?:boolean;defaultValue?:{enabled?:false;text?:{language:string;value:string;}[];offset?:number;duration?:number;};},{}>"
2325
+ }
2326
+ },
2327
+ "type": "object"
2328
+ },
2329
+ "PartialObjectDeep<{tabs?:ModuleTabs;},{}>": {
2330
+ "additionalProperties": false,
2331
+ "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
2332
+ "properties": {
2333
+ "tabs": {
2334
+ "$ref": "#/definitions/PartialObjectDeep<ModuleTabs,{}>"
2335
+ }
2336
+ },
2337
+ "type": "object"
2338
+ },
2339
+ "PartialObjectDeep<{useProxies:boolean;},{}>": {
2340
+ "additionalProperties": false,
2341
+ "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
2342
+ "properties": {
2343
+ "useProxies": {
2344
+ "type": "boolean"
2345
+ }
2346
+ },
2347
+ "type": "object"
2348
+ },
2349
+ "PartialObjectDeep<{utils:boolean;history:boolean;refs:boolean;access:boolean;files:boolean;export:boolean;json:boolean;hlsjs:boolean;resetRenders?:boolean;resetReplicas?:boolean;assetStatus?:boolean;consolidateMedia?:boolean;hideInAssetMenu?:boolean;assetRoute?:boolean;},{}>": {
2350
+ "additionalProperties": false,
2351
+ "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
2352
+ "properties": {
2353
+ "access": {
2354
+ "type": "boolean"
2355
+ },
2356
+ "assetRoute": {
2357
+ "type": "boolean"
2358
+ },
2359
+ "assetStatus": {
2360
+ "type": "boolean"
2361
+ },
2362
+ "consolidateMedia": {
2363
+ "type": "boolean"
2364
+ },
2365
+ "export": {
2366
+ "type": "boolean"
2367
+ },
2368
+ "files": {
2369
+ "type": "boolean"
2370
+ },
2371
+ "hideInAssetMenu": {
2372
+ "type": "boolean"
2373
+ },
2374
+ "history": {
2375
+ "type": "boolean"
2376
+ },
2377
+ "hlsjs": {
2378
+ "type": "boolean"
2379
+ },
2380
+ "json": {
2381
+ "type": "boolean"
2382
+ },
2383
+ "refs": {
2384
+ "type": "boolean"
2385
+ },
2386
+ "resetRenders": {
2387
+ "type": "boolean"
2388
+ },
2389
+ "resetReplicas": {
2390
+ "type": "boolean"
2391
+ },
2392
+ "utils": {
2393
+ "type": "boolean"
2394
+ }
2395
+ },
2396
+ "type": "object"
2397
+ },
2398
+ "PermissionRecordPermisson": {
2399
+ "anyOf": [
2400
+ {
2401
+ "$ref": "#/definitions/TagPermission"
2402
+ },
2403
+ {
2404
+ "$ref": "#/definitions/AssetPermission"
2405
+ },
2406
+ {
2407
+ "$ref": "#/definitions/RpcPermission"
2408
+ }
2409
+ ]
2410
+ },
2411
+ "PlanningAssigneesRecord": {
2412
+ "additionalProperties": false,
2413
+ "properties": {
2414
+ "value": {
2415
+ "items": {
2416
+ "type": "string"
2417
+ },
2418
+ "type": "array"
2419
+ }
2420
+ },
2421
+ "required": [
2422
+ "value"
2423
+ ],
2424
+ "type": "object"
2425
+ },
2426
+ "PlanningDeadlineRecord": {
2427
+ "additionalProperties": false,
2428
+ "properties": {
2429
+ "value": {
2430
+ "type": "string"
2431
+ }
2432
+ },
2433
+ "required": [
2434
+ "value"
2435
+ ],
2436
+ "type": "object"
2437
+ },
2438
+ "PlanningRecord": {
2439
+ "additionalProperties": false,
2440
+ "properties": {
2441
+ "deadline": {
2442
+ "type": "string"
2443
+ }
2444
+ },
2445
+ "type": "object"
2446
+ },
2447
+ "PromotedTag": {
2448
+ "additionalProperties": false,
2449
+ "properties": {
2450
+ "color": {
2451
+ "type": "string"
2452
+ },
2453
+ "description": {
2454
+ "type": "string"
2455
+ },
2456
+ "icon": {
2457
+ "type": "string"
2458
+ },
2459
+ "name": {
2460
+ "type": "string"
2461
+ }
2462
+ },
2463
+ "required": [
2464
+ "color",
2465
+ "description",
2466
+ "icon",
2467
+ "name"
2468
+ ],
2469
+ "type": "object"
2470
+ },
2471
+ "ProvidedPermissionRecord": {
2472
+ "additionalProperties": false,
2473
+ "properties": {
2474
+ "permissions": {
2475
+ "items": {
2476
+ "$ref": "#/definitions/PermissionRecordPermisson"
2477
+ },
2478
+ "type": "array"
2479
+ }
2480
+ },
2481
+ "required": [
2482
+ "permissions"
2483
+ ],
2484
+ "type": "object"
2485
+ },
2486
+ "PublishRecord": {
2487
+ "anyOf": [
2488
+ {
2489
+ "$ref": "#/definitions/YoutubePublishRecord"
2490
+ },
2491
+ {
2492
+ "$ref": "#/definitions/FacebookPublishRecord"
2493
+ },
2494
+ {
2495
+ "$ref": "#/definitions/FilePublishRecord"
2496
+ }
2497
+ ]
2498
+ },
2499
+ "PublishStatsRecord": {
2500
+ "anyOf": [
2501
+ {
2502
+ "$ref": "#/definitions/YoutubePublishStatsRecord"
2503
+ },
2504
+ {
2505
+ "$ref": "#/definitions/FacebookPublishStatsRecord"
2506
+ },
2507
+ {
2508
+ "$ref": "#/definitions/FilePublishStatsRecord"
2509
+ }
2510
+ ]
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
+ },
2543
+ "Record<string,FilePublishRemoteRender>": {
2544
+ "additionalProperties": false,
2545
+ "type": "object"
2546
+ },
2547
+ "Record<string,FilePublishRender>": {
2548
+ "additionalProperties": false,
2549
+ "type": "object"
2550
+ },
2551
+ "Record<string,FilePublishRetrievedRender>": {
2552
+ "additionalProperties": false,
2553
+ "type": "object"
2554
+ },
2555
+ "Record<string,TemplateProperty>": {
2556
+ "additionalProperties": false,
2557
+ "type": "object"
2558
+ },
2559
+ "Record<string,object>": {
2560
+ "additionalProperties": false,
2561
+ "type": "object"
2562
+ },
2563
+ "Record<string,string>": {
2564
+ "additionalProperties": false,
2565
+ "type": "object"
2566
+ },
2567
+ "Record<string,unknown>": {
2568
+ "additionalProperties": false,
2569
+ "type": "object"
2570
+ },
2571
+ "Record<string,{rpcId:string;rpcData:Record<string,unknown>;}>": {
2572
+ "additionalProperties": false,
2573
+ "type": "object"
2574
+ },
2575
+ "Records": {
2576
+ "additionalProperties": false,
2577
+ "properties": {
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": {
2605
+ "additionalProperties": false,
2606
+ "properties": {
2607
+ "rules": {
2608
+ "items": {
2609
+ "$ref": "#/definitions/CloneRule"
2610
+ },
2611
+ "type": "array"
2612
+ }
2613
+ },
2614
+ "required": [
2615
+ "rules"
2616
+ ],
2617
+ "type": "object"
2618
+ },
2619
+ "hub-transcribe:render-profile": {
2620
+ "additionalProperties": false,
2621
+ "properties": {
2622
+ "format": {
2623
+ "type": "string"
2624
+ },
2625
+ "pick": {
2626
+ "items": {
2627
+ "type": "string"
2628
+ },
2629
+ "type": "array"
2630
+ },
2631
+ "transcribe": {
2632
+ "additionalProperties": false,
2633
+ "properties": {
2634
+ "engine": {
2635
+ "type": "string"
2636
+ }
2637
+ },
2638
+ "required": [
2639
+ "engine"
2640
+ ],
2641
+ "type": "object"
2642
+ }
2643
+ },
2644
+ "required": [
2645
+ "format",
2646
+ "pick",
2647
+ "transcribe"
2648
+ ],
2649
+ "type": "object"
2650
+ },
2651
+ "media.subtitles?": {
2652
+ "additionalProperties": false,
2653
+ "properties": {
2654
+ "languages": {
2655
+ "$ref": "#/definitions/Record<string,string>"
2656
+ }
2657
+ },
2658
+ "required": [
2659
+ "languages"
2660
+ ],
2661
+ "type": "object"
2662
+ },
2663
+ "media.transcribe?": {
2664
+ "additionalProperties": false,
2665
+ "properties": {
2666
+ "engines": {
2667
+ "$ref": "#/definitions/Record<string,string>"
2668
+ },
2669
+ "languages": {
2670
+ "$ref": "#/definitions/Record<string,string>"
2671
+ },
2672
+ "translate": {
2673
+ "additionalProperties": false,
2674
+ "properties": {
2675
+ "languages": {
2676
+ "$ref": "#/definitions/Record<string,string>"
2677
+ }
2678
+ },
2679
+ "required": [
2680
+ "languages"
2681
+ ],
2682
+ "type": "object"
2683
+ }
2684
+ },
2685
+ "required": [
2686
+ "engines",
2687
+ "languages"
2688
+ ],
2689
+ "type": "object"
2690
+ }
2691
+ },
2692
+ "required": [
2693
+ ":permission",
2694
+ "asset.assignees",
2695
+ "asset.clone",
2696
+ "hub-transcribe:render-profile",
2697
+ "media.subtitles?",
2698
+ "media.transcribe?"
2699
+ ],
2700
+ "type": "object"
2701
+ },
2702
+ "RemoveOperation": {
2703
+ "additionalProperties": false,
2704
+ "properties": {
2705
+ "op": {
2706
+ "const": "remove",
2707
+ "type": "string"
2708
+ },
2709
+ "path": {
2710
+ "type": "string"
2711
+ }
2712
+ },
2713
+ "required": [
2714
+ "op",
2715
+ "path"
2716
+ ],
2717
+ "type": "object"
2718
+ },
2719
+ "ReplaceOperation": {
2720
+ "additionalProperties": false,
2721
+ "properties": {
2722
+ "op": {
2723
+ "const": "replace",
2724
+ "type": "string"
2725
+ },
2726
+ "path": {
2727
+ "type": "string"
2728
+ },
2729
+ "value": {}
2730
+ },
2731
+ "required": [
2732
+ "op",
2733
+ "path",
2734
+ "value"
2735
+ ],
2736
+ "type": "object"
2737
+ },
2738
+ "ReutersConnectionRecord": {
2739
+ "additionalProperties": false,
2740
+ "properties": {
2741
+ "audience": {
2742
+ "type": "string"
2743
+ },
2744
+ "clientId": {
2745
+ "type": "string"
2746
+ },
2747
+ "clientSecret": {
2748
+ "type": "string"
2749
+ },
2750
+ "notifyOnPublish": {
2751
+ "type": "boolean"
2752
+ },
2753
+ "type": {
2754
+ "const": "reuters",
2755
+ "type": "string"
2756
+ }
2757
+ },
2758
+ "required": [
2759
+ "type"
2760
+ ],
2761
+ "type": "object"
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
+ },
2775
+ "RoleTagsRecord": {
2776
+ "additionalProperties": false,
2777
+ "properties": {
2778
+ "value": {
2779
+ "items": {
2780
+ "type": "string"
2781
+ },
2782
+ "type": "array"
2783
+ }
2784
+ },
2785
+ "required": [
2786
+ "value"
2787
+ ],
2788
+ "type": "object"
2789
+ },
2790
+ "RpcPermission": {
2791
+ "additionalProperties": false,
2792
+ "properties": {
2793
+ "method": {
2794
+ "type": "string"
2795
+ },
2796
+ "type": {
2797
+ "const": "rpc",
2798
+ "type": "string"
2799
+ }
2800
+ },
2801
+ "required": [
2802
+ "method",
2803
+ "type"
2804
+ ],
2805
+ "type": "object"
2806
+ },
2807
+ "ScriptChildrenRecord": {
2808
+ "additionalProperties": false,
2809
+ "properties": {
2810
+ "value": {
2811
+ "items": {
2812
+ "type": "string"
2813
+ },
2814
+ "type": "array"
2815
+ }
2816
+ },
2817
+ "type": "object"
2818
+ },
2819
+ "SearchRecord": {
2820
+ "additionalProperties": false,
2821
+ "properties": {
2822
+ "error": {
2823
+ "type": "string"
2824
+ },
2825
+ "hits": {
2826
+ "items": {
2827
+ "type": "string"
2828
+ },
2829
+ "type": "array"
2830
+ },
2831
+ "relation": {
2832
+ "type": "string"
2833
+ },
2834
+ "total": {
2835
+ "type": "number"
2836
+ }
2837
+ },
2838
+ "required": [
2839
+ "hits"
2840
+ ],
2841
+ "type": "object"
2842
+ },
2843
+ "TagPermission": {
2844
+ "additionalProperties": false,
2845
+ "properties": {
2846
+ "tags": {
2847
+ "items": {
2848
+ "type": "string"
2849
+ },
2850
+ "type": "array"
2851
+ },
2852
+ "type": {
2853
+ "const": "tag",
2854
+ "type": "string"
2855
+ }
2856
+ },
2857
+ "required": [
2858
+ "tags",
2859
+ "type"
2860
+ ],
2861
+ "type": "object"
2862
+ },
2863
+ "TemplateRecord": {
2864
+ "additionalProperties": false,
2865
+ "properties": {
2866
+ "mixin": {
2867
+ "items": {
2868
+ "type": "string"
2869
+ },
2870
+ "type": "array"
2871
+ },
2872
+ "properties": {
2873
+ "$ref": "#/definitions/Record<string,TemplateProperty>"
2874
+ }
2875
+ },
2876
+ "type": "object"
2877
+ },
2878
+ "TestOperation": {
2879
+ "additionalProperties": false,
2880
+ "properties": {
2881
+ "op": {
2882
+ "const": "test",
2883
+ "type": "string"
2884
+ },
2885
+ "path": {
2886
+ "type": "string"
2887
+ },
2888
+ "value": {}
2889
+ },
2890
+ "required": [
2891
+ "op",
2892
+ "path",
2893
+ "value"
2894
+ ],
2895
+ "type": "object"
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
+ },
2920
+ "YoutubePublishRecord": {
2921
+ "additionalProperties": false,
2922
+ "properties": {
2923
+ "asset": {
2924
+ "type": "string"
2925
+ },
2926
+ "connection": {
2927
+ "type": "string"
2928
+ },
2929
+ "draft": {
2930
+ "additionalProperties": false,
2931
+ "properties": {
2932
+ "snippet": {
2933
+ "additionalProperties": false,
2934
+ "properties": {
2935
+ "description": {
2936
+ "type": "string"
2937
+ },
2938
+ "tags": {
2939
+ "items": {
2940
+ "type": "string"
2941
+ },
2942
+ "type": "array"
2943
+ },
2944
+ "title": {
2945
+ "type": "string"
2946
+ }
2947
+ },
2948
+ "type": "object"
2949
+ }
2950
+ },
2951
+ "type": "object"
2952
+ },
2953
+ "error": {
2954
+ "additionalProperties": false,
2955
+ "properties": {
2956
+ "method": {
2957
+ "type": "string"
2958
+ }
2959
+ },
2960
+ "required": [
2961
+ "method"
2962
+ ],
2963
+ "type": "object"
2964
+ },
2965
+ "messages": {
2966
+ "items": {
2967
+ "$ref": "#/definitions/Message"
2968
+ },
2969
+ "type": "array"
2970
+ },
2971
+ "published": {
2972
+ "$ref": "#/definitions/Record<string,unknown>"
2973
+ },
2974
+ "remote": {
2975
+ "$ref": "#/definitions/Record<string,unknown>"
2976
+ },
2977
+ "render": {},
2978
+ "type": {
2979
+ "const": "youtube",
2980
+ "type": "string"
2981
+ }
2982
+ },
2983
+ "required": [
2984
+ "type"
2985
+ ],
2986
+ "type": "object"
2987
+ },
2988
+ "YoutubePublishStatsRecord": {
2989
+ "additionalProperties": false,
2990
+ "properties": {
2991
+ "defaults": {
2992
+ "$ref": "#/definitions/Record<string,unknown>"
2993
+ },
2994
+ "messages": {
2995
+ "items": {
2996
+ "$ref": "#/definitions/Message"
2997
+ },
2998
+ "type": "array"
2999
+ },
3000
+ "retrieved": {
3001
+ "$ref": "#/definitions/Record<string,unknown>"
3002
+ },
3003
+ "status": {
3004
+ "type": "string"
3005
+ },
3006
+ "substatus": {
3007
+ "type": "string"
3008
+ }
3009
+ },
3010
+ "type": "object"
3011
+ }
3012
+ }
3013
+ }
3014
+