@nxtedition/types 23.0.27 → 23.0.30
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/file.d.ts +2 -1
- package/dist/common/file.js +89 -54
- package/dist/common/settings.d.ts +5 -4
- package/dist/common/settings.js +40 -23
- package/dist/domains/file.js +89 -54
- package/dist/domains/settings.js +22 -6
- package/dist/schema.json +69 -0
- package/package.json +1 -1
package/dist/schema.json
CHANGED
|
@@ -3012,6 +3012,71 @@
|
|
|
3012
3012
|
},
|
|
3013
3013
|
"type": "object"
|
|
3014
3014
|
},
|
|
3015
|
+
"speed": {
|
|
3016
|
+
"additionalProperties": false,
|
|
3017
|
+
"properties": {
|
|
3018
|
+
"typia.tag": {
|
|
3019
|
+
"additionalProperties": false,
|
|
3020
|
+
"description": "This is a dummy property for compilation.\n\nIt does not mean anything in runtime.",
|
|
3021
|
+
"properties": {
|
|
3022
|
+
"exclusive": {
|
|
3023
|
+
"items": [
|
|
3024
|
+
{
|
|
3025
|
+
"const": "minimum",
|
|
3026
|
+
"type": "string"
|
|
3027
|
+
},
|
|
3028
|
+
{
|
|
3029
|
+
"const": "exclusiveMinimum",
|
|
3030
|
+
"type": "string"
|
|
3031
|
+
}
|
|
3032
|
+
],
|
|
3033
|
+
"maxItems": 2,
|
|
3034
|
+
"minItems": 2,
|
|
3035
|
+
"type": "array"
|
|
3036
|
+
},
|
|
3037
|
+
"kind": {
|
|
3038
|
+
"const": "minimum",
|
|
3039
|
+
"type": "string"
|
|
3040
|
+
},
|
|
3041
|
+
"schema": {
|
|
3042
|
+
"additionalProperties": false,
|
|
3043
|
+
"properties": {
|
|
3044
|
+
"minimum": {
|
|
3045
|
+
"const": 0,
|
|
3046
|
+
"type": "number"
|
|
3047
|
+
}
|
|
3048
|
+
},
|
|
3049
|
+
"required": [
|
|
3050
|
+
"minimum"
|
|
3051
|
+
],
|
|
3052
|
+
"type": "object"
|
|
3053
|
+
},
|
|
3054
|
+
"target": {
|
|
3055
|
+
"const": "number",
|
|
3056
|
+
"type": "string"
|
|
3057
|
+
},
|
|
3058
|
+
"validate": {
|
|
3059
|
+
"const": "0 <= $input",
|
|
3060
|
+
"type": "string"
|
|
3061
|
+
},
|
|
3062
|
+
"value": {
|
|
3063
|
+
"const": 0,
|
|
3064
|
+
"type": "number"
|
|
3065
|
+
}
|
|
3066
|
+
},
|
|
3067
|
+
"required": [
|
|
3068
|
+
"exclusive",
|
|
3069
|
+
"kind",
|
|
3070
|
+
"schema",
|
|
3071
|
+
"target",
|
|
3072
|
+
"validate",
|
|
3073
|
+
"value"
|
|
3074
|
+
],
|
|
3075
|
+
"type": "object"
|
|
3076
|
+
}
|
|
3077
|
+
},
|
|
3078
|
+
"type": "object"
|
|
3079
|
+
},
|
|
3015
3080
|
"tags": {
|
|
3016
3081
|
"items": {
|
|
3017
3082
|
"type": "string"
|
|
@@ -3046,6 +3111,7 @@
|
|
|
3046
3111
|
"resumable",
|
|
3047
3112
|
"seekable",
|
|
3048
3113
|
"size",
|
|
3114
|
+
"speed",
|
|
3049
3115
|
"tags",
|
|
3050
3116
|
"uploading",
|
|
3051
3117
|
"zones"
|
|
@@ -4271,6 +4337,9 @@
|
|
|
4271
4337
|
"storyboard": {
|
|
4272
4338
|
"$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;};},{}>"
|
|
4273
4339
|
},
|
|
4340
|
+
"suppressDeleteAlert": {
|
|
4341
|
+
"type": "boolean"
|
|
4342
|
+
},
|
|
4274
4343
|
"swarm": {
|
|
4275
4344
|
"$ref": "#/definitions/PartialObjectDeep<{color?:string;name?:string;},{}>"
|
|
4276
4345
|
},
|