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