@rxap/schematics-ts-morph 16.0.0-dev.5 → 16.0.0-dev.6
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/CHANGELOG.md +11 -0
- package/README.md +1 -1
- package/package.json +2 -2
- package/src/lib/angular/coerce-dialog-table-action-component.d.ts +1 -1
- package/src/lib/angular/coerce-form-table-action.d.ts +1 -1
- package/src/lib/angular/coerce-operation-table-action.d.ts +1 -1
- package/src/lib/angular/coerce-table-data-source.d.ts +1 -1
- package/src/lib/angular/coerce-table-select-resolve-value-method.d.ts +1 -1
- package/src/lib/angular/coerce-tree-table-children-proxy-remote-method-class.d.ts +1 -1
- package/src/lib/angular/coerce-tree-table-root-proxy-remote-method-class.d.ts +1 -1
- package/src/lib/nest/operation-id-utilities.d.ts +6 -6
- package/src/lib/nest/operation-id-utilities.js +37 -21
- package/src/lib/nest/operation-id-utilities.js.map +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [16.0.0-dev.6](https://gitlab.com/rxap/packages/compare/@rxap/schematics-ts-morph@16.0.0-dev.5...@rxap/schematics-ts-morph@16.0.0-dev.6) (2023-08-03)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- allow null or undefined for scope parameter ([b3b4c44](https://gitlab.com/rxap/packages/commit/b3b4c4440dc858ca5725555c67f09d5e900df3c4))
|
|
11
|
+
- generate readme with peer dependencies to install ([e7039bb](https://gitlab.com/rxap/packages/commit/e7039bb5e86ffeadfe7cc92d5fc71d32f8efb4fb))
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
- support open api backend ([26a99a7](https://gitlab.com/rxap/packages/commit/26a99a735f0fe8dd7ff73b2248c9d976e2019313))
|
|
16
|
+
|
|
6
17
|
# 16.0.0-dev.5 (2023-08-01)
|
|
7
18
|
|
|
8
19
|
### Bug Fixes
|
package/README.md
CHANGED
|
@@ -17,5 +17,5 @@ yarn add @rxap/schematics-ts-morph
|
|
|
17
17
|
```
|
|
18
18
|
**Install peer dependencies:**
|
|
19
19
|
```bash
|
|
20
|
-
yarn add
|
|
20
|
+
yarn add @angular-devkit/core@^16.1.4 @angular-devkit/schematics@^16.1.4 @rxap/schematics-utilities@^16.0.0-dev.6 @rxap/utilities@^16.0.0-dev.4 @rxap/workspace-ts-morph@^0.0.2-dev.0 ts-morph@^18.0.0
|
|
21
21
|
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rxap/schematics-ts-morph",
|
|
3
|
-
"version": "16.0.0-dev.
|
|
3
|
+
"version": "16.0.0-dev.6",
|
|
4
4
|
"type": "commonjs",
|
|
5
5
|
"peerDependencies": {
|
|
6
6
|
"@angular-devkit/core": "^16.1.4",
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
}
|
|
59
59
|
]
|
|
60
60
|
},
|
|
61
|
-
"gitHead": "
|
|
61
|
+
"gitHead": "5601620d3b3fc43f63d114b0953635992f783070",
|
|
62
62
|
"main": "./src/index.js",
|
|
63
63
|
"types": "./src/index.d.ts"
|
|
64
64
|
}
|
|
@@ -3,6 +3,6 @@ import { CoerceDialogComponentOptions } from './coerce-dialog-component';
|
|
|
3
3
|
export interface CoerceDialogTableActionComponentOptions extends CoerceDialogComponentOptions, TsMorphAngularProjectTransformOptions {
|
|
4
4
|
operationId: string;
|
|
5
5
|
tableName: string;
|
|
6
|
-
scope
|
|
6
|
+
scope?: string | null;
|
|
7
7
|
}
|
|
8
8
|
export declare function CoerceDialogTableActionComponentRule(options: CoerceDialogTableActionComponentOptions): import("@angular-devkit/schematics").Rule;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { CoerceTableActionOptions } from './coerce-table-action';
|
|
2
2
|
export interface CoerceFormTableActionOptions extends CoerceTableActionOptions {
|
|
3
3
|
loadOperationId?: string;
|
|
4
|
-
scope
|
|
4
|
+
scope?: string | null;
|
|
5
5
|
}
|
|
6
6
|
export declare function CoerceFormTableActionRule(options: CoerceFormTableActionOptions): import("@angular-devkit/schematics").Rule;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { CoerceTableActionOptions } from './coerce-table-action';
|
|
2
2
|
export interface CoerceOperationTableActionRuleOptions extends CoerceTableActionOptions {
|
|
3
3
|
operationId: string;
|
|
4
|
-
scope
|
|
4
|
+
scope?: string | null;
|
|
5
5
|
}
|
|
6
6
|
export declare function CoerceOperationTableActionRule(options: CoerceOperationTableActionRuleOptions): import("@angular-devkit/schematics").Rule;
|
|
@@ -4,6 +4,6 @@ export interface CoerceTableDataSourceOptions extends CoerceDataSourceClassOptio
|
|
|
4
4
|
* The operation id to request a table page
|
|
5
5
|
*/
|
|
6
6
|
operationId: string;
|
|
7
|
-
scope
|
|
7
|
+
scope?: string | null;
|
|
8
8
|
}
|
|
9
9
|
export declare function CoerceTableDataSourceRule(options: Readonly<CoerceTableDataSourceOptions>): import("@angular-devkit/schematics").Rule;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { CoerceMethodClassOptions } from './coerce-method-class';
|
|
2
2
|
export interface CoerceTableSelectResolveValueMethodOptions extends CoerceMethodClassOptions {
|
|
3
3
|
operationId: string;
|
|
4
|
-
scope
|
|
4
|
+
scope?: string | null;
|
|
5
5
|
}
|
|
6
6
|
export declare function CoerceTableSelectResolveValueMethodRule(options: CoerceTableSelectResolveValueMethodOptions): import("@angular-devkit/schematics").Rule;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { CoerceProxyRemoteMethodClassOptions } from './coerce-proxy-remote-method-class';
|
|
2
2
|
export interface CoerceTreeTableChildrenProxyRemoteMethodClassOptions extends Omit<Omit<Omit<Omit<CoerceProxyRemoteMethodClassOptions, 'name'>, 'sourceType'>, 'targetType'>, 'proxyMethod'> {
|
|
3
3
|
getChildrenOperationId: string;
|
|
4
|
-
scope
|
|
4
|
+
scope?: string | null;
|
|
5
5
|
}
|
|
6
6
|
export declare function CoerceTreeTableChildrenProxyRemoteMethodClass(options: CoerceTreeTableChildrenProxyRemoteMethodClassOptions): import("@angular-devkit/schematics").Rule;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { CoerceProxyRemoteMethodClassOptions } from './coerce-proxy-remote-method-class';
|
|
2
2
|
export interface CoerceTreeTableRootProxyRemoteMethodClassOptions extends Omit<Omit<Omit<Omit<CoerceProxyRemoteMethodClassOptions, 'name'>, 'sourceType'>, 'targetType'>, 'proxyMethod'> {
|
|
3
3
|
getRootOperationId: string;
|
|
4
|
-
scope
|
|
4
|
+
scope?: string | null;
|
|
5
5
|
}
|
|
6
6
|
export declare function CoerceTreeTableRootProxyRemoteMethodClass(options: CoerceTreeTableRootProxyRemoteMethodClassOptions): import("@angular-devkit/schematics").Rule;
|
|
@@ -2,13 +2,13 @@ export declare function OperationIdToClassName(operationId: string): string;
|
|
|
2
2
|
export declare function ServiceOperationIdToClassName(operationId: string): string;
|
|
3
3
|
export declare function OperationIdToResponseClassName(operationId: string): string;
|
|
4
4
|
export declare function OperationIdToParameterClassName(operationId: string): string;
|
|
5
|
-
export declare function OperationIdToClassImportPath(operationId: string, scope
|
|
5
|
+
export declare function OperationIdToClassImportPath(operationId: string, scope?: string | null): string;
|
|
6
6
|
export declare function OperationIdToRequestBodyClassName(operationId: string): string;
|
|
7
|
-
export declare function ServiceOperationIdToClassImportPath(operationId: string, scope
|
|
8
|
-
export declare function OpenApiResponseClassImportPath(response: string, serverId: string, scope
|
|
9
|
-
export declare function OperationIdToResponseClassImportPath(operationId: string, scope
|
|
10
|
-
export declare function OperationIdToParameterClassImportPath(operationId: string, scope
|
|
11
|
-
export declare function OperationIdToRequestBodyClassImportPath(operationId: string, scope
|
|
7
|
+
export declare function ServiceOperationIdToClassImportPath(operationId: string, scope?: string | null): string;
|
|
8
|
+
export declare function OpenApiResponseClassImportPath(response: string, serverId: string, scope?: string | null): string;
|
|
9
|
+
export declare function OperationIdToResponseClassImportPath(operationId: string, scope?: string | null): string;
|
|
10
|
+
export declare function OperationIdToParameterClassImportPath(operationId: string, scope?: string | null): string;
|
|
11
|
+
export declare function OperationIdToRequestBodyClassImportPath(operationId: string, scope?: string | null): string;
|
|
12
12
|
export declare function buildOperationId(options: {
|
|
13
13
|
project: string;
|
|
14
14
|
feature: string | null;
|
|
@@ -24,12 +24,14 @@ function OperationIdToParameterClassName(operationId) {
|
|
|
24
24
|
}
|
|
25
25
|
exports.OperationIdToParameterClassName = OperationIdToParameterClassName;
|
|
26
26
|
function OperationIdToClassImportPath(operationId, scope) {
|
|
27
|
-
if (!scope) {
|
|
28
|
-
throw new Error('scope is required');
|
|
29
|
-
}
|
|
30
27
|
let [id, serverId] = operationId.split('@');
|
|
31
28
|
serverId !== null && serverId !== void 0 ? serverId : (serverId = 'legacy');
|
|
32
|
-
|
|
29
|
+
if (scope) {
|
|
30
|
+
return `${scope}/open-api-${(0, schematics_utilities_1.dasherize)(serverId)}/remote-methods/${(0, schematics_utilities_1.dasherize)(id)}.remote-method`;
|
|
31
|
+
}
|
|
32
|
+
else {
|
|
33
|
+
return `open-api-${(0, schematics_utilities_1.dasherize)(serverId)}/remote-methods/${(0, schematics_utilities_1.dasherize)(id)}.remote-method`;
|
|
34
|
+
}
|
|
33
35
|
}
|
|
34
36
|
exports.OperationIdToClassImportPath = OperationIdToClassImportPath;
|
|
35
37
|
function OperationIdToRequestBodyClassName(operationId) {
|
|
@@ -38,29 +40,36 @@ function OperationIdToRequestBodyClassName(operationId) {
|
|
|
38
40
|
}
|
|
39
41
|
exports.OperationIdToRequestBodyClassName = OperationIdToRequestBodyClassName;
|
|
40
42
|
function ServiceOperationIdToClassImportPath(operationId, scope) {
|
|
41
|
-
if (!scope) {
|
|
42
|
-
throw new Error('scope is required');
|
|
43
|
-
}
|
|
44
43
|
let [id, serverId] = operationId.split('@');
|
|
45
44
|
serverId !== null && serverId !== void 0 ? serverId : (serverId = 'legacy');
|
|
46
|
-
|
|
45
|
+
if (scope) {
|
|
46
|
+
return `${scope}/service-open-api-${(0, schematics_utilities_1.dasherize)(serverId)}/commands/${(0, schematics_utilities_1.dasherize)(id)}.command`;
|
|
47
|
+
}
|
|
48
|
+
else {
|
|
49
|
+
return `service-open-api-${(0, schematics_utilities_1.dasherize)(serverId)}/commands/${(0, schematics_utilities_1.dasherize)(id)}.command`;
|
|
50
|
+
}
|
|
47
51
|
}
|
|
48
52
|
exports.ServiceOperationIdToClassImportPath = ServiceOperationIdToClassImportPath;
|
|
49
53
|
function OpenApiResponseClassImportPath(response, serverId, scope) {
|
|
50
|
-
if (
|
|
51
|
-
|
|
54
|
+
if (scope) {
|
|
55
|
+
return `${scope}/open-api-${(0, schematics_utilities_1.dasherize)(serverId)}/responses/${(0, schematics_utilities_1.dasherize)(response)
|
|
56
|
+
.replace('-response', '')}.response`;
|
|
57
|
+
}
|
|
58
|
+
else {
|
|
59
|
+
return `open-api-${(0, schematics_utilities_1.dasherize)(serverId)}/responses/${(0, schematics_utilities_1.dasherize)(response)
|
|
60
|
+
.replace('-response', '')}.response`;
|
|
52
61
|
}
|
|
53
|
-
return `${scope}/open-api-${(0, schematics_utilities_1.dasherize)(serverId)}/responses/${(0, schematics_utilities_1.dasherize)(response)
|
|
54
|
-
.replace('-response', '')}.response`;
|
|
55
62
|
}
|
|
56
63
|
exports.OpenApiResponseClassImportPath = OpenApiResponseClassImportPath;
|
|
57
64
|
function OperationIdToResponseClassImportPath(operationId, scope) {
|
|
58
|
-
if (!scope) {
|
|
59
|
-
throw new Error('scope is required');
|
|
60
|
-
}
|
|
61
65
|
let [id, serverId] = operationId.split('@');
|
|
62
66
|
serverId !== null && serverId !== void 0 ? serverId : (serverId = 'legacy');
|
|
63
|
-
|
|
67
|
+
if (scope) {
|
|
68
|
+
return `${scope}/open-api-${(0, schematics_utilities_1.dasherize)(serverId)}/responses/${(0, schematics_utilities_1.dasherize)(id)}.response`;
|
|
69
|
+
}
|
|
70
|
+
else {
|
|
71
|
+
return `open-api-${(0, schematics_utilities_1.dasherize)(serverId)}/responses/${(0, schematics_utilities_1.dasherize)(id)}.response`;
|
|
72
|
+
}
|
|
64
73
|
}
|
|
65
74
|
exports.OperationIdToResponseClassImportPath = OperationIdToResponseClassImportPath;
|
|
66
75
|
function OperationIdToParameterClassImportPath(operationId, scope) {
|
|
@@ -69,16 +78,23 @@ function OperationIdToParameterClassImportPath(operationId, scope) {
|
|
|
69
78
|
}
|
|
70
79
|
let [id, serverId] = operationId.split('@');
|
|
71
80
|
serverId !== null && serverId !== void 0 ? serverId : (serverId = 'legacy');
|
|
72
|
-
|
|
81
|
+
if (scope) {
|
|
82
|
+
return `${scope}/open-api-${(0, schematics_utilities_1.dasherize)(serverId)}/parameters/${(0, schematics_utilities_1.dasherize)(id)}.parameter`;
|
|
83
|
+
}
|
|
84
|
+
else {
|
|
85
|
+
return `open-api-${(0, schematics_utilities_1.dasherize)(serverId)}/parameters/${(0, schematics_utilities_1.dasherize)(id)}.parameter`;
|
|
86
|
+
}
|
|
73
87
|
}
|
|
74
88
|
exports.OperationIdToParameterClassImportPath = OperationIdToParameterClassImportPath;
|
|
75
89
|
function OperationIdToRequestBodyClassImportPath(operationId, scope) {
|
|
76
|
-
if (!scope) {
|
|
77
|
-
throw new Error('scope is required');
|
|
78
|
-
}
|
|
79
90
|
let [id, serverId] = operationId.split('@');
|
|
80
91
|
serverId !== null && serverId !== void 0 ? serverId : (serverId = 'legacy');
|
|
81
|
-
|
|
92
|
+
if (scope) {
|
|
93
|
+
return `${scope}/open-api-${(0, schematics_utilities_1.dasherize)(serverId)}/request-bodies/${(0, schematics_utilities_1.dasherize)(id)}.request-body`;
|
|
94
|
+
}
|
|
95
|
+
else {
|
|
96
|
+
return `open-api-${(0, schematics_utilities_1.dasherize)(serverId)}/request-bodies/${(0, schematics_utilities_1.dasherize)(id)}.request-body`;
|
|
97
|
+
}
|
|
82
98
|
}
|
|
83
99
|
exports.OperationIdToRequestBodyClassImportPath = OperationIdToRequestBodyClassImportPath;
|
|
84
100
|
function buildOperationId(options, operation, controller) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"operation-id-utilities.js","sourceRoot":"","sources":["../../../../../../../packages/schematic/ts-morph/src/lib/nest/operation-id-utilities.ts"],"names":[],"mappings":";;;AAAA,qEAGoC;AACpC,2DAA2D;AAE3D,SAAgB,sBAAsB,CAAC,WAAmB;IACxD,MAAM,CAAE,EAAE,CAAE,GAAG,WAAW,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;IACtC,OAAO,IAAA,+BAAQ,EAAC,EAAE,CAAC,GAAG,cAAc,CAAC;AACvC,CAAC;AAHD,wDAGC;AAED,SAAgB,6BAA6B,CAAC,WAAmB;IAC/D,MAAM,CAAE,EAAE,CAAE,GAAG,WAAW,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;IACtC,OAAO,IAAA,+BAAQ,EAAC,EAAE,CAAC,GAAG,SAAS,CAAC;AAClC,CAAC;AAHD,sEAGC;AAGD,SAAgB,8BAA8B,CAAC,WAAmB;IAChE,MAAM,CAAE,EAAE,CAAE,GAAG,WAAW,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;IACtC,OAAO,IAAA,+BAAQ,EAAC,EAAE,CAAC,GAAG,UAAU,CAAC;AACnC,CAAC;AAHD,wEAGC;AAED,SAAgB,+BAA+B,CAAC,WAAmB;IACjE,MAAM,CAAE,EAAE,CAAE,GAAG,WAAW,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;IACtC,OAAO,IAAA,+BAAQ,EAAC,EAAE,CAAC,GAAG,WAAW,CAAC;AACpC,CAAC;AAHD,0EAGC;AAED,SAAgB,4BAA4B,CAAC,WAAmB,EAAE,
|
|
1
|
+
{"version":3,"file":"operation-id-utilities.js","sourceRoot":"","sources":["../../../../../../../packages/schematic/ts-morph/src/lib/nest/operation-id-utilities.ts"],"names":[],"mappings":";;;AAAA,qEAGoC;AACpC,2DAA2D;AAE3D,SAAgB,sBAAsB,CAAC,WAAmB;IACxD,MAAM,CAAE,EAAE,CAAE,GAAG,WAAW,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;IACtC,OAAO,IAAA,+BAAQ,EAAC,EAAE,CAAC,GAAG,cAAc,CAAC;AACvC,CAAC;AAHD,wDAGC;AAED,SAAgB,6BAA6B,CAAC,WAAmB;IAC/D,MAAM,CAAE,EAAE,CAAE,GAAG,WAAW,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;IACtC,OAAO,IAAA,+BAAQ,EAAC,EAAE,CAAC,GAAG,SAAS,CAAC;AAClC,CAAC;AAHD,sEAGC;AAGD,SAAgB,8BAA8B,CAAC,WAAmB;IAChE,MAAM,CAAE,EAAE,CAAE,GAAG,WAAW,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;IACtC,OAAO,IAAA,+BAAQ,EAAC,EAAE,CAAC,GAAG,UAAU,CAAC;AACnC,CAAC;AAHD,wEAGC;AAED,SAAgB,+BAA+B,CAAC,WAAmB;IACjE,MAAM,CAAE,EAAE,CAAE,GAAG,WAAW,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;IACtC,OAAO,IAAA,+BAAQ,EAAC,EAAE,CAAC,GAAG,WAAW,CAAC;AACpC,CAAC;AAHD,0EAGC;AAED,SAAgB,4BAA4B,CAAC,WAAmB,EAAE,KAAqB;IACrF,IAAI,CAAE,EAAE,EAAE,QAAQ,CAAE,GAAG,WAAW,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;IAC9C,QAAQ,aAAR,QAAQ,cAAR,QAAQ,IAAR,QAAQ,GAAK,QAAQ,EAAC;IACtB,IAAI,KAAK,EAAE;QACT,OAAO,GAAI,KAAM,aAAc,IAAA,gCAAS,EAAC,QAAQ,CAAE,mBAAoB,IAAA,gCAAS,EAAC,EAAE,CAAE,gBAAgB,CAAC;KACvG;SAAM;QACL,OAAO,YAAa,IAAA,gCAAS,EAAC,QAAQ,CAAE,mBAAoB,IAAA,gCAAS,EAAC,EAAE,CAAE,gBAAgB,CAAC;KAC5F;AACH,CAAC;AARD,oEAQC;AAED,SAAgB,iCAAiC,CAAC,WAAmB;IACnE,MAAM,CAAE,EAAE,CAAE,GAAG,WAAW,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;IACtC,OAAO,IAAA,+BAAQ,EAAC,EAAE,CAAC,GAAG,aAAa,CAAC;AACtC,CAAC;AAHD,8EAGC;AAED,SAAgB,mCAAmC,CAAC,WAAmB,EAAE,KAAqB;IAC5F,IAAI,CAAE,EAAE,EAAE,QAAQ,CAAE,GAAG,WAAW,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;IAC9C,QAAQ,aAAR,QAAQ,cAAR,QAAQ,IAAR,QAAQ,GAAK,QAAQ,EAAC;IACtB,IAAI,KAAK,EAAE;QACT,OAAO,GAAI,KAAM,qBAAsB,IAAA,gCAAS,EAAC,QAAQ,CAAE,aAAc,IAAA,gCAAS,EAAC,EAAE,CAAE,UAAU,CAAC;KACnG;SAAM;QACL,OAAO,oBAAqB,IAAA,gCAAS,EAAC,QAAQ,CAAE,aAAc,IAAA,gCAAS,EAAC,EAAE,CAAE,UAAU,CAAC;KACxF;AACH,CAAC;AARD,kFAQC;AAED,SAAgB,8BAA8B,CAAC,QAAgB,EAAE,QAAgB,EAAE,KAAqB;IACtG,IAAI,KAAK,EAAE;QACT,OAAO,GAAI,KAAM,aAAc,IAAA,gCAAS,EAAC,QAAQ,CAAE,cAAe,IAAA,gCAAS,EAAC,QAAQ,CAAC;aAClF,OAAO,CAAC,WAAW,EAAE,EAAE,CAAE,WAAW,CAAC;KACzC;SAAM;QACL,OAAO,YAAa,IAAA,gCAAS,EAAC,QAAQ,CAAE,cAAe,IAAA,gCAAS,EAAC,QAAQ,CAAC;aACvE,OAAO,CAAC,WAAW,EAAE,EAAE,CAAE,WAAW,CAAC;KACzC;AACH,CAAC;AARD,wEAQC;AAED,SAAgB,oCAAoC,CAAC,WAAmB,EAAE,KAAqB;IAC7F,IAAI,CAAE,EAAE,EAAE,QAAQ,CAAE,GAAG,WAAW,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;IAC9C,QAAQ,aAAR,QAAQ,cAAR,QAAQ,IAAR,QAAQ,GAAK,QAAQ,EAAC;IACtB,IAAI,KAAK,EAAE;QACT,OAAO,GAAI,KAAM,aAAc,IAAA,gCAAS,EAAC,QAAQ,CAAE,cAAe,IAAA,gCAAS,EAAC,EAAE,CAAE,WAAW,CAAC;KAC7F;SAAM;QACL,OAAO,YAAa,IAAA,gCAAS,EAAC,QAAQ,CAAE,cAAe,IAAA,gCAAS,EAAC,EAAE,CAAE,WAAW,CAAC;KAClF;AACH,CAAC;AARD,oFAQC;AAED,SAAgB,qCAAqC,CAAC,WAAmB,EAAE,KAAqB;IAC9F,IAAI,CAAC,KAAK,EAAE;QACV,MAAM,IAAI,KAAK,CAAC,mBAAmB,CAAC,CAAC;KACtC;IACD,IAAI,CAAE,EAAE,EAAE,QAAQ,CAAE,GAAG,WAAW,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;IAC9C,QAAQ,aAAR,QAAQ,cAAR,QAAQ,IAAR,QAAQ,GAAK,QAAQ,EAAC;IACtB,IAAI,KAAK,EAAE;QACT,OAAO,GAAI,KAAM,aAAc,IAAA,gCAAS,EAAC,QAAQ,CAAE,eAAgB,IAAA,gCAAS,EAAC,EAAE,CAAE,YAAY,CAAC;KAC/F;SAAM;QACL,OAAO,YAAa,IAAA,gCAAS,EAAC,QAAQ,CAAE,eAAgB,IAAA,gCAAS,EAAC,EAAE,CAAE,YAAY,CAAC;KACpF;AACH,CAAC;AAXD,sFAWC;AAED,SAAgB,uCAAuC,CAAC,WAAmB,EAAE,KAAqB;IAChG,IAAI,CAAE,EAAE,EAAE,QAAQ,CAAE,GAAG,WAAW,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;IAC9C,QAAQ,aAAR,QAAQ,cAAR,QAAQ,IAAR,QAAQ,GAAK,QAAQ,EAAC;IACtB,IAAI,KAAK,EAAE;QACT,OAAO,GAAI,KAAM,aAAc,IAAA,gCAAS,EAAC,QAAQ,CAAE,mBAAoB,IAAA,gCAAS,EAAC,EAAE,CAAE,eAAe,CAAC;KACtG;SAAM;QACL,OAAO,YAAa,IAAA,gCAAS,EAAC,QAAQ,CAAE,mBAAoB,IAAA,gCAAS,EAAC,EAAE,CAAE,eAAe,CAAC;KAC3F;AACH,CAAC;AARD,0FAQC;AAED,SAAgB,gBAAgB,CAAC,OAIhC,EAAE,SAAiB,EAAE,UAAkB;IACtC,OAAO,GAAI,IAAA,gCAAS,EAAC,UAAU,CAAE,eAAgB,IAAA,gCAAS,EAAC,SAAS,CAAE,IAAK,IAAA,wCAAoB,EAAC,OAAO,CAAE,EAAE,CAAC;AAC9G,CAAC;AAND,4CAMC"}
|