@schemastore/datalogic-scan2deploy-android 0.0.4 → 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 +1 -1
- package/README.md +1 -1
- package/index.d.ts +5 -13
- package/package.json +3 -3
package/LICENSE
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright (c) Florian
|
|
3
|
+
Copyright (c) Florian Imdahl. All rights reserved.
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
package/README.md
CHANGED
|
@@ -8,5 +8,5 @@ This package contains type definitions for datalogic-scan2deploy-android.
|
|
|
8
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,
|
|
@@ -50,16 +50,8 @@ export type DownloadPreinstalledSchema = boolean;
|
|
|
50
50
|
/**
|
|
51
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.
|
|
52
52
|
*/
|
|
53
|
-
export type
|
|
53
|
+
export type ScriptSchema = string | ItemsSchema[];
|
|
54
54
|
export type ItemsSchema = string;
|
|
55
|
-
/**
|
|
56
|
-
* 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.
|
|
57
|
-
*/
|
|
58
|
-
export type ScriptSchema = ItemsSchema[];
|
|
59
|
-
/**
|
|
60
|
-
* 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.
|
|
61
|
-
*/
|
|
62
|
-
export type ScriptSchema1 = ItemsSchema[];
|
|
63
55
|
/**
|
|
64
56
|
* Specifies the final action performed by the application at the end of the staging process.
|
|
65
57
|
*/
|
|
@@ -81,7 +73,7 @@ export type AutoTimeSchema = boolean;
|
|
|
81
73
|
*/
|
|
82
74
|
export type AutoTimeZoneSchema = boolean;
|
|
83
75
|
/**
|
|
84
|
-
* Address of the NTP server to be used for date-time
|
|
76
|
+
* Address of the NTP server to be used for date-time synchronization
|
|
85
77
|
*/
|
|
86
78
|
export type AutoTimeServerSchema = string;
|
|
87
79
|
/**
|
|
@@ -153,7 +145,7 @@ export type EapAnonymousIdentitySchema = string;
|
|
|
153
145
|
*/
|
|
154
146
|
export type EapPasswordSchema = string;
|
|
155
147
|
/**
|
|
156
|
-
* Indicates if the 'eap-password' is encrypted with a custom encryption
|
|
148
|
+
* Indicates if the 'eap-password' is encrypted with a custom encryption algorithm
|
|
157
149
|
*/
|
|
158
150
|
export type EapPasswordEncryptedSchema = boolean;
|
|
159
151
|
/**
|
|
@@ -279,7 +271,7 @@ export interface GlobalSchema {
|
|
|
279
271
|
"purge-target-path"?: PurgeTargetPathSchema;
|
|
280
272
|
"auto-scan"?: AutoScanSchema;
|
|
281
273
|
"download-preinstalled"?: DownloadPreinstalledSchema;
|
|
282
|
-
script?:
|
|
274
|
+
script?: ScriptSchema;
|
|
283
275
|
action?: ActionSchema;
|
|
284
276
|
"backup-to-enterprise"?: BackupToEnterpriseSchema;
|
|
285
277
|
[k: string]: unknown;
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
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",
|
|
@@ -7,8 +7,8 @@
|
|
|
7
7
|
"name": "@schemastore/datalogic-scan2deploy-android",
|
|
8
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
|
}
|