@cumulus/lzards-api-client 10.1.2-alpha.0 → 13.2.1-alpha.1
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/README.md +58 -0
- package/errors.d.ts +4 -0
- package/errors.d.ts.map +1 -0
- package/errors.js +13 -0
- package/errors.js.map +1 -0
- package/index.d.ts +1 -1
- package/index.d.ts.map +1 -1
- package/index.js +2 -1
- package/index.js.map +1 -1
- package/lzards.d.ts +14 -5
- package/lzards.d.ts.map +1 -1
- package/lzards.js +22 -16
- package/lzards.js.map +1 -1
- package/package.json +6 -6
- package/src/errors.ts +8 -0
- package/src/index.ts +4 -1
- package/src/lzards.ts +25 -17
- package/src/types.ts +3 -2
- package/tsconfig.tsbuildinfo +1 -1
- package/types.d.ts +2 -1
- package/types.d.ts.map +1 -1
package/README.md
CHANGED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
# @cumulus/lzards-api-client
|
|
2
|
+
|
|
3
|
+
A Node.js client to NASA's Level Zero and Repositories Data Store (LZARDS) API.
|
|
4
|
+
|
|
5
|
+
## Usage
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install @cumulus/lzards-api-client
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
### Example
|
|
12
|
+
|
|
13
|
+
```javascript
|
|
14
|
+
const { sendGetRequestToLzards } = require('@cumulus/lzards-api-client/lzards');
|
|
15
|
+
|
|
16
|
+
const now = new Date().getTime();
|
|
17
|
+
const thirtyMinutesAgo = now - (1000 * 60 * 30);
|
|
18
|
+
const twoMinutesAgo = now - (1000 * 60 * 2);
|
|
19
|
+
|
|
20
|
+
const searchParams = {
|
|
21
|
+
pageLimit: 25,
|
|
22
|
+
'metadata[provider]': provider,
|
|
23
|
+
'metadata[createdAt][gte]': thirtyMinutesAgo,
|
|
24
|
+
'metadata[createdAt][lte]': twoMinutesAgo,
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
const response = await sendGetRequestToLzards({ searchParams });
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
### Required Environment Variables
|
|
31
|
+
| Name | Example |
|
|
32
|
+
| ---- | ------- |
|
|
33
|
+
| lzards_api | https://api.launchpad.nasa.gov/icam/api/sm/v1 |
|
|
34
|
+
| launchpad_api | https://lzards.sit.earthdata.nasa.gov/api/backups |
|
|
35
|
+
| lzards_launchpad_passphrase_secret_name |abc-tf-lzards-api-client-test-launchpad-passphraseXXXXX lzards_launchpad_certificate launchpad.pfx |
|
|
36
|
+
| stackName | abc-tf |
|
|
37
|
+
| system_bucket | abc-tf-internal |
|
|
38
|
+
## LZARDS API Docs
|
|
39
|
+
|
|
40
|
+
LZARDS API documentation is here:
|
|
41
|
+
|
|
42
|
+
- <https://wiki.earthdata.nasa.gov/display/LZARDS/LZARDS+User+Guide>
|
|
43
|
+
- <https://wiki.earthdata.nasa.gov/display/LZARDS/Advanced+Query+Functionality>
|
|
44
|
+
|
|
45
|
+
## Test
|
|
46
|
+
|
|
47
|
+
Test with `npm run test`.
|
|
48
|
+
|
|
49
|
+
## About Cumulus
|
|
50
|
+
|
|
51
|
+
Cumulus is a cloud-based data ingest, archive, distribution and management prototype for NASA's future Earth science data streams.
|
|
52
|
+
|
|
53
|
+
[Cumulus Documentation](https://nasa.github.io/cumulus)
|
|
54
|
+
|
|
55
|
+
## Contributing
|
|
56
|
+
|
|
57
|
+
To make a contribution, please [see our contributing guidelines](https://github.com/nasa/cumulus/blob/master/CONTRIBUTING.md).
|
|
58
|
+
|
package/errors.d.ts
ADDED
package/errors.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"errors.d.ts","sourceRoot":"","sources":["src/errors.ts"],"names":[],"mappings":"AACA,qBAAa,iBAAkB,SAAQ,KAAK;gBAC9B,OAAO,EAAE,MAAM;CAK5B"}
|
package/errors.js
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.GetAuthTokenError = void 0;
|
|
4
|
+
// eslint-disable-next-line max-classes-per-file
|
|
5
|
+
class GetAuthTokenError extends Error {
|
|
6
|
+
constructor(message) {
|
|
7
|
+
super(message);
|
|
8
|
+
this.name = 'GetAuthTokenError';
|
|
9
|
+
Error.captureStackTrace(this, GetAuthTokenError);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
exports.GetAuthTokenError = GetAuthTokenError;
|
|
13
|
+
//# sourceMappingURL=errors.js.map
|
package/errors.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"errors.js","sourceRoot":"","sources":["src/errors.ts"],"names":[],"mappings":";;;AAAA,gDAAgD;AAChD,MAAa,iBAAkB,SAAQ,KAAK;IAC1C,YAAY,OAAe;QACzB,KAAK,CAAC,OAAO,CAAC,CAAC;QACf,IAAI,CAAC,IAAI,GAAG,mBAAmB,CAAC;QAChC,KAAK,CAAC,iBAAiB,CAAC,IAAI,EAAE,iBAAiB,CAAC,CAAC;IACnD,CAAC;CACF;AAND,8CAMC"}
|
package/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { sendGetRequestToLzards } from './lzards';
|
|
1
|
+
export { sendGetRequestToLzards, getAuthToken, } from './lzards';
|
|
2
2
|
//# sourceMappingURL=index.d.ts.map
|
package/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["src/index.ts"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,sBAAsB,EACtB,YAAY,GACb,MAAM,UAAU,CAAC"}
|
package/index.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.sendGetRequestToLzards = void 0;
|
|
3
|
+
exports.getAuthToken = exports.sendGetRequestToLzards = void 0;
|
|
4
4
|
var lzards_1 = require("./lzards");
|
|
5
5
|
Object.defineProperty(exports, "sendGetRequestToLzards", { enumerable: true, get: function () { return lzards_1.sendGetRequestToLzards; } });
|
|
6
|
+
Object.defineProperty(exports, "getAuthToken", { enumerable: true, get: function () { return lzards_1.getAuthToken; } });
|
|
6
7
|
//# sourceMappingURL=index.js.map
|
package/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["src/index.ts"],"names":[],"mappings":";;;AAAA,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["src/index.ts"],"names":[],"mappings":";;;AAAA,mCAGkB;AAFhB,gHAAA,sBAAsB,OAAA;AACtB,sGAAA,YAAY,OAAA"}
|
package/lzards.d.ts
CHANGED
|
@@ -1,11 +1,20 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { LzardsApiGetRequestParameters } from './types';
|
|
2
|
+
/**
|
|
3
|
+
* Retrieve Launchpad Auth Token
|
|
4
|
+
*
|
|
5
|
+
* @param {Function} getSecretStringFunction - function used to retrieve a secret from AWS
|
|
6
|
+
* @param {Function} getLaunchpadTokenFunction - function used to retrieve cached Launchpad token
|
|
7
|
+
* @returns {Promise<string>} - resolves to a Launchpad Token string
|
|
8
|
+
*/
|
|
9
|
+
export declare function getAuthToken(getSecretStringFunction?: any, getLaunchpadTokenFunction?: any): Promise<any>;
|
|
2
10
|
/**
|
|
3
11
|
* Send GET request to LZARDS
|
|
4
12
|
*
|
|
5
|
-
* @param {Object}
|
|
6
|
-
* @param {string}
|
|
7
|
-
* @param {Object}
|
|
13
|
+
* @param {Object} params
|
|
14
|
+
* @param {string} params.lzardsApiUri - LZARDS endpoint url
|
|
15
|
+
* @param {Object} params.searchParams - object containing search parameters to pass to lzards
|
|
16
|
+
* @param {Function} params.getAuthTokenFunction - function used to get a launchpad auth token
|
|
8
17
|
* @returns {Promise<Object>} - resolves to the LZARDS return
|
|
9
18
|
*/
|
|
10
|
-
export declare function sendGetRequestToLzards({
|
|
19
|
+
export declare function sendGetRequestToLzards({ searchParams, getAuthTokenFunction, }: LzardsApiGetRequestParameters): Promise<any>;
|
|
11
20
|
//# sourceMappingURL=lzards.d.ts.map
|
package/lzards.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"lzards.d.ts","sourceRoot":"","sources":["src/lzards.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"lzards.d.ts","sourceRoot":"","sources":["src/lzards.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,6BAA6B,EAAE,MAAM,SAAS,CAAC;AAYxD;;;;;;GAMG;AACH,wBAAsB,YAAY,CAChC,uBAAuB,MAAkB,EACzC,yBAAyB,MAAoB,gBAY9C;AAED;;;;;;;;GAQG;AACH,wBAAsB,sBAAsB,CAC1C,EACE,YAAY,EACZ,oBAAmC,GACpC,EAAE,6BAA6B,gBA4BjC"}
|
package/lzards.js
CHANGED
|
@@ -1,47 +1,53 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.sendGetRequestToLzards = void 0;
|
|
3
|
+
exports.sendGetRequestToLzards = exports.getAuthToken = void 0;
|
|
4
4
|
const { getRequiredEnvVar } = require('@cumulus/common/env');
|
|
5
5
|
const { getSecretString } = require('@cumulus/aws-client/SecretsManager');
|
|
6
6
|
const { getLaunchpadToken } = require('@cumulus/launchpad-auth');
|
|
7
|
+
const errors_1 = require("./errors");
|
|
7
8
|
const got = require('got');
|
|
8
9
|
const Logger = require('@cumulus/logger');
|
|
9
10
|
const isEmpty = require('lodash/isEmpty');
|
|
10
11
|
const log = new Logger({ sender: 'api/lib/lzards' });
|
|
11
|
-
|
|
12
|
+
/**
|
|
13
|
+
* Retrieve Launchpad Auth Token
|
|
14
|
+
*
|
|
15
|
+
* @param {Function} getSecretStringFunction - function used to retrieve a secret from AWS
|
|
16
|
+
* @param {Function} getLaunchpadTokenFunction - function used to retrieve cached Launchpad token
|
|
17
|
+
* @returns {Promise<string>} - resolves to a Launchpad Token string
|
|
18
|
+
*/
|
|
19
|
+
async function getAuthToken(getSecretStringFunction = getSecretString, getLaunchpadTokenFunction = getLaunchpadToken) {
|
|
12
20
|
const api = getRequiredEnvVar('launchpad_api');
|
|
13
|
-
const passphrase = await
|
|
21
|
+
const passphrase = await getSecretStringFunction(getRequiredEnvVar('lzards_launchpad_passphrase_secret_name'));
|
|
14
22
|
if (!passphrase) {
|
|
15
|
-
throw new
|
|
23
|
+
throw new errors_1.GetAuthTokenError('The value stored in "launchpad_passphrase_secret_name" must be defined');
|
|
16
24
|
}
|
|
17
25
|
const certificate = getRequiredEnvVar('lzards_launchpad_certificate');
|
|
18
|
-
const token = await
|
|
26
|
+
const token = await getLaunchpadTokenFunction({
|
|
19
27
|
api, passphrase, certificate,
|
|
20
28
|
});
|
|
21
29
|
return token;
|
|
22
30
|
}
|
|
31
|
+
exports.getAuthToken = getAuthToken;
|
|
23
32
|
/**
|
|
24
33
|
* Send GET request to LZARDS
|
|
25
34
|
*
|
|
26
|
-
* @param {Object}
|
|
27
|
-
* @param {string}
|
|
28
|
-
* @param {Object}
|
|
35
|
+
* @param {Object} params
|
|
36
|
+
* @param {string} params.lzardsApiUri - LZARDS endpoint url
|
|
37
|
+
* @param {Object} params.searchParams - object containing search parameters to pass to lzards
|
|
38
|
+
* @param {Function} params.getAuthTokenFunction - function used to get a launchpad auth token
|
|
29
39
|
* @returns {Promise<Object>} - resolves to the LZARDS return
|
|
30
40
|
*/
|
|
31
|
-
async function sendGetRequestToLzards({
|
|
32
|
-
|
|
33
|
-
const errMsg = 'The lzards_api environment variable is not set';
|
|
34
|
-
log.error(errMsg);
|
|
35
|
-
throw new Error(errMsg);
|
|
36
|
-
}
|
|
41
|
+
async function sendGetRequestToLzards({ searchParams, getAuthTokenFunction = getAuthToken, }) {
|
|
42
|
+
const lzardsApiUri = getRequiredEnvVar('lzards_api');
|
|
37
43
|
if (!searchParams || isEmpty(searchParams)) {
|
|
38
44
|
const errMsg = 'The required searchParams is not provided or empty';
|
|
39
45
|
log.error(errMsg);
|
|
40
46
|
throw new Error(errMsg);
|
|
41
47
|
}
|
|
42
|
-
const authToken = await
|
|
48
|
+
const authToken = await getAuthTokenFunction();
|
|
43
49
|
try {
|
|
44
|
-
return await got.get(
|
|
50
|
+
return await got.get(lzardsApiUri, {
|
|
45
51
|
searchParams,
|
|
46
52
|
responseType: 'json',
|
|
47
53
|
throwHttpErrors: false,
|
package/lzards.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"lzards.js","sourceRoot":"","sources":["src/lzards.ts"],"names":[],"mappings":"AAAA,YAAY,CAAC;;;AAIb,MAAM,EAAE,iBAAiB,EAAE,GAAG,OAAO,CAAC,qBAAqB,CAAC,CAAC;AAC7D,MAAM,EAAE,eAAe,EAAE,GAAG,OAAO,CAAC,oCAAoC,CAAC,CAAC;AAC1E,MAAM,EAAE,iBAAiB,EAAE,GAAG,OAAO,CAAC,yBAAyB,CAAC,CAAC;AACjE,MAAM,GAAG,GAAG,OAAO,CAAC,KAAK,CAAC,CAAC;AAC3B,MAAM,MAAM,GAAG,OAAO,CAAC,iBAAiB,CAAC,CAAC;AAC1C,MAAM,OAAO,GAAG,OAAO,CAAC,gBAAgB,CAAC,CAAC;AAE1C,MAAM,GAAG,GAAG,IAAI,MAAM,CAAC,EAAE,MAAM,EAAE,gBAAgB,EAAE,CAAC,CAAC;AAErD,KAAK,UAAU,YAAY;
|
|
1
|
+
{"version":3,"file":"lzards.js","sourceRoot":"","sources":["src/lzards.ts"],"names":[],"mappings":"AAAA,YAAY,CAAC;;;AAIb,MAAM,EAAE,iBAAiB,EAAE,GAAG,OAAO,CAAC,qBAAqB,CAAC,CAAC;AAC7D,MAAM,EAAE,eAAe,EAAE,GAAG,OAAO,CAAC,oCAAoC,CAAC,CAAC;AAC1E,MAAM,EAAE,iBAAiB,EAAE,GAAG,OAAO,CAAC,yBAAyB,CAAC,CAAC;AACjE,qCAA6C;AAC7C,MAAM,GAAG,GAAG,OAAO,CAAC,KAAK,CAAC,CAAC;AAC3B,MAAM,MAAM,GAAG,OAAO,CAAC,iBAAiB,CAAC,CAAC;AAC1C,MAAM,OAAO,GAAG,OAAO,CAAC,gBAAgB,CAAC,CAAC;AAE1C,MAAM,GAAG,GAAG,IAAI,MAAM,CAAC,EAAE,MAAM,EAAE,gBAAgB,EAAE,CAAC,CAAC;AAErD;;;;;;GAMG;AACI,KAAK,UAAU,YAAY,CAChC,uBAAuB,GAAG,eAAe,EACzC,yBAAyB,GAAG,iBAAiB;IAE7C,MAAM,GAAG,GAAG,iBAAiB,CAAC,eAAe,CAAC,CAAC;IAC/C,MAAM,UAAU,GAAG,MAAM,uBAAuB,CAAC,iBAAiB,CAAC,yCAAyC,CAAC,CAAC,CAAC;IAC/G,IAAI,CAAC,UAAU,EAAE;QACf,MAAM,IAAI,0BAAiB,CAAC,wEAAwE,CAAC,CAAC;KACvG;IACD,MAAM,WAAW,GAAG,iBAAiB,CAAC,8BAA8B,CAAC,CAAC;IACtE,MAAM,KAAK,GAAG,MAAM,yBAAyB,CAAC;QAC5C,GAAG,EAAE,UAAU,EAAE,WAAW;KAC7B,CAAC,CAAC;IACH,OAAO,KAAK,CAAC;AACf,CAAC;AAdD,oCAcC;AAED;;;;;;;;GAQG;AACI,KAAK,UAAU,sBAAsB,CAC1C,EACE,YAAY,EACZ,oBAAoB,GAAG,YAAY,GACL;IAEhC,MAAM,YAAY,GAAG,iBAAiB,CAAC,YAAY,CAAC,CAAC;IAErD,IAAI,CAAC,YAAY,IAAI,OAAO,CAAC,YAAY,CAAC,EAAE;QAC1C,MAAM,MAAM,GAAG,oDAAoD,CAAC;QACpE,GAAG,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;QAClB,MAAM,IAAI,KAAK,CAAC,MAAM,CAAC,CAAC;KACzB;IAED,MAAM,SAAS,GAAG,MAAM,oBAAoB,EAAE,CAAC;IAE/C,IAAI;QACF,OAAO,MAAM,GAAG,CAAC,GAAG,CAClB,YAAY,EACZ;YACE,YAAY;YACZ,YAAY,EAAE,MAAM;YACpB,eAAe,EAAE,KAAK;YACtB,OAAO,EAAE;gBACP,aAAa,EAAE,UAAU,SAAS,EAAE;aACrC;SACF,CACF,CAAC;KACH;IAAC,OAAO,KAAK,EAAE;QACd,GAAG,CAAC,KAAK,CAAC,2CAA2C,EAAE,KAAK,CAAC,CAAC;QAC9D,MAAM,KAAK,CAAC;KACb;AACH,CAAC;AAhCD,wDAgCC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cumulus/lzards-api-client",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "13.2.1-alpha.1",
|
|
4
4
|
"description": "A Node.js client to NASA's Level Zero and Repositories Data Store (LZARDS) API.",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=12.18.0"
|
|
@@ -34,11 +34,11 @@
|
|
|
34
34
|
"author": "Cumulus Authors",
|
|
35
35
|
"license": "Apache-2.0",
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@cumulus/aws-client": "
|
|
38
|
-
"@cumulus/common": "
|
|
39
|
-
"@cumulus/errors": "
|
|
40
|
-
"@cumulus/launchpad-auth": "
|
|
41
|
-
"@cumulus/logger": "
|
|
37
|
+
"@cumulus/aws-client": "13.2.0",
|
|
38
|
+
"@cumulus/common": "13.2.0",
|
|
39
|
+
"@cumulus/errors": "13.2.0",
|
|
40
|
+
"@cumulus/launchpad-auth": "13.2.0",
|
|
41
|
+
"@cumulus/logger": "13.2.0",
|
|
42
42
|
"got": "^11.7.0",
|
|
43
43
|
"lodash": "^4.17.21"
|
|
44
44
|
}
|
package/src/errors.ts
ADDED
package/src/index.ts
CHANGED
package/src/lzards.ts
CHANGED
|
@@ -1,24 +1,35 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
import {
|
|
3
|
+
import { LzardsApiGetRequestParameters } from './types';
|
|
4
4
|
|
|
5
5
|
const { getRequiredEnvVar } = require('@cumulus/common/env');
|
|
6
6
|
const { getSecretString } = require('@cumulus/aws-client/SecretsManager');
|
|
7
7
|
const { getLaunchpadToken } = require('@cumulus/launchpad-auth');
|
|
8
|
+
import { GetAuthTokenError } from './errors';
|
|
8
9
|
const got = require('got');
|
|
9
10
|
const Logger = require('@cumulus/logger');
|
|
10
11
|
const isEmpty = require('lodash/isEmpty');
|
|
11
12
|
|
|
12
13
|
const log = new Logger({ sender: 'api/lib/lzards' });
|
|
13
14
|
|
|
14
|
-
|
|
15
|
+
/**
|
|
16
|
+
* Retrieve Launchpad Auth Token
|
|
17
|
+
*
|
|
18
|
+
* @param {Function} getSecretStringFunction - function used to retrieve a secret from AWS
|
|
19
|
+
* @param {Function} getLaunchpadTokenFunction - function used to retrieve cached Launchpad token
|
|
20
|
+
* @returns {Promise<string>} - resolves to a Launchpad Token string
|
|
21
|
+
*/
|
|
22
|
+
export async function getAuthToken(
|
|
23
|
+
getSecretStringFunction = getSecretString,
|
|
24
|
+
getLaunchpadTokenFunction = getLaunchpadToken
|
|
25
|
+
) {
|
|
15
26
|
const api = getRequiredEnvVar('launchpad_api');
|
|
16
|
-
const passphrase = await
|
|
27
|
+
const passphrase = await getSecretStringFunction(getRequiredEnvVar('lzards_launchpad_passphrase_secret_name'));
|
|
17
28
|
if (!passphrase) {
|
|
18
|
-
throw new
|
|
29
|
+
throw new GetAuthTokenError('The value stored in "launchpad_passphrase_secret_name" must be defined');
|
|
19
30
|
}
|
|
20
31
|
const certificate = getRequiredEnvVar('lzards_launchpad_certificate');
|
|
21
|
-
const token = await
|
|
32
|
+
const token = await getLaunchpadTokenFunction({
|
|
22
33
|
api, passphrase, certificate,
|
|
23
34
|
});
|
|
24
35
|
return token;
|
|
@@ -27,22 +38,19 @@ async function getAuthToken() {
|
|
|
27
38
|
/**
|
|
28
39
|
* Send GET request to LZARDS
|
|
29
40
|
*
|
|
30
|
-
* @param {Object}
|
|
31
|
-
* @param {string}
|
|
32
|
-
* @param {Object}
|
|
41
|
+
* @param {Object} params
|
|
42
|
+
* @param {string} params.lzardsApiUri - LZARDS endpoint url
|
|
43
|
+
* @param {Object} params.searchParams - object containing search parameters to pass to lzards
|
|
44
|
+
* @param {Function} params.getAuthTokenFunction - function used to get a launchpad auth token
|
|
33
45
|
* @returns {Promise<Object>} - resolves to the LZARDS return
|
|
34
46
|
*/
|
|
35
47
|
export async function sendGetRequestToLzards(
|
|
36
48
|
{
|
|
37
|
-
lzardsApiUri = process.env.lzards_api,
|
|
38
49
|
searchParams,
|
|
39
|
-
|
|
50
|
+
getAuthTokenFunction = getAuthToken,
|
|
51
|
+
}: LzardsApiGetRequestParameters
|
|
40
52
|
) {
|
|
41
|
-
|
|
42
|
-
const errMsg = 'The lzards_api environment variable is not set';
|
|
43
|
-
log.error(errMsg);
|
|
44
|
-
throw new Error(errMsg);
|
|
45
|
-
}
|
|
53
|
+
const lzardsApiUri = getRequiredEnvVar('lzards_api');
|
|
46
54
|
|
|
47
55
|
if (!searchParams || isEmpty(searchParams)) {
|
|
48
56
|
const errMsg = 'The required searchParams is not provided or empty';
|
|
@@ -50,11 +58,11 @@ export async function sendGetRequestToLzards(
|
|
|
50
58
|
throw new Error(errMsg);
|
|
51
59
|
}
|
|
52
60
|
|
|
53
|
-
const authToken = await
|
|
61
|
+
const authToken = await getAuthTokenFunction();
|
|
54
62
|
|
|
55
63
|
try {
|
|
56
64
|
return await got.get(
|
|
57
|
-
|
|
65
|
+
lzardsApiUri,
|
|
58
66
|
{
|
|
59
67
|
searchParams,
|
|
60
68
|
responseType: 'json',
|
package/src/types.ts
CHANGED
package/tsconfig.tsbuildinfo
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"program":{"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../node_modules/typescript/lib/lib.scripthost.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/typescript/lib/lib.es2019.full.d.ts","./src/types.ts","./src/lzards.ts","./src/index.ts","./node_modules/@types/node/assert.d.ts","./node_modules/@types/node/assert/strict.d.ts","./node_modules/@types/node/globals.d.ts","./node_modules/@types/node/async_hooks.d.ts","./node_modules/@types/node/buffer.d.ts","./node_modules/@types/node/child_process.d.ts","./node_modules/@types/node/cluster.d.ts","./node_modules/@types/node/console.d.ts","./node_modules/@types/node/constants.d.ts","./node_modules/@types/node/crypto.d.ts","./node_modules/@types/node/dgram.d.ts","./node_modules/@types/node/diagnostics_channel.d.ts","./node_modules/@types/node/dns.d.ts","./node_modules/@types/node/dns/promises.d.ts","./node_modules/@types/node/domain.d.ts","./node_modules/@types/node/events.d.ts","./node_modules/@types/node/fs.d.ts","./node_modules/@types/node/fs/promises.d.ts","./node_modules/@types/node/http.d.ts","./node_modules/@types/node/http2.d.ts","./node_modules/@types/node/https.d.ts","./node_modules/@types/node/inspector.d.ts","./node_modules/@types/node/module.d.ts","./node_modules/@types/node/net.d.ts","./node_modules/@types/node/os.d.ts","./node_modules/@types/node/path.d.ts","./node_modules/@types/node/perf_hooks.d.ts","./node_modules/@types/node/process.d.ts","./node_modules/@types/node/punycode.d.ts","./node_modules/@types/node/querystring.d.ts","./node_modules/@types/node/readline.d.ts","./node_modules/@types/node/repl.d.ts","./node_modules/@types/node/stream.d.ts","./node_modules/@types/node/stream/promises.d.ts","./node_modules/@types/node/stream/consumers.d.ts","./node_modules/@types/node/stream/web.d.ts","./node_modules/@types/node/string_decoder.d.ts","./node_modules/@types/node/timers.d.ts","./node_modules/@types/node/timers/promises.d.ts","./node_modules/@types/node/tls.d.ts","./node_modules/@types/node/trace_events.d.ts","./node_modules/@types/node/tty.d.ts","./node_modules/@types/node/url.d.ts","./node_modules/@types/node/util.d.ts","./node_modules/@types/node/v8.d.ts","./node_modules/@types/node/vm.d.ts","./node_modules/@types/node/wasi.d.ts","./node_modules/@types/node/worker_threads.d.ts","./node_modules/@types/node/zlib.d.ts","./node_modules/@types/node/globals.global.d.ts","./node_modules/@types/node/index.d.ts","./node_modules/@types/keyv/index.d.ts","./node_modules/@types/http-cache-semantics/index.d.ts","./node_modules/@types/responselike/index.d.ts","./node_modules/@types/cacheable-request/index.d.ts","./node_modules/@types/retry/index.d.ts","../../node_modules/@types/aws-lambda/handler.d.ts","../../node_modules/@types/aws-lambda/common/api-gateway.d.ts","../../node_modules/@types/aws-lambda/common/cloudfront.d.ts","../../node_modules/@types/aws-lambda/trigger/alb.d.ts","../../node_modules/@types/aws-lambda/trigger/api-gateway-authorizer.d.ts","../../node_modules/@types/aws-lambda/trigger/api-gateway-proxy.d.ts","../../node_modules/@types/aws-lambda/trigger/appsync-resolver.d.ts","../../node_modules/@types/aws-lambda/trigger/cloudformation-custom-resource.d.ts","../../node_modules/@types/aws-lambda/trigger/cdk-custom-resource.d.ts","../../node_modules/@types/aws-lambda/trigger/cloudfront-request.d.ts","../../node_modules/@types/aws-lambda/trigger/cloudfront-response.d.ts","../../node_modules/@types/aws-lambda/trigger/eventbridge.d.ts","../../node_modules/@types/aws-lambda/trigger/cloudwatch-events.d.ts","../../node_modules/@types/aws-lambda/trigger/cloudwatch-logs.d.ts","../../node_modules/@types/aws-lambda/trigger/codebuild-cloudwatch-state.d.ts","../../node_modules/@types/aws-lambda/trigger/codepipeline.d.ts","../../node_modules/@types/aws-lambda/trigger/codepipeline-cloudwatch-action.d.ts","../../node_modules/@types/aws-lambda/trigger/codepipeline-cloudwatch-pipeline.d.ts","../../node_modules/@types/aws-lambda/trigger/codepipeline-cloudwatch-stage.d.ts","../../node_modules/@types/aws-lambda/trigger/codepipeline-cloudwatch.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/_common.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/create-auth-challenge.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/custom-message.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/custom-email-sender.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/define-auth-challenge.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/post-authentication.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/post-confirmation.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/pre-authentication.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/pre-signup.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/pre-token-generation.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/user-migration.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/verify-auth-challenge-response.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/index.d.ts","../../node_modules/@types/aws-lambda/trigger/connect-contact-flow.d.ts","../../node_modules/@types/aws-lambda/trigger/dynamodb-stream.d.ts","../../node_modules/@types/aws-lambda/trigger/iot.d.ts","../../node_modules/@types/aws-lambda/trigger/kinesis-firehose-transformation.d.ts","../../node_modules/@types/aws-lambda/trigger/kinesis-stream.d.ts","../../node_modules/@types/aws-lambda/trigger/lex.d.ts","../../node_modules/@types/aws-lambda/trigger/s3.d.ts","../../node_modules/@types/aws-lambda/trigger/s3-batch.d.ts","../../node_modules/@types/aws-lambda/trigger/ses.d.ts","../../node_modules/@types/aws-lambda/trigger/sns.d.ts","../../node_modules/@types/aws-lambda/trigger/sqs.d.ts","../../node_modules/@types/aws-lambda/trigger/msk.d.ts","../../node_modules/@types/aws-lambda/trigger/secretsmanager.d.ts","../../node_modules/@types/aws-lambda/index.d.ts","../../node_modules/@types/eslint/helpers.d.ts","../../node_modules/@types/json-schema/index.d.ts","../../node_modules/@types/estree/index.d.ts","../../node_modules/@types/eslint/index.d.ts","../../node_modules/@types/eslint-scope/index.d.ts","../../node_modules/@types/json5/index.d.ts","../../node_modules/@types/linkify-it/index.d.ts","../../node_modules/@types/lodash/common/common.d.ts","../../node_modules/@types/lodash/common/array.d.ts","../../node_modules/@types/lodash/common/collection.d.ts","../../node_modules/@types/lodash/common/date.d.ts","../../node_modules/@types/lodash/common/function.d.ts","../../node_modules/@types/lodash/common/lang.d.ts","../../node_modules/@types/lodash/common/math.d.ts","../../node_modules/@types/lodash/common/number.d.ts","../../node_modules/@types/lodash/common/object.d.ts","../../node_modules/@types/lodash/common/seq.d.ts","../../node_modules/@types/lodash/common/string.d.ts","../../node_modules/@types/lodash/common/util.d.ts","../../node_modules/@types/lodash/index.d.ts","../../node_modules/@types/lodash.iserror/index.d.ts","../../node_modules/@types/mdurl/encode.d.ts","../../node_modules/@types/mdurl/decode.d.ts","../../node_modules/@types/mdurl/parse.d.ts","../../node_modules/@types/mdurl/format.d.ts","../../node_modules/@types/mdurl/index.d.ts","../../node_modules/@types/markdown-it/lib/common/utils.d.ts","../../node_modules/@types/markdown-it/lib/token.d.ts","../../node_modules/@types/markdown-it/lib/rules_inline/state_inline.d.ts","../../node_modules/@types/markdown-it/lib/helpers/parse_link_label.d.ts","../../node_modules/@types/markdown-it/lib/helpers/parse_link_destination.d.ts","../../node_modules/@types/markdown-it/lib/helpers/parse_link_title.d.ts","../../node_modules/@types/markdown-it/lib/helpers/index.d.ts","../../node_modules/@types/markdown-it/lib/ruler.d.ts","../../node_modules/@types/markdown-it/lib/rules_block/state_block.d.ts","../../node_modules/@types/markdown-it/lib/parser_block.d.ts","../../node_modules/@types/markdown-it/lib/rules_core/state_core.d.ts","../../node_modules/@types/markdown-it/lib/parser_core.d.ts","../../node_modules/@types/markdown-it/lib/parser_inline.d.ts","../../node_modules/@types/markdown-it/lib/renderer.d.ts","../../node_modules/@types/markdown-it/lib/index.d.ts","../../node_modules/@types/markdown-it/index.d.ts","../../node_modules/@types/mime-types/index.d.ts","../../node_modules/@types/minimatch/index.d.ts","../../node_modules/@types/minimist/index.d.ts","../../node_modules/@types/normalize-package-data/index.d.ts","../../node_modules/@types/parse-json/index.d.ts","../../node_modules/pg-types/index.d.ts","../../node_modules/pg-protocol/dist/messages.d.ts","../../node_modules/@types/pg/index.d.ts","../../node_modules/@types/pump/index.d.ts","../../node_modules/@types/sinonjs__fake-timers/index.d.ts","../../node_modules/@types/sinon/index.d.ts","../../node_modules/@types/xml2js/lib/processors.d.ts","../../node_modules/@types/xml2js/index.d.ts"],"fileInfos":[{"version":"6adbf5efd0e374ff5f427a4f26a5a413e9734eee5067a0e86da69aea41910b52","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940",{"version":"abba1071bfd89e55e88a054b0c851ea3e8a494c340d0f3fab19eb18f6afb0c9e","affectsGlobalScope":true},{"version":"927cb2b60048e1395b183bf74b2b80a75bdb1dbe384e1d9fac654313ea2fb136","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"d8996609230d17e90484a2dd58f22668f9a05a3bfe00bfb1d6271171e54a31fb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"4378fc8122ec9d1a685b01eb66c46f62aba6b239ca7228bb6483bcf8259ee493","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"d071129cba6a5f2700be09c86c07ad2791ab67d4e5ed1eb301d6746c62745ea4","affectsGlobalScope":true},{"version":"10bbdc1981b8d9310ee75bfac28ee0477bb2353e8529da8cff7cb26c409cb5e8","affectsGlobalScope":true},"1f03b495671c3a1bd24510f38b8947f0991dfd6bf0278c68eca14af15b306e1f",{"version":"3b2f074aed9c1de72a6160b53ba60d5013af337ea7c01236d8787557f4e5ef7c","signature":"5d0415ac5145099545d1c5c2d97d3fc15937679b36ed62192fd4af41b6fef1fd"},{"version":"6c75ab2b36c1576cad7b736cc2482b550d36b2270f9d638783e06eaea7fad2b1","signature":"af2d4cb03949c4f5fbe7506a9085c746a415045ea8b8d0d7eb5efe91f18f1e1b"},"fce448058d42497ab0f4d49adbfd4540f3433888ad90e4b018a76f08db903f8d","0cba3a5d7b81356222594442753cf90dd2892e5ccfe1d262aaca6896ba6c1380","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"c2ab70bbc7a24c42a790890739dd8a0ba9d2e15038b40dff8163a97a5d148c00","affectsGlobalScope":true},"422dbb183fdced59425ca072c8bd09efaa77ce4e2ab928ec0d8a1ce062d2a45a",{"version":"712ba0d43b44d144dfd01593f61af6e2e21cfae83e834d297643e7973e55ed61","affectsGlobalScope":true},"1dab5ab6bcf11de47ab9db295df8c4f1d92ffa750e8f095e88c71ce4c3299628","f71f46ccd5a90566f0a37b25b23bc4684381ab2180bdf6733f4e6624474e1894",{"version":"54e65985a3ee3cec182e6a555e20974ea936fc8b8d1738c14e8ed8a42bd921d4","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","98a3ebfa494b46265634a73459050befba5da8fdc6ca0ef9b7269421780f4ff3","34e5de87d983bc6aefef8b17658556e3157003e8d9555d3cb098c6bef0b5fbc8","cc0b61316c4f37393f1f9595e93b673f4184e9d07f4c127165a490ec4a928668","f27371653aded82b2b160f7a7033fb4a5b1534b6f6081ef7be1468f0f15327d3","c762cd6754b13a461c54b59d0ae0ab7aeef3c292c6cf889873f786ee4d8e75c9","f4ea7d5df644785bd9fbf419930cbaec118f0d8b4160037d2339b8e23c059e79",{"version":"bfea28e6162ed21a0aeed181b623dcf250aa79abf49e24a6b7e012655af36d81","affectsGlobalScope":true},"7a5459efa09ea82088234e6533a203d528c594b01787fb90fba148885a36e8b6","ae97e20f2e10dbeec193d6a2f9cd9a367a1e293e7d6b33b68bacea166afd7792","10d4796a130577d57003a77b95d8723530bbec84718e364aa2129fa8ffba0378","ad41bb744149e92adb06eb953da195115620a3f2ad48e7d3ae04d10762dae197","bf73c576885408d4a176f44a9035d798827cc5020d58284cb18d7573430d9022","7ae078ca42a670445ae0c6a97c029cb83d143d62abd1730efb33f68f0b2c0e82",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"5d0a9ea09d990b5788f867f1c79d4878f86f7384cb7dab38eecbf22f9efd063d","12eea70b5e11e924bb0543aea5eadc16ced318aa26001b453b0d561c2fd0bd1e","08777cd9318d294646b121838574e1dd7acbb22c21a03df84e1f2c87b1ad47f2","08a90bcdc717df3d50a2ce178d966a8c353fd23e5c392fd3594a6e39d9bb6304",{"version":"4cd4cff679c9b3d9239fd7bf70293ca4594583767526916af8e5d5a47d0219c7","affectsGlobalScope":true},"2a12d2da5ac4c4979401a3f6eaafa874747a37c365e4bc18aa2b171ae134d21b","002b837927b53f3714308ecd96f72ee8a053b8aeb28213d8ec6de23ed1608b66","1dc9c847473bb47279e398b22c740c83ea37a5c88bf66629666e3cf4c5b9f99c","a9e4a5a24bf2c44de4c98274975a1a705a0abbaad04df3557c2d3cd8b1727949","00fa7ce8bc8acc560dc341bbfdf37840a8c59e6a67c9bfa3fa5f36254df35db2","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","5f0ed51db151c2cdc4fa3bb0f44ce6066912ad001b607a34e65a96c52eb76248",{"version":"3345c276cab0e76dda86c0fb79104ff915a4580ba0f3e440870e183b1baec476","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","e383ff72aabf294913f8c346f5da1445ae6ad525836d28efd52cbadc01a361a6","f52fbf64c7e480271a9096763c4882d356b05cab05bf56a64e68a95313cd2ce2","59bdb65f28d7ce52ccfc906e9aaf422f8b8534b2d21c32a27d7819be5ad81df7",{"version":"3a2da34079a2567161c1359316a32e712404b56566c45332ac9dcee015ecce9f","affectsGlobalScope":true},"28a2e7383fd898c386ffdcacedf0ec0845e5d1a86b5a43f25b86bc315f556b79","3aff9c8c36192e46a84afe7b926136d520487155154ab9ba982a8b544ea8fc95","a880cf8d85af2e4189c709b0fea613741649c0e40fffb4360ec70762563d5de0","85bbf436a15bbeda4db888be3062d47f99c66fd05d7c50f0f6473a9151b6a070","9f9c49c95ecd25e0cb2587751925976cf64fd184714cb11e213749c80cf0f927","f0c75c08a71f9212c93a719a25fb0320d53f2e50ca89a812640e08f8ad8c408c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"9cafe917bf667f1027b2bb62e2de454ecd2119c80873ad76fc41d941089753b8","82169f198ffdfc787fba368ccfad2b2d8ef3712f3c696df94ac13f6884bbbe2d","cab425b5559edac18327eb2c3c0f47e7e9f71b667290b7689faafd28aac69eae","3cfb0cb51cc2c2e1b313d7c4df04dbf7e5bda0a133c6b309bf6af77cf614b971","f992cd6cc0bcbaa4e6c810468c90f2d8595f8c6c3cf050c806397d3de8585562","58a3914b1cce4560d9ad6eee2b716caaa030eda0a90b21ca2457ea9e2783eaa3","a01a37a9992e93550d9d0b184eb6727b7fce8c11bb46878ad20cbf7f731e1e33","bc9d1a62f3ab938e3ac66b85363c8f1ec1c5b9cf32e5d393f7b14209b4811c48","429d2e0d28ec8be13ebc5e0b389f34e0622d435c88ec5efe408c4d82e17f37c9","6bb7cbba94c9a5c43add2e17d93d04da08e51a69d412e9d1afaf130f4624e91a","7b8f96d5fda0ce8ba9a9203090136175aeba9408eba089756c0b94c740c54429","67444330be1e766248afa0e4141b26174f774e6f44a361d7f880f70a31faa8c5","20a7c38106251e185b3a37d58586fbcd085f8b2d7c757727de8d50c219984b7b","004678b644cdb4615ac6cda7b2d285d0eb850e55eb53da47e8c1325cba362bb9","4205ae686b67d9dea3bff36ff28888ebfd278ca09ce45b66918a6420b26a09cc","d12b75f884942952f25c2e9d27d4ac149e518286167c78a292deb89b59f65b22","0dad26ffdf5cae28cb67ac9c0ce06c7ec732001b01046f47eeaa4ee5a3655f5d","a3083d0ef2ab7bd00f400ce61035ab38f211cd848ebca9164d7410afeed9fad7","4194cc6e823aa830a71c733b18d0de1c29323b102c6460e9fe835ac5f8b8a9ba","4ff4add7b8cf26df217f2c883292778205847aefb0fd2aee64f5a229d0ffd399","420878898a89ebc3515fb87bbfd6662f0432fe918652669414b584c2540e3bc8","c24e2fddbca24f0b63d0b82e5aca4da50c8c591566711be7260c900c97d7c9f2","f4922a1814e47fdb4d93c2cf27968ea30c174e04d4a3374774046a9307dbbaf0","bfff1bb349423cc262a88775d8233f7ea2b87d66ba1f0631eec0c30bea097dd5","a177f76c040e29b9c31adfc93225c273828ff784b592bf56c6131771e624f628","06236dfec90a14b0c3db8249831069ea3f90b004d73d496a559a4466e5a344a4","19c08e1ce502625c711682ec21495ca47ca893b21f346621e7a175bcd677335f","5d36c521b96ba0d4b98919ca833c8cc62f1f225d40467122ba561a2c5553ab80","ea79b4e194a5864c9540003c4eca742d5602ff1399e443a315e2789f39d8c8a3","2b3046d66390c6447811adc06be3b085a7f396c53a7a4670d11159672d5aeb15","0aaa0e1d10349bc24bdee9dd2bca420741f1deb7028c7a17a2b9d5df2f5d9d63","dd289cb306f619c7844ff82fec02badc571c6ed66c7da72815239647febee137","754fb3e7737eb1feb7fcf4902e925cae8c050dd134819deb25ae3ed6843b7dd1","f05c1be0c5bf0e983941f9f75a43297b04730393d0bdabc687066d8b1d6b8d16","a97972e1e9b4bc5d31380c695b7a827c014bd042ec17369bc4d920a1fab7d47b","b5740b8d4723dcdc408195835a52cc83501b1f44399e3104eb4677b082c8973e","feb17c6ab54766cb447ed7efa1da2eacfe289d024da02eb0171fc072704f9be7","dd50796be484a4f4f3733dd67d0a829d93c5b6dd678552d40683f89e6767706c","288fbc46929c0e9d9cab822bfcd1e6d7392baf211a067a349052a7a6fbc5a4ca","b12effb4e275d1e3516506c030f4046283cc7a4d7e2b4e316b4397446444aa22","c173eaede09d9f153a0cb1c51ffe5cba7408f46a4e1187095cbf20b8f68d1dbe","66738976a7aa2d5fb2770a1b689f8bc643af958f836b7bc08e412d4092de3ab9","0751ea9602b019c630c160aa81c6d59495f0119123d171f2351c9907cd3440d7","ea7abdaf48601d8d84e0962f628f61d3738637ff26f2362c90f514a337bc8305","3809c600654ed5b6bdce015f7110d40a75e402e59de80c12b622b925f44a8599","cec3cf5159f51f7725d5b06b631996fef4863d8f5c237b8a3f9a18f5570c8286","47ffa0bd85219fa1551c7cb128e3e1b44f980c9eb5baee26b0164db191ab917b","bb7de140ec25957e693e6b48de186b7229653d5c683fe7bbd1d24bcc66a86a15","33db1b492d92effbcc562388b6d448e28e8304d6a926f513dd760a6bc4cba2b3","ed06ac88318a21a9761abbf0dc49c40f6f6c38689550e205b1e05d22a7922b2d","b7917163a8867f4c952a8968ae0157bb52461b739ae96727e36699715f9b014f","35c3631308ca05a1cac7a31b6a3d2a68442cdd2315adfb476d0461dea2cac030","9374467738dc5d3353795e0bd305b6b75479674f968c97f05e1eb60a16b52d9d",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","7d7c8ef7d48a035142c07dae60545ecc0e4af4c337742760cb09726f2f8e31db","6c29066d1acba21f6fde8042da49ba4df5cad690dac19416a8f7af17d451ed40","82772e5d55062a042a2715a555d347275a663940926fc785705eb082010cb9f6","96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","6503fb6addf62f9b10f8564d9869ad824565a914ec1ac3dd7d13da14a3f57036","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","378df8bbbb9e3f6fca05d58f644aab538e1062eab5e778fb0b83d41125df246d","d88a479cccf787b4aa82362150fbeba5211a32dbfafa7b92ba6995ecaf9a1a89","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","c24ad9be9adf28f0927e3d9d9e9cec1c677022356f241ccbbfb97bfe8fb3d1a1","0ec0998e2d085e8ea54266f547976ae152c9dd6cdb9ac4d8a520a230f5ebae84","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","ae9930989ed57478eb03b9b80ad3efa7a3eacdfeff0f78ecf7894c4963a64f93","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","6ac6f24aff52e62c3950461aa17eab26e3a156927858e6b654baef0058b4cd1e",{"version":"0714e2046df66c0e93c3330d30dbc0565b3e8cd3ee302cf99e4ede6220e5fec8","affectsGlobalScope":true},"a7906081164a4f965be7330d37c545dcdb93ad6ae36c05c0820cab59d49e5168","f313731860257325f13351575f381fef333d4dfe30daf5a2e72f894208feea08","951b37f7d86f6012f09e6b35f1de57c69d75f16908cb0adaa56b93675ea0b853","3816fc03ffd9cbd1a7a3362a264756a4a1d547caabea50ca68303046be40e376","0c417b4ec46b88fb62a43ec00204700b560d01eb5677c7faa8ecd34610f096a8","13d29cdeb64e8496424edf42749bbb47de5e42d201cf958911a4638cbcffbd3f","0f9e381eecc5860f693c31fe463b3ca20a64ca9b8db0cf6208cd4a053f064809","95902d5561c6aac5dfc40568a12b0aca324037749dcd32a81f23423bfde69bab","5dfb2aca4136abdc5a2740f14be8134a6e6b66fd53470bb2e954e40f8abfaf3e","577463167dd69bd81f76697dfc3f7b22b77a6152f60a602a9218e52e3183ad67","b8396e9024d554b611cbe31a024b176ba7116063d19354b5a02dccd8f0118989","4b28e1c5bf88d891e07a1403358b81a51b3ba2eae1ffada51cca7476b5ac6407","7150ad575d28bf98fae321a1c0f10ad17b127927811f488ded6ff1d88d4244e5","8b155c4757d197969553de3762c8d23d5866710301de41e1b66b97c9ed867003","93733466609dd8bf72eace502a24ca7574bd073d934216e628f1b615c8d3cb3c","45e9228761aabcadb79c82fb3008523db334491525bdb8e74e0f26eaf7a4f7f4","aeacac2778c9821512b6b889da79ac31606a863610c8f28da1e483579627bf90","569fdb354062fc098a6a3ba93a029edf22d6fe480cf72b231b3c07832b2e7c97","bf9876e62fb7f4237deafab8c7444770ef6e82b4cad2d5dc768664ff340feeb2","6cf60e76d37faf0fbc2f80a873eab0fd545f6b1bf300e7f0823f956ddb3083e9","6adaa6103086f931e3eee20f0987e86e8879e9d13aa6bd6075ccfc58b9c5681c","ee0af0f2b8d3b4d0baf669f2ff6fcef4a8816a473c894cc7c905029f7505fed0","c757372a092924f5c16eaf11a1475b80b95bb4dae49fe3242d2ad908f97d5abe","8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","f60e3e3060207ac982da13363181fd7ee4beecc19a7c569f0d6bb034331066c2","17230b34bb564a3a2e36f9d3985372ccab4ad1722df2c43f7c5c2b553f68e5db","02eed0b92a38540d94adccf11b067084cc16a815da1d62e80cec9511d9f0eef2","701597ff3f5c4cc2b67a12c1b5aa2703711be9b6da1c93be0b0188ae865aec21","e64e382ef6cf0e55da7e1e92192c27d9a3364bb818b5bcead278e1e34d3f936a","9d92b037978bb9525bc4b673ebddd443277542e010c0aef019c03a170ccdaa73","c0288f54de6f544706a3150c8b579b1a975870695c4be866f727ece6a16f3976","f68e56efa9fc1fbdfac28bf07b5b1061161d243f4d9616d1606ce880e2d9d8c4"],"options":{"declaration":true,"declarationMap":true,"esModuleInterop":true,"module":1,"noFallthroughCasesInSwitch":true,"noImplicitReturns":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","removeComments":false,"sourceMap":true,"strict":true,"target":6,"useUnknownInCatchVariables":false},"fileIdsList":[[90],[90,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,135,136,137,138,139,140,141,142,143,144,145,146,147,148],[90,103],[90,103,104],[90,103,110],[90,103,105],[90,114],[90,103,119,120,121],[90,103,123],[90,103,124,125,126,127,128,129,130,131,132,133,134],[90,152,153],[90,150,151,152],[90,169],[90,157,159,160,161,162,163,164,165,166,167,168,169],[90,157,158,160,161,162,163,164,165,166,167,168,169],[90,158,159,160,161,162,163,164,165,166,167,168,169],[90,157,158,159,161,162,163,164,165,166,167,168,169],[90,157,158,159,160,162,163,164,165,166,167,168,169],[90,157,158,159,160,161,163,164,165,166,167,168,169],[90,157,158,159,160,161,162,164,165,166,167,168,169],[90,157,158,159,160,161,162,163,165,166,167,168,169],[90,157,158,159,160,161,162,163,164,166,167,168,169],[90,157,158,159,160,161,162,163,164,165,167,168,169],[90,157,158,159,160,161,162,163,164,165,166,168,169],[90,157,158,159,160,161,162,163,164,165,166,167,169],[90,157,158,159,160,161,162,163,164,165,166,167,168],[90,190],[90,175],[90,179,180,181],[90,178],[90,180],[90,156,176,177,182,185,187,188,189],[90,177,183,184,190],[90,183,186],[90,177,178,183,190],[90,177,190],[90,171,172,173,174],[62,79,86,90,97,197,198,199],[90,97],[90,201],[62,90,97,203],[62,65,89,90,97,98,99,100],[62,90,97],[47,90],[50,90],[51,56,90],[52,62,63,70,79,89,90],[52,53,62,70,90],[54,90],[55,56,63,71,90],[56,79,86,90],[57,59,62,70,90],[58,90],[59,60,90],[61,62,90],[62,90],[62,63,64,79,89,90],[62,63,64,79,90],[65,70,79,89,90],[62,63,65,66,70,79,86,89,90],[65,67,79,86,89,90],[47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96],[62,68,90],[69,89,90],[59,62,70,79,90],[71,90],[72,90],[50,73,90],[74,88,90,94],[75,90],[76,90],[62,77,90],[77,78,90,92],[62,79,80,81,90],[79,81,90],[79,80,90],[82,90],[83,90],[62,84,85,90],[84,85,90],[56,70,79,86,90],[87,90],[70,88,90],[51,65,76,89,90],[56,90],[79,90,91],[90,92],[90,93],[51,56,62,64,73,79,89,90,92,94],[79,90,95],[65,79,90,97],[45,90],[44,90],[45],[44]],"referencedMap":[[104,1],[105,1],[103,1],[149,2],[106,3],[107,4],[108,4],[109,3],[111,5],[110,3],[112,6],[113,6],[115,7],[116,3],[117,7],[119,3],[120,3],[121,3],[122,8],[118,3],[123,1],[124,9],[126,9],[125,9],[127,9],[135,10],[128,9],[129,9],[130,9],[131,9],[132,9],[133,9],[134,9],[136,3],[137,3],[114,3],[138,3],[139,3],[140,3],[141,3],[147,3],[143,3],[142,3],[148,3],[144,3],[145,3],[146,3],[154,11],[150,1],[153,12],[152,1],[151,1],[155,1],[156,1],[170,13],[158,14],[159,15],[157,16],[160,17],[161,18],[162,19],[163,20],[164,21],[165,22],[166,23],[167,24],[168,25],[169,26],[191,27],[176,28],[182,29],[180,1],[179,30],[181,31],[190,32],[185,33],[187,34],[188,35],[189,36],[183,1],[184,36],[186,36],[178,36],[177,1],[172,1],[171,1],[174,28],[175,37],[173,28],[192,1],[193,1],[194,1],[195,1],[196,1],[199,38],[200,39],[202,40],[201,1],[204,41],[203,1],[198,39],[197,1],[8,1],[9,1],[13,1],[12,1],[2,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[3,1],[4,1],[25,1],[22,1],[23,1],[24,1],[26,1],[27,1],[28,1],[5,1],[29,1],[30,1],[31,1],[32,1],[6,1],[43,1],[33,1],[34,1],[35,1],[36,1],[7,1],[41,1],[37,1],[38,1],[39,1],[40,1],[1,1],[42,1],[11,1],[10,1],[101,42],[99,1],[98,43],[47,44],[48,44],[50,45],[51,46],[52,47],[53,48],[54,49],[55,50],[56,51],[57,52],[58,53],[59,54],[60,54],[61,55],[62,56],[63,57],[64,58],[49,1],[96,1],[65,59],[66,60],[67,61],[97,62],[68,63],[69,64],[70,65],[71,66],[72,67],[73,68],[74,69],[75,70],[76,71],[77,72],[78,73],[79,74],[81,75],[80,76],[82,77],[83,78],[84,79],[85,80],[86,81],[87,82],[88,83],[89,84],[90,85],[91,86],[92,87],[93,88],[94,89],[95,90],[100,91],[102,1],[46,92],[45,93],[44,1]],"exportedModulesMap":[[104,1],[105,1],[103,1],[149,2],[106,3],[107,4],[108,4],[109,3],[111,5],[110,3],[112,6],[113,6],[115,7],[116,3],[117,7],[119,3],[120,3],[121,3],[122,8],[118,3],[123,1],[124,9],[126,9],[125,9],[127,9],[135,10],[128,9],[129,9],[130,9],[131,9],[132,9],[133,9],[134,9],[136,3],[137,3],[114,3],[138,3],[139,3],[140,3],[141,3],[147,3],[143,3],[142,3],[148,3],[144,3],[145,3],[146,3],[154,11],[150,1],[153,12],[152,1],[151,1],[155,1],[156,1],[170,13],[158,14],[159,15],[157,16],[160,17],[161,18],[162,19],[163,20],[164,21],[165,22],[166,23],[167,24],[168,25],[169,26],[191,27],[176,28],[182,29],[180,1],[179,30],[181,31],[190,32],[185,33],[187,34],[188,35],[189,36],[183,1],[184,36],[186,36],[178,36],[177,1],[172,1],[171,1],[174,28],[175,37],[173,28],[192,1],[193,1],[194,1],[195,1],[196,1],[199,38],[200,39],[202,40],[201,1],[204,41],[203,1],[198,39],[197,1],[8,1],[9,1],[13,1],[12,1],[2,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[3,1],[4,1],[25,1],[22,1],[23,1],[24,1],[26,1],[27,1],[28,1],[5,1],[29,1],[30,1],[31,1],[32,1],[6,1],[43,1],[33,1],[34,1],[35,1],[36,1],[7,1],[41,1],[37,1],[38,1],[39,1],[40,1],[1,1],[42,1],[11,1],[10,1],[101,42],[99,1],[98,43],[47,44],[48,44],[50,45],[51,46],[52,47],[53,48],[54,49],[55,50],[56,51],[57,52],[58,53],[59,54],[60,54],[61,55],[62,56],[63,57],[64,58],[49,1],[96,1],[65,59],[66,60],[67,61],[97,62],[68,63],[69,64],[70,65],[71,66],[72,67],[73,68],[74,69],[75,70],[76,71],[77,72],[78,73],[79,74],[81,75],[80,76],[82,77],[83,78],[84,79],[85,80],[86,81],[87,82],[88,83],[89,84],[90,85],[91,86],[92,87],[93,88],[94,89],[95,90],[100,91],[102,1],[46,94],[45,95]],"semanticDiagnosticsPerFile":[104,105,103,149,106,107,108,109,111,110,112,113,115,116,117,119,120,121,122,118,123,124,126,125,127,135,128,129,130,131,132,133,134,136,137,114,138,139,140,141,147,143,142,148,144,145,146,154,150,153,152,151,155,156,170,158,159,157,160,161,162,163,164,165,166,167,168,169,191,176,182,180,179,181,190,185,187,188,189,183,184,186,178,177,172,171,174,175,173,192,193,194,195,196,199,200,202,201,204,203,198,197,8,9,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,43,33,34,35,36,7,41,37,38,39,40,1,42,11,10,101,99,98,47,48,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,49,96,65,66,67,97,68,69,70,71,72,73,74,75,76,77,78,79,81,80,82,83,84,85,86,87,88,89,90,91,92,93,94,95,100,102,46,45,44]},"version":"4.5.2"}
|
|
1
|
+
{"program":{"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../node_modules/typescript/lib/lib.scripthost.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/typescript/lib/lib.es2019.full.d.ts","./src/errors.ts","./src/types.ts","./src/lzards.ts","./src/index.ts","./node_modules/@types/node/assert.d.ts","./node_modules/@types/node/assert/strict.d.ts","./node_modules/@types/node/globals.d.ts","./node_modules/@types/node/async_hooks.d.ts","./node_modules/@types/node/buffer.d.ts","./node_modules/@types/node/child_process.d.ts","./node_modules/@types/node/cluster.d.ts","./node_modules/@types/node/console.d.ts","./node_modules/@types/node/constants.d.ts","./node_modules/@types/node/crypto.d.ts","./node_modules/@types/node/dgram.d.ts","./node_modules/@types/node/diagnostics_channel.d.ts","./node_modules/@types/node/dns.d.ts","./node_modules/@types/node/dns/promises.d.ts","./node_modules/@types/node/domain.d.ts","./node_modules/@types/node/events.d.ts","./node_modules/@types/node/fs.d.ts","./node_modules/@types/node/fs/promises.d.ts","./node_modules/@types/node/http.d.ts","./node_modules/@types/node/http2.d.ts","./node_modules/@types/node/https.d.ts","./node_modules/@types/node/inspector.d.ts","./node_modules/@types/node/module.d.ts","./node_modules/@types/node/net.d.ts","./node_modules/@types/node/os.d.ts","./node_modules/@types/node/path.d.ts","./node_modules/@types/node/perf_hooks.d.ts","./node_modules/@types/node/process.d.ts","./node_modules/@types/node/punycode.d.ts","./node_modules/@types/node/querystring.d.ts","./node_modules/@types/node/readline.d.ts","./node_modules/@types/node/repl.d.ts","./node_modules/@types/node/stream.d.ts","./node_modules/@types/node/stream/promises.d.ts","./node_modules/@types/node/stream/consumers.d.ts","./node_modules/@types/node/stream/web.d.ts","./node_modules/@types/node/string_decoder.d.ts","./node_modules/@types/node/test.d.ts","./node_modules/@types/node/timers.d.ts","./node_modules/@types/node/timers/promises.d.ts","./node_modules/@types/node/tls.d.ts","./node_modules/@types/node/trace_events.d.ts","./node_modules/@types/node/tty.d.ts","./node_modules/@types/node/url.d.ts","./node_modules/@types/node/util.d.ts","./node_modules/@types/node/v8.d.ts","./node_modules/@types/node/vm.d.ts","./node_modules/@types/node/wasi.d.ts","./node_modules/@types/node/worker_threads.d.ts","./node_modules/@types/node/zlib.d.ts","./node_modules/@types/node/globals.global.d.ts","./node_modules/@types/node/index.d.ts","./node_modules/keyv/src/index.d.ts","./node_modules/@types/http-cache-semantics/index.d.ts","./node_modules/@types/responselike/index.d.ts","./node_modules/@types/cacheable-request/index.d.ts","./node_modules/@types/json-buffer/index.d.ts","./node_modules/@types/keyv/index.d.ts","../../node_modules/@types/aws-lambda/handler.d.ts","../../node_modules/@types/aws-lambda/common/api-gateway.d.ts","../../node_modules/@types/aws-lambda/common/cloudfront.d.ts","../../node_modules/@types/aws-lambda/trigger/alb.d.ts","../../node_modules/@types/aws-lambda/trigger/api-gateway-authorizer.d.ts","../../node_modules/@types/aws-lambda/trigger/api-gateway-proxy.d.ts","../../node_modules/@types/aws-lambda/trigger/appsync-resolver.d.ts","../../node_modules/@types/aws-lambda/trigger/cloudformation-custom-resource.d.ts","../../node_modules/@types/aws-lambda/trigger/cloudfront-request.d.ts","../../node_modules/@types/aws-lambda/trigger/cloudfront-response.d.ts","../../node_modules/@types/aws-lambda/trigger/eventbridge.d.ts","../../node_modules/@types/aws-lambda/trigger/cloudwatch-events.d.ts","../../node_modules/@types/aws-lambda/trigger/cloudwatch-logs.d.ts","../../node_modules/@types/aws-lambda/trigger/codebuild-cloudwatch-state.d.ts","../../node_modules/@types/aws-lambda/trigger/codepipeline.d.ts","../../node_modules/@types/aws-lambda/trigger/codepipeline-cloudwatch-action.d.ts","../../node_modules/@types/aws-lambda/trigger/codepipeline-cloudwatch-pipeline.d.ts","../../node_modules/@types/aws-lambda/trigger/codepipeline-cloudwatch-stage.d.ts","../../node_modules/@types/aws-lambda/trigger/codepipeline-cloudwatch.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/_common.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/create-auth-challenge.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/custom-message.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/define-auth-challenge.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/post-authentication.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/post-confirmation.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/pre-authentication.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/pre-signup.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/pre-token-generation.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/user-migration.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/verify-auth-challenge-response.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/index.d.ts","../../node_modules/@types/aws-lambda/trigger/connect-contact-flow.d.ts","../../node_modules/@types/aws-lambda/trigger/dynamodb-stream.d.ts","../../node_modules/@types/aws-lambda/trigger/iot.d.ts","../../node_modules/@types/aws-lambda/trigger/kinesis-firehose-transformation.d.ts","../../node_modules/@types/aws-lambda/trigger/kinesis-stream.d.ts","../../node_modules/@types/aws-lambda/trigger/lex.d.ts","../../node_modules/@types/aws-lambda/trigger/s3.d.ts","../../node_modules/@types/aws-lambda/trigger/s3-batch.d.ts","../../node_modules/@types/aws-lambda/trigger/ses.d.ts","../../node_modules/@types/aws-lambda/trigger/sns.d.ts","../../node_modules/@types/aws-lambda/trigger/sqs.d.ts","../../node_modules/@types/aws-lambda/trigger/msk.d.ts","../../node_modules/@types/aws-lambda/index.d.ts","../../node_modules/@types/color-name/index.d.ts","../../node_modules/@types/eslint/helpers.d.ts","../../node_modules/@types/eslint/lib/rules/index.d.ts","../../node_modules/@types/json-schema/index.d.ts","../../node_modules/@types/estree/index.d.ts","../../node_modules/@types/eslint/index.d.ts","../../node_modules/@types/eslint-scope/index.d.ts","../../node_modules/@types/json5/index.d.ts","../../node_modules/@types/linkify-it/index.d.ts","../../node_modules/@types/lodash/ts3.1/common/common.d.ts","../../node_modules/@types/lodash/ts3.1/common/array.d.ts","../../node_modules/@types/lodash/ts3.1/common/collection.d.ts","../../node_modules/@types/lodash/ts3.1/common/date.d.ts","../../node_modules/@types/lodash/ts3.1/common/function.d.ts","../../node_modules/@types/lodash/ts3.1/common/lang.d.ts","../../node_modules/@types/lodash/ts3.1/common/math.d.ts","../../node_modules/@types/lodash/ts3.1/common/number.d.ts","../../node_modules/@types/lodash/ts3.1/common/object.d.ts","../../node_modules/@types/lodash/ts3.1/common/seq.d.ts","../../node_modules/@types/lodash/ts3.1/common/string.d.ts","../../node_modules/@types/lodash/ts3.1/common/util.d.ts","../../node_modules/@types/lodash/ts3.1/index.d.ts","../../node_modules/@types/lodash.iserror/index.d.ts","../../node_modules/@types/mdurl/encode.d.ts","../../node_modules/@types/mdurl/decode.d.ts","../../node_modules/@types/mdurl/parse.d.ts","../../node_modules/@types/mdurl/format.d.ts","../../node_modules/@types/mdurl/index.d.ts","../../node_modules/@types/markdown-it/lib/common/utils.d.ts","../../node_modules/@types/markdown-it/lib/token.d.ts","../../node_modules/@types/markdown-it/lib/rules_inline/state_inline.d.ts","../../node_modules/@types/markdown-it/lib/helpers/parse_link_label.d.ts","../../node_modules/@types/markdown-it/lib/helpers/parse_link_destination.d.ts","../../node_modules/@types/markdown-it/lib/helpers/parse_link_title.d.ts","../../node_modules/@types/markdown-it/lib/helpers/index.d.ts","../../node_modules/@types/markdown-it/lib/ruler.d.ts","../../node_modules/@types/markdown-it/lib/rules_block/state_block.d.ts","../../node_modules/@types/markdown-it/lib/parser_block.d.ts","../../node_modules/@types/markdown-it/lib/rules_core/state_core.d.ts","../../node_modules/@types/markdown-it/lib/parser_core.d.ts","../../node_modules/@types/markdown-it/lib/parser_inline.d.ts","../../node_modules/@types/markdown-it/lib/renderer.d.ts","../../node_modules/@types/markdown-it/lib/index.d.ts","../../node_modules/@types/markdown-it/index.d.ts","../../node_modules/@types/mime-types/index.d.ts","../../node_modules/@types/minimatch/index.d.ts","../../node_modules/@types/minimist/index.d.ts","../../node_modules/@types/normalize-package-data/index.d.ts","../../node_modules/@types/parse-json/index.d.ts","../../node_modules/pg-types/index.d.ts","../../node_modules/@types/pg/index.d.ts","../../node_modules/@types/pg-types/index.d.ts","../../node_modules/@types/pump/index.d.ts","../../node_modules/@types/retry/index.d.ts","../../node_modules/@types/sinonjs__fake-timers/index.d.ts","../../node_modules/@types/sinon/ts3.1/index.d.ts","../../node_modules/@types/uuid/index.d.ts","../../node_modules/@types/xml2js/lib/processors.d.ts","../../node_modules/@types/xml2js/index.d.ts"],"fileInfos":[{"version":"aa9fb4c70f369237c2f45f9d969c9a59e0eae9a192962eb48581fe864aa609db","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940",{"version":"e54c8715a4954cfdc66cd69489f2b725c09ebf37492dbd91cff0a1688b1159e8","affectsGlobalScope":true},{"version":"e34eb9339171ec45da2801c1967e4d378bd61a1dceaa1b1b4e1b6d28cb9ca962","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"51b8b27c21c066bf877646e320bf6a722b80d1ade65e686923cd9d4494aef1ca","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"2c8c5ee58f30e7c944e04ab1fb5506fdbb4dd507c9efa6972cf4b91cec90c503","affectsGlobalScope":true},{"version":"2bb4b3927299434052b37851a47bf5c39764f2ba88a888a107b32262e9292b7c","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"df9c8a72ca8b0ed62f5470b41208a0587f0f73f0a7db28e5a1272cf92537518e","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"93544ca2f26a48716c1b6c5091842cad63129daac422dfa4bc52460465f22bb1","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"7435b75fdf3509622e79622dbe5091cf4b09688410ee2034e4fc17d0c99d0862","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"9f1817f7c3f02f6d56e0f403b927e90bb133f371dcebc36fa7d6d208ef6899da","affectsGlobalScope":true},{"version":"4632665b87204bb1caa8b44d165bce0c50dfab177df5b561b345a567cabacf9a","affectsGlobalScope":true},"1f03b495671c3a1bd24510f38b8947f0991dfd6bf0278c68eca14af15b306e1f",{"version":"842f35a27a2b607648bb55320c63bf0bbdb0990d1b82c8d2b5d018e6b6f1cd0b","signature":"6ce5fb6f9912a7daf61e46cfeaeff4b178ae7c56449cde6f4bfb4804aea070fc"},"1b69216bfb24ec4d8e593cd9ef93f21c151dac8b19e47d87731304ef367285ae",{"version":"73197af151ff6527adea1649328679d2761bf29164e6b612eb15f6999c5af95e","signature":"a8805d5de115904154932f9165d9d52b70fc98442304036d0ea0668b405542ed"},{"version":"eaf5480399744e7587795556ecf88b2878caef21c5ac5e978690cd0add357594","signature":"5c9a9f8d7b61af81e09933d24417a7c04074db493e8e037c4d1a55930122ac9e"},"9122ed7070e054b73ebab37c2373a196def2d90e7d1a9a7fcd9d46b0e51fae78","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"77f0b5c6a193a699c9f7d7fb0578e64e562d271afa740783665d2a827104a873","affectsGlobalScope":true},"21a167fec8f933752fb8157f06d28fab6817af3ad9b0bdb1908a10762391eab9",{"version":"002d6d5f044365b3fbfba0ba9be3bb57cac09b81547c8df4b0795755d2081d90","affectsGlobalScope":true},"0c0cee62cb619aed81133b904f644515ba3064487002a7da83fd8aa07b1b4abd","5a94487653355b56018122d92392beb2e5f4a6c63ba5cef83bbe1c99775ef713",{"version":"d5135ad93b33adcce80b18f8065087934cdc1730d63db58562edcf017e1aad9b","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","34ec1daf3566f26c43dbab380af0de1aac29166e57e4f9ef379a2f154e0cb290","bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","75ecef44f126e2ae018b4abbd85b6e8a2e2ba1638ebec56cc64274643ce3567b","f30bb836526d930a74593f7b0f5c1c46d10856415a8f69e5e2fc3db80371e362","14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea",{"version":"bae4ea23beb8397755b935cb84d3cdc6cdb0b1b4a329b90de9fc6c8774d71994","affectsGlobalScope":true},"cec36af22f514322f870e81d30675c78df82ae8bf4863f5fd4e4424c040c678d","a9b6b0f7b1e30359283b131ba6d1c51ee2d3601a2f12e1623141e6a1a60c92a5","aeee0090b38de0dd47ca9a79ad5c2d156e3e09d92306719b0b45a3e96098e564","acfbb5aaef964e1d441f961a1846197f03241dba3c63b1e4d1903684888ef465","09416dd69576b03a3f485adf329a02f043e4a481e060ef5b208194e488d31fd9","8acf99b1c8682276a63ea5bb68433782715892726b97e4604a415e4e56bce41c",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"9499ba4dcd1ee0596d8c98d01341bc874840c5291156513bda667fecad54d5be","a907bf91df26df2400858ef75f749498fb5cf00062bf90a737ac3949cc07978d","cb92bc2e42b261e4299025756f1beb826b3d9666a3f0d46f8a7254ca512f57e4","4275d5f964e7fc7afc18538e26b3748c207dd772998346d17f409749aa1f3a63",{"version":"59104b2e80c588b813d03d3a45f57117ca4601ae3fc216c5ffbcbafc4effc1c5","affectsGlobalScope":true},"5153a2fd150e46ce57bb3f8db1318d33f6ad3261ed70ceeff92281c0608c74a3","d1a78a3c5708807e8de3e399f91df4797c62e44b02195eefc2209b2e713e54ee","8c4c1a64db28930732033c31418f817dcb9d09d706766707ae6d38f23faf0c53","25846d43937c672bab7e8195f3d881f93495df712ee901860effc109918938cc","556bf5c36deb62cffa1bf697c1789fe008ec82db0273025001db66732714e9d9","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda","653968fc1b35c5eb3d273d36fac1c1dc66f9537edf28f33485b8776bd956e23d",{"version":"970a90f76d4d219ad60819d61f5994514087ba94c985647a3474a5a3d12714ed","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","a381f079c4804442f179d742fdb2e495fe28d67a47cac673485f75ae2e77aeca","3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2",{"version":"bfe39beb986d2a2e512c091cbe924f1c415bc65de54de0e2f6a0dc6f84c183d9","affectsGlobalScope":true},"2af17363f8a062e3a8cd1b26030af0058b3f86e783f4fc6aa9f57247f240ebaa","06d7c42d256f0ce6afe1b2b6cfbc97ab391f29dadb00dd0ae8e8f23f5bc916c3","ec4bd1b200670fb567920db572d6701ed42a9641d09c4ff6869768c8f81b404c","e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa","d2ec52f565f0570e90b659811347bd689f8c6039b11eaaccd0f243759d46da6e","8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"64d5585e08ad1ab194b18bf4e851f22a626eae33ac7312ca4ba90bb7ea7daf64","739549074c075146aadf2d6786e249665d6917d567856bf76c82a7332c63a33e","cab425b5559edac18327eb2c3c0f47e7e9f71b667290b7689faafd28aac69eae","3cfb0cb51cc2c2e1b313d7c4df04dbf7e5bda0a133c6b309bf6af77cf614b971","f992cd6cc0bcbaa4e6c810468c90f2d8595f8c6c3cf050c806397d3de8585562","75bdc1b420f0ffc6cc6fd0b6694d89f5072bf755b4e6c7e65a2fda797ca0bb8a","fec943fdb3275eb6e006b35e04a8e2e99e9adf3f4b969ddf15315ac7575a93e4","6d366f0f11c05a273060e686ea770c869e9d7b9aa2ba8a40b8bce3de82bd183f","145bdd6eb032a800b625f8a03ed454e86ec82e9043ebc5daa443181f8a0a19c5","2c797c3cd77017ea810b8f324ffa354af0d5d4f4693eed3740ebd144ec66c5d0","72dc564d9b9ce07e2fe333396656bd4cde1378e473c3c8220979c778bc277897","1db77b70f2314e470ef0717c02fe165cef07fdd57bbb90aebaf31dc92a6e9054","510d11b8fe5916cdd859af9aec4d1a8642aa426f50c4a71e45ceb7e9dd5d3e32","65c0ec31b3437bc918de77c8e6c0d6732007dda4acfcaf305c965ca30dc7992b","a88df8c14fe431e22abe399ea2acfacf1c552c1fa16cc7e2b66d81180f3001ea","d12b75f884942952f25c2e9d27d4ac149e518286167c78a292deb89b59f65b22","0dad26ffdf5cae28cb67ac9c0ce06c7ec732001b01046f47eeaa4ee5a3655f5d","a3083d0ef2ab7bd00f400ce61035ab38f211cd848ebca9164d7410afeed9fad7","4194cc6e823aa830a71c733b18d0de1c29323b102c6460e9fe835ac5f8b8a9ba","564f20cc47ce1ea2b8784a1f5117c66838d10b770851d4325f79c1b451a7c3f5","df0e79fd71b86b3f4a612c862238c1169e3eb8fceaef68ef090e04b66b04445c","126cdd1c40798a3101234f838fe0be59dec0c01b97d43b113c766a31918ef9b0","f4922a1814e47fdb4d93c2cf27968ea30c174e04d4a3374774046a9307dbbaf0","bfff1bb349423cc262a88775d8233f7ea2b87d66ba1f0631eec0c30bea097dd5","a177f76c040e29b9c31adfc93225c273828ff784b592bf56c6131771e624f628","06236dfec90a14b0c3db8249831069ea3f90b004d73d496a559a4466e5a344a4","436992b7035b789a73baf1f51d66a64c218badcf1e17edd67dcb44fe6d3d009e","c1a4394c95ed285f9108d293b19572edf21c1b29125f8a17e85f8375054f5645","3070ce9849d477db20a1e6b03a430c4340e91ea3b048b2afbfb7d21d36d553d1","335b1f84324d637d116d8b7c430dfb80bf96c90c54aedaa133d43e805e41f6c6","f7fc1c5f6c6b4e78879225e83d35775e1fd54accffce10526bab0434f9096ab4","51099791f268d0ca2763789d3d0a01c05c8e064b7ff7eb468e8d2be25b277c8d","37a51347f3dccdeef5d8a40dab80b2e5a115465f7bb4268a042947e3a5c55187","5ff48985020588ec458560204aa20862faf4ea5f0c139c7d57264babc3e4a7c5","99eadde7ee869925e07537b978a7716eb2c852598ad49ca5889fe638d7cc6b5d","405bb4cc7a0ca92a73b99e06838ab08fae8b9e0a138e48d6cd15ed009d275275","e67bda6aa3fc9f8f19ea9dc66de06025c5525919c7134fe1f9ede4ed174476aa","00b596cfb13b7339f0ffd4f9613438e4856d6285c7daea5905f0f09434b074cc","fcfc2938d1472c2f0757ee7963523e054e99fd7eec41d7e920c9aa86c6efb140","de92ccb3b28e3c059cba235188d687743270d5a82b5b521e914e45be4dccf169","66738976a7aa2d5fb2770a1b689f8bc643af958f836b7bc08e412d4092de3ab9","0cae9cd75264a10fab3a1beb5c78070fdfa964117064f2d8d95818b4391cd465","ea7abdaf48601d8d84e0962f628f61d3738637ff26f2362c90f514a337bc8305","c05725e489b642c7b8feb7dac47bdde4075655405f0d9f1d28761176cbe4bd7c","cf4eaba5fbc5d8a451480bd6b5e1439edfc3fbc0a7be8fca33d1d6078514b2ee","47ffa0bd85219fa1551c7cb128e3e1b44f980c9eb5baee26b0164db191ab917b","8c1b8d086ae2b780328ca36a6ae7c5f8ffd5be765ef17c8f73b03425e388085d","33db1b492d92effbcc562388b6d448e28e8304d6a926f513dd760a6bc4cba2b3","1d5690b86bc265d65446675bd52c29d502bad14702aa356e0cbf87341c7e2193","b7917163a8867f4c952a8968ae0157bb52461b739ae96727e36699715f9b014f","2cf55a9f930c99abfe6e45928ae931cbb3e74be97f1981bdd40bc407f5be8587","f0cb4b3ab88193e3e51e9e2622e4c375955003f1f81239d72c5b7a95415dad3e",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"0133ebdd17a823ae56861948870cde4dac18dd8818ab641039c85bbb720429e0","ecdf947a5111318568ba99f2a87b8498382d8871207f1bc6271ff3b9536a2448","7d7c8ef7d48a035142c07dae60545ecc0e4af4c337742760cb09726f2f8e31db","a6d8b5ec56c550fc46a802e19f596e858056f30fd895e5aab7b0a37637c3ec7a","82772e5d55062a042a2715a555d347275a663940926fc785705eb082010cb9f6","96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","6503fb6addf62f9b10f8564d9869ad824565a914ec1ac3dd7d13da14a3f57036","4025cf62742c5bb3d383c8a62342481622c87e3397ea5e7b7baab18b9efd5798","d03a1ae3d39f757c9f22e4e775b940a98d86bb50ec85529b59e32a17b65c2b90","0c75b204aed9cf6ff1c7b4bed87a3ece0d9d6fc857a6350c0c95ed0c38c814e8","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","035b95793288bf4457a2b80bfe9b7500a29324ad62adcf9991277198e8833096","f612468e9c3edff588905c4c4f512487a13ac32ffbd291fe07696268ab8c8dfa","65648639567d214f62c1b21d200c852807e68bdb08311f95ab6f526ef5b98995","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","7fc5a3d7cff296cea5c225911726a56283b663328709088fcc912d61f73682fc","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","4908e4c00832b26ce77a629de8501b0e23a903c094f9e79a7fec313a15da796a","2630a7cbb597e85d713b7ef47f2946d4280d3d4c02733282770741d40672b1a5",{"version":"bbf144d4354e2aaa6439f32761f3ee798cc68d1600adab6e2a596f25269f106d","affectsGlobalScope":true},"a7906081164a4f965be7330d37c545dcdb93ad6ae36c05c0820cab59d49e5168","f313731860257325f13351575f381fef333d4dfe30daf5a2e72f894208feea08","951b37f7d86f6012f09e6b35f1de57c69d75f16908cb0adaa56b93675ea0b853","3816fc03ffd9cbd1a7a3362a264756a4a1d547caabea50ca68303046be40e376","0c417b4ec46b88fb62a43ec00204700b560d01eb5677c7faa8ecd34610f096a8","13d29cdeb64e8496424edf42749bbb47de5e42d201cf958911a4638cbcffbd3f","0f9e381eecc5860f693c31fe463b3ca20a64ca9b8db0cf6208cd4a053f064809","95902d5561c6aac5dfc40568a12b0aca324037749dcd32a81f23423bfde69bab","5dfb2aca4136abdc5a2740f14be8134a6e6b66fd53470bb2e954e40f8abfaf3e","577463167dd69bd81f76697dfc3f7b22b77a6152f60a602a9218e52e3183ad67","b8396e9024d554b611cbe31a024b176ba7116063d19354b5a02dccd8f0118989","4b28e1c5bf88d891e07a1403358b81a51b3ba2eae1ffada51cca7476b5ac6407","7150ad575d28bf98fae321a1c0f10ad17b127927811f488ded6ff1d88d4244e5","8b155c4757d197969553de3762c8d23d5866710301de41e1b66b97c9ed867003","93733466609dd8bf72eace502a24ca7574bd073d934216e628f1b615c8d3cb3c","45e9228761aabcadb79c82fb3008523db334491525bdb8e74e0f26eaf7a4f7f4","aeacac2778c9821512b6b889da79ac31606a863610c8f28da1e483579627bf90","569fdb354062fc098a6a3ba93a029edf22d6fe480cf72b231b3c07832b2e7c97","bf9876e62fb7f4237deafab8c7444770ef6e82b4cad2d5dc768664ff340feeb2","6cf60e76d37faf0fbc2f80a873eab0fd545f6b1bf300e7f0823f956ddb3083e9","6adaa6103086f931e3eee20f0987e86e8879e9d13aa6bd6075ccfc58b9c5681c","ee0af0f2b8d3b4d0baf669f2ff6fcef4a8816a473c894cc7c905029f7505fed0","f17dd220e27f33e3f1c5bb6f00999420520a6dd1e7f71ee66c11cfc1c2990f20","8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","3602dfff3072caea42f23a9b63fb34a7b0c95a62b93ce2add5fe6b159447845e","c9ad058b2cc9ce6dc2ed92960d6d009e8c04bef46d3f5312283debca6869f613","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","f60e3e3060207ac982da13363181fd7ee4beecc19a7c569f0d6bb034331066c2","ce3c16bd239d4345a1ffabff3dcbb5025d281292742f4cfa5a29398b815bbb60","060937b9e71c39c855e3572260800c74f248947c5781ddd8db1f3e0a08696c13","6ef174eacb6027f8c66915646567f70a425988e151ea79725078f4507db85a6f","199f9ead0daf25ae4c5632e3d1f42570af59685294a38123eef457407e13f365","558a9770503071d5a6fc6c596f7230bb79f2d034ced4a205bd1ebcad3b5879ec","5fea7154f7cc1d8b1e56b2c8917cf57b529799201f75871b3d8df13de45123b8","fab58e600970e66547644a44bc9918e3223aa2cbd9e8763cec004b2cfb48827e","c0288f54de6f544706a3150c8b579b1a975870695c4be866f727ece6a16f3976","232a20dbd107baa091280c321f417c715f328a5b2d896bec7399630ff85270f7"],"options":{"declaration":true,"declarationMap":true,"esModuleInterop":true,"module":1,"noFallthroughCasesInSwitch":true,"noImplicitReturns":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","removeComments":false,"sourceMap":true,"strict":true,"target":6,"useUnknownInCatchVariables":false},"fileIdsList":[[92],[92,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,136,137,138,139,140,141,142,143,144,145,146,147,148],[92,106],[92,106,107],[92,106,108],[92,116],[92,106,121,122,123],[92,106,125],[92,106,126,127,128,129,130,131,132,133,134,135],[92,154,155],[92,151,152,153,154],[92,155],[92,171],[92,159,161,162,163,164,165,166,167,168,169,170,171],[92,159,160,162,163,164,165,166,167,168,169,170,171],[92,160,161,162,163,164,165,166,167,168,169,170,171],[92,159,160,161,163,164,165,166,167,168,169,170,171],[92,159,160,161,162,164,165,166,167,168,169,170,171],[92,159,160,161,162,163,165,166,167,168,169,170,171],[92,159,160,161,162,163,164,166,167,168,169,170,171],[92,159,160,161,162,163,164,165,167,168,169,170,171],[92,159,160,161,162,163,164,165,166,168,169,170,171],[92,159,160,161,162,163,164,165,166,167,169,170,171],[92,159,160,161,162,163,164,165,166,167,168,170,171],[92,159,160,161,162,163,164,165,166,167,168,169,171],[92,159,160,161,162,163,164,165,166,167,168,169,170],[92,192],[92,177],[92,181,182,183],[92,180],[92,182],[92,158,178,179,184,187,189,190,191],[92,179,185,186,192],[92,185,188],[92,179,180,185,192],[92,179,192],[92,173,174,175,176],[63,80,88,92,99,199,200],[92,99],[92,204],[63,92,99,207],[63,66,91,92,99,100,101,102],[63,92,99],[48,92],[51,92],[52,57,92],[53,63,64,71,80,91,92],[53,54,63,71,92],[55,92],[56,57,64,72,92],[57,80,88,92],[58,60,63,71,92],[59,92],[60,61,92],[62,63,92],[63,92],[63,64,65,80,91,92],[63,64,65,80,83,92],[92,96],[66,71,80,91,92],[63,64,66,67,71,80,88,91,92],[66,68,80,88,91,92],[48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98],[63,69,92],[70,91,92],[60,63,71,80,92],[72,92],[73,92],[51,74,92],[75,90,92,96],[76,92],[77,92],[63,78,92],[78,79,92,94],[63,80,81,82,83,92],[80,82,92],[80,81,92],[83,92],[84,92],[63,86,87,92],[86,87,92],[57,71,80,88,92],[89,92],[71,90,92],[52,66,77,91,92],[57,92],[80,92,93],[92,94],[92,95],[52,57,63,65,74,80,91,92,94,96],[80,92,97],[66,80,92,99],[46,92],[44,45,92],[46],[45]],"referencedMap":[[107,1],[108,1],[106,1],[149,2],[109,3],[110,4],[111,4],[112,3],[113,3],[114,5],[115,5],[117,6],[118,3],[119,6],[121,3],[122,3],[123,3],[124,7],[120,3],[125,1],[126,8],[127,8],[128,8],[136,9],[129,8],[130,8],[131,8],[132,8],[133,8],[134,8],[135,8],[137,3],[138,3],[116,3],[139,3],[140,3],[141,3],[142,3],[148,3],[144,3],[143,3],[145,3],[146,3],[147,3],[150,1],[156,10],[151,1],[155,11],[152,12],[154,1],[153,1],[157,1],[158,1],[172,13],[160,14],[161,15],[159,16],[162,17],[163,18],[164,19],[165,20],[166,21],[167,22],[168,23],[169,24],[170,25],[171,26],[193,27],[178,28],[184,29],[182,1],[181,30],[183,31],[192,32],[187,33],[189,34],[190,35],[191,36],[185,1],[186,36],[188,36],[180,36],[179,1],[174,1],[173,1],[176,28],[177,37],[175,28],[194,1],[195,1],[196,1],[197,1],[198,1],[201,1],[200,38],[202,39],[203,1],[205,40],[204,1],[206,1],[208,41],[207,1],[199,1],[8,1],[9,1],[13,1],[12,1],[2,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[3,1],[4,1],[25,1],[22,1],[23,1],[24,1],[26,1],[27,1],[28,1],[5,1],[29,1],[30,1],[31,1],[32,1],[6,1],[43,1],[33,1],[34,1],[35,1],[36,1],[7,1],[41,1],[37,1],[38,1],[39,1],[40,1],[1,1],[42,1],[11,1],[10,1],[103,42],[101,1],[104,1],[105,43],[48,44],[49,44],[51,45],[52,46],[53,47],[54,48],[55,49],[56,50],[57,51],[58,52],[59,53],[60,54],[61,54],[62,55],[63,56],[64,57],[65,58],[50,59],[98,1],[66,60],[67,61],[68,62],[99,63],[69,64],[70,65],[71,66],[72,67],[73,68],[74,69],[75,70],[76,71],[77,72],[78,73],[79,74],[80,75],[82,76],[81,77],[83,78],[84,79],[85,1],[86,80],[87,81],[88,82],[89,83],[90,84],[91,85],[92,86],[93,87],[94,88],[95,89],[96,90],[97,91],[102,92],[100,56],[44,1],[47,93],[46,94],[45,1]],"exportedModulesMap":[[107,1],[108,1],[106,1],[149,2],[109,3],[110,4],[111,4],[112,3],[113,3],[114,5],[115,5],[117,6],[118,3],[119,6],[121,3],[122,3],[123,3],[124,7],[120,3],[125,1],[126,8],[127,8],[128,8],[136,9],[129,8],[130,8],[131,8],[132,8],[133,8],[134,8],[135,8],[137,3],[138,3],[116,3],[139,3],[140,3],[141,3],[142,3],[148,3],[144,3],[143,3],[145,3],[146,3],[147,3],[150,1],[156,10],[151,1],[155,11],[152,12],[154,1],[153,1],[157,1],[158,1],[172,13],[160,14],[161,15],[159,16],[162,17],[163,18],[164,19],[165,20],[166,21],[167,22],[168,23],[169,24],[170,25],[171,26],[193,27],[178,28],[184,29],[182,1],[181,30],[183,31],[192,32],[187,33],[189,34],[190,35],[191,36],[185,1],[186,36],[188,36],[180,36],[179,1],[174,1],[173,1],[176,28],[177,37],[175,28],[194,1],[195,1],[196,1],[197,1],[198,1],[201,1],[200,38],[202,39],[203,1],[205,40],[204,1],[206,1],[208,41],[207,1],[199,1],[8,1],[9,1],[13,1],[12,1],[2,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[3,1],[4,1],[25,1],[22,1],[23,1],[24,1],[26,1],[27,1],[28,1],[5,1],[29,1],[30,1],[31,1],[32,1],[6,1],[43,1],[33,1],[34,1],[35,1],[36,1],[7,1],[41,1],[37,1],[38,1],[39,1],[40,1],[1,1],[42,1],[11,1],[10,1],[103,42],[101,1],[104,1],[105,43],[48,44],[49,44],[51,45],[52,46],[53,47],[54,48],[55,49],[56,50],[57,51],[58,52],[59,53],[60,54],[61,54],[62,55],[63,56],[64,57],[65,58],[50,59],[98,1],[66,60],[67,61],[68,62],[99,63],[69,64],[70,65],[71,66],[72,67],[73,68],[74,69],[75,70],[76,71],[77,72],[78,73],[79,74],[80,75],[82,76],[81,77],[83,78],[84,79],[85,1],[86,80],[87,81],[88,82],[89,83],[90,84],[91,85],[92,86],[93,87],[94,88],[95,89],[96,90],[97,91],[102,92],[100,56],[47,95],[46,96],[45,1]],"semanticDiagnosticsPerFile":[107,108,106,149,109,110,111,112,113,114,115,117,118,119,121,122,123,124,120,125,126,127,128,136,129,130,131,132,133,134,135,137,138,116,139,140,141,142,148,144,143,145,146,147,150,156,151,155,152,154,153,157,158,172,160,161,159,162,163,164,165,166,167,168,169,170,171,193,178,184,182,181,183,192,187,189,190,191,185,186,188,180,179,174,173,176,177,175,194,195,196,197,198,201,200,202,203,205,204,206,208,207,199,8,9,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,43,33,34,35,36,7,41,37,38,39,40,1,42,11,10,103,101,104,105,48,49,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,50,98,66,67,68,99,69,70,71,72,73,74,75,76,77,78,79,80,82,81,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,102,100,44,47,46,45]},"version":"4.4.4"}
|
package/types.d.ts
CHANGED
package/types.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["src/types.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["src/types.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,6BAA6B;IAC5C,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,YAAY,EAAE,MAAM,CAAC;IACrB,oBAAoB,CAAC,EAAE,MAAM,OAAO,CAAC,MAAM,CAAC,CAAC;CAC9C"}
|