@thoughtspot/visual-embed-sdk 1.28.4 → 1.28.5
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/cjs/package.json +1 -1
- package/cjs/src/authToken.d.ts.map +1 -1
- package/cjs/src/authToken.js +8 -1
- package/cjs/src/authToken.js.map +1 -1
- package/cjs/src/authToken.spec.d.ts +2 -0
- package/cjs/src/authToken.spec.d.ts.map +1 -0
- package/cjs/src/authToken.spec.js +29 -0
- package/cjs/src/authToken.spec.js.map +1 -0
- package/cjs/src/types.d.ts +93 -48
- package/cjs/src/types.d.ts.map +1 -1
- package/cjs/src/types.js +76 -48
- package/cjs/src/types.js.map +1 -1
- package/dist/src/authToken.d.ts.map +1 -1
- package/dist/src/authToken.spec.d.ts +2 -0
- package/dist/src/authToken.spec.d.ts.map +1 -0
- package/dist/src/types.d.ts +93 -48
- package/dist/src/types.d.ts.map +1 -1
- package/dist/tsembed-react.es.js +84 -50
- package/dist/tsembed-react.js +84 -50
- package/dist/tsembed.es.js +84 -50
- package/dist/tsembed.js +84 -50
- package/dist/visual-embed-sdk-react-full.d.ts +93 -48
- package/dist/visual-embed-sdk-react.d.ts +93 -48
- package/dist/visual-embed-sdk.d.ts +93 -48
- package/lib/package.json +1 -1
- package/lib/src/authToken.d.ts.map +1 -1
- package/lib/src/authToken.js +8 -1
- package/lib/src/authToken.js.map +1 -1
- package/lib/src/authToken.spec.d.ts +2 -0
- package/lib/src/authToken.spec.d.ts.map +1 -0
- package/lib/src/authToken.spec.js +26 -0
- package/lib/src/authToken.spec.js.map +1 -0
- package/lib/src/types.d.ts +93 -48
- package/lib/src/types.d.ts.map +1 -1
- package/lib/src/types.js +76 -48
- package/lib/src/types.js.map +1 -1
- package/lib/src/visual-embed-sdk.d.ts +93 -48
- package/package.json +1 -1
- package/src/authToken.spec.ts +31 -0
- package/src/authToken.ts +8 -1
- package/src/types.ts +94 -48
- package/cjs/src/utils/authService/tokenizedAuthService.spec.d.ts +0 -2
- package/cjs/src/utils/authService/tokenizedAuthService.spec.d.ts.map +0 -1
- package/cjs/src/utils/authService/tokenizedAuthService.spec.js +0 -32
- package/cjs/src/utils/authService/tokenizedAuthService.spec.js.map +0 -1
- package/cjs/src/utils/sessionInfoService.d.ts +0 -66
- package/cjs/src/utils/sessionInfoService.d.ts.map +0 -1
- package/cjs/src/utils/sessionInfoService.js +0 -92
- package/cjs/src/utils/sessionInfoService.js.map +0 -1
- package/dist/src/utils/authService/tokenizedAuthService.spec.d.ts +0 -2
- package/dist/src/utils/authService/tokenizedAuthService.spec.d.ts.map +0 -1
- package/dist/src/utils/sessionInfoService.d.ts +0 -66
- package/dist/src/utils/sessionInfoService.d.ts.map +0 -1
- package/lib/src/utils/authService/tokenizedAuthService.spec.d.ts +0 -2
- package/lib/src/utils/authService/tokenizedAuthService.spec.d.ts.map +0 -1
- package/lib/src/utils/authService/tokenizedAuthService.spec.js +0 -29
- package/lib/src/utils/authService/tokenizedAuthService.spec.js.map +0 -1
- package/lib/src/utils/sessionInfoService.d.ts +0 -66
- package/lib/src/utils/sessionInfoService.d.ts.map +0 -1
- package/lib/src/utils/sessionInfoService.js +0 -85
- package/lib/src/utils/sessionInfoService.js.map +0 -1
|
@@ -1,66 +0,0 @@
|
|
|
1
|
-
export type SessionInfo = {
|
|
2
|
-
releaseVersion: string;
|
|
3
|
-
userGUID: string;
|
|
4
|
-
currentOrgId: number;
|
|
5
|
-
privileges: string[];
|
|
6
|
-
mixpanelToken: string;
|
|
7
|
-
isPublicUser: boolean;
|
|
8
|
-
clusterId: string;
|
|
9
|
-
clusterName: string;
|
|
10
|
-
[key: string]: any;
|
|
11
|
-
};
|
|
12
|
-
/**
|
|
13
|
-
* Returns the session info object and caches it for future use.
|
|
14
|
-
* Once fetched the session info object is cached and returned from the cache on
|
|
15
|
-
* subsequent calls.
|
|
16
|
-
*
|
|
17
|
-
* @example ```js
|
|
18
|
-
* const sessionInfo = await getSessionInfo();
|
|
19
|
-
* console.log(sessionInfo);
|
|
20
|
-
* ```
|
|
21
|
-
* @version SDK: 1.28.3 | ThoughtSpot: *
|
|
22
|
-
* @returns {Promise<SessionInfo>} The session info object.
|
|
23
|
-
*/
|
|
24
|
-
export declare function getSessionInfo(): Promise<SessionInfo>;
|
|
25
|
-
/**
|
|
26
|
-
* Returns the cached session info object. If the client is not authenticated the
|
|
27
|
-
* function will return null.
|
|
28
|
-
*
|
|
29
|
-
* @example ```js
|
|
30
|
-
* const sessionInfo = getCachedSessionInfo();
|
|
31
|
-
* if (sessionInfo) {
|
|
32
|
-
* console.log(sessionInfo);
|
|
33
|
-
* } else {
|
|
34
|
-
* console.log('Not authenticated');
|
|
35
|
-
* }
|
|
36
|
-
* ```
|
|
37
|
-
* @returns {SessionInfo | null} The session info object.
|
|
38
|
-
* @version SDK: 1.28.3 | ThoughtSpot: *
|
|
39
|
-
*/
|
|
40
|
-
export declare function getCachedSessionInfo(): SessionInfo | null;
|
|
41
|
-
/**
|
|
42
|
-
* Processes the session info response and returns the session info object.
|
|
43
|
-
*
|
|
44
|
-
* @param sessionInfoResp {any} Response from the session info API.
|
|
45
|
-
* @returns {SessionInfo} The session info object.
|
|
46
|
-
* @example ```js
|
|
47
|
-
* const sessionInfoResp = await fetch(sessionInfoPath);
|
|
48
|
-
* const sessionInfo = getSessionDetails(sessionInfoResp);
|
|
49
|
-
* console.log(sessionInfo);
|
|
50
|
-
* ```
|
|
51
|
-
* @version SDK: 1.28.3 | ThoughtSpot: *
|
|
52
|
-
*/
|
|
53
|
-
export declare const getSessionDetails: (sessionInfoResp: any) => SessionInfo;
|
|
54
|
-
/**
|
|
55
|
-
* Resets the cached session info object and forces a new fetch on the next call.
|
|
56
|
-
*
|
|
57
|
-
* @example ```js
|
|
58
|
-
* resetCachedSessionInfo();
|
|
59
|
-
* const sessionInfo = await getSessionInfo();
|
|
60
|
-
* console.log(sessionInfo);
|
|
61
|
-
* ```
|
|
62
|
-
* @version SDK: 1.28.3 | ThoughtSpot ts7.april.cl, 7.2.1
|
|
63
|
-
* @returns {void}
|
|
64
|
-
*/
|
|
65
|
-
export declare function resetCachedSessionInfo(): void;
|
|
66
|
-
//# sourceMappingURL=sessionInfoService.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"sessionInfoService.d.ts","sourceRoot":"","sources":["sessionInfoService.ts"],"names":[],"mappings":"AAGA,MAAM,MAAM,WAAW,GAAG;IACtB,cAAc,EAAE,MAAM,CAAC;IACvB,QAAQ,EAAE,MAAM,CAAC;IACjB,YAAY,EAAE,MAAM,CAAC;IACrB,UAAU,EAAE,MAAM,EAAE,CAAC;IACrB,aAAa,EAAE,MAAM,CAAC;IACtB,YAAY,EAAE,OAAO,CAAC;IACtB,SAAS,EAAE,MAAM,CAAC;IAClB,WAAW,EAAE,MAAM,CAAC;IACpB,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;CACtB,CAAC;AAIF;;;;;;;;;;;GAWG;AACH,wBAAsB,cAAc,IAAI,OAAO,CAAC,WAAW,CAAC,CAQ3D;AAED;;;;;;;;;;;;;;GAcG;AACH,wBAAgB,oBAAoB,IAAI,WAAW,GAAG,IAAI,CAEzD;AAED;;;;;;;;;;;GAWG;AACH,eAAO,MAAM,iBAAiB,oBAAqB,GAAG,KAAG,WAexD,CAAC;AAEF;;;;;;;;;;GAUG;AACH,wBAAgB,sBAAsB,IAAI,IAAI,CAE7C"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"tokenizedAuthService.spec.d.ts","sourceRoot":"","sources":["../../../../src/utils/authService/tokenizedAuthService.spec.ts"],"names":[],"mappings":""}
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
import * as tokenizedFetchModule from '../../tokenizedFetch';
|
|
2
|
-
import { isActiveService } from './tokenizedAuthService';
|
|
3
|
-
import { logger } from '../logger';
|
|
4
|
-
describe('tokenizedAuthService', () => {
|
|
5
|
-
test('isActiveService is fetch returns ok', async () => {
|
|
6
|
-
jest.spyOn(tokenizedFetchModule, 'tokenizedFetch').mockResolvedValueOnce({
|
|
7
|
-
ok: true,
|
|
8
|
-
});
|
|
9
|
-
const isActiveResp = await isActiveService('http://thoughtspotHost');
|
|
10
|
-
expect(isActiveResp).toEqual(true);
|
|
11
|
-
});
|
|
12
|
-
test('isActiveService if fetch returns not ok', async () => {
|
|
13
|
-
jest.spyOn(tokenizedFetchModule, 'tokenizedFetch').mockResolvedValueOnce({
|
|
14
|
-
ok: false,
|
|
15
|
-
});
|
|
16
|
-
const isActiveResp = await isActiveService('http://thoughtspotHost');
|
|
17
|
-
expect(isActiveResp).toEqual(false);
|
|
18
|
-
});
|
|
19
|
-
test('isActiveService if fetch fails', async () => {
|
|
20
|
-
jest.spyOn(tokenizedFetchModule, 'tokenizedFetch').mockRejectedValueOnce({
|
|
21
|
-
ok: false,
|
|
22
|
-
});
|
|
23
|
-
jest.spyOn(logger, 'warn');
|
|
24
|
-
const isActiveResp = await isActiveService('http://thoughtspotHost');
|
|
25
|
-
expect(isActiveResp).toEqual(false);
|
|
26
|
-
expect(logger.warn).toHaveBeenCalled();
|
|
27
|
-
});
|
|
28
|
-
});
|
|
29
|
-
//# sourceMappingURL=tokenizedAuthService.spec.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"tokenizedAuthService.spec.js","sourceRoot":"","sources":["../../../../src/utils/authService/tokenizedAuthService.spec.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,oBAAoB,MAAM,sBAAsB,CAAC;AAC7D,OAAO,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AACzD,OAAO,EAAE,MAAM,EAAE,MAAM,WAAW,CAAC;AAEnC,QAAQ,CAAC,sBAAsB,EAAE,GAAG,EAAE;IAClC,IAAI,CAAC,qCAAqC,EAAE,KAAK,IAAI,EAAE;QACnD,IAAI,CAAC,KAAK,CAAC,oBAAoB,EAAE,gBAAgB,CAAC,CAAC,qBAAqB,CAAC;YACrE,EAAE,EAAE,IAAI;SACX,CAAC,CAAC;QAEH,MAAM,YAAY,GAAG,MAAM,eAAe,CAAC,wBAAwB,CAAC,CAAC;QAErE,MAAM,CAAC,YAAY,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;IACvC,CAAC,CAAC,CAAC;IACH,IAAI,CAAC,yCAAyC,EAAE,KAAK,IAAI,EAAE;QACvD,IAAI,CAAC,KAAK,CAAC,oBAAoB,EAAE,gBAAgB,CAAC,CAAC,qBAAqB,CAAC;YACrE,EAAE,EAAE,KAAK;SACZ,CAAC,CAAC;QAEH,MAAM,YAAY,GAAG,MAAM,eAAe,CAAC,wBAAwB,CAAC,CAAC;QAErE,MAAM,CAAC,YAAY,CAAC,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC;IACxC,CAAC,CAAC,CAAC;IAEH,IAAI,CAAC,gCAAgC,EAAE,KAAK,IAAI,EAAE;QAC9C,IAAI,CAAC,KAAK,CAAC,oBAAoB,EAAE,gBAAgB,CAAC,CAAC,qBAAqB,CAAC;YACrE,EAAE,EAAE,KAAK;SACZ,CAAC,CAAC;QACH,IAAI,CAAC,KAAK,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;QAE3B,MAAM,YAAY,GAAG,MAAM,eAAe,CAAC,wBAAwB,CAAC,CAAC;QAErE,MAAM,CAAC,YAAY,CAAC,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC;QACpC,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,gBAAgB,EAAE,CAAC;IAC3C,CAAC,CAAC,CAAC;AACP,CAAC,CAAC,CAAC"}
|
|
@@ -1,66 +0,0 @@
|
|
|
1
|
-
export type SessionInfo = {
|
|
2
|
-
releaseVersion: string;
|
|
3
|
-
userGUID: string;
|
|
4
|
-
currentOrgId: number;
|
|
5
|
-
privileges: string[];
|
|
6
|
-
mixpanelToken: string;
|
|
7
|
-
isPublicUser: boolean;
|
|
8
|
-
clusterId: string;
|
|
9
|
-
clusterName: string;
|
|
10
|
-
[key: string]: any;
|
|
11
|
-
};
|
|
12
|
-
/**
|
|
13
|
-
* Returns the session info object and caches it for future use.
|
|
14
|
-
* Once fetched the session info object is cached and returned from the cache on
|
|
15
|
-
* subsequent calls.
|
|
16
|
-
*
|
|
17
|
-
* @example ```js
|
|
18
|
-
* const sessionInfo = await getSessionInfo();
|
|
19
|
-
* console.log(sessionInfo);
|
|
20
|
-
* ```
|
|
21
|
-
* @version SDK: 1.28.3 | ThoughtSpot: *
|
|
22
|
-
* @returns {Promise<SessionInfo>} The session info object.
|
|
23
|
-
*/
|
|
24
|
-
export declare function getSessionInfo(): Promise<SessionInfo>;
|
|
25
|
-
/**
|
|
26
|
-
* Returns the cached session info object. If the client is not authenticated the
|
|
27
|
-
* function will return null.
|
|
28
|
-
*
|
|
29
|
-
* @example ```js
|
|
30
|
-
* const sessionInfo = getCachedSessionInfo();
|
|
31
|
-
* if (sessionInfo) {
|
|
32
|
-
* console.log(sessionInfo);
|
|
33
|
-
* } else {
|
|
34
|
-
* console.log('Not authenticated');
|
|
35
|
-
* }
|
|
36
|
-
* ```
|
|
37
|
-
* @returns {SessionInfo | null} The session info object.
|
|
38
|
-
* @version SDK: 1.28.3 | ThoughtSpot: *
|
|
39
|
-
*/
|
|
40
|
-
export declare function getCachedSessionInfo(): SessionInfo | null;
|
|
41
|
-
/**
|
|
42
|
-
* Processes the session info response and returns the session info object.
|
|
43
|
-
*
|
|
44
|
-
* @param sessionInfoResp {any} Response from the session info API.
|
|
45
|
-
* @returns {SessionInfo} The session info object.
|
|
46
|
-
* @example ```js
|
|
47
|
-
* const sessionInfoResp = await fetch(sessionInfoPath);
|
|
48
|
-
* const sessionInfo = getSessionDetails(sessionInfoResp);
|
|
49
|
-
* console.log(sessionInfo);
|
|
50
|
-
* ```
|
|
51
|
-
* @version SDK: 1.28.3 | ThoughtSpot: *
|
|
52
|
-
*/
|
|
53
|
-
export declare const getSessionDetails: (sessionInfoResp: any) => SessionInfo;
|
|
54
|
-
/**
|
|
55
|
-
* Resets the cached session info object and forces a new fetch on the next call.
|
|
56
|
-
*
|
|
57
|
-
* @example ```js
|
|
58
|
-
* resetCachedSessionInfo();
|
|
59
|
-
* const sessionInfo = await getSessionInfo();
|
|
60
|
-
* console.log(sessionInfo);
|
|
61
|
-
* ```
|
|
62
|
-
* @version SDK: 1.28.3 | ThoughtSpot ts7.april.cl, 7.2.1
|
|
63
|
-
* @returns {void}
|
|
64
|
-
*/
|
|
65
|
-
export declare function resetCachedSessionInfo(): void;
|
|
66
|
-
//# sourceMappingURL=sessionInfoService.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"sessionInfoService.d.ts","sourceRoot":"","sources":["../../../src/utils/sessionInfoService.ts"],"names":[],"mappings":"AAGA,MAAM,MAAM,WAAW,GAAG;IACtB,cAAc,EAAE,MAAM,CAAC;IACvB,QAAQ,EAAE,MAAM,CAAC;IACjB,YAAY,EAAE,MAAM,CAAC;IACrB,UAAU,EAAE,MAAM,EAAE,CAAC;IACrB,aAAa,EAAE,MAAM,CAAC;IACtB,YAAY,EAAE,OAAO,CAAC;IACtB,SAAS,EAAE,MAAM,CAAC;IAClB,WAAW,EAAE,MAAM,CAAC;IACpB,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;CACtB,CAAC;AAIF;;;;;;;;;;;GAWG;AACH,wBAAsB,cAAc,IAAI,OAAO,CAAC,WAAW,CAAC,CAQ3D;AAED;;;;;;;;;;;;;;GAcG;AACH,wBAAgB,oBAAoB,IAAI,WAAW,GAAG,IAAI,CAEzD;AAED;;;;;;;;;;;GAWG;AACH,eAAO,MAAM,iBAAiB,oBAAqB,GAAG,KAAG,WAexD,CAAC;AAEF;;;;;;;;;;GAUG;AACH,wBAAgB,sBAAsB,IAAI,IAAI,CAE7C"}
|
|
@@ -1,85 +0,0 @@
|
|
|
1
|
-
import { getEmbedConfig } from '../embed/embedConfig';
|
|
2
|
-
import { fetchSessionInfoService } from './authService';
|
|
3
|
-
let sessionInfo = null;
|
|
4
|
-
/**
|
|
5
|
-
* Returns the session info object and caches it for future use.
|
|
6
|
-
* Once fetched the session info object is cached and returned from the cache on
|
|
7
|
-
* subsequent calls.
|
|
8
|
-
*
|
|
9
|
-
* @example ```js
|
|
10
|
-
* const sessionInfo = await getSessionInfo();
|
|
11
|
-
* console.log(sessionInfo);
|
|
12
|
-
* ```
|
|
13
|
-
* @version SDK: 1.28.3 | ThoughtSpot: *
|
|
14
|
-
* @returns {Promise<SessionInfo>} The session info object.
|
|
15
|
-
*/
|
|
16
|
-
export async function getSessionInfo() {
|
|
17
|
-
if (!sessionInfo) {
|
|
18
|
-
const host = getEmbedConfig().thoughtSpotHost;
|
|
19
|
-
const sessionResponse = await fetchSessionInfoService(host);
|
|
20
|
-
const processedSessionInfo = getSessionDetails(sessionResponse);
|
|
21
|
-
sessionInfo = processedSessionInfo;
|
|
22
|
-
}
|
|
23
|
-
return sessionInfo;
|
|
24
|
-
}
|
|
25
|
-
/**
|
|
26
|
-
* Returns the cached session info object. If the client is not authenticated the
|
|
27
|
-
* function will return null.
|
|
28
|
-
*
|
|
29
|
-
* @example ```js
|
|
30
|
-
* const sessionInfo = getCachedSessionInfo();
|
|
31
|
-
* if (sessionInfo) {
|
|
32
|
-
* console.log(sessionInfo);
|
|
33
|
-
* } else {
|
|
34
|
-
* console.log('Not authenticated');
|
|
35
|
-
* }
|
|
36
|
-
* ```
|
|
37
|
-
* @returns {SessionInfo | null} The session info object.
|
|
38
|
-
* @version SDK: 1.28.3 | ThoughtSpot: *
|
|
39
|
-
*/
|
|
40
|
-
export function getCachedSessionInfo() {
|
|
41
|
-
return sessionInfo;
|
|
42
|
-
}
|
|
43
|
-
/**
|
|
44
|
-
* Processes the session info response and returns the session info object.
|
|
45
|
-
*
|
|
46
|
-
* @param sessionInfoResp {any} Response from the session info API.
|
|
47
|
-
* @returns {SessionInfo} The session info object.
|
|
48
|
-
* @example ```js
|
|
49
|
-
* const sessionInfoResp = await fetch(sessionInfoPath);
|
|
50
|
-
* const sessionInfo = getSessionDetails(sessionInfoResp);
|
|
51
|
-
* console.log(sessionInfo);
|
|
52
|
-
* ```
|
|
53
|
-
* @version SDK: 1.28.3 | ThoughtSpot: *
|
|
54
|
-
*/
|
|
55
|
-
export const getSessionDetails = (sessionInfoResp) => {
|
|
56
|
-
const devMixpanelToken = sessionInfoResp.configInfo.mixpanelConfig.devSdkKey;
|
|
57
|
-
const prodMixpanelToken = sessionInfoResp.configInfo.mixpanelConfig.prodSdkKey;
|
|
58
|
-
const mixpanelToken = sessionInfoResp.configInfo.mixpanelConfig.production
|
|
59
|
-
? prodMixpanelToken
|
|
60
|
-
: devMixpanelToken;
|
|
61
|
-
return {
|
|
62
|
-
userGUID: sessionInfoResp.userGUID,
|
|
63
|
-
mixpanelToken,
|
|
64
|
-
isPublicUser: sessionInfoResp.configInfo.isPublicUser,
|
|
65
|
-
releaseVersion: sessionInfoResp.releaseVersion,
|
|
66
|
-
clusterId: sessionInfoResp.configInfo.selfClusterId,
|
|
67
|
-
clusterName: sessionInfoResp.configInfo.selfClusterName,
|
|
68
|
-
...sessionInfoResp,
|
|
69
|
-
};
|
|
70
|
-
};
|
|
71
|
-
/**
|
|
72
|
-
* Resets the cached session info object and forces a new fetch on the next call.
|
|
73
|
-
*
|
|
74
|
-
* @example ```js
|
|
75
|
-
* resetCachedSessionInfo();
|
|
76
|
-
* const sessionInfo = await getSessionInfo();
|
|
77
|
-
* console.log(sessionInfo);
|
|
78
|
-
* ```
|
|
79
|
-
* @version SDK: 1.28.3 | ThoughtSpot ts7.april.cl, 7.2.1
|
|
80
|
-
* @returns {void}
|
|
81
|
-
*/
|
|
82
|
-
export function resetCachedSessionInfo() {
|
|
83
|
-
sessionInfo = null;
|
|
84
|
-
}
|
|
85
|
-
//# sourceMappingURL=sessionInfoService.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"sessionInfoService.js","sourceRoot":"","sources":["../../../src/utils/sessionInfoService.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,sBAAsB,CAAC;AACtD,OAAO,EAAE,uBAAuB,EAAE,MAAM,eAAe,CAAC;AAcxD,IAAI,WAAW,GAAuB,IAAI,CAAC;AAE3C;;;;;;;;;;;GAWG;AACH,MAAM,CAAC,KAAK,UAAU,cAAc;IAChC,IAAI,CAAC,WAAW,EAAE;QACd,MAAM,IAAI,GAAG,cAAc,EAAE,CAAC,eAAe,CAAC;QAC9C,MAAM,eAAe,GAAG,MAAM,uBAAuB,CAAC,IAAI,CAAC,CAAC;QAC5D,MAAM,oBAAoB,GAAG,iBAAiB,CAAC,eAAe,CAAC,CAAC;QAChE,WAAW,GAAG,oBAAoB,CAAC;KACtC;IACD,OAAO,WAAW,CAAC;AACvB,CAAC;AAED;;;;;;;;;;;;;;GAcG;AACH,MAAM,UAAU,oBAAoB;IAChC,OAAO,WAAW,CAAC;AACvB,CAAC;AAED;;;;;;;;;;;GAWG;AACH,MAAM,CAAC,MAAM,iBAAiB,GAAG,CAAC,eAAoB,EAAe,EAAE;IACnE,MAAM,gBAAgB,GAAG,eAAe,CAAC,UAAU,CAAC,cAAc,CAAC,SAAS,CAAC;IAC7E,MAAM,iBAAiB,GAAG,eAAe,CAAC,UAAU,CAAC,cAAc,CAAC,UAAU,CAAC;IAC/E,MAAM,aAAa,GAAG,eAAe,CAAC,UAAU,CAAC,cAAc,CAAC,UAAU;QACtE,CAAC,CAAC,iBAAiB;QACnB,CAAC,CAAC,gBAAgB,CAAC;IACvB,OAAO;QACH,QAAQ,EAAE,eAAe,CAAC,QAAQ;QAClC,aAAa;QACb,YAAY,EAAE,eAAe,CAAC,UAAU,CAAC,YAAY;QACrD,cAAc,EAAE,eAAe,CAAC,cAAc;QAC9C,SAAS,EAAE,eAAe,CAAC,UAAU,CAAC,aAAa;QACnD,WAAW,EAAE,eAAe,CAAC,UAAU,CAAC,eAAe;QACvD,GAAG,eAAe;KACrB,CAAC;AACN,CAAC,CAAC;AAEF;;;;;;;;;;GAUG;AACH,MAAM,UAAU,sBAAsB;IAClC,WAAW,GAAG,IAAI,CAAC;AACvB,CAAC"}
|