@yume-chan/adb-credential-web 0.0.17 → 0.0.19
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 +12 -0
- package/CHANGELOG.md +11 -1
- package/README.md +14 -1
- package/esm/index.d.ts +24 -7
- package/esm/index.d.ts.map +1 -1
- package/esm/index.js +53 -36
- package/esm/index.js.map +1 -1
- package/package.json +13 -9
- 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,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yume-chan/adb-credential-web",
|
|
3
3
|
"entries": [
|
|
4
|
+
{
|
|
5
|
+
"version": "0.0.19",
|
|
6
|
+
"tag": "@yume-chan/adb-credential-web_v0.0.19",
|
|
7
|
+
"date": "Sun, 09 Apr 2023 05:55:33 GMT",
|
|
8
|
+
"comments": {}
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
"version": "0.0.18",
|
|
12
|
+
"tag": "@yume-chan/adb-credential-web_v0.0.18",
|
|
13
|
+
"date": "Wed, 25 Jan 2023 21:33:49 GMT",
|
|
14
|
+
"comments": {}
|
|
15
|
+
},
|
|
4
16
|
{
|
|
5
17
|
"version": "0.0.17",
|
|
6
18
|
"tag": "@yume-chan/adb-credential-web_v0.0.17",
|
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
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 Sun, 09 Apr 2023 05:55:33 GMT and should not be manually modified.
|
|
4
|
+
|
|
5
|
+
## 0.0.19
|
|
6
|
+
Sun, 09 Apr 2023 05:55:33 GMT
|
|
7
|
+
|
|
8
|
+
_Version update only_
|
|
9
|
+
|
|
10
|
+
## 0.0.18
|
|
11
|
+
Wed, 25 Jan 2023 21:33:49 GMT
|
|
12
|
+
|
|
13
|
+
_Version update only_
|
|
4
14
|
|
|
5
15
|
## 0.0.17
|
|
6
16
|
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
|
-
import {
|
|
2
|
-
export default class AdbWebCredentialStore implements AdbCredentialStore {
|
|
3
|
-
readonly localStorageKey: string;
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
1
|
+
import type { AdbCredentialStore } from "@yume-chan/adb";
|
|
2
|
+
export default class AdbWebCredentialStore implements AdbCredentialStore {
|
|
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
|
+
*/
|
|
9
|
+
constructor(localStorageKey?: string);
|
|
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
|
+
*/
|
|
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>;
|
|
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,KAAK,EAAE,kBAAkB,EAAE,MAAM,gBAAgB,CAAC;AAUzD,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,37 +1,54 @@
|
|
|
1
|
-
// cspell: ignore RSASSA
|
|
2
|
-
import { calculateBase64EncodedLength, calculatePublicKey, calculatePublicKeyLength, decodeBase64, decodeUtf8, encodeBase64 } from "@yume-chan/adb";
|
|
3
|
-
export default class AdbWebCredentialStore {
|
|
4
|
-
localStorageKey;
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
const
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
1
|
+
// cspell: ignore RSASSA
|
|
2
|
+
import { calculateBase64EncodedLength, calculatePublicKey, calculatePublicKeyLength, decodeBase64, decodeUtf8, encodeBase64, } from "@yume-chan/adb";
|
|
3
|
+
export default class AdbWebCredentialStore {
|
|
4
|
+
localStorageKey;
|
|
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") {
|
|
11
|
+
this.localStorageKey = localStorageKey;
|
|
12
|
+
}
|
|
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
|
+
*/
|
|
20
|
+
async generateKey() {
|
|
21
|
+
const { privateKey: cryptoKey } = await crypto.subtle.generateKey({
|
|
22
|
+
name: "RSASSA-PKCS1-v1_5",
|
|
23
|
+
modulusLength: 2048,
|
|
24
|
+
// 65537
|
|
25
|
+
publicExponent: new Uint8Array([0x01, 0x00, 0x01]),
|
|
26
|
+
hash: "SHA-1",
|
|
27
|
+
}, true, ["sign", "verify"]);
|
|
28
|
+
const privateKey = new Uint8Array(await crypto.subtle.exportKey("pkcs8", cryptoKey));
|
|
29
|
+
window.localStorage.setItem(this.localStorageKey, decodeUtf8(encodeBase64(privateKey)));
|
|
30
|
+
// The authentication module in core doesn't need public keys.
|
|
31
|
+
// It will generate the public key from private key every time.
|
|
32
|
+
// However, maybe there are people want to manually put this public key onto their device,
|
|
33
|
+
// so also save the public key for their convenience.
|
|
34
|
+
const publicKeyLength = calculatePublicKeyLength();
|
|
35
|
+
const [publicKeyBase64Length] = calculateBase64EncodedLength(publicKeyLength);
|
|
36
|
+
const publicKeyBuffer = new Uint8Array(publicKeyBase64Length);
|
|
37
|
+
calculatePublicKey(privateKey, publicKeyBuffer);
|
|
38
|
+
encodeBase64(publicKeyBuffer.subarray(0, publicKeyLength), publicKeyBuffer);
|
|
39
|
+
window.localStorage.setItem(this.localStorageKey + ".pub", decodeUtf8(publicKeyBuffer));
|
|
40
|
+
return privateKey;
|
|
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
|
+
}
|
|
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;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,wBAAwB;AAGxB,OAAO,EACH,4BAA4B,EAC5B,kBAAkB,EAClB,wBAAwB,EACxB,YAAY,EACZ,UAAU,EACV,YAAY,GACf,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.19",
|
|
4
4
|
"description": "Credential Store for `@yume-chan/adb` using Web LocalStorage API.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"adb"
|
|
@@ -23,16 +23,20 @@
|
|
|
23
23
|
"type": "module",
|
|
24
24
|
"main": "esm/index.js",
|
|
25
25
|
"types": "esm/index.d.ts",
|
|
26
|
-
"devDependencies": {
|
|
27
|
-
"typescript": "^4.7.4",
|
|
28
|
-
"@yume-chan/ts-package-builder": "^1.0.0"
|
|
29
|
-
},
|
|
30
26
|
"dependencies": {
|
|
31
|
-
"@yume-chan/adb": "^0.0.
|
|
32
|
-
"tslib": "^2.4.
|
|
27
|
+
"@yume-chan/adb": "^0.0.19",
|
|
28
|
+
"tslib": "^2.4.1"
|
|
29
|
+
},
|
|
30
|
+
"devDependencies": {
|
|
31
|
+
"@yume-chan/eslint-config": "^1.0.0",
|
|
32
|
+
"@yume-chan/tsconfig": "^1.0.0",
|
|
33
|
+
"eslint": "^8.36.0",
|
|
34
|
+
"prettier": "^2.8.4",
|
|
35
|
+
"typescript": "^4.9.4"
|
|
33
36
|
},
|
|
34
37
|
"scripts": {
|
|
35
|
-
"build": "build
|
|
36
|
-
"build:watch": "
|
|
38
|
+
"build": "tsc -b tsconfig.build.json",
|
|
39
|
+
"build:watch": "tsc -b tsconfig.build.json",
|
|
40
|
+
"lint": "eslint src/**/*.ts --fix && prettier src/**/*.ts --write --tab-width 4"
|
|
37
41
|
}
|
|
38
42
|
}
|
package/src/index.ts
CHANGED
|
@@ -1,51 +1,85 @@
|
|
|
1
1
|
// cspell: ignore RSASSA
|
|
2
2
|
|
|
3
|
-
import {
|
|
3
|
+
import type { AdbCredentialStore } from "@yume-chan/adb";
|
|
4
|
+
import {
|
|
5
|
+
calculateBase64EncodedLength,
|
|
6
|
+
calculatePublicKey,
|
|
7
|
+
calculatePublicKeyLength,
|
|
8
|
+
decodeBase64,
|
|
9
|
+
decodeUtf8,
|
|
10
|
+
encodeBase64,
|
|
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@5.0.3/node_modules/typescript/lib/lib.es5.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2015.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2016.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2017.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2018.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2019.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2020.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2021.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2022.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2023.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.esnext.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.dom.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2021.string.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2022.array.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2022.error.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2022.object.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2022.string.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2023.array.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.decorators.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../common/temp/node_modules/.pnpm/tslib@2.5.0/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/consumable.d.ts","../stream-extra/esm/decode-utf8.d.ts","../stream-extra/esm/distribution.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/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/socket.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/request.d.ts","../adb/esm/commands/sync/push.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/utils/auto-reset-event.d.ts","../adb/esm/utils/base64.d.ts","../adb/esm/utils/conditional-variable.d.ts","../adb/esm/utils/index.d.ts","../adb/esm/index.d.ts","./src/index.ts"],"fileInfos":[{"version":"6a6b471e7e43e15ef6f8fe617a22ce4ecb0e34efa6c3dfcfe7cebd392bcca9d2","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"dc48272d7c333ccf58034c0026162576b7d50ea0e69c3b9292f803fc20720fd5","impliedFormat":1},{"version":"27147504487dc1159369da4f4da8a26406364624fa9bc3db632f7d94a5bae2c3","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc","impliedFormat":1},{"version":"f4e736d6c8d69ae5b3ab0ddfcaa3dc365c3e76909d6660af5b4e979b3934ac20","impliedFormat":1},{"version":"eeeb3aca31fbadef8b82502484499dfd1757204799a6f5b33116201c810676ec","impliedFormat":1},{"version":"fcd3ecc9f764f06f4d5c467677f4f117f6abf49dee6716283aa204ff1162498b","affectsGlobalScope":true,"impliedFormat":1},{"version":"f296963760430fb65b4e5d91f0ed770a91c6e77455bacf8fa23a1501654ede0e","affectsGlobalScope":true,"impliedFormat":1},{"version":"5114a95689b63f96b957e00216bc04baf9e1a1782aa4d8ee7e5e9acbf768e301","affectsGlobalScope":true,"impliedFormat":1},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab22100fdd0d24cfc2cc59d0a00fc8cf449830d9c4030dc54390a46bd562e929","affectsGlobalScope":true,"impliedFormat":1},{"version":"f7bd636ae3a4623c503359ada74510c4005df5b36de7f23e1db8a5c543fd176b","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"0c20f4d2358eb679e4ae8a4432bdd96c857a2960fd6800b21ec4008ec59d60ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"36ae84ccc0633f7c0787bc6108386c8b773e95d3b052d9464a99cd9b8795fbec","affectsGlobalScope":true,"impliedFormat":1},{"version":"82d0d8e269b9eeac02c3bd1c9e884e85d483fcb2cd168bccd6bc54df663da031","affectsGlobalScope":true,"impliedFormat":1},{"version":"b8deab98702588840be73d67f02412a2d45a417a3c097b2e96f7f3a42ac483d1","affectsGlobalScope":true,"impliedFormat":1},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"376d554d042fb409cb55b5cbaf0b2b4b7e669619493c5d18d5fa8bd67273f82a","affectsGlobalScope":true,"impliedFormat":1},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true,"impliedFormat":1},{"version":"c4138a3dd7cd6cf1f363ca0f905554e8d81b45844feea17786cdf1626cb8ea06","affectsGlobalScope":true,"impliedFormat":1},{"version":"6ff3e2452b055d8f0ec026511c6582b55d935675af67cdb67dd1dc671e8065df","affectsGlobalScope":true,"impliedFormat":1},{"version":"03de17b810f426a2f47396b0b99b53a82c1b60e9cba7a7edda47f9bb077882f4","affectsGlobalScope":true,"impliedFormat":1},{"version":"8184c6ddf48f0c98429326b428478ecc6143c27f79b79e85740f17e6feb090f1","affectsGlobalScope":true,"impliedFormat":1},{"version":"261c4d2cf86ac5a89ad3fb3fafed74cbb6f2f7c1d139b0540933df567d64a6ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"6af1425e9973f4924fca986636ac19a0cf9909a7e0d9d3009c349e6244e957b6","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"15a630d6817718a2ddd7088c4f83e4673fde19fa992d2eae2cf51132a302a5d3","affectsGlobalScope":true,"impliedFormat":1},{"version":"b7e9f95a7387e3f66be0ed6db43600c49cec33a3900437ce2fd350d9b7cb16f2","affectsGlobalScope":true,"impliedFormat":1},{"version":"01e0ee7e1f661acedb08b51f8a9b7d7f959e9cdb6441360f06522cc3aea1bf2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac17a97f816d53d9dd79b0d235e1c0ed54a8cc6a0677e9a3d61efb480b2a3e4e","affectsGlobalScope":true,"impliedFormat":1},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true,"impliedFormat":1},{"version":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true,"impliedFormat":1},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true,"impliedFormat":1},{"version":"9cc66b0513ad41cb5f5372cca86ef83a0d37d1c1017580b7dace3ea5661836df","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"709efdae0cb5df5f49376cde61daacc95cdd44ae4671da13a540da5088bf3f30","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"61ed9b6d07af959e745fb11f9593ecd743b279418cc8a99448ea3cd5f3b3eb22","affectsGlobalScope":true,"impliedFormat":1},{"version":"038a2f66a34ee7a9c2fbc3584c8ab43dff2995f8c68e3f566f4c300d2175e31e","affectsGlobalScope":true,"impliedFormat":1},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true,"impliedFormat":1},{"version":"f5c92f2c27b06c1a41b88f6db8299205aee52c2a2943f7ed29bd585977f254e8","affectsGlobalScope":true,"impliedFormat":1},{"version":"b7feb7967c6c6003e11f49efa8f5de989484e0a6ba2e5a6c41b55f8b8bd85dba","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"b9ea5778ff8b50d7c04c9890170db34c26a5358cccba36844fe319f50a43a61a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"50d53ccd31f6667aff66e3d62adf948879a3a16f05d89882d1188084ee415bbc","affectsGlobalScope":true,"impliedFormat":1},{"version":"25de46552b782d43cb7284df22fe2a265de387cf0248b747a7a1b647d81861f6","affectsGlobalScope":true,"impliedFormat":1},{"version":"307c8b7ebbd7f23a92b73a4c6c0a697beca05b06b036c23a34553e5fe65e4fdc","affectsGlobalScope":true,"impliedFormat":1},{"version":"189c0703923150aa30673fa3de411346d727cc44a11c75d05d7cf9ef095daa22","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"f1c9fe42b65437a61104e601eb298c5c859fb522b483f1bdb700eed67a16f980","impliedFormat":1},{"version":"7ceac7d7800ef7065908464aba0a009e9a03ff95f177a44f999687bdf10d039f","impliedFormat":99},{"version":"6043ab81faab77b975cb2a8457cc28c3b6f90a766cbbd27914da686bc41c83a0","impliedFormat":99},{"version":"613051be0c04c0fadf883f5ec01dcb0a4639ac92d9e2c12a222680c91b374595","impliedFormat":99},{"version":"a740a1e2d889fc4344fbb49a7f8b02ee664850be5cdcf029ace8ceb4316623db","impliedFormat":99},{"version":"12f034074aafde1bb145598fb874ae56b0b53a1c3ed0434a5d3ea8eb03c62b72","impliedFormat":99},{"version":"cc1d94a37d0dde4d5a85a35aa9133abdb9696987960116e29140c08ebdcdd869","impliedFormat":99},{"version":"5af3b8b1a9063e033fc1e32a3e95956f5f5e22548d5ccca628b1ab87e42087d1","impliedFormat":99},{"version":"152e4cab74b292a4de587e604c6133bab4525f0de7b32dfaf4a211de799ef262","impliedFormat":99},{"version":"1b1e7a0b9362425c6be672b9fcf1fb2763df4e959ce840c9fdce190eeb8905ba","impliedFormat":99},{"version":"4e74287ad61c1544e88339e78a4da19cb79c729be8799b8cd190353368532e30","impliedFormat":99},{"version":"21a136c72551be7c24d797d4fa1401d35ee62325bec7442a6869cea50a50ad7a","impliedFormat":99},{"version":"5ea1325a998e722fffc89ff8c2d00eaf35e491f3fada16fb56c6360f63d16d79","impliedFormat":99},{"version":"c4b01fc816c556f2479d264535644a9a4ba578e241027c21b2a2229b7647887e","impliedFormat":99},{"version":"e24d67437856c921a9a40f7fbac38ac576439e6616eb698fb769279ecbc7802a","impliedFormat":99},{"version":"c87cd07810cf18ff00240875c8e7b3249bb5e1dd15418193d27265586ba69179","impliedFormat":99},{"version":"b338c41818e59749b93f43406018eaa613a8ced869ad63873f2cea90643af5a1","affectsGlobalScope":true,"impliedFormat":99},{"version":"19c2d8da51e4944a19e0ca377df3fd9d249dd8f9cab9544632fb8d10a72808f7","impliedFormat":1},{"version":"a387648b45b3d02c838a213809bf7aa3a3c6e009b0cfedbbb98e7863219fd0b4","impliedFormat":99},{"version":"82d95f72c9325b602b1195a9f360b95adb7e923c1e0b9250ecc005089cbd2021","impliedFormat":99},{"version":"fd8347fd6cd4011b97ca0e578b64147040d25f1afd065bd75195d6050567382e","impliedFormat":99},{"version":"5402edb6222bbecbcda82571908c4b59a1f0782b022b3d40f3c8dd44008c6c76","impliedFormat":99},{"version":"316d7bdfb430fa119cbd460e01ffbf726321a5e54575c22b70e8ff56241d849a","impliedFormat":99},{"version":"4bc1ccb8c2c3b50d3502ffdbb66483eda7bef78b6e9daf396ec69e63efb2ff21","impliedFormat":99},{"version":"54c5a024ed2e63b62797f520e2e0623d4fdc7bb07abb474d460e6fe9f07ad7f3","impliedFormat":99},{"version":"61f0e8bdd3c52b89d45bf3681464040843ad8c8b70fff57df8960af47d5e0a5b","impliedFormat":99},{"version":"10e344cfaa2a9bded8a2e30756ed0852605887307b3039d13bfc445af8de8301","impliedFormat":99},{"version":"4ebc57d20caf062019a2b8c9ce1e54602a411022eb4f7fa325888b9bcf63693a","impliedFormat":99},{"version":"662cafdf363d512eff0d6c525c711684dba726ac5f4d09f473110a05c8ecd8e5","impliedFormat":99},{"version":"86c62ba4f3279d13647e2901b8819c9b32f4eb9645d50d02b4d60e5521f693db","impliedFormat":99},{"version":"98678d6ac29dfa3f80452de2a87f464dee4908476f817d6f5e0677802ad43f7b","impliedFormat":99},{"version":"057f28f1e4c53bfdc397099ee4bf873ef32f26a938a135881b19bf10f968a805","impliedFormat":99},{"version":"d00e790b0d3738482ddb18bb446210b41019520dd32438570d6bc533f7b95239","impliedFormat":99},{"version":"bd612398057a1da74a8be7f9691b175c5b9136f74b2196849b012bf3409aa9e0","impliedFormat":99},{"version":"9e33e135a12a5761c92a4ef0057e1d24310ada6f0758a13223036efc22b9e745","impliedFormat":99},{"version":"7565a3e1f88b68c438331d8ece71540f9fb5a11a8a0480b5c262c701142c5048","impliedFormat":99},{"version":"af6ac8a19dbd05c34feff97d0eae81194fd0be1358bd2366478e9a574492d332","impliedFormat":99},{"version":"a21c587d34edbe9808b8f4fac207d190f802687b477ef55ee0f494d79a427f31","impliedFormat":99},{"version":"f00b8fc0c970cfd54d4df6047aae216bce4d7a2ceb6610655541a678ac54c57a","impliedFormat":99},{"version":"11fd6a023d60896a902933f64a2c8363102e5276838dbe29aa02a24c2e69fbd1","impliedFormat":99},{"version":"1087c7588b6e88542b88e6aa8498c09c6ce8c0c3df40bde2d37e20f357210a05","impliedFormat":99},{"version":"7b2e738c6a41ddb1ccfd7084619c45b1132a21c5f05f23c65ae3daa90b9ed24f","impliedFormat":99},{"version":"d5664fad55c16b09f4fbda92412a3c0d99c5e143434a5a82dc0f86d0823014ae","impliedFormat":99},{"version":"ac5d1242b5e0af60effdcbdbd2ea3f1a1cfbc2877eb4ad8e6df0e596ff3ce047","impliedFormat":99},{"version":"5db340210b35bc3cbe55892dd69d953a5d98f2063a9bb4717733bc262f0ae47c","impliedFormat":99},{"version":"b04d6cec751769f0fb57bd0b8db0ed3f2ac60be345207bbcdf8fc9f6de354515","impliedFormat":99},{"version":"b3326593def9cffb6cbfeddea51593a8865053d37a27db7580556a1b710a688b","impliedFormat":99},{"version":"d5bf42b8ace334e2a274b0e2c5d4c2f0eb53034813a692df4741dd299458060b","impliedFormat":99},{"version":"0a5123149bb8b9d612a7187a92e163b71f78a3dd182717660bfcd812e962cf31","impliedFormat":99},{"version":"aa235f1a22fbfcdf04c852a6ff4acd0ad6ea50e3c6875dce97ec14114fd311ad","impliedFormat":99},{"version":"a14c3eb861d4aa86a7f471b0779cb25f124b457cd0fe779b77261dcce816b19f","impliedFormat":99},{"version":"2d7311fdb705d03b0020f2ae6253a46c66f0457de0e5126188f4f78ea1192337","impliedFormat":99},{"version":"721313e1405531faa6e144e78ad3561023150692fbbcc23a4db9c2bda7e2b292","impliedFormat":99},{"version":"0bfafbea0db16cf312eb181f9153d840640fc36e47c0e61b30ddc16e5d23d432","impliedFormat":99},{"version":"3651947da5192aa0655f8a24ca016b3fb0a65bf24950cf52176d8972c7c32785","impliedFormat":99},{"version":"98da7969aa8079a6625791fdb0806f2cb125ae398bccd84e8cb8a76c454aac93","impliedFormat":99},{"version":"f31ad9485ec184e2fa924a3069c5eaf6f27b19e20b449893c6a288d0aa6337ae","impliedFormat":99},{"version":"2a06ca67fa040851e26d37c21979babae1064a117c137d6bc30051a20486ce03","impliedFormat":99},{"version":"8fc0d6a1e97a1fcd37ebdb72241e4608652a69e1a963ca662d1429750cf04f73","impliedFormat":99},{"version":"8f70945f7ea3ad857863b6035d2ac1fdf1b6793c6a2ca74ce89508f82be4dc29","impliedFormat":99},{"version":"85e159ffc1676583a00e26cdae8f40fa3139e32c89aa7ecbc725e120a8db1418","impliedFormat":99},{"version":"ea4d0669fa41158a8ae4dfbcb9f690f3177edd29c83a4cf01b74a4db24c5dcc8","impliedFormat":99},{"version":"81c0e96521d9ec47ea0f3bf09cb6fb49164232ddb1c809ec9e3b305c9a4421c9","impliedFormat":99},{"version":"a02909c6e3790be21c868ecb6476e58aeb8fef5c06f22437b224b317ae1a43f8","impliedFormat":99},{"version":"eb90fe18be0b3b5b759ff8f055e9ccb19c6a4287c9061c7a4bb9805968e46498","impliedFormat":99},{"version":"a76a1399270bdc86cfeb714aa6df221e2d6192a2c03431471ffdca52e5e4a356","impliedFormat":99},{"version":"055d5c58abf9c069d88cd9f62a426008adc38258390ceba978fa527fffa54441","impliedFormat":99},{"version":"020962899646e5e2efc7100d1a0c443be16800cef6f2cada68c20fe8de585d43","impliedFormat":99},{"version":"8984b8945e5a6f5af1eea0a34d4aa5f27029016dad98042fc6b459a76d8bdef0","impliedFormat":99},{"version":"b9ba968a57a494905241b7d4262cb3bc3aeb03b686415864e047ab1460ccb216","impliedFormat":99},{"version":"964c7df55e12845987b9f00ad0712f7c4f4cf9de0cd4c0a85a357e4e9ea84d10","impliedFormat":99},{"version":"2f90209a833cbd50fc60babcd00c89f5c7d9550191eaa6675efa0c1c2afc5c44","impliedFormat":99},{"version":"c82303f9ddeb0df5c2853ba02e9f1603ad0f01200225e6ee4cb2da53757243c0","impliedFormat":99},{"version":"6f74bbe0cfee09e9a504d4e4960a79bb400bdb7d7f1d016a232b550041f8bb7c","impliedFormat":99},{"version":"0d0dd6f1533d68d703542b713df2961e6749dca1885e07487fd5fd383bac0392","impliedFormat":99},{"version":"d21a377e40fb4a26b08d2b10c3a9f1bad0bb449cc7b2c7daee2b4a5fdc547b98","impliedFormat":99},{"version":"7b2744141b11a2493928cc42f8e714242f739f0c053579a42da4fd1503af3d02","signature":"91c72ebe7b6237479d381b33af8264fa04a1dbdb92beeb04177a7f6bb58c2c0a","impliedFormat":99}],"root":[137],"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":[[61,136],[95,100,101,102,108,127,128],[77,100,101],[77,95,101],[100,129],[77,129],[103,104,105,109,116,125,126],[103],[100,108,129],[103,113],[113,114,115],[110,111,112],[95,108,110,129],[77,95,108,129],[117,118,119,120,121,122,123,124],[77,117,118,119],[77,95,117,118],[77,95,118,122],[77],[77,95,136],[77,117,118],[95,100,108,117,118,119,120,129],[101,102,108,127,128,129,130,131,135],[77,95],[77,95,100,101,106],[106,107],[95,100,107],[100],[77,132,133,134],[96,97],[96],[96,97,98,99],[97],[77,79,80],[79],[82],[77,79,85],[79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94],[78,79],[78],[77,81],[77,79],[62,63,64,66],[62,63,67],[62,63,64,66,67],[65],[64],[65,68,75,76],[65,68,75],[68],[70],[70,71,72],[65,68,70],[69,73,74],[136]],"referencedMap":[[137,1],[129,2],[102,3],[130,4],[103,5],[104,6],[127,7],[105,8],[109,9],[114,10],[116,11],[113,12],[111,13],[112,13],[110,14],[125,15],[120,16],[121,17],[123,18],[122,19],[117,19],[118,20],[119,21],[124,22],[126,8],[136,23],[101,24],[107,25],[108,26],[106,27],[132,28],[134,28],[135,29],[98,30],[97,31],[100,32],[99,33],[81,34],[80,35],[82,35],[83,35],[84,36],[86,37],[87,35],[95,38],[88,35],[89,39],[90,35],[91,35],[79,40],[92,41],[93,42],[85,42],[94,42],[67,43],[64,44],[68,45],[66,46],[63,47],[77,48],[76,49],[69,50],[70,50],[71,51],[73,52],[72,53],[75,54],[74,50]],"exportedModulesMap":[[137,55],[129,2],[102,3],[130,4],[103,5],[104,6],[127,7],[105,8],[109,9],[114,10],[116,11],[113,12],[111,13],[112,13],[110,14],[125,15],[120,16],[121,17],[123,18],[122,19],[117,19],[118,20],[119,21],[124,22],[126,8],[136,23],[101,24],[107,25],[108,26],[106,27],[132,28],[134,28],[135,29],[98,30],[97,31],[100,32],[99,33],[81,34],[80,35],[82,35],[83,35],[84,36],[86,37],[87,35],[95,38],[88,35],[89,39],[90,35],[91,35],[79,40],[92,41],[93,42],[85,42],[94,42],[67,43],[64,44],[68,45],[66,46],[63,47],[77,48],[76,49],[69,50],[70,50],[71,51],[73,52],[72,53],[75,54],[74,50]],"semanticDiagnosticsPerFile":[61,59,60,12,14,13,2,15,16,17,18,19,20,21,22,3,4,26,23,24,25,27,28,29,5,30,31,32,33,6,37,34,35,36,38,7,39,44,45,40,41,42,43,8,49,46,47,48,50,9,51,52,53,56,54,55,57,10,1,11,58,78,137,129,102,130,103,104,127,105,109,114,116,113,111,112,110,115,125,120,121,123,122,117,118,119,124,126,131,128,136,101,107,108,106,132,133,134,135,96,98,97,100,99,81,80,82,83,84,86,87,95,88,89,90,91,79,92,93,85,94,67,64,68,62,66,63,77,76,69,70,71,73,72,75,74,65],"latestChangedDtsFile":"./esm/index.d.ts"},"version":"5.0.3"}
|
|
@@ -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