@yume-chan/adb-credential-web 0.0.17 → 0.0.18
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/CHANGELOG.json +6 -0
- package/CHANGELOG.md +6 -1
- package/README.md +14 -1
- package/esm/index.d.ts +18 -1
- package/esm/index.d.ts.map +1 -1
- package/esm/index.js +30 -13
- package/esm/index.js.map +1 -1
- package/package.json +10 -7
- package/src/index.ts +50 -16
- package/tsconfig.build.json +9 -0
- package/tsconfig.build.tsbuildinfo +1 -0
- package/.rush/temp/package-deps_build.json +0 -12
- package/.rush/temp/package-deps_build_watch.json +0 -12
- package/.rush/temp/shrinkwrap-deps.json +0 -5
- package/adb-credential-web.build.log +0 -1
- package/tsconfig.json +0 -14
package/CHANGELOG.json
CHANGED
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yume-chan/adb-credential-web",
|
|
3
3
|
"entries": [
|
|
4
|
+
{
|
|
5
|
+
"version": "0.0.18",
|
|
6
|
+
"tag": "@yume-chan/adb-credential-web_v0.0.18",
|
|
7
|
+
"date": "Wed, 25 Jan 2023 21:33:49 GMT",
|
|
8
|
+
"comments": {}
|
|
9
|
+
},
|
|
4
10
|
{
|
|
5
11
|
"version": "0.0.17",
|
|
6
12
|
"tag": "@yume-chan/adb-credential-web_v0.0.17",
|
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
# Change Log - @yume-chan/adb-credential-web
|
|
2
2
|
|
|
3
|
-
This log was last generated on
|
|
3
|
+
This log was last generated on Wed, 25 Jan 2023 21:33:49 GMT and should not be manually modified.
|
|
4
|
+
|
|
5
|
+
## 0.0.18
|
|
6
|
+
Wed, 25 Jan 2023 21:33:49 GMT
|
|
7
|
+
|
|
8
|
+
_Version update only_
|
|
4
9
|
|
|
5
10
|
## 0.0.17
|
|
6
11
|
Tue, 18 Oct 2022 09:32:30 GMT
|
package/README.md
CHANGED
|
@@ -2,9 +2,20 @@
|
|
|
2
2
|
|
|
3
3
|
Generate RSA keys using Web Crypto API ([MDN](https://developer.mozilla.org/en-US/docs/Web/API/Web_Crypto_API)) and store them in LocalStorage ([MDN](https://developer.mozilla.org/en-US/docs/Web/API/Web_Storage_API)).
|
|
4
4
|
|
|
5
|
+
- [Constructor](#constructor)
|
|
5
6
|
- [`generateKey`](#generatekey)
|
|
6
7
|
- [`iterateKeys`](#iteratekeys)
|
|
7
8
|
|
|
9
|
+
## Constructor
|
|
10
|
+
|
|
11
|
+
```ts
|
|
12
|
+
public constructor(localStorageKey = "private-key");
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
Create a new instance of `AdbWebCredentialStore`.
|
|
16
|
+
|
|
17
|
+
The `localStorageKey` parameter specifies the key to use when reading and writing the private key in LocalStorage.
|
|
18
|
+
|
|
8
19
|
## `generateKey`
|
|
9
20
|
|
|
10
21
|
```ts
|
|
@@ -23,4 +34,6 @@ The returned `Uint8Array` is the private key in PKCS #8 format.
|
|
|
23
34
|
*iterateKeys(): Generator<Uint8Array, void, void>
|
|
24
35
|
```
|
|
25
36
|
|
|
26
|
-
|
|
37
|
+
Yield the stored RSA private key. `AdbWebCredentialStore` only stores one key, so only one value will be yielded.
|
|
38
|
+
|
|
39
|
+
This method returns a generator, so `for...of...` loop should be used to read the key.
|
package/esm/index.d.ts
CHANGED
|
@@ -1,8 +1,25 @@
|
|
|
1
1
|
import { type AdbCredentialStore } from "@yume-chan/adb";
|
|
2
2
|
export default class AdbWebCredentialStore implements AdbCredentialStore {
|
|
3
3
|
readonly localStorageKey: string;
|
|
4
|
+
/**
|
|
5
|
+
* Create a new instance of `AdbWebCredentialStore`.
|
|
6
|
+
*
|
|
7
|
+
* @param localStorageKey Specifies the key to use when reading and writing the private key in LocalStorage.
|
|
8
|
+
*/
|
|
4
9
|
constructor(localStorageKey?: string);
|
|
5
|
-
|
|
10
|
+
/**
|
|
11
|
+
* Generate a RSA private key and store it into LocalStorage.
|
|
12
|
+
*
|
|
13
|
+
* Calling this method multiple times will overwrite the previous key.
|
|
14
|
+
*
|
|
15
|
+
* @returns The private key in PKCS #8 format.
|
|
16
|
+
*/
|
|
6
17
|
generateKey(): Promise<Uint8Array>;
|
|
18
|
+
/**
|
|
19
|
+
* Yield the stored RSA private key. `AdbWebCredentialStore` only stores one key, so only one value will be yielded.
|
|
20
|
+
*
|
|
21
|
+
* This method returns a generator, so `for...of...` loop should be used to read the key.
|
|
22
|
+
*/
|
|
23
|
+
iterateKeys(): Generator<Uint8Array, void, void>;
|
|
7
24
|
}
|
|
8
25
|
//# sourceMappingURL=index.d.ts.map
|
package/esm/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAEA,OAAO,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAEA,OAAO,EAOH,KAAK,kBAAkB,EAC1B,MAAM,gBAAgB,CAAC;AAExB,MAAM,CAAC,OAAO,OAAO,qBAAsB,YAAW,kBAAkB;IACpE,SAAgB,eAAe,EAAE,MAAM,CAAC;IAExC;;;;OAIG;gBACgB,eAAe,SAAgB;IAIlD;;;;;;OAMG;IACU,WAAW,IAAI,OAAO,CAAC,UAAU,CAAC;IA0C/C;;;;OAIG;IACK,WAAW,IAAI,SAAS,CAAC,UAAU,EAAE,IAAI,EAAE,IAAI,CAAC;CAM3D"}
|
package/esm/index.js
CHANGED
|
@@ -1,25 +1,31 @@
|
|
|
1
1
|
// cspell: ignore RSASSA
|
|
2
|
-
import { calculateBase64EncodedLength, calculatePublicKey, calculatePublicKeyLength, decodeBase64, decodeUtf8, encodeBase64 } from "@yume-chan/adb";
|
|
2
|
+
import { calculateBase64EncodedLength, calculatePublicKey, calculatePublicKeyLength, decodeBase64, decodeUtf8, encodeBase64, } from "@yume-chan/adb";
|
|
3
3
|
export default class AdbWebCredentialStore {
|
|
4
4
|
localStorageKey;
|
|
5
|
-
|
|
5
|
+
/**
|
|
6
|
+
* Create a new instance of `AdbWebCredentialStore`.
|
|
7
|
+
*
|
|
8
|
+
* @param localStorageKey Specifies the key to use when reading and writing the private key in LocalStorage.
|
|
9
|
+
*/
|
|
10
|
+
constructor(localStorageKey = "private-key") {
|
|
6
11
|
this.localStorageKey = localStorageKey;
|
|
7
12
|
}
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
13
|
+
/**
|
|
14
|
+
* Generate a RSA private key and store it into LocalStorage.
|
|
15
|
+
*
|
|
16
|
+
* Calling this method multiple times will overwrite the previous key.
|
|
17
|
+
*
|
|
18
|
+
* @returns The private key in PKCS #8 format.
|
|
19
|
+
*/
|
|
14
20
|
async generateKey() {
|
|
15
21
|
const { privateKey: cryptoKey } = await crypto.subtle.generateKey({
|
|
16
|
-
name:
|
|
22
|
+
name: "RSASSA-PKCS1-v1_5",
|
|
17
23
|
modulusLength: 2048,
|
|
18
24
|
// 65537
|
|
19
25
|
publicExponent: new Uint8Array([0x01, 0x00, 0x01]),
|
|
20
|
-
hash:
|
|
21
|
-
}, true, [
|
|
22
|
-
const privateKey = new Uint8Array(await crypto.subtle.exportKey(
|
|
26
|
+
hash: "SHA-1",
|
|
27
|
+
}, true, ["sign", "verify"]);
|
|
28
|
+
const privateKey = new Uint8Array(await crypto.subtle.exportKey("pkcs8", cryptoKey));
|
|
23
29
|
window.localStorage.setItem(this.localStorageKey, decodeUtf8(encodeBase64(privateKey)));
|
|
24
30
|
// The authentication module in core doesn't need public keys.
|
|
25
31
|
// It will generate the public key from private key every time.
|
|
@@ -30,8 +36,19 @@ export default class AdbWebCredentialStore {
|
|
|
30
36
|
const publicKeyBuffer = new Uint8Array(publicKeyBase64Length);
|
|
31
37
|
calculatePublicKey(privateKey, publicKeyBuffer);
|
|
32
38
|
encodeBase64(publicKeyBuffer.subarray(0, publicKeyLength), publicKeyBuffer);
|
|
33
|
-
window.localStorage.setItem(this.localStorageKey +
|
|
39
|
+
window.localStorage.setItem(this.localStorageKey + ".pub", decodeUtf8(publicKeyBuffer));
|
|
34
40
|
return privateKey;
|
|
35
41
|
}
|
|
42
|
+
/**
|
|
43
|
+
* Yield the stored RSA private key. `AdbWebCredentialStore` only stores one key, so only one value will be yielded.
|
|
44
|
+
*
|
|
45
|
+
* This method returns a generator, so `for...of...` loop should be used to read the key.
|
|
46
|
+
*/
|
|
47
|
+
*iterateKeys() {
|
|
48
|
+
const privateKey = window.localStorage.getItem(this.localStorageKey);
|
|
49
|
+
if (privateKey) {
|
|
50
|
+
yield decodeBase64(privateKey);
|
|
51
|
+
}
|
|
52
|
+
}
|
|
36
53
|
}
|
|
37
54
|
//# sourceMappingURL=index.js.map
|
package/esm/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,wBAAwB;AAExB,OAAO,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,wBAAwB;AAExB,OAAO,EACH,4BAA4B,EAC5B,kBAAkB,EAClB,wBAAwB,EACxB,YAAY,EACZ,UAAU,EACV,YAAY,GAEf,MAAM,gBAAgB,CAAC;AAExB,MAAM,CAAC,OAAO,OAAO,qBAAqB;IACtB,eAAe,CAAS;IAExC;;;;OAIG;IACH,YAAmB,eAAe,GAAG,aAAa;QAC9C,IAAI,CAAC,eAAe,GAAG,eAAe,CAAC;IAC3C,CAAC;IAED;;;;;;OAMG;IACI,KAAK,CAAC,WAAW;QACpB,MAAM,EAAE,UAAU,EAAE,SAAS,EAAE,GAAG,MAAM,MAAM,CAAC,MAAM,CAAC,WAAW,CAC7D;YACI,IAAI,EAAE,mBAAmB;YACzB,aAAa,EAAE,IAAI;YACnB,QAAQ;YACR,cAAc,EAAE,IAAI,UAAU,CAAC,CAAC,IAAI,EAAE,IAAI,EAAE,IAAI,CAAC,CAAC;YAClD,IAAI,EAAE,OAAO;SAChB,EACD,IAAI,EACJ,CAAC,MAAM,EAAE,QAAQ,CAAC,CACrB,CAAC;QAEF,MAAM,UAAU,GAAG,IAAI,UAAU,CAC7B,MAAM,MAAM,CAAC,MAAM,CAAC,SAAS,CAAC,OAAO,EAAE,SAAS,CAAC,CACpD,CAAC;QACF,MAAM,CAAC,YAAY,CAAC,OAAO,CACvB,IAAI,CAAC,eAAe,EACpB,UAAU,CAAC,YAAY,CAAC,UAAU,CAAC,CAAC,CACvC,CAAC;QAEF,8DAA8D;QAC9D,+DAA+D;QAC/D,0FAA0F;QAC1F,qDAAqD;QACrD,MAAM,eAAe,GAAG,wBAAwB,EAAE,CAAC;QACnD,MAAM,CAAC,qBAAqB,CAAC,GACzB,4BAA4B,CAAC,eAAe,CAAC,CAAC;QAClD,MAAM,eAAe,GAAG,IAAI,UAAU,CAAC,qBAAqB,CAAC,CAAC;QAC9D,kBAAkB,CAAC,UAAU,EAAE,eAAe,CAAC,CAAC;QAChD,YAAY,CACR,eAAe,CAAC,QAAQ,CAAC,CAAC,EAAE,eAAe,CAAC,EAC5C,eAAe,CAClB,CAAC;QACF,MAAM,CAAC,YAAY,CAAC,OAAO,CACvB,IAAI,CAAC,eAAe,GAAG,MAAM,EAC7B,UAAU,CAAC,eAAe,CAAC,CAC9B,CAAC;QAEF,OAAO,UAAU,CAAC;IACtB,CAAC;IAED;;;;OAIG;IACI,CAAC,WAAW;QACf,MAAM,UAAU,GAAG,MAAM,CAAC,YAAY,CAAC,OAAO,CAAC,IAAI,CAAC,eAAe,CAAC,CAAC;QACrE,IAAI,UAAU,EAAE;YACZ,MAAM,YAAY,CAAC,UAAU,CAAC,CAAC;SAClC;IACL,CAAC;CACJ"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yume-chan/adb-credential-web",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.18",
|
|
4
4
|
"description": "Credential Store for `@yume-chan/adb` using Web LocalStorage API.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"adb"
|
|
@@ -24,15 +24,18 @@
|
|
|
24
24
|
"main": "esm/index.js",
|
|
25
25
|
"types": "esm/index.d.ts",
|
|
26
26
|
"devDependencies": {
|
|
27
|
-
"
|
|
28
|
-
"@yume-chan/
|
|
27
|
+
"@yume-chan/eslint-config": "^1.0.0",
|
|
28
|
+
"@yume-chan/tsconfig": "^1.0.0",
|
|
29
|
+
"eslint": "^8.31.0",
|
|
30
|
+
"typescript": "^4.9.4"
|
|
29
31
|
},
|
|
30
32
|
"dependencies": {
|
|
31
|
-
"@yume-chan/adb": "^0.0.
|
|
32
|
-
"tslib": "^2.4.
|
|
33
|
+
"@yume-chan/adb": "^0.0.18",
|
|
34
|
+
"tslib": "^2.4.1"
|
|
33
35
|
},
|
|
34
36
|
"scripts": {
|
|
35
|
-
"build": "build
|
|
36
|
-
"build:watch": "
|
|
37
|
+
"build": "tsc -b tsconfig.build.json",
|
|
38
|
+
"build:watch": "tsc -b tsconfig.build.json",
|
|
39
|
+
"lint": "eslint src/**/*.ts --fix"
|
|
37
40
|
}
|
|
38
41
|
}
|
package/src/index.ts
CHANGED
|
@@ -1,51 +1,85 @@
|
|
|
1
1
|
// cspell: ignore RSASSA
|
|
2
2
|
|
|
3
|
-
import {
|
|
3
|
+
import {
|
|
4
|
+
calculateBase64EncodedLength,
|
|
5
|
+
calculatePublicKey,
|
|
6
|
+
calculatePublicKeyLength,
|
|
7
|
+
decodeBase64,
|
|
8
|
+
decodeUtf8,
|
|
9
|
+
encodeBase64,
|
|
10
|
+
type AdbCredentialStore,
|
|
11
|
+
} from "@yume-chan/adb";
|
|
4
12
|
|
|
5
13
|
export default class AdbWebCredentialStore implements AdbCredentialStore {
|
|
6
14
|
public readonly localStorageKey: string;
|
|
7
15
|
|
|
8
|
-
|
|
16
|
+
/**
|
|
17
|
+
* Create a new instance of `AdbWebCredentialStore`.
|
|
18
|
+
*
|
|
19
|
+
* @param localStorageKey Specifies the key to use when reading and writing the private key in LocalStorage.
|
|
20
|
+
*/
|
|
21
|
+
public constructor(localStorageKey = "private-key") {
|
|
9
22
|
this.localStorageKey = localStorageKey;
|
|
10
23
|
}
|
|
11
24
|
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
25
|
+
/**
|
|
26
|
+
* Generate a RSA private key and store it into LocalStorage.
|
|
27
|
+
*
|
|
28
|
+
* Calling this method multiple times will overwrite the previous key.
|
|
29
|
+
*
|
|
30
|
+
* @returns The private key in PKCS #8 format.
|
|
31
|
+
*/
|
|
19
32
|
public async generateKey(): Promise<Uint8Array> {
|
|
20
33
|
const { privateKey: cryptoKey } = await crypto.subtle.generateKey(
|
|
21
34
|
{
|
|
22
|
-
name:
|
|
35
|
+
name: "RSASSA-PKCS1-v1_5",
|
|
23
36
|
modulusLength: 2048,
|
|
24
37
|
// 65537
|
|
25
38
|
publicExponent: new Uint8Array([0x01, 0x00, 0x01]),
|
|
26
|
-
hash:
|
|
39
|
+
hash: "SHA-1",
|
|
27
40
|
},
|
|
28
41
|
true,
|
|
29
|
-
[
|
|
42
|
+
["sign", "verify"]
|
|
30
43
|
);
|
|
31
44
|
|
|
32
|
-
const privateKey = new Uint8Array(
|
|
33
|
-
|
|
45
|
+
const privateKey = new Uint8Array(
|
|
46
|
+
await crypto.subtle.exportKey("pkcs8", cryptoKey)
|
|
47
|
+
);
|
|
48
|
+
window.localStorage.setItem(
|
|
49
|
+
this.localStorageKey,
|
|
50
|
+
decodeUtf8(encodeBase64(privateKey))
|
|
51
|
+
);
|
|
34
52
|
|
|
35
53
|
// The authentication module in core doesn't need public keys.
|
|
36
54
|
// It will generate the public key from private key every time.
|
|
37
55
|
// However, maybe there are people want to manually put this public key onto their device,
|
|
38
56
|
// so also save the public key for their convenience.
|
|
39
57
|
const publicKeyLength = calculatePublicKeyLength();
|
|
40
|
-
const [publicKeyBase64Length] =
|
|
58
|
+
const [publicKeyBase64Length] =
|
|
59
|
+
calculateBase64EncodedLength(publicKeyLength);
|
|
41
60
|
const publicKeyBuffer = new Uint8Array(publicKeyBase64Length);
|
|
42
61
|
calculatePublicKey(privateKey, publicKeyBuffer);
|
|
43
62
|
encodeBase64(
|
|
44
63
|
publicKeyBuffer.subarray(0, publicKeyLength),
|
|
45
64
|
publicKeyBuffer
|
|
46
65
|
);
|
|
47
|
-
window.localStorage.setItem(
|
|
66
|
+
window.localStorage.setItem(
|
|
67
|
+
this.localStorageKey + ".pub",
|
|
68
|
+
decodeUtf8(publicKeyBuffer)
|
|
69
|
+
);
|
|
48
70
|
|
|
49
71
|
return privateKey;
|
|
50
72
|
}
|
|
73
|
+
|
|
74
|
+
/**
|
|
75
|
+
* Yield the stored RSA private key. `AdbWebCredentialStore` only stores one key, so only one value will be yielded.
|
|
76
|
+
*
|
|
77
|
+
* This method returns a generator, so `for...of...` loop should be used to read the key.
|
|
78
|
+
*/
|
|
79
|
+
public *iterateKeys(): Generator<Uint8Array, void, void> {
|
|
80
|
+
const privateKey = window.localStorage.getItem(this.localStorageKey);
|
|
81
|
+
if (privateKey) {
|
|
82
|
+
yield decodeBase64(privateKey);
|
|
83
|
+
}
|
|
84
|
+
}
|
|
51
85
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"program":{"fileNames":["../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es5.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2015.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2016.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2017.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2018.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2019.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2020.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2021.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2022.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.esnext.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.dom.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2015.core.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2017.object.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2017.string.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2019.array.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2019.object.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2019.string.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2020.date.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2020.string.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2020.number.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2021.string.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2022.array.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2022.error.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2022.object.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2022.string.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../common/temp/node_modules/.pnpm/tslib@2.4.1/node_modules/tslib/tslib.d.ts","../struct/esm/basic/options.d.ts","../struct/esm/basic/struct-value.d.ts","../struct/esm/basic/field-value.d.ts","../struct/esm/utils.d.ts","../struct/esm/basic/stream.d.ts","../struct/esm/basic/definition.d.ts","../struct/esm/basic/index.d.ts","../struct/esm/types/bigint.d.ts","../struct/esm/types/buffer/base.d.ts","../struct/esm/types/buffer/fixed-length.d.ts","../struct/esm/types/buffer/variable-length.d.ts","../struct/esm/types/buffer/index.d.ts","../struct/esm/types/number.d.ts","../struct/esm/types/index.d.ts","../struct/esm/struct.d.ts","../struct/esm/index.d.ts","../../common/temp/node_modules/.pnpm/web-streams-polyfill@4.0.0-beta.3/node_modules/web-streams-polyfill/types/ponyfill.d.ts","../stream-extra/esm/stream.d.ts","../stream-extra/esm/buffered.d.ts","../stream-extra/esm/buffered-transform.d.ts","../stream-extra/esm/chunk.d.ts","../stream-extra/esm/decode-utf8.d.ts","../stream-extra/esm/wrap-readable.d.ts","../stream-extra/esm/duplex.d.ts","../stream-extra/esm/gather-string.d.ts","../stream-extra/esm/inspect.d.ts","../stream-extra/esm/pipe-from.d.ts","../stream-extra/esm/push-readable.d.ts","../stream-extra/esm/split-string.d.ts","../stream-extra/esm/struct-deserialize.d.ts","../stream-extra/esm/struct-serialize.d.ts","../stream-extra/esm/wrap-writable.d.ts","../stream-extra/esm/index.d.ts","../event/esm/disposable.d.ts","../event/esm/event.d.ts","../event/esm/event-emitter.d.ts","../event/esm/utils.d.ts","../event/esm/index.d.ts","../adb/esm/packet.d.ts","../adb/esm/auth.d.ts","../adb/esm/commands/base.d.ts","../adb/esm/commands/framebuffer.d.ts","../adb/esm/commands/install.d.ts","../adb/esm/commands/power.d.ts","../adb/esm/socket/socket.d.ts","../adb/esm/socket/dispatcher.d.ts","../adb/esm/socket/index.d.ts","../adb/esm/commands/reverse.d.ts","../adb/esm/commands/subprocess/protocols/types.d.ts","../adb/esm/commands/subprocess/protocols/none.d.ts","../adb/esm/commands/subprocess/protocols/shell.d.ts","../adb/esm/commands/subprocess/protocols/index.d.ts","../adb/esm/commands/subprocess/command.d.ts","../adb/esm/commands/subprocess/utils.d.ts","../adb/esm/commands/subprocess/index.d.ts","../adb/esm/commands/sync/response.d.ts","../adb/esm/commands/sync/stat.d.ts","../adb/esm/commands/sync/list.d.ts","../adb/esm/commands/sync/pull.d.ts","../adb/esm/commands/sync/push.d.ts","../adb/esm/commands/sync/request.d.ts","../adb/esm/utils/auto-reset-event.d.ts","../adb/esm/utils/base64.d.ts","../adb/esm/utils/index.d.ts","../adb/esm/commands/sync/sync.d.ts","../adb/esm/commands/sync/index.d.ts","../adb/esm/commands/tcpip.d.ts","../adb/esm/commands/index.d.ts","../adb/esm/features.d.ts","../adb/esm/adb.d.ts","../adb/esm/backend.d.ts","../adb/esm/crypto.d.ts","../adb/esm/index.d.ts","./src/index.ts"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","impliedFormat":1},{"version":"7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","impliedFormat":1},{"version":"8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","impliedFormat":1},{"version":"5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","impliedFormat":1},{"version":"4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","impliedFormat":1},{"version":"1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9","impliedFormat":1},{"version":"746d62152361558ea6d6115cf0da4dd10ede041d14882ede3568bce5dc4b4f1f","impliedFormat":1},{"version":"d11a03592451da2d1065e09e61f4e2a9bf68f780f4f6623c18b57816a9679d17","impliedFormat":1},{"version":"aea179452def8a6152f98f63b191b84e7cbd69b0e248c91e61fb2e52328abe8c","impliedFormat":1},{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true,"impliedFormat":1},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true,"impliedFormat":1},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true,"impliedFormat":1},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true,"impliedFormat":1},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true,"impliedFormat":1},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true,"impliedFormat":1},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true,"impliedFormat":1},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true,"impliedFormat":1},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true,"impliedFormat":1},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true,"impliedFormat":1},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true,"impliedFormat":1},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true,"impliedFormat":1},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true,"impliedFormat":1},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true,"impliedFormat":1},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true,"impliedFormat":1},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true,"impliedFormat":1},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true,"impliedFormat":1},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true,"impliedFormat":1},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true,"impliedFormat":1},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true,"impliedFormat":1},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true,"impliedFormat":1},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true,"impliedFormat":1},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true,"impliedFormat":1},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true,"impliedFormat":1},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true,"impliedFormat":1},{"version":"6c55633c733c8378db65ac3da7a767c3cf2cf3057f0565a9124a16a3a2019e87","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true,"impliedFormat":1},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true,"impliedFormat":1},{"version":"34c839eaaa6d78c8674ae2c37af2236dee6831b13db7b4ef4df3ec889a04d4f2","affectsGlobalScope":true,"impliedFormat":1},{"version":"34478567f8a80171f88f2f30808beb7da15eac0538ae91282dd33dce928d98ed","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab7d58e6161a550ff92e5aff755dc37fe896245348332cd5f1e1203479fe0ed1","affectsGlobalScope":true,"impliedFormat":1},{"version":"6bda95ea27a59a276e46043b7065b55bd4b316c25e70e29b572958fa77565d43","affectsGlobalScope":true,"impliedFormat":1},{"version":"aedb8de1abb2ff1095c153854a6df7deae4a5709c37297f9d6e9948b6806fa66","affectsGlobalScope":true,"impliedFormat":1},{"version":"a4da0551fd39b90ca7ce5f68fb55d4dc0c1396d589b612e1902f68ee090aaada","affectsGlobalScope":true,"impliedFormat":1},{"version":"11ffe3c281f375fff9ffdde8bbec7669b4dd671905509079f866f2354a788064","affectsGlobalScope":true,"impliedFormat":1},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"14a84fbe4ec531dcbaf5d2594fd95df107258e60ae6c6a076404f13c3f66f28e","impliedFormat":1},{"version":"a916bd79fa897dfbfcfef0885727e005c015727e5ade51a5ca91f61eeca4b00f","impliedFormat":99},{"version":"ce15dfc8bba1c2d8b919a3b55dabe4c6269b81fbb78989586dfc1b2cdc1ec7a3","impliedFormat":99},{"version":"a0ba486f9abc9bdbf03878b06932a7de42cadeb3a760a9cd336cb7614a8ce73e","impliedFormat":99},{"version":"3c8bc049dae424f3b67fd4567e57abf037cf6698508703a33e95a0b93704d921","impliedFormat":99},{"version":"e2cdef9ccaf2ec8313c11030a44402276e3f2d33b2635e50a5c85da7c169705f","impliedFormat":99},{"version":"a198bc56ca1cabeb2100f93ed61a14457c8a0d7f3ee92a457774abefbf2af7e9","impliedFormat":99},{"version":"4000865d5ddad64d7894da59d95ef9900473502006100a4ed82cc950cf7c2f56","impliedFormat":99},{"version":"9d8e9863033f8c7872b0efa8b30abc489200d6dfbbb7e350e83567ee7d9849f3","impliedFormat":99},{"version":"20b17b2e6d5d0ab3188e6ba77369c12b8ff8c1c53d7738e72ff32404d1fb9806","impliedFormat":99},{"version":"238d44461641c771704ae948e129b280d05fad01b060f8e78a37a28ae346e7a4","impliedFormat":99},{"version":"94788f554a52e0a3abb6653395c2da112d2fcf17786464e8b430ed6855e63063","impliedFormat":99},{"version":"05ff8aaf99e2fe90a8bead1f2abe7001b1f2883b3733f68edc138d42d4a64fbc","impliedFormat":99},{"version":"b620d8091fc4a3520370c0faf794ef5d8e663f9cf5c419615c46923a2faf7658","impliedFormat":99},{"version":"deb19b18352719845b83f911ec5f6520b11918c45327267d828658ad3e15f59a","impliedFormat":99},{"version":"7ca63f52c8ada038d44dbd9e0cd6bbc654762dbb2cb25c1acb66912e541aa5d8","impliedFormat":99},{"version":"16b6014cf97bb1eed71f5955ba76e1714f852e0ada929661c2f3215b8b2694f7","affectsGlobalScope":true,"impliedFormat":99},{"version":"19c2d8da51e4944a19e0ca377df3fd9d249dd8f9cab9544632fb8d10a72808f7","impliedFormat":1},{"version":"bf1b953026023eab871cd33c181b70261a13e2d2c8ae2a82974ab546eaf0d55d","impliedFormat":99},{"version":"a826d0ce76bf41e249ce59c3246fa6463b4b3ae8ca922de1b291c8228b596d4f","impliedFormat":99},{"version":"519667c1e67843d0b5639067aff734c8b2790db9d54bfbcc1e01a72c35a1899c","impliedFormat":99},{"version":"8f761c78ed6b6a8d1a7a06de589b885ee8f1d6cfc35869271aadef12453e6792","impliedFormat":99},{"version":"a045afb91a1874d04a03ef23ba88467d54cb0d0ce9bb7a6f9bbf0aef0fcb2987","impliedFormat":99},{"version":"09f7cf923b40a668786baa010975a2741eaee0221cd2223a4a93b626eae11b25","impliedFormat":99},{"version":"aa24a56a19061cf24248df631db467c47dbac51b3007d0ca3571f63a9454c3f1","impliedFormat":99},{"version":"8ae5b1ec391cee87c0a2b1618244fd68f2c4648feb300506cee22836479d36e9","impliedFormat":99},{"version":"372c41ec228da5feadb0ea2e009e50767d6a7e029d9fae16baf5d7561beee141","impliedFormat":99},{"version":"6432fa68f24fb1b2a855c4537d34854ff49431866f8c3b22a6dd47d427389875","impliedFormat":99},{"version":"eb589b10ce1aff55e80870f1ec80b844af04d29272a52f87e84af33785ca3b63","impliedFormat":99},{"version":"d46d9b5809fbedc466e5a7f5d271c6eab6646023e8e74af42895f19729baed09","impliedFormat":99},{"version":"614bd59e02cef825d1376a35a08ca28aa3ea2465bc47cae98a23418e6b6b98dd","impliedFormat":99},{"version":"187135e423dde8f10f28d980fde73ed45d2ab83377da3c9e43b58cb7cb55cb7f","impliedFormat":99},{"version":"c51e9542d1586923fc237ee9e7e7850515278d20e7c9554200c4088b1ab8b1b5","impliedFormat":99},{"version":"15d73de6b3ccca063cd20adbb6de0ca1f388c9525c49ada08b4e4aed482f81d2","impliedFormat":99},{"version":"3d4fc1ed5c1c6f311aebeff68ec8038718a12eaef5d0ae5cbd5133112956356f","impliedFormat":99},{"version":"6e4a3c4dad188295c5ea0cd7d0b18374bed555f7f4bd1f692adb6d0646b84a6c","impliedFormat":99},{"version":"f42981e268e693681dc46a595320a28e76eb1d035c0fd02782fad4530c4b9460","impliedFormat":99},{"version":"953f8ee025732d4442fed525cbaaa51e8380a658a2db9e65472b1a45a96eb863","impliedFormat":99},{"version":"8cc812db40101403f8753561d5d56444e582d6658a1825fd65d8b6dc33001854","impliedFormat":99},{"version":"056dc576a8a4b0f3d7e3ea62ffc50927a44f170dbf504cacbc167faa891aa1c4","impliedFormat":99},{"version":"aceaeb6c567ba234db5c5ac83ca5f655d4cb3f2b41bb2e3d46156aef5f821e08","impliedFormat":99},{"version":"84c5cc391901da2628c314773e35ba4ef8baf8cbd16b1f6e2715c888ec111a78","impliedFormat":99},{"version":"4da0617c1ac8332b25f811ae35017eaf148797897f475caaeee75aedf15dffb0","impliedFormat":99},{"version":"9eca3b06248f861f7933509f9632c05df013bce190c7636ee2c63bb5743258e0","impliedFormat":99},{"version":"f2ea9fdb05e50fe5d40f84042610f42afe73ef2774a49d32dac00035ac4107a9","impliedFormat":99},{"version":"c6001fafc7731da0caba163dbff511aa30d620995557e92ce13489d8fdbdeaf2","impliedFormat":99},{"version":"1f24801a3dfa156fc29a4c8456bb36966c948b4c199e2666a436c5344d2bf3a7","impliedFormat":99},{"version":"f23883381baf233145da8f3bf3c9a7d808d02bfcb5987c11a9defe8d090d0f18","impliedFormat":99},{"version":"e08f98feba0e30767fdd48707bd597a485d110e520b62fd82eca1894cb8ab4ac","impliedFormat":99},{"version":"6def100d69465dc80d30e9b51d18b3bedbfe718374ba0d49183549f4e8932c90","impliedFormat":99},{"version":"af0d6d71123142cb9f354cd30d67ef22e4bd94fd0195bc18cc627c8bd2dc1d6d","impliedFormat":99},{"version":"d509f6d8d6f0e08b0e2dc1d5671a2ab45517af73b569659327b3fbac7b3f756e","impliedFormat":99},{"version":"6c41d857cf525bb086dd457c444964491da7720e03adaaac2de9d1f2fcd02d4e","impliedFormat":99},{"version":"4f16b604f497e0049e9e7bab696dcc3a237d0c4061d21c23faac1e14c42ac2fd","impliedFormat":99},{"version":"d8ce61cd5b8cc8b55615da94a9d7bdf47c9d9a137fdde024558285faa1078524","impliedFormat":99},{"version":"35bff32ca3d9d2703c5c57ad038a32f911ca5d87c89418c89dc50ccfbccbde85","impliedFormat":99},{"version":"6b44d169ab55a5c72574829c69588d8ac2a558163794a0e957cb92c0ba7669eb","impliedFormat":99},{"version":"bcdf2415f10ac1d98b74f2f074b3f3e1586e591c85d63f065354de7510f3fb3c","impliedFormat":99},{"version":"a379dedfa350f3d110f3aaa56be1e8ecd65cbc65cc5178faae14ee3763847027","impliedFormat":99},{"version":"166b9de623e58fab8b63ff05b44e011cfda9d58a1e50940e4ea873222ea30ca4","impliedFormat":99},{"version":"85b112003245613f70fd2c721f3a579b050ec153c9e4c95ce05212f171e5d62c","impliedFormat":99},{"version":"0976c6a225dd08f11800e8705f7205495043c5f7be93747bc00a376a49dad7a1","impliedFormat":99},{"version":"147793d928f57a4496c91495c15ca8222b0361847e6244a1b8202b0e6b5d7037","impliedFormat":99},{"version":"9ec1a3ac131e28eb57c383f1ce940d42dbb833074089eef51de745c01d37fa8f","impliedFormat":99},{"version":"6f89fa1c31a3fa771df3ea464923c5cda615813abd5fcd3c668fa5fe6f3be5cf","impliedFormat":99},{"version":"87564b88fce6667892e67b5de8e7aca91c2c831c38896927ea864e06331aa450","impliedFormat":99},{"version":"5fd49a17eb68b7c369db85b6babab7646cce6642258c5f0d850260f2a812657f","impliedFormat":99},{"version":"3e53a4938bd3ec19a96c4e973915805723ae10c17a104b9b3ae4ab6a8b342675","impliedFormat":99},{"version":"0e14bd8d7d8622ba8fae3dfdbe0c699caa6b0c1741aece10b015b07cc92f4637","impliedFormat":99},{"version":"2e9e45960564e199eb7fa44c177c1ed9f0a73cf97856e5a6aee3f678e7b26624","impliedFormat":99},{"version":"e92fe581a8be70e4613b143949670e934b9c31202e641666dba2e87b4599ee6c","impliedFormat":99},{"version":"c6496f6fb0375ebe6289eb848ac11e20145f64225d1f653faea63f76f24961a4","impliedFormat":99},{"version":"5f46c691c21387109a4eec46784a165512bc28aab6fb7163c3998d7fe1e85599","impliedFormat":99},{"version":"23c6cf9e991a93961c881844f96340f0e857354e8b03cd44fe55d3ebbeb9ece0","impliedFormat":99},{"version":"d8889d662f7c4c04f64ce32b6f840f5463b7e45400d47e0b310c3cf1bd576272","signature":"d74c45ca0aedc6ad8d51e136083403a0b658e94ac5ba96f491aa0b8fd83e326e","impliedFormat":99}],"options":{"composite":true,"declaration":true,"declarationDir":"./esm","declarationMap":true,"esModuleInterop":true,"exactOptionalPropertyTypes":true,"importHelpers":true,"module":199,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"noImplicitOverride":true,"noImplicitReturns":true,"noImplicitThis":true,"noUncheckedIndexedAccess":true,"noUnusedLocals":true,"outDir":"./esm","rootDir":"./src","skipLibCheck":true,"sourceMap":true,"strict":true,"stripInternal":true,"target":9},"fileIdsList":[[56,129],[89,94,95,96,103,124,125],[72,94,95],[72,89,95],[94,126],[72,126],[97,98,99,100,104,111,122,123],[89,126],[97],[94,103,126],[97,108],[108,109,110],[105,106,107],[89,103,105,126],[72,89,103,126],[112,113,114,115,116,117,121],[72,89,112,113],[72,89,112],[72,89],[89,94,103,112,113,114,120,126],[95,96,103,120,124,125,126,127,128],[72,89,94,95,101],[101,102],[89,94,102],[94],[72,118,119],[90,91],[90],[90,91,92,93],[91],[72,74,75],[74],[72,74,79],[74,75,76,77,78,79,80,81,82,83,84,85,86,87,88],[73,74],[73],[72,76],[72,74],[57,58,59,61],[57,58,62],[57,58,59,61,62],[60],[59],[60,63,70,71],[60,63,70],[63],[65],[65,66,67],[60,63,65],[64,68,69],[129]],"referencedMap":[[130,1],[126,2],[96,3],[127,4],[97,5],[98,6],[124,7],[99,8],[100,9],[104,10],[109,11],[111,12],[108,13],[106,14],[107,14],[105,15],[122,16],[114,17],[115,18],[116,19],[117,19],[112,19],[113,18],[121,20],[123,9],[129,21],[95,19],[102,22],[103,23],[101,24],[118,25],[120,26],[92,27],[91,28],[94,29],[93,30],[76,31],[75,32],[77,32],[78,32],[80,33],[81,32],[89,34],[82,32],[83,35],[84,32],[85,32],[74,36],[86,37],[87,38],[79,38],[88,38],[62,39],[59,40],[63,41],[61,42],[58,43],[72,44],[71,45],[64,46],[65,46],[66,47],[68,48],[67,49],[70,50],[69,46]],"exportedModulesMap":[[130,51],[126,2],[96,3],[127,4],[97,5],[98,6],[124,7],[99,8],[100,9],[104,10],[109,11],[111,12],[108,13],[106,14],[107,14],[105,15],[122,16],[114,17],[115,18],[116,19],[117,19],[112,19],[113,18],[121,20],[123,9],[129,21],[95,19],[102,22],[103,23],[101,24],[118,25],[120,26],[92,27],[91,28],[94,29],[93,30],[76,31],[75,32],[77,32],[78,32],[80,33],[81,32],[89,34],[82,32],[83,35],[84,32],[85,32],[74,36],[86,37],[87,38],[79,38],[88,38],[62,39],[59,40],[63,41],[61,42],[58,43],[72,44],[71,45],[64,46],[65,46],[66,47],[68,48],[67,49],[70,50],[69,46]],"semanticDiagnosticsPerFile":[56,11,13,12,2,14,15,16,17,18,19,20,21,3,4,25,22,23,24,26,27,28,5,29,30,31,32,6,36,33,34,35,37,7,38,43,44,39,40,41,42,8,48,45,46,47,49,9,50,51,52,53,54,1,10,55,73,130,126,96,127,97,98,124,99,100,104,109,111,108,106,107,105,110,122,114,115,116,117,112,113,121,123,128,125,129,95,102,103,101,118,119,120,90,92,91,94,93,76,75,77,78,80,81,89,82,83,84,85,74,86,87,79,88,62,59,63,57,61,58,72,71,64,65,66,68,67,70,69,60],"latestChangedDtsFile":"./esm/index.d.ts"},"version":"4.9.4"}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"files": {
|
|
3
|
-
"libraries/adb-credential-web/.rush/temp/shrinkwrap-deps.json": "286b484a6229121d661cebc7b6a84931db8ee1a4",
|
|
4
|
-
"libraries/adb-credential-web/CHANGELOG.json": "a726d5109dba989d17f82682be500328707f031e",
|
|
5
|
-
"libraries/adb-credential-web/CHANGELOG.md": "d30f3da170a29d165274a922b2a990eb75a27928",
|
|
6
|
-
"libraries/adb-credential-web/README.md": "35dc273a753ae6f722bad96ae6e52efe9b2d6840",
|
|
7
|
-
"libraries/adb-credential-web/package.json": "cdb381649b4019a27d45fc9ff074459c5b85ba47",
|
|
8
|
-
"libraries/adb-credential-web/src/index.ts": "42f5ead9cfde7266096dce1e82f3c7cc0309986b",
|
|
9
|
-
"libraries/adb-credential-web/tsconfig.json": "43cb24d0667828c30374e15c5930a55ea1b0bb7e"
|
|
10
|
-
},
|
|
11
|
-
"arguments": "build-ts-package "
|
|
12
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"files": {
|
|
3
|
-
"libraries/adb-credential-web/.rush/temp/shrinkwrap-deps.json": "286b484a6229121d661cebc7b6a84931db8ee1a4",
|
|
4
|
-
"libraries/adb-credential-web/CHANGELOG.json": "a726d5109dba989d17f82682be500328707f031e",
|
|
5
|
-
"libraries/adb-credential-web/CHANGELOG.md": "d30f3da170a29d165274a922b2a990eb75a27928",
|
|
6
|
-
"libraries/adb-credential-web/README.md": "35dc273a753ae6f722bad96ae6e52efe9b2d6840",
|
|
7
|
-
"libraries/adb-credential-web/package.json": "cdb381649b4019a27d45fc9ff074459c5b85ba47",
|
|
8
|
-
"libraries/adb-credential-web/src/index.ts": "42f5ead9cfde7266096dce1e82f3c7cc0309986b",
|
|
9
|
-
"libraries/adb-credential-web/tsconfig.json": "43cb24d0667828c30374e15c5930a55ea1b0bb7e"
|
|
10
|
-
},
|
|
11
|
-
"arguments": "build-ts-package --incremental "
|
|
12
|
-
}
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"../../libraries/adb-credential-web": "../../libraries/adb-credential-web:FyPocPToKIuA8/ZaRCmucFT4fiudVUg4sA09EqNBROg=:",
|
|
3
|
-
"/tslib/2.4.0": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==",
|
|
4
|
-
"/typescript/4.7.4": "sha512-C0WQT0gezHuw6AdY1M2jxUO83Rjf0HP7Sk1DtXj6j1EwkQNZrHAg2XPWlq62oqEhYvONq5pkC2Y9oPljWToLmQ=="
|
|
5
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
Invoking: build-ts-package --incremental
|
package/tsconfig.json
DELETED