@hantera/portal-host 0.0.0
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/dist/cjs/authorize.d.ts +8 -0
- package/dist/cjs/authorize.d.ts.map +1 -0
- package/dist/cjs/authorize.js +114 -0
- package/dist/cjs/authorize.js.map +1 -0
- package/dist/cjs/entry.d.ts +35 -0
- package/dist/cjs/entry.d.ts.map +1 -0
- package/dist/cjs/entry.js +224 -0
- package/dist/cjs/entry.js.map +1 -0
- package/dist/esm/authorize.js +110 -0
- package/dist/esm/authorize.js.map +1 -0
- package/dist/esm/entry.js +218 -0
- package/dist/esm/entry.js.map +1 -0
- package/dist/tsconfig.cjs.tsbuildinfo +1 -0
- package/dist/tsconfig.esm.tsbuildinfo +1 -0
- package/dist/types/authorize.d.ts +8 -0
- package/dist/types/authorize.d.ts.map +1 -0
- package/dist/types/entry.d.ts +35 -0
- package/dist/types/entry.d.ts.map +1 -0
- package/package.json +28 -0
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { HostToken } from "@hantera/portal-contracts";
|
|
2
|
+
/**
|
|
3
|
+
* Generates the authorize URI pointing to the tenant's sign-in page.
|
|
4
|
+
* @param hostname
|
|
5
|
+
*/
|
|
6
|
+
export declare function authorize(clientId: string, hostname: string, redirectUri: string): Promise<string>;
|
|
7
|
+
export declare function handleAuthorizationResponse(code: string, state: string): Promise<HostToken>;
|
|
8
|
+
//# sourceMappingURL=authorize.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"authorize.d.ts","sourceRoot":"","sources":["../../src/authorize.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,SAAS,EAAC,MAAM,2BAA2B,CAAC;AAyCpD;;;GAGG;AACH,wBAAsB,SAAS,CAAC,QAAQ,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,EAAE,WAAW,EAAE,MAAM,mBAmBtF;AAED,wBAAsB,2BAA2B,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,sBAyC5E"}
|
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.authorize = authorize;
|
|
4
|
+
exports.handleAuthorizationResponse = handleAuthorizationResponse;
|
|
5
|
+
const storageKey = 'authorization';
|
|
6
|
+
const store = {};
|
|
7
|
+
function getItem(key) {
|
|
8
|
+
if (typeof window === 'undefined') {
|
|
9
|
+
// If node, we store in memory
|
|
10
|
+
return store[storageKey];
|
|
11
|
+
}
|
|
12
|
+
else {
|
|
13
|
+
return JSON.parse(sessionStorage.getItem(key));
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
function setItem(key, value) {
|
|
17
|
+
if (typeof window === 'undefined') {
|
|
18
|
+
// If node, we store in memory
|
|
19
|
+
store[key] = value;
|
|
20
|
+
}
|
|
21
|
+
else {
|
|
22
|
+
sessionStorage.setItem(key, JSON.stringify(value));
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
function removeItem(key) {
|
|
26
|
+
if (typeof window === 'undefined') {
|
|
27
|
+
// If node, we store in memory
|
|
28
|
+
delete store[key];
|
|
29
|
+
}
|
|
30
|
+
else {
|
|
31
|
+
sessionStorage.removeItem(key);
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
/**
|
|
35
|
+
* Generates the authorize URI pointing to the tenant's sign-in page.
|
|
36
|
+
* @param hostname
|
|
37
|
+
*/
|
|
38
|
+
async function authorize(clientId, hostname, redirectUri) {
|
|
39
|
+
// Generate random code verifier
|
|
40
|
+
const codeVerifier = Array.from({ length: 64 }, () => Math.floor(Math.random() * 256).toString(16)).join('');
|
|
41
|
+
const codeChallenge = base64UrlEncode(await sha256(codeVerifier));
|
|
42
|
+
const codeChallengeMethod = 'S256';
|
|
43
|
+
const state = Array.from({ length: 64 }, () => Math.floor(Math.random() * 256).toString(16)).join('');
|
|
44
|
+
const scope = 'graph:* actors:* rules:* components:* registry:* apps:* iam:* me:* legacy:* portal:*'; // TODO Remove legacy scope when no longer needed
|
|
45
|
+
setItem(storageKey, {
|
|
46
|
+
clientId,
|
|
47
|
+
codeVerifier,
|
|
48
|
+
state,
|
|
49
|
+
hostname,
|
|
50
|
+
redirectUri
|
|
51
|
+
});
|
|
52
|
+
return `${getServerBaseUrl(hostname)}/oauth/authorize?client_id=${clientId}&scope=${scope}&response_type=code&code_challenge=${codeChallenge}&code_challenge_method=${codeChallengeMethod}&state=${state}&redirect_uri=${encodeURIComponent(redirectUri)}`;
|
|
53
|
+
}
|
|
54
|
+
async function handleAuthorizationResponse(code, state) {
|
|
55
|
+
const authorization = getItem('authorization');
|
|
56
|
+
removeItem('authorization');
|
|
57
|
+
if (state !== authorization.state) {
|
|
58
|
+
throw new Error('Invalid state');
|
|
59
|
+
}
|
|
60
|
+
// Retrieve token
|
|
61
|
+
const payload = new URLSearchParams();
|
|
62
|
+
payload.append('grant_type', 'authorization_code');
|
|
63
|
+
payload.append('client_id', authorization.clientId);
|
|
64
|
+
payload.append('code', code);
|
|
65
|
+
payload.append('code_verifier', authorization.codeVerifier);
|
|
66
|
+
payload.append('redirect_uri', authorization.redirectUri);
|
|
67
|
+
const tokenResponse = await fetch(getServerBaseUrl(authorization.hostname) + '/oauth/token', {
|
|
68
|
+
method: 'POST',
|
|
69
|
+
headers: {
|
|
70
|
+
'Content-Type': 'application/x-www-form-urlencoded'
|
|
71
|
+
},
|
|
72
|
+
body: payload.toString(),
|
|
73
|
+
});
|
|
74
|
+
if (!tokenResponse.ok) {
|
|
75
|
+
throw new Error('Failed to retrieve token');
|
|
76
|
+
}
|
|
77
|
+
var data = await tokenResponse.json();
|
|
78
|
+
return {
|
|
79
|
+
sessionId: data.session_id,
|
|
80
|
+
accessToken: data.access_token,
|
|
81
|
+
refreshToken: data.refresh_token,
|
|
82
|
+
expiresAt: Math.floor(Date.now() / 1000) + data.expires_in,
|
|
83
|
+
tenantId: data.tenant_id,
|
|
84
|
+
tenantName: data.tenant_name,
|
|
85
|
+
legacyMode: data.legacy_mode,
|
|
86
|
+
codeVerifier: authorization.codeVerifier
|
|
87
|
+
};
|
|
88
|
+
}
|
|
89
|
+
function getServerBaseUrl(hostname) {
|
|
90
|
+
if (hostname === 'localhost') {
|
|
91
|
+
return 'http://localhost:3300';
|
|
92
|
+
}
|
|
93
|
+
else {
|
|
94
|
+
// TODO If hostname is not absoute (https://) then use cloud lookup service to find the correct hostname
|
|
95
|
+
return `https://${hostname}.core.ams.hantera.cloud`;
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
function base64UrlEncode(buffer) {
|
|
99
|
+
const byteArray = new Uint8Array(buffer);
|
|
100
|
+
let binary = '';
|
|
101
|
+
for (let i = 0; i < byteArray.byteLength; i++) {
|
|
102
|
+
binary += String.fromCharCode(byteArray[i]);
|
|
103
|
+
}
|
|
104
|
+
const base64String = btoa(binary);
|
|
105
|
+
// Replace characters for Base64URL encoding
|
|
106
|
+
return base64String.replace(/\+/g, '-').replace(/\//g, '_').replace(/=+$/, '');
|
|
107
|
+
}
|
|
108
|
+
async function sha256(codeVerifier) {
|
|
109
|
+
const encoder = new TextEncoder();
|
|
110
|
+
const data = encoder.encode(codeVerifier);
|
|
111
|
+
const hashBuffer = await crypto.subtle.digest('SHA-256', data);
|
|
112
|
+
return hashBuffer;
|
|
113
|
+
}
|
|
114
|
+
//# sourceMappingURL=authorize.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"authorize.js","sourceRoot":"","sources":["../../src/authorize.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { HostToken, User } from "@hantera/portal-contracts";
|
|
2
|
+
export interface HostClientOptions {
|
|
3
|
+
host: string;
|
|
4
|
+
path?: string;
|
|
5
|
+
theme?: 'light' | 'dark';
|
|
6
|
+
tokenGetter: () => HostToken | undefined;
|
|
7
|
+
tokenSetter: (token: HostToken) => void;
|
|
8
|
+
onExpiredSession?: () => void;
|
|
9
|
+
/**
|
|
10
|
+
* Called when user data has been loaded or updated
|
|
11
|
+
* @param user
|
|
12
|
+
* @returns
|
|
13
|
+
*/
|
|
14
|
+
onUserLoaded?: (user: User) => void;
|
|
15
|
+
onNavigated?: (path: string) => void;
|
|
16
|
+
onProcessBegin?: (id: string, description: string) => void;
|
|
17
|
+
onProcessFail?: (id: string, reason: string) => void;
|
|
18
|
+
onProcessSuccess?: (id: string, description?: string) => void;
|
|
19
|
+
/**
|
|
20
|
+
* Called when Portal encountered a general error to be displayed to the user
|
|
21
|
+
* @param reason for the error
|
|
22
|
+
*/
|
|
23
|
+
onError?: (id: string, description: string, reason?: string) => void;
|
|
24
|
+
}
|
|
25
|
+
export interface HostInstance {
|
|
26
|
+
attach(target: Element): void;
|
|
27
|
+
detach(): void;
|
|
28
|
+
open(path: string): void;
|
|
29
|
+
destroy(): void;
|
|
30
|
+
reload(): void;
|
|
31
|
+
setTheme(theme: 'system' | 'light' | 'dark'): void;
|
|
32
|
+
}
|
|
33
|
+
export { authorize, handleAuthorizationResponse } from './authorize';
|
|
34
|
+
export default function createHost(options: HostClientOptions): Promise<HostInstance | undefined>;
|
|
35
|
+
//# sourceMappingURL=entry.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"entry.d.ts","sourceRoot":"","sources":["../../src/entry.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,SAAS,EAAuB,IAAI,EAAC,MAAM,2BAA2B,CAAC;AAI/E,MAAM,WAAW,iBAAiB;IAChC,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,OAAO,GAAG,MAAM,CAAC;IACzB,WAAW,EAAE,MAAM,SAAS,GAAG,SAAS,CAAC;IACzC,WAAW,EAAE,CAAC,KAAK,EAAE,SAAS,KAAK,IAAI,CAAC;IACxC,gBAAgB,CAAC,EAAE,MAAM,IAAI,CAAC;IAE9B;;;;OAIG;IACH,YAAY,CAAC,EAAE,CAAC,IAAI,EAAE,IAAI,KAAK,IAAI,CAAC;IACpC,WAAW,CAAC,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI,CAAC;IAErC,cAAc,CAAC,EAAE,CAAC,EAAE,EAAE,MAAM,EAAE,WAAW,EAAE,MAAM,KAAK,IAAI,CAAC;IAC3D,aAAa,CAAC,EAAE,CAAC,EAAE,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,KAAK,IAAI,CAAC;IACrD,gBAAgB,CAAC,EAAE,CAAC,EAAE,EAAE,MAAM,EAAE,WAAW,CAAC,EAAE,MAAM,KAAK,IAAI,CAAC;IAC9D;;;OAGG;IACH,OAAO,CAAC,EAAE,CAAC,EAAE,EAAE,MAAM,EAAE,WAAW,EAAE,MAAM,EAAE,MAAM,CAAC,EAAE,MAAM,KAAK,IAAI,CAAC;CACtE;AAED,MAAM,WAAW,YAAY;IAC3B,MAAM,CAAC,MAAM,EAAE,OAAO,GAAG,IAAI,CAAC;IAC9B,MAAM,IAAI,IAAI,CAAC;IACf,IAAI,CAAC,IAAI,EAAE,MAAM,GAAG,IAAI,CAAC;IACzB,OAAO,IAAI,IAAI,CAAC;IAChB,MAAM,IAAI,IAAI,CAAC;IACf,QAAQ,CAAC,KAAK,EAAE,QAAQ,GAAG,OAAO,GAAG,MAAM,GAAG,IAAI,CAAC;CACpD;AAED,OAAO,EAAE,SAAS,EAAE,2BAA2B,EAAE,MAAM,aAAa,CAAC;AAErE,wBAA8B,UAAU,CAAC,OAAO,EAAE,iBAAiB,qCAuOlE"}
|
|
@@ -0,0 +1,224 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.handleAuthorizationResponse = exports.authorize = void 0;
|
|
4
|
+
exports.default = createHost;
|
|
5
|
+
const refreshBufferSeconds = 60;
|
|
6
|
+
var authorize_1 = require("./authorize");
|
|
7
|
+
Object.defineProperty(exports, "authorize", { enumerable: true, get: function () { return authorize_1.authorize; } });
|
|
8
|
+
Object.defineProperty(exports, "handleAuthorizationResponse", { enumerable: true, get: function () { return authorize_1.handleAuthorizationResponse; } });
|
|
9
|
+
async function createHost(options) {
|
|
10
|
+
let frame = null;
|
|
11
|
+
let clientPort = null;
|
|
12
|
+
const state = {
|
|
13
|
+
...options,
|
|
14
|
+
};
|
|
15
|
+
let portalUrl = `https://${state.host}.portal.ams.hantera.cloud`;
|
|
16
|
+
let coreUrl = `https://${state.host}.core.ams.hantera.cloud`;
|
|
17
|
+
if (state.host === 'localhost') {
|
|
18
|
+
portalUrl = 'https://localhost:3001';
|
|
19
|
+
coreUrl = 'http://localhost:3300';
|
|
20
|
+
}
|
|
21
|
+
let token = state.tokenGetter();
|
|
22
|
+
if (!token) {
|
|
23
|
+
state.onExpiredSession?.();
|
|
24
|
+
return;
|
|
25
|
+
}
|
|
26
|
+
let tokenExpiresIn = token.expiresAt - (Date.now() / 1000);
|
|
27
|
+
let refreshTimeout = null;
|
|
28
|
+
if (tokenExpiresIn < refreshBufferSeconds) {
|
|
29
|
+
await refreshToken();
|
|
30
|
+
}
|
|
31
|
+
else {
|
|
32
|
+
refreshTimeout = setTimeout(refreshToken, (tokenExpiresIn - refreshBufferSeconds) * 1000);
|
|
33
|
+
}
|
|
34
|
+
let attachmentTarget;
|
|
35
|
+
const hostInstance = {
|
|
36
|
+
attach(target) {
|
|
37
|
+
if (frame) {
|
|
38
|
+
console.error('Host already attached');
|
|
39
|
+
return;
|
|
40
|
+
}
|
|
41
|
+
if (!target) {
|
|
42
|
+
console.error('No host target specified');
|
|
43
|
+
return;
|
|
44
|
+
}
|
|
45
|
+
attachmentTarget = target;
|
|
46
|
+
frame = document.createElement("iframe");
|
|
47
|
+
frame.style.border = 'none';
|
|
48
|
+
if (sessionStorage.getItem('appDev')) {
|
|
49
|
+
frame.src = (portalUrl || '') + '/index-appdev.html';
|
|
50
|
+
}
|
|
51
|
+
else {
|
|
52
|
+
frame.src = (portalUrl || '');
|
|
53
|
+
}
|
|
54
|
+
frame.setAttribute('sandbox', 'allow-forms allow-popups allow-popups-to-escape-sandbox allow-same-origin allow-scripts allow-downloads allow-storage-access-by-user-activation');
|
|
55
|
+
frame.setAttribute('allow', 'clipboard-write');
|
|
56
|
+
frame.name = '$hantera$host';
|
|
57
|
+
window?.addEventListener('message', handshakeHandler);
|
|
58
|
+
function handshakeHandler(event) {
|
|
59
|
+
if (event.data.type === 'handshake') {
|
|
60
|
+
window?.removeEventListener('message', handshakeHandler);
|
|
61
|
+
if (clientPort !== null) {
|
|
62
|
+
throw new Error('Channel already initialized');
|
|
63
|
+
}
|
|
64
|
+
clientPort = event.ports[0];
|
|
65
|
+
clientPort.onmessage = handleMessage;
|
|
66
|
+
clientPort.postMessage({
|
|
67
|
+
type: 'handshakeResponse',
|
|
68
|
+
path: state.path,
|
|
69
|
+
token: getClientToken(),
|
|
70
|
+
theme: state.theme,
|
|
71
|
+
});
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
target.appendChild(frame);
|
|
75
|
+
},
|
|
76
|
+
detach() {
|
|
77
|
+
clientPort?.close();
|
|
78
|
+
clientPort = null;
|
|
79
|
+
attachmentTarget = undefined;
|
|
80
|
+
frame?.remove();
|
|
81
|
+
frame = null;
|
|
82
|
+
},
|
|
83
|
+
reload() {
|
|
84
|
+
if (!attachmentTarget) {
|
|
85
|
+
return;
|
|
86
|
+
}
|
|
87
|
+
const target = attachmentTarget;
|
|
88
|
+
this.detach();
|
|
89
|
+
this.attach(target);
|
|
90
|
+
},
|
|
91
|
+
open(path) {
|
|
92
|
+
post({
|
|
93
|
+
type: 'navigate',
|
|
94
|
+
path: path,
|
|
95
|
+
});
|
|
96
|
+
},
|
|
97
|
+
destroy() {
|
|
98
|
+
this.detach();
|
|
99
|
+
clearTimeout(refreshTimeout);
|
|
100
|
+
},
|
|
101
|
+
setTheme(theme) {
|
|
102
|
+
post({
|
|
103
|
+
type: 'setTheme',
|
|
104
|
+
theme: theme,
|
|
105
|
+
});
|
|
106
|
+
},
|
|
107
|
+
};
|
|
108
|
+
return hostInstance;
|
|
109
|
+
function getClientToken() {
|
|
110
|
+
if (!token) {
|
|
111
|
+
return {
|
|
112
|
+
accessToken: '',
|
|
113
|
+
sessionId: '',
|
|
114
|
+
tenantId: '',
|
|
115
|
+
tenantName: '',
|
|
116
|
+
legacyMode: false,
|
|
117
|
+
};
|
|
118
|
+
}
|
|
119
|
+
return {
|
|
120
|
+
accessToken: token.accessToken,
|
|
121
|
+
sessionId: token.sessionId,
|
|
122
|
+
tenantId: token.tenantId,
|
|
123
|
+
tenantName: token.tenantName,
|
|
124
|
+
legacyMode: token.legacyMode,
|
|
125
|
+
};
|
|
126
|
+
}
|
|
127
|
+
async function refreshToken() {
|
|
128
|
+
if (!token) {
|
|
129
|
+
return;
|
|
130
|
+
}
|
|
131
|
+
const payload = new URLSearchParams();
|
|
132
|
+
payload.append('grant_type', 'refresh_token');
|
|
133
|
+
payload.append('refresh_token', token.refreshToken);
|
|
134
|
+
payload.append('code_verifier', token.codeVerifier);
|
|
135
|
+
var response = await fetch(`${coreUrl}/oauth/token`, {
|
|
136
|
+
method: 'POST',
|
|
137
|
+
headers: {
|
|
138
|
+
'Content-Type': 'application/x-www-form-urlencoded',
|
|
139
|
+
},
|
|
140
|
+
body: payload.toString(),
|
|
141
|
+
});
|
|
142
|
+
if (!response.ok) {
|
|
143
|
+
if (response.status === 400) {
|
|
144
|
+
// Refresh denied. Do nothing. The session will expire eventually
|
|
145
|
+
return;
|
|
146
|
+
}
|
|
147
|
+
// Retry in 10 seconds:
|
|
148
|
+
refreshTimeout = setTimeout(refreshToken, 10_000);
|
|
149
|
+
return;
|
|
150
|
+
}
|
|
151
|
+
const data = await response.json();
|
|
152
|
+
token = {
|
|
153
|
+
sessionId: data.session_id,
|
|
154
|
+
accessToken: data.access_token,
|
|
155
|
+
refreshToken: data.refresh_token,
|
|
156
|
+
expiresAt: Math.floor(Date.now() / 1000) + data.expires_in,
|
|
157
|
+
tenantId: data.tenant_id,
|
|
158
|
+
tenantName: data.tenant_name,
|
|
159
|
+
codeVerifier: token.codeVerifier,
|
|
160
|
+
legacyMode: token.legacyMode,
|
|
161
|
+
};
|
|
162
|
+
state.tokenSetter(token);
|
|
163
|
+
if (frame) {
|
|
164
|
+
post({
|
|
165
|
+
type: 'tokenRefreshed',
|
|
166
|
+
token: getClientToken(),
|
|
167
|
+
});
|
|
168
|
+
}
|
|
169
|
+
tokenExpiresIn = token.expiresAt - (Date.now() / 1000);
|
|
170
|
+
refreshTimeout = setTimeout(refreshToken, (tokenExpiresIn - refreshBufferSeconds) * 1000);
|
|
171
|
+
}
|
|
172
|
+
function handleMessage(message) {
|
|
173
|
+
if (!frame || frame.src.indexOf(message.origin) !== 0) {
|
|
174
|
+
return;
|
|
175
|
+
}
|
|
176
|
+
let data;
|
|
177
|
+
if (typeof message.data === 'string') {
|
|
178
|
+
data = JSON.parse(message.data);
|
|
179
|
+
}
|
|
180
|
+
else if (message.data.type) {
|
|
181
|
+
data = message.data;
|
|
182
|
+
}
|
|
183
|
+
else {
|
|
184
|
+
return;
|
|
185
|
+
}
|
|
186
|
+
if (data.type === 'expiredSession') {
|
|
187
|
+
state.onExpiredSession?.();
|
|
188
|
+
}
|
|
189
|
+
else if (data.type === 'navigated') {
|
|
190
|
+
state.onNavigated?.(data.path);
|
|
191
|
+
}
|
|
192
|
+
else if (data.type === 'processBegin') {
|
|
193
|
+
state.onProcessBegin?.(data['id'], data['description']);
|
|
194
|
+
}
|
|
195
|
+
else if (data.type === 'processFail') {
|
|
196
|
+
state.onProcessFail?.(data['id'], data['reason']);
|
|
197
|
+
}
|
|
198
|
+
else if (data.type === 'processComplete') {
|
|
199
|
+
state.onProcessSuccess?.(data['id'], data['description']);
|
|
200
|
+
}
|
|
201
|
+
else if (data.type === 'error') {
|
|
202
|
+
state.onError?.(data['id'], data['description'], data['reason']);
|
|
203
|
+
}
|
|
204
|
+
else if (data.type === 'enableAppDev') {
|
|
205
|
+
sessionStorage.setItem('appDev', 'true');
|
|
206
|
+
hostInstance.reload();
|
|
207
|
+
}
|
|
208
|
+
else if (data.type === 'disableAppDev') {
|
|
209
|
+
sessionStorage.removeItem('appDev');
|
|
210
|
+
hostInstance.reload();
|
|
211
|
+
}
|
|
212
|
+
else if (data.type === 'user') {
|
|
213
|
+
state.onUserLoaded?.(data.user);
|
|
214
|
+
}
|
|
215
|
+
}
|
|
216
|
+
function post(message) {
|
|
217
|
+
if (!frame || !clientPort) {
|
|
218
|
+
console.error('Attempted to post message to Hantera App but it was not attached');
|
|
219
|
+
return;
|
|
220
|
+
}
|
|
221
|
+
clientPort.postMessage(message);
|
|
222
|
+
}
|
|
223
|
+
}
|
|
224
|
+
//# sourceMappingURL=entry.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"entry.js","sourceRoot":"","sources":["../../src/entry.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
const storageKey = 'authorization';
|
|
2
|
+
const store = {};
|
|
3
|
+
function getItem(key) {
|
|
4
|
+
if (typeof window === 'undefined') {
|
|
5
|
+
// If node, we store in memory
|
|
6
|
+
return store[storageKey];
|
|
7
|
+
}
|
|
8
|
+
else {
|
|
9
|
+
return JSON.parse(sessionStorage.getItem(key));
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
function setItem(key, value) {
|
|
13
|
+
if (typeof window === 'undefined') {
|
|
14
|
+
// If node, we store in memory
|
|
15
|
+
store[key] = value;
|
|
16
|
+
}
|
|
17
|
+
else {
|
|
18
|
+
sessionStorage.setItem(key, JSON.stringify(value));
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
function removeItem(key) {
|
|
22
|
+
if (typeof window === 'undefined') {
|
|
23
|
+
// If node, we store in memory
|
|
24
|
+
delete store[key];
|
|
25
|
+
}
|
|
26
|
+
else {
|
|
27
|
+
sessionStorage.removeItem(key);
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
/**
|
|
31
|
+
* Generates the authorize URI pointing to the tenant's sign-in page.
|
|
32
|
+
* @param hostname
|
|
33
|
+
*/
|
|
34
|
+
export async function authorize(clientId, hostname, redirectUri) {
|
|
35
|
+
// Generate random code verifier
|
|
36
|
+
const codeVerifier = Array.from({ length: 64 }, () => Math.floor(Math.random() * 256).toString(16)).join('');
|
|
37
|
+
const codeChallenge = base64UrlEncode(await sha256(codeVerifier));
|
|
38
|
+
const codeChallengeMethod = 'S256';
|
|
39
|
+
const state = Array.from({ length: 64 }, () => Math.floor(Math.random() * 256).toString(16)).join('');
|
|
40
|
+
const scope = 'graph:* actors:* rules:* components:* registry:* apps:* iam:* me:* legacy:* portal:*'; // TODO Remove legacy scope when no longer needed
|
|
41
|
+
setItem(storageKey, {
|
|
42
|
+
clientId,
|
|
43
|
+
codeVerifier,
|
|
44
|
+
state,
|
|
45
|
+
hostname,
|
|
46
|
+
redirectUri
|
|
47
|
+
});
|
|
48
|
+
return `${getServerBaseUrl(hostname)}/oauth/authorize?client_id=${clientId}&scope=${scope}&response_type=code&code_challenge=${codeChallenge}&code_challenge_method=${codeChallengeMethod}&state=${state}&redirect_uri=${encodeURIComponent(redirectUri)}`;
|
|
49
|
+
}
|
|
50
|
+
export async function handleAuthorizationResponse(code, state) {
|
|
51
|
+
const authorization = getItem('authorization');
|
|
52
|
+
removeItem('authorization');
|
|
53
|
+
if (state !== authorization.state) {
|
|
54
|
+
throw new Error('Invalid state');
|
|
55
|
+
}
|
|
56
|
+
// Retrieve token
|
|
57
|
+
const payload = new URLSearchParams();
|
|
58
|
+
payload.append('grant_type', 'authorization_code');
|
|
59
|
+
payload.append('client_id', authorization.clientId);
|
|
60
|
+
payload.append('code', code);
|
|
61
|
+
payload.append('code_verifier', authorization.codeVerifier);
|
|
62
|
+
payload.append('redirect_uri', authorization.redirectUri);
|
|
63
|
+
const tokenResponse = await fetch(getServerBaseUrl(authorization.hostname) + '/oauth/token', {
|
|
64
|
+
method: 'POST',
|
|
65
|
+
headers: {
|
|
66
|
+
'Content-Type': 'application/x-www-form-urlencoded'
|
|
67
|
+
},
|
|
68
|
+
body: payload.toString(),
|
|
69
|
+
});
|
|
70
|
+
if (!tokenResponse.ok) {
|
|
71
|
+
throw new Error('Failed to retrieve token');
|
|
72
|
+
}
|
|
73
|
+
var data = await tokenResponse.json();
|
|
74
|
+
return {
|
|
75
|
+
sessionId: data.session_id,
|
|
76
|
+
accessToken: data.access_token,
|
|
77
|
+
refreshToken: data.refresh_token,
|
|
78
|
+
expiresAt: Math.floor(Date.now() / 1000) + data.expires_in,
|
|
79
|
+
tenantId: data.tenant_id,
|
|
80
|
+
tenantName: data.tenant_name,
|
|
81
|
+
legacyMode: data.legacy_mode,
|
|
82
|
+
codeVerifier: authorization.codeVerifier
|
|
83
|
+
};
|
|
84
|
+
}
|
|
85
|
+
function getServerBaseUrl(hostname) {
|
|
86
|
+
if (hostname === 'localhost') {
|
|
87
|
+
return 'http://localhost:3300';
|
|
88
|
+
}
|
|
89
|
+
else {
|
|
90
|
+
// TODO If hostname is not absoute (https://) then use cloud lookup service to find the correct hostname
|
|
91
|
+
return `https://${hostname}.core.ams.hantera.cloud`;
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
function base64UrlEncode(buffer) {
|
|
95
|
+
const byteArray = new Uint8Array(buffer);
|
|
96
|
+
let binary = '';
|
|
97
|
+
for (let i = 0; i < byteArray.byteLength; i++) {
|
|
98
|
+
binary += String.fromCharCode(byteArray[i]);
|
|
99
|
+
}
|
|
100
|
+
const base64String = btoa(binary);
|
|
101
|
+
// Replace characters for Base64URL encoding
|
|
102
|
+
return base64String.replace(/\+/g, '-').replace(/\//g, '_').replace(/=+$/, '');
|
|
103
|
+
}
|
|
104
|
+
async function sha256(codeVerifier) {
|
|
105
|
+
const encoder = new TextEncoder();
|
|
106
|
+
const data = encoder.encode(codeVerifier);
|
|
107
|
+
const hashBuffer = await crypto.subtle.digest('SHA-256', data);
|
|
108
|
+
return hashBuffer;
|
|
109
|
+
}
|
|
110
|
+
//# sourceMappingURL=authorize.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"authorize.js","sourceRoot":"","sources":["../../src/authorize.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,218 @@
|
|
|
1
|
+
const refreshBufferSeconds = 60;
|
|
2
|
+
export { authorize, handleAuthorizationResponse } from './authorize';
|
|
3
|
+
export default async function createHost(options) {
|
|
4
|
+
let frame = null;
|
|
5
|
+
let clientPort = null;
|
|
6
|
+
const state = {
|
|
7
|
+
...options,
|
|
8
|
+
};
|
|
9
|
+
let portalUrl = `https://${state.host}.portal.ams.hantera.cloud`;
|
|
10
|
+
let coreUrl = `https://${state.host}.core.ams.hantera.cloud`;
|
|
11
|
+
if (state.host === 'localhost') {
|
|
12
|
+
portalUrl = 'https://localhost:3001';
|
|
13
|
+
coreUrl = 'http://localhost:3300';
|
|
14
|
+
}
|
|
15
|
+
let token = state.tokenGetter();
|
|
16
|
+
if (!token) {
|
|
17
|
+
state.onExpiredSession?.();
|
|
18
|
+
return;
|
|
19
|
+
}
|
|
20
|
+
let tokenExpiresIn = token.expiresAt - (Date.now() / 1000);
|
|
21
|
+
let refreshTimeout = null;
|
|
22
|
+
if (tokenExpiresIn < refreshBufferSeconds) {
|
|
23
|
+
await refreshToken();
|
|
24
|
+
}
|
|
25
|
+
else {
|
|
26
|
+
refreshTimeout = setTimeout(refreshToken, (tokenExpiresIn - refreshBufferSeconds) * 1000);
|
|
27
|
+
}
|
|
28
|
+
let attachmentTarget;
|
|
29
|
+
const hostInstance = {
|
|
30
|
+
attach(target) {
|
|
31
|
+
if (frame) {
|
|
32
|
+
console.error('Host already attached');
|
|
33
|
+
return;
|
|
34
|
+
}
|
|
35
|
+
if (!target) {
|
|
36
|
+
console.error('No host target specified');
|
|
37
|
+
return;
|
|
38
|
+
}
|
|
39
|
+
attachmentTarget = target;
|
|
40
|
+
frame = document.createElement("iframe");
|
|
41
|
+
frame.style.border = 'none';
|
|
42
|
+
if (sessionStorage.getItem('appDev')) {
|
|
43
|
+
frame.src = (portalUrl || '') + '/index-appdev.html';
|
|
44
|
+
}
|
|
45
|
+
else {
|
|
46
|
+
frame.src = (portalUrl || '');
|
|
47
|
+
}
|
|
48
|
+
frame.setAttribute('sandbox', 'allow-forms allow-popups allow-popups-to-escape-sandbox allow-same-origin allow-scripts allow-downloads allow-storage-access-by-user-activation');
|
|
49
|
+
frame.setAttribute('allow', 'clipboard-write');
|
|
50
|
+
frame.name = '$hantera$host';
|
|
51
|
+
window?.addEventListener('message', handshakeHandler);
|
|
52
|
+
function handshakeHandler(event) {
|
|
53
|
+
if (event.data.type === 'handshake') {
|
|
54
|
+
window?.removeEventListener('message', handshakeHandler);
|
|
55
|
+
if (clientPort !== null) {
|
|
56
|
+
throw new Error('Channel already initialized');
|
|
57
|
+
}
|
|
58
|
+
clientPort = event.ports[0];
|
|
59
|
+
clientPort.onmessage = handleMessage;
|
|
60
|
+
clientPort.postMessage({
|
|
61
|
+
type: 'handshakeResponse',
|
|
62
|
+
path: state.path,
|
|
63
|
+
token: getClientToken(),
|
|
64
|
+
theme: state.theme,
|
|
65
|
+
});
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
target.appendChild(frame);
|
|
69
|
+
},
|
|
70
|
+
detach() {
|
|
71
|
+
clientPort?.close();
|
|
72
|
+
clientPort = null;
|
|
73
|
+
attachmentTarget = undefined;
|
|
74
|
+
frame?.remove();
|
|
75
|
+
frame = null;
|
|
76
|
+
},
|
|
77
|
+
reload() {
|
|
78
|
+
if (!attachmentTarget) {
|
|
79
|
+
return;
|
|
80
|
+
}
|
|
81
|
+
const target = attachmentTarget;
|
|
82
|
+
this.detach();
|
|
83
|
+
this.attach(target);
|
|
84
|
+
},
|
|
85
|
+
open(path) {
|
|
86
|
+
post({
|
|
87
|
+
type: 'navigate',
|
|
88
|
+
path: path,
|
|
89
|
+
});
|
|
90
|
+
},
|
|
91
|
+
destroy() {
|
|
92
|
+
this.detach();
|
|
93
|
+
clearTimeout(refreshTimeout);
|
|
94
|
+
},
|
|
95
|
+
setTheme(theme) {
|
|
96
|
+
post({
|
|
97
|
+
type: 'setTheme',
|
|
98
|
+
theme: theme,
|
|
99
|
+
});
|
|
100
|
+
},
|
|
101
|
+
};
|
|
102
|
+
return hostInstance;
|
|
103
|
+
function getClientToken() {
|
|
104
|
+
if (!token) {
|
|
105
|
+
return {
|
|
106
|
+
accessToken: '',
|
|
107
|
+
sessionId: '',
|
|
108
|
+
tenantId: '',
|
|
109
|
+
tenantName: '',
|
|
110
|
+
legacyMode: false,
|
|
111
|
+
};
|
|
112
|
+
}
|
|
113
|
+
return {
|
|
114
|
+
accessToken: token.accessToken,
|
|
115
|
+
sessionId: token.sessionId,
|
|
116
|
+
tenantId: token.tenantId,
|
|
117
|
+
tenantName: token.tenantName,
|
|
118
|
+
legacyMode: token.legacyMode,
|
|
119
|
+
};
|
|
120
|
+
}
|
|
121
|
+
async function refreshToken() {
|
|
122
|
+
if (!token) {
|
|
123
|
+
return;
|
|
124
|
+
}
|
|
125
|
+
const payload = new URLSearchParams();
|
|
126
|
+
payload.append('grant_type', 'refresh_token');
|
|
127
|
+
payload.append('refresh_token', token.refreshToken);
|
|
128
|
+
payload.append('code_verifier', token.codeVerifier);
|
|
129
|
+
var response = await fetch(`${coreUrl}/oauth/token`, {
|
|
130
|
+
method: 'POST',
|
|
131
|
+
headers: {
|
|
132
|
+
'Content-Type': 'application/x-www-form-urlencoded',
|
|
133
|
+
},
|
|
134
|
+
body: payload.toString(),
|
|
135
|
+
});
|
|
136
|
+
if (!response.ok) {
|
|
137
|
+
if (response.status === 400) {
|
|
138
|
+
// Refresh denied. Do nothing. The session will expire eventually
|
|
139
|
+
return;
|
|
140
|
+
}
|
|
141
|
+
// Retry in 10 seconds:
|
|
142
|
+
refreshTimeout = setTimeout(refreshToken, 10_000);
|
|
143
|
+
return;
|
|
144
|
+
}
|
|
145
|
+
const data = await response.json();
|
|
146
|
+
token = {
|
|
147
|
+
sessionId: data.session_id,
|
|
148
|
+
accessToken: data.access_token,
|
|
149
|
+
refreshToken: data.refresh_token,
|
|
150
|
+
expiresAt: Math.floor(Date.now() / 1000) + data.expires_in,
|
|
151
|
+
tenantId: data.tenant_id,
|
|
152
|
+
tenantName: data.tenant_name,
|
|
153
|
+
codeVerifier: token.codeVerifier,
|
|
154
|
+
legacyMode: token.legacyMode,
|
|
155
|
+
};
|
|
156
|
+
state.tokenSetter(token);
|
|
157
|
+
if (frame) {
|
|
158
|
+
post({
|
|
159
|
+
type: 'tokenRefreshed',
|
|
160
|
+
token: getClientToken(),
|
|
161
|
+
});
|
|
162
|
+
}
|
|
163
|
+
tokenExpiresIn = token.expiresAt - (Date.now() / 1000);
|
|
164
|
+
refreshTimeout = setTimeout(refreshToken, (tokenExpiresIn - refreshBufferSeconds) * 1000);
|
|
165
|
+
}
|
|
166
|
+
function handleMessage(message) {
|
|
167
|
+
if (!frame || frame.src.indexOf(message.origin) !== 0) {
|
|
168
|
+
return;
|
|
169
|
+
}
|
|
170
|
+
let data;
|
|
171
|
+
if (typeof message.data === 'string') {
|
|
172
|
+
data = JSON.parse(message.data);
|
|
173
|
+
}
|
|
174
|
+
else if (message.data.type) {
|
|
175
|
+
data = message.data;
|
|
176
|
+
}
|
|
177
|
+
else {
|
|
178
|
+
return;
|
|
179
|
+
}
|
|
180
|
+
if (data.type === 'expiredSession') {
|
|
181
|
+
state.onExpiredSession?.();
|
|
182
|
+
}
|
|
183
|
+
else if (data.type === 'navigated') {
|
|
184
|
+
state.onNavigated?.(data.path);
|
|
185
|
+
}
|
|
186
|
+
else if (data.type === 'processBegin') {
|
|
187
|
+
state.onProcessBegin?.(data['id'], data['description']);
|
|
188
|
+
}
|
|
189
|
+
else if (data.type === 'processFail') {
|
|
190
|
+
state.onProcessFail?.(data['id'], data['reason']);
|
|
191
|
+
}
|
|
192
|
+
else if (data.type === 'processComplete') {
|
|
193
|
+
state.onProcessSuccess?.(data['id'], data['description']);
|
|
194
|
+
}
|
|
195
|
+
else if (data.type === 'error') {
|
|
196
|
+
state.onError?.(data['id'], data['description'], data['reason']);
|
|
197
|
+
}
|
|
198
|
+
else if (data.type === 'enableAppDev') {
|
|
199
|
+
sessionStorage.setItem('appDev', 'true');
|
|
200
|
+
hostInstance.reload();
|
|
201
|
+
}
|
|
202
|
+
else if (data.type === 'disableAppDev') {
|
|
203
|
+
sessionStorage.removeItem('appDev');
|
|
204
|
+
hostInstance.reload();
|
|
205
|
+
}
|
|
206
|
+
else if (data.type === 'user') {
|
|
207
|
+
state.onUserLoaded?.(data.user);
|
|
208
|
+
}
|
|
209
|
+
}
|
|
210
|
+
function post(message) {
|
|
211
|
+
if (!frame || !clientPort) {
|
|
212
|
+
console.error('Attempted to post message to Hantera App but it was not attached');
|
|
213
|
+
return;
|
|
214
|
+
}
|
|
215
|
+
clientPort.postMessage(message);
|
|
216
|
+
}
|
|
217
|
+
}
|
|
218
|
+
//# sourceMappingURL=entry.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"entry.js","sourceRoot":"","sources":["../../src/entry.ts"],"names":[],"mappings":"AAEA,MAAM,oBAAoB,GAAG,EAAE,CAAC;AAqChC,OAAO,EAAE,SAAS,EAAE,2BAA2B,EAAE,MAAM,aAAa,CAAC;AAErE,MAAM,CAAC,OAAO,CAAC,KAAK,UAAU,UAAU,CAAC,OAA0B;IACjE,IAAI,KAAK,GAA6B,IAAI,CAAC;IAC3C,IAAI,UAAU,GAAuB,IAAI,CAAC;IAE1C,MAAM,KAAK,GAAG;QACZ,GAAG,OAAO;KACX,CAAC;IAEF,IAAI,SAAS,GAAG,WAAW,KAAK,CAAC,IAAI,2BAA2B,CAAC;IACjE,IAAI,OAAO,GAAG,WAAW,KAAK,CAAC,IAAI,yBAAyB,CAAC;IAC7D,IAAI,KAAK,CAAC,IAAI,KAAK,WAAW,EAAE,CAAC;QAC/B,SAAS,GAAG,wBAAwB,CAAC;QACrC,OAAO,GAAG,uBAAuB,CAAC;IACpC,CAAC;IAED,IAAI,KAAK,GAAG,KAAK,CAAC,WAAW,EAAE,CAAC;IAEhC,IAAI,CAAC,KAAK,EAAE,CAAC;QACX,KAAK,CAAC,gBAAgB,EAAE,EAAE,CAAC;QAC3B,OAAO;IACT,CAAC;IAED,IAAI,cAAc,GAAG,KAAK,CAAC,SAAS,GAAG,CAAC,IAAI,CAAC,GAAG,EAAE,GAAG,IAAI,CAAC,CAAC;IAC3D,IAAI,cAAc,GAAQ,IAAI,CAAC;IAE/B,IAAI,cAAc,GAAG,oBAAoB,EAAE,CAAC;QAC1C,MAAM,YAAY,EAAE,CAAC;IACvB,CAAC;SAAM,CAAC;QACN,cAAc,GAAG,UAAU,CAAC,YAAY,EAAE,CAAC,cAAc,GAAG,oBAAoB,CAAC,GAAG,IAAI,CAAC,CAAC;IAC5F,CAAC;IAED,IAAI,gBAAqC,CAAC;IAE1C,MAAM,YAAY,GAAiB;QACjC,MAAM,CAAC,MAAe;YACpB,IAAI,KAAK,EAAE,CAAC;gBACV,OAAO,CAAC,KAAK,CAAC,uBAAuB,CAAC,CAAC;gBACvC,OAAO;YACT,CAAC;YACD,IAAI,CAAC,MAAM,EAAE,CAAC;gBACZ,OAAO,CAAC,KAAK,CAAC,0BAA0B,CAAC,CAAC;gBAC1C,OAAO;YACT,CAAC;YACD,gBAAgB,GAAG,MAAM,CAAC;YAC1B,KAAK,GAAG,QAAQ,CAAC,aAAa,CAAC,QAAQ,CAAC,CAAC;YACzC,KAAK,CAAC,KAAK,CAAC,MAAM,GAAG,MAAM,CAAC;YAC5B,IAAI,cAAc,CAAC,OAAO,CAAC,QAAQ,CAAC,EAAE,CAAC;gBACrC,KAAK,CAAC,GAAG,GAAG,CAAC,SAAS,IAAI,EAAE,CAAC,GAAG,oBAAoB,CAAC;YACvD,CAAC;iBAAM,CAAC;gBACN,KAAK,CAAC,GAAG,GAAG,CAAC,SAAS,IAAI,EAAE,CAAC,CAAC;YAChC,CAAC;YACD,KAAK,CAAC,YAAY,CAAC,SAAS,EAAE,iJAAiJ,CAAC,CAAC;YACjL,KAAK,CAAC,YAAY,CAAC,OAAO,EAAE,iBAAiB,CAAC,CAAC;YAC/C,KAAK,CAAC,IAAI,GAAG,eAAe,CAAC;YAE7B,MAAM,EAAE,gBAAgB,CAAC,SAAS,EAAE,gBAAgB,CAAC,CAAC;YAEtD,SAAS,gBAAgB,CAAC,KAAmB;gBAC3C,IAAI,KAAK,CAAC,IAAI,CAAC,IAAI,KAAK,WAAW,EAAE,CAAC;oBACpC,MAAM,EAAE,mBAAmB,CAAC,SAAS,EAAE,gBAAgB,CAAC,CAAC;oBAEzD,IAAI,UAAU,KAAK,IAAI,EAAE,CAAC;wBACxB,MAAM,IAAI,KAAK,CAAC,6BAA6B,CAAC,CAAC;oBACjD,CAAC;oBAED,UAAU,GAAG,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;oBAC5B,UAAU,CAAC,SAAS,GAAG,aAAa,CAAC;oBACrC,UAAU,CAAC,WAAW,CAAU;wBAC9B,IAAI,EAAE,mBAAmB;wBACzB,IAAI,EAAE,KAAK,CAAC,IAAI;wBAChB,KAAK,EAAE,cAAc,EAAE;wBACvB,KAAK,EAAE,KAAK,CAAC,KAAK;qBACnB,CAAC,CAAC;gBACL,CAAC;YACH,CAAC;YAED,MAAM,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC;QAC5B,CAAC;QACD,MAAM;YACJ,UAAU,EAAE,KAAK,EAAE,CAAC;YACpB,UAAU,GAAG,IAAI,CAAC;YAElB,gBAAgB,GAAG,SAAS,CAAC;YAC7B,KAAK,EAAE,MAAM,EAAE,CAAC;YAChB,KAAK,GAAG,IAAI,CAAC;QACf,CAAC;QACD,MAAM;YACJ,IAAI,CAAC,gBAAgB,EAAE,CAAC;gBACtB,OAAO;YACT,CAAC;YACD,MAAM,MAAM,GAAG,gBAAgB,CAAC;YAChC,IAAI,CAAC,MAAM,EAAE,CAAC;YACd,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;QACtB,CAAC;QACD,IAAI,CAAC,IAAY;YACf,IAAI,CAAC;gBACH,IAAI,EAAE,UAAU;gBAChB,IAAI,EAAE,IAAI;aACX,CAAC,CAAC;QACL,CAAC;QACD,OAAO;YACL,IAAI,CAAC,MAAM,EAAE,CAAC;YACd,YAAY,CAAC,cAAe,CAAC,CAAC;QAChC,CAAC;QACD,QAAQ,CAAC,KAAkC;YACzC,IAAI,CAAC;gBACH,IAAI,EAAE,UAAU;gBAChB,KAAK,EAAE,KAAK;aACb,CAAC,CAAA;QACJ,CAAC;KACF,CAAC;IACF,OAAO,YAAY,CAAC;IAEpB,SAAS,cAAc;QACrB,IAAI,CAAC,KAAK,EAAE,CAAC;YACX,OAAO;gBACL,WAAW,EAAE,EAAE;gBACf,SAAS,EAAE,EAAE;gBACb,QAAQ,EAAE,EAAE;gBACZ,UAAU,EAAE,EAAE;gBACd,UAAU,EAAE,KAAK;aAClB,CAAC;QACJ,CAAC;QAED,OAAO;YACL,WAAW,EAAE,KAAK,CAAC,WAAW;YAC9B,SAAS,EAAE,KAAK,CAAC,SAAS;YAC1B,QAAQ,EAAE,KAAK,CAAC,QAAQ;YACxB,UAAU,EAAE,KAAK,CAAC,UAAU;YAC5B,UAAU,EAAE,KAAK,CAAC,UAAU;SACpB,CAAC;IACb,CAAC;IAED,KAAK,UAAU,YAAY;QACzB,IAAI,CAAC,KAAK,EAAE,CAAC;YAAC,OAAO;QAAC,CAAC;QAEvB,MAAM,OAAO,GAAG,IAAI,eAAe,EAAE,CAAC;QACtC,OAAO,CAAC,MAAM,CAAC,YAAY,EAAE,eAAe,CAAC,CAAC;QAC9C,OAAO,CAAC,MAAM,CAAC,eAAe,EAAE,KAAK,CAAC,YAAY,CAAC,CAAC;QACpD,OAAO,CAAC,MAAM,CAAC,eAAe,EAAE,KAAK,CAAC,YAAY,CAAC,CAAC;QAEpD,IAAI,QAAQ,GAAG,MAAM,KAAK,CAAC,GAAG,OAAO,cAAc,EAAE;YACnD,MAAM,EAAE,MAAM;YACd,OAAO,EAAE;gBACP,cAAc,EAAE,mCAAmC;aACpD;YACD,IAAI,EAAE,OAAO,CAAC,QAAQ,EAAE;SACzB,CAAC,CAAC;QAEH,IAAI,CAAC,QAAQ,CAAC,EAAE,EAAE,CAAC;YAEjB,IAAI,QAAQ,CAAC,MAAM,KAAK,GAAG,EAAE,CAAC;gBAC5B,iEAAiE;gBACjE,OAAO;YACT,CAAC;YAED,uBAAuB;YACvB,cAAc,GAAG,UAAU,CAAC,YAAY,EAAE,MAAM,CAAC,CAAC;YAClD,OAAO;QACT,CAAC;QAED,MAAM,IAAI,GAAG,MAAM,QAAQ,CAAC,IAAI,EAAE,CAAC;QAEnC,KAAK,GAAG;YACN,SAAS,EAAE,IAAI,CAAC,UAAU;YAC1B,WAAW,EAAE,IAAI,CAAC,YAAY;YAC9B,YAAY,EAAE,IAAI,CAAC,aAAa;YAChC,SAAS,EAAE,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,GAAG,EAAE,GAAG,IAAI,CAAC,GAAG,IAAI,CAAC,UAAU;YAC1D,QAAQ,EAAE,IAAI,CAAC,SAAS;YACxB,UAAU,EAAE,IAAI,CAAC,WAAW;YAC5B,YAAY,EAAE,KAAK,CAAC,YAAY;YAChC,UAAU,EAAE,KAAK,CAAC,UAAU;SAC7B,CAAC;QAEF,KAAK,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC;QAEzB,IAAI,KAAK,EAAE,CAAC;YACV,IAAI,CAAC;gBACH,IAAI,EAAE,gBAAgB;gBACtB,KAAK,EAAE,cAAc,EAAE;aACxB,CAAC,CAAC;QACL,CAAC;QAED,cAAc,GAAG,KAAK,CAAC,SAAS,GAAG,CAAC,IAAI,CAAC,GAAG,EAAE,GAAG,IAAI,CAAC,CAAC;QACvD,cAAc,GAAG,UAAU,CAAC,YAAY,EAAE,CAAC,cAAc,GAAG,oBAAoB,CAAC,GAAG,IAAI,CAAC,CAAC;IAC5F,CAAC;IAED,SAAS,aAAa,CAAC,OAAqB;QAC1C,IAAI,CAAC,KAAK,IAAI,KAAK,CAAC,GAAG,CAAC,OAAO,CAAC,OAAO,CAAC,MAAM,CAAC,KAAK,CAAC,EAAE,CAAC;YACtD,OAAO;QACT,CAAC;QAED,IAAI,IAAa,CAAC;QAClB,IAAI,OAAO,OAAO,CAAC,IAAI,KAAK,QAAQ,EAAE,CAAC;YACrC,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;QAClC,CAAC;aAAM,IAAI,OAAO,CAAC,IAAI,CAAC,IAAI,EAAE,CAAC;YAC7B,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC;QACtB,CAAC;aAAM,CAAC;YACN,OAAO;QACT,CAAC;QAED,IAAI,IAAI,CAAC,IAAI,KAAK,gBAAgB,EAAE,CAAC;YACnC,KAAK,CAAC,gBAAgB,EAAE,EAAE,CAAC;QAC7B,CAAC;aAAM,IAAI,IAAI,CAAC,IAAI,KAAK,WAAW,EAAE,CAAC;YACrC,KAAK,CAAC,WAAW,EAAE,CAAC,IAAI,CAAC,IAAc,CAAC,CAAC;QAC3C,CAAC;aAAM,IAAI,IAAI,CAAC,IAAI,KAAK,cAAc,EAAE,CAAC;YACxC,KAAK,CAAC,cAAc,EAAE,CAAC,IAAI,CAAC,IAAI,CAAW,EAAE,IAAI,CAAC,aAAa,CAAW,CAAC,CAAC;QAC9E,CAAC;aAAM,IAAI,IAAI,CAAC,IAAI,KAAK,aAAa,EAAE,CAAC;YACvC,KAAK,CAAC,aAAa,EAAE,CAAC,IAAI,CAAC,IAAI,CAAW,EAAE,IAAI,CAAC,QAAQ,CAAW,CAAC,CAAC;QACxE,CAAC;aAAM,IAAI,IAAI,CAAC,IAAI,KAAK,iBAAiB,EAAE,CAAC;YAC3C,KAAK,CAAC,gBAAgB,EAAE,CAAC,IAAI,CAAC,IAAI,CAAW,EAAE,IAAI,CAAC,aAAa,CAAqB,CAAC,CAAC;QAC1F,CAAC;aAAM,IAAI,IAAI,CAAC,IAAI,KAAK,OAAO,EAAE,CAAC;YACjC,KAAK,CAAC,OAAO,EAAE,CAAC,IAAI,CAAC,IAAI,CAAW,EAAE,IAAI,CAAC,aAAa,CAAW,EAAE,IAAI,CAAC,QAAQ,CAAW,CAAC,CAAC;QACjG,CAAC;aAAM,IAAI,IAAI,CAAC,IAAI,KAAK,cAAc,EAAE,CAAC;YACxC,cAAc,CAAC,OAAO,CAAC,QAAQ,EAAE,MAAM,CAAC,CAAC;YACzC,YAAY,CAAC,MAAM,EAAE,CAAC;QACxB,CAAC;aAAM,IAAI,IAAI,CAAC,IAAI,KAAK,eAAe,EAAE,CAAC;YACzC,cAAc,CAAC,UAAU,CAAC,QAAQ,CAAC,CAAC;YACpC,YAAY,CAAC,MAAM,EAAE,CAAC;QACxB,CAAC;aAAM,IAAI,IAAI,CAAC,IAAI,KAAK,MAAM,EAAE,CAAC;YAChC,KAAK,CAAC,YAAY,EAAE,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QAClC,CAAC;IACH,CAAC;IAED,SAAS,IAAI,CAAC,OAAgB;QAC5B,IAAI,CAAC,KAAK,IAAI,CAAC,UAAU,EAAE,CAAC;YAC1B,OAAO,CAAC,KAAK,CAAC,kEAAkE,CAAC,CAAC;YAClF,OAAO;QACT,CAAC;QACD,UAAU,CAAC,WAAW,CAAC,OAAO,CAAC,CAAC;IAClC,CAAC;AACH,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"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.es2021.d.ts","../../../node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/typescript/lib/lib.es2023.d.ts","../../../node_modules/typescript/lib/lib.esnext.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.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.es2016.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.date.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.es2019.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.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.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2023.array.d.ts","../../../node_modules/typescript/lib/lib.es2023.collection.d.ts","../../../node_modules/typescript/lib/lib.es2023.intl.d.ts","../../../node_modules/typescript/lib/lib.esnext.array.d.ts","../../../node_modules/typescript/lib/lib.esnext.collection.d.ts","../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../../node_modules/typescript/lib/lib.esnext.string.d.ts","../../../node_modules/typescript/lib/lib.esnext.promise.d.ts","../../../node_modules/typescript/lib/lib.esnext.decorators.d.ts","../../../node_modules/typescript/lib/lib.esnext.object.d.ts","../../../node_modules/typescript/lib/lib.esnext.regexp.d.ts","../../../node_modules/typescript/lib/lib.esnext.iterator.d.ts","../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/tslib/tslib.d.ts","../../portal-contracts/dist/access-control-entry.d.ts","../../portal-contracts/dist/user.d.ts","../../portal-contracts/dist/personal-access-token.d.ts","../../portal-contracts/dist/entry.d.ts","../src/authorize.ts","../src/entry.ts","../../../node_modules/@types/argparse/index.d.ts","../../../node_modules/@babel/types/lib/index.d.ts","../../../node_modules/@types/babel__generator/index.d.ts","../../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../../node_modules/@types/babel__template/index.d.ts","../../../node_modules/@types/babel__traverse/index.d.ts","../../../node_modules/@types/babel__core/index.d.ts","../../../node_modules/@types/estree/index.d.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/buffer/index.d.ts","../../../node_modules/undici-types/header.d.ts","../../../node_modules/undici-types/readable.d.ts","../../../node_modules/undici-types/file.d.ts","../../../node_modules/undici-types/fetch.d.ts","../../../node_modules/undici-types/formdata.d.ts","../../../node_modules/undici-types/connector.d.ts","../../../node_modules/undici-types/client.d.ts","../../../node_modules/undici-types/errors.d.ts","../../../node_modules/undici-types/dispatcher.d.ts","../../../node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/undici-types/global-origin.d.ts","../../../node_modules/undici-types/pool-stats.d.ts","../../../node_modules/undici-types/pool.d.ts","../../../node_modules/undici-types/handlers.d.ts","../../../node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/undici-types/agent.d.ts","../../../node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/undici-types/mock-agent.d.ts","../../../node_modules/undici-types/mock-client.d.ts","../../../node_modules/undici-types/mock-pool.d.ts","../../../node_modules/undici-types/mock-errors.d.ts","../../../node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/undici-types/retry-handler.d.ts","../../../node_modules/undici-types/retry-agent.d.ts","../../../node_modules/undici-types/api.d.ts","../../../node_modules/undici-types/interceptors.d.ts","../../../node_modules/undici-types/util.d.ts","../../../node_modules/undici-types/cookies.d.ts","../../../node_modules/undici-types/patch.d.ts","../../../node_modules/undici-types/websocket.d.ts","../../../node_modules/undici-types/eventsource.d.ts","../../../node_modules/undici-types/filereader.d.ts","../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/undici-types/content-type.d.ts","../../../node_modules/undici-types/cache.d.ts","../../../node_modules/undici-types/index.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/dom-events.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/readline/promises.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/sea.d.ts","../../../node_modules/@types/node/sqlite.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/@types/graceful-fs/index.d.ts","../../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../../node_modules/@types/istanbul-lib-report/index.d.ts","../../../node_modules/@types/istanbul-reports/index.d.ts","../../../node_modules/@jest/expect-utils/build/index.d.ts","../../../node_modules/jest-matcher-utils/node_modules/chalk/index.d.ts","../../../node_modules/@sinclair/typebox/typebox.d.ts","../../../node_modules/@jest/schemas/build/index.d.ts","../../../node_modules/pretty-format/build/index.d.ts","../../../node_modules/jest-diff/build/index.d.ts","../../../node_modules/jest-matcher-utils/build/index.d.ts","../../../node_modules/expect/build/index.d.ts","../../../node_modules/@types/jest/index.d.ts","../../../node_modules/@types/json-schema/index.d.ts","../../../node_modules/@types/stack-utils/index.d.ts","../../../node_modules/@types/uuid/index.d.ts","../../../node_modules/@types/yargs-parser/index.d.ts","../../../node_modules/@types/yargs/index.d.ts"],"fileIdsList":[[85],[192],[85,86,87,88,89],[85,87],[147,185],[187],[188],[194,197],[92],[133],[134,139,169],[135,140,146,147,154,166,177],[135,136,146,154],[137,178],[138,139,147,155],[139,166,174],[140,142,146,154],[133,141],[142,143],[146],[144,146],[133,146],[146,147,148,166,177],[146,147,148,161,166,169],[131,182],[131,142,146,149,154,166,177],[146,147,149,150,154,166,174,177],[149,151,166,174,177],[92,93,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,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184],[146,152],[153,177,182],[142,146,154,166],[155],[156],[133,157],[92,93,133,134,135,136,137,138,139,140,141,142,143,144,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[159],[160],[146,161,162],[161,163,178,180],[134,146,166,167,168,169],[134,166,168],[166,167],[169],[170],[92,166],[146,172,173],[172,173],[139,154,166,174],[175],[154,176],[134,149,160,177],[139,178],[166,179],[153,180],[181],[134,139,146,148,157,166,177,180,182],[166,183],[202],[190,196],[194],[191,195],[193],[103,107,177],[103,166,177],[98],[100,103,174,177],[154,174],[185],[98,185],[100,103,154,177],[95,96,99,102,134,146,166,177],[103,110],[95,101],[103,124,125],[99,103,134,169,177,185],[134,185],[124,134,185],[97,98,185],[103],[97,98,99,100,101,102,103,104,105,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,125,126,127,128,129,130],[103,118],[103,110,111],[101,103,111,112],[102],[95,98,103],[103,107,111,112],[107],[101,103,106,177],[95,100,103,110],[134,166],[98,103,124,134,182,185],[78,79,80],[78],[77,81],[77,81,82]],"fileInfos":[{"version":"44e584d4f6444f58791784f1d530875970993129442a847597db702a073ca68c","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"abee51ebffafd50c07d76be5848a34abfe4d791b5745ef1e5648718722fab924","impliedFormat":1},{"version":"9e8ca8ed051c2697578c023d9c29d6df689a083561feba5c14aedee895853999","affectsGlobalScope":true,"impliedFormat":1},{"version":"69e65d976bf166ce4a9e6f6c18f94d2424bf116e90837ace179610dbccad9b42","affectsGlobalScope":true,"impliedFormat":1},{"version":"30055c4694373918593a99ac50e8bc2d42922b8117f71c79719ee433320eb80c","affectsGlobalScope":true,"impliedFormat":1},{"version":"cd034f499c6cdca722b60c04b5b1b78e058487a7085a8e0d6fb50809947ee573","affectsGlobalScope":true,"impliedFormat":1},{"version":"6920e1448680767498a0b77c6a00a8e77d14d62c3da8967b171f1ddffa3c18e4","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"45d8ccb3dfd57355eb29749919142d4321a0aa4df6acdfc54e30433d7176600a","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":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true,"impliedFormat":1},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true,"impliedFormat":1},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","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":"1a94697425a99354df73d9c8291e2ecd4dddd370aed4023c2d6dee6cccb32666","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true,"impliedFormat":1},{"version":"e3f9fc0ec0b96a9e642f11eda09c0be83a61c7b336977f8b9fdb1e9788e925fe","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"479553e3779be7d4f68e9f40cdb82d038e5ef7592010100410723ceced22a0f7","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"d3d7b04b45033f57351c8434f60b6be1ea71a2dfec2d0a0c3c83badbb0e3e693","affectsGlobalScope":true,"impliedFormat":1},{"version":"956d27abdea9652e8368ce029bb1e0b9174e9678a273529f426df4b3d90abd60","affectsGlobalScope":true,"impliedFormat":1},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true,"impliedFormat":1},{"version":"e6633e05da3ff36e6da2ec170d0d03ccf33de50ca4dc6f5aeecb572cedd162fb","affectsGlobalScope":true,"impliedFormat":1},{"version":"15c1c3d7b2e46e0025417ed6d5f03f419e57e6751f87925ca19dc88297053fe6","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"caccc56c72713969e1cfe5c3d44e5bab151544d9d2b373d7dbe5a1e4166652be","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"9d540251809289a05349b70ab5f4b7b99f922af66ab3c39ba56a475dcf95d5ff","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"0b11f3ca66aa33124202c80b70cd203219c3d4460cfc165e0707aa9ec710fc53","affectsGlobalScope":true,"impliedFormat":1},{"version":"6a3f5a0129cc80cf439ab71164334d649b47059a4f5afca90282362407d0c87f","affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true,"impliedFormat":1},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true,"impliedFormat":1},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true,"impliedFormat":1},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"61d6a2092f48af66dbfb220e31eea8b10bc02b6932d6e529005fd2d7b3281290","affectsGlobalScope":true,"impliedFormat":1},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"4a882ffbb4ed09d9b7734f784aebb1dfe488d63725c40759165c5d9c657ca029","impliedFormat":1},"0672197d3f700044d915bc89efcb5980256daf1f6fffe4bf67ff2a363075cd40","904c4f81ae900839cc70d79fc667d6f648954cf6a601cfa7e835883266fce5be","df7144db44b3fb8099667efdc68ba9ff797832e1aa2af2a984ca9f2d8387018e","e5bfffef5ce70dcb6c8f0d8395cb892bfe0af6ab9f55b2813800c9de3bf3cdb7",{"version":"6f796d13ebaff291700e7aac19706d9baa7fe488becb196b4c9ee4c6d9ace260","signature":"04d24879e96091ee1aab79ec9355c11b153ecddd073f343ea8eff5ee42b3cd3e"},{"version":"725a6eee1c3fc13e48664e5be09255700c7ddab53b6cacdfbb5dd345c691015b","signature":"19e076ab5d923e4cf1d1c9ddd9717f91faaf3ae4bf1409a3099f85e089d74baa"},{"version":"dc3b172ee27054dbcedcf5007b78c256021db936f6313a9ce9a3ecbb503fd646","impliedFormat":1},{"version":"e74998d5cefc2f29d583c10b99c1478fb810f1e46fbb06535bfb0bbba3c84aa5","impliedFormat":1},{"version":"2c8e55457aaf4902941dfdba4061935922e8ee6e120539c9801cd7b400fae050","impliedFormat":1},{"version":"43d058146b002d075f5d0033a6870321048297f1658eb0db559ba028383803a6","impliedFormat":1},{"version":"670a76db379b27c8ff42f1ba927828a22862e2ab0b0908e38b671f0e912cc5ed","impliedFormat":1},{"version":"9e0cf651e8e2c5b9bebbabdff2f7c6f8cedd91b1d9afcc0a854cdff053a88f1b","impliedFormat":1},{"version":"069bebfee29864e3955378107e243508b163e77ab10de6a5ee03ae06939f0bb9","impliedFormat":1},{"version":"ee7d8894904b465b072be0d2e4b45cf6b887cdba16a467645c4e200982ece7ea","impliedFormat":1},{"version":"e142fda89ed689ea53d6f2c93693898464c7d29a0ae71c6dc8cdfe5a1d76c775","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"24bd580b5743dc56402c440dc7f9a4f5d592ad7a419f25414d37a7bfe11e342b","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":"6bdc71028db658243775263e93a7db2fd2abfce3ca569c3cca5aee6ed5eb186d","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":"4d2b0eb911816f66abe4970898f97a2cfc902bcd743cbfa5017fad79f7ef90d8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","impliedFormat":1},{"version":"24b8685c62562f5d98615c5a0c1d05f297cf5065f15246edfe99e81ec4c0e011","impliedFormat":1},{"version":"93507c745e8f29090efb99399c3f77bec07db17acd75634249dc92f961573387","impliedFormat":1},{"version":"339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"964f307d249df0d7e8eb16d594536c0ac6cc63c8d467edf635d05542821dec8e","affectsGlobalScope":true,"impliedFormat":1},{"version":"db3ec8993b7596a4ef47f309c7b25ee2505b519c13050424d9c34701e5973315","impliedFormat":1},{"version":"6a1ebd564896d530364f67b3257c62555b61d60494a73dfe8893274878c6589d","affectsGlobalScope":true,"impliedFormat":1},{"version":"af49b066a76ce26673fe49d1885cc6b44153f1071ed2d952f2a90fccba1095c9","impliedFormat":1},{"version":"f22fd1dc2df53eaf5ce0ff9e0a3326fc66f880d6a652210d50563ae72625455f","impliedFormat":1},{"version":"3ddbdb519e87a7827c4f0c4007013f3628ca0ebb9e2b018cf31e5b2f61c593f1","affectsGlobalScope":true,"impliedFormat":1},{"version":"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb","impliedFormat":1},{"version":"6d498d4fd8036ea02a4edcae10375854a0eb1df0496cf0b9d692577d3c0fd603","affectsGlobalScope":true,"impliedFormat":1},{"version":"24642567d3729bcc545bacb65ee7c0db423400c7f1ef757cab25d05650064f98","impliedFormat":1},{"version":"fd09b892597ab93e7f79745ce725a3aaf6dd005e8db20f0c63a5d10984cba328","impliedFormat":1},{"version":"a3be878ff1e1964ab2dc8e0a3b67087cf838731c7f3d8f603337e7b712fdd558","impliedFormat":1},{"version":"5433f7f77cd1fd53f45bd82445a4e437b2f6a72a32070e907530a4fea56c30c8","impliedFormat":1},{"version":"9be74296ee565af0c12d7071541fdd23260f53c3da7731fb6361f61150a791f6","impliedFormat":1},{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true,"impliedFormat":1},{"version":"f501a53b94ba382d9ba396a5c486969a3abc68309828fa67f916035f5d37fe2b","affectsGlobalScope":true,"impliedFormat":1},{"version":"aa658b5d765f630c312ac9202d110bbaf2b82d180376457f0a9d57b42629714a","impliedFormat":1},{"version":"312ac7cbd070107766a9886fd27f9faad997ef57d93fdfb4095df2c618ac8162","impliedFormat":1},{"version":"2e9b4e7f9942af902eb85bae6066d04ef1afee51d61554a62d144df3da7dec94","impliedFormat":1},{"version":"672ad3045f329e94002256f8ed460cfd06173a50c92cde41edaadfacffd16808","impliedFormat":1},{"version":"64da4965d1e0559e134d9c1621ae400279a216f87ed00c4cce4f2c7c78021712","impliedFormat":1},{"version":"2205527b976f4f1844adc46a3f0528729fb68cac70027a5fb13c49ca23593797","impliedFormat":1},{"version":"0166fce1204d520fdfd6b5febb3cda3deee438bcbf8ce9ffeb2b1bcde7155346","affectsGlobalScope":true,"impliedFormat":1},{"version":"d8b13eab85b532285031b06a971fa051bf0175d8fff68065a24a6da9c1c986cf","impliedFormat":1},{"version":"50c382ba1827988c59aa9cc9d046e386d55d70f762e9e352e95ee8cb7337cdb8","impliedFormat":1},{"version":"bb9627ab9d078c79bb5623de4ac8e5d08f806ec9b970962dfc83b3211373690d","impliedFormat":1},{"version":"21d7e87f271e72d02f8d167edc902f90b04525edc7918f00f01dd0bd00599f7e","affectsGlobalScope":true,"impliedFormat":1},{"version":"6f6abdaf8764ef01a552a958f45e795b5e79153b87ddad3af5264b86d2681b72","affectsGlobalScope":true,"impliedFormat":1},{"version":"a215554477f7629e3dcbc8cde104bec036b78673650272f5ffdc5a2cee399a0a","impliedFormat":1},{"version":"c3497fc242aabfedcd430b5932412f94f157b5906568e737f6a18cc77b36a954","impliedFormat":1},{"version":"cdc1de3b672f9ef03ff15c443aa1b631edca35b6ae6970a7da6400647ff74d95","impliedFormat":1},{"version":"139ad1dc93a503da85b7a0d5f615bddbae61ad796bc68fedd049150db67a1e26","impliedFormat":1},{"version":"bf01fdd3b93cf633b3f7420718457af19c57ab8cbfea49268df60bae2e84d627","impliedFormat":1},{"version":"15c5e91b5f08be34a78e3d976179bf5b7a9cc28dc0ef1ffebffeb3c7812a2dca","impliedFormat":1},{"version":"5f461d6f5d9ff474f1121cc3fd86aa3cd67476c701f55c306d323c5112201207","impliedFormat":1},{"version":"65b39cc6b610a4a4aecc321f6efb436f10c0509d686124795b4c36a5e915b89e","impliedFormat":1},{"version":"269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","impliedFormat":1},{"version":"93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","impliedFormat":1},{"version":"83fe38aa2243059ea859325c006da3964ead69b773429fe049ebb0426e75424d","affectsGlobalScope":true,"impliedFormat":1},{"version":"d3edb86744e2c19f2c1503849ac7594a5e06024f2451bacae032390f2e20314a","impliedFormat":1},{"version":"e501cbca25bd54f0bcb89c00f092d3cae227e970b93fd76207287fd8110b123d","affectsGlobalScope":true,"impliedFormat":1},{"version":"8a3e61347b8f80aa5af532094498bceb0c0b257b25a6aa8ab4880fd6ed57c95a","affectsGlobalScope":true,"impliedFormat":1},{"version":"98e00f3613402504bc2a2c9a621800ab48e0a463d1eed062208a4ae98ad8f84c","impliedFormat":1},{"version":"950f6810f7c80e0cffefcf1bcc6ade3485c94394720e334c3c2be3c16b6922fb","impliedFormat":1},{"version":"5475df7cfc493a08483c9d7aa61cc04791aecba9d0a2efc213f23c4006d4d3cd","impliedFormat":1},{"version":"000720870b275764c65e9f28ac97cc9e4d9e4a36942d4750ca8603e416e9c57c","impliedFormat":1},{"version":"54412c70bacb9ed547ed6caae8836f712a83ccf58d94466f3387447ec4e82dc3","affectsGlobalScope":true,"impliedFormat":1},{"version":"e74e7b0baa7a24f073080091427d36a75836d584b9393e6ac2b1daf1647fe65a","affectsGlobalScope":true,"impliedFormat":1},{"version":"4c48e931a72f6971b5add7fdb1136be1d617f124594e94595f7114af749395e0","impliedFormat":1},{"version":"478eb5c32250678a906d91e0529c70243fc4d75477a08f3da408e2615396f558","impliedFormat":1},{"version":"e686a88c9ee004c8ba12ffc9d674ca3192a4c50ed0ca6bd5b2825c289e2b2bfe","impliedFormat":1},{"version":"0d27932df2fbc3728e78b98892540e24084424ce12d3bd32f62a23cf307f411f","affectsGlobalScope":true,"impliedFormat":1},{"version":"4423fb3d6abe6eefb8d7f79eb2df9510824a216ec1c6feee46718c9b18e6d89f","impliedFormat":1},{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true,"impliedFormat":1},{"version":"01c47d1c006b3a15b51d89d7764fff7e4fabc4e412b3a61ee5357bd74b822879","impliedFormat":1},{"version":"afe73051ff6a03a9565cbd8ebb0e956ee3df5e913ad5c1ded64218aabfa3dcb5","impliedFormat":1},{"version":"035a5df183489c2e22f3cf59fc1ed2b043d27f357eecc0eb8d8e840059d44245","impliedFormat":1},{"version":"a4809f4d92317535e6b22b01019437030077a76fec1d93b9881c9ed4738fcc54","impliedFormat":1},{"version":"5f53fa0bd22096d2a78533f94e02c899143b8f0f9891a46965294ee8b91a9434","impliedFormat":1},{"version":"cdcc132f207d097d7d3aa75615ab9a2e71d6a478162dde8b67f88ea19f3e54de","impliedFormat":1},{"version":"0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","impliedFormat":1},{"version":"c085e9aa62d1ae1375794c1fb927a445fa105fed891a7e24edbb1c3300f7384a","impliedFormat":1},{"version":"f315e1e65a1f80992f0509e84e4ae2df15ecd9ef73df975f7c98813b71e4c8da","impliedFormat":1},{"version":"5b9586e9b0b6322e5bfbd2c29bd3b8e21ab9d871f82346cb71020e3d84bae73e","impliedFormat":1},{"version":"3e70a7e67c2cb16f8cd49097360c0309fe9d1e3210ff9222e9dac1f8df9d4fb6","impliedFormat":1},{"version":"ab68d2a3e3e8767c3fba8f80de099a1cfc18c0de79e42cb02ae66e22dfe14a66","impliedFormat":1},{"version":"d96cc6598148bf1a98fb2e8dcf01c63a4b3558bdaec6ef35e087fd0562eb40ec","impliedFormat":1},{"version":"e9b76bb505b61fdb2b4347398776a0c3d081877cee7669f7ca09846aeb325c63","affectsGlobalScope":true,"impliedFormat":1},{"version":"f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","impliedFormat":1},{"version":"ab82804a14454734010dcdcd43f564ff7b0389bee4c5692eec76ff5b30d4cf66","impliedFormat":1},{"version":"7d2b7fe4adb76d8253f20e4dbdce044f1cdfab4902ec33c3604585f553883f7d","impliedFormat":1},{"version":"bae8d023ef6b23df7da26f51cea44321f95817c190342a36882e93b80d07a960","impliedFormat":1},{"version":"26a770cec4bd2e7dbba95c6e536390fffe83c6268b78974a93727903b515c4e7","impliedFormat":1}],"root":[82,83],"options":{"allowSyntheticDefaultImports":true,"composite":true,"declaration":true,"declarationMap":true,"esModuleInterop":true,"importHelpers":true,"jsx":1,"module":1,"outDir":"./cjs","rootDir":"../src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":99},"referencedMap":[[87,1],[193,2],[90,3],[86,1],[88,4],[89,1],[186,5],[188,6],[189,7],[198,8],[92,9],[93,9],[133,10],[134,11],[135,12],[136,13],[137,14],[138,15],[139,16],[140,17],[141,18],[142,19],[143,19],[145,20],[144,21],[146,22],[147,23],[148,24],[132,25],[149,26],[150,27],[151,28],[185,29],[152,30],[153,31],[154,32],[155,33],[156,34],[157,35],[158,36],[159,37],[160,38],[161,39],[162,39],[163,40],[166,41],[168,42],[167,43],[169,44],[170,45],[171,46],[172,47],[173,48],[174,49],[175,50],[176,51],[177,52],[178,53],[179,54],[180,55],[181,56],[182,57],[183,58],[203,59],[197,60],[195,61],[196,62],[194,63],[110,64],[120,65],[109,64],[130,66],[101,67],[100,68],[129,69],[123,70],[128,71],[103,72],[117,73],[102,74],[126,75],[98,76],[97,77],[127,78],[99,79],[104,80],[108,80],[131,81],[121,82],[112,83],[113,84],[115,85],[111,86],[114,87],[124,69],[106,88],[107,89],[116,90],[96,91],[119,82],[118,80],[125,92],[81,93],[79,94],[82,95],[83,96]],"latestChangedDtsFile":"./cjs/entry.d.ts","version":"5.6.2"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"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.es2021.d.ts","../../../node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/typescript/lib/lib.es2023.d.ts","../../../node_modules/typescript/lib/lib.esnext.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.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.es2016.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.date.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.es2019.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.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.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2023.array.d.ts","../../../node_modules/typescript/lib/lib.es2023.collection.d.ts","../../../node_modules/typescript/lib/lib.es2023.intl.d.ts","../../../node_modules/typescript/lib/lib.esnext.array.d.ts","../../../node_modules/typescript/lib/lib.esnext.collection.d.ts","../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../../node_modules/typescript/lib/lib.esnext.string.d.ts","../../../node_modules/typescript/lib/lib.esnext.promise.d.ts","../../../node_modules/typescript/lib/lib.esnext.decorators.d.ts","../../../node_modules/typescript/lib/lib.esnext.object.d.ts","../../../node_modules/typescript/lib/lib.esnext.regexp.d.ts","../../../node_modules/typescript/lib/lib.esnext.iterator.d.ts","../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/tslib/tslib.d.ts","../../portal-contracts/dist/access-control-entry.d.ts","../../portal-contracts/dist/user.d.ts","../../portal-contracts/dist/personal-access-token.d.ts","../../portal-contracts/dist/entry.d.ts","../src/authorize.ts","../src/entry.ts","../../../node_modules/@types/argparse/index.d.ts","../../../node_modules/@babel/types/lib/index.d.ts","../../../node_modules/@types/babel__generator/index.d.ts","../../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../../node_modules/@types/babel__template/index.d.ts","../../../node_modules/@types/babel__traverse/index.d.ts","../../../node_modules/@types/babel__core/index.d.ts","../../../node_modules/@types/estree/index.d.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/buffer/index.d.ts","../../../node_modules/undici-types/header.d.ts","../../../node_modules/undici-types/readable.d.ts","../../../node_modules/undici-types/file.d.ts","../../../node_modules/undici-types/fetch.d.ts","../../../node_modules/undici-types/formdata.d.ts","../../../node_modules/undici-types/connector.d.ts","../../../node_modules/undici-types/client.d.ts","../../../node_modules/undici-types/errors.d.ts","../../../node_modules/undici-types/dispatcher.d.ts","../../../node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/undici-types/global-origin.d.ts","../../../node_modules/undici-types/pool-stats.d.ts","../../../node_modules/undici-types/pool.d.ts","../../../node_modules/undici-types/handlers.d.ts","../../../node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/undici-types/agent.d.ts","../../../node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/undici-types/mock-agent.d.ts","../../../node_modules/undici-types/mock-client.d.ts","../../../node_modules/undici-types/mock-pool.d.ts","../../../node_modules/undici-types/mock-errors.d.ts","../../../node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/undici-types/retry-handler.d.ts","../../../node_modules/undici-types/retry-agent.d.ts","../../../node_modules/undici-types/api.d.ts","../../../node_modules/undici-types/interceptors.d.ts","../../../node_modules/undici-types/util.d.ts","../../../node_modules/undici-types/cookies.d.ts","../../../node_modules/undici-types/patch.d.ts","../../../node_modules/undici-types/websocket.d.ts","../../../node_modules/undici-types/eventsource.d.ts","../../../node_modules/undici-types/filereader.d.ts","../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/undici-types/content-type.d.ts","../../../node_modules/undici-types/cache.d.ts","../../../node_modules/undici-types/index.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/dom-events.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/readline/promises.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/sea.d.ts","../../../node_modules/@types/node/sqlite.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/@types/graceful-fs/index.d.ts","../../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../../node_modules/@types/istanbul-lib-report/index.d.ts","../../../node_modules/@types/istanbul-reports/index.d.ts","../../../node_modules/@jest/expect-utils/build/index.d.ts","../../../node_modules/jest-matcher-utils/node_modules/chalk/index.d.ts","../../../node_modules/@sinclair/typebox/typebox.d.ts","../../../node_modules/@jest/schemas/build/index.d.ts","../../../node_modules/pretty-format/build/index.d.ts","../../../node_modules/jest-diff/build/index.d.ts","../../../node_modules/jest-matcher-utils/build/index.d.ts","../../../node_modules/expect/build/index.d.ts","../../../node_modules/@types/jest/index.d.ts","../../../node_modules/@types/json-schema/index.d.ts","../../../node_modules/@types/stack-utils/index.d.ts","../../../node_modules/@types/uuid/index.d.ts","../../../node_modules/@types/yargs-parser/index.d.ts","../../../node_modules/@types/yargs/index.d.ts"],"fileIdsList":[[85],[192],[85,86,87,88,89],[85,87],[147,185],[187],[188],[194,197],[92],[133],[134,139,169],[135,140,146,147,154,166,177],[135,136,146,154],[137,178],[138,139,147,155],[139,166,174],[140,142,146,154],[133,141],[142,143],[146],[144,146],[133,146],[146,147,148,166,177],[146,147,148,161,166,169],[131,182],[131,142,146,149,154,166,177],[146,147,149,150,154,166,174,177],[149,151,166,174,177],[92,93,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,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184],[146,152],[153,177,182],[142,146,154,166],[155],[156],[133,157],[92,93,133,134,135,136,137,138,139,140,141,142,143,144,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[159],[160],[146,161,162],[161,163,178,180],[134,146,166,167,168,169],[134,166,168],[166,167],[169],[170],[92,166],[146,172,173],[172,173],[139,154,166,174],[175],[154,176],[134,149,160,177],[139,178],[166,179],[153,180],[181],[134,139,146,148,157,166,177,180,182],[166,183],[202],[190,196],[194],[191,195],[193],[103,107,177],[103,166,177],[98],[100,103,174,177],[154,174],[185],[98,185],[100,103,154,177],[95,96,99,102,134,146,166,177],[103,110],[95,101],[103,124,125],[99,103,134,169,177,185],[134,185],[124,134,185],[97,98,185],[103],[97,98,99,100,101,102,103,104,105,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,125,126,127,128,129,130],[103,118],[103,110,111],[101,103,111,112],[102],[95,98,103],[103,107,111,112],[107],[101,103,106,177],[95,100,103,110],[134,166],[98,103,124,134,182,185],[78,79,80],[78],[77,81],[77,81,82]],"fileInfos":[{"version":"44e584d4f6444f58791784f1d530875970993129442a847597db702a073ca68c","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"abee51ebffafd50c07d76be5848a34abfe4d791b5745ef1e5648718722fab924","impliedFormat":1},{"version":"9e8ca8ed051c2697578c023d9c29d6df689a083561feba5c14aedee895853999","affectsGlobalScope":true,"impliedFormat":1},{"version":"69e65d976bf166ce4a9e6f6c18f94d2424bf116e90837ace179610dbccad9b42","affectsGlobalScope":true,"impliedFormat":1},{"version":"30055c4694373918593a99ac50e8bc2d42922b8117f71c79719ee433320eb80c","affectsGlobalScope":true,"impliedFormat":1},{"version":"cd034f499c6cdca722b60c04b5b1b78e058487a7085a8e0d6fb50809947ee573","affectsGlobalScope":true,"impliedFormat":1},{"version":"6920e1448680767498a0b77c6a00a8e77d14d62c3da8967b171f1ddffa3c18e4","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"45d8ccb3dfd57355eb29749919142d4321a0aa4df6acdfc54e30433d7176600a","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":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true,"impliedFormat":1},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true,"impliedFormat":1},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","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":"1a94697425a99354df73d9c8291e2ecd4dddd370aed4023c2d6dee6cccb32666","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true,"impliedFormat":1},{"version":"e3f9fc0ec0b96a9e642f11eda09c0be83a61c7b336977f8b9fdb1e9788e925fe","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"479553e3779be7d4f68e9f40cdb82d038e5ef7592010100410723ceced22a0f7","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"d3d7b04b45033f57351c8434f60b6be1ea71a2dfec2d0a0c3c83badbb0e3e693","affectsGlobalScope":true,"impliedFormat":1},{"version":"956d27abdea9652e8368ce029bb1e0b9174e9678a273529f426df4b3d90abd60","affectsGlobalScope":true,"impliedFormat":1},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true,"impliedFormat":1},{"version":"e6633e05da3ff36e6da2ec170d0d03ccf33de50ca4dc6f5aeecb572cedd162fb","affectsGlobalScope":true,"impliedFormat":1},{"version":"15c1c3d7b2e46e0025417ed6d5f03f419e57e6751f87925ca19dc88297053fe6","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"caccc56c72713969e1cfe5c3d44e5bab151544d9d2b373d7dbe5a1e4166652be","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"9d540251809289a05349b70ab5f4b7b99f922af66ab3c39ba56a475dcf95d5ff","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"0b11f3ca66aa33124202c80b70cd203219c3d4460cfc165e0707aa9ec710fc53","affectsGlobalScope":true,"impliedFormat":1},{"version":"6a3f5a0129cc80cf439ab71164334d649b47059a4f5afca90282362407d0c87f","affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true,"impliedFormat":1},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true,"impliedFormat":1},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true,"impliedFormat":1},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"61d6a2092f48af66dbfb220e31eea8b10bc02b6932d6e529005fd2d7b3281290","affectsGlobalScope":true,"impliedFormat":1},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"4a882ffbb4ed09d9b7734f784aebb1dfe488d63725c40759165c5d9c657ca029","impliedFormat":1},"0672197d3f700044d915bc89efcb5980256daf1f6fffe4bf67ff2a363075cd40","904c4f81ae900839cc70d79fc667d6f648954cf6a601cfa7e835883266fce5be","df7144db44b3fb8099667efdc68ba9ff797832e1aa2af2a984ca9f2d8387018e","e5bfffef5ce70dcb6c8f0d8395cb892bfe0af6ab9f55b2813800c9de3bf3cdb7",{"version":"6f796d13ebaff291700e7aac19706d9baa7fe488becb196b4c9ee4c6d9ace260","signature":"04d24879e96091ee1aab79ec9355c11b153ecddd073f343ea8eff5ee42b3cd3e"},{"version":"725a6eee1c3fc13e48664e5be09255700c7ddab53b6cacdfbb5dd345c691015b","signature":"19e076ab5d923e4cf1d1c9ddd9717f91faaf3ae4bf1409a3099f85e089d74baa"},{"version":"dc3b172ee27054dbcedcf5007b78c256021db936f6313a9ce9a3ecbb503fd646","impliedFormat":1},{"version":"e74998d5cefc2f29d583c10b99c1478fb810f1e46fbb06535bfb0bbba3c84aa5","impliedFormat":1},{"version":"2c8e55457aaf4902941dfdba4061935922e8ee6e120539c9801cd7b400fae050","impliedFormat":1},{"version":"43d058146b002d075f5d0033a6870321048297f1658eb0db559ba028383803a6","impliedFormat":1},{"version":"670a76db379b27c8ff42f1ba927828a22862e2ab0b0908e38b671f0e912cc5ed","impliedFormat":1},{"version":"9e0cf651e8e2c5b9bebbabdff2f7c6f8cedd91b1d9afcc0a854cdff053a88f1b","impliedFormat":1},{"version":"069bebfee29864e3955378107e243508b163e77ab10de6a5ee03ae06939f0bb9","impliedFormat":1},{"version":"ee7d8894904b465b072be0d2e4b45cf6b887cdba16a467645c4e200982ece7ea","impliedFormat":1},{"version":"e142fda89ed689ea53d6f2c93693898464c7d29a0ae71c6dc8cdfe5a1d76c775","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"24bd580b5743dc56402c440dc7f9a4f5d592ad7a419f25414d37a7bfe11e342b","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":"6bdc71028db658243775263e93a7db2fd2abfce3ca569c3cca5aee6ed5eb186d","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":"4d2b0eb911816f66abe4970898f97a2cfc902bcd743cbfa5017fad79f7ef90d8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","impliedFormat":1},{"version":"24b8685c62562f5d98615c5a0c1d05f297cf5065f15246edfe99e81ec4c0e011","impliedFormat":1},{"version":"93507c745e8f29090efb99399c3f77bec07db17acd75634249dc92f961573387","impliedFormat":1},{"version":"339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"964f307d249df0d7e8eb16d594536c0ac6cc63c8d467edf635d05542821dec8e","affectsGlobalScope":true,"impliedFormat":1},{"version":"db3ec8993b7596a4ef47f309c7b25ee2505b519c13050424d9c34701e5973315","impliedFormat":1},{"version":"6a1ebd564896d530364f67b3257c62555b61d60494a73dfe8893274878c6589d","affectsGlobalScope":true,"impliedFormat":1},{"version":"af49b066a76ce26673fe49d1885cc6b44153f1071ed2d952f2a90fccba1095c9","impliedFormat":1},{"version":"f22fd1dc2df53eaf5ce0ff9e0a3326fc66f880d6a652210d50563ae72625455f","impliedFormat":1},{"version":"3ddbdb519e87a7827c4f0c4007013f3628ca0ebb9e2b018cf31e5b2f61c593f1","affectsGlobalScope":true,"impliedFormat":1},{"version":"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb","impliedFormat":1},{"version":"6d498d4fd8036ea02a4edcae10375854a0eb1df0496cf0b9d692577d3c0fd603","affectsGlobalScope":true,"impliedFormat":1},{"version":"24642567d3729bcc545bacb65ee7c0db423400c7f1ef757cab25d05650064f98","impliedFormat":1},{"version":"fd09b892597ab93e7f79745ce725a3aaf6dd005e8db20f0c63a5d10984cba328","impliedFormat":1},{"version":"a3be878ff1e1964ab2dc8e0a3b67087cf838731c7f3d8f603337e7b712fdd558","impliedFormat":1},{"version":"5433f7f77cd1fd53f45bd82445a4e437b2f6a72a32070e907530a4fea56c30c8","impliedFormat":1},{"version":"9be74296ee565af0c12d7071541fdd23260f53c3da7731fb6361f61150a791f6","impliedFormat":1},{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true,"impliedFormat":1},{"version":"f501a53b94ba382d9ba396a5c486969a3abc68309828fa67f916035f5d37fe2b","affectsGlobalScope":true,"impliedFormat":1},{"version":"aa658b5d765f630c312ac9202d110bbaf2b82d180376457f0a9d57b42629714a","impliedFormat":1},{"version":"312ac7cbd070107766a9886fd27f9faad997ef57d93fdfb4095df2c618ac8162","impliedFormat":1},{"version":"2e9b4e7f9942af902eb85bae6066d04ef1afee51d61554a62d144df3da7dec94","impliedFormat":1},{"version":"672ad3045f329e94002256f8ed460cfd06173a50c92cde41edaadfacffd16808","impliedFormat":1},{"version":"64da4965d1e0559e134d9c1621ae400279a216f87ed00c4cce4f2c7c78021712","impliedFormat":1},{"version":"2205527b976f4f1844adc46a3f0528729fb68cac70027a5fb13c49ca23593797","impliedFormat":1},{"version":"0166fce1204d520fdfd6b5febb3cda3deee438bcbf8ce9ffeb2b1bcde7155346","affectsGlobalScope":true,"impliedFormat":1},{"version":"d8b13eab85b532285031b06a971fa051bf0175d8fff68065a24a6da9c1c986cf","impliedFormat":1},{"version":"50c382ba1827988c59aa9cc9d046e386d55d70f762e9e352e95ee8cb7337cdb8","impliedFormat":1},{"version":"bb9627ab9d078c79bb5623de4ac8e5d08f806ec9b970962dfc83b3211373690d","impliedFormat":1},{"version":"21d7e87f271e72d02f8d167edc902f90b04525edc7918f00f01dd0bd00599f7e","affectsGlobalScope":true,"impliedFormat":1},{"version":"6f6abdaf8764ef01a552a958f45e795b5e79153b87ddad3af5264b86d2681b72","affectsGlobalScope":true,"impliedFormat":1},{"version":"a215554477f7629e3dcbc8cde104bec036b78673650272f5ffdc5a2cee399a0a","impliedFormat":1},{"version":"c3497fc242aabfedcd430b5932412f94f157b5906568e737f6a18cc77b36a954","impliedFormat":1},{"version":"cdc1de3b672f9ef03ff15c443aa1b631edca35b6ae6970a7da6400647ff74d95","impliedFormat":1},{"version":"139ad1dc93a503da85b7a0d5f615bddbae61ad796bc68fedd049150db67a1e26","impliedFormat":1},{"version":"bf01fdd3b93cf633b3f7420718457af19c57ab8cbfea49268df60bae2e84d627","impliedFormat":1},{"version":"15c5e91b5f08be34a78e3d976179bf5b7a9cc28dc0ef1ffebffeb3c7812a2dca","impliedFormat":1},{"version":"5f461d6f5d9ff474f1121cc3fd86aa3cd67476c701f55c306d323c5112201207","impliedFormat":1},{"version":"65b39cc6b610a4a4aecc321f6efb436f10c0509d686124795b4c36a5e915b89e","impliedFormat":1},{"version":"269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","impliedFormat":1},{"version":"93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","impliedFormat":1},{"version":"83fe38aa2243059ea859325c006da3964ead69b773429fe049ebb0426e75424d","affectsGlobalScope":true,"impliedFormat":1},{"version":"d3edb86744e2c19f2c1503849ac7594a5e06024f2451bacae032390f2e20314a","impliedFormat":1},{"version":"e501cbca25bd54f0bcb89c00f092d3cae227e970b93fd76207287fd8110b123d","affectsGlobalScope":true,"impliedFormat":1},{"version":"8a3e61347b8f80aa5af532094498bceb0c0b257b25a6aa8ab4880fd6ed57c95a","affectsGlobalScope":true,"impliedFormat":1},{"version":"98e00f3613402504bc2a2c9a621800ab48e0a463d1eed062208a4ae98ad8f84c","impliedFormat":1},{"version":"950f6810f7c80e0cffefcf1bcc6ade3485c94394720e334c3c2be3c16b6922fb","impliedFormat":1},{"version":"5475df7cfc493a08483c9d7aa61cc04791aecba9d0a2efc213f23c4006d4d3cd","impliedFormat":1},{"version":"000720870b275764c65e9f28ac97cc9e4d9e4a36942d4750ca8603e416e9c57c","impliedFormat":1},{"version":"54412c70bacb9ed547ed6caae8836f712a83ccf58d94466f3387447ec4e82dc3","affectsGlobalScope":true,"impliedFormat":1},{"version":"e74e7b0baa7a24f073080091427d36a75836d584b9393e6ac2b1daf1647fe65a","affectsGlobalScope":true,"impliedFormat":1},{"version":"4c48e931a72f6971b5add7fdb1136be1d617f124594e94595f7114af749395e0","impliedFormat":1},{"version":"478eb5c32250678a906d91e0529c70243fc4d75477a08f3da408e2615396f558","impliedFormat":1},{"version":"e686a88c9ee004c8ba12ffc9d674ca3192a4c50ed0ca6bd5b2825c289e2b2bfe","impliedFormat":1},{"version":"0d27932df2fbc3728e78b98892540e24084424ce12d3bd32f62a23cf307f411f","affectsGlobalScope":true,"impliedFormat":1},{"version":"4423fb3d6abe6eefb8d7f79eb2df9510824a216ec1c6feee46718c9b18e6d89f","impliedFormat":1},{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true,"impliedFormat":1},{"version":"01c47d1c006b3a15b51d89d7764fff7e4fabc4e412b3a61ee5357bd74b822879","impliedFormat":1},{"version":"afe73051ff6a03a9565cbd8ebb0e956ee3df5e913ad5c1ded64218aabfa3dcb5","impliedFormat":1},{"version":"035a5df183489c2e22f3cf59fc1ed2b043d27f357eecc0eb8d8e840059d44245","impliedFormat":1},{"version":"a4809f4d92317535e6b22b01019437030077a76fec1d93b9881c9ed4738fcc54","impliedFormat":1},{"version":"5f53fa0bd22096d2a78533f94e02c899143b8f0f9891a46965294ee8b91a9434","impliedFormat":1},{"version":"cdcc132f207d097d7d3aa75615ab9a2e71d6a478162dde8b67f88ea19f3e54de","impliedFormat":1},{"version":"0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","impliedFormat":1},{"version":"c085e9aa62d1ae1375794c1fb927a445fa105fed891a7e24edbb1c3300f7384a","impliedFormat":1},{"version":"f315e1e65a1f80992f0509e84e4ae2df15ecd9ef73df975f7c98813b71e4c8da","impliedFormat":1},{"version":"5b9586e9b0b6322e5bfbd2c29bd3b8e21ab9d871f82346cb71020e3d84bae73e","impliedFormat":1},{"version":"3e70a7e67c2cb16f8cd49097360c0309fe9d1e3210ff9222e9dac1f8df9d4fb6","impliedFormat":1},{"version":"ab68d2a3e3e8767c3fba8f80de099a1cfc18c0de79e42cb02ae66e22dfe14a66","impliedFormat":1},{"version":"d96cc6598148bf1a98fb2e8dcf01c63a4b3558bdaec6ef35e087fd0562eb40ec","impliedFormat":1},{"version":"e9b76bb505b61fdb2b4347398776a0c3d081877cee7669f7ca09846aeb325c63","affectsGlobalScope":true,"impliedFormat":1},{"version":"f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","impliedFormat":1},{"version":"ab82804a14454734010dcdcd43f564ff7b0389bee4c5692eec76ff5b30d4cf66","impliedFormat":1},{"version":"7d2b7fe4adb76d8253f20e4dbdce044f1cdfab4902ec33c3604585f553883f7d","impliedFormat":1},{"version":"bae8d023ef6b23df7da26f51cea44321f95817c190342a36882e93b80d07a960","impliedFormat":1},{"version":"26a770cec4bd2e7dbba95c6e536390fffe83c6268b78974a93727903b515c4e7","impliedFormat":1}],"root":[82,83],"options":{"allowSyntheticDefaultImports":true,"composite":true,"declaration":true,"declarationDir":"./types","declarationMap":true,"esModuleInterop":true,"importHelpers":true,"jsx":1,"module":99,"outDir":"./esm","rootDir":"../src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":99},"referencedMap":[[87,1],[193,2],[90,3],[86,1],[88,4],[89,1],[186,5],[188,6],[189,7],[198,8],[92,9],[93,9],[133,10],[134,11],[135,12],[136,13],[137,14],[138,15],[139,16],[140,17],[141,18],[142,19],[143,19],[145,20],[144,21],[146,22],[147,23],[148,24],[132,25],[149,26],[150,27],[151,28],[185,29],[152,30],[153,31],[154,32],[155,33],[156,34],[157,35],[158,36],[159,37],[160,38],[161,39],[162,39],[163,40],[166,41],[168,42],[167,43],[169,44],[170,45],[171,46],[172,47],[173,48],[174,49],[175,50],[176,51],[177,52],[178,53],[179,54],[180,55],[181,56],[182,57],[183,58],[203,59],[197,60],[195,61],[196,62],[194,63],[110,64],[120,65],[109,64],[130,66],[101,67],[100,68],[129,69],[123,70],[128,71],[103,72],[117,73],[102,74],[126,75],[98,76],[97,77],[127,78],[99,79],[104,80],[108,80],[131,81],[121,82],[112,83],[113,84],[115,85],[111,86],[114,87],[124,69],[106,88],[107,89],[116,90],[96,91],[119,82],[118,80],[125,92],[81,93],[79,94],[82,95],[83,96]],"latestChangedDtsFile":"./types/entry.d.ts","version":"5.6.2"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { HostToken } from "@hantera/portal-contracts";
|
|
2
|
+
/**
|
|
3
|
+
* Generates the authorize URI pointing to the tenant's sign-in page.
|
|
4
|
+
* @param hostname
|
|
5
|
+
*/
|
|
6
|
+
export declare function authorize(clientId: string, hostname: string, redirectUri: string): Promise<string>;
|
|
7
|
+
export declare function handleAuthorizationResponse(code: string, state: string): Promise<HostToken>;
|
|
8
|
+
//# sourceMappingURL=authorize.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"authorize.d.ts","sourceRoot":"","sources":["../../src/authorize.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,SAAS,EAAC,MAAM,2BAA2B,CAAC;AAyCpD;;;GAGG;AACH,wBAAsB,SAAS,CAAC,QAAQ,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,EAAE,WAAW,EAAE,MAAM,mBAmBtF;AAED,wBAAsB,2BAA2B,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,sBAyC5E"}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { HostToken, User } from "@hantera/portal-contracts";
|
|
2
|
+
export interface HostClientOptions {
|
|
3
|
+
host: string;
|
|
4
|
+
path?: string;
|
|
5
|
+
theme?: 'light' | 'dark';
|
|
6
|
+
tokenGetter: () => HostToken | undefined;
|
|
7
|
+
tokenSetter: (token: HostToken) => void;
|
|
8
|
+
onExpiredSession?: () => void;
|
|
9
|
+
/**
|
|
10
|
+
* Called when user data has been loaded or updated
|
|
11
|
+
* @param user
|
|
12
|
+
* @returns
|
|
13
|
+
*/
|
|
14
|
+
onUserLoaded?: (user: User) => void;
|
|
15
|
+
onNavigated?: (path: string) => void;
|
|
16
|
+
onProcessBegin?: (id: string, description: string) => void;
|
|
17
|
+
onProcessFail?: (id: string, reason: string) => void;
|
|
18
|
+
onProcessSuccess?: (id: string, description?: string) => void;
|
|
19
|
+
/**
|
|
20
|
+
* Called when Portal encountered a general error to be displayed to the user
|
|
21
|
+
* @param reason for the error
|
|
22
|
+
*/
|
|
23
|
+
onError?: (id: string, description: string, reason?: string) => void;
|
|
24
|
+
}
|
|
25
|
+
export interface HostInstance {
|
|
26
|
+
attach(target: Element): void;
|
|
27
|
+
detach(): void;
|
|
28
|
+
open(path: string): void;
|
|
29
|
+
destroy(): void;
|
|
30
|
+
reload(): void;
|
|
31
|
+
setTheme(theme: 'system' | 'light' | 'dark'): void;
|
|
32
|
+
}
|
|
33
|
+
export { authorize, handleAuthorizationResponse } from './authorize';
|
|
34
|
+
export default function createHost(options: HostClientOptions): Promise<HostInstance | undefined>;
|
|
35
|
+
//# sourceMappingURL=entry.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"entry.d.ts","sourceRoot":"","sources":["../../src/entry.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,SAAS,EAAuB,IAAI,EAAC,MAAM,2BAA2B,CAAC;AAI/E,MAAM,WAAW,iBAAiB;IAChC,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,OAAO,GAAG,MAAM,CAAC;IACzB,WAAW,EAAE,MAAM,SAAS,GAAG,SAAS,CAAC;IACzC,WAAW,EAAE,CAAC,KAAK,EAAE,SAAS,KAAK,IAAI,CAAC;IACxC,gBAAgB,CAAC,EAAE,MAAM,IAAI,CAAC;IAE9B;;;;OAIG;IACH,YAAY,CAAC,EAAE,CAAC,IAAI,EAAE,IAAI,KAAK,IAAI,CAAC;IACpC,WAAW,CAAC,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI,CAAC;IAErC,cAAc,CAAC,EAAE,CAAC,EAAE,EAAE,MAAM,EAAE,WAAW,EAAE,MAAM,KAAK,IAAI,CAAC;IAC3D,aAAa,CAAC,EAAE,CAAC,EAAE,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,KAAK,IAAI,CAAC;IACrD,gBAAgB,CAAC,EAAE,CAAC,EAAE,EAAE,MAAM,EAAE,WAAW,CAAC,EAAE,MAAM,KAAK,IAAI,CAAC;IAC9D;;;OAGG;IACH,OAAO,CAAC,EAAE,CAAC,EAAE,EAAE,MAAM,EAAE,WAAW,EAAE,MAAM,EAAE,MAAM,CAAC,EAAE,MAAM,KAAK,IAAI,CAAC;CACtE;AAED,MAAM,WAAW,YAAY;IAC3B,MAAM,CAAC,MAAM,EAAE,OAAO,GAAG,IAAI,CAAC;IAC9B,MAAM,IAAI,IAAI,CAAC;IACf,IAAI,CAAC,IAAI,EAAE,MAAM,GAAG,IAAI,CAAC;IACzB,OAAO,IAAI,IAAI,CAAC;IAChB,MAAM,IAAI,IAAI,CAAC;IACf,QAAQ,CAAC,KAAK,EAAE,QAAQ,GAAG,OAAO,GAAG,MAAM,GAAG,IAAI,CAAC;CACpD;AAED,OAAO,EAAE,SAAS,EAAE,2BAA2B,EAAE,MAAM,aAAa,CAAC;AAErE,wBAA8B,UAAU,CAAC,OAAO,EAAE,iBAAiB,qCAuOlE"}
|
package/package.json
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@hantera/portal-host",
|
|
3
|
+
"version": "0.0.0",
|
|
4
|
+
"scripts": {
|
|
5
|
+
"build": "tsc --project tsconfig.cjs.json && tsc --project tsconfig.esm.json"
|
|
6
|
+
},
|
|
7
|
+
"author": "",
|
|
8
|
+
"license": "ISC",
|
|
9
|
+
"main": "dist/cjs/entry.js",
|
|
10
|
+
"module": "dist/esm/entry.js",
|
|
11
|
+
"types": "dist/types/entry.d.ts",
|
|
12
|
+
"exports": {
|
|
13
|
+
".": {
|
|
14
|
+
"import": "./dist/esm/entry.js",
|
|
15
|
+
"require": "./dist/cjs/entry.js"
|
|
16
|
+
}
|
|
17
|
+
},
|
|
18
|
+
"files": [
|
|
19
|
+
"dist/**/*.!(log)"
|
|
20
|
+
],
|
|
21
|
+
"dependencies": {
|
|
22
|
+
"@hantera/portal-contracts": "*",
|
|
23
|
+
"consola": "^2.15.3"
|
|
24
|
+
},
|
|
25
|
+
"devDependencies": {
|
|
26
|
+
"typescript": "^5.5.4"
|
|
27
|
+
}
|
|
28
|
+
}
|