conductor-node-mcp 12.16.0 → 12.17.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/README.md +1 -1
- package/package.json +2 -2
- package/server.js +1 -1
- package/server.mjs +1 -1
- package/src/server.ts +1 -1
- package/src/tools/qbd/employees/list-qbd-employees.ts +3 -9
- package/tools/qbd/employees/list-qbd-employees.d.mts.map +1 -1
- package/tools/qbd/employees/list-qbd-employees.d.ts.map +1 -1
- package/tools/qbd/employees/list-qbd-employees.js +3 -8
- package/tools/qbd/employees/list-qbd-employees.js.map +1 -1
- package/tools/qbd/employees/list-qbd-employees.mjs +3 -8
- package/tools/qbd/employees/list-qbd-employees.mjs.map +1 -1
package/README.md
CHANGED
|
@@ -298,7 +298,7 @@ The following tools are available in this MCP server.
|
|
|
298
298
|
- `create_qbd_employees` (`write`): Creates a new employee.
|
|
299
299
|
- `retrieve_qbd_employees` (`read`): Retrieves an employee by ID.
|
|
300
300
|
- `update_qbd_employees` (`write`): Updates an existing employee.
|
|
301
|
-
- `list_qbd_employees` (`read`): Returns a list of employees.
|
|
301
|
+
- `list_qbd_employees` (`read`): Returns a list of employees. NOTE: QuickBooks Desktop does not support pagination for employees; hence, there is no `cursor` parameter. Users typically have few employees.
|
|
302
302
|
|
|
303
303
|
### Resource `qbd.estimates`:
|
|
304
304
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "conductor-node-mcp",
|
|
3
|
-
"version": "12.
|
|
3
|
+
"version": "12.17.0",
|
|
4
4
|
"description": "The official MCP Server for the Conductor API",
|
|
5
5
|
"author": "Conductor <support@conductor.is>",
|
|
6
6
|
"types": "./index.d.ts",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"fix": "eslint --fix --ext ts,js ."
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"conductor-node": "^12.
|
|
27
|
+
"conductor-node": "^12.17.0",
|
|
28
28
|
"@modelcontextprotocol/sdk": "^1.11.5",
|
|
29
29
|
"jq-web": "https://github.com/stainless-api/jq-web/releases/download/v0.8.2/jq-web.tar.gz",
|
|
30
30
|
"yargs": "^17.7.2",
|
package/server.js
CHANGED
|
@@ -20,7 +20,7 @@ Object.defineProperty(exports, "endpoints", { enumerable: true, get: function ()
|
|
|
20
20
|
// Create server instance
|
|
21
21
|
exports.server = new mcp_js_1.McpServer({
|
|
22
22
|
name: 'conductor_node_api',
|
|
23
|
-
version: '12.
|
|
23
|
+
version: '12.17.0',
|
|
24
24
|
}, { capabilities: { tools: {} } });
|
|
25
25
|
/**
|
|
26
26
|
* Initializes the provided MCP Server with the given tools and handlers.
|
package/server.mjs
CHANGED
|
@@ -9,7 +9,7 @@ export { endpoints } from "./tools.mjs";
|
|
|
9
9
|
// Create server instance
|
|
10
10
|
export const server = new McpServer({
|
|
11
11
|
name: 'conductor_node_api',
|
|
12
|
-
version: '12.
|
|
12
|
+
version: '12.17.0',
|
|
13
13
|
}, { capabilities: { tools: {} } });
|
|
14
14
|
/**
|
|
15
15
|
* Initializes the provided MCP Server with the given tools and handlers.
|
package/src/server.ts
CHANGED
|
@@ -16,7 +16,7 @@ export const metadata: Metadata = {
|
|
|
16
16
|
export const tool: Tool = {
|
|
17
17
|
name: 'list_qbd_employees',
|
|
18
18
|
description:
|
|
19
|
-
"When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\nReturns a list of employees.
|
|
19
|
+
"When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\nReturns a list of employees. NOTE: QuickBooks Desktop does not support pagination for employees; hence, there is no `cursor` parameter. Users typically have few employees.",
|
|
20
20
|
inputSchema: {
|
|
21
21
|
type: 'object',
|
|
22
22
|
properties: {
|
|
@@ -25,11 +25,6 @@ export const tool: Tool = {
|
|
|
25
25
|
description:
|
|
26
26
|
'The ID of the EndUser to receive this request (e.g., `"conductorEndUserId:{{END_USER_ID}}"`).',
|
|
27
27
|
},
|
|
28
|
-
cursor: {
|
|
29
|
-
type: 'string',
|
|
30
|
-
description:
|
|
31
|
-
'The pagination token to fetch the next set of results when paginating with the `limit` parameter. Do not include this parameter on the first call. Use the `nextCursor` value returned in the previous response to request subsequent results.',
|
|
32
|
-
},
|
|
33
28
|
ids: {
|
|
34
29
|
type: 'array',
|
|
35
30
|
description:
|
|
@@ -41,7 +36,7 @@ export const tool: Tool = {
|
|
|
41
36
|
limit: {
|
|
42
37
|
type: 'integer',
|
|
43
38
|
description:
|
|
44
|
-
'The maximum number of objects to return
|
|
39
|
+
'The maximum number of objects to return.\n\n**IMPORTANT**: QuickBooks Desktop does not support cursor-based pagination for employees. This parameter will limit the response size, but you cannot fetch subsequent results using a cursor. For pagination, use the name-range parameters instead (e.g., `nameFrom=A&nameTo=B`).\n\nWhen this parameter is omitted, the endpoint returns all employees without limit, unlike paginated endpoints which default to 150 records. This is acceptable because employees typically have low record counts.',
|
|
45
40
|
},
|
|
46
41
|
nameContains: {
|
|
47
42
|
type: 'string',
|
|
@@ -97,8 +92,7 @@ export const tool: Tool = {
|
|
|
97
92
|
|
|
98
93
|
export const handler = async (conductor: Conductor, args: Record<string, unknown> | undefined) => {
|
|
99
94
|
const body = args as any;
|
|
100
|
-
|
|
101
|
-
return asTextContentResult(await response.json());
|
|
95
|
+
return asTextContentResult(await conductor.qbd.employees.list(body));
|
|
102
96
|
};
|
|
103
97
|
|
|
104
98
|
export default { metadata, tool, handler };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-qbd-employees.d.mts","sourceRoot":"","sources":["../../../src/tools/qbd/employees/list-qbd-employees.ts"],"names":[],"mappings":"OAEO,EAAE,QAAQ,EAAuB,MAAM,gCAAgC;OAEvE,EAAE,IAAI,EAAE,MAAM,oCAAoC;OAClD,SAAS,MAAM,gBAAgB;AAEtC,eAAO,MAAM,QAAQ,EAAE,QAMtB,CAAC;AAEF,eAAO,MAAM,IAAI,EAAE,
|
|
1
|
+
{"version":3,"file":"list-qbd-employees.d.mts","sourceRoot":"","sources":["../../../src/tools/qbd/employees/list-qbd-employees.ts"],"names":[],"mappings":"OAEO,EAAE,QAAQ,EAAuB,MAAM,gCAAgC;OAEvE,EAAE,IAAI,EAAE,MAAM,oCAAoC;OAClD,SAAS,MAAM,gBAAgB;AAEtC,eAAO,MAAM,QAAQ,EAAE,QAMtB,CAAC;AAEF,eAAO,MAAM,IAAI,EAAE,IA2ElB,CAAC;AAEF,eAAO,MAAM,OAAO,GAAU,WAAW,SAAS,EAAE,MAAM,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS,qEAG5F,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;yBAHuC,SAAS,QAAQ,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS;;AAK7F,wBAA2C"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-qbd-employees.d.ts","sourceRoot":"","sources":["../../../src/tools/qbd/employees/list-qbd-employees.ts"],"names":[],"mappings":"OAEO,EAAE,QAAQ,EAAuB,MAAM,gCAAgC;OAEvE,EAAE,IAAI,EAAE,MAAM,oCAAoC;OAClD,SAAS,MAAM,gBAAgB;AAEtC,eAAO,MAAM,QAAQ,EAAE,QAMtB,CAAC;AAEF,eAAO,MAAM,IAAI,EAAE,
|
|
1
|
+
{"version":3,"file":"list-qbd-employees.d.ts","sourceRoot":"","sources":["../../../src/tools/qbd/employees/list-qbd-employees.ts"],"names":[],"mappings":"OAEO,EAAE,QAAQ,EAAuB,MAAM,gCAAgC;OAEvE,EAAE,IAAI,EAAE,MAAM,oCAAoC;OAClD,SAAS,MAAM,gBAAgB;AAEtC,eAAO,MAAM,QAAQ,EAAE,QAMtB,CAAC;AAEF,eAAO,MAAM,IAAI,EAAE,IA2ElB,CAAC;AAEF,eAAO,MAAM,OAAO,GAAU,WAAW,SAAS,EAAE,MAAM,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS,qEAG5F,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;yBAHuC,SAAS,QAAQ,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS;;AAK7F,wBAA2C"}
|
|
@@ -12,7 +12,7 @@ exports.metadata = {
|
|
|
12
12
|
};
|
|
13
13
|
exports.tool = {
|
|
14
14
|
name: 'list_qbd_employees',
|
|
15
|
-
description: "When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\nReturns a list of employees.
|
|
15
|
+
description: "When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\nReturns a list of employees. NOTE: QuickBooks Desktop does not support pagination for employees; hence, there is no `cursor` parameter. Users typically have few employees.",
|
|
16
16
|
inputSchema: {
|
|
17
17
|
type: 'object',
|
|
18
18
|
properties: {
|
|
@@ -20,10 +20,6 @@ exports.tool = {
|
|
|
20
20
|
type: 'string',
|
|
21
21
|
description: 'The ID of the EndUser to receive this request (e.g., `"conductorEndUserId:{{END_USER_ID}}"`).',
|
|
22
22
|
},
|
|
23
|
-
cursor: {
|
|
24
|
-
type: 'string',
|
|
25
|
-
description: 'The pagination token to fetch the next set of results when paginating with the `limit` parameter. Do not include this parameter on the first call. Use the `nextCursor` value returned in the previous response to request subsequent results.',
|
|
26
|
-
},
|
|
27
23
|
ids: {
|
|
28
24
|
type: 'array',
|
|
29
25
|
description: 'Filter for specific employees by their QuickBooks-assigned unique identifier(s).\n\n**IMPORTANT**: If you include this parameter, QuickBooks will ignore all other query parameters for this request.\n\n**NOTE**: If any of the values you specify in this parameter are not found, the request will return an error.',
|
|
@@ -33,7 +29,7 @@ exports.tool = {
|
|
|
33
29
|
},
|
|
34
30
|
limit: {
|
|
35
31
|
type: 'integer',
|
|
36
|
-
description: 'The maximum number of objects to return
|
|
32
|
+
description: 'The maximum number of objects to return.\n\n**IMPORTANT**: QuickBooks Desktop does not support cursor-based pagination for employees. This parameter will limit the response size, but you cannot fetch subsequent results using a cursor. For pagination, use the name-range parameters instead (e.g., `nameFrom=A&nameTo=B`).\n\nWhen this parameter is omitted, the endpoint returns all employees without limit, unlike paginated endpoints which default to 150 records. This is acceptable because employees typically have low record counts.',
|
|
37
33
|
},
|
|
38
34
|
nameContains: {
|
|
39
35
|
type: 'string',
|
|
@@ -81,8 +77,7 @@ exports.tool = {
|
|
|
81
77
|
};
|
|
82
78
|
const handler = async (conductor, args) => {
|
|
83
79
|
const body = args;
|
|
84
|
-
|
|
85
|
-
return (0, types_1.asTextContentResult)(await response.json());
|
|
80
|
+
return (0, types_1.asTextContentResult)(await conductor.qbd.employees.list(body));
|
|
86
81
|
};
|
|
87
82
|
exports.handler = handler;
|
|
88
83
|
exports.default = { metadata: exports.metadata, tool: exports.tool, handler: exports.handler };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-qbd-employees.js","sourceRoot":"","sources":["../../../src/tools/qbd/employees/list-qbd-employees.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,0DAA+E;AAKlE,QAAA,QAAQ,GAAa;IAChC,QAAQ,EAAE,eAAe;IACzB,SAAS,EAAE,MAAM;IACjB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,KAAK;IACjB,QAAQ,EAAE,+BAA+B;CAC1C,CAAC;AAEW,QAAA,IAAI,GAAS;IACxB,IAAI,EAAE,oBAAoB;IAC1B,WAAW,EACT,
|
|
1
|
+
{"version":3,"file":"list-qbd-employees.js","sourceRoot":"","sources":["../../../src/tools/qbd/employees/list-qbd-employees.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,0DAA+E;AAKlE,QAAA,QAAQ,GAAa;IAChC,QAAQ,EAAE,eAAe;IACzB,SAAS,EAAE,MAAM;IACjB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,KAAK;IACjB,QAAQ,EAAE,+BAA+B;CAC1C,CAAC;AAEW,QAAA,IAAI,GAAS;IACxB,IAAI,EAAE,oBAAoB;IAC1B,WAAW,EACT,qVAAqV;IACvV,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,kBAAkB,EAAE;gBAClB,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,+FAA+F;aAClG;YACD,GAAG,EAAE;gBACH,IAAI,EAAE,OAAO;gBACb,WAAW,EACT,wTAAwT;gBAC1T,KAAK,EAAE;oBACL,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,KAAK,EAAE;gBACL,IAAI,EAAE,SAAS;gBACf,WAAW,EACT,shBAAshB;aACzhB;YACD,YAAY,EAAE;gBACZ,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,8KAA8K;aACjL;YACD,YAAY,EAAE;gBACZ,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,+KAA+K;aAClL;YACD,QAAQ,EAAE;gBACR,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,0FAA0F;aAC7F;YACD,KAAK,EAAE;gBACL,IAAI,EAAE,OAAO;gBACb,WAAW,EACT,mWAAmW;gBACrW,KAAK,EAAE;oBACL,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,cAAc,EAAE;gBACd,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,+KAA+K;aAClL;YACD,MAAM,EAAE;gBACN,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,uFAAuF;aACrG;YACD,MAAM,EAAE;gBACN,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,0DAA0D;gBACvE,IAAI,EAAE,CAAC,QAAQ,EAAE,KAAK,EAAE,UAAU,CAAC;aACpC;YACD,YAAY,EAAE;gBACZ,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,iMAAiM;aACpM;YACD,aAAa,EAAE;gBACb,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,kMAAkM;aACrM;SACF;QACD,QAAQ,EAAE,CAAC,oBAAoB,CAAC;KACjC;CACF,CAAC;AAEK,MAAM,OAAO,GAAG,KAAK,EAAE,SAAoB,EAAE,IAAyC,EAAE,EAAE;IAC/F,MAAM,IAAI,GAAG,IAAW,CAAC;IACzB,OAAO,IAAA,2BAAmB,EAAC,MAAM,SAAS,CAAC,GAAG,CAAC,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC;AACvE,CAAC,CAAC;AAHW,QAAA,OAAO,WAGlB;AAEF,kBAAe,EAAE,QAAQ,EAAR,gBAAQ,EAAE,IAAI,EAAJ,YAAI,EAAE,OAAO,EAAP,eAAO,EAAE,CAAC"}
|
|
@@ -9,7 +9,7 @@ export const metadata = {
|
|
|
9
9
|
};
|
|
10
10
|
export const tool = {
|
|
11
11
|
name: 'list_qbd_employees',
|
|
12
|
-
description: "When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\nReturns a list of employees.
|
|
12
|
+
description: "When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\nReturns a list of employees. NOTE: QuickBooks Desktop does not support pagination for employees; hence, there is no `cursor` parameter. Users typically have few employees.",
|
|
13
13
|
inputSchema: {
|
|
14
14
|
type: 'object',
|
|
15
15
|
properties: {
|
|
@@ -17,10 +17,6 @@ export const tool = {
|
|
|
17
17
|
type: 'string',
|
|
18
18
|
description: 'The ID of the EndUser to receive this request (e.g., `"conductorEndUserId:{{END_USER_ID}}"`).',
|
|
19
19
|
},
|
|
20
|
-
cursor: {
|
|
21
|
-
type: 'string',
|
|
22
|
-
description: 'The pagination token to fetch the next set of results when paginating with the `limit` parameter. Do not include this parameter on the first call. Use the `nextCursor` value returned in the previous response to request subsequent results.',
|
|
23
|
-
},
|
|
24
20
|
ids: {
|
|
25
21
|
type: 'array',
|
|
26
22
|
description: 'Filter for specific employees by their QuickBooks-assigned unique identifier(s).\n\n**IMPORTANT**: If you include this parameter, QuickBooks will ignore all other query parameters for this request.\n\n**NOTE**: If any of the values you specify in this parameter are not found, the request will return an error.',
|
|
@@ -30,7 +26,7 @@ export const tool = {
|
|
|
30
26
|
},
|
|
31
27
|
limit: {
|
|
32
28
|
type: 'integer',
|
|
33
|
-
description: 'The maximum number of objects to return
|
|
29
|
+
description: 'The maximum number of objects to return.\n\n**IMPORTANT**: QuickBooks Desktop does not support cursor-based pagination for employees. This parameter will limit the response size, but you cannot fetch subsequent results using a cursor. For pagination, use the name-range parameters instead (e.g., `nameFrom=A&nameTo=B`).\n\nWhen this parameter is omitted, the endpoint returns all employees without limit, unlike paginated endpoints which default to 150 records. This is acceptable because employees typically have low record counts.',
|
|
34
30
|
},
|
|
35
31
|
nameContains: {
|
|
36
32
|
type: 'string',
|
|
@@ -78,8 +74,7 @@ export const tool = {
|
|
|
78
74
|
};
|
|
79
75
|
export const handler = async (conductor, args) => {
|
|
80
76
|
const body = args;
|
|
81
|
-
|
|
82
|
-
return asTextContentResult(await response.json());
|
|
77
|
+
return asTextContentResult(await conductor.qbd.employees.list(body));
|
|
83
78
|
};
|
|
84
79
|
export default { metadata, tool, handler };
|
|
85
80
|
//# sourceMappingURL=list-qbd-employees.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-qbd-employees.mjs","sourceRoot":"","sources":["../../../src/tools/qbd/employees/list-qbd-employees.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EAAY,mBAAmB,EAAE,MAAM,gCAAgC;AAK9E,MAAM,CAAC,MAAM,QAAQ,GAAa;IAChC,QAAQ,EAAE,eAAe;IACzB,SAAS,EAAE,MAAM;IACjB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,KAAK;IACjB,QAAQ,EAAE,+BAA+B;CAC1C,CAAC;AAEF,MAAM,CAAC,MAAM,IAAI,GAAS;IACxB,IAAI,EAAE,oBAAoB;IAC1B,WAAW,EACT,
|
|
1
|
+
{"version":3,"file":"list-qbd-employees.mjs","sourceRoot":"","sources":["../../../src/tools/qbd/employees/list-qbd-employees.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EAAY,mBAAmB,EAAE,MAAM,gCAAgC;AAK9E,MAAM,CAAC,MAAM,QAAQ,GAAa;IAChC,QAAQ,EAAE,eAAe;IACzB,SAAS,EAAE,MAAM;IACjB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,KAAK;IACjB,QAAQ,EAAE,+BAA+B;CAC1C,CAAC;AAEF,MAAM,CAAC,MAAM,IAAI,GAAS;IACxB,IAAI,EAAE,oBAAoB;IAC1B,WAAW,EACT,qVAAqV;IACvV,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,kBAAkB,EAAE;gBAClB,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,+FAA+F;aAClG;YACD,GAAG,EAAE;gBACH,IAAI,EAAE,OAAO;gBACb,WAAW,EACT,wTAAwT;gBAC1T,KAAK,EAAE;oBACL,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,KAAK,EAAE;gBACL,IAAI,EAAE,SAAS;gBACf,WAAW,EACT,shBAAshB;aACzhB;YACD,YAAY,EAAE;gBACZ,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,8KAA8K;aACjL;YACD,YAAY,EAAE;gBACZ,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,+KAA+K;aAClL;YACD,QAAQ,EAAE;gBACR,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,0FAA0F;aAC7F;YACD,KAAK,EAAE;gBACL,IAAI,EAAE,OAAO;gBACb,WAAW,EACT,mWAAmW;gBACrW,KAAK,EAAE;oBACL,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,cAAc,EAAE;gBACd,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,+KAA+K;aAClL;YACD,MAAM,EAAE;gBACN,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,uFAAuF;aACrG;YACD,MAAM,EAAE;gBACN,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,0DAA0D;gBACvE,IAAI,EAAE,CAAC,QAAQ,EAAE,KAAK,EAAE,UAAU,CAAC;aACpC;YACD,YAAY,EAAE;gBACZ,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,iMAAiM;aACpM;YACD,aAAa,EAAE;gBACb,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,kMAAkM;aACrM;SACF;QACD,QAAQ,EAAE,CAAC,oBAAoB,CAAC;KACjC;CACF,CAAC;AAEF,MAAM,CAAC,MAAM,OAAO,GAAG,KAAK,EAAE,SAAoB,EAAE,IAAyC,EAAE,EAAE;IAC/F,MAAM,IAAI,GAAG,IAAW,CAAC;IACzB,OAAO,mBAAmB,CAAC,MAAM,SAAS,CAAC,GAAG,CAAC,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC;AACvE,CAAC,CAAC;AAEF,eAAe,EAAE,QAAQ,EAAE,IAAI,EAAE,OAAO,EAAE,CAAC"}
|