@nxtedition/types 23.0.13 → 23.0.15
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 +11 -1
- package/dist/app.js +177 -10
- package/dist/common/settings.d.ts +7 -4
- package/dist/common/settings.js +468 -393
- package/dist/domains/comment.d.ts +1 -1
- package/dist/domains/comment.js +16 -15
- package/dist/domains/settings.js +466 -389
- package/dist/schema.json +39 -1
- package/package.json +1 -1
package/dist/schema.json
CHANGED
|
@@ -1643,7 +1643,9 @@
|
|
|
1643
1643
|
"ElectronHubApi": {
|
|
1644
1644
|
"additionalProperties": false,
|
|
1645
1645
|
"properties": {
|
|
1646
|
-
"clipboard": {
|
|
1646
|
+
"clipboard": {
|
|
1647
|
+
"$ref": "#/definitions/ElectronHubApiClipboard"
|
|
1648
|
+
},
|
|
1647
1649
|
"controlDownloadItem": {
|
|
1648
1650
|
"additionalProperties": false,
|
|
1649
1651
|
"type": "object"
|
|
@@ -1720,6 +1722,24 @@
|
|
|
1720
1722
|
],
|
|
1721
1723
|
"type": "object"
|
|
1722
1724
|
},
|
|
1725
|
+
"ElectronHubApiClipboard": {
|
|
1726
|
+
"additionalProperties": false,
|
|
1727
|
+
"properties": {
|
|
1728
|
+
"readText": {
|
|
1729
|
+
"additionalProperties": false,
|
|
1730
|
+
"type": "object"
|
|
1731
|
+
},
|
|
1732
|
+
"writeText": {
|
|
1733
|
+
"additionalProperties": false,
|
|
1734
|
+
"type": "object"
|
|
1735
|
+
}
|
|
1736
|
+
},
|
|
1737
|
+
"required": [
|
|
1738
|
+
"readText",
|
|
1739
|
+
"writeText"
|
|
1740
|
+
],
|
|
1741
|
+
"type": "object"
|
|
1742
|
+
},
|
|
1723
1743
|
"EventDomainRecords": {
|
|
1724
1744
|
"additionalProperties": false,
|
|
1725
1745
|
"properties": {
|
|
@@ -3036,6 +3056,9 @@
|
|
|
3036
3056
|
"debug": {
|
|
3037
3057
|
"type": "boolean"
|
|
3038
3058
|
},
|
|
3059
|
+
"edit": {
|
|
3060
|
+
"$ref": "#/definitions/PartialObjectDeep<{thumbnailView:\"none\"|\"filmStrip\"|\"thumbnail\";},{}>"
|
|
3061
|
+
},
|
|
3039
3062
|
"events": {
|
|
3040
3063
|
"$ref": "#/definitions/PartialObjectDeep<{graphicBaseTemplate?:string;},{}>"
|
|
3041
3064
|
},
|
|
@@ -3729,6 +3752,21 @@
|
|
|
3729
3752
|
},
|
|
3730
3753
|
"type": "object"
|
|
3731
3754
|
},
|
|
3755
|
+
"PartialObjectDeep<{thumbnailView:\"none\"|\"filmStrip\"|\"thumbnail\";},{}>": {
|
|
3756
|
+
"additionalProperties": false,
|
|
3757
|
+
"description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
|
|
3758
|
+
"properties": {
|
|
3759
|
+
"thumbnailView": {
|
|
3760
|
+
"enum": [
|
|
3761
|
+
"filmStrip",
|
|
3762
|
+
"none",
|
|
3763
|
+
"thumbnail"
|
|
3764
|
+
],
|
|
3765
|
+
"type": "string"
|
|
3766
|
+
}
|
|
3767
|
+
},
|
|
3768
|
+
"type": "object"
|
|
3769
|
+
},
|
|
3732
3770
|
"PartialObjectDeep<{url?:string;command?:string;app?:string;args?:string[];},{}>": {
|
|
3733
3771
|
"additionalProperties": false,
|
|
3734
3772
|
"description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
|