@schemastore/datalogic-scan2deploy-android 0.0.3 → 0.0.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.
- package/LICENSE +21 -0
- package/README.md +2 -2
- package/index.d.ts +13 -13
- package/package.json +4 -4
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) Florian Imdahl. All rights reserved.
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE
|
package/README.md
CHANGED
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
This package contains type definitions for datalogic-scan2deploy-android.
|
|
6
6
|
|
|
7
7
|
## Details
|
|
8
|
-
Files were exported from https://github.com/ffflorian/schemastore-updater/tree/
|
|
8
|
+
Files were exported from https://github.com/ffflorian/schemastore-updater/tree/main/schemas/datalogic-scan2deploy-android.
|
|
9
9
|
|
|
10
10
|
## Additional Details
|
|
11
|
-
* Last updated:
|
|
11
|
+
* Last updated: Fri, Feb 24, 2023, 11:23:32 GMT
|
|
12
12
|
* Dependencies: none
|
package/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*
|
|
1
|
+
/* eslint-disable */
|
|
2
2
|
/**
|
|
3
3
|
* This file was automatically generated by json-schema-to-typescript.
|
|
4
4
|
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
|
|
@@ -47,11 +47,11 @@ export type AutoScanSchema = boolean;
|
|
|
47
47
|
* Used to force the downgrade of pre-installed application (even System app), if required
|
|
48
48
|
*/
|
|
49
49
|
export type DownloadPreinstalledSchema = boolean;
|
|
50
|
-
export type ItemsSchema = string;
|
|
51
50
|
/**
|
|
52
51
|
* A string specifying the absolute/relative path of a file, or a JSON array of strings describing the file content line-by-line. The script file will be interpreted last in staging process.
|
|
53
52
|
*/
|
|
54
|
-
export type ScriptSchema = ItemsSchema[];
|
|
53
|
+
export type ScriptSchema = string | ItemsSchema[];
|
|
54
|
+
export type ItemsSchema = string;
|
|
55
55
|
/**
|
|
56
56
|
* Specifies the final action performed by the application at the end of the staging process.
|
|
57
57
|
*/
|
|
@@ -73,7 +73,7 @@ export type AutoTimeSchema = boolean;
|
|
|
73
73
|
*/
|
|
74
74
|
export type AutoTimeZoneSchema = boolean;
|
|
75
75
|
/**
|
|
76
|
-
* Address of the NTP server to be used for date-time
|
|
76
|
+
* Address of the NTP server to be used for date-time synchronization
|
|
77
77
|
*/
|
|
78
78
|
export type AutoTimeServerSchema = string;
|
|
79
79
|
/**
|
|
@@ -145,7 +145,7 @@ export type EapAnonymousIdentitySchema = string;
|
|
|
145
145
|
*/
|
|
146
146
|
export type EapPasswordSchema = string;
|
|
147
147
|
/**
|
|
148
|
-
* Indicates if the 'eap-password' is encrypted with a custom encryption
|
|
148
|
+
* Indicates if the 'eap-password' is encrypted with a custom encryption algorithm
|
|
149
149
|
*/
|
|
150
150
|
export type EapPasswordEncryptedSchema = boolean;
|
|
151
151
|
/**
|
|
@@ -244,12 +244,12 @@ export interface AndroidScan2DeploySchema {
|
|
|
244
244
|
network?: NetworkSchema;
|
|
245
245
|
deployment?: DeploymentSchema;
|
|
246
246
|
blobs?: BlobsSchema;
|
|
247
|
-
[k: string]:
|
|
247
|
+
[k: string]: unknown;
|
|
248
248
|
}
|
|
249
249
|
export interface LayoutSchema {
|
|
250
250
|
description?: DescriptionSchema;
|
|
251
251
|
enroll?: EnrollSchema;
|
|
252
|
-
[k: string]:
|
|
252
|
+
[k: string]: unknown;
|
|
253
253
|
}
|
|
254
254
|
/**
|
|
255
255
|
* Section used to configure the staging locking feature
|
|
@@ -259,7 +259,7 @@ export interface PadlockSchema {
|
|
|
259
259
|
key?: KeySchema;
|
|
260
260
|
state?: StateSchema;
|
|
261
261
|
"hide-from-launcher"?: HideFromLauncherSchema;
|
|
262
|
-
[k: string]:
|
|
262
|
+
[k: string]: unknown;
|
|
263
263
|
}
|
|
264
264
|
/**
|
|
265
265
|
* Section used to configure application scoped settings
|
|
@@ -274,7 +274,7 @@ export interface GlobalSchema {
|
|
|
274
274
|
script?: ScriptSchema;
|
|
275
275
|
action?: ActionSchema;
|
|
276
276
|
"backup-to-enterprise"?: BackupToEnterpriseSchema;
|
|
277
|
-
[k: string]:
|
|
277
|
+
[k: string]: unknown;
|
|
278
278
|
}
|
|
279
279
|
/**
|
|
280
280
|
* Section used to control inner device settings that typically need to be changed from the Android defaults
|
|
@@ -291,7 +291,7 @@ export interface SettingsSchema {
|
|
|
291
291
|
"charge-threshold"?: ChargeThresholdSchema;
|
|
292
292
|
"usb-profile"?: UsbProfileSchema;
|
|
293
293
|
"usb-function"?: UsbFunctionSchema;
|
|
294
|
-
[k: string]:
|
|
294
|
+
[k: string]: unknown;
|
|
295
295
|
}
|
|
296
296
|
/**
|
|
297
297
|
* Section used to configure the device Wi-Fi network
|
|
@@ -318,7 +318,7 @@ export interface NetworkSchema {
|
|
|
318
318
|
"save-to-file"?: SaveToFileSchema;
|
|
319
319
|
ephemeral?: EphemeralSchema;
|
|
320
320
|
"wait-for-connection"?: WaitForConnectionSchema;
|
|
321
|
-
[k: string]:
|
|
321
|
+
[k: string]: unknown;
|
|
322
322
|
}
|
|
323
323
|
/**
|
|
324
324
|
* Section can be used to download a ZIP archive from a server and inflate it to the 'target-path' folder
|
|
@@ -332,10 +332,10 @@ export interface DeploymentSchema {
|
|
|
332
332
|
"check-timeout"?: CheckTimeoutSchema;
|
|
333
333
|
"working-archive"?: WorkingArchiveSchema;
|
|
334
334
|
"skip-inflation"?: SkipInflationSchema;
|
|
335
|
-
[k: string]:
|
|
335
|
+
[k: string]: unknown;
|
|
336
336
|
}
|
|
337
337
|
export interface ItemsSchema1 {
|
|
338
338
|
file: FileSchema;
|
|
339
339
|
content: ContentSchema;
|
|
340
|
-
[k: string]:
|
|
340
|
+
[k: string]: unknown;
|
|
341
341
|
}
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
|
-
"author": "Florian
|
|
2
|
+
"author": "Florian Imdahl <git@ffflorian.de>",
|
|
3
3
|
"dependencies": {},
|
|
4
4
|
"description": "TypeScript definitions for datalogic-scan2deploy-android.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "index.d.ts",
|
|
7
7
|
"name": "@schemastore/datalogic-scan2deploy-android",
|
|
8
|
-
"repository": "https://github.com/ffflorian/schemastore-updater/tree/
|
|
8
|
+
"repository": "https://github.com/ffflorian/schemastore-updater/tree/main/schemas/datalogic-scan2deploy-android",
|
|
9
9
|
"scripts": {},
|
|
10
|
-
"typesPublisherContentHash": "
|
|
10
|
+
"typesPublisherContentHash": "2dbb8986b3b7f7aaad40df70e0547aad6da07cad0fe3fad8e8edc85b297e2ffa",
|
|
11
11
|
"types": "index.d.ts",
|
|
12
|
-
"version": "0.0.
|
|
12
|
+
"version": "0.0.5",
|
|
13
13
|
"typeScriptVersion": "2.2"
|
|
14
14
|
}
|