@forgerock/sdk-utilities 0.0.0-beta-20250506165419

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Ping Identity Corporation
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,89 @@
1
+ # @forgerock/sdk-utilities
2
+
3
+ A collection of utility functions used by the ForgeRock/Ping Identity JavaScript SDK packages.
4
+
5
+ ## Installation
6
+
7
+ This package is intended to be used as a dependency within the ForgeRock/Ping Identity JavaScript SDK ecosystem and is not meant to be installed directly by end users.
8
+
9
+ ## Features
10
+
11
+ ### URL Utilities
12
+
13
+ Utilities for formatting and handling URLs for ForgeRock/Ping Identity services:
14
+
15
+ - `getRealmUrlPath`: Formats realm paths for use in API calls
16
+ - `getEndpointPath`: Constructs endpoint paths for various API endpoints
17
+
18
+ ### OIDC Utilities
19
+
20
+ Utilities for OAuth2/OIDC related operations:
21
+
22
+ - PKCE (Proof Key for Code Exchange) utilities for OAuth2 authorization code flow
23
+
24
+ ## Usage
25
+
26
+ ### URL Utilities
27
+
28
+ ```typescript
29
+ import { getRealmUrlPath, getEndpointPath } from '@forgerock/sdk-utilities';
30
+
31
+ // Get a formatted realm path
32
+ const realmPath = getRealmUrlPath('alpha/beta');
33
+ // Returns: "realms/root/realms/alpha/realms/beta"
34
+
35
+ // Get a specific endpoint path
36
+ const authEndpoint = getEndpointPath({
37
+ endpoint: 'authenticate',
38
+ realmPath: 'alpha',
39
+ });
40
+ // Returns: "json/realms/root/realms/alpha/authenticate"
41
+
42
+ // With custom path
43
+ const customAuthEndpoint = getEndpointPath({
44
+ endpoint: 'authenticate',
45
+ realmPath: 'alpha',
46
+ customPaths: { authenticate: 'custom/authenticate' },
47
+ });
48
+ // Returns: "custom/authenticate"
49
+ ```
50
+
51
+ ### OIDC/PKCE Utilities
52
+
53
+ ```typescript
54
+ import { createVerifier, createChallenge } from '@forgerock/sdk-utilities';
55
+
56
+ // Create a PKCE verifier
57
+ const verifier = createVerifier();
58
+
59
+ // Generate a challenge from the verifier
60
+ const challenge = await createChallenge(verifier);
61
+ ```
62
+
63
+ ## Development
64
+
65
+ ### Testing
66
+
67
+ To run tests:
68
+
69
+ ```bash
70
+ pnpm test
71
+ ```
72
+
73
+ To run tests in watch mode:
74
+
75
+ ```bash
76
+ pnpm test:watch
77
+ ```
78
+
79
+ ### Linting
80
+
81
+ To lint the codebase:
82
+
83
+ ```bash
84
+ pnpm lint
85
+ ```
86
+
87
+ ## License
88
+
89
+ This project is licensed under the terms of the MIT license. See the [LICENSE](../../LICENSE) file for details.
@@ -0,0 +1,3 @@
1
+ export * from './lib/oidc/index.js';
2
+ export * from './lib/url/index.js';
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AASA,cAAc,qBAAqB,CAAC;AACpC,cAAc,oBAAoB,CAAC"}
@@ -0,0 +1,11 @@
1
+ /*
2
+ *
3
+ * Copyright © 2025 Ping Identity Corporation. All right reserved.
4
+ *
5
+ * This software may be modified and distributed under the terms
6
+ * of the MIT license. See the LICENSE file for details.
7
+ *
8
+ */
9
+ export * from './lib/oidc/index.js';
10
+ export * from './lib/url/index.js';
11
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH,cAAc,qBAAqB,CAAC;AACpC,cAAc,oBAAoB,CAAC"}
@@ -0,0 +1,2 @@
1
+ export * from './pkce.utils.js';
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/lib/oidc/index.ts"],"names":[],"mappings":"AAOA,cAAc,iBAAiB,CAAC"}
@@ -0,0 +1,8 @@
1
+ /*
2
+ * Copyright (c) 2025 Ping Identity Corporation. All rights reserved.
3
+ *
4
+ * This software may be modified and distributed under the terms
5
+ * of the MIT license. See the LICENSE file for details.
6
+ */
7
+ export * from './pkce.utils.js';
8
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/lib/oidc/index.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,cAAc,iBAAiB,CAAC"}
@@ -0,0 +1,25 @@
1
+ /**
2
+ * Helper functions for generating verifier, challenge and state strings used for
3
+ * Proof Key for Code Exchange (PKCE).
4
+ */
5
+ /**
6
+ * Creates a random string.
7
+ *
8
+ * @param size The number for entropy (default: 32)
9
+ */
10
+ export declare function createRandomString(num?: number): string;
11
+ /**
12
+ * Creates a random state.
13
+ */
14
+ export declare function createState(): string;
15
+ /**
16
+ * Creates a random verifier.
17
+ */
18
+ export declare function createVerifier(): string;
19
+ /**
20
+ * Creates a SHA-256 hash of the verifier.
21
+ *
22
+ * @param verifier The verifier to hash
23
+ */
24
+ export declare function createChallenge(verifier: string): Promise<string>;
25
+ //# sourceMappingURL=pkce.utils.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"pkce.utils.d.ts","sourceRoot":"","sources":["../../../../src/lib/oidc/pkce.utils.ts"],"names":[],"mappings":"AASA;;;GAGG;AAEH;;;;GAIG;AACH,wBAAgB,kBAAkB,CAAC,GAAG,SAAK,UAG1C;AAED;;GAEG;AACH,wBAAgB,WAAW,WAE1B;AAED;;GAEG;AACH,wBAAgB,cAAc,WAE7B;AAED;;;;GAIG;AACH,wBAAsB,eAAe,CAAC,QAAQ,EAAE,MAAM,mBAWrD"}
@@ -0,0 +1,50 @@
1
+ /*
2
+ *
3
+ * Copyright © 2025 Ping Identity Corporation. All right reserved.
4
+ *
5
+ * This software may be modified and distributed under the terms
6
+ * of the MIT license. See the LICENSE file for details.
7
+ *
8
+ */
9
+ /**
10
+ * Helper functions for generating verifier, challenge and state strings used for
11
+ * Proof Key for Code Exchange (PKCE).
12
+ */
13
+ /**
14
+ * Creates a random string.
15
+ *
16
+ * @param size The number for entropy (default: 32)
17
+ */
18
+ export function createRandomString(num = 32) {
19
+ const random = crypto.getRandomValues(new Uint8Array(num));
20
+ return btoa(random.join('')).replace(/[^a-zA-Z0-9]+/, '');
21
+ }
22
+ /**
23
+ * Creates a random state.
24
+ */
25
+ export function createState() {
26
+ return createRandomString(16);
27
+ }
28
+ /**
29
+ * Creates a random verifier.
30
+ */
31
+ export function createVerifier() {
32
+ return createRandomString(32);
33
+ }
34
+ /**
35
+ * Creates a SHA-256 hash of the verifier.
36
+ *
37
+ * @param verifier The verifier to hash
38
+ */
39
+ export async function createChallenge(verifier) {
40
+ // Create a SHA-256 hash of the specified string
41
+ const uint8Array = new TextEncoder().encode(verifier);
42
+ const arrayBuffer = await crypto.subtle.digest('SHA-256', uint8Array);
43
+ const charCodeArray = Array.from(new Uint8Array(arrayBuffer));
44
+ // Create a base64 encoded, URL-friendly version of the char code array
45
+ return btoa(String.fromCharCode(...charCodeArray))
46
+ .replace(/\+/g, '-')
47
+ .replace(/\//g, '_')
48
+ .replace(/=/g, '');
49
+ }
50
+ //# sourceMappingURL=pkce.utils.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"pkce.utils.js","sourceRoot":"","sources":["../../../../src/lib/oidc/pkce.utils.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH;;;GAGG;AAEH;;;;GAIG;AACH,MAAM,UAAU,kBAAkB,CAAC,GAAG,GAAG,EAAE;IACzC,MAAM,MAAM,GAAG,MAAM,CAAC,eAAe,CAAC,IAAI,UAAU,CAAC,GAAG,CAAC,CAAC,CAAC;IAC3D,OAAO,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC,CAAC,OAAO,CAAC,eAAe,EAAE,EAAE,CAAC,CAAC;AAC5D,CAAC;AAED;;GAEG;AACH,MAAM,UAAU,WAAW;IACzB,OAAO,kBAAkB,CAAC,EAAE,CAAC,CAAC;AAChC,CAAC;AAED;;GAEG;AACH,MAAM,UAAU,cAAc;IAC5B,OAAO,kBAAkB,CAAC,EAAE,CAAC,CAAC;AAChC,CAAC;AAED;;;;GAIG;AACH,MAAM,CAAC,KAAK,UAAU,eAAe,CAAC,QAAgB;IACpD,gDAAgD;IAChD,MAAM,UAAU,GAAG,IAAI,WAAW,EAAE,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC;IACtD,MAAM,WAAW,GAAG,MAAM,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,SAAS,EAAE,UAAU,CAAC,CAAC;IACtE,MAAM,aAAa,GAAG,KAAK,CAAC,IAAI,CAAC,IAAI,UAAU,CAAC,WAAW,CAAC,CAAC,CAAC;IAE9D,uEAAuE;IACvE,OAAO,IAAI,CAAC,MAAM,CAAC,YAAY,CAAC,GAAG,aAAa,CAAC,CAAC;SAC/C,OAAO,CAAC,KAAK,EAAE,GAAG,CAAC;SACnB,OAAO,CAAC,KAAK,EAAE,GAAG,CAAC;SACnB,OAAO,CAAC,IAAI,EAAE,EAAE,CAAC,CAAC;AACvB,CAAC"}
@@ -0,0 +1,24 @@
1
+ export type ConfigurablePaths = keyof CustomPathConfig;
2
+ /**
3
+ * Optional configuration for custom paths for actions
4
+ */
5
+ export interface CustomPathConfig {
6
+ authenticate?: string;
7
+ authorize?: string;
8
+ accessToken?: string;
9
+ endSession?: string;
10
+ userInfo?: string;
11
+ revoke?: string;
12
+ sessions?: string;
13
+ }
14
+ /** ****************************************************************
15
+ * @param {ConfigurablePaths} endpoint - The endpoint to get the path for
16
+ * @param {string} realmPath - The realm path
17
+ * @param {CustomPathConfig} customPaths - The custom paths
18
+ */
19
+ export interface GetEndpointPathParams {
20
+ endpoint: ConfigurablePaths;
21
+ realmPath?: string;
22
+ customPaths?: CustomPathConfig;
23
+ }
24
+ //# sourceMappingURL=am-url.types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"am-url.types.d.ts","sourceRoot":"","sources":["../../../../src/lib/url/am-url.types.ts"],"names":[],"mappings":"AASA,MAAM,MAAM,iBAAiB,GAAG,MAAM,gBAAgB,CAAC;AAEvD;;GAEG;AACH,MAAM,WAAW,gBAAgB;IAC/B,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB;AAED;;;;GAIG;AACH,MAAM,WAAW,qBAAqB;IACpC,QAAQ,EAAE,iBAAiB,CAAC;IAC5B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,WAAW,CAAC,EAAE,gBAAgB,CAAC;CAChC"}
@@ -0,0 +1,10 @@
1
+ /*
2
+ *
3
+ * Copyright © 2025 Ping Identity Corporation. All right reserved.
4
+ *
5
+ * This software may be modified and distributed under the terms
6
+ * of the MIT license. See the LICENSE file for details.
7
+ *
8
+ */
9
+ export {};
10
+ //# sourceMappingURL=am-url.types.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"am-url.types.js","sourceRoot":"","sources":["../../../../src/lib/url/am-url.types.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG"}
@@ -0,0 +1,14 @@
1
+ import type { GetEndpointPathParams } from './am-url.types.js';
2
+ /** ****************************************************************
3
+ * @function getRealmUrlPath - Get the realm URL path
4
+ * @param {string} realmPath - The realm path
5
+ * @returns {string} - The realm URL path
6
+ */
7
+ export declare function getRealmUrlPath(realmPath?: string): string;
8
+ /** ****************************************************************
9
+ * @function getEndpointPath - Get the endpoint path
10
+ * @param {GetEndpointPathParams} - The endpoint, realm path, and custom paths params
11
+ * @returns {string} - The endpoint path
12
+ */
13
+ export declare function getEndpointPath({ endpoint, realmPath, customPaths, }: GetEndpointPathParams): string;
14
+ //# sourceMappingURL=am-url.utils.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"am-url.utils.d.ts","sourceRoot":"","sources":["../../../../src/lib/url/am-url.utils.ts"],"names":[],"mappings":"AASA,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,mBAAmB,CAAC;AAE/D;;;;GAIG;AACH,wBAAgB,eAAe,CAAC,SAAS,CAAC,EAAE,MAAM,GAAG,MAAM,CAe1D;AAED;;;;GAIG;AACH,wBAAgB,eAAe,CAAC,EAC9B,QAAQ,EACR,SAAS,EACT,WAAW,GACZ,EAAE,qBAAqB,GAAG,MAAM,CAgBhC"}
@@ -0,0 +1,51 @@
1
+ /*
2
+ *
3
+ * Copyright © 2025 Ping Identity Corporation. All right reserved.
4
+ *
5
+ * This software may be modified and distributed under the terms
6
+ * of the MIT license. See the LICENSE file for details.
7
+ *
8
+ */
9
+ /** ****************************************************************
10
+ * @function getRealmUrlPath - Get the realm URL path
11
+ * @param {string} realmPath - The realm path
12
+ * @returns {string} - The realm URL path
13
+ */
14
+ export function getRealmUrlPath(realmPath) {
15
+ // Split the path and scrub segments
16
+ const names = (realmPath || '')
17
+ .split('/')
18
+ .map((x) => x.trim())
19
+ .filter((x) => x !== '');
20
+ // Ensure 'root' is the first realm
21
+ if (names[0] !== 'root') {
22
+ names.unshift('root');
23
+ }
24
+ // Concatenate into a URL path
25
+ const urlPath = names.map((x) => `realms/${x}`).join('/');
26
+ return urlPath;
27
+ }
28
+ /** ****************************************************************
29
+ * @function getEndpointPath - Get the endpoint path
30
+ * @param {GetEndpointPathParams} - The endpoint, realm path, and custom paths params
31
+ * @returns {string} - The endpoint path
32
+ */
33
+ export function getEndpointPath({ endpoint, realmPath, customPaths, }) {
34
+ const realmUrlPath = getRealmUrlPath(realmPath);
35
+ const defaultPaths = {
36
+ authenticate: `json/${realmUrlPath}/authenticate`,
37
+ authorize: `oauth2/${realmUrlPath}/authorize`,
38
+ accessToken: `oauth2/${realmUrlPath}/access_token`,
39
+ endSession: `oauth2/${realmUrlPath}/connect/endSession`,
40
+ userInfo: `oauth2/${realmUrlPath}/userinfo`,
41
+ revoke: `oauth2/${realmUrlPath}/token/revoke`,
42
+ sessions: `json/${realmUrlPath}/sessions/`,
43
+ };
44
+ if (customPaths && customPaths[endpoint]) {
45
+ return customPaths[endpoint];
46
+ }
47
+ else {
48
+ return defaultPaths[endpoint];
49
+ }
50
+ }
51
+ //# sourceMappingURL=am-url.utils.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"am-url.utils.js","sourceRoot":"","sources":["../../../../src/lib/url/am-url.utils.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAIH;;;;GAIG;AACH,MAAM,UAAU,eAAe,CAAC,SAAkB;IAChD,oCAAoC;IACpC,MAAM,KAAK,GAAG,CAAC,SAAS,IAAI,EAAE,CAAC;SAC5B,KAAK,CAAC,GAAG,CAAC;SACV,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,EAAE,CAAC;SACpB,MAAM,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,KAAK,EAAE,CAAC,CAAC;IAE3B,mCAAmC;IACnC,IAAI,KAAK,CAAC,CAAC,CAAC,KAAK,MAAM,EAAE,CAAC;QACxB,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC;IACxB,CAAC;IAED,8BAA8B;IAC9B,MAAM,OAAO,GAAG,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,UAAU,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;IAC1D,OAAO,OAAO,CAAC;AACjB,CAAC;AAED;;;;GAIG;AACH,MAAM,UAAU,eAAe,CAAC,EAC9B,QAAQ,EACR,SAAS,EACT,WAAW,GACW;IACtB,MAAM,YAAY,GAAG,eAAe,CAAC,SAAS,CAAC,CAAC;IAChD,MAAM,YAAY,GAAG;QACnB,YAAY,EAAE,QAAQ,YAAY,eAAe;QACjD,SAAS,EAAE,UAAU,YAAY,YAAY;QAC7C,WAAW,EAAE,UAAU,YAAY,eAAe;QAClD,UAAU,EAAE,UAAU,YAAY,qBAAqB;QACvD,QAAQ,EAAE,UAAU,YAAY,WAAW;QAC3C,MAAM,EAAE,UAAU,YAAY,eAAe;QAC7C,QAAQ,EAAE,QAAQ,YAAY,YAAY;KAC3C,CAAC;IACF,IAAI,WAAW,IAAI,WAAW,CAAC,QAAQ,CAAC,EAAE,CAAC;QACzC,OAAO,WAAW,CAAC,QAAQ,CAAC,CAAC;IAC/B,CAAC;SAAM,CAAC;QACN,OAAO,YAAY,CAAC,QAAQ,CAAC,CAAC;IAChC,CAAC;AACH,CAAC"}
@@ -0,0 +1,2 @@
1
+ export * from './am-url.utils.js';
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/lib/url/index.ts"],"names":[],"mappings":"AAOA,cAAc,mBAAmB,CAAC"}
@@ -0,0 +1,8 @@
1
+ /*
2
+ * Copyright (c) 2025 Ping Identity Corporation. All rights reserved.
3
+ *
4
+ * This software may be modified and distributed under the terms
5
+ * of the MIT license. See the LICENSE file for details.
6
+ */
7
+ export * from './am-url.utils.js';
8
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/lib/url/index.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,cAAc,mBAAmB,CAAC"}
@@ -0,0 +1,2 @@
1
+ export * from './lib/url/am-url.types.js';
2
+ //# sourceMappingURL=types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/types.ts"],"names":[],"mappings":"AASA,cAAc,2BAA2B,CAAC"}
@@ -0,0 +1,10 @@
1
+ /*
2
+ *
3
+ * Copyright © 2025 Ping Identity Corporation. All right reserved.
4
+ *
5
+ * This software may be modified and distributed under the terms
6
+ * of the MIT license. See the LICENSE file for details.
7
+ *
8
+ */
9
+ export * from './lib/url/am-url.types.js';
10
+ //# sourceMappingURL=types.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.js","sourceRoot":"","sources":["../../src/types.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH,cAAc,2BAA2B,CAAC"}
@@ -0,0 +1 @@
1
+ {"fileNames":["../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../src/lib/oidc/pkce.utils.ts","../src/lib/oidc/index.ts","../src/lib/url/am-url.types.ts","../src/lib/url/am-url.utils.ts","../src/lib/url/index.ts","../src/index.ts","../src/types.ts","../../../node_modules/.pnpm/@types+estree@1.0.7/node_modules/@types/estree/index.d.ts","../../../node_modules/.pnpm/@types+json-schema@7.0.15/node_modules/@types/json-schema/index.d.ts","../../../node_modules/.pnpm/@types+eslint@9.6.1/node_modules/@types/eslint/use-at-your-own-risk.d.ts","../../../node_modules/.pnpm/@types+eslint@9.6.1/node_modules/@types/eslint/index.d.ts","../../../node_modules/.pnpm/@types+eslint-scope@3.7.7/node_modules/@types/eslint-scope/index.d.ts","../../../node_modules/.pnpm/@types+node@22.14.1/node_modules/@types/node/compatibility/disposable.d.ts","../../../node_modules/.pnpm/@types+node@22.14.1/node_modules/@types/node/compatibility/indexable.d.ts","../../../node_modules/.pnpm/@types+node@22.14.1/node_modules/@types/node/compatibility/iterators.d.ts","../../../node_modules/.pnpm/@types+node@22.14.1/node_modules/@types/node/compatibility/index.d.ts","../../../node_modules/.pnpm/@types+node@22.14.1/node_modules/@types/node/globals.typedarray.d.ts","../../../node_modules/.pnpm/@types+node@22.14.1/node_modules/@types/node/buffer.buffer.d.ts","../../../node_modules/.pnpm/buffer@5.7.1/node_modules/buffer/index.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/header.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/readable.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/file.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/fetch.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/formdata.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/connector.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/client.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/errors.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-origin.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool-stats.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/handlers.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-client.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-pool.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-errors.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-handler.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/api.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/interceptors.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/util.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cookies.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/patch.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/websocket.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/eventsource.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/filereader.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/content-type.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cache.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/index.d.ts","../../../node_modules/.pnpm/@types+node@22.14.1/node_modules/@types/node/globals.d.ts","../../../node_modules/.pnpm/@types+node@22.14.1/node_modules/@types/node/assert.d.ts","../../../node_modules/.pnpm/@types+node@22.14.1/node_modules/@types/node/assert/strict.d.ts","../../../node_modules/.pnpm/@types+node@22.14.1/node_modules/@types/node/async_hooks.d.ts","../../../node_modules/.pnpm/@types+node@22.14.1/node_modules/@types/node/buffer.d.ts","../../../node_modules/.pnpm/@types+node@22.14.1/node_modules/@types/node/child_process.d.ts","../../../node_modules/.pnpm/@types+node@22.14.1/node_modules/@types/node/cluster.d.ts","../../../node_modules/.pnpm/@types+node@22.14.1/node_modules/@types/node/console.d.ts","../../../node_modules/.pnpm/@types+node@22.14.1/node_modules/@types/node/constants.d.ts","../../../node_modules/.pnpm/@types+node@22.14.1/node_modules/@types/node/crypto.d.ts","../../../node_modules/.pnpm/@types+node@22.14.1/node_modules/@types/node/dgram.d.ts","../../../node_modules/.pnpm/@types+node@22.14.1/node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/.pnpm/@types+node@22.14.1/node_modules/@types/node/dns.d.ts","../../../node_modules/.pnpm/@types+node@22.14.1/node_modules/@types/node/dns/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.14.1/node_modules/@types/node/domain.d.ts","../../../node_modules/.pnpm/@types+node@22.14.1/node_modules/@types/node/dom-events.d.ts","../../../node_modules/.pnpm/@types+node@22.14.1/node_modules/@types/node/events.d.ts","../../../node_modules/.pnpm/@types+node@22.14.1/node_modules/@types/node/fs.d.ts","../../../node_modules/.pnpm/@types+node@22.14.1/node_modules/@types/node/fs/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.14.1/node_modules/@types/node/http.d.ts","../../../node_modules/.pnpm/@types+node@22.14.1/node_modules/@types/node/http2.d.ts","../../../node_modules/.pnpm/@types+node@22.14.1/node_modules/@types/node/https.d.ts","../../../node_modules/.pnpm/@types+node@22.14.1/node_modules/@types/node/inspector.d.ts","../../../node_modules/.pnpm/@types+node@22.14.1/node_modules/@types/node/module.d.ts","../../../node_modules/.pnpm/@types+node@22.14.1/node_modules/@types/node/net.d.ts","../../../node_modules/.pnpm/@types+node@22.14.1/node_modules/@types/node/os.d.ts","../../../node_modules/.pnpm/@types+node@22.14.1/node_modules/@types/node/path.d.ts","../../../node_modules/.pnpm/@types+node@22.14.1/node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/.pnpm/@types+node@22.14.1/node_modules/@types/node/process.d.ts","../../../node_modules/.pnpm/@types+node@22.14.1/node_modules/@types/node/punycode.d.ts","../../../node_modules/.pnpm/@types+node@22.14.1/node_modules/@types/node/querystring.d.ts","../../../node_modules/.pnpm/@types+node@22.14.1/node_modules/@types/node/readline.d.ts","../../../node_modules/.pnpm/@types+node@22.14.1/node_modules/@types/node/readline/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.14.1/node_modules/@types/node/repl.d.ts","../../../node_modules/.pnpm/@types+node@22.14.1/node_modules/@types/node/sea.d.ts","../../../node_modules/.pnpm/@types+node@22.14.1/node_modules/@types/node/sqlite.d.ts","../../../node_modules/.pnpm/@types+node@22.14.1/node_modules/@types/node/stream.d.ts","../../../node_modules/.pnpm/@types+node@22.14.1/node_modules/@types/node/stream/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.14.1/node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/.pnpm/@types+node@22.14.1/node_modules/@types/node/stream/web.d.ts","../../../node_modules/.pnpm/@types+node@22.14.1/node_modules/@types/node/string_decoder.d.ts","../../../node_modules/.pnpm/@types+node@22.14.1/node_modules/@types/node/test.d.ts","../../../node_modules/.pnpm/@types+node@22.14.1/node_modules/@types/node/timers.d.ts","../../../node_modules/.pnpm/@types+node@22.14.1/node_modules/@types/node/timers/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.14.1/node_modules/@types/node/tls.d.ts","../../../node_modules/.pnpm/@types+node@22.14.1/node_modules/@types/node/trace_events.d.ts","../../../node_modules/.pnpm/@types+node@22.14.1/node_modules/@types/node/tty.d.ts","../../../node_modules/.pnpm/@types+node@22.14.1/node_modules/@types/node/url.d.ts","../../../node_modules/.pnpm/@types+node@22.14.1/node_modules/@types/node/util.d.ts","../../../node_modules/.pnpm/@types+node@22.14.1/node_modules/@types/node/v8.d.ts","../../../node_modules/.pnpm/@types+node@22.14.1/node_modules/@types/node/vm.d.ts","../../../node_modules/.pnpm/@types+node@22.14.1/node_modules/@types/node/wasi.d.ts","../../../node_modules/.pnpm/@types+node@22.14.1/node_modules/@types/node/worker_threads.d.ts","../../../node_modules/.pnpm/@types+node@22.14.1/node_modules/@types/node/zlib.d.ts","../../../node_modules/.pnpm/@types+node@22.14.1/node_modules/@types/node/index.d.ts","../../../node_modules/.pnpm/@types+mime@1.3.5/node_modules/@types/mime/index.d.ts","../../../node_modules/.pnpm/@types+send@0.17.4/node_modules/@types/send/index.d.ts","../../../node_modules/.pnpm/@types+qs@6.9.18/node_modules/@types/qs/index.d.ts","../../../node_modules/.pnpm/@types+range-parser@1.2.7/node_modules/@types/range-parser/index.d.ts","../../../node_modules/.pnpm/@types+express-serve-static-core@5.0.6/node_modules/@types/express-serve-static-core/index.d.ts","../../../node_modules/.pnpm/@types+http-errors@2.0.4/node_modules/@types/http-errors/index.d.ts","../../../node_modules/.pnpm/@types+serve-static@1.15.7/node_modules/@types/serve-static/index.d.ts","../../../node_modules/.pnpm/@types+connect@3.4.38/node_modules/@types/connect/index.d.ts","../../../node_modules/.pnpm/@types+body-parser@1.19.5/node_modules/@types/body-parser/index.d.ts","../../../node_modules/.pnpm/@types+express@5.0.1/node_modules/@types/express/index.d.ts"],"fileIdsList":[[77,120,135,170,178],[77,120,135,170],[67,70,77,120],[67,68,69,77,120],[70,77,120],[77,120],[77,120,132,135,170,172,173,174],[77,120,175,177,179],[77,117,120],[77,119,120],[120],[77,120,125,155],[77,120,121,126,132,133,140,152,163],[77,120,121,122,132,140],[72,73,74,77,120],[77,120,123,164],[77,120,124,125,133,141],[77,120,125,152,160],[77,120,126,128,132,140],[77,119,120,127],[77,120,128,129],[77,120,132],[77,120,130,132],[77,119,120,132],[77,120,132,133,134,152,163],[77,120,132,133,134,147,152,155],[77,115,120,168],[77,115,120,128,132,135,140,152,163],[77,120,132,133,135,136,140,152,160,163],[77,120,135,137,152,160,163],[75,76,77,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169],[77,120,132,138],[77,120,139,163],[77,120,128,132,140,152],[77,120,141],[77,120,142],[77,119,120,143],[77,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169],[77,120,145],[77,120,146],[77,120,132,147,148],[77,120,147,149,164,166],[77,120,132,152,153,155],[77,120,154,155],[77,120,152,153],[77,120,155],[77,120,156],[77,117,120,152],[77,120,132,158,159],[77,120,158,159],[77,120,125,140,152,160],[77,120,161],[77,120,140,162],[77,120,135,146,163],[77,120,125,164],[77,120,152,165],[77,120,139,166],[77,120,167],[77,120,125,132,134,143,152,163,166,168],[77,120,152,169],[77,120,133,152,170,171],[77,120,135,170,172,176],[77,87,91,120,163],[77,87,120,152,163],[77,82,120],[77,84,87,120,160,163],[77,120,140,160],[77,120,170],[77,82,120,170],[77,84,87,120,140,163],[77,79,80,83,86,120,132,152,163],[77,87,94,120],[77,79,85,120],[77,87,108,109,120],[77,83,87,120,155,163,170],[77,108,120,170],[77,81,82,120,170],[77,87,120],[77,81,82,83,84,85,86,87,88,89,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,109,110,111,112,113,114,120],[77,87,102,120],[77,87,94,95,120],[77,85,87,95,96,120],[77,86,120],[77,79,82,87,120],[77,87,91,95,96,120],[77,91,120],[77,85,87,90,120,163],[77,79,84,87,94,120],[77,120,152],[77,82,87,108,120,168,170],[61,64,77,120],[60,77,120],[62,77,120],[63,77,120]],"fileInfos":[{"version":"e41c290ef7dd7dab3493e6cbe5909e0148edf4a8dad0271be08edec368a0f7b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"4fd3f3422b2d2a3dfd5cdd0f387b3a8ec45f006c6ea896a4cb41264c2100bb2c","affectsGlobalScope":true,"impliedFormat":1},{"version":"69e65d976bf166ce4a9e6f6c18f94d2424bf116e90837ace179610dbccad9b42","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"62bb211266ee48b2d0edf0d8d1b191f0c24fc379a82bd4c1692a082c540bc6b1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"f1e2a172204962276504466a6393426d2ca9c54894b1ad0a6c9dad867a65f876","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"b5ce7a470bc3628408429040c4e3a53a27755022a32fd05e2cb694e7015386c7","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"dcc9eab4903e9f8b08f2b401d4bbadfe05f760ca57479b37500ad1dfa2f423f7","signature":"57b8d638a6e71f77e1494069d731d5b8b47c9cdb07394758791035d91b057af1","impliedFormat":99},{"version":"6cd7a57631b1a80ef3ad53d3f17b1f3cde6a01b1333e43ef0a9fdbc0b9468411","signature":"369ef9efa84b07129ad5c383895d08a1694e3be04077afacaa27fa4365b5239c","impliedFormat":99},{"version":"03e0f11359424f26be5631ad478508024213d727b0e3ed123bc99f641a976d1f","signature":"4d695a7e24e9ce8da1856986d86c23a793c4de7cd432499430f175f14a419557","impliedFormat":99},{"version":"6cd2ac088ef0e382472d1c62e88d2973c5421643fe25795aa742856788145c1a","signature":"fecee30231c0f3f557dbda8e0902e961e9d8dc67a07050e887f6e85c7db588d3","impliedFormat":99},{"version":"6759302657a494636a3bbab1ba01946bb3fa13411fd4ebc52e6d298955dd197c","signature":"92278978b9f0e42064556410377db4820d5963b0b93edf588a8244580f1bedfd","impliedFormat":99},{"version":"7da431cdb336e6671ca5356982f3068d51dd123a77ed0f63a9ccd9ed66a47c97","signature":"0b85827b9435a03936d36fe642475129e34515dea1300523966574467c44bf89","impliedFormat":99},{"version":"434cadb9a0e9bc20a487e6d9b13a479dae7a9ef693a4337a720301ab96c58d65","signature":"275769a226f4ff7adf5260bf447644321fb4e89588441b5e33d7bd2e405a5cb5","impliedFormat":99},{"version":"e2b48abff5a8adc6bb1cd13a702b9ef05e6045a98e7cfa95a8779b53b6d0e69d","impliedFormat":1},{"version":"f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","impliedFormat":1},{"version":"a4a39b5714adfcadd3bbea6698ca2e942606d833bde62ad5fb6ec55f5e438ff8","impliedFormat":1},{"version":"bbc1d029093135d7d9bfa4b38cbf8761db505026cc458b5e9c8b74f4000e5e75","impliedFormat":1},{"version":"1f68ab0e055994eb337b67aa87d2a15e0200951e9664959b3866ee6f6b11a0fe","impliedFormat":1},{"version":"70521b6ab0dcba37539e5303104f29b721bfb2940b2776da4cc818c07e1fefc1","affectsGlobalScope":true,"impliedFormat":1},{"version":"030e350db2525514580ed054f712ffb22d273e6bc7eddc1bb7eda1e0ba5d395e","affectsGlobalScope":true,"impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"a79e62f1e20467e11a904399b8b18b18c0c6eea6b50c1168bf215356d5bebfaf","affectsGlobalScope":true,"impliedFormat":1},{"version":"8fa51737611c21ba3a5ac02c4e1535741d58bec67c9bdf94b1837a31c97a2263","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","impliedFormat":1},{"version":"a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"d2bc987ae352271d0d615a420dcf98cc886aa16b87fb2b569358c1fe0ca0773d","affectsGlobalScope":true,"impliedFormat":1},{"version":"4f0539c58717cbc8b73acb29f9e992ab5ff20adba5f9b57130691c7f9b186a4d","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"76103716ba397bbb61f9fa9c9090dca59f39f9047cb1352b2179c5d8e7f4e8d0","impliedFormat":1},{"version":"f9677e434b7a3b14f0a9367f9dfa1227dfe3ee661792d0085523c3191ae6a1a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"4314c7a11517e221f7296b46547dbc4df047115b182f544d072bdccffa57fc72","impliedFormat":1},{"version":"115971d64632ea4742b5b115fb64ed04bcaae2c3c342f13d9ba7e3f9ee39c4e7","impliedFormat":1},{"version":"c2510f124c0293ab80b1777c44d80f812b75612f297b9857406468c0f4dafe29","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"9057f224b79846e3a95baf6dad2c8103278de2b0c5eebda23fc8188171ad2398","affectsGlobalScope":true,"impliedFormat":1},{"version":"19d5f8d3930e9f99aa2c36258bf95abbe5adf7e889e6181872d1cdba7c9a7dd5","impliedFormat":1},{"version":"e6f5a38687bebe43a4cef426b69d34373ef68be9a6b1538ec0a371e69f309354","impliedFormat":1},{"version":"a6bf63d17324010ca1fbf0389cab83f93389bb0b9a01dc8a346d092f65b3605f","impliedFormat":1},{"version":"e009777bef4b023a999b2e5b9a136ff2cde37dc3f77c744a02840f05b18be8ff","impliedFormat":1},{"version":"1e0d1f8b0adfa0b0330e028c7941b5a98c08b600efe7f14d2d2a00854fb2f393","impliedFormat":1},{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true,"impliedFormat":1},{"version":"88bc59b32d0d5b4e5d9632ac38edea23454057e643684c3c0b94511296f2998c","affectsGlobalScope":true,"impliedFormat":1},{"version":"e0476e6b51a47a8eaf5ee6ecab0d686f066f3081de9a572f1dde3b2a8a7fb055","impliedFormat":1},{"version":"1e289f30a48126935a5d408a91129a13a59c9b0f8c007a816f9f16ef821e144e","impliedFormat":1},{"version":"f96a023e442f02cf551b4cfe435805ccb0a7e13c81619d4da61ec835d03fe512","impliedFormat":1},{"version":"5135bdd72cc05a8192bd2e92f0914d7fc43ee077d1293dc622a049b7035a0afb","impliedFormat":1},{"version":"528b62e4272e3ddfb50e8eed9e359dedea0a4d171c3eb8f337f4892aac37b24b","impliedFormat":1},{"version":"6d386bc0d7f3afa1d401afc3e00ed6b09205a354a9795196caed937494a713e6","impliedFormat":1},{"version":"5b2e73adcb25865d31c21accdc8f82de1eaded23c6f73230e474df156942380e","affectsGlobalScope":true,"impliedFormat":1},{"version":"23459c1915878a7c1e86e8bdb9c187cddd3aea105b8b1dfce512f093c969bc7e","impliedFormat":1},{"version":"b1b6ee0d012aeebe11d776a155d8979730440082797695fc8e2a5c326285678f","impliedFormat":1},{"version":"45875bcae57270aeb3ebc73a5e3fb4c7b9d91d6b045f107c1d8513c28ece71c0","impliedFormat":1},{"version":"1dc73f8854e5c4506131c4d95b3a6c24d0c80336d3758e95110f4c7b5cb16397","affectsGlobalScope":true,"impliedFormat":1},{"version":"64ede330464b9fd5d35327c32dd2770e7474127ed09769655ebce70992af5f44","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f16a7e4deafa527ed9995a772bb380eb7d3c2c0fd4ae178c5263ed18394db2c","impliedFormat":1},{"version":"c6b4e0a02545304935ecbf7de7a8e056a31bb50939b5b321c9d50a405b5a0bba","impliedFormat":1},{"version":"fab29e6d649aa074a6b91e3bdf2bff484934a46067f6ee97a30fcd9762ae2213","impliedFormat":1},{"version":"8145e07aad6da5f23f2fcd8c8e4c5c13fb26ee986a79d03b0829b8fce152d8b2","impliedFormat":1},{"version":"e1120271ebbc9952fdc7b2dd3e145560e52e06956345e6fdf91d70ca4886464f","impliedFormat":1},{"version":"814118df420c4e38fe5ae1b9a3bafb6e9c2aa40838e528cde908381867be6466","impliedFormat":1},{"version":"bcd0418abb8a5c9fe7db36a96ca75fc78455b0efab270ee89b8e49916eac5174","impliedFormat":1},{"version":"c878f74b6d10b267f6075c51ac1d8becd15b4aa6a58f79c0cfe3b24908357f60","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"125d792ec6c0c0f657d758055c494301cc5fdb327d9d9d5960b3f129aff76093","impliedFormat":1},{"version":"fbf68fc8057932b1c30107ebc37420f8d8dc4bef1253c4c2f9e141886c0df5ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"2754d8221d77c7b382096651925eb476f1066b3348da4b73fe71ced7801edada","impliedFormat":1},{"version":"7d8b16d7f33d5081beac7a657a6d13f11a72cf094cc5e37cda1b9d8c89371951","affectsGlobalScope":true,"impliedFormat":1},{"version":"f0be1b8078cd549d91f37c30c222c2a187ac1cf981d994fb476a1adc61387b14","affectsGlobalScope":true,"impliedFormat":1},{"version":"0aaed1d72199b01234152f7a60046bc947f1f37d78d182e9ae09c4289e06a592","impliedFormat":1},{"version":"5360a27d3ebca11b224d7d3e38e3e2c63f8290cb1fcf6c3610401898f8e68bc3","impliedFormat":1},{"version":"66ba1b2c3e3a3644a1011cd530fb444a96b1b2dfe2f5e837a002d41a1a799e60","impliedFormat":1},{"version":"7e514f5b852fdbc166b539fdd1f4e9114f29911592a5eb10a94bb3a13ccac3c4","impliedFormat":1},{"version":"7d6ff413e198d25639f9f01f16673e7df4e4bd2875a42455afd4ecc02ef156da","affectsGlobalScope":true,"impliedFormat":1},{"version":"217941ef5c6fd81b77cd0073c94019a98e20777eaac6c4326156bf6b021ed547","affectsGlobalScope":true,"impliedFormat":1},{"version":"f689c4237b70ae6be5f0e4180e8833f34ace40529d1acc0676ab8fb8f70457d7","impliedFormat":1},{"version":"b02784111b3fc9c38590cd4339ff8718f9329a6f4d3fd66e9744a1dcd1d7e191","impliedFormat":1},{"version":"ac5ed35e649cdd8143131964336ab9076937fa91802ec760b3ea63b59175c10a","impliedFormat":1},{"version":"63b05afa6121657f25e99e1519596b0826cda026f09372c9100dfe21417f4bd6","affectsGlobalScope":true,"impliedFormat":1},{"version":"78dc0513cc4f1642906b74dda42146bcbd9df7401717d6e89ea6d72d12ecb539","impliedFormat":1},{"version":"ad90122e1cb599b3bc06a11710eb5489101be678f2920f2322b0ac3e195af78d","impliedFormat":1},{"version":"d3f2d715f57df3f04bf7b16dde01dec10366f64fce44503c92b8f78f614c1769","impliedFormat":1},{"version":"b78cd10245a90e27e62d0558564f5d9a16576294eee724a59ae21b91f9269e4a","impliedFormat":1},{"version":"936eb43a381712a8ec1249f2afc819f6fc7ca68f10dfec71762b428dfdc53bf1","impliedFormat":1},{"version":"2f5747b1508ccf83fad0c251ba1e5da2f5a30b78b09ffa1cfaf633045160afed","impliedFormat":1},{"version":"86ea91bfa7fef1eeb958056f30f1db4e0680bc9b5132e5e9d6e9cfd773c0c4fd","affectsGlobalScope":true,"impliedFormat":1},{"version":"b71c603a539078a5e3a039b20f2b0a0d1708967530cf97dec8850a9ca45baa2b","impliedFormat":1},{"version":"0e13570a7e86c6d83dd92e81758a930f63747483e2cd34ef36fcdb47d1f9726a","impliedFormat":1},{"version":"104c67f0da1bdf0d94865419247e20eded83ce7f9911a1aa75fc675c077ca66e","impliedFormat":1},{"version":"cc0d0b339f31ce0ab3b7a5b714d8e578ce698f1e13d7f8c60bfb766baeb1d35c","impliedFormat":1},{"version":"d26a79f97f25eb1c5fc36a8552e4decc7ad11104a016d31b1307c3afaf48feb1","impliedFormat":1}],"root":[[60,66]],"options":{"composite":true,"declaration":true,"declarationMap":true,"module":199,"noImplicitOverride":true,"noUncheckedIndexedAccess":false,"outDir":"./","skipLibCheck":true,"sourceMap":true,"strict":true,"target":9},"referencedMap":[[179,1],[178,2],[71,3],[70,4],[69,5],[67,6],[175,7],[180,8],[176,6],[68,6],[171,6],[117,9],[118,9],[119,10],[77,11],[120,12],[121,13],[122,14],[72,6],[75,15],[73,6],[74,6],[123,16],[124,17],[125,18],[126,19],[127,20],[128,21],[129,21],[131,22],[130,23],[132,24],[133,25],[134,26],[116,27],[76,6],[135,28],[136,29],[137,30],[170,31],[138,32],[139,33],[140,34],[141,35],[142,36],[143,37],[144,38],[145,39],[146,40],[147,41],[148,41],[149,42],[150,6],[151,6],[152,43],[154,44],[153,45],[155,46],[156,47],[157,48],[158,49],[159,50],[160,51],[161,52],[162,53],[163,54],[164,55],[165,56],[166,57],[167,58],[168,59],[169,60],[173,6],[174,6],[172,61],[177,62],[78,6],[58,6],[59,6],[10,6],[11,6],[13,6],[12,6],[2,6],[14,6],[15,6],[16,6],[17,6],[18,6],[19,6],[20,6],[21,6],[3,6],[22,6],[23,6],[4,6],[24,6],[28,6],[25,6],[26,6],[27,6],[29,6],[30,6],[31,6],[5,6],[32,6],[33,6],[34,6],[35,6],[6,6],[39,6],[36,6],[37,6],[38,6],[40,6],[7,6],[41,6],[46,6],[47,6],[42,6],[43,6],[44,6],[45,6],[8,6],[51,6],[48,6],[49,6],[50,6],[52,6],[9,6],[53,6],[54,6],[55,6],[57,6],[56,6],[1,6],[94,63],[104,64],[93,63],[114,65],[85,66],[84,67],[113,68],[107,69],[112,70],[87,71],[101,72],[86,73],[110,74],[82,75],[81,68],[111,76],[83,77],[88,78],[89,6],[92,78],[79,6],[115,79],[105,80],[96,81],[97,82],[99,83],[95,84],[98,85],[108,68],[90,86],[91,87],[100,88],[80,89],[103,80],[102,78],[106,6],[109,90],[65,91],[61,92],[60,6],[62,6],[63,93],[64,94],[66,93]],"latestChangedDtsFile":"./src/types.d.ts","version":"5.7.3"}
package/package.json ADDED
@@ -0,0 +1,37 @@
1
+ {
2
+ "name": "@forgerock/sdk-utilities",
3
+ "version": "0.0.0-beta-20250506165419",
4
+ "private": false,
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "git+https://github.com/ForgeRock/ping-javascript-sdk.git",
8
+ "directory": "packages/sdk-utilities"
9
+ },
10
+ "sideEffects": false,
11
+ "type": "module",
12
+ "exports": {
13
+ ".": {
14
+ "types": "./dist/src/index.d.ts",
15
+ "import": "./dist/src/index.js",
16
+ "default": "./dist/src/index.js"
17
+ },
18
+ "./package.json": "./package.json",
19
+ "./types": "./dist/src/types.js"
20
+ },
21
+ "main": "./dist/src/index.js",
22
+ "module": "./dist/src/index.js",
23
+ "files": [
24
+ "dist"
25
+ ],
26
+ "dependencies": {},
27
+ "nx": {
28
+ "tags": [
29
+ "scope:sdk-utilities"
30
+ ]
31
+ },
32
+ "scripts": {
33
+ "lint": "pnpm nx nxLint",
34
+ "test": "pnpm nx nxTest",
35
+ "test:watch": "pnpm nx nxTest --watch"
36
+ }
37
+ }