@arv-bedrock/auth-sso 0.2.7 → 0.2.9
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/auth.js +9 -5
- package/dist/cjs/index.js +13 -4
- package/dist/cjs/types/auth.d.ts +1 -1
- package/dist/cjs/types/auth.d.ts.map +1 -1
- package/dist/cjs/types/index.d.ts +2 -2
- package/dist/cjs/types/index.d.ts.map +1 -1
- package/dist/esm/auth.js +9 -5
- package/dist/esm/index.mjs +3 -3
- package/dist/esm/types/auth.d.ts +1 -1
- package/dist/esm/types/auth.d.ts.map +1 -1
- package/dist/esm/types/index.d.ts +2 -2
- package/dist/esm/types/index.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/cjs/auth.js
CHANGED
|
@@ -16,9 +16,13 @@ const _fetch_1 = __importDefault(require("./utils/_fetch"));
|
|
|
16
16
|
const constant_1 = require("./utils/constant");
|
|
17
17
|
class Auth {
|
|
18
18
|
constructor() {
|
|
19
|
-
this.doLogout = () => __awaiter(this, void 0, void 0, function* () {
|
|
19
|
+
this.doLogout = (redirectUrl) => __awaiter(this, void 0, void 0, function* () {
|
|
20
20
|
try {
|
|
21
21
|
yield this.clearCookie();
|
|
22
|
+
if (redirectUrl) {
|
|
23
|
+
window.location.href = redirectUrl;
|
|
24
|
+
return;
|
|
25
|
+
}
|
|
22
26
|
window.location.href = this.clientInit.logoutUrl;
|
|
23
27
|
}
|
|
24
28
|
catch (error) {
|
|
@@ -63,7 +67,7 @@ class Auth {
|
|
|
63
67
|
if (this.isCitizen()) {
|
|
64
68
|
target = `${this.authHost}/auth/${constant_1.CITIZEN}/login?redirectUri=${callbackURL}&client_id=${this.clientId}`;
|
|
65
69
|
}
|
|
66
|
-
window.location.
|
|
70
|
+
window.location.assign(target);
|
|
67
71
|
}
|
|
68
72
|
doRegister(redirectUrl = this.defaultCallback) {
|
|
69
73
|
let url = new URL(redirectUrl, window.location.origin).toString();
|
|
@@ -75,7 +79,7 @@ class Auth {
|
|
|
75
79
|
if (this.isCitizen()) {
|
|
76
80
|
location = `${this.authHost}/auth/${constant_1.CITIZEN}/main-register?redirectUri=${callbackURL}&client_id=${this.clientId}`;
|
|
77
81
|
}
|
|
78
|
-
window.location.
|
|
82
|
+
window.location.assign(location);
|
|
79
83
|
}
|
|
80
84
|
createQueryParam(data) {
|
|
81
85
|
const searchParams = new URLSearchParams();
|
|
@@ -120,7 +124,7 @@ class Auth {
|
|
|
120
124
|
return __awaiter(this, void 0, void 0, function* () {
|
|
121
125
|
try {
|
|
122
126
|
const result = yield (0, _fetch_1.default)(`${this.authHost}/api/v1/oauth/loginMethodRequest?${this.queryString}`);
|
|
123
|
-
window.location.
|
|
127
|
+
window.location.assign(result.data.redirectUri);
|
|
124
128
|
}
|
|
125
129
|
catch (err) {
|
|
126
130
|
console.log(err);
|
|
@@ -168,7 +172,7 @@ class Auth {
|
|
|
168
172
|
if (this.clientInit.isPortal) {
|
|
169
173
|
return this.doLogout();
|
|
170
174
|
}
|
|
171
|
-
window.location.
|
|
175
|
+
window.location.assign(`${this.clientInit.portalHomeUrl}?client_id=${this.clientId}&user_type=${this.userType}`);
|
|
172
176
|
}
|
|
173
177
|
verifyToken() {
|
|
174
178
|
return (0, _fetch_1.default)(`${this.authHost}/api/v1/oauth/verifyToken?${this.queryString}`, {
|
package/dist/cjs/index.js
CHANGED
|
@@ -1,12 +1,21 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
3
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
4
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
5
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
6
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
7
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
8
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
9
|
+
});
|
|
10
|
+
};
|
|
2
11
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
12
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
13
|
};
|
|
5
14
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
15
|
exports.updateProfile = exports.disabledAccount = exports.requestInviting = exports.verifyToken = exports.getRedirectUri = exports.doPortal = exports.getCode = exports.clearCookie = exports.getProfile = exports.setCookie = exports.doRegister = exports.doLogout = exports.doLogin = exports.initBedrockAuth = void 0;
|
|
7
16
|
const auth_1 = __importDefault(require("./auth"));
|
|
8
|
-
const initBedrockAuth = ({ authUri, clientId, clientSecret, callback, userType, }) => {
|
|
9
|
-
auth_1.default.init({
|
|
17
|
+
const initBedrockAuth = ({ authUri, clientId, clientSecret, callback, userType, }) => __awaiter(void 0, void 0, void 0, function* () {
|
|
18
|
+
yield auth_1.default.init({
|
|
10
19
|
authHost: authUri,
|
|
11
20
|
clientId,
|
|
12
21
|
clientSecret,
|
|
@@ -19,11 +28,11 @@ const initBedrockAuth = ({ authUri, clientId, clientSecret, callback, userType,
|
|
|
19
28
|
callback(error);
|
|
20
29
|
console.log(error);
|
|
21
30
|
});
|
|
22
|
-
};
|
|
31
|
+
});
|
|
23
32
|
exports.initBedrockAuth = initBedrockAuth;
|
|
24
33
|
const doLogin = (redirectUrl) => auth_1.default.doLogin(redirectUrl);
|
|
25
34
|
exports.doLogin = doLogin;
|
|
26
|
-
const doLogout = () => auth_1.default.doLogout();
|
|
35
|
+
const doLogout = (redirectUrl) => auth_1.default.doLogout(redirectUrl);
|
|
27
36
|
exports.doLogout = doLogout;
|
|
28
37
|
const doRegister = (redirectUrl) => auth_1.default.doRegister(redirectUrl);
|
|
29
38
|
exports.doRegister = doRegister;
|
package/dist/cjs/types/auth.d.ts
CHANGED
|
@@ -13,7 +13,7 @@ declare class Auth {
|
|
|
13
13
|
getRedirectUri(): string;
|
|
14
14
|
private removeUrlParam;
|
|
15
15
|
doLogin(redirectUrl?: string): void;
|
|
16
|
-
doLogout: () => Promise<void>;
|
|
16
|
+
doLogout: (redirectUrl?: string) => Promise<void>;
|
|
17
17
|
doRegister(redirectUrl?: string): void;
|
|
18
18
|
private createQueryParam;
|
|
19
19
|
init(options: Options): Promise<void | ResponseData<ClientInit>>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"auth.d.ts","sourceRoot":"","sources":["../../../auth.ts"],"names":[],"mappings":"AAQA,OAAO,EACL,mBAAmB,EACnB,UAAU,EACV,UAAU,EAEV,eAAe,EAEf,OAAO,EACP,YAAY,EACZ,aAAa,EAEd,MAAM,eAAe,CAAC;AAEvB,cAAM,IAAI;IACR,OAAO,CAAC,QAAQ,CAAW;IAE3B,OAAO,CAAC,QAAQ,CAAS;IAEzB,OAAO,CAAC,eAAe,CAAS;IAEhC,OAAO,CAAC,QAAQ,CAAS;IACzB,OAAO,CAAC,YAAY,CAAS;IAE7B,OAAO,CAAC,WAAW,CAAS;IAC5B,OAAO,CAAC,UAAU,CAAa;;IAY/B,SAAS;IAIF,OAAO;IAKP,cAAc;IAKrB,OAAO,CAAC,cAAc;IAUf,OAAO,CAAC,WAAW,GAAE,MAA6B;IAalD,QAAQ,
|
|
1
|
+
{"version":3,"file":"auth.d.ts","sourceRoot":"","sources":["../../../auth.ts"],"names":[],"mappings":"AAQA,OAAO,EACL,mBAAmB,EACnB,UAAU,EACV,UAAU,EAEV,eAAe,EAEf,OAAO,EACP,YAAY,EACZ,aAAa,EAEd,MAAM,eAAe,CAAC;AAEvB,cAAM,IAAI;IACR,OAAO,CAAC,QAAQ,CAAW;IAE3B,OAAO,CAAC,QAAQ,CAAS;IAEzB,OAAO,CAAC,eAAe,CAAS;IAEhC,OAAO,CAAC,QAAQ,CAAS;IACzB,OAAO,CAAC,YAAY,CAAS;IAE7B,OAAO,CAAC,WAAW,CAAS;IAC5B,OAAO,CAAC,UAAU,CAAa;;IAY/B,SAAS;IAIF,OAAO;IAKP,cAAc;IAKrB,OAAO,CAAC,cAAc;IAUf,OAAO,CAAC,WAAW,GAAE,MAA6B;IAalD,QAAQ,iBAAwB,MAAM,mBAW3C;IAEK,UAAU,CAAC,WAAW,GAAE,MAA6B;IAc5D,OAAO,CAAC,gBAAgB;IAQX,IAAI,CAAC,OAAO,EAAE,OAAO;IAkBrB,SAAS,CAAC,IAAI,EAAE,MAAM;YAiBrB,oBAAoB;IAalC,OAAO,CAAC,QAAQ;IAIH,aAAa;YAOZ,aAAa;IAQd,WAAW;IASX,UAAU;IAahB,QAAQ;IASR,WAAW;IASX,eAAe,CAAC,KAAK,EAAE,MAAM;IAU7B,aAAa,CAAC,IAAI,EAAE,aAAa;IAoBjC,eAAe,CAAC,IAAI,EAAE,eAAe;CAW7C;AAED,QAAA,MAAM,WAAW,MAAa,CAAC;AAE/B,eAAe,WAAW,CAAC"}
|
|
@@ -6,9 +6,9 @@ export type AuthProps = {
|
|
|
6
6
|
clientSecret: string;
|
|
7
7
|
callback: (error?: any) => void;
|
|
8
8
|
};
|
|
9
|
-
export declare const initBedrockAuth: ({ authUri, clientId, clientSecret, callback, userType, }: AuthProps) => void
|
|
9
|
+
export declare const initBedrockAuth: ({ authUri, clientId, clientSecret, callback, userType, }: AuthProps) => Promise<void>;
|
|
10
10
|
export declare const doLogin: (redirectUrl?: string) => void;
|
|
11
|
-
export declare const doLogout: () => Promise<void>;
|
|
11
|
+
export declare const doLogout: (redirectUrl?: string) => Promise<void>;
|
|
12
12
|
export declare const doRegister: (redirectUrl?: string) => void;
|
|
13
13
|
export declare const setCookie: (code: string) => Promise<void>;
|
|
14
14
|
export declare const getProfile: () => Promise<import("./utils/types").ResponseData<import("./utils/types").AuthServiceResponse> | undefined>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,eAAe,EAAE,aAAa,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAC;AAEzE,MAAM,MAAM,SAAS,GAAG;IACtB,QAAQ,CAAC,EAAE,QAAQ,CAAC;IACpB,OAAO,EAAE,MAAM,CAAC;IAChB,QAAQ,EAAE,MAAM,CAAC;IACjB,YAAY,EAAE,MAAM,CAAC;IACrB,QAAQ,EAAE,CAAC,KAAK,CAAC,EAAE,GAAG,KAAK,IAAI,CAAC;CACjC,CAAC;AAEF,eAAO,MAAM,eAAe,6DAMzB,SAAS,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,eAAe,EAAE,aAAa,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAC;AAEzE,MAAM,MAAM,SAAS,GAAG;IACtB,QAAQ,CAAC,EAAE,QAAQ,CAAC;IACpB,OAAO,EAAE,MAAM,CAAC;IAChB,QAAQ,EAAE,MAAM,CAAC;IACjB,YAAY,EAAE,MAAM,CAAC;IACrB,QAAQ,EAAE,CAAC,KAAK,CAAC,EAAE,GAAG,KAAK,IAAI,CAAC;CACjC,CAAC;AAEF,eAAO,MAAM,eAAe,6DAMzB,SAAS,kBAcX,CAAC;AAEF,eAAO,MAAM,OAAO,iBAAkB,MAAM,SAA4B,CAAC;AAEzE,eAAO,MAAM,QAAQ,iBAAkB,MAAM,kBAA6B,CAAC;AAE3E,eAAO,MAAM,UAAU,iBAAkB,MAAM,SAA+B,CAAC;AAE/E,eAAO,MAAM,SAAS,SAAU,MAAM,kBAAuB,CAAC;AAE9D,eAAO,MAAM,UAAU,8GAAwB,CAAC;AAEhD,eAAO,MAAM,WAAW,qBAAyB,CAAC;AAElD,eAAO,MAAM,OAAO,cAAqB,CAAC;AAE1C,eAAO,MAAM,QAAQ,iCAAsB,CAAC;AAE5C,eAAO,MAAM,cAAc,cAA4B,CAAC;AAExD,eAAO,MAAM,WAAW,yDAAyB,CAAC;AAElD,eAAO,MAAM,eAAe,UAAW,MAAM,sDAA8B,CAAC;AAE5E,eAAO,MAAM,eAAe,SAAU,eAAe,sDAC3B,CAAC;AAE3B,eAAO,MAAM,aAAa,SAAU,aAAa,sDAA2B,CAAC"}
|
package/dist/esm/auth.js
CHANGED
|
@@ -47,11 +47,15 @@ class Auth {
|
|
|
47
47
|
if (this.isCitizen()) {
|
|
48
48
|
target = `${this.authHost}/auth/${CITIZEN}/login?redirectUri=${callbackURL}&client_id=${this.clientId}`;
|
|
49
49
|
}
|
|
50
|
-
window.location.
|
|
50
|
+
window.location.assign(target);
|
|
51
51
|
}
|
|
52
|
-
doLogout = async () => {
|
|
52
|
+
doLogout = async (redirectUrl) => {
|
|
53
53
|
try {
|
|
54
54
|
await this.clearCookie();
|
|
55
|
+
if (redirectUrl) {
|
|
56
|
+
window.location.href = redirectUrl;
|
|
57
|
+
return;
|
|
58
|
+
}
|
|
55
59
|
window.location.href = this.clientInit.logoutUrl;
|
|
56
60
|
}
|
|
57
61
|
catch (error) {
|
|
@@ -68,7 +72,7 @@ class Auth {
|
|
|
68
72
|
if (this.isCitizen()) {
|
|
69
73
|
location = `${this.authHost}/auth/${CITIZEN}/main-register?redirectUri=${callbackURL}&client_id=${this.clientId}`;
|
|
70
74
|
}
|
|
71
|
-
window.location.
|
|
75
|
+
window.location.assign(location);
|
|
72
76
|
}
|
|
73
77
|
createQueryParam(data) {
|
|
74
78
|
const searchParams = new URLSearchParams();
|
|
@@ -108,7 +112,7 @@ class Auth {
|
|
|
108
112
|
async doLoginMethodReqeust() {
|
|
109
113
|
try {
|
|
110
114
|
const result = await customFetch(`${this.authHost}/api/v1/oauth/loginMethodRequest?${this.queryString}`);
|
|
111
|
-
window.location.
|
|
115
|
+
window.location.assign(result.data.redirectUri);
|
|
112
116
|
}
|
|
113
117
|
catch (err) {
|
|
114
118
|
console.log(err);
|
|
@@ -147,7 +151,7 @@ class Auth {
|
|
|
147
151
|
if (this.clientInit.isPortal) {
|
|
148
152
|
return this.doLogout();
|
|
149
153
|
}
|
|
150
|
-
window.location.
|
|
154
|
+
window.location.assign(`${this.clientInit.portalHomeUrl}?client_id=${this.clientId}&user_type=${this.userType}`);
|
|
151
155
|
}
|
|
152
156
|
verifyToken() {
|
|
153
157
|
return customFetch(`${this.authHost}/api/v1/oauth/verifyToken?${this.queryString}`, {
|
package/dist/esm/index.mjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import BR from "./auth";
|
|
2
|
-
export const initBedrockAuth = ({ authUri, clientId, clientSecret, callback, userType, }) => {
|
|
3
|
-
BR.init({
|
|
2
|
+
export const initBedrockAuth = async ({ authUri, clientId, clientSecret, callback, userType, }) => {
|
|
3
|
+
await BR.init({
|
|
4
4
|
authHost: authUri,
|
|
5
5
|
clientId,
|
|
6
6
|
clientSecret,
|
|
@@ -15,7 +15,7 @@ export const initBedrockAuth = ({ authUri, clientId, clientSecret, callback, use
|
|
|
15
15
|
});
|
|
16
16
|
};
|
|
17
17
|
export const doLogin = (redirectUrl) => BR.doLogin(redirectUrl);
|
|
18
|
-
export const doLogout = () => BR.doLogout();
|
|
18
|
+
export const doLogout = (redirectUrl) => BR.doLogout(redirectUrl);
|
|
19
19
|
export const doRegister = (redirectUrl) => BR.doRegister(redirectUrl);
|
|
20
20
|
export const setCookie = (code) => BR.setCookie(code);
|
|
21
21
|
export const getProfile = () => BR.getProfile();
|
package/dist/esm/types/auth.d.ts
CHANGED
|
@@ -13,7 +13,7 @@ declare class Auth {
|
|
|
13
13
|
getRedirectUri(): string;
|
|
14
14
|
private removeUrlParam;
|
|
15
15
|
doLogin(redirectUrl?: string): void;
|
|
16
|
-
doLogout: () => Promise<void>;
|
|
16
|
+
doLogout: (redirectUrl?: string) => Promise<void>;
|
|
17
17
|
doRegister(redirectUrl?: string): void;
|
|
18
18
|
private createQueryParam;
|
|
19
19
|
init(options: Options): Promise<void | ResponseData<ClientInit>>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"auth.d.ts","sourceRoot":"","sources":["../../../auth.ts"],"names":[],"mappings":"AAQA,OAAO,EACL,mBAAmB,EACnB,UAAU,EACV,UAAU,EAEV,eAAe,EAEf,OAAO,EACP,YAAY,EACZ,aAAa,EAEd,MAAM,eAAe,CAAC;AAEvB,cAAM,IAAI;IACR,OAAO,CAAC,QAAQ,CAAW;IAE3B,OAAO,CAAC,QAAQ,CAAS;IAEzB,OAAO,CAAC,eAAe,CAAS;IAEhC,OAAO,CAAC,QAAQ,CAAS;IACzB,OAAO,CAAC,YAAY,CAAS;IAE7B,OAAO,CAAC,WAAW,CAAS;IAC5B,OAAO,CAAC,UAAU,CAAa;;IAY/B,SAAS;IAIF,OAAO;IAKP,cAAc;IAKrB,OAAO,CAAC,cAAc;IAUf,OAAO,CAAC,WAAW,GAAE,MAA6B;IAalD,QAAQ,
|
|
1
|
+
{"version":3,"file":"auth.d.ts","sourceRoot":"","sources":["../../../auth.ts"],"names":[],"mappings":"AAQA,OAAO,EACL,mBAAmB,EACnB,UAAU,EACV,UAAU,EAEV,eAAe,EAEf,OAAO,EACP,YAAY,EACZ,aAAa,EAEd,MAAM,eAAe,CAAC;AAEvB,cAAM,IAAI;IACR,OAAO,CAAC,QAAQ,CAAW;IAE3B,OAAO,CAAC,QAAQ,CAAS;IAEzB,OAAO,CAAC,eAAe,CAAS;IAEhC,OAAO,CAAC,QAAQ,CAAS;IACzB,OAAO,CAAC,YAAY,CAAS;IAE7B,OAAO,CAAC,WAAW,CAAS;IAC5B,OAAO,CAAC,UAAU,CAAa;;IAY/B,SAAS;IAIF,OAAO;IAKP,cAAc;IAKrB,OAAO,CAAC,cAAc;IAUf,OAAO,CAAC,WAAW,GAAE,MAA6B;IAalD,QAAQ,iBAAwB,MAAM,mBAW3C;IAEK,UAAU,CAAC,WAAW,GAAE,MAA6B;IAc5D,OAAO,CAAC,gBAAgB;IAQX,IAAI,CAAC,OAAO,EAAE,OAAO;IAkBrB,SAAS,CAAC,IAAI,EAAE,MAAM;YAiBrB,oBAAoB;IAalC,OAAO,CAAC,QAAQ;IAIH,aAAa;YAOZ,aAAa;IAQd,WAAW;IASX,UAAU;IAahB,QAAQ;IASR,WAAW;IASX,eAAe,CAAC,KAAK,EAAE,MAAM;IAU7B,aAAa,CAAC,IAAI,EAAE,aAAa;IAoBjC,eAAe,CAAC,IAAI,EAAE,eAAe;CAW7C;AAED,QAAA,MAAM,WAAW,MAAa,CAAC;AAE/B,eAAe,WAAW,CAAC"}
|
|
@@ -6,9 +6,9 @@ export type AuthProps = {
|
|
|
6
6
|
clientSecret: string;
|
|
7
7
|
callback: (error?: any) => void;
|
|
8
8
|
};
|
|
9
|
-
export declare const initBedrockAuth: ({ authUri, clientId, clientSecret, callback, userType, }: AuthProps) => void
|
|
9
|
+
export declare const initBedrockAuth: ({ authUri, clientId, clientSecret, callback, userType, }: AuthProps) => Promise<void>;
|
|
10
10
|
export declare const doLogin: (redirectUrl?: string) => void;
|
|
11
|
-
export declare const doLogout: () => Promise<void>;
|
|
11
|
+
export declare const doLogout: (redirectUrl?: string) => Promise<void>;
|
|
12
12
|
export declare const doRegister: (redirectUrl?: string) => void;
|
|
13
13
|
export declare const setCookie: (code: string) => Promise<void>;
|
|
14
14
|
export declare const getProfile: () => Promise<import("./utils/types").ResponseData<import("./utils/types").AuthServiceResponse> | undefined>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,eAAe,EAAE,aAAa,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAC;AAEzE,MAAM,MAAM,SAAS,GAAG;IACtB,QAAQ,CAAC,EAAE,QAAQ,CAAC;IACpB,OAAO,EAAE,MAAM,CAAC;IAChB,QAAQ,EAAE,MAAM,CAAC;IACjB,YAAY,EAAE,MAAM,CAAC;IACrB,QAAQ,EAAE,CAAC,KAAK,CAAC,EAAE,GAAG,KAAK,IAAI,CAAC;CACjC,CAAC;AAEF,eAAO,MAAM,eAAe,6DAMzB,SAAS,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,eAAe,EAAE,aAAa,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAC;AAEzE,MAAM,MAAM,SAAS,GAAG;IACtB,QAAQ,CAAC,EAAE,QAAQ,CAAC;IACpB,OAAO,EAAE,MAAM,CAAC;IAChB,QAAQ,EAAE,MAAM,CAAC;IACjB,YAAY,EAAE,MAAM,CAAC;IACrB,QAAQ,EAAE,CAAC,KAAK,CAAC,EAAE,GAAG,KAAK,IAAI,CAAC;CACjC,CAAC;AAEF,eAAO,MAAM,eAAe,6DAMzB,SAAS,kBAcX,CAAC;AAEF,eAAO,MAAM,OAAO,iBAAkB,MAAM,SAA4B,CAAC;AAEzE,eAAO,MAAM,QAAQ,iBAAkB,MAAM,kBAA6B,CAAC;AAE3E,eAAO,MAAM,UAAU,iBAAkB,MAAM,SAA+B,CAAC;AAE/E,eAAO,MAAM,SAAS,SAAU,MAAM,kBAAuB,CAAC;AAE9D,eAAO,MAAM,UAAU,8GAAwB,CAAC;AAEhD,eAAO,MAAM,WAAW,qBAAyB,CAAC;AAElD,eAAO,MAAM,OAAO,cAAqB,CAAC;AAE1C,eAAO,MAAM,QAAQ,iCAAsB,CAAC;AAE5C,eAAO,MAAM,cAAc,cAA4B,CAAC;AAExD,eAAO,MAAM,WAAW,yDAAyB,CAAC;AAElD,eAAO,MAAM,eAAe,UAAW,MAAM,sDAA8B,CAAC;AAE5E,eAAO,MAAM,eAAe,SAAU,eAAe,sDAC3B,CAAC;AAE3B,eAAO,MAAM,aAAa,SAAU,aAAa,sDAA2B,CAAC"}
|