@nxtedition/types 23.0.31 → 23.0.33

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/schema.json CHANGED
@@ -1335,7 +1335,7 @@
1335
1335
  "$ref": "#/definitions/SearchRecord"
1336
1336
  },
1337
1337
  ":settings": {
1338
- "$ref": "#/definitions/PartialObjectDeep<Settings,{}>"
1338
+ "$ref": "#/definitions/Settings"
1339
1339
  },
1340
1340
  ":storyboard": {
1341
1341
  "$ref": "#/definitions/Record<string,unknown>"
@@ -1585,6 +1585,10 @@
1585
1585
  "DownloadFileOptions": {
1586
1586
  "additionalProperties": false,
1587
1587
  "properties": {
1588
+ "collisionPostfix": {
1589
+ "description": "If true, a postfix like (1), (2), etc. will be added to the filename in\ncase a file with the requested name already exists.",
1590
+ "type": "boolean"
1591
+ },
1588
1592
  "directory": {
1589
1593
  "type": "string"
1590
1594
  },
@@ -1609,6 +1613,52 @@
1609
1613
  ],
1610
1614
  "type": "object"
1611
1615
  },
1616
+ "DownloadMessage": {
1617
+ "additionalProperties": false,
1618
+ "properties": {
1619
+ "bytes": {
1620
+ "type": "number"
1621
+ },
1622
+ "done": {
1623
+ "type": "boolean"
1624
+ },
1625
+ "id": {
1626
+ "type": "string"
1627
+ },
1628
+ "savePath": {
1629
+ "type": "string"
1630
+ },
1631
+ "size": {
1632
+ "type": "number"
1633
+ },
1634
+ "state": {
1635
+ "enum": [
1636
+ "cancelled",
1637
+ "completed",
1638
+ "interrupted",
1639
+ "progressing"
1640
+ ],
1641
+ "type": "string"
1642
+ },
1643
+ "title": {
1644
+ "type": "string"
1645
+ },
1646
+ "type": {
1647
+ "const": "download",
1648
+ "type": "string"
1649
+ }
1650
+ },
1651
+ "required": [
1652
+ "bytes",
1653
+ "id",
1654
+ "savePath",
1655
+ "size",
1656
+ "state",
1657
+ "title",
1658
+ "type"
1659
+ ],
1660
+ "type": "object"
1661
+ },
1612
1662
  "Dynamic": {
1613
1663
  "anyOf": [
1614
1664
  {
@@ -1800,7 +1850,7 @@
1800
1850
  "type": "string"
1801
1851
  },
1802
1852
  "styleOverrides": {
1803
- "$ref": "#/definitions/EventSubtitleStyle"
1853
+ "$ref": "#/definitions/SubtitleEventStyleOverrides"
1804
1854
  },
1805
1855
  "text": {
1806
1856
  "type": "string"
@@ -1808,16 +1858,6 @@
1808
1858
  },
1809
1859
  "type": "object"
1810
1860
  },
1811
- "EventSubtitleStyle": {
1812
- "additionalProperties": false,
1813
- "properties": {
1814
- "alignment": {
1815
- "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",
1816
- "type": "string"
1817
- }
1818
- },
1819
- "type": "object"
1820
- },
1821
1861
  "FacebookConnectionRecord": {
1822
1862
  "additionalProperties": false,
1823
1863
  "properties": {
@@ -3213,8 +3253,10 @@
3213
3253
  },
3214
3254
  "GeneralTagsRecord": {
3215
3255
  "additionalProperties": false,
3256
+ "description": "Record holding manually added tags",
3216
3257
  "properties": {
3217
3258
  "value": {
3259
+ "description": "Manually added tags",
3218
3260
  "items": {
3219
3261
  "type": "string"
3220
3262
  },
@@ -3248,6 +3290,21 @@
3248
3290
  "additionalProperties": false,
3249
3291
  "type": "object"
3250
3292
  },
3293
+ "KeymapSetting": {
3294
+ "additionalProperties": false,
3295
+ "properties": {
3296
+ "sequence": {
3297
+ "type": "string"
3298
+ },
3299
+ "title": {
3300
+ "type": "string"
3301
+ }
3302
+ },
3303
+ "required": [
3304
+ "title"
3305
+ ],
3306
+ "type": "object"
3307
+ },
3251
3308
  "LayoutWidget": {
3252
3309
  "anyOf": [
3253
3310
  {
@@ -3300,8 +3357,20 @@
3300
3357
  "live": {
3301
3358
  "type": "boolean"
3302
3359
  },
3360
+ "subtitle": {
3361
+ "additionalProperties": false,
3362
+ "properties": {
3363
+ "codec": {
3364
+ "type": "string"
3365
+ }
3366
+ },
3367
+ "type": "object"
3368
+ },
3303
3369
  "type": {
3304
3370
  "$ref": "#/definitions/MediaType"
3371
+ },
3372
+ "url": {
3373
+ "type": "string"
3305
3374
  }
3306
3375
  },
3307
3376
  "required": [
@@ -3422,6 +3491,32 @@
3422
3491
  ],
3423
3492
  "type": "object"
3424
3493
  },
3494
+ "ModuleTabs": {
3495
+ "additionalProperties": {
3496
+ "$ref": "#/definitions/ModuleTabsSettingsValue"
3497
+ },
3498
+ "properties": {
3499
+ "settingsPanelStore": {
3500
+ "$ref": "#/definitions/SettingsPanelStoreTab"
3501
+ }
3502
+ },
3503
+ "required": [
3504
+ "settingsPanelStore"
3505
+ ],
3506
+ "type": "object"
3507
+ },
3508
+ "ModuleTabsSettingsValue": {
3509
+ "additionalProperties": false,
3510
+ "properties": {
3511
+ "activeTab": {
3512
+ "type": "string"
3513
+ }
3514
+ },
3515
+ "required": [
3516
+ "activeTab"
3517
+ ],
3518
+ "type": "object"
3519
+ },
3425
3520
  "MoveOperation": {
3426
3521
  "additionalProperties": false,
3427
3522
  "properties": {
@@ -3929,6 +4024,81 @@
3929
4024
  }
3930
4025
  ]
3931
4026
  },
4027
+ "Omit<SubtitleStyleDomainRecord,\"scaledBorderAndShadow\"|\"futureWordWrapping\">": {
4028
+ "additionalProperties": false,
4029
+ "properties": {
4030
+ "alignment": {
4031
+ "type": "string"
4032
+ },
4033
+ "angle": {
4034
+ "type": "string"
4035
+ },
4036
+ "backColour": {
4037
+ "type": "string"
4038
+ },
4039
+ "bold": {
4040
+ "type": "string"
4041
+ },
4042
+ "borderStyle": {
4043
+ "type": "string"
4044
+ },
4045
+ "encoding": {
4046
+ "type": "string"
4047
+ },
4048
+ "fontname": {
4049
+ "type": "string"
4050
+ },
4051
+ "fontsize": {
4052
+ "type": "string"
4053
+ },
4054
+ "italic": {
4055
+ "type": "string"
4056
+ },
4057
+ "marginL": {
4058
+ "type": "string"
4059
+ },
4060
+ "marginR": {
4061
+ "type": "string"
4062
+ },
4063
+ "marginV": {
4064
+ "type": "string"
4065
+ },
4066
+ "name": {
4067
+ "type": "string"
4068
+ },
4069
+ "outline": {
4070
+ "type": "string"
4071
+ },
4072
+ "outlineColour": {
4073
+ "type": "string"
4074
+ },
4075
+ "primaryColour": {
4076
+ "type": "string"
4077
+ },
4078
+ "scaleX": {
4079
+ "type": "string"
4080
+ },
4081
+ "scaleY": {
4082
+ "type": "string"
4083
+ },
4084
+ "secondaryColour": {
4085
+ "type": "string"
4086
+ },
4087
+ "shadow": {
4088
+ "type": "string"
4089
+ },
4090
+ "spacing": {
4091
+ "type": "string"
4092
+ },
4093
+ "strikeOut": {
4094
+ "type": "string"
4095
+ },
4096
+ "underline": {
4097
+ "type": "string"
4098
+ }
4099
+ },
4100
+ "type": "object"
4101
+ },
3932
4102
  "OpenDialogOptions": {
3933
4103
  "additionalProperties": false,
3934
4104
  "properties": {
@@ -4190,1182 +4360,975 @@
4190
4360
  ],
4191
4361
  "type": "object"
4192
4362
  },
4193
- "PartialObjectDeep<ModuleTabs,{}>": {
4363
+ "PermissionRecordPermisson": {
4364
+ "anyOf": [
4365
+ {
4366
+ "$ref": "#/definitions/TagPermission"
4367
+ },
4368
+ {
4369
+ "$ref": "#/definitions/AssetPermission"
4370
+ },
4371
+ {
4372
+ "$ref": "#/definitions/RpcPermission"
4373
+ }
4374
+ ]
4375
+ },
4376
+ "PipelineDomainItemsRecord": {
4194
4377
  "additionalProperties": false,
4195
- "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
4196
4378
  "properties": {
4197
- "settingsPanelStore": {
4198
- "$ref": "#/definitions/PartialObjectDeep<SettingsPanelStoreTab,{}>"
4379
+ "value": {
4380
+ "items": {
4381
+ "type": "string"
4382
+ },
4383
+ "type": "array"
4199
4384
  }
4200
4385
  },
4201
4386
  "type": "object"
4202
4387
  },
4203
- "PartialObjectDeep<Settings,{}>": {
4388
+ "PipelineDomainRecord": {
4204
4389
  "additionalProperties": false,
4205
- "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
4206
4390
  "properties": {
4207
- "assignees": {
4208
- "$ref": "#/definitions/PartialObjectDeep<{include:string[];exclude?:string[];},{}>_1"
4209
- },
4210
- "autoLogoutTime": {
4211
- "type": "number"
4212
- },
4213
- "browser": {
4214
- "$ref": "#/definitions/PartialObjectDeep<{map:{clustering?:boolean;zoom?:number;center?:{lat:number;lon:number;};};createMenu:{sortOrder:string[];};},{}>"
4215
- },
4216
- "clock": {
4217
- "$ref": "#/definitions/PartialObjectDeep<{enable:boolean;show24Hours:boolean;showAmPm:boolean;showSeconds:boolean;showDayOfWeek:boolean;showDate:boolean;format?:string;},{}>"
4218
- },
4219
- "commands": {
4220
- "items": {
4221
- "additionalProperties": false,
4222
- "properties": {
4223
- "args": {
4224
- "items": {
4225
- "type": "string"
4226
- },
4227
- "type": "array"
4228
- },
4229
- "command": {
4230
- "type": "string"
4231
- },
4232
- "title": {
4233
- "type": "string"
4234
- }
4235
- },
4236
- "required": [
4237
- "title"
4238
- ],
4239
- "type": "object"
4240
- },
4241
- "type": "array"
4242
- },
4243
- "comments": {
4244
- "$ref": "#/definitions/PartialObjectDeep<{include?:string[];exclude?:string[];},{}>"
4245
- },
4246
- "crashScreen": {
4247
- "type": "boolean"
4391
+ "assetType": {
4392
+ "enum": [
4393
+ "collection",
4394
+ "pipeline"
4395
+ ],
4396
+ "type": "string"
4248
4397
  },
4249
- "dashboard": {
4250
- "$ref": "#/definitions/PartialObjectDeep<{maxMru:number;maxTabs:number;},{}>"
4398
+ "bookmarkId": {
4399
+ "type": "string"
4251
4400
  },
4252
- "deadlines": {
4253
- "$ref": "#/definitions/PartialObjectDeep<{include:string[];exclude?:string[];},{}>"
4401
+ "color": {
4402
+ "type": "string"
4254
4403
  },
4255
- "debug": {
4404
+ "dummy": {
4256
4405
  "type": "boolean"
4257
4406
  },
4258
- "edit": {
4259
- "$ref": "#/definitions/PartialObjectDeep<{thumbnailView:\"none\"|\"filmStrip\"|\"thumbnail\";voiceOver:{inputDevice?:string;inputGainDb:number;backgroundReductionDb:number;recordMode:\"instant\"|\"punchAndRoll\";preRollDuration:number;};},{}>"
4407
+ "hiddenCreateMenuItems": {
4408
+ "$ref": "#/definitions/Record<string,unknown>"
4260
4409
  },
4261
- "events": {
4262
- "$ref": "#/definitions/PartialObjectDeep<{graphicBaseTemplate?:string;},{}>"
4410
+ "preset": {
4411
+ "type": "string"
4263
4412
  },
4264
- "exclusiveTagGroups": {
4265
- "description": "Controls which tags cannot be used together. When a tag from the group is\nmanually added to an asset, any other tag from the group will be removed.",
4413
+ "tags": {
4266
4414
  "items": {
4267
- "items": {
4268
- "type": "string"
4269
- },
4270
- "type": "array"
4415
+ "type": "string"
4271
4416
  },
4272
4417
  "type": "array"
4273
4418
  },
4274
- "featurePreview": {
4275
- "$ref": "#/definitions/PartialObjectDeep<{collections?:boolean;semanticSearch?:boolean;},{}>"
4276
- },
4277
- "flags": {
4278
- "$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;devWarnings?:boolean;},{}>"
4279
- },
4280
- "gallery": {
4281
- "$ref": "#/definitions/PartialObjectDeep<{dimOnBlur:boolean;},{}>"
4282
- },
4283
- "hiddenPreviews": {
4284
- "items": {
4285
- "additionalProperties": false,
4286
- "properties": {
4287
- "folded": {
4288
- "type": "boolean"
4289
- },
4290
- "id": {
4291
- "type": "string"
4292
- }
4293
- },
4294
- "required": [
4295
- "folded",
4296
- "id"
4297
- ],
4298
- "type": "object"
4419
+ "type": {
4420
+ "type": "string"
4421
+ }
4422
+ },
4423
+ "type": "object"
4424
+ },
4425
+ "PipelinePresetDomainRecord": {
4426
+ "additionalProperties": false,
4427
+ "properties": {
4428
+ "color": {
4429
+ "type": "string"
4430
+ },
4431
+ "createMenuItems": {
4432
+ "items": {
4433
+ "type": "string"
4299
4434
  },
4300
4435
  "type": "array"
4301
4436
  },
4302
- "history": {
4303
- "type": "boolean"
4304
- },
4305
- "keymap": {
4306
- "$ref": "#/definitions/PartialObjectDeep<{display:{[actionKey:string]:KeymapSetting;};browser:{[actionKey:string]:KeymapSetting;};gallery:{[actionKey:string]:KeymapSetting;};global:{[actionKey:string]:KeymapSetting;};player:{[actionKey:string]:KeymapSetting;};script:{[actionKey:string]:KeymapSetting;};codeEditor:{[actionKey:string]:KeymapSetting;};bookmarks:{[actionKey:string]:KeymapSetting;};edit:{[actionKey:string]:KeymapSetting;};rundown:{[actionKey:string]:KeymapSetting;};segment:{[actionKey:string]:KeymapSetting;};},{}>"
4307
- },
4308
- "media": {
4309
- "$ref": "#/definitions/PartialObjectDeep<{defaultFrameRate:number;placeholder?:string;guide?:{mask?:boolean;actionSafe?:boolean;titleSafe?: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;editMode:{enabled:boolean;defaultEnterOption:\"none\"|\"edit\"|\"createNew\";defaultExitOption:\"none\"|\"update\"|\"leave\";};transcribe?:{subtitleDisclaimer?:{isUserConfigurable?:boolean;defaultValue?:{enabled?:false;text?:{language:string;value:string;}[];offset?:number;duration?:number;};};};openCommand?:string|{url?:string;command?:string;app?:string;args?:string[];};},{}>"
4310
- },
4311
- "module": {
4312
- "$ref": "#/definitions/PartialObjectDeep<{tabs?:ModuleTabs;},{}>"
4313
- },
4314
- "notifications": {
4315
- "$ref": "#/definitions/PartialObjectDeep<{events:{comment:NotificationReason[];assigned:NotificationReason[];unassigned:NotificationReason[];publishSucceeded:{[connectionId:string]:NotificationReason[];};};},{}>"
4316
- },
4317
- "permission": {
4318
- "$ref": "#/definitions/PartialObjectDeep<{overrideUserContact:boolean;overrideUserLogin:boolean;},{}>"
4319
- },
4320
- "plugins": {
4321
- "$ref": "#/definitions/PartialObjectDeep<{adobe:{useProxies:boolean;};rive?:{template?:string;};},{}>"
4437
+ "sortMode": {
4438
+ "$ref": "#/definitions/PipelineSortMode"
4322
4439
  },
4323
- "predefinedTags": {
4440
+ "tags": {
4324
4441
  "items": {
4325
4442
  "type": "string"
4326
4443
  },
4327
4444
  "type": "array"
4328
- },
4329
- "rundown": {
4330
- "$ref": "#/definitions/PartialObjectDeep<{eventThumbnails:boolean;},{}>"
4331
- },
4332
- "script": {
4333
- "$ref": "#/definitions/PartialObjectDeep<{createMenu:{showPreview:boolean;};colorTags:PromotedTag[];},{}>"
4334
- },
4335
- "storyboard": {
4336
- "$ref": "#/definitions/PartialObjectDeep<{folded?:{auto?:boolean;};assets:{story:{excerpt:{maxLines:number;mode:string;};};note?:{maxHeight?:number;};};pipeline:{search:{maxItemsDisplayed:number;};sortMode:PipelineSortMode;};item:{maxHeight:number;};},{}>"
4337
- },
4338
- "suppressDeleteAlert": {
4339
- "type": "boolean"
4340
- },
4341
- "swarm": {
4342
- "$ref": "#/definitions/PartialObjectDeep<{color?:string;name?:string;},{}>"
4343
- },
4344
- "toolbarTags": {
4345
- "$ref": "#/definitions/PartialObjectDeep<{exclude:string[];},{}>"
4346
- },
4347
- "upload": {
4348
- "$ref": "#/definitions/PartialObjectDeep<{defaultGrouping?:\"\"|\"collection\"|\"stitch\";hideStoryboardCollection?:boolean;displayUploadFilesDialog?:\"always\"|\"never\"|\"ifMultipleFiles\";},{}>"
4349
4445
  }
4350
4446
  },
4351
4447
  "type": "object"
4352
4448
  },
4353
- "PartialObjectDeep<SettingsPanelStoreTab,{}>": {
4449
+ "PipelineSortMode": {
4450
+ "enum": [
4451
+ "az",
4452
+ "default",
4453
+ "earliestdeadline",
4454
+ "latestdeadline",
4455
+ "leastrecent",
4456
+ "manual",
4457
+ "mostrecent",
4458
+ "newest",
4459
+ "oldest",
4460
+ "za"
4461
+ ],
4462
+ "type": "string"
4463
+ },
4464
+ "PlanningAssigneesRecord": {
4354
4465
  "additionalProperties": false,
4355
- "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
4356
4466
  "properties": {
4357
- "activeSectionIndex": {
4358
- "type": "number"
4359
- },
4360
- "activeTab": {
4361
- "type": "string"
4467
+ "value": {
4468
+ "items": {
4469
+ "type": "string"
4470
+ },
4471
+ "type": "array"
4362
4472
  }
4363
4473
  },
4364
4474
  "type": "object"
4365
4475
  },
4366
- "PartialObjectDeep<{[actionKey:string]:KeymapSetting;},{}>": {
4367
- "additionalProperties": false,
4368
- "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
4369
- "type": "object"
4370
- },
4371
- "PartialObjectDeep<{[actionKey:string]:KeymapSetting;},{}>_1": {
4372
- "additionalProperties": false,
4373
- "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
4374
- "type": "object"
4375
- },
4376
- "PartialObjectDeep<{[actionKey:string]:KeymapSetting;},{}>_10": {
4377
- "additionalProperties": false,
4378
- "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
4379
- "type": "object"
4380
- },
4381
- "PartialObjectDeep<{[actionKey:string]:KeymapSetting;},{}>_2": {
4382
- "additionalProperties": false,
4383
- "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
4384
- "type": "object"
4385
- },
4386
- "PartialObjectDeep<{[actionKey:string]:KeymapSetting;},{}>_3": {
4387
- "additionalProperties": false,
4388
- "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
4389
- "type": "object"
4390
- },
4391
- "PartialObjectDeep<{[actionKey:string]:KeymapSetting;},{}>_4": {
4392
- "additionalProperties": false,
4393
- "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
4394
- "type": "object"
4395
- },
4396
- "PartialObjectDeep<{[actionKey:string]:KeymapSetting;},{}>_5": {
4397
- "additionalProperties": false,
4398
- "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
4399
- "type": "object"
4400
- },
4401
- "PartialObjectDeep<{[actionKey:string]:KeymapSetting;},{}>_6": {
4402
- "additionalProperties": false,
4403
- "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
4404
- "type": "object"
4405
- },
4406
- "PartialObjectDeep<{[actionKey:string]:KeymapSetting;},{}>_7": {
4407
- "additionalProperties": false,
4408
- "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
4409
- "type": "object"
4410
- },
4411
- "PartialObjectDeep<{[actionKey:string]:KeymapSetting;},{}>_8": {
4412
- "additionalProperties": false,
4413
- "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
4414
- "type": "object"
4415
- },
4416
- "PartialObjectDeep<{[actionKey:string]:KeymapSetting;},{}>_9": {
4417
- "additionalProperties": false,
4418
- "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
4419
- "type": "object"
4420
- },
4421
- "PartialObjectDeep<{[connectionId:string]:NotificationReason[];},{}>": {
4422
- "additionalProperties": false,
4423
- "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
4424
- "type": "object"
4425
- },
4426
- "PartialObjectDeep<{adobe:{useProxies:boolean;};rive?:{template?:string;};},{}>": {
4476
+ "PlanningDeadlineRecord": {
4427
4477
  "additionalProperties": false,
4428
- "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
4429
4478
  "properties": {
4430
- "adobe": {
4431
- "$ref": "#/definitions/PartialObjectDeep<{useProxies:boolean;},{}>"
4432
- },
4433
- "rive": {
4434
- "$ref": "#/definitions/PartialObjectDeep<{template?:string;},{}>"
4479
+ "value": {
4480
+ "type": "string"
4435
4481
  }
4436
4482
  },
4483
+ "required": [
4484
+ "value"
4485
+ ],
4437
4486
  "type": "object"
4438
4487
  },
4439
- "PartialObjectDeep<{auto?:boolean;},{}>": {
4488
+ "PlanningRecord": {
4440
4489
  "additionalProperties": false,
4441
- "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
4442
4490
  "properties": {
4443
- "auto": {
4444
- "type": "boolean"
4491
+ "deadline": {
4492
+ "type": "string"
4445
4493
  }
4446
4494
  },
4447
4495
  "type": "object"
4448
4496
  },
4449
- "PartialObjectDeep<{clustering?:boolean;zoom?:number;center?:{lat:number;lon:number;};},{}>": {
4497
+ "PromotedTag": {
4450
4498
  "additionalProperties": false,
4451
- "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
4452
4499
  "properties": {
4453
- "center": {
4454
- "$ref": "#/definitions/PartialObjectDeep<{lat:number;lon:number;},{}>"
4500
+ "color": {
4501
+ "type": "string"
4455
4502
  },
4456
- "clustering": {
4457
- "type": "boolean"
4503
+ "description": {
4504
+ "type": "string"
4458
4505
  },
4459
- "zoom": {
4460
- "type": "number"
4506
+ "icon": {
4507
+ "type": "string"
4508
+ },
4509
+ "name": {
4510
+ "type": "string"
4461
4511
  }
4462
4512
  },
4513
+ "required": [
4514
+ "color",
4515
+ "description",
4516
+ "icon",
4517
+ "name"
4518
+ ],
4463
4519
  "type": "object"
4464
4520
  },
4465
- "PartialObjectDeep<{collections?:boolean;semanticSearch?:boolean;},{}>": {
4521
+ "ProvidedPermissionRecord": {
4466
4522
  "additionalProperties": false,
4467
- "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
4468
4523
  "properties": {
4469
- "collections": {
4470
- "type": "boolean"
4471
- },
4472
- "semanticSearch": {
4473
- "type": "boolean"
4524
+ "permissions": {
4525
+ "items": {
4526
+ "$ref": "#/definitions/PermissionRecordPermisson"
4527
+ },
4528
+ "type": "array"
4474
4529
  }
4475
4530
  },
4531
+ "required": [
4532
+ "permissions"
4533
+ ],
4476
4534
  "type": "object"
4477
4535
  },
4478
- "PartialObjectDeep<{color?:string;name?:string;},{}>": {
4536
+ "PublishDomainAcceptsProvidedRecord": {
4479
4537
  "additionalProperties": false,
4480
- "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
4481
4538
  "properties": {
4482
- "color": {
4483
- "type": "string"
4484
- },
4485
- "name": {
4486
- "type": "string"
4487
- }
4539
+ "value": {}
4488
4540
  },
4489
4541
  "type": "object"
4490
4542
  },
4491
- "PartialObjectDeep<{comment:NotificationReason[];assigned:NotificationReason[];unassigned:NotificationReason[];publishSucceeded:{[connectionId:string]:NotificationReason[];};},{}>": {
4543
+ "PublishRecord": {
4544
+ "anyOf": [
4545
+ {
4546
+ "$ref": "#/definitions/YoutubePublishRecord"
4547
+ },
4548
+ {
4549
+ "$ref": "#/definitions/FacebookPublishRecord"
4550
+ },
4551
+ {
4552
+ "$ref": "#/definitions/FilePublishRecord"
4553
+ },
4554
+ {
4555
+ "$ref": "#/definitions/FilePublishRecordLegacy"
4556
+ }
4557
+ ]
4558
+ },
4559
+ "PublishRender": {
4492
4560
  "additionalProperties": false,
4493
- "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
4561
+ "description": "render preset + overrides",
4494
4562
  "properties": {
4495
- "assigned": {
4496
- "items": {
4497
- "$ref": "#/definitions/NotificationReason"
4498
- },
4499
- "type": "array"
4563
+ "preset": {
4564
+ "type": "string"
4500
4565
  },
4501
- "comment": {
4502
- "items": {
4503
- "$ref": "#/definitions/NotificationReason"
4504
- },
4505
- "type": "array"
4566
+ "profile": {
4567
+ "$ref": "#/definitions/RenderProfileObject"
4506
4568
  },
4507
- "publishSucceeded": {
4508
- "$ref": "#/definitions/PartialObjectDeep<{[connectionId:string]:NotificationReason[];},{}>"
4569
+ "scene": {
4570
+ "$ref": "#/definitions/RenderSceneObject"
4509
4571
  },
4510
- "unassigned": {
4511
- "items": {
4512
- "$ref": "#/definitions/NotificationReason"
4513
- },
4514
- "type": "array"
4572
+ "type": {
4573
+ "type": "string"
4515
4574
  }
4516
4575
  },
4576
+ "required": [
4577
+ "type"
4578
+ ],
4517
4579
  "type": "object"
4518
4580
  },
4519
- "PartialObjectDeep<{createMenu:{showPreview:boolean;};colorTags:PromotedTag[];},{}>": {
4581
+ "PublishStatsRecord": {
4582
+ "anyOf": [
4583
+ {
4584
+ "$ref": "#/definitions/YoutubePublishStatsRecord"
4585
+ },
4586
+ {
4587
+ "$ref": "#/definitions/FacebookPublishStatsRecord"
4588
+ },
4589
+ {
4590
+ "$ref": "#/definitions/FilePublishStatsRecord"
4591
+ }
4592
+ ]
4593
+ },
4594
+ "PublishedRecord": {
4520
4595
  "additionalProperties": false,
4521
- "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
4522
4596
  "properties": {
4523
- "colorTags": {
4597
+ "asset": {
4524
4598
  "items": {
4525
- "$ref": "#/definitions/PromotedTag"
4599
+ "type": "string"
4526
4600
  },
4527
4601
  "type": "array"
4528
4602
  },
4529
- "createMenu": {
4530
- "$ref": "#/definitions/PartialObjectDeep<{showPreview:boolean;},{}>"
4531
- }
4532
- },
4533
- "type": "object"
4534
- },
4535
- "PartialObjectDeep<{defaultFrameRate:number;placeholder?:string;guide?:{mask?:boolean;actionSafe?:boolean;titleSafe?: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;editMode:{enabled:boolean;defaultEnterOption:\"none\"|\"edit\"|\"createNew\";defaultExitOption:\"none\"|\"update\"|\"leave\";};transcribe?:{subtitleDisclaimer?:{isUserConfigurable?:boolean;defaultValue?:{enabled?:false;text?:{language:string;value:string;}[];offset?:number;duration?:number;};};};openCommand?:string|{url?:string;command?:string;app?:string;args?:string[];};},{}>": {
4536
- "additionalProperties": false,
4537
- "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
4538
- "properties": {
4539
- "defaultFrameRate": {
4540
- "type": "number"
4603
+ "connection": {
4604
+ "type": "string"
4541
4605
  },
4542
- "download": {
4606
+ "error": {
4543
4607
  "type": "boolean"
4544
4608
  },
4545
- "editMode": {
4546
- "$ref": "#/definitions/PartialObjectDeep<{enabled:boolean;defaultEnterOption:\"none\"|\"edit\"|\"createNew\";defaultExitOption:\"none\"|\"update\"|\"leave\";},{}>"
4609
+ "parent": {
4610
+ "type": "string"
4547
4611
  },
4548
- "forwardStep": {
4612
+ "time": {
4549
4613
  "type": "number"
4550
4614
  },
4551
- "guide": {
4552
- "$ref": "#/definitions/PartialObjectDeep<{mask?:boolean;actionSafe?:boolean;titleSafe?:boolean;},{}>"
4615
+ "type": {
4616
+ "type": "string"
4553
4617
  },
4554
- "guides": {
4555
- "items": {
4556
- "additionalProperties": false,
4557
- "properties": {
4558
- "aspectRatio": {
4559
- "type": "string"
4560
- },
4561
- "label": {
4562
- "type": "string"
4563
- }
4564
- },
4565
- "required": [
4566
- "aspectRatio",
4567
- "label"
4568
- ],
4569
- "type": "object"
4570
- },
4571
- "type": "array"
4572
- },
4573
- "importTitleTemplate": {
4574
- "type": "string"
4575
- },
4576
- "initialVolume": {
4577
- "type": "string"
4578
- },
4579
- "interlacedPlayback": {
4580
- "type": "string"
4581
- },
4582
- "liveZoomDuration": {
4583
- "type": "number"
4584
- },
4585
- "maxSubclipDuration": {
4586
- "type": "number"
4587
- },
4588
- "openCommand": {
4589
- "anyOf": [
4590
- {
4591
- "$ref": "#/definitions/PartialObjectDeep<{url?:string;command?:string;app?:string;args?:string[];},{}>",
4592
- "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`."
4593
- },
4594
- {
4595
- "type": "string"
4596
- }
4597
- ]
4598
- },
4599
- "placeholder": {
4600
- "type": "string"
4601
- },
4602
- "playbackRates": {
4603
- "items": {
4604
- "type": "number"
4605
- },
4606
- "type": "array"
4607
- },
4608
- "rewindStep": {
4609
- "type": "number"
4610
- },
4611
- "stepManyFrames": {
4612
- "type": "number"
4613
- },
4614
- "subtitleTemplateId": {
4615
- "type": "string"
4616
- },
4617
- "subtitles": {
4618
- "$ref": "#/definitions/PartialObjectDeep<{spacing:number;maxCharactersPerLine:number;},{}>"
4619
- },
4620
- "tile": {
4621
- "$ref": "#/definitions/PartialObjectDeep<{preview:boolean|\"play\"|\"seek\"|\"disabled\"|\"seekplay\";showRenderProgress:boolean;},{}>"
4622
- },
4623
- "timecodeReference": {
4624
- "type": "string"
4625
- },
4626
- "transcribe": {
4627
- "$ref": "#/definitions/PartialObjectDeep<{subtitleDisclaimer?:{isUserConfigurable?:boolean;defaultValue?:{enabled?:false;text?:{language:string;value:string;}[];offset?:number;duration?:number;};};},{}>"
4628
- }
4629
- },
4630
- "type": "object"
4631
- },
4632
- "PartialObjectDeep<{defaultGrouping?:\"\"|\"collection\"|\"stitch\";hideStoryboardCollection?:boolean;displayUploadFilesDialog?:\"always\"|\"never\"|\"ifMultipleFiles\";},{}>": {
4633
- "additionalProperties": false,
4634
- "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
4635
- "properties": {
4636
- "defaultGrouping": {
4637
- "enum": [
4638
- "",
4639
- "collection",
4640
- "stitch"
4641
- ],
4642
- "type": "string"
4643
- },
4644
- "displayUploadFilesDialog": {
4645
- "enum": [
4646
- "always",
4647
- "ifMultipleFiles",
4648
- "never"
4649
- ],
4618
+ "user": {
4650
4619
  "type": "string"
4651
- },
4652
- "hideStoryboardCollection": {
4653
- "type": "boolean"
4654
4620
  }
4655
4621
  },
4622
+ "required": [
4623
+ "asset",
4624
+ "connection",
4625
+ "parent",
4626
+ "time",
4627
+ "type"
4628
+ ],
4656
4629
  "type": "object"
4657
4630
  },
4658
- "PartialObjectDeep<{dimOnBlur:boolean;},{}>": {
4631
+ "Record<string,FilePublishRemoteRender>": {
4659
4632
  "additionalProperties": false,
4660
- "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
4661
- "properties": {
4662
- "dimOnBlur": {
4663
- "type": "boolean"
4664
- }
4665
- },
4666
4633
  "type": "object"
4667
4634
  },
4668
- "PartialObjectDeep<{display:{[actionKey:string]:KeymapSetting;};browser:{[actionKey:string]:KeymapSetting;};gallery:{[actionKey:string]:KeymapSetting;};global:{[actionKey:string]:KeymapSetting;};player:{[actionKey:string]:KeymapSetting;};script:{[actionKey:string]:KeymapSetting;};codeEditor:{[actionKey:string]:KeymapSetting;};bookmarks:{[actionKey:string]:KeymapSetting;};edit:{[actionKey:string]:KeymapSetting;};rundown:{[actionKey:string]:KeymapSetting;};segment:{[actionKey:string]:KeymapSetting;};},{}>": {
4635
+ "Record<string,FilePublishRender>": {
4669
4636
  "additionalProperties": false,
4670
- "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
4671
- "properties": {
4672
- "bookmarks": {
4673
- "$ref": "#/definitions/PartialObjectDeep<{[actionKey:string]:KeymapSetting;},{}>_7"
4674
- },
4675
- "browser": {
4676
- "$ref": "#/definitions/PartialObjectDeep<{[actionKey:string]:KeymapSetting;},{}>_1"
4677
- },
4678
- "codeEditor": {
4679
- "$ref": "#/definitions/PartialObjectDeep<{[actionKey:string]:KeymapSetting;},{}>_6"
4680
- },
4681
- "display": {
4682
- "$ref": "#/definitions/PartialObjectDeep<{[actionKey:string]:KeymapSetting;},{}>"
4683
- },
4684
- "edit": {
4685
- "$ref": "#/definitions/PartialObjectDeep<{[actionKey:string]:KeymapSetting;},{}>_8"
4686
- },
4687
- "gallery": {
4688
- "$ref": "#/definitions/PartialObjectDeep<{[actionKey:string]:KeymapSetting;},{}>_2"
4689
- },
4690
- "global": {
4691
- "$ref": "#/definitions/PartialObjectDeep<{[actionKey:string]:KeymapSetting;},{}>_3"
4692
- },
4693
- "player": {
4694
- "$ref": "#/definitions/PartialObjectDeep<{[actionKey:string]:KeymapSetting;},{}>_4"
4695
- },
4696
- "rundown": {
4697
- "$ref": "#/definitions/PartialObjectDeep<{[actionKey:string]:KeymapSetting;},{}>_9"
4698
- },
4699
- "script": {
4700
- "$ref": "#/definitions/PartialObjectDeep<{[actionKey:string]:KeymapSetting;},{}>_5"
4701
- },
4702
- "segment": {
4703
- "$ref": "#/definitions/PartialObjectDeep<{[actionKey:string]:KeymapSetting;},{}>_10"
4704
- }
4705
- },
4706
4637
  "type": "object"
4707
4638
  },
4708
- "PartialObjectDeep<{enable:boolean;show24Hours:boolean;showAmPm:boolean;showSeconds:boolean;showDayOfWeek:boolean;showDate:boolean;format?:string;},{}>": {
4639
+ "Record<string,FilePublishRetrievedRender>": {
4709
4640
  "additionalProperties": false,
4710
- "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
4711
- "properties": {
4712
- "enable": {
4713
- "type": "boolean"
4714
- },
4715
- "format": {
4716
- "type": "string"
4717
- },
4718
- "show24Hours": {
4719
- "type": "boolean"
4720
- },
4721
- "showAmPm": {
4722
- "type": "boolean"
4723
- },
4724
- "showDate": {
4725
- "type": "boolean"
4726
- },
4727
- "showDayOfWeek": {
4728
- "type": "boolean"
4729
- },
4730
- "showSeconds": {
4731
- "type": "boolean"
4732
- }
4733
- },
4734
4641
  "type": "object"
4735
4642
  },
4736
- "PartialObjectDeep<{enabled:boolean;defaultEnterOption:\"none\"|\"edit\"|\"createNew\";defaultExitOption:\"none\"|\"update\"|\"leave\";},{}>": {
4643
+ "Record<string,TemplateProperty>": {
4737
4644
  "additionalProperties": false,
4738
- "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
4739
- "properties": {
4740
- "defaultEnterOption": {
4741
- "enum": [
4742
- "createNew",
4743
- "edit",
4744
- "none"
4745
- ],
4746
- "type": "string"
4747
- },
4748
- "defaultExitOption": {
4749
- "enum": [
4750
- "leave",
4751
- "none",
4752
- "update"
4753
- ],
4754
- "type": "string"
4755
- },
4756
- "enabled": {
4757
- "type": "boolean"
4758
- }
4759
- },
4760
4645
  "type": "object"
4761
4646
  },
4762
- "PartialObjectDeep<{enabled?:false;text?:{language:string;value:string;}[];offset?:number;duration?:number;},{}>": {
4647
+ "Record<string,object>": {
4763
4648
  "additionalProperties": false,
4764
- "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
4765
- "properties": {
4766
- "duration": {
4767
- "type": "number"
4768
- },
4769
- "enabled": {
4770
- "const": false,
4771
- "type": "boolean"
4772
- },
4773
- "offset": {
4774
- "type": "number"
4775
- },
4776
- "text": {
4777
- "items": {
4778
- "additionalProperties": false,
4779
- "properties": {
4780
- "language": {
4781
- "type": "string"
4782
- },
4783
- "value": {
4784
- "type": "string"
4785
- }
4786
- },
4787
- "required": [
4788
- "language",
4789
- "value"
4790
- ],
4791
- "type": "object"
4792
- },
4793
- "type": "array"
4794
- }
4795
- },
4796
4649
  "type": "object"
4797
4650
  },
4798
- "PartialObjectDeep<{eventThumbnails:boolean;},{}>": {
4651
+ "Record<string,string>": {
4799
4652
  "additionalProperties": false,
4800
- "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
4801
- "properties": {
4802
- "eventThumbnails": {
4803
- "type": "boolean"
4804
- }
4805
- },
4806
4653
  "type": "object"
4807
4654
  },
4808
- "PartialObjectDeep<{events:{comment:NotificationReason[];assigned:NotificationReason[];unassigned:NotificationReason[];publishSucceeded:{[connectionId:string]:NotificationReason[];};};},{}>": {
4655
+ "Record<string,unknown>": {
4809
4656
  "additionalProperties": false,
4810
- "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
4811
- "properties": {
4812
- "events": {
4813
- "$ref": "#/definitions/PartialObjectDeep<{comment:NotificationReason[];assigned:NotificationReason[];unassigned:NotificationReason[];publishSucceeded:{[connectionId:string]:NotificationReason[];};},{}>"
4814
- }
4815
- },
4816
4657
  "type": "object"
4817
4658
  },
4818
- "PartialObjectDeep<{excerpt:{maxLines:number;mode:string;};},{}>": {
4659
+ "Record<string,{rpcId:string;rpcData:Record<string,unknown>;}>": {
4819
4660
  "additionalProperties": false,
4820
- "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
4821
- "properties": {
4822
- "excerpt": {
4823
- "$ref": "#/definitions/PartialObjectDeep<{maxLines:number;mode:string;},{}>"
4824
- }
4825
- },
4826
4661
  "type": "object"
4827
4662
  },
4828
- "PartialObjectDeep<{exclude:string[];},{}>": {
4663
+ "Record<string,{to:{synced?:boolean;since?:string|0;};from:{since?:string|0;};}>": {
4829
4664
  "additionalProperties": false,
4830
- "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
4831
- "properties": {
4832
- "exclude": {
4833
- "items": {
4834
- "type": "string"
4835
- },
4836
- "type": "array"
4837
- }
4838
- },
4839
4665
  "type": "object"
4840
4666
  },
4841
- "PartialObjectDeep<{folded?:{auto?:boolean;};assets:{story:{excerpt:{maxLines:number;mode:string;};};note?:{maxHeight?:number;};};pipeline:{search:{maxItemsDisplayed:number;};sortMode:PipelineSortMode;};item:{maxHeight:number;};},{}>": {
4667
+ "Records": {
4842
4668
  "additionalProperties": false,
4843
- "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
4844
4669
  "properties": {
4845
- "assets": {
4846
- "$ref": "#/definitions/PartialObjectDeep<{story:{excerpt:{maxLines:number;mode:string;};};note?:{maxHeight?:number;};},{}>"
4847
- },
4848
- "folded": {
4849
- "$ref": "#/definitions/PartialObjectDeep<{auto?:boolean;},{}>"
4850
- },
4851
- "item": {
4852
- "$ref": "#/definitions/PartialObjectDeep<{maxHeight:number;},{}>"
4670
+ ":permission": {
4671
+ "$ref": "#/definitions/DomainRows"
4853
4672
  },
4854
- "pipeline": {
4855
- "$ref": "#/definitions/PartialObjectDeep<{search:{maxItemsDisplayed:number;};sortMode:PipelineSortMode;},{}>"
4856
- }
4857
- },
4858
- "type": "object"
4859
- },
4860
- "PartialObjectDeep<{graphicBaseTemplate?:string;},{}>": {
4861
- "additionalProperties": false,
4862
- "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
4863
- "properties": {
4864
- "graphicBaseTemplate": {
4865
- "type": "string"
4866
- }
4867
- },
4868
- "type": "object"
4869
- },
4870
- "PartialObjectDeep<{include:string[];exclude?:string[];},{}>": {
4871
- "additionalProperties": false,
4872
- "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
4873
- "properties": {
4874
- "exclude": {
4875
- "items": {
4876
- "type": "string"
4673
+ "asset-daemon": {
4674
+ "additionalProperties": false,
4675
+ "properties": {
4676
+ "user-notify": {
4677
+ "type": "boolean"
4678
+ }
4877
4679
  },
4878
- "type": "array"
4680
+ "type": "object"
4879
4681
  },
4880
- "include": {
4881
- "items": {
4882
- "type": "string"
4883
- },
4884
- "type": "array"
4885
- }
4886
- },
4887
- "type": "object"
4888
- },
4889
- "PartialObjectDeep<{include:string[];exclude?:string[];},{}>_1": {
4890
- "additionalProperties": false,
4891
- "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
4892
- "properties": {
4893
- "exclude": {
4894
- "items": {
4895
- "type": "string"
4682
+ "asset-daemon:user-notify.state": {
4683
+ "additionalProperties": false,
4684
+ "properties": {
4685
+ "since": {
4686
+ "anyOf": [
4687
+ {
4688
+ "const": 0,
4689
+ "type": "number"
4690
+ },
4691
+ {
4692
+ "type": "string"
4693
+ }
4694
+ ]
4695
+ },
4696
+ "version": {
4697
+ "type": "number"
4698
+ }
4896
4699
  },
4897
- "type": "array"
4700
+ "type": "object"
4898
4701
  },
4899
- "include": {
4900
- "items": {
4901
- "type": "string"
4902
- },
4903
- "type": "array"
4904
- }
4905
- },
4906
- "type": "object"
4907
- },
4908
- "PartialObjectDeep<{include?:string[];exclude?:string[];},{}>": {
4909
- "additionalProperties": false,
4910
- "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
4911
- "properties": {
4912
- "exclude": {
4913
- "items": {
4914
- "type": "string"
4702
+ "asset.assignees": {
4703
+ "additionalProperties": false,
4704
+ "properties": {
4705
+ "dynamic": {
4706
+ "$ref": "#/definitions/Dynamic"
4707
+ },
4708
+ "value": {
4709
+ "$ref": "#/definitions/Nxtpression<string[],{id:string;}>"
4710
+ }
4915
4711
  },
4916
- "type": "array"
4712
+ "type": "object"
4917
4713
  },
4918
- "include": {
4919
- "items": {
4920
- "type": "string"
4921
- },
4922
- "type": "array"
4923
- }
4924
- },
4925
- "type": "object"
4926
- },
4927
- "PartialObjectDeep<{inputDevice?:string;inputGainDb:number;backgroundReductionDb:number;recordMode:\"instant\"|\"punchAndRoll\";preRollDuration:number;},{}>": {
4928
- "additionalProperties": false,
4929
- "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
4930
- "properties": {
4931
- "backgroundReductionDb": {
4932
- "type": "number"
4933
- },
4934
- "inputDevice": {
4935
- "type": "string"
4936
- },
4937
- "inputGainDb": {
4938
- "type": "number"
4939
- },
4940
- "preRollDuration": {
4941
- "type": "number"
4942
- },
4943
- "recordMode": {
4944
- "enum": [
4945
- "instant",
4946
- "punchAndRoll"
4714
+ "asset.clone": {
4715
+ "additionalProperties": false,
4716
+ "properties": {
4717
+ "rules": {
4718
+ "items": {
4719
+ "$ref": "#/definitions/CloneRule"
4720
+ },
4721
+ "type": "array"
4722
+ }
4723
+ },
4724
+ "required": [
4725
+ "rules"
4947
4726
  ],
4948
- "type": "string"
4949
- }
4950
- },
4951
- "type": "object"
4952
- },
4953
- "PartialObjectDeep<{isUserConfigurable?:boolean;defaultValue?:{enabled?:false;text?:{language:string;value:string;}[];offset?:number;duration?:number;};},{}>": {
4954
- "additionalProperties": false,
4955
- "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
4956
- "properties": {
4957
- "defaultValue": {
4958
- "$ref": "#/definitions/PartialObjectDeep<{enabled?:false;text?:{language:string;value:string;}[];offset?:number;duration?:number;},{}>"
4959
- },
4960
- "isUserConfigurable": {
4961
- "type": "boolean"
4962
- }
4963
- },
4964
- "type": "object"
4965
- },
4966
- "PartialObjectDeep<{lat:number;lon:number;},{}>": {
4967
- "additionalProperties": false,
4968
- "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
4969
- "properties": {
4970
- "lat": {
4971
- "type": "number"
4727
+ "type": "object"
4972
4728
  },
4973
- "lon": {
4974
- "type": "number"
4975
- }
4976
- },
4977
- "type": "object"
4978
- },
4979
- "PartialObjectDeep<{map:{clustering?:boolean;zoom?:number;center?:{lat:number;lon:number;};};createMenu:{sortOrder:string[];};},{}>": {
4980
- "additionalProperties": false,
4981
- "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
4982
- "properties": {
4983
- "createMenu": {
4984
- "$ref": "#/definitions/PartialObjectDeep<{sortOrder:string[];},{}>"
4729
+ "asset.deadlines": {
4730
+ "additionalProperties": false,
4731
+ "properties": {
4732
+ "dynamic": {
4733
+ "$ref": "#/definitions/Dynamic"
4734
+ },
4735
+ "value": {
4736
+ "$ref": "#/definitions/Nxtpression<string,{id:string;}>"
4737
+ }
4738
+ },
4739
+ "type": "object"
4985
4740
  },
4986
- "map": {
4987
- "$ref": "#/definitions/PartialObjectDeep<{clustering?:boolean;zoom?:number;center?:{lat:number;lon:number;};},{}>"
4988
- }
4989
- },
4990
- "type": "object"
4991
- },
4992
- "PartialObjectDeep<{mask?:boolean;actionSafe?:boolean;titleSafe?:boolean;},{}>": {
4993
- "additionalProperties": false,
4994
- "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
4995
- "properties": {
4996
- "actionSafe": {
4997
- "type": "boolean"
4741
+ "asset.duration": {
4742
+ "additionalProperties": false,
4743
+ "properties": {
4744
+ "dynamic": {
4745
+ "$ref": "#/definitions/Dynamic"
4746
+ },
4747
+ "value": {
4748
+ "$ref": "#/definitions/Nxtpression<number,{id:string;}>"
4749
+ }
4750
+ },
4751
+ "type": "object"
4998
4752
  },
4999
- "mask": {
5000
- "type": "boolean"
4753
+ "asset.embedding": {
4754
+ "additionalProperties": false,
4755
+ "properties": {
4756
+ "dynamic": {
4757
+ "$ref": "#/definitions/Dynamic"
4758
+ },
4759
+ "value": {
4760
+ "$ref": "#/definitions/Nxtpression<string,{id:string;}>_1"
4761
+ }
4762
+ },
4763
+ "type": "object"
5001
4764
  },
5002
- "titleSafe": {
5003
- "type": "boolean"
5004
- }
5005
- },
5006
- "type": "object"
5007
- },
5008
- "PartialObjectDeep<{maxHeight:number;},{}>": {
5009
- "additionalProperties": false,
5010
- "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
5011
- "properties": {
5012
- "maxHeight": {
5013
- "type": "number"
5014
- }
5015
- },
5016
- "type": "object"
5017
- },
5018
- "PartialObjectDeep<{maxHeight?:number;},{}>": {
5019
- "additionalProperties": false,
5020
- "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
5021
- "properties": {
5022
- "maxHeight": {
5023
- "type": "number"
5024
- }
5025
- },
5026
- "type": "object"
5027
- },
5028
- "PartialObjectDeep<{maxItemsDisplayed:number;},{}>": {
5029
- "additionalProperties": false,
5030
- "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
5031
- "properties": {
5032
- "maxItemsDisplayed": {
5033
- "type": "number"
5034
- }
5035
- },
5036
- "type": "object"
5037
- },
5038
- "PartialObjectDeep<{maxLines:number;mode:string;},{}>": {
5039
- "additionalProperties": false,
5040
- "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
5041
- "properties": {
5042
- "maxLines": {
5043
- "type": "number"
4765
+ "asset.icon": {
4766
+ "additionalProperties": false,
4767
+ "properties": {
4768
+ "dynamic": {
4769
+ "$ref": "#/definitions/Dynamic"
4770
+ },
4771
+ "value": {
4772
+ "$ref": "#/definitions/Nxtpression<string,{id:string;}>_2"
4773
+ }
4774
+ },
4775
+ "type": "object"
5044
4776
  },
5045
- "mode": {
5046
- "type": "string"
5047
- }
5048
- },
5049
- "type": "object"
5050
- },
5051
- "PartialObjectDeep<{maxMru:number;maxTabs:number;},{}>": {
5052
- "additionalProperties": false,
5053
- "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
5054
- "properties": {
5055
- "maxMru": {
5056
- "type": "number"
4777
+ "asset.locations": {
4778
+ "additionalProperties": false,
4779
+ "properties": {
4780
+ "dynamic": {
4781
+ "$ref": "#/definitions/Dynamic"
4782
+ },
4783
+ "value": {
4784
+ "$ref": "#/definitions/Nxtpression<{lat:number;lon:number;}[],{id:string;}>"
4785
+ }
4786
+ },
4787
+ "type": "object"
5057
4788
  },
5058
- "maxTabs": {
5059
- "type": "number"
5060
- }
5061
- },
5062
- "type": "object"
5063
- },
5064
- "PartialObjectDeep<{overrideUserContact:boolean;overrideUserLogin:boolean;},{}>": {
5065
- "additionalProperties": false,
5066
- "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
5067
- "properties": {
5068
- "overrideUserContact": {
5069
- "type": "boolean"
4789
+ "asset.media": {
4790
+ "additionalProperties": false,
4791
+ "properties": {
4792
+ "dynamic": {
4793
+ "$ref": "#/definitions/Dynamic"
4794
+ },
4795
+ "value": {
4796
+ "$ref": "#/definitions/Nxtpression<Record<string,unknown>,{id:string;}>"
4797
+ }
4798
+ },
4799
+ "type": "object"
5070
4800
  },
5071
- "overrideUserLogin": {
5072
- "type": "boolean"
5073
- }
5074
- },
5075
- "type": "object"
5076
- },
5077
- "PartialObjectDeep<{preview:boolean|\"play\"|\"seek\"|\"disabled\"|\"seekplay\";showRenderProgress:boolean;},{}>": {
5078
- "additionalProperties": false,
5079
- "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
5080
- "properties": {
5081
- "preview": {
5082
- "enum": [
5083
- "disabled",
5084
- false,
5085
- "play",
5086
- "seek",
5087
- "seekplay",
5088
- true
5089
- ]
4801
+ "asset.tags": {
4802
+ "additionalProperties": false,
4803
+ "properties": {
4804
+ "dynamic": {
4805
+ "$ref": "#/definitions/Dynamic"
4806
+ },
4807
+ "value": {
4808
+ "$ref": "#/definitions/Nxtpression<string[],{id:string;}>_1"
4809
+ }
4810
+ },
4811
+ "type": "object"
5090
4812
  },
5091
- "showRenderProgress": {
5092
- "type": "boolean"
5093
- }
5094
- },
5095
- "type": "object"
5096
- },
5097
- "PartialObjectDeep<{search:{maxItemsDisplayed:number;};sortMode:PipelineSortMode;},{}>": {
5098
- "additionalProperties": false,
5099
- "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
5100
- "properties": {
5101
- "search": {
5102
- "$ref": "#/definitions/PartialObjectDeep<{maxItemsDisplayed:number;},{}>"
4813
+ "asset.title": {
4814
+ "additionalProperties": false,
4815
+ "properties": {
4816
+ "dynamic": {
4817
+ "$ref": "#/definitions/Dynamic"
4818
+ },
4819
+ "value": {
4820
+ "$ref": "#/definitions/Nxtpression<string,{id:string;}>_3"
4821
+ }
4822
+ },
4823
+ "type": "object"
5103
4824
  },
5104
- "sortMode": {
5105
- "$ref": "#/definitions/PipelineSortMode"
5106
- }
5107
- },
5108
- "type": "object"
5109
- },
5110
- "PartialObjectDeep<{showPreview:boolean;},{}>": {
5111
- "additionalProperties": false,
5112
- "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
5113
- "properties": {
5114
- "showPreview": {
5115
- "type": "boolean"
5116
- }
5117
- },
5118
- "type": "object"
5119
- },
5120
- "PartialObjectDeep<{sortOrder:string[];},{}>": {
5121
- "additionalProperties": false,
5122
- "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
5123
- "properties": {
5124
- "sortOrder": {
5125
- "items": {
5126
- "type": "string"
4825
+ "asset.types": {
4826
+ "additionalProperties": {
4827
+ "anyOf": [
4828
+ {
4829
+ "additionalProperties": false,
4830
+ "properties": {
4831
+ "icon": {
4832
+ "type": "string"
4833
+ },
4834
+ "label": {
4835
+ "type": "string"
4836
+ },
4837
+ "priority": {
4838
+ "type": "number"
4839
+ }
4840
+ },
4841
+ "required": [
4842
+ "label"
4843
+ ],
4844
+ "type": "object"
4845
+ },
4846
+ {
4847
+ "type": "string"
4848
+ }
4849
+ ]
5127
4850
  },
5128
- "type": "array"
5129
- }
5130
- },
5131
- "type": "object"
5132
- },
5133
- "PartialObjectDeep<{spacing:number;maxCharactersPerLine:number;},{}>": {
5134
- "additionalProperties": false,
5135
- "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
5136
- "properties": {
5137
- "maxCharactersPerLine": {
5138
- "type": "number"
4851
+ "type": "object"
5139
4852
  },
5140
- "spacing": {
5141
- "type": "number"
4853
+ "deepstream-replicator.stats?": {
4854
+ "additionalProperties": false,
4855
+ "properties": {
4856
+ "replicators": {
4857
+ "$ref": "#/definitions/Record<string,{to:{synced?:boolean;since?:string|0;};from:{since?:string|0;};}>"
4858
+ },
4859
+ "synced": {
4860
+ "type": "boolean"
4861
+ }
4862
+ },
4863
+ "type": "object"
4864
+ },
4865
+ "hub-transcribe:render-profile": {
4866
+ "additionalProperties": false,
4867
+ "properties": {
4868
+ "format": {
4869
+ "type": "string"
4870
+ },
4871
+ "pick": {
4872
+ "items": {
4873
+ "type": "string"
4874
+ },
4875
+ "type": "array"
4876
+ },
4877
+ "transcribe": {
4878
+ "additionalProperties": false,
4879
+ "properties": {
4880
+ "engine": {
4881
+ "type": "string"
4882
+ }
4883
+ },
4884
+ "required": [
4885
+ "engine"
4886
+ ],
4887
+ "type": "object"
4888
+ }
4889
+ },
4890
+ "required": [
4891
+ "format",
4892
+ "pick",
4893
+ "transcribe"
4894
+ ],
4895
+ "type": "object"
4896
+ },
4897
+ "media.consolidate": {
4898
+ "additionalProperties": false,
4899
+ "properties": {
4900
+ "presets": {
4901
+ "$ref": "#/definitions/{audio:RenderPreset;video:RenderPreset;image:RenderPreset;}"
4902
+ }
4903
+ },
4904
+ "type": "object"
4905
+ },
4906
+ "media.subtitles": {
4907
+ "additionalProperties": false,
4908
+ "properties": {
4909
+ "fontFaces": {
4910
+ "items": {
4911
+ "$ref": "#/definitions/SubtitleFontFace"
4912
+ },
4913
+ "type": "array"
4914
+ },
4915
+ "languages": {
4916
+ "$ref": "#/definitions/Record<string,string>"
4917
+ }
4918
+ },
4919
+ "type": "object"
4920
+ },
4921
+ "media.subtitles?": {
4922
+ "additionalProperties": false,
4923
+ "properties": {
4924
+ "fontFaces": {
4925
+ "items": {
4926
+ "$ref": "#/definitions/SubtitleFontFace"
4927
+ },
4928
+ "type": "array"
4929
+ },
4930
+ "languages": {
4931
+ "$ref": "#/definitions/Record<string,string>"
4932
+ }
4933
+ },
4934
+ "type": "object"
4935
+ },
4936
+ "media.transcribe?": {
4937
+ "additionalProperties": false,
4938
+ "properties": {
4939
+ "engines": {
4940
+ "$ref": "#/definitions/Record<string,string>"
4941
+ },
4942
+ "languages": {
4943
+ "$ref": "#/definitions/Record<string,string>"
4944
+ },
4945
+ "translate": {
4946
+ "additionalProperties": false,
4947
+ "properties": {
4948
+ "languages": {
4949
+ "$ref": "#/definitions/Record<string,string>"
4950
+ }
4951
+ },
4952
+ "required": [
4953
+ "languages"
4954
+ ],
4955
+ "type": "object"
4956
+ }
4957
+ },
4958
+ "required": [
4959
+ "engines",
4960
+ "languages"
4961
+ ],
4962
+ "type": "object"
5142
4963
  }
5143
4964
  },
4965
+ "required": [
4966
+ ":permission",
4967
+ "asset-daemon",
4968
+ "asset-daemon:user-notify.state",
4969
+ "asset.assignees",
4970
+ "asset.clone",
4971
+ "asset.deadlines",
4972
+ "asset.duration",
4973
+ "asset.embedding",
4974
+ "asset.icon",
4975
+ "asset.locations",
4976
+ "asset.media",
4977
+ "asset.tags",
4978
+ "asset.title",
4979
+ "asset.types",
4980
+ "deepstream-replicator.stats?",
4981
+ "hub-transcribe:render-profile",
4982
+ "media.consolidate",
4983
+ "media.subtitles",
4984
+ "media.subtitles?",
4985
+ "media.transcribe?"
4986
+ ],
5144
4987
  "type": "object"
5145
4988
  },
5146
- "PartialObjectDeep<{story:{excerpt:{maxLines:number;mode:string;};};note?:{maxHeight?:number;};},{}>": {
4989
+ "RemoveOperation": {
5147
4990
  "additionalProperties": false,
5148
- "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
5149
4991
  "properties": {
5150
- "note": {
5151
- "$ref": "#/definitions/PartialObjectDeep<{maxHeight?:number;},{}>"
4992
+ "op": {
4993
+ "const": "remove",
4994
+ "type": "string"
5152
4995
  },
5153
- "story": {
5154
- "$ref": "#/definitions/PartialObjectDeep<{excerpt:{maxLines:number;mode:string;};},{}>"
4996
+ "path": {
4997
+ "type": "string"
5155
4998
  }
5156
4999
  },
5000
+ "required": [
5001
+ "op",
5002
+ "path"
5003
+ ],
5157
5004
  "type": "object"
5158
5005
  },
5159
- "PartialObjectDeep<{subtitleDisclaimer?:{isUserConfigurable?:boolean;defaultValue?:{enabled?:false;text?:{language:string;value:string;}[];offset?:number;duration?:number;};};},{}>": {
5006
+ "RenderDomainQueryRecord": {
5160
5007
  "additionalProperties": false,
5161
- "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
5162
5008
  "properties": {
5163
- "subtitleDisclaimer": {
5164
- "$ref": "#/definitions/PartialObjectDeep<{isUserConfigurable?:boolean;defaultValue?:{enabled?:false;text?:{language:string;value:string;}[];offset?:number;duration?:number;};},{}>"
5009
+ "description": {
5010
+ "additionalProperties": false,
5011
+ "properties": {
5012
+ "profile": {
5013
+ "$ref": "#/definitions/RenderProfileObject"
5014
+ },
5015
+ "scene": {
5016
+ "$ref": "#/definitions/RenderSceneObject"
5017
+ }
5018
+ },
5019
+ "required": [
5020
+ "profile",
5021
+ "scene"
5022
+ ],
5023
+ "type": "object"
5024
+ },
5025
+ "parent": {
5026
+ "type": "string"
5027
+ },
5028
+ "title": {
5029
+ "type": "string"
5030
+ },
5031
+ "type": {
5032
+ "type": "string"
5165
5033
  }
5166
5034
  },
5035
+ "required": [
5036
+ "description",
5037
+ "title",
5038
+ "type"
5039
+ ],
5167
5040
  "type": "object"
5168
5041
  },
5169
- "PartialObjectDeep<{tabs?:ModuleTabs;},{}>": {
5170
- "additionalProperties": false,
5171
- "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
5042
+ "RenderDomainResultRecord": {
5043
+ "additionalProperties": {},
5172
5044
  "properties": {
5173
- "tabs": {
5174
- "$ref": "#/definitions/PartialObjectDeep<ModuleTabs,{}>"
5045
+ "error": {
5046
+ "anyOf": [
5047
+ {
5048
+ "$ref": "#/definitions/Record<string,unknown>"
5049
+ },
5050
+ {
5051
+ "items": {
5052
+ "$ref": "#/definitions/Record<string,unknown>"
5053
+ },
5054
+ "type": "array"
5055
+ }
5056
+ ]
5057
+ },
5058
+ "result": {},
5059
+ "url": {
5060
+ "type": "string"
5175
5061
  }
5176
5062
  },
5177
5063
  "type": "object"
5178
5064
  },
5179
- "PartialObjectDeep<{template?:string;},{}>": {
5065
+ "RenderDomainStatsRecord": {
5180
5066
  "additionalProperties": false,
5181
- "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
5182
5067
  "properties": {
5183
- "template": {
5068
+ "error": {
5069
+ "items": {
5070
+ "$ref": "#/definitions/Record<string,unknown>"
5071
+ },
5072
+ "type": "array"
5073
+ },
5074
+ "progress": {
5075
+ "type": "number"
5076
+ },
5077
+ "status": {
5184
5078
  "type": "string"
5185
5079
  }
5186
5080
  },
5187
5081
  "type": "object"
5188
5082
  },
5189
- "PartialObjectDeep<{thumbnailView:\"none\"|\"filmStrip\"|\"thumbnail\";voiceOver:{inputDevice?:string;inputGainDb:number;backgroundReductionDb:number;recordMode:\"instant\"|\"punchAndRoll\";preRollDuration:number;};},{}>": {
5083
+ "RenderPreset": {
5084
+ "anyOf": [
5085
+ {
5086
+ "$ref": "#/definitions/RenderPresetObject"
5087
+ },
5088
+ {
5089
+ "type": "string"
5090
+ }
5091
+ ]
5092
+ },
5093
+ "RenderPresetObject": {
5190
5094
  "additionalProperties": false,
5191
- "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
5192
5095
  "properties": {
5193
- "thumbnailView": {
5194
- "enum": [
5195
- "filmStrip",
5196
- "none",
5197
- "thumbnail"
5198
- ],
5199
- "type": "string"
5096
+ "profile": {
5097
+ "$ref": "#/definitions/RenderProfile"
5200
5098
  },
5201
- "voiceOver": {
5202
- "$ref": "#/definitions/PartialObjectDeep<{inputDevice?:string;inputGainDb:number;backgroundReductionDb:number;recordMode:\"instant\"|\"punchAndRoll\";preRollDuration:number;},{}>"
5099
+ "type": {
5100
+ "type": "string"
5203
5101
  }
5204
5102
  },
5103
+ "required": [
5104
+ "profile",
5105
+ "type"
5106
+ ],
5205
5107
  "type": "object"
5206
5108
  },
5207
- "PartialObjectDeep<{url?:string;command?:string;app?:string;args?:string[];},{}>": {
5208
- "additionalProperties": false,
5209
- "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
5210
- "properties": {
5211
- "app": {
5212
- "type": "string"
5109
+ "RenderProfile": {
5110
+ "anyOf": [
5111
+ {
5112
+ "$ref": "#/definitions/RenderProfileObject"
5213
5113
  },
5214
- "args": {
5114
+ {
5215
5115
  "items": {
5216
- "type": "string"
5116
+ "anyOf": [
5117
+ {
5118
+ "$ref": "#/definitions/RenderProfileObject"
5119
+ },
5120
+ {
5121
+ "type": "string"
5122
+ }
5123
+ ]
5217
5124
  },
5218
5125
  "type": "array"
5219
5126
  },
5220
- "command": {
5221
- "type": "string"
5222
- },
5223
- "url": {
5127
+ {
5224
5128
  "type": "string"
5225
5129
  }
5226
- },
5227
- "type": "object"
5228
- },
5229
- "PartialObjectDeep<{useProxies:boolean;},{}>": {
5230
- "additionalProperties": false,
5231
- "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
5232
- "properties": {
5233
- "useProxies": {
5234
- "type": "boolean"
5235
- }
5236
- },
5237
- "type": "object"
5130
+ ]
5238
5131
  },
5239
- "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;devWarnings?:boolean;},{}>": {
5132
+ "RenderProfileObject": {
5240
5133
  "additionalProperties": false,
5241
- "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
5242
5134
  "properties": {
5243
- "access": {
5244
- "type": "boolean"
5245
- },
5246
- "assetRoute": {
5247
- "type": "boolean"
5135
+ "audio": {
5136
+ "additionalProperties": false,
5137
+ "properties": {
5138
+ "pan": {
5139
+ "type": "string"
5140
+ }
5141
+ },
5142
+ "type": "object"
5248
5143
  },
5249
- "assetStatus": {
5250
- "type": "boolean"
5144
+ "format": {
5145
+ "type": "string"
5251
5146
  },
5252
- "consolidateMedia": {
5253
- "type": "boolean"
5147
+ "pick": {
5148
+ "items": {
5149
+ "type": "string"
5150
+ },
5151
+ "type": "array"
5254
5152
  },
5255
- "devWarnings": {
5256
- "type": "boolean"
5153
+ "subtitle": {
5154
+ "anyOf": [
5155
+ {
5156
+ "$ref": "#/definitions/SubtitleProfile"
5157
+ },
5158
+ {
5159
+ "type": "string"
5160
+ }
5161
+ ]
5257
5162
  },
5258
- "export": {
5259
- "type": "boolean"
5163
+ "transcribe": {
5164
+ "additionalProperties": false,
5165
+ "properties": {
5166
+ "engine": {
5167
+ "type": "string"
5168
+ }
5169
+ },
5170
+ "required": [
5171
+ "engine"
5172
+ ],
5173
+ "type": "object"
5260
5174
  },
5261
- "files": {
5262
- "type": "boolean"
5175
+ "translate": {
5176
+ "additionalProperties": false,
5177
+ "properties": {
5178
+ "language": {
5179
+ "type": "string"
5180
+ }
5181
+ },
5182
+ "required": [
5183
+ "language"
5184
+ ],
5185
+ "type": "object"
5263
5186
  },
5264
- "hideInAssetMenu": {
5265
- "type": "boolean"
5187
+ "video": {}
5188
+ },
5189
+ "required": [
5190
+ "format"
5191
+ ],
5192
+ "type": "object"
5193
+ },
5194
+ "RenderSceneObject": {
5195
+ "additionalProperties": false,
5196
+ "properties": {
5197
+ "end": {
5198
+ "type": "number"
5266
5199
  },
5267
- "history": {
5268
- "type": "boolean"
5200
+ "id": {
5201
+ "type": "string"
5269
5202
  },
5270
- "hlsjs": {
5271
- "type": "boolean"
5203
+ "input": {
5204
+ "additionalProperties": false,
5205
+ "properties": {
5206
+ "file": {
5207
+ "type": "string"
5208
+ },
5209
+ "type": {
5210
+ "type": "string"
5211
+ }
5212
+ },
5213
+ "type": "object"
5272
5214
  },
5273
- "json": {
5274
- "type": "boolean"
5215
+ "lang": {
5216
+ "type": "string"
5275
5217
  },
5276
- "refs": {
5277
- "type": "boolean"
5218
+ "preset": {
5219
+ "type": "string"
5278
5220
  },
5279
- "resetRenders": {
5280
- "type": "boolean"
5221
+ "start": {
5222
+ "type": "number"
5281
5223
  },
5282
- "resetReplicas": {
5283
- "type": "boolean"
5224
+ "subtitle": {
5225
+ "type": "string"
5284
5226
  },
5285
- "utils": {
5286
- "type": "boolean"
5287
- }
5288
- },
5289
- "type": "object"
5290
- },
5291
- "PermissionRecordPermisson": {
5292
- "anyOf": [
5293
- {
5294
- "$ref": "#/definitions/TagPermission"
5227
+ "subtitleTracks": {
5228
+ "additionalProperties": {
5229
+ "additionalProperties": false,
5230
+ "properties": {
5231
+ "style": {
5232
+ "type": "string"
5233
+ },
5234
+ "styleOverrides": {
5235
+ "$ref": "#/definitions/Omit<SubtitleStyleDomainRecord,\"scaledBorderAndShadow\"|\"futureWordWrapping\">"
5236
+ }
5237
+ },
5238
+ "type": "object"
5239
+ },
5240
+ "type": "object"
5295
5241
  },
5296
- {
5297
- "$ref": "#/definitions/AssetPermission"
5242
+ "transcribe": {
5243
+ "additionalProperties": false,
5244
+ "properties": {
5245
+ "language": {
5246
+ "type": "string"
5247
+ },
5248
+ "pan": {
5249
+ "items": {
5250
+ "type": "number"
5251
+ },
5252
+ "type": "array"
5253
+ }
5254
+ },
5255
+ "type": "object"
5298
5256
  },
5299
- {
5300
- "$ref": "#/definitions/RpcPermission"
5301
- }
5302
- ]
5303
- },
5304
- "PipelineDomainItemsRecord": {
5305
- "additionalProperties": false,
5306
- "properties": {
5307
- "value": {
5308
- "items": {
5309
- "type": "string"
5257
+ "video": {
5258
+ "additionalProperties": false,
5259
+ "properties": {
5260
+ "crop": {
5261
+ "additionalProperties": false,
5262
+ "properties": {
5263
+ "height": {
5264
+ "type": "number"
5265
+ },
5266
+ "width": {
5267
+ "type": "number"
5268
+ },
5269
+ "x": {
5270
+ "type": "number"
5271
+ },
5272
+ "y": {
5273
+ "type": "number"
5274
+ }
5275
+ },
5276
+ "type": "object"
5277
+ }
5310
5278
  },
5311
- "type": "array"
5279
+ "type": "object"
5312
5280
  }
5313
5281
  },
5314
5282
  "type": "object"
5315
5283
  },
5316
- "PipelineDomainRecord": {
5284
+ "ReplaceOperation": {
5317
5285
  "additionalProperties": false,
5318
5286
  "properties": {
5319
- "assetType": {
5320
- "enum": [
5321
- "collection",
5322
- "pipeline"
5323
- ],
5287
+ "op": {
5288
+ "const": "replace",
5324
5289
  "type": "string"
5325
5290
  },
5326
- "bookmarkId": {
5291
+ "path": {
5327
5292
  "type": "string"
5328
5293
  },
5329
- "color": {
5294
+ "value": {}
5295
+ },
5296
+ "required": [
5297
+ "op",
5298
+ "path",
5299
+ "value"
5300
+ ],
5301
+ "type": "object"
5302
+ },
5303
+ "ReutersConnectionRecord": {
5304
+ "additionalProperties": false,
5305
+ "properties": {
5306
+ "audience": {
5330
5307
  "type": "string"
5331
5308
  },
5332
- "dummy": {
5333
- "type": "boolean"
5334
- },
5335
- "hiddenCreateMenuItems": {
5336
- "$ref": "#/definitions/Record<string,unknown>"
5337
- },
5338
- "preset": {
5309
+ "clientId": {
5339
5310
  "type": "string"
5340
5311
  },
5341
- "tags": {
5342
- "items": {
5343
- "type": "string"
5344
- },
5345
- "type": "array"
5312
+ "clientSecret": {
5313
+ "type": "string"
5346
5314
  },
5347
5315
  "type": {
5316
+ "const": "reuters",
5348
5317
  "type": "string"
5318
+ },
5319
+ "userNotificationsEnabled": {
5320
+ "type": "boolean"
5349
5321
  }
5350
5322
  },
5323
+ "required": [
5324
+ "type"
5325
+ ],
5351
5326
  "type": "object"
5352
5327
  },
5353
- "PipelinePresetDomainRecord": {
5328
+ "RevsRecord": {
5354
5329
  "additionalProperties": false,
5355
5330
  "properties": {
5356
- "color": {
5357
- "type": "string"
5358
- },
5359
- "createMenuItems": {
5360
- "items": {
5361
- "type": "string"
5362
- },
5363
- "type": "array"
5364
- },
5365
- "sortMode": {
5366
- "$ref": "#/definitions/PipelineSortMode"
5367
- },
5368
- "tags": {
5331
+ "value": {
5369
5332
  "items": {
5370
5333
  "type": "string"
5371
5334
  },
@@ -5374,22 +5337,7 @@
5374
5337
  },
5375
5338
  "type": "object"
5376
5339
  },
5377
- "PipelineSortMode": {
5378
- "enum": [
5379
- "az",
5380
- "default",
5381
- "earliestdeadline",
5382
- "latestdeadline",
5383
- "leastrecent",
5384
- "manual",
5385
- "mostrecent",
5386
- "newest",
5387
- "oldest",
5388
- "za"
5389
- ],
5390
- "type": "string"
5391
- },
5392
- "PlanningAssigneesRecord": {
5340
+ "RoleTagsRecord": {
5393
5341
  "additionalProperties": false,
5394
5342
  "properties": {
5395
5343
  "value": {
@@ -5399,1219 +5347,1459 @@
5399
5347
  "type": "array"
5400
5348
  }
5401
5349
  },
5350
+ "required": [
5351
+ "value"
5352
+ ],
5402
5353
  "type": "object"
5403
5354
  },
5404
- "PlanningDeadlineRecord": {
5355
+ "RpcPermission": {
5405
5356
  "additionalProperties": false,
5406
5357
  "properties": {
5407
- "value": {
5358
+ "method": {
5359
+ "type": "string"
5360
+ },
5361
+ "type": {
5362
+ "const": "rpc",
5408
5363
  "type": "string"
5409
5364
  }
5410
5365
  },
5411
5366
  "required": [
5412
- "value"
5367
+ "method",
5368
+ "type"
5413
5369
  ],
5414
5370
  "type": "object"
5415
5371
  },
5416
- "PlanningRecord": {
5372
+ "SaveDialogOptions": {
5417
5373
  "additionalProperties": false,
5418
5374
  "properties": {
5419
- "deadline": {
5375
+ "buttonLabel": {
5376
+ "type": "string"
5377
+ },
5378
+ "defaultDirectory": {
5379
+ "type": "string"
5380
+ },
5381
+ "defaultFilename": {
5382
+ "type": "string"
5383
+ },
5384
+ "defaultPath": {
5385
+ "description": "If present, defaultDirectory and defaultFilename will be ignored.",
5386
+ "type": "string"
5387
+ },
5388
+ "filters": {
5389
+ "items": {
5390
+ "additionalProperties": false,
5391
+ "properties": {
5392
+ "extensions": {
5393
+ "items": {
5394
+ "type": "string"
5395
+ },
5396
+ "type": "array"
5397
+ },
5398
+ "name": {
5399
+ "type": "string"
5400
+ }
5401
+ },
5402
+ "required": [
5403
+ "extensions",
5404
+ "name"
5405
+ ],
5406
+ "type": "object"
5407
+ },
5408
+ "type": "array"
5409
+ },
5410
+ "message": {
5411
+ "type": "string"
5412
+ },
5413
+ "nameFieldLabel": {
5414
+ "type": "string"
5415
+ },
5416
+ "properties": {
5417
+ "items": {
5418
+ "enum": [
5419
+ "createDirectory",
5420
+ "dontAddToRecent",
5421
+ "showHiddenFiles",
5422
+ "showOverwriteConfirmation",
5423
+ "treatPackageAsDirectory"
5424
+ ],
5425
+ "type": "string"
5426
+ },
5427
+ "type": "array"
5428
+ },
5429
+ "securityScopedBookmarks": {
5430
+ "type": "boolean"
5431
+ },
5432
+ "showsTagField": {
5433
+ "type": "boolean"
5434
+ },
5435
+ "title": {
5420
5436
  "type": "string"
5421
5437
  }
5422
5438
  },
5423
5439
  "type": "object"
5424
5440
  },
5425
- "PromotedTag": {
5441
+ "ScriptChildrenRecord": {
5426
5442
  "additionalProperties": false,
5427
5443
  "properties": {
5428
- "color": {
5444
+ "value": {
5445
+ "items": {
5446
+ "type": "string"
5447
+ },
5448
+ "type": "array"
5449
+ }
5450
+ },
5451
+ "type": "object"
5452
+ },
5453
+ "SearchRecord": {
5454
+ "additionalProperties": false,
5455
+ "properties": {
5456
+ "error": {
5429
5457
  "type": "string"
5430
5458
  },
5431
- "description": {
5432
- "type": "string"
5459
+ "hits": {
5460
+ "items": {
5461
+ "type": "string"
5462
+ },
5463
+ "type": "array"
5433
5464
  },
5434
- "icon": {
5465
+ "relation": {
5435
5466
  "type": "string"
5436
5467
  },
5437
- "name": {
5438
- "type": "string"
5468
+ "total": {
5469
+ "type": "number"
5439
5470
  }
5440
5471
  },
5441
5472
  "required": [
5442
- "color",
5443
- "description",
5444
- "icon",
5445
- "name"
5473
+ "hits"
5446
5474
  ],
5447
5475
  "type": "object"
5448
5476
  },
5449
- "ProvidedPermissionRecord": {
5477
+ "SerializedAutoLinkNode": {
5450
5478
  "additionalProperties": false,
5451
5479
  "properties": {
5452
- "permissions": {
5453
- "items": {
5454
- "$ref": "#/definitions/PermissionRecordPermisson"
5455
- },
5456
- "type": "array"
5480
+ "type": {
5481
+ "const": "autolink",
5482
+ "type": "string"
5483
+ },
5484
+ "url": {
5485
+ "type": "string"
5486
+ },
5487
+ "version": {
5488
+ "const": 1,
5489
+ "type": "number"
5457
5490
  }
5458
5491
  },
5459
5492
  "required": [
5460
- "permissions"
5493
+ "type",
5494
+ "url",
5495
+ "version"
5461
5496
  ],
5462
5497
  "type": "object"
5463
5498
  },
5464
- "PublishDomainAcceptsProvidedRecord": {
5499
+ "SerializedEmojiNode": {
5465
5500
  "additionalProperties": false,
5466
5501
  "properties": {
5467
- "value": {}
5502
+ "emojiId": {
5503
+ "type": "string"
5504
+ },
5505
+ "type": {
5506
+ "const": "emoji",
5507
+ "type": "string"
5508
+ },
5509
+ "version": {
5510
+ "const": 1,
5511
+ "type": "number"
5512
+ }
5468
5513
  },
5514
+ "required": [
5515
+ "emojiId",
5516
+ "type",
5517
+ "version"
5518
+ ],
5469
5519
  "type": "object"
5470
5520
  },
5471
- "PublishRecord": {
5472
- "anyOf": [
5473
- {
5474
- "$ref": "#/definitions/YoutubePublishRecord"
5475
- },
5476
- {
5477
- "$ref": "#/definitions/FacebookPublishRecord"
5478
- },
5479
- {
5480
- "$ref": "#/definitions/FilePublishRecord"
5521
+ "SerializedLineBreakNode": {
5522
+ "additionalProperties": false,
5523
+ "properties": {
5524
+ "type": {
5525
+ "const": "linebreak",
5526
+ "type": "string"
5481
5527
  },
5482
- {
5483
- "$ref": "#/definitions/FilePublishRecordLegacy"
5528
+ "version": {
5529
+ "const": 1,
5530
+ "type": "number"
5484
5531
  }
5485
- ]
5532
+ },
5533
+ "required": [
5534
+ "type",
5535
+ "version"
5536
+ ],
5537
+ "type": "object"
5486
5538
  },
5487
- "PublishRender": {
5539
+ "SerializedMentionNode": {
5488
5540
  "additionalProperties": false,
5489
- "description": "render preset + overrides",
5490
5541
  "properties": {
5491
- "preset": {
5542
+ "detail": {
5543
+ "type": "number"
5544
+ },
5545
+ "format": {
5546
+ "type": "number"
5547
+ },
5548
+ "mentionId": {
5492
5549
  "type": "string"
5493
5550
  },
5494
- "profile": {
5495
- "$ref": "#/definitions/RenderProfileObject"
5551
+ "mode": {
5552
+ "type": "string"
5496
5553
  },
5497
- "scene": {
5498
- "$ref": "#/definitions/RenderSceneObject"
5554
+ "style": {
5555
+ "type": "string"
5556
+ },
5557
+ "text": {
5558
+ "type": "string"
5499
5559
  },
5500
5560
  "type": {
5561
+ "const": "mention",
5501
5562
  "type": "string"
5563
+ },
5564
+ "version": {
5565
+ "const": 1,
5566
+ "type": "number"
5502
5567
  }
5503
5568
  },
5504
5569
  "required": [
5505
- "type"
5570
+ "detail",
5571
+ "format",
5572
+ "mentionId",
5573
+ "mode",
5574
+ "style",
5575
+ "text",
5576
+ "type",
5577
+ "version"
5506
5578
  ],
5507
5579
  "type": "object"
5508
5580
  },
5509
- "PublishStatsRecord": {
5581
+ "SerializedNode": {
5510
5582
  "anyOf": [
5511
5583
  {
5512
- "$ref": "#/definitions/YoutubePublishStatsRecord"
5584
+ "$ref": "#/definitions/SerializedRootNode"
5513
5585
  },
5514
5586
  {
5515
- "$ref": "#/definitions/FacebookPublishStatsRecord"
5587
+ "$ref": "#/definitions/SerializedParagraphNode"
5516
5588
  },
5517
5589
  {
5518
- "$ref": "#/definitions/FilePublishStatsRecord"
5590
+ "$ref": "#/definitions/SerializedTextNode"
5591
+ },
5592
+ {
5593
+ "$ref": "#/definitions/SerializedLineBreakNode"
5594
+ },
5595
+ {
5596
+ "$ref": "#/definitions/SerializedMentionNode"
5597
+ },
5598
+ {
5599
+ "$ref": "#/definitions/SerializedEmojiNode"
5600
+ },
5601
+ {
5602
+ "$ref": "#/definitions/SerializedAutoLinkNode"
5519
5603
  }
5520
5604
  ]
5521
5605
  },
5522
- "PublishedRecord": {
5606
+ "SerializedParagraphNode": {
5523
5607
  "additionalProperties": false,
5524
5608
  "properties": {
5525
- "asset": {
5609
+ "children": {
5526
5610
  "items": {
5527
- "type": "string"
5611
+ "$ref": "#/definitions/SerializedNode"
5528
5612
  },
5529
5613
  "type": "array"
5530
5614
  },
5531
- "connection": {
5615
+ "direction": {
5616
+ "enum": [
5617
+ "ltr",
5618
+ "rtl"
5619
+ ],
5532
5620
  "type": "string"
5533
5621
  },
5534
- "error": {
5535
- "type": "boolean"
5536
- },
5537
- "parent": {
5622
+ "format": {
5538
5623
  "type": "string"
5539
5624
  },
5540
- "time": {
5625
+ "indent": {
5541
5626
  "type": "number"
5542
5627
  },
5543
- "type": {
5628
+ "textFormat": {
5629
+ "type": "number"
5630
+ },
5631
+ "textStyle": {
5544
5632
  "type": "string"
5545
5633
  },
5546
- "user": {
5634
+ "type": {
5635
+ "const": "paragraph",
5547
5636
  "type": "string"
5637
+ },
5638
+ "version": {
5639
+ "const": 1,
5640
+ "type": "number"
5548
5641
  }
5549
5642
  },
5550
5643
  "required": [
5551
- "asset",
5552
- "connection",
5553
- "parent",
5554
- "time",
5555
- "type"
5644
+ "children",
5645
+ "direction",
5646
+ "format",
5647
+ "indent",
5648
+ "textFormat",
5649
+ "textStyle",
5650
+ "type",
5651
+ "version"
5556
5652
  ],
5557
5653
  "type": "object"
5558
5654
  },
5559
- "Record<string,FilePublishRemoteRender>": {
5560
- "additionalProperties": false,
5561
- "type": "object"
5562
- },
5563
- "Record<string,FilePublishRender>": {
5564
- "additionalProperties": false,
5565
- "type": "object"
5566
- },
5567
- "Record<string,FilePublishRetrievedRender>": {
5568
- "additionalProperties": false,
5569
- "type": "object"
5570
- },
5571
- "Record<string,TemplateProperty>": {
5572
- "additionalProperties": false,
5573
- "type": "object"
5574
- },
5575
- "Record<string,object>": {
5576
- "additionalProperties": false,
5577
- "type": "object"
5578
- },
5579
- "Record<string,string>": {
5580
- "additionalProperties": false,
5581
- "type": "object"
5582
- },
5583
- "Record<string,unknown>": {
5584
- "additionalProperties": false,
5585
- "type": "object"
5586
- },
5587
- "Record<string,{rpcId:string;rpcData:Record<string,unknown>;}>": {
5655
+ "SerializedRootNode": {
5588
5656
  "additionalProperties": false,
5657
+ "properties": {
5658
+ "children": {
5659
+ "items": {
5660
+ "$ref": "#/definitions/SerializedNode"
5661
+ },
5662
+ "type": "array"
5663
+ },
5664
+ "direction": {
5665
+ "enum": [
5666
+ "ltr",
5667
+ "rtl"
5668
+ ],
5669
+ "type": "string"
5670
+ },
5671
+ "format": {
5672
+ "type": "string"
5673
+ },
5674
+ "indent": {
5675
+ "type": "number"
5676
+ },
5677
+ "type": {
5678
+ "const": "root",
5679
+ "type": "string"
5680
+ },
5681
+ "version": {
5682
+ "const": 1,
5683
+ "type": "number"
5684
+ }
5685
+ },
5686
+ "required": [
5687
+ "children",
5688
+ "direction",
5689
+ "format",
5690
+ "indent",
5691
+ "type",
5692
+ "version"
5693
+ ],
5589
5694
  "type": "object"
5590
5695
  },
5591
- "Record<string,{to:{synced?:boolean;since?:string|0;};from:{since?:string|0;};}>": {
5696
+ "SerializedTextNode": {
5592
5697
  "additionalProperties": false,
5698
+ "properties": {
5699
+ "detail": {
5700
+ "type": "number"
5701
+ },
5702
+ "format": {
5703
+ "type": "number"
5704
+ },
5705
+ "mode": {
5706
+ "type": "string"
5707
+ },
5708
+ "style": {
5709
+ "type": "string"
5710
+ },
5711
+ "text": {
5712
+ "type": "string"
5713
+ },
5714
+ "type": {
5715
+ "const": "text",
5716
+ "type": "string"
5717
+ },
5718
+ "version": {
5719
+ "const": 1,
5720
+ "type": "number"
5721
+ }
5722
+ },
5723
+ "required": [
5724
+ "detail",
5725
+ "format",
5726
+ "mode",
5727
+ "style",
5728
+ "text",
5729
+ "type",
5730
+ "version"
5731
+ ],
5593
5732
  "type": "object"
5594
5733
  },
5595
- "Records": {
5734
+ "Settings": {
5596
5735
  "additionalProperties": false,
5597
5736
  "properties": {
5598
- ":permission": {
5599
- "$ref": "#/definitions/DomainRows"
5600
- },
5601
- "asset-daemon": {
5737
+ "assignees": {
5602
5738
  "additionalProperties": false,
5603
5739
  "properties": {
5604
- "user-notify": {
5605
- "type": "boolean"
5740
+ "exclude": {
5741
+ "items": {
5742
+ "type": "string"
5743
+ },
5744
+ "type": "array"
5745
+ },
5746
+ "include": {
5747
+ "items": {
5748
+ "type": "string"
5749
+ },
5750
+ "type": "array"
5606
5751
  }
5607
5752
  },
5753
+ "required": [
5754
+ "include"
5755
+ ],
5608
5756
  "type": "object"
5609
5757
  },
5610
- "asset-daemon:user-notify.state": {
5758
+ "autoLogoutTime": {
5759
+ "type": "number"
5760
+ },
5761
+ "browser": {
5611
5762
  "additionalProperties": false,
5612
5763
  "properties": {
5613
- "since": {
5614
- "anyOf": [
5615
- {
5616
- "const": 0,
5617
- "type": "number"
5618
- },
5619
- {
5620
- "type": "string"
5764
+ "createMenu": {
5765
+ "additionalProperties": false,
5766
+ "properties": {
5767
+ "sortOrder": {
5768
+ "items": {
5769
+ "type": "string"
5770
+ },
5771
+ "type": "array"
5621
5772
  }
5622
- ]
5773
+ },
5774
+ "required": [
5775
+ "sortOrder"
5776
+ ],
5777
+ "type": "object"
5623
5778
  },
5624
- "version": {
5625
- "type": "number"
5779
+ "map": {
5780
+ "additionalProperties": false,
5781
+ "properties": {
5782
+ "center": {
5783
+ "additionalProperties": false,
5784
+ "properties": {
5785
+ "lat": {
5786
+ "type": "number"
5787
+ },
5788
+ "lon": {
5789
+ "type": "number"
5790
+ }
5791
+ },
5792
+ "required": [
5793
+ "lat",
5794
+ "lon"
5795
+ ],
5796
+ "type": "object"
5797
+ },
5798
+ "clustering": {
5799
+ "type": "boolean"
5800
+ },
5801
+ "zoom": {
5802
+ "type": "number"
5803
+ }
5804
+ },
5805
+ "type": "object"
5626
5806
  }
5627
5807
  },
5808
+ "required": [
5809
+ "createMenu",
5810
+ "map"
5811
+ ],
5628
5812
  "type": "object"
5629
5813
  },
5630
- "asset.assignees": {
5814
+ "clock": {
5631
5815
  "additionalProperties": false,
5632
5816
  "properties": {
5633
- "dynamic": {
5634
- "$ref": "#/definitions/Dynamic"
5817
+ "enable": {
5818
+ "type": "boolean"
5635
5819
  },
5636
- "value": {
5637
- "$ref": "#/definitions/Nxtpression<string[],{id:string;}>"
5820
+ "format": {
5821
+ "type": "string"
5822
+ },
5823
+ "show24Hours": {
5824
+ "type": "boolean"
5825
+ },
5826
+ "showAmPm": {
5827
+ "type": "boolean"
5828
+ },
5829
+ "showDate": {
5830
+ "type": "boolean"
5831
+ },
5832
+ "showDayOfWeek": {
5833
+ "type": "boolean"
5834
+ },
5835
+ "showSeconds": {
5836
+ "type": "boolean"
5638
5837
  }
5639
5838
  },
5839
+ "required": [
5840
+ "enable",
5841
+ "show24Hours",
5842
+ "showAmPm",
5843
+ "showDate",
5844
+ "showDayOfWeek",
5845
+ "showSeconds"
5846
+ ],
5640
5847
  "type": "object"
5641
5848
  },
5642
- "asset.clone": {
5849
+ "commands": {
5850
+ "items": {
5851
+ "additionalProperties": false,
5852
+ "properties": {
5853
+ "args": {
5854
+ "items": {
5855
+ "type": "string"
5856
+ },
5857
+ "type": "array"
5858
+ },
5859
+ "command": {
5860
+ "type": "string"
5861
+ },
5862
+ "title": {
5863
+ "type": "string"
5864
+ }
5865
+ },
5866
+ "required": [
5867
+ "title"
5868
+ ],
5869
+ "type": "object"
5870
+ },
5871
+ "type": "array"
5872
+ },
5873
+ "comments": {
5643
5874
  "additionalProperties": false,
5644
5875
  "properties": {
5645
- "rules": {
5876
+ "exclude": {
5646
5877
  "items": {
5647
- "$ref": "#/definitions/CloneRule"
5878
+ "type": "string"
5879
+ },
5880
+ "type": "array"
5881
+ },
5882
+ "include": {
5883
+ "items": {
5884
+ "type": "string"
5648
5885
  },
5649
5886
  "type": "array"
5650
5887
  }
5651
5888
  },
5652
- "required": [
5653
- "rules"
5654
- ],
5655
5889
  "type": "object"
5656
5890
  },
5657
- "asset.deadlines": {
5891
+ "crashScreen": {
5892
+ "type": "boolean"
5893
+ },
5894
+ "dashboard": {
5658
5895
  "additionalProperties": false,
5659
5896
  "properties": {
5660
- "dynamic": {
5661
- "$ref": "#/definitions/Dynamic"
5897
+ "maxMru": {
5898
+ "type": "number"
5662
5899
  },
5663
- "value": {
5664
- "$ref": "#/definitions/Nxtpression<string,{id:string;}>"
5900
+ "maxTabs": {
5901
+ "type": "number"
5665
5902
  }
5666
5903
  },
5904
+ "required": [
5905
+ "maxMru",
5906
+ "maxTabs"
5907
+ ],
5667
5908
  "type": "object"
5668
5909
  },
5669
- "asset.duration": {
5910
+ "deadlines": {
5670
5911
  "additionalProperties": false,
5671
5912
  "properties": {
5672
- "dynamic": {
5673
- "$ref": "#/definitions/Dynamic"
5674
- },
5675
- "value": {
5676
- "$ref": "#/definitions/Nxtpression<number,{id:string;}>"
5913
+ "exclude": {
5914
+ "items": {
5915
+ "type": "string"
5916
+ },
5917
+ "type": "array"
5918
+ },
5919
+ "include": {
5920
+ "items": {
5921
+ "type": "string"
5922
+ },
5923
+ "type": "array"
5677
5924
  }
5678
5925
  },
5926
+ "required": [
5927
+ "include"
5928
+ ],
5679
5929
  "type": "object"
5680
5930
  },
5681
- "asset.embedding": {
5931
+ "debug": {
5932
+ "type": "boolean"
5933
+ },
5934
+ "download": {
5682
5935
  "additionalProperties": false,
5683
5936
  "properties": {
5684
- "dynamic": {
5685
- "$ref": "#/definitions/Dynamic"
5937
+ "batchDownloadDialogMode": {
5938
+ "description": "Whether to prompt the user for each individual file path,\nor just the directory.",
5939
+ "enum": [
5940
+ "directory",
5941
+ "file"
5942
+ ],
5943
+ "type": "string"
5686
5944
  },
5687
- "value": {
5688
- "$ref": "#/definitions/Nxtpression<string,{id:string;}>_1"
5945
+ "displaySaveDialog": {
5946
+ "type": "boolean"
5689
5947
  }
5690
5948
  },
5691
5949
  "type": "object"
5692
5950
  },
5693
- "asset.icon": {
5951
+ "edit": {
5694
5952
  "additionalProperties": false,
5695
5953
  "properties": {
5696
- "dynamic": {
5697
- "$ref": "#/definitions/Dynamic"
5954
+ "thumbnailView": {
5955
+ "enum": [
5956
+ "filmStrip",
5957
+ "none",
5958
+ "thumbnail"
5959
+ ],
5960
+ "type": "string"
5698
5961
  },
5699
- "value": {
5700
- "$ref": "#/definitions/Nxtpression<string,{id:string;}>_2"
5962
+ "voiceOver": {
5963
+ "additionalProperties": false,
5964
+ "properties": {
5965
+ "backgroundReductionDb": {
5966
+ "type": "number"
5967
+ },
5968
+ "inputDevice": {
5969
+ "type": "string"
5970
+ },
5971
+ "inputGainDb": {
5972
+ "type": "number"
5973
+ },
5974
+ "preRollDuration": {
5975
+ "type": "number"
5976
+ },
5977
+ "recordMode": {
5978
+ "enum": [
5979
+ "instant",
5980
+ "punchAndRoll"
5981
+ ],
5982
+ "type": "string"
5983
+ }
5984
+ },
5985
+ "required": [
5986
+ "backgroundReductionDb",
5987
+ "inputGainDb",
5988
+ "preRollDuration",
5989
+ "recordMode"
5990
+ ],
5991
+ "type": "object"
5701
5992
  }
5702
5993
  },
5994
+ "required": [
5995
+ "thumbnailView",
5996
+ "voiceOver"
5997
+ ],
5703
5998
  "type": "object"
5704
5999
  },
5705
- "asset.locations": {
6000
+ "events": {
5706
6001
  "additionalProperties": false,
5707
6002
  "properties": {
5708
- "dynamic": {
5709
- "$ref": "#/definitions/Dynamic"
5710
- },
5711
- "value": {
5712
- "$ref": "#/definitions/Nxtpression<{lat:number;lon:number;}[],{id:string;}>"
6003
+ "graphicBaseTemplate": {
6004
+ "type": "string"
5713
6005
  }
5714
6006
  },
5715
6007
  "type": "object"
5716
6008
  },
5717
- "asset.media": {
6009
+ "exclusiveTagGroups": {
6010
+ "description": "Controls which tags cannot be used together. When a tag from the group is\nmanually added to an asset, any other tag from the group will be removed.",
6011
+ "items": {
6012
+ "items": {
6013
+ "type": "string"
6014
+ },
6015
+ "type": "array"
6016
+ },
6017
+ "type": "array"
6018
+ },
6019
+ "featurePreview": {
5718
6020
  "additionalProperties": false,
5719
6021
  "properties": {
5720
- "dynamic": {
5721
- "$ref": "#/definitions/Dynamic"
6022
+ "ameRemoteRendering": {
6023
+ "type": "boolean"
5722
6024
  },
5723
- "value": {
5724
- "$ref": "#/definitions/Nxtpression<Record<string,unknown>,{id:string;}>"
6025
+ "collections": {
6026
+ "type": "boolean"
6027
+ },
6028
+ "semanticSearch": {
6029
+ "type": "boolean"
5725
6030
  }
5726
6031
  },
5727
6032
  "type": "object"
5728
6033
  },
5729
- "asset.tags": {
6034
+ "flags": {
5730
6035
  "additionalProperties": false,
5731
6036
  "properties": {
5732
- "dynamic": {
5733
- "$ref": "#/definitions/Dynamic"
6037
+ "access": {
6038
+ "type": "boolean"
5734
6039
  },
5735
- "value": {
5736
- "$ref": "#/definitions/Nxtpression<string[],{id:string;}>_1"
6040
+ "assetRoute": {
6041
+ "type": "boolean"
6042
+ },
6043
+ "assetStatus": {
6044
+ "type": "boolean"
6045
+ },
6046
+ "consolidateMedia": {
6047
+ "type": "boolean"
6048
+ },
6049
+ "devWarnings": {
6050
+ "type": "boolean"
6051
+ },
6052
+ "export": {
6053
+ "type": "boolean"
6054
+ },
6055
+ "files": {
6056
+ "type": "boolean"
6057
+ },
6058
+ "hideInAssetMenu": {
6059
+ "type": "boolean"
6060
+ },
6061
+ "history": {
6062
+ "type": "boolean"
6063
+ },
6064
+ "hlsjs": {
6065
+ "type": "boolean"
6066
+ },
6067
+ "json": {
6068
+ "type": "boolean"
6069
+ },
6070
+ "refs": {
6071
+ "type": "boolean"
6072
+ },
6073
+ "resetRenders": {
6074
+ "type": "boolean"
6075
+ },
6076
+ "resetReplicas": {
6077
+ "type": "boolean"
6078
+ },
6079
+ "utils": {
6080
+ "type": "boolean"
5737
6081
  }
5738
6082
  },
6083
+ "required": [
6084
+ "access",
6085
+ "export",
6086
+ "files",
6087
+ "history",
6088
+ "hlsjs",
6089
+ "json",
6090
+ "refs",
6091
+ "utils"
6092
+ ],
5739
6093
  "type": "object"
5740
6094
  },
5741
- "asset.title": {
6095
+ "gallery": {
5742
6096
  "additionalProperties": false,
5743
6097
  "properties": {
5744
- "dynamic": {
5745
- "$ref": "#/definitions/Dynamic"
5746
- },
5747
- "value": {
5748
- "$ref": "#/definitions/Nxtpression<string,{id:string;}>_3"
6098
+ "dimOnBlur": {
6099
+ "type": "boolean"
5749
6100
  }
5750
6101
  },
6102
+ "required": [
6103
+ "dimOnBlur"
6104
+ ],
5751
6105
  "type": "object"
5752
6106
  },
5753
- "asset.types": {
5754
- "additionalProperties": {
5755
- "anyOf": [
5756
- {
5757
- "additionalProperties": false,
5758
- "properties": {
5759
- "icon": {
5760
- "type": "string"
5761
- },
5762
- "label": {
5763
- "type": "string"
5764
- },
5765
- "priority": {
5766
- "type": "number"
5767
- }
5768
- },
5769
- "required": [
5770
- "label"
5771
- ],
5772
- "type": "object"
6107
+ "hiddenPreviews": {
6108
+ "items": {
6109
+ "additionalProperties": false,
6110
+ "properties": {
6111
+ "folded": {
6112
+ "type": "boolean"
5773
6113
  },
5774
- {
6114
+ "id": {
5775
6115
  "type": "string"
5776
6116
  }
5777
- ]
5778
- },
5779
- "type": "object"
5780
- },
5781
- "deepstream-replicator.stats?": {
5782
- "additionalProperties": false,
5783
- "properties": {
5784
- "replicators": {
5785
- "$ref": "#/definitions/Record<string,{to:{synced?:boolean;since?:string|0;};from:{since?:string|0;};}>"
5786
6117
  },
5787
- "synced": {
5788
- "type": "boolean"
5789
- }
6118
+ "required": [
6119
+ "folded",
6120
+ "id"
6121
+ ],
6122
+ "type": "object"
5790
6123
  },
5791
- "type": "object"
6124
+ "type": "array"
5792
6125
  },
5793
- "hub-transcribe:render-profile": {
6126
+ "history": {
6127
+ "type": "boolean"
6128
+ },
6129
+ "keymap": {
5794
6130
  "additionalProperties": false,
5795
6131
  "properties": {
5796
- "format": {
5797
- "type": "string"
6132
+ "bookmarks": {
6133
+ "additionalProperties": {
6134
+ "$ref": "#/definitions/KeymapSetting"
6135
+ },
6136
+ "type": "object"
5798
6137
  },
5799
- "pick": {
5800
- "items": {
5801
- "type": "string"
6138
+ "browser": {
6139
+ "additionalProperties": {
6140
+ "$ref": "#/definitions/KeymapSetting"
5802
6141
  },
5803
- "type": "array"
6142
+ "type": "object"
5804
6143
  },
5805
- "transcribe": {
5806
- "additionalProperties": false,
5807
- "properties": {
5808
- "engine": {
5809
- "type": "string"
5810
- }
6144
+ "codeEditor": {
6145
+ "additionalProperties": {
6146
+ "$ref": "#/definitions/KeymapSetting"
6147
+ },
6148
+ "type": "object"
6149
+ },
6150
+ "display": {
6151
+ "additionalProperties": {
6152
+ "$ref": "#/definitions/KeymapSetting"
6153
+ },
6154
+ "type": "object"
6155
+ },
6156
+ "edit": {
6157
+ "additionalProperties": {
6158
+ "$ref": "#/definitions/KeymapSetting"
6159
+ },
6160
+ "type": "object"
6161
+ },
6162
+ "gallery": {
6163
+ "additionalProperties": {
6164
+ "$ref": "#/definitions/KeymapSetting"
6165
+ },
6166
+ "type": "object"
6167
+ },
6168
+ "global": {
6169
+ "additionalProperties": {
6170
+ "$ref": "#/definitions/KeymapSetting"
6171
+ },
6172
+ "type": "object"
6173
+ },
6174
+ "player": {
6175
+ "additionalProperties": {
6176
+ "$ref": "#/definitions/KeymapSetting"
6177
+ },
6178
+ "type": "object"
6179
+ },
6180
+ "rundown": {
6181
+ "additionalProperties": {
6182
+ "$ref": "#/definitions/KeymapSetting"
6183
+ },
6184
+ "type": "object"
6185
+ },
6186
+ "script": {
6187
+ "additionalProperties": {
6188
+ "$ref": "#/definitions/KeymapSetting"
6189
+ },
6190
+ "type": "object"
6191
+ },
6192
+ "segment": {
6193
+ "additionalProperties": {
6194
+ "$ref": "#/definitions/KeymapSetting"
5811
6195
  },
5812
- "required": [
5813
- "engine"
5814
- ],
5815
6196
  "type": "object"
5816
6197
  }
5817
6198
  },
5818
6199
  "required": [
5819
- "format",
5820
- "pick",
5821
- "transcribe"
5822
- ],
5823
- "type": "object"
5824
- },
5825
- "media.consolidate": {
5826
- "additionalProperties": false,
5827
- "properties": {
5828
- "presets": {
5829
- "$ref": "#/definitions/{audio:RenderPreset;video:RenderPreset;image:RenderPreset;}"
5830
- }
5831
- },
5832
- "type": "object"
5833
- },
5834
- "media.subtitles?": {
5835
- "additionalProperties": false,
5836
- "properties": {
5837
- "languages": {
5838
- "$ref": "#/definitions/Record<string,string>"
5839
- }
5840
- },
5841
- "required": [
5842
- "languages"
6200
+ "bookmarks",
6201
+ "browser",
6202
+ "codeEditor",
6203
+ "display",
6204
+ "edit",
6205
+ "gallery",
6206
+ "global",
6207
+ "player",
6208
+ "rundown",
6209
+ "script",
6210
+ "segment"
5843
6211
  ],
5844
6212
  "type": "object"
5845
6213
  },
5846
- "media.transcribe?": {
6214
+ "media": {
5847
6215
  "additionalProperties": false,
5848
6216
  "properties": {
5849
- "engines": {
5850
- "$ref": "#/definitions/Record<string,string>"
6217
+ "defaultFrameRate": {
6218
+ "type": "number"
5851
6219
  },
5852
- "languages": {
5853
- "$ref": "#/definitions/Record<string,string>"
6220
+ "download": {
6221
+ "type": "boolean"
5854
6222
  },
5855
- "translate": {
6223
+ "editMode": {
5856
6224
  "additionalProperties": false,
5857
6225
  "properties": {
5858
- "languages": {
5859
- "$ref": "#/definitions/Record<string,string>"
6226
+ "defaultEnterOption": {
6227
+ "enum": [
6228
+ "createNew",
6229
+ "edit",
6230
+ "none"
6231
+ ],
6232
+ "type": "string"
6233
+ },
6234
+ "defaultExitOption": {
6235
+ "enum": [
6236
+ "leave",
6237
+ "none",
6238
+ "update"
6239
+ ],
6240
+ "type": "string"
6241
+ },
6242
+ "enabled": {
6243
+ "type": "boolean"
5860
6244
  }
5861
6245
  },
5862
6246
  "required": [
5863
- "languages"
6247
+ "defaultEnterOption",
6248
+ "defaultExitOption",
6249
+ "enabled"
6250
+ ],
6251
+ "type": "object"
6252
+ },
6253
+ "forwardStep": {
6254
+ "type": "number"
6255
+ },
6256
+ "guide": {
6257
+ "additionalProperties": false,
6258
+ "properties": {
6259
+ "actionSafe": {
6260
+ "type": "boolean"
6261
+ },
6262
+ "mask": {
6263
+ "type": "boolean"
6264
+ },
6265
+ "titleSafe": {
6266
+ "type": "boolean"
6267
+ }
6268
+ },
6269
+ "type": "object"
6270
+ },
6271
+ "guides": {
6272
+ "items": {
6273
+ "additionalProperties": false,
6274
+ "properties": {
6275
+ "aspectRatio": {
6276
+ "type": "string"
6277
+ },
6278
+ "label": {
6279
+ "type": "string"
6280
+ }
6281
+ },
6282
+ "required": [
6283
+ "aspectRatio",
6284
+ "label"
6285
+ ],
6286
+ "type": "object"
6287
+ },
6288
+ "type": "array"
6289
+ },
6290
+ "importTitleTemplate": {
6291
+ "type": "string"
6292
+ },
6293
+ "initialVolume": {
6294
+ "type": "string"
6295
+ },
6296
+ "interlacedPlayback": {
6297
+ "type": "string"
6298
+ },
6299
+ "liveZoomDuration": {
6300
+ "type": "number"
6301
+ },
6302
+ "maxSubclipDuration": {
6303
+ "type": "number"
6304
+ },
6305
+ "openCommand": {
6306
+ "anyOf": [
6307
+ {
6308
+ "additionalProperties": false,
6309
+ "properties": {
6310
+ "app": {
6311
+ "type": "string"
6312
+ },
6313
+ "args": {
6314
+ "items": {
6315
+ "type": "string"
6316
+ },
6317
+ "type": "array"
6318
+ },
6319
+ "command": {
6320
+ "type": "string"
6321
+ },
6322
+ "url": {
6323
+ "type": "string"
6324
+ }
6325
+ },
6326
+ "type": "object"
6327
+ },
6328
+ {
6329
+ "type": "string"
6330
+ }
6331
+ ]
6332
+ },
6333
+ "placeholder": {
6334
+ "type": "string"
6335
+ },
6336
+ "playbackRates": {
6337
+ "items": {
6338
+ "type": "number"
6339
+ },
6340
+ "type": "array"
6341
+ },
6342
+ "rewindStep": {
6343
+ "type": "number"
6344
+ },
6345
+ "stepManyFrames": {
6346
+ "type": "number"
6347
+ },
6348
+ "subtitleTemplateId": {
6349
+ "type": "string"
6350
+ },
6351
+ "subtitles": {
6352
+ "additionalProperties": false,
6353
+ "properties": {
6354
+ "aspectRatios": {
6355
+ "items": {
6356
+ "additionalProperties": false,
6357
+ "properties": {
6358
+ "aspectRatio": {
6359
+ "description": "aspect ratio in the form of \"width:height\"",
6360
+ "type": "string"
6361
+ },
6362
+ "maxCharactersPerLine": {
6363
+ "type": "number"
6364
+ },
6365
+ "style": {
6366
+ "type": "string"
6367
+ }
6368
+ },
6369
+ "type": "object"
6370
+ },
6371
+ "type": "array"
6372
+ },
6373
+ "maxCharactersPerLine": {
6374
+ "type": "number"
6375
+ },
6376
+ "spacing": {
6377
+ "type": "number"
6378
+ }
6379
+ },
6380
+ "required": [
6381
+ "maxCharactersPerLine",
6382
+ "spacing"
6383
+ ],
6384
+ "type": "object"
6385
+ },
6386
+ "tile": {
6387
+ "additionalProperties": false,
6388
+ "properties": {
6389
+ "preview": {
6390
+ "enum": [
6391
+ "disabled",
6392
+ false,
6393
+ "play",
6394
+ "seek",
6395
+ "seekplay",
6396
+ true
6397
+ ]
6398
+ },
6399
+ "showRenderProgress": {
6400
+ "type": "boolean"
6401
+ }
6402
+ },
6403
+ "required": [
6404
+ "preview",
6405
+ "showRenderProgress"
5864
6406
  ],
5865
6407
  "type": "object"
6408
+ },
6409
+ "timecodeReference": {
6410
+ "type": "string"
6411
+ },
6412
+ "transcribe": {
6413
+ "additionalProperties": false,
6414
+ "properties": {
6415
+ "subtitleDisclaimer": {
6416
+ "additionalProperties": false,
6417
+ "properties": {
6418
+ "defaultValue": {
6419
+ "additionalProperties": false,
6420
+ "properties": {
6421
+ "duration": {
6422
+ "type": "number"
6423
+ },
6424
+ "enabled": {
6425
+ "const": false,
6426
+ "type": "boolean"
6427
+ },
6428
+ "offset": {
6429
+ "type": "number"
6430
+ },
6431
+ "text": {
6432
+ "items": {
6433
+ "additionalProperties": false,
6434
+ "properties": {
6435
+ "language": {
6436
+ "type": "string"
6437
+ },
6438
+ "value": {
6439
+ "type": "string"
6440
+ }
6441
+ },
6442
+ "required": [
6443
+ "language",
6444
+ "value"
6445
+ ],
6446
+ "type": "object"
6447
+ },
6448
+ "type": "array"
6449
+ }
6450
+ },
6451
+ "type": "object"
6452
+ },
6453
+ "isUserConfigurable": {
6454
+ "type": "boolean"
6455
+ }
6456
+ },
6457
+ "type": "object"
6458
+ }
6459
+ },
6460
+ "type": "object"
5866
6461
  }
5867
6462
  },
5868
6463
  "required": [
5869
- "engines",
5870
- "languages"
6464
+ "defaultFrameRate",
6465
+ "download",
6466
+ "editMode",
6467
+ "forwardStep",
6468
+ "guides",
6469
+ "importTitleTemplate",
6470
+ "initialVolume",
6471
+ "interlacedPlayback",
6472
+ "liveZoomDuration",
6473
+ "maxSubclipDuration",
6474
+ "playbackRates",
6475
+ "rewindStep",
6476
+ "stepManyFrames",
6477
+ "subtitles",
6478
+ "tile",
6479
+ "timecodeReference"
5871
6480
  ],
5872
6481
  "type": "object"
5873
- }
5874
- },
5875
- "required": [
5876
- ":permission",
5877
- "asset-daemon",
5878
- "asset-daemon:user-notify.state",
5879
- "asset.assignees",
5880
- "asset.clone",
5881
- "asset.deadlines",
5882
- "asset.duration",
5883
- "asset.embedding",
5884
- "asset.icon",
5885
- "asset.locations",
5886
- "asset.media",
5887
- "asset.tags",
5888
- "asset.title",
5889
- "asset.types",
5890
- "deepstream-replicator.stats?",
5891
- "hub-transcribe:render-profile",
5892
- "media.consolidate",
5893
- "media.subtitles?",
5894
- "media.transcribe?"
5895
- ],
5896
- "type": "object"
5897
- },
5898
- "RemoveOperation": {
5899
- "additionalProperties": false,
5900
- "properties": {
5901
- "op": {
5902
- "const": "remove",
5903
- "type": "string"
5904
6482
  },
5905
- "path": {
5906
- "type": "string"
5907
- }
5908
- },
5909
- "required": [
5910
- "op",
5911
- "path"
5912
- ],
5913
- "type": "object"
5914
- },
5915
- "RenderDomainQueryRecord": {
5916
- "additionalProperties": false,
5917
- "properties": {
5918
- "description": {
6483
+ "module": {
5919
6484
  "additionalProperties": false,
5920
6485
  "properties": {
5921
- "profile": {
5922
- "$ref": "#/definitions/RenderProfileObject"
5923
- },
5924
- "scene": {
5925
- "$ref": "#/definitions/RenderSceneObject"
6486
+ "tabs": {
6487
+ "$ref": "#/definitions/ModuleTabs"
5926
6488
  }
5927
6489
  },
5928
- "required": [
5929
- "profile",
5930
- "scene"
5931
- ],
5932
6490
  "type": "object"
5933
6491
  },
5934
- "parent": {
5935
- "type": "string"
5936
- },
5937
- "title": {
5938
- "type": "string"
5939
- },
5940
- "type": {
5941
- "type": "string"
5942
- }
5943
- },
5944
- "required": [
5945
- "description",
5946
- "title",
5947
- "type"
5948
- ],
5949
- "type": "object"
5950
- },
5951
- "RenderDomainResultRecord": {
5952
- "additionalProperties": {},
5953
- "properties": {
5954
- "error": {
5955
- "anyOf": [
5956
- {
5957
- "$ref": "#/definitions/Record<string,unknown>"
5958
- },
5959
- {
5960
- "items": {
5961
- "$ref": "#/definitions/Record<string,unknown>"
6492
+ "notifications": {
6493
+ "additionalProperties": false,
6494
+ "properties": {
6495
+ "events": {
6496
+ "additionalProperties": false,
6497
+ "properties": {
6498
+ "assigned": {
6499
+ "items": {
6500
+ "$ref": "#/definitions/NotificationReason"
6501
+ },
6502
+ "type": "array"
6503
+ },
6504
+ "comment": {
6505
+ "items": {
6506
+ "$ref": "#/definitions/NotificationReason"
6507
+ },
6508
+ "type": "array"
6509
+ },
6510
+ "publishSucceeded": {
6511
+ "additionalProperties": {
6512
+ "items": {
6513
+ "$ref": "#/definitions/NotificationReason"
6514
+ },
6515
+ "type": "array"
6516
+ },
6517
+ "type": "object"
6518
+ },
6519
+ "unassigned": {
6520
+ "items": {
6521
+ "$ref": "#/definitions/NotificationReason"
6522
+ },
6523
+ "type": "array"
6524
+ }
5962
6525
  },
5963
- "type": "array"
6526
+ "required": [
6527
+ "assigned",
6528
+ "comment",
6529
+ "publishSucceeded",
6530
+ "unassigned"
6531
+ ],
6532
+ "type": "object"
5964
6533
  }
5965
- ]
6534
+ },
6535
+ "required": [
6536
+ "events"
6537
+ ],
6538
+ "type": "object"
5966
6539
  },
5967
- "result": {},
5968
- "url": {
5969
- "type": "string"
5970
- }
5971
- },
5972
- "type": "object"
5973
- },
5974
- "RenderDomainStatsRecord": {
5975
- "additionalProperties": false,
5976
- "properties": {
5977
- "error": {
5978
- "items": {
5979
- "$ref": "#/definitions/Record<string,unknown>"
5980
- },
5981
- "type": "array"
5982
- },
5983
- "progress": {
5984
- "type": "number"
5985
- },
5986
- "status": {
5987
- "type": "string"
5988
- }
5989
- },
5990
- "type": "object"
5991
- },
5992
- "RenderPreset": {
5993
- "anyOf": [
5994
- {
5995
- "$ref": "#/definitions/RenderPresetObject"
5996
- },
5997
- {
5998
- "type": "string"
5999
- }
6000
- ]
6001
- },
6002
- "RenderPresetObject": {
6003
- "additionalProperties": false,
6004
- "properties": {
6005
- "profile": {
6006
- "$ref": "#/definitions/RenderProfile"
6007
- },
6008
- "type": {
6009
- "type": "string"
6010
- }
6011
- },
6012
- "required": [
6013
- "profile",
6014
- "type"
6015
- ],
6016
- "type": "object"
6017
- },
6018
- "RenderProfile": {
6019
- "anyOf": [
6020
- {
6021
- "$ref": "#/definitions/RenderProfileObject"
6022
- },
6023
- {
6024
- "items": {
6025
- "anyOf": [
6026
- {
6027
- "$ref": "#/definitions/RenderProfileObject"
6028
- },
6029
- {
6030
- "type": "string"
6031
- }
6032
- ]
6033
- },
6034
- "type": "array"
6035
- },
6036
- {
6037
- "type": "string"
6038
- }
6039
- ]
6040
- },
6041
- "RenderProfileObject": {
6042
- "additionalProperties": false,
6043
- "properties": {
6044
- "audio": {
6045
- "additionalProperties": false,
6046
- "properties": {
6047
- "pan": {
6048
- "type": "string"
6049
- }
6050
- },
6051
- "type": "object"
6052
- },
6053
- "format": {
6054
- "type": "string"
6055
- },
6056
- "pick": {
6057
- "items": {
6058
- "type": "string"
6059
- },
6060
- "type": "array"
6061
- },
6062
- "transcribe": {
6540
+ "permission": {
6063
6541
  "additionalProperties": false,
6064
6542
  "properties": {
6065
- "engine": {
6066
- "type": "string"
6543
+ "overrideUserContact": {
6544
+ "type": "boolean"
6545
+ },
6546
+ "overrideUserLogin": {
6547
+ "type": "boolean"
6067
6548
  }
6068
6549
  },
6069
6550
  "required": [
6070
- "engine"
6551
+ "overrideUserContact",
6552
+ "overrideUserLogin"
6071
6553
  ],
6072
6554
  "type": "object"
6073
6555
  },
6074
- "translate": {
6556
+ "plugins": {
6075
6557
  "additionalProperties": false,
6076
6558
  "properties": {
6077
- "language": {
6078
- "type": "string"
6559
+ "adobe": {
6560
+ "additionalProperties": false,
6561
+ "properties": {
6562
+ "useProxies": {
6563
+ "type": "boolean"
6564
+ }
6565
+ },
6566
+ "required": [
6567
+ "useProxies"
6568
+ ],
6569
+ "type": "object"
6570
+ },
6571
+ "rive": {
6572
+ "additionalProperties": false,
6573
+ "properties": {
6574
+ "template": {
6575
+ "type": "string"
6576
+ }
6577
+ },
6578
+ "type": "object"
6079
6579
  }
6080
6580
  },
6081
6581
  "required": [
6082
- "language"
6582
+ "adobe"
6083
6583
  ],
6084
6584
  "type": "object"
6085
6585
  },
6086
- "video": {}
6087
- },
6088
- "required": [
6089
- "format"
6090
- ],
6091
- "type": "object"
6092
- },
6093
- "RenderSceneObject": {
6094
- "additionalProperties": false,
6095
- "properties": {
6096
- "end": {
6097
- "type": "number"
6098
- },
6099
- "id": {
6100
- "type": "string"
6586
+ "predefinedTags": {
6587
+ "items": {
6588
+ "type": "string"
6589
+ },
6590
+ "type": "array"
6101
6591
  },
6102
- "input": {
6592
+ "rundown": {
6103
6593
  "additionalProperties": false,
6104
6594
  "properties": {
6105
- "file": {
6106
- "type": "string"
6107
- },
6108
- "type": {
6109
- "type": "string"
6595
+ "eventThumbnails": {
6596
+ "type": "boolean"
6110
6597
  }
6111
6598
  },
6599
+ "required": [
6600
+ "eventThumbnails"
6601
+ ],
6112
6602
  "type": "object"
6113
6603
  },
6114
- "lang": {
6115
- "type": "string"
6116
- },
6117
- "preset": {
6118
- "type": "string"
6119
- },
6120
- "start": {
6121
- "type": "number"
6122
- },
6123
- "subtitle": {
6124
- "type": "string"
6125
- },
6126
- "transcribe": {
6604
+ "script": {
6127
6605
  "additionalProperties": false,
6128
6606
  "properties": {
6129
- "language": {
6130
- "type": "string"
6131
- },
6132
- "pan": {
6607
+ "colorTags": {
6133
6608
  "items": {
6134
- "type": "number"
6609
+ "$ref": "#/definitions/PromotedTag"
6135
6610
  },
6136
6611
  "type": "array"
6137
- }
6138
- },
6139
- "type": "object"
6140
- },
6141
- "video": {
6142
- "additionalProperties": false,
6143
- "properties": {
6144
- "crop": {
6612
+ },
6613
+ "createMenu": {
6145
6614
  "additionalProperties": false,
6146
6615
  "properties": {
6147
- "height": {
6148
- "type": "number"
6149
- },
6150
- "width": {
6151
- "type": "number"
6152
- },
6153
- "x": {
6154
- "type": "number"
6155
- },
6156
- "y": {
6157
- "type": "number"
6616
+ "showPreview": {
6617
+ "type": "boolean"
6158
6618
  }
6159
6619
  },
6620
+ "required": [
6621
+ "showPreview"
6622
+ ],
6160
6623
  "type": "object"
6161
6624
  }
6162
6625
  },
6626
+ "required": [
6627
+ "colorTags",
6628
+ "createMenu"
6629
+ ],
6163
6630
  "type": "object"
6164
- }
6165
- },
6166
- "type": "object"
6167
- },
6168
- "ReplaceOperation": {
6169
- "additionalProperties": false,
6170
- "properties": {
6171
- "op": {
6172
- "const": "replace",
6173
- "type": "string"
6174
- },
6175
- "path": {
6176
- "type": "string"
6177
- },
6178
- "value": {}
6179
- },
6180
- "required": [
6181
- "op",
6182
- "path",
6183
- "value"
6184
- ],
6185
- "type": "object"
6186
- },
6187
- "ReutersConnectionRecord": {
6188
- "additionalProperties": false,
6189
- "properties": {
6190
- "audience": {
6191
- "type": "string"
6192
- },
6193
- "clientId": {
6194
- "type": "string"
6195
- },
6196
- "clientSecret": {
6197
- "type": "string"
6198
- },
6199
- "type": {
6200
- "const": "reuters",
6201
- "type": "string"
6202
6631
  },
6203
- "userNotificationsEnabled": {
6204
- "type": "boolean"
6205
- }
6206
- },
6207
- "required": [
6208
- "type"
6209
- ],
6210
- "type": "object"
6211
- },
6212
- "RevsRecord": {
6213
- "additionalProperties": false,
6214
- "properties": {
6215
- "value": {
6216
- "items": {
6217
- "type": "string"
6218
- },
6219
- "type": "array"
6220
- }
6221
- },
6222
- "type": "object"
6223
- },
6224
- "RoleTagsRecord": {
6225
- "additionalProperties": false,
6226
- "properties": {
6227
- "value": {
6228
- "items": {
6229
- "type": "string"
6230
- },
6231
- "type": "array"
6232
- }
6233
- },
6234
- "required": [
6235
- "value"
6236
- ],
6237
- "type": "object"
6238
- },
6239
- "RpcPermission": {
6240
- "additionalProperties": false,
6241
- "properties": {
6242
- "method": {
6243
- "type": "string"
6244
- },
6245
- "type": {
6246
- "const": "rpc",
6247
- "type": "string"
6248
- }
6249
- },
6250
- "required": [
6251
- "method",
6252
- "type"
6253
- ],
6254
- "type": "object"
6255
- },
6256
- "SaveDialogOptions": {
6257
- "additionalProperties": false,
6258
- "properties": {
6259
- "buttonLabel": {
6260
- "type": "string"
6261
- },
6262
- "defaultDirectory": {
6263
- "type": "string"
6264
- },
6265
- "defaultFilename": {
6266
- "type": "string"
6267
- },
6268
- "defaultPath": {
6269
- "description": "If present, defaultDirectory and defaultFilename will be ignored.",
6270
- "type": "string"
6271
- },
6272
- "filters": {
6273
- "items": {
6274
- "additionalProperties": false,
6275
- "properties": {
6276
- "extensions": {
6277
- "items": {
6278
- "type": "string"
6632
+ "storyboard": {
6633
+ "additionalProperties": false,
6634
+ "properties": {
6635
+ "assets": {
6636
+ "additionalProperties": false,
6637
+ "properties": {
6638
+ "note": {
6639
+ "additionalProperties": false,
6640
+ "properties": {
6641
+ "maxHeight": {
6642
+ "type": "number"
6643
+ }
6644
+ },
6645
+ "type": "object"
6279
6646
  },
6280
- "type": "array"
6281
- },
6282
- "name": {
6283
- "type": "string"
6284
- }
6285
- },
6286
- "required": [
6287
- "extensions",
6288
- "name"
6289
- ],
6290
- "type": "object"
6291
- },
6292
- "type": "array"
6293
- },
6294
- "message": {
6295
- "type": "string"
6296
- },
6297
- "nameFieldLabel": {
6298
- "type": "string"
6299
- },
6300
- "properties": {
6301
- "items": {
6302
- "enum": [
6303
- "createDirectory",
6304
- "dontAddToRecent",
6305
- "showHiddenFiles",
6306
- "showOverwriteConfirmation",
6307
- "treatPackageAsDirectory"
6308
- ],
6309
- "type": "string"
6310
- },
6311
- "type": "array"
6312
- },
6313
- "securityScopedBookmarks": {
6314
- "type": "boolean"
6315
- },
6316
- "showsTagField": {
6317
- "type": "boolean"
6318
- },
6319
- "title": {
6320
- "type": "string"
6321
- }
6322
- },
6323
- "type": "object"
6324
- },
6325
- "ScriptChildrenRecord": {
6326
- "additionalProperties": false,
6327
- "properties": {
6328
- "value": {
6329
- "items": {
6330
- "type": "string"
6331
- },
6332
- "type": "array"
6333
- }
6334
- },
6335
- "type": "object"
6336
- },
6337
- "SearchRecord": {
6338
- "additionalProperties": false,
6339
- "properties": {
6340
- "error": {
6341
- "type": "string"
6342
- },
6343
- "hits": {
6344
- "items": {
6345
- "type": "string"
6346
- },
6347
- "type": "array"
6348
- },
6349
- "relation": {
6350
- "type": "string"
6351
- },
6352
- "total": {
6353
- "type": "number"
6354
- }
6355
- },
6356
- "required": [
6357
- "hits"
6358
- ],
6359
- "type": "object"
6360
- },
6361
- "SerializedAutoLinkNode": {
6362
- "additionalProperties": false,
6363
- "properties": {
6364
- "type": {
6365
- "const": "autolink",
6366
- "type": "string"
6367
- },
6368
- "url": {
6369
- "type": "string"
6370
- },
6371
- "version": {
6372
- "const": 1,
6373
- "type": "number"
6374
- }
6375
- },
6376
- "required": [
6377
- "type",
6378
- "url",
6379
- "version"
6380
- ],
6381
- "type": "object"
6382
- },
6383
- "SerializedEmojiNode": {
6384
- "additionalProperties": false,
6385
- "properties": {
6386
- "emojiId": {
6387
- "type": "string"
6388
- },
6389
- "type": {
6390
- "const": "emoji",
6391
- "type": "string"
6392
- },
6393
- "version": {
6394
- "const": 1,
6395
- "type": "number"
6396
- }
6397
- },
6398
- "required": [
6399
- "emojiId",
6400
- "type",
6401
- "version"
6402
- ],
6403
- "type": "object"
6404
- },
6405
- "SerializedLineBreakNode": {
6406
- "additionalProperties": false,
6407
- "properties": {
6408
- "type": {
6409
- "const": "linebreak",
6410
- "type": "string"
6411
- },
6412
- "version": {
6413
- "const": 1,
6414
- "type": "number"
6415
- }
6416
- },
6417
- "required": [
6418
- "type",
6419
- "version"
6420
- ],
6421
- "type": "object"
6422
- },
6423
- "SerializedMentionNode": {
6424
- "additionalProperties": false,
6425
- "properties": {
6426
- "detail": {
6427
- "type": "number"
6428
- },
6429
- "format": {
6430
- "type": "number"
6431
- },
6432
- "mentionId": {
6433
- "type": "string"
6434
- },
6435
- "mode": {
6436
- "type": "string"
6437
- },
6438
- "style": {
6439
- "type": "string"
6440
- },
6441
- "text": {
6442
- "type": "string"
6443
- },
6444
- "type": {
6445
- "const": "mention",
6446
- "type": "string"
6447
- },
6448
- "version": {
6449
- "const": 1,
6450
- "type": "number"
6451
- }
6452
- },
6453
- "required": [
6454
- "detail",
6455
- "format",
6456
- "mentionId",
6457
- "mode",
6458
- "style",
6459
- "text",
6460
- "type",
6461
- "version"
6462
- ],
6463
- "type": "object"
6464
- },
6465
- "SerializedNode": {
6466
- "anyOf": [
6467
- {
6468
- "$ref": "#/definitions/SerializedRootNode"
6469
- },
6470
- {
6471
- "$ref": "#/definitions/SerializedParagraphNode"
6472
- },
6473
- {
6474
- "$ref": "#/definitions/SerializedTextNode"
6475
- },
6476
- {
6477
- "$ref": "#/definitions/SerializedLineBreakNode"
6478
- },
6479
- {
6480
- "$ref": "#/definitions/SerializedMentionNode"
6481
- },
6482
- {
6483
- "$ref": "#/definitions/SerializedEmojiNode"
6484
- },
6485
- {
6486
- "$ref": "#/definitions/SerializedAutoLinkNode"
6487
- }
6488
- ]
6489
- },
6490
- "SerializedParagraphNode": {
6491
- "additionalProperties": false,
6492
- "properties": {
6493
- "children": {
6494
- "items": {
6495
- "$ref": "#/definitions/SerializedNode"
6647
+ "story": {
6648
+ "additionalProperties": false,
6649
+ "properties": {
6650
+ "excerpt": {
6651
+ "additionalProperties": false,
6652
+ "properties": {
6653
+ "maxLines": {
6654
+ "type": "number"
6655
+ },
6656
+ "mode": {
6657
+ "type": "string"
6658
+ }
6659
+ },
6660
+ "required": [
6661
+ "maxLines",
6662
+ "mode"
6663
+ ],
6664
+ "type": "object"
6665
+ }
6666
+ },
6667
+ "required": [
6668
+ "excerpt"
6669
+ ],
6670
+ "type": "object"
6671
+ }
6672
+ },
6673
+ "required": [
6674
+ "story"
6675
+ ],
6676
+ "type": "object"
6677
+ },
6678
+ "folded": {
6679
+ "additionalProperties": false,
6680
+ "properties": {
6681
+ "auto": {
6682
+ "type": "boolean"
6683
+ }
6684
+ },
6685
+ "type": "object"
6686
+ },
6687
+ "item": {
6688
+ "additionalProperties": false,
6689
+ "properties": {
6690
+ "maxHeight": {
6691
+ "type": "number"
6692
+ }
6693
+ },
6694
+ "required": [
6695
+ "maxHeight"
6696
+ ],
6697
+ "type": "object"
6698
+ },
6699
+ "pipeline": {
6700
+ "additionalProperties": false,
6701
+ "properties": {
6702
+ "search": {
6703
+ "additionalProperties": false,
6704
+ "properties": {
6705
+ "maxItemsDisplayed": {
6706
+ "type": "number"
6707
+ }
6708
+ },
6709
+ "required": [
6710
+ "maxItemsDisplayed"
6711
+ ],
6712
+ "type": "object"
6713
+ },
6714
+ "sortMode": {
6715
+ "$ref": "#/definitions/PipelineSortMode"
6716
+ }
6717
+ },
6718
+ "required": [
6719
+ "search",
6720
+ "sortMode"
6721
+ ],
6722
+ "type": "object"
6723
+ }
6496
6724
  },
6497
- "type": "array"
6498
- },
6499
- "direction": {
6500
- "enum": [
6501
- "ltr",
6502
- "rtl"
6725
+ "required": [
6726
+ "assets",
6727
+ "item",
6728
+ "pipeline"
6503
6729
  ],
6504
- "type": "string"
6505
- },
6506
- "format": {
6507
- "type": "string"
6508
- },
6509
- "indent": {
6510
- "type": "number"
6511
- },
6512
- "textFormat": {
6513
- "type": "number"
6514
- },
6515
- "textStyle": {
6516
- "type": "string"
6730
+ "type": "object"
6517
6731
  },
6518
- "type": {
6519
- "const": "paragraph",
6520
- "type": "string"
6732
+ "suppressDeleteAlert": {
6733
+ "type": "boolean"
6521
6734
  },
6522
- "version": {
6523
- "const": 1,
6524
- "type": "number"
6525
- }
6526
- },
6527
- "required": [
6528
- "children",
6529
- "direction",
6530
- "format",
6531
- "indent",
6532
- "textFormat",
6533
- "textStyle",
6534
- "type",
6535
- "version"
6536
- ],
6537
- "type": "object"
6538
- },
6539
- "SerializedRootNode": {
6540
- "additionalProperties": false,
6541
- "properties": {
6542
- "children": {
6543
- "items": {
6544
- "$ref": "#/definitions/SerializedNode"
6735
+ "swarm": {
6736
+ "additionalProperties": false,
6737
+ "properties": {
6738
+ "color": {
6739
+ "type": "string"
6740
+ },
6741
+ "name": {
6742
+ "type": "string"
6743
+ }
6545
6744
  },
6546
- "type": "array"
6745
+ "type": "object"
6547
6746
  },
6548
- "direction": {
6549
- "enum": [
6550
- "ltr",
6551
- "rtl"
6747
+ "toolbarTags": {
6748
+ "additionalProperties": false,
6749
+ "properties": {
6750
+ "exclude": {
6751
+ "items": {
6752
+ "type": "string"
6753
+ },
6754
+ "type": "array"
6755
+ }
6756
+ },
6757
+ "required": [
6758
+ "exclude"
6552
6759
  ],
6553
- "type": "string"
6554
- },
6555
- "format": {
6556
- "type": "string"
6557
- },
6558
- "indent": {
6559
- "type": "number"
6560
- },
6561
- "type": {
6562
- "const": "root",
6563
- "type": "string"
6760
+ "type": "object"
6564
6761
  },
6565
- "version": {
6566
- "const": 1,
6567
- "type": "number"
6762
+ "upload": {
6763
+ "additionalProperties": false,
6764
+ "properties": {
6765
+ "defaultGrouping": {
6766
+ "enum": [
6767
+ "",
6768
+ "collection",
6769
+ "stitch"
6770
+ ],
6771
+ "type": "string"
6772
+ },
6773
+ "displayUploadFilesDialog": {
6774
+ "enum": [
6775
+ "always",
6776
+ "ifMultipleFiles",
6777
+ "never"
6778
+ ],
6779
+ "type": "string"
6780
+ },
6781
+ "hideStoryboardCollection": {
6782
+ "type": "boolean"
6783
+ }
6784
+ },
6785
+ "type": "object"
6568
6786
  }
6569
6787
  },
6570
- "required": [
6571
- "children",
6572
- "direction",
6573
- "format",
6574
- "indent",
6575
- "type",
6576
- "version"
6577
- ],
6578
6788
  "type": "object"
6579
6789
  },
6580
- "SerializedTextNode": {
6790
+ "SettingsPanelStoreTab": {
6581
6791
  "additionalProperties": false,
6582
6792
  "properties": {
6583
- "detail": {
6584
- "type": "number"
6585
- },
6586
- "format": {
6793
+ "activeSectionIndex": {
6587
6794
  "type": "number"
6588
6795
  },
6589
- "mode": {
6590
- "type": "string"
6591
- },
6592
- "style": {
6593
- "type": "string"
6594
- },
6595
- "text": {
6596
- "type": "string"
6597
- },
6598
- "type": {
6599
- "const": "text",
6796
+ "activeTab": {
6600
6797
  "type": "string"
6601
- },
6602
- "version": {
6603
- "const": 1,
6604
- "type": "number"
6605
6798
  }
6606
6799
  },
6607
6800
  "required": [
6608
- "detail",
6609
- "format",
6610
- "mode",
6611
- "style",
6612
- "text",
6613
- "type",
6614
- "version"
6801
+ "activeSectionIndex",
6802
+ "activeTab"
6615
6803
  ],
6616
6804
  "type": "object"
6617
6805
  },
@@ -6659,6 +6847,97 @@
6659
6847
  },
6660
6848
  "type": "object"
6661
6849
  },
6850
+ "SubtitleEventStyleOverrides": {
6851
+ "additionalProperties": false,
6852
+ "properties": {
6853
+ "alignment": {
6854
+ "type": "string"
6855
+ },
6856
+ "backColour": {
6857
+ "type": "string"
6858
+ },
6859
+ "bold": {
6860
+ "type": "string"
6861
+ },
6862
+ "fontname": {
6863
+ "type": "string"
6864
+ },
6865
+ "fontsize": {
6866
+ "type": "string"
6867
+ },
6868
+ "italic": {
6869
+ "type": "string"
6870
+ },
6871
+ "marginL": {
6872
+ "type": "string"
6873
+ },
6874
+ "marginR": {
6875
+ "type": "string"
6876
+ },
6877
+ "marginV": {
6878
+ "type": "string"
6879
+ },
6880
+ "outlineColour": {
6881
+ "type": "string"
6882
+ },
6883
+ "primaryColour": {
6884
+ "type": "string"
6885
+ },
6886
+ "secondaryColour": {
6887
+ "type": "string"
6888
+ },
6889
+ "strikeOut": {
6890
+ "type": "string"
6891
+ },
6892
+ "underline": {
6893
+ "type": "string"
6894
+ }
6895
+ },
6896
+ "type": "object"
6897
+ },
6898
+ "SubtitleFontFace": {
6899
+ "additionalProperties": false,
6900
+ "properties": {
6901
+ "asset": {
6902
+ "type": "string"
6903
+ },
6904
+ "family": {
6905
+ "type": "string"
6906
+ },
6907
+ "style": {
6908
+ "enum": [
6909
+ "italic",
6910
+ "normal"
6911
+ ],
6912
+ "type": "string"
6913
+ },
6914
+ "weight": {
6915
+ "enum": [
6916
+ "bold",
6917
+ "normal"
6918
+ ],
6919
+ "type": "string"
6920
+ }
6921
+ },
6922
+ "required": [
6923
+ "family"
6924
+ ],
6925
+ "type": "object"
6926
+ },
6927
+ "SubtitleProfile": {
6928
+ "additionalProperties": false,
6929
+ "properties": {
6930
+ "lang": {
6931
+ "description": "Corresponds to a key in `media.subtitles?#languages`, or '_all' to render all languages.",
6932
+ "type": "string"
6933
+ },
6934
+ "style": {
6935
+ "description": "Will pick styling from the corresponding `${style}:subtitle-style` asset.",
6936
+ "type": "string"
6937
+ }
6938
+ },
6939
+ "type": "object"
6940
+ },
6662
6941
  "SubtitleStyleDomainRecord": {
6663
6942
  "additionalProperties": false,
6664
6943
  "properties": {