@nxtedition/types 23.0.18 → 23.0.19
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/common/settings.d.ts +11 -4
- package/dist/common/settings.js +541 -408
- package/dist/domains/comment.d.ts +2 -2
- package/dist/domains/comment.js +299 -123
- package/dist/domains/settings.js +543 -403
- package/dist/schema.json +39 -2
- package/package.json +1 -1
package/dist/schema.json
CHANGED
|
@@ -3057,7 +3057,7 @@
|
|
|
3057
3057
|
"type": "boolean"
|
|
3058
3058
|
},
|
|
3059
3059
|
"edit": {
|
|
3060
|
-
"$ref": "#/definitions/PartialObjectDeep<{thumbnailView:\"none\"|\"filmStrip\"|\"thumbnail\";},{}>"
|
|
3060
|
+
"$ref": "#/definitions/PartialObjectDeep<{thumbnailView:\"none\"|\"filmStrip\"|\"thumbnail\";voiceOver:{inputDevice?:string;inputGainDb:number;backgroundReductionDb:number;recordMode:\"instant\"|\"punchAndRoll\";preRollDuration:number;};},{}>"
|
|
3061
3061
|
},
|
|
3062
3062
|
"events": {
|
|
3063
3063
|
"$ref": "#/definitions/PartialObjectDeep<{graphicBaseTemplate?:string;},{}>"
|
|
@@ -3458,6 +3458,32 @@
|
|
|
3458
3458
|
},
|
|
3459
3459
|
"type": "object"
|
|
3460
3460
|
},
|
|
3461
|
+
"PartialObjectDeep<{inputDevice?:string;inputGainDb:number;backgroundReductionDb:number;recordMode:\"instant\"|\"punchAndRoll\";preRollDuration:number;},{}>": {
|
|
3462
|
+
"additionalProperties": false,
|
|
3463
|
+
"description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
|
|
3464
|
+
"properties": {
|
|
3465
|
+
"backgroundReductionDb": {
|
|
3466
|
+
"type": "number"
|
|
3467
|
+
},
|
|
3468
|
+
"inputDevice": {
|
|
3469
|
+
"type": "string"
|
|
3470
|
+
},
|
|
3471
|
+
"inputGainDb": {
|
|
3472
|
+
"type": "number"
|
|
3473
|
+
},
|
|
3474
|
+
"preRollDuration": {
|
|
3475
|
+
"type": "number"
|
|
3476
|
+
},
|
|
3477
|
+
"recordMode": {
|
|
3478
|
+
"enum": [
|
|
3479
|
+
"instant",
|
|
3480
|
+
"punchAndRoll"
|
|
3481
|
+
],
|
|
3482
|
+
"type": "string"
|
|
3483
|
+
}
|
|
3484
|
+
},
|
|
3485
|
+
"type": "object"
|
|
3486
|
+
},
|
|
3461
3487
|
"PartialObjectDeep<{isUserConfigurable?:boolean;defaultValue?:{enabled?:false;text?:{language:string;value:string;}[];offset?:number;duration?:number;};},{}>": {
|
|
3462
3488
|
"additionalProperties": false,
|
|
3463
3489
|
"description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
|
|
@@ -3752,7 +3778,7 @@
|
|
|
3752
3778
|
},
|
|
3753
3779
|
"type": "object"
|
|
3754
3780
|
},
|
|
3755
|
-
"PartialObjectDeep<{thumbnailView:\"none\"|\"filmStrip\"|\"thumbnail\";},{}>": {
|
|
3781
|
+
"PartialObjectDeep<{thumbnailView:\"none\"|\"filmStrip\"|\"thumbnail\";voiceOver:{inputDevice?:string;inputGainDb:number;backgroundReductionDb:number;recordMode:\"instant\"|\"punchAndRoll\";preRollDuration:number;};},{}>": {
|
|
3756
3782
|
"additionalProperties": false,
|
|
3757
3783
|
"description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
|
|
3758
3784
|
"properties": {
|
|
@@ -3763,6 +3789,9 @@
|
|
|
3763
3789
|
"thumbnail"
|
|
3764
3790
|
],
|
|
3765
3791
|
"type": "string"
|
|
3792
|
+
},
|
|
3793
|
+
"voiceOver": {
|
|
3794
|
+
"$ref": "#/definitions/PartialObjectDeep<{inputDevice?:string;inputGainDb:number;backgroundReductionDb:number;recordMode:\"instant\"|\"punchAndRoll\";preRollDuration:number;},{}>"
|
|
3766
3795
|
}
|
|
3767
3796
|
},
|
|
3768
3797
|
"type": "object"
|
|
@@ -4829,6 +4858,10 @@
|
|
|
4829
4858
|
"type": "array"
|
|
4830
4859
|
},
|
|
4831
4860
|
"direction": {
|
|
4861
|
+
"enum": [
|
|
4862
|
+
"ltr",
|
|
4863
|
+
"rtl"
|
|
4864
|
+
],
|
|
4832
4865
|
"type": "string"
|
|
4833
4866
|
},
|
|
4834
4867
|
"format": {
|
|
@@ -4874,6 +4907,10 @@
|
|
|
4874
4907
|
"type": "array"
|
|
4875
4908
|
},
|
|
4876
4909
|
"direction": {
|
|
4910
|
+
"enum": [
|
|
4911
|
+
"ltr",
|
|
4912
|
+
"rtl"
|
|
4913
|
+
],
|
|
4877
4914
|
"type": "string"
|
|
4878
4915
|
},
|
|
4879
4916
|
"format": {
|