config-editor-base 2.2.4 → 2.2.5
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.
|
@@ -2343,16 +2343,15 @@
|
|
|
2343
2343
|
},
|
|
2344
2344
|
"pin": {
|
|
2345
2345
|
"title": "PIN",
|
|
2346
|
-
"description": "PIN for the SIM card. Leave blank if none is set.",
|
|
2347
2346
|
"type": "string",
|
|
2348
|
-
"default": ""
|
|
2349
|
-
"pattern": "^(|[0-9]{4,8})$"
|
|
2347
|
+
"default": ""
|
|
2350
2348
|
},
|
|
2351
2349
|
"apn": {
|
|
2352
2350
|
"title": "APN",
|
|
2353
2351
|
"description": "Access Point Name (APN).",
|
|
2354
2352
|
"type": "string",
|
|
2355
|
-
"default": ""
|
|
2353
|
+
"default": "",
|
|
2354
|
+
"maxLength": 62
|
|
2356
2355
|
},
|
|
2357
2356
|
"roaming": {
|
|
2358
2357
|
"title": "Roaming",
|
|
@@ -2377,6 +2376,40 @@
|
|
|
2377
2376
|
]
|
|
2378
2377
|
}
|
|
2379
2378
|
},
|
|
2379
|
+
"dependencies": {
|
|
2380
|
+
"keyformat": {
|
|
2381
|
+
"oneOf": [
|
|
2382
|
+
{
|
|
2383
|
+
"properties": {
|
|
2384
|
+
"keyformat": {
|
|
2385
|
+
"enum": [
|
|
2386
|
+
0
|
|
2387
|
+
]
|
|
2388
|
+
},
|
|
2389
|
+
"pin": {
|
|
2390
|
+
"description": "PIN for the SIM card. Leave blank if none is set.",
|
|
2391
|
+
"pattern": "^(|[0-9]{4,8})$"
|
|
2392
|
+
}
|
|
2393
|
+
}
|
|
2394
|
+
},
|
|
2395
|
+
{
|
|
2396
|
+
"properties": {
|
|
2397
|
+
"keyformat": {
|
|
2398
|
+
"enum": [
|
|
2399
|
+
1
|
|
2400
|
+
]
|
|
2401
|
+
},
|
|
2402
|
+
"pin": {
|
|
2403
|
+
"description": "PIN for the SIM card in encrypted form.",
|
|
2404
|
+
"pattern": "^[a-zA-Z0-9+/=]*$",
|
|
2405
|
+
"minLength": 28,
|
|
2406
|
+
"maxLength": 32
|
|
2407
|
+
}
|
|
2408
|
+
}
|
|
2409
|
+
}
|
|
2410
|
+
]
|
|
2411
|
+
}
|
|
2412
|
+
},
|
|
2380
2413
|
"additionalProperties": false,
|
|
2381
2414
|
"required": [
|
|
2382
2415
|
"keyformat",
|