@aneuhold/core-ts-api-lib 1.0.15 → 1.0.17
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/lib/index.d.ts +2 -2
- package/lib/index.d.ts.map +1 -1
- package/lib/services/APIService/APIService.d.ts +2 -2
- package/lib/services/DOFunctionService/DOFunction.d.ts +23 -3
- package/lib/services/DOFunctionService/DOFunction.d.ts.map +1 -1
- package/lib/services/DOFunctionService/DOFunction.js +9 -3
- package/lib/services/DOFunctionService/DOFunctionService.d.ts +10 -0
- package/lib/services/DOFunctionService/DOFunctionService.d.ts.map +1 -1
- package/lib/services/DOFunctionService/DOFunctionService.js +29 -0
- package/lib/services/DOFunctionService/functions/authValidateUser.d.ts +0 -1
- package/lib/services/DOFunctionService/functions/authValidateUser.d.ts.map +1 -1
- package/lib/services/DOFunctionService/functions/projectDashboard.d.ts +3 -6
- package/lib/services/DOFunctionService/functions/projectDashboard.d.ts.map +1 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import APIService from './services/APIService/APIService';
|
|
2
|
-
import { DOFunctionRawOutput } from './services/DOFunctionService/DOFunction';
|
|
2
|
+
import { DOFunctionCallOutput, DOFunctionRawInput, DOFunctionRawOutput } from './services/DOFunctionService/DOFunction';
|
|
3
3
|
import DOFunctionService from './services/DOFunctionService/DOFunctionService';
|
|
4
4
|
import { AuthCheckPasswordInput, AuthCheckPasswordOutput } from './services/DOFunctionService/functions/authCheckPassword';
|
|
5
5
|
import { AuthValidateUserInput, AuthValidateUserOutput } from './services/DOFunctionService/functions/authValidateUser';
|
|
@@ -7,5 +7,5 @@ import { ProjectDashboardInput, ProjectDashboardOptions, ProjectDashboardOutput
|
|
|
7
7
|
import { DashboardConfig } from './types/DashboardConfig';
|
|
8
8
|
import { Translation, Translations } from './types/Translations';
|
|
9
9
|
export { DOFunctionService, APIService };
|
|
10
|
-
export type { DOFunctionRawOutput, AuthCheckPasswordInput, AuthCheckPasswordOutput, AuthValidateUserInput, AuthValidateUserOutput, ProjectDashboardInput, ProjectDashboardOutput, ProjectDashboardOptions, DashboardConfig, Translations, Translation };
|
|
10
|
+
export type { DOFunctionRawInput, DOFunctionRawOutput, DOFunctionCallOutput, AuthCheckPasswordInput, AuthCheckPasswordOutput, AuthValidateUserInput, AuthValidateUserOutput, ProjectDashboardInput, ProjectDashboardOutput, ProjectDashboardOptions, DashboardConfig, Translations, Translation };
|
|
11
11
|
//# sourceMappingURL=index.d.ts.map
|
package/lib/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,UAAU,MAAM,kCAAkC,CAAC;AAC1D,OAAO,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,UAAU,MAAM,kCAAkC,CAAC;AAC1D,OAAO,EACL,oBAAoB,EACpB,kBAAkB,EAClB,mBAAmB,EACpB,MAAM,yCAAyC,CAAC;AACjD,OAAO,iBAAiB,MAAM,gDAAgD,CAAC;AAC/E,OAAO,EACL,sBAAsB,EACtB,uBAAuB,EACxB,MAAM,0DAA0D,CAAC;AAClE,OAAO,EACL,qBAAqB,EACrB,sBAAsB,EACvB,MAAM,yDAAyD,CAAC;AACjE,OAAO,EACL,qBAAqB,EACrB,uBAAuB,EACvB,sBAAsB,EACvB,MAAM,yDAAyD,CAAC;AACjE,OAAO,EAAE,eAAe,EAAE,MAAM,yBAAyB,CAAC;AAC1D,OAAO,EAAE,WAAW,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAC;AAGjE,OAAO,EAAE,iBAAiB,EAAE,UAAU,EAAE,CAAC;AAGzC,YAAY,EACV,kBAAkB,EAClB,mBAAmB,EACnB,oBAAoB,EACpB,sBAAsB,EACtB,uBAAuB,EACvB,qBAAqB,EACrB,sBAAsB,EACtB,qBAAqB,EACrB,sBAAsB,EACtB,uBAAuB,EACvB,eAAe,EACf,YAAY,EACZ,WAAW,EACZ,CAAC"}
|
|
@@ -9,12 +9,12 @@ export default class APIService {
|
|
|
9
9
|
* Validates the provided username and password against the database and
|
|
10
10
|
* returns the user's information if successful.
|
|
11
11
|
*/
|
|
12
|
-
static validateUser(input: AuthValidateUserInput): Promise<import("../DOFunctionService/functions/authValidateUser").AuthValidateUserOutput
|
|
12
|
+
static validateUser(input: AuthValidateUserInput): Promise<import("../..").DOFunctionCallOutput<import("../DOFunctionService/functions/authValidateUser").AuthValidateUserOutput>>;
|
|
13
13
|
static setDashboardAPIUrl(url: string): void;
|
|
14
14
|
/**
|
|
15
15
|
* Calls the dashboard API and returns the result. This will fail if the
|
|
16
16
|
* dashboard API URL has not been set. See {@link setDashboardAPIUrl}.
|
|
17
17
|
*/
|
|
18
|
-
static callDashboardAPI(input: ProjectDashboardInput): Promise<import("../DOFunctionService/functions/projectDashboard").ProjectDashboardOutput
|
|
18
|
+
static callDashboardAPI(input: ProjectDashboardInput): Promise<import("../..").DOFunctionCallOutput<import("../DOFunctionService/functions/projectDashboard").ProjectDashboardOutput>>;
|
|
19
19
|
}
|
|
20
20
|
//# sourceMappingURL=APIService.d.ts.map
|
|
@@ -8,16 +8,36 @@ export type DOFunctionInput = object;
|
|
|
8
8
|
* property.
|
|
9
9
|
*/
|
|
10
10
|
export type DOFunctionOutput = object;
|
|
11
|
+
/**
|
|
12
|
+
* Raw input to a Digital Ocean function will always have a data property
|
|
13
|
+
* which is a string. This string must be parsed using EJSON.parse.
|
|
14
|
+
*/
|
|
15
|
+
export interface DOFunctionRawInput {
|
|
16
|
+
data: string;
|
|
17
|
+
}
|
|
11
18
|
/**
|
|
12
19
|
* Raw output from a Digital Ocean function must always be an object with
|
|
13
20
|
* a body property. The body property must also be an object.
|
|
14
21
|
*/
|
|
15
|
-
export interface DOFunctionRawOutput
|
|
22
|
+
export interface DOFunctionRawOutput {
|
|
16
23
|
/**
|
|
17
24
|
* The body is an object, which means it will automatically be serialized to
|
|
18
25
|
* JSON and the Content-Type header will be set to application/json.
|
|
26
|
+
*
|
|
27
|
+
* Because the output typically depends on bson, the data must be serialized
|
|
28
|
+
* to EJSON using the EJSON.stringify. Then when it is received, it must be
|
|
29
|
+
* parsed using EJSON.parse.
|
|
19
30
|
*/
|
|
20
|
-
body:
|
|
31
|
+
body: {
|
|
32
|
+
success: boolean;
|
|
33
|
+
errors: string[];
|
|
34
|
+
data: string;
|
|
35
|
+
};
|
|
36
|
+
}
|
|
37
|
+
export interface DOFunctionCallOutput<TOutput extends DOFunctionOutput> {
|
|
38
|
+
success: boolean;
|
|
39
|
+
errors: string[];
|
|
40
|
+
data: TOutput;
|
|
21
41
|
}
|
|
22
42
|
/**
|
|
23
43
|
* An abstract class that can be extended to define a Digital Ocean
|
|
@@ -34,6 +54,6 @@ export default abstract class DOFunction<TInput extends DOFunctionInput, TOutput
|
|
|
34
54
|
/**
|
|
35
55
|
* A generic call method for any digital ocean function.
|
|
36
56
|
*/
|
|
37
|
-
call(input: TInput): Promise<TOutput
|
|
57
|
+
call(input: TInput): Promise<DOFunctionCallOutput<TOutput>>;
|
|
38
58
|
}
|
|
39
59
|
//# sourceMappingURL=DOFunction.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DOFunction.d.ts","sourceRoot":"","sources":["../../../src/services/DOFunctionService/DOFunction.ts"],"names":[],"mappings":"AAEA;;GAEG;AACH,MAAM,MAAM,eAAe,GAAG,MAAM,CAAC;AAErC;;;;GAIG;AACH,MAAM,MAAM,gBAAgB,GAAG,MAAM,CAAC;AAEtC;;;GAGG;AACH,MAAM,WAAW,mBAAmB,CAAC,OAAO,SAAS,gBAAgB;
|
|
1
|
+
{"version":3,"file":"DOFunction.d.ts","sourceRoot":"","sources":["../../../src/services/DOFunctionService/DOFunction.ts"],"names":[],"mappings":"AAEA;;GAEG;AACH,MAAM,MAAM,eAAe,GAAG,MAAM,CAAC;AAErC;;;;GAIG;AACH,MAAM,MAAM,gBAAgB,GAAG,MAAM,CAAC;AAEtC;;;GAGG;AACH,MAAM,WAAW,kBAAkB;IACjC,IAAI,EAAE,MAAM,CAAC;CACd;AAED;;;GAGG;AACH,MAAM,WAAW,mBAAmB;IAClC;;;;;;;OAOG;IACH,IAAI,EAAE;QACJ,OAAO,EAAE,OAAO,CAAC;QACjB,MAAM,EAAE,MAAM,EAAE,CAAC;QACjB,IAAI,EAAE,MAAM,CAAC;KACd,CAAC;CACH;AAED,MAAM,WAAW,oBAAoB,CAAC,OAAO,SAAS,gBAAgB;IACpE,OAAO,EAAE,OAAO,CAAC;IACjB,MAAM,EAAE,MAAM,EAAE,CAAC;IACjB,IAAI,EAAE,OAAO,CAAC;CACf;AAED;;;GAGG;AACH,MAAM,CAAC,OAAO,CAAC,QAAQ,OAAO,UAAU,CACtC,MAAM,SAAS,eAAe,EAC9B,OAAO,SAAS,gBAAgB;IAEhC;;OAEG;IACH,SAAS,CAAC,GAAG,CAAC,EAAE,MAAM,CAAC;IAEvB,SAAS,CAAC,YAAY,EAAE,MAAM,CAAC;IAE/B,SAAS;IAIT,MAAM,CAAC,GAAG,EAAE,MAAM;IAIlB;;OAEG;IACG,IAAI,CAAC,KAAK,EAAE,MAAM,GAAG,OAAO,CAAC,oBAAoB,CAAC,OAAO,CAAC,CAAC;CAqBlE"}
|
|
@@ -24,16 +24,22 @@ class DOFunction {
|
|
|
24
24
|
if (!this.url) {
|
|
25
25
|
throw new Error(`${this.functionName} URL is not set`);
|
|
26
26
|
}
|
|
27
|
+
const rawInput = {
|
|
28
|
+
data: bson_1.EJSON.stringify(input, { relaxed: false })
|
|
29
|
+
};
|
|
27
30
|
const result = await fetch(`${this.url}`, {
|
|
28
31
|
method: 'POST',
|
|
29
32
|
headers: {
|
|
30
33
|
'Content-Type': 'application/json'
|
|
31
34
|
},
|
|
32
|
-
body:
|
|
35
|
+
body: JSON.stringify(rawInput)
|
|
33
36
|
});
|
|
34
37
|
const json = await result.json();
|
|
35
|
-
|
|
36
|
-
|
|
38
|
+
return {
|
|
39
|
+
success: json.body.success,
|
|
40
|
+
errors: json.body.errors,
|
|
41
|
+
data: bson_1.EJSON.parse(json.body.data)
|
|
42
|
+
};
|
|
37
43
|
}
|
|
38
44
|
}
|
|
39
45
|
exports.default = DOFunction;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { DOFunctionCallOutput, DOFunctionInput, DOFunctionOutput, DOFunctionRawInput, DOFunctionRawOutput } from './DOFunction';
|
|
1
2
|
import AuthCheckPassword from './functions/authCheckPassword';
|
|
2
3
|
import AuthValidateUser from './functions/authValidateUser';
|
|
3
4
|
import ProjectDashboard from './functions/projectDashboard';
|
|
@@ -8,5 +9,14 @@ export default class DOFunctionService {
|
|
|
8
9
|
static auchCheckPassword: AuthCheckPassword;
|
|
9
10
|
static authValidateUser: AuthValidateUser;
|
|
10
11
|
static projectDashboard: ProjectDashboard;
|
|
12
|
+
/**
|
|
13
|
+
* A generic method to handle any API request on the backend. This has
|
|
14
|
+
* no use on the frontend.
|
|
15
|
+
*
|
|
16
|
+
* This will take care of returning the error if the handler throws.
|
|
17
|
+
* Ideally the handler should not throw though unless something really
|
|
18
|
+
* unexpected happened.
|
|
19
|
+
*/
|
|
20
|
+
static handleApiRequest<TInput extends DOFunctionInput, TOutput extends DOFunctionOutput>(rawInput: DOFunctionRawInput, handler: (input: TInput) => Promise<DOFunctionCallOutput<TOutput>>): Promise<DOFunctionRawOutput>;
|
|
11
21
|
}
|
|
12
22
|
//# sourceMappingURL=DOFunctionService.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DOFunctionService.d.ts","sourceRoot":"","sources":["../../../src/services/DOFunctionService/DOFunctionService.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"DOFunctionService.d.ts","sourceRoot":"","sources":["../../../src/services/DOFunctionService/DOFunctionService.ts"],"names":[],"mappings":"AACA,OAAO,EACL,oBAAoB,EACpB,eAAe,EACf,gBAAgB,EAChB,kBAAkB,EAClB,mBAAmB,EACpB,MAAM,cAAc,CAAC;AACtB,OAAO,iBAAiB,MAAM,+BAA+B,CAAC;AAC9D,OAAO,gBAAgB,MAAM,8BAA8B,CAAC;AAC5D,OAAO,gBAAgB,MAAM,8BAA8B,CAAC;AAE5D;;GAEG;AACH,MAAM,CAAC,OAAO,OAAO,iBAAiB;IACpC,MAAM,CAAC,iBAAiB,oBAAmC;IAE3D,MAAM,CAAC,gBAAgB,mBAAkC;IAEzD,MAAM,CAAC,gBAAgB,mBAAkC;IAEzD;;;;;;;OAOG;WACU,gBAAgB,CAC3B,MAAM,SAAS,eAAe,EAC9B,OAAO,SAAS,gBAAgB,EAEhC,QAAQ,EAAE,kBAAkB,EAC5B,OAAO,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,OAAO,CAAC,oBAAoB,CAAC,OAAO,CAAC,CAAC,GACjE,OAAO,CAAC,mBAAmB,CAAC;CAmBhC"}
|
|
@@ -3,6 +3,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
3
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
const bson_1 = require("bson");
|
|
6
7
|
const authCheckPassword_1 = __importDefault(require("./functions/authCheckPassword"));
|
|
7
8
|
const authValidateUser_1 = __importDefault(require("./functions/authValidateUser"));
|
|
8
9
|
const projectDashboard_1 = __importDefault(require("./functions/projectDashboard"));
|
|
@@ -13,5 +14,33 @@ class DOFunctionService {
|
|
|
13
14
|
static auchCheckPassword = authCheckPassword_1.default.getFunction();
|
|
14
15
|
static authValidateUser = authValidateUser_1.default.getFunction();
|
|
15
16
|
static projectDashboard = projectDashboard_1.default.getFunction();
|
|
17
|
+
/**
|
|
18
|
+
* A generic method to handle any API request on the backend. This has
|
|
19
|
+
* no use on the frontend.
|
|
20
|
+
*
|
|
21
|
+
* This will take care of returning the error if the handler throws.
|
|
22
|
+
* Ideally the handler should not throw though unless something really
|
|
23
|
+
* unexpected happened.
|
|
24
|
+
*/
|
|
25
|
+
static async handleApiRequest(rawInput, handler) {
|
|
26
|
+
const input = bson_1.EJSON.parse(rawInput.data);
|
|
27
|
+
const rawOutput = {
|
|
28
|
+
body: {
|
|
29
|
+
success: false,
|
|
30
|
+
errors: [],
|
|
31
|
+
data: ''
|
|
32
|
+
}
|
|
33
|
+
};
|
|
34
|
+
try {
|
|
35
|
+
const output = await handler(input);
|
|
36
|
+
rawOutput.body.success = output.success;
|
|
37
|
+
rawOutput.body.errors = output.errors;
|
|
38
|
+
rawOutput.body.data = bson_1.EJSON.stringify(output.data, { relaxed: false });
|
|
39
|
+
}
|
|
40
|
+
catch (error) {
|
|
41
|
+
rawOutput.body.errors.push(JSON.stringify(error));
|
|
42
|
+
}
|
|
43
|
+
return rawOutput;
|
|
44
|
+
}
|
|
16
45
|
}
|
|
17
46
|
exports.default = DOFunctionService;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"authValidateUser.d.ts","sourceRoot":"","sources":["../../../../src/services/DOFunctionService/functions/authValidateUser.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,0BAA0B,CAAC;AACxD,OAAO,UAAU,EAAE,EAAE,eAAe,EAAE,gBAAgB,EAAE,MAAM,eAAe,CAAC;AAC9E,OAAO,EAAE,eAAe,EAAE,MAAM,gCAAgC,CAAC;AAEjE,MAAM,WAAW,qBAAsB,SAAQ,eAAe;IAC5D,QAAQ,EAAE,MAAM,CAAC;IACjB,QAAQ,EAAE,MAAM,CAAC;CAClB;AAED,MAAM,WAAW,sBAAuB,SAAQ,gBAAgB;IAC9D,
|
|
1
|
+
{"version":3,"file":"authValidateUser.d.ts","sourceRoot":"","sources":["../../../../src/services/DOFunctionService/functions/authValidateUser.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,0BAA0B,CAAC;AACxD,OAAO,UAAU,EAAE,EAAE,eAAe,EAAE,gBAAgB,EAAE,MAAM,eAAe,CAAC;AAC9E,OAAO,EAAE,eAAe,EAAE,MAAM,gCAAgC,CAAC;AAEjE,MAAM,WAAW,qBAAsB,SAAQ,eAAe;IAC5D,QAAQ,EAAE,MAAM,CAAC;IACjB,QAAQ,EAAE,MAAM,CAAC;CAClB;AAED,MAAM,WAAW,sBAAuB,SAAQ,gBAAgB;IAC9D,QAAQ,CAAC,EAAE;QACT,IAAI,EAAE,IAAI,CAAC;QACX,MAAM,EAAE,MAAM,CAAC;KAChB,CAAC;IACF;;OAEG;IACH,MAAM,CAAC,EAAE;QACP,SAAS,CAAC,EAAE,eAAe,CAAC;KAC7B,CAAC;CACH;AAED,MAAM,CAAC,OAAO,OAAO,gBAAiB,SAAQ,UAAU,CACtD,qBAAqB,EACrB,sBAAsB,CACvB;IACC,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAmB;IAE1C,OAAO;IAMP,MAAM,CAAC,WAAW;CAMnB"}
|
|
@@ -25,12 +25,9 @@ export interface ProjectDashboardInput extends DOFunctionInput {
|
|
|
25
25
|
options: ProjectDashboardOptions;
|
|
26
26
|
}
|
|
27
27
|
export interface ProjectDashboardOutput extends DOFunctionOutput {
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
userConfig?: DashboardUserConfig;
|
|
32
|
-
tasks?: DashboardTask[];
|
|
33
|
-
};
|
|
28
|
+
translations?: Translations;
|
|
29
|
+
userConfig?: DashboardUserConfig;
|
|
30
|
+
tasks?: DashboardTask[];
|
|
34
31
|
}
|
|
35
32
|
/**
|
|
36
33
|
* The Digital Ocean function which handles all data requests for the
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"projectDashboard.d.ts","sourceRoot":"","sources":["../../../../src/services/DOFunctionService/functions/projectDashboard.ts"],"names":[],"mappings":";AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,QAAQ,CAAC;AAC9B,OAAO,EAAE,aAAa,EAAE,mBAAmB,EAAE,MAAM,0BAA0B,CAAC;AAC9E,OAAO,EAAE,YAAY,EAAE,MAAM,6BAA6B,CAAC;AAC3D,OAAO,UAAU,EAAE,EAAE,eAAe,EAAE,gBAAgB,EAAE,MAAM,eAAe,CAAC;AAE9E,MAAM,WAAW,uBAAuB;IACtC,GAAG,CAAC,EAAE;QACJ,YAAY,CAAC,EAAE,OAAO,CAAC;QACvB,UAAU,CAAC,EAAE,OAAO,CAAC;QACrB,KAAK,CAAC,EAAE,OAAO,CAAC;KACjB,CAAC;IACF,MAAM,CAAC,EAAE;QACP,KAAK,CAAC,EAAE,aAAa,EAAE,CAAC;KACzB,CAAC;IACF,MAAM,CAAC,EAAE;QACP,UAAU,CAAC,EAAE,mBAAmB,CAAC;QACjC,KAAK,CAAC,EAAE,aAAa,EAAE,CAAC;KACzB,CAAC;IACF,MAAM,CAAC,EAAE;QACP,KAAK,CAAC,EAAE,aAAa,EAAE,CAAC;KACzB,CAAC;CACH;AAED,MAAM,WAAW,qBAAsB,SAAQ,eAAe;IAC5D,MAAM,EAAE,IAAI,CAAC;IACb,OAAO,EAAE,uBAAuB,CAAC;CAClC;AAED,MAAM,WAAW,sBAAuB,SAAQ,gBAAgB;IAC9D,
|
|
1
|
+
{"version":3,"file":"projectDashboard.d.ts","sourceRoot":"","sources":["../../../../src/services/DOFunctionService/functions/projectDashboard.ts"],"names":[],"mappings":";AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,QAAQ,CAAC;AAC9B,OAAO,EAAE,aAAa,EAAE,mBAAmB,EAAE,MAAM,0BAA0B,CAAC;AAC9E,OAAO,EAAE,YAAY,EAAE,MAAM,6BAA6B,CAAC;AAC3D,OAAO,UAAU,EAAE,EAAE,eAAe,EAAE,gBAAgB,EAAE,MAAM,eAAe,CAAC;AAE9E,MAAM,WAAW,uBAAuB;IACtC,GAAG,CAAC,EAAE;QACJ,YAAY,CAAC,EAAE,OAAO,CAAC;QACvB,UAAU,CAAC,EAAE,OAAO,CAAC;QACrB,KAAK,CAAC,EAAE,OAAO,CAAC;KACjB,CAAC;IACF,MAAM,CAAC,EAAE;QACP,KAAK,CAAC,EAAE,aAAa,EAAE,CAAC;KACzB,CAAC;IACF,MAAM,CAAC,EAAE;QACP,UAAU,CAAC,EAAE,mBAAmB,CAAC;QACjC,KAAK,CAAC,EAAE,aAAa,EAAE,CAAC;KACzB,CAAC;IACF,MAAM,CAAC,EAAE;QACP,KAAK,CAAC,EAAE,aAAa,EAAE,CAAC;KACzB,CAAC;CACH;AAED,MAAM,WAAW,qBAAsB,SAAQ,eAAe;IAC5D,MAAM,EAAE,IAAI,CAAC;IACb,OAAO,EAAE,uBAAuB,CAAC;CAClC;AAED,MAAM,WAAW,sBAAuB,SAAQ,gBAAgB;IAC9D,YAAY,CAAC,EAAE,YAAY,CAAC;IAC5B,UAAU,CAAC,EAAE,mBAAmB,CAAC;IACjC,KAAK,CAAC,EAAE,aAAa,EAAE,CAAC;CACzB;AAED;;;GAGG;AACH,MAAM,CAAC,OAAO,OAAO,gBAAiB,SAAQ,UAAU,CACtD,qBAAqB,EACrB,sBAAsB,CACvB;IACC,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAmB;IAE1C,OAAO;IAIP,MAAM,CAAC,WAAW;CAMnB"}
|
package/package.json
CHANGED