@nxtedition/types 23.0.13 → 23.0.14
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 +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 +18 -0
- package/package.json +1 -1
package/dist/schema.json
CHANGED
|
@@ -3036,6 +3036,9 @@
|
|
|
3036
3036
|
"debug": {
|
|
3037
3037
|
"type": "boolean"
|
|
3038
3038
|
},
|
|
3039
|
+
"edit": {
|
|
3040
|
+
"$ref": "#/definitions/PartialObjectDeep<{thumbnailView:\"none\"|\"filmStrip\"|\"thumbnail\";},{}>"
|
|
3041
|
+
},
|
|
3039
3042
|
"events": {
|
|
3040
3043
|
"$ref": "#/definitions/PartialObjectDeep<{graphicBaseTemplate?:string;},{}>"
|
|
3041
3044
|
},
|
|
@@ -3729,6 +3732,21 @@
|
|
|
3729
3732
|
},
|
|
3730
3733
|
"type": "object"
|
|
3731
3734
|
},
|
|
3735
|
+
"PartialObjectDeep<{thumbnailView:\"none\"|\"filmStrip\"|\"thumbnail\";},{}>": {
|
|
3736
|
+
"additionalProperties": false,
|
|
3737
|
+
"description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
|
|
3738
|
+
"properties": {
|
|
3739
|
+
"thumbnailView": {
|
|
3740
|
+
"enum": [
|
|
3741
|
+
"filmStrip",
|
|
3742
|
+
"none",
|
|
3743
|
+
"thumbnail"
|
|
3744
|
+
],
|
|
3745
|
+
"type": "string"
|
|
3746
|
+
}
|
|
3747
|
+
},
|
|
3748
|
+
"type": "object"
|
|
3749
|
+
},
|
|
3732
3750
|
"PartialObjectDeep<{url?:string;command?:string;app?:string;args?:string[];},{}>": {
|
|
3733
3751
|
"additionalProperties": false,
|
|
3734
3752
|
"description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
|