@nirvana-labs/nirvana-mcp 1.21.0 → 1.22.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 +16 -0
- package/package.json +2 -2
- package/server.js +1 -1
- package/server.mjs +1 -1
- package/src/server.ts +1 -1
- package/src/tools/compute/vms/os-images/list-vms-compute-os-images.ts +12 -3
- package/tools/compute/vms/os-images/list-vms-compute-os-images.d.mts.map +1 -1
- package/tools/compute/vms/os-images/list-vms-compute-os-images.d.ts.map +1 -1
- package/tools/compute/vms/os-images/list-vms-compute-os-images.js +12 -3
- package/tools/compute/vms/os-images/list-vms-compute-os-images.js.map +1 -1
- package/tools/compute/vms/os-images/list-vms-compute-os-images.mjs +12 -3
- package/tools/compute/vms/os-images/list-vms-compute-os-images.mjs.map +1 -1
package/README.md
CHANGED
|
@@ -39,6 +39,22 @@ in Cursor's `mcp.json`, which can be found in Cursor Settings > Tools & MCP > Ne
|
|
|
39
39
|
|
|
40
40
|
[](https://cursor.com/en-US/install-mcp?name=@nirvana-labs/nirvana-mcp&config=eyJjb21tYW5kIjoibnB4IiwiYXJncyI6WyIteSIsIkBuaXJ2YW5hLWxhYnMvbmlydmFuYS1tY3AiXSwiZW52Ijp7Ik5JUlZBTkFfTEFCU19BUElfS0VZIjoiU2V0IHlvdXIgTklSVkFOQV9MQUJTX0FQSV9LRVkgaGVyZS4ifX0)
|
|
41
41
|
|
|
42
|
+
### VS Code
|
|
43
|
+
|
|
44
|
+
If you use MCP, you can install the MCP server by clicking the link below. You will need to set your environment variables
|
|
45
|
+
in VS Code's `mcp.json`, which can be found via Command Palette > MCP: Open User Configuration.
|
|
46
|
+
|
|
47
|
+
[Open VS Code](https://vscode.stainless.com/mcp/%7B%22name%22%3A%22%40nirvana-labs%2Fnirvana-mcp%22%2C%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22-y%22%2C%22%40nirvana-labs%2Fnirvana-mcp%22%5D%2C%22env%22%3A%7B%22NIRVANA_LABS_API_KEY%22%3A%22Set%20your%20NIRVANA_LABS_API_KEY%20here.%22%7D%7D)
|
|
48
|
+
|
|
49
|
+
### Claude Code
|
|
50
|
+
|
|
51
|
+
If you use Claude Code, you can install the MCP server by running the command below in your terminal. You will need to set your
|
|
52
|
+
environment variables in Claude Code's `.claude.json`, which can be found in your home directory.
|
|
53
|
+
|
|
54
|
+
```
|
|
55
|
+
claude mcp add --transport stdio nirvana_labs_nirvana_api --env NIRVANA_LABS_API_KEY="Your NIRVANA_LABS_API_KEY here." -- npx -y @nirvana-labs/nirvana-mcp
|
|
56
|
+
```
|
|
57
|
+
|
|
42
58
|
## Exposing endpoints to your MCP Client
|
|
43
59
|
|
|
44
60
|
There are three ways to expose endpoints as tools in the MCP server:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nirvana-labs/nirvana-mcp",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.22.0",
|
|
4
4
|
"description": "The official MCP Server for the Nirvana Labs API",
|
|
5
5
|
"author": "Nirvana Labs <engineering@nirvanalabs.io>",
|
|
6
6
|
"types": "./index.d.ts",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"fix": "eslint --fix --ext ts,js ."
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@nirvana-labs/nirvana": "^1.
|
|
30
|
+
"@nirvana-labs/nirvana": "^1.22.0",
|
|
31
31
|
"@cloudflare/cabidela": "^0.2.4",
|
|
32
32
|
"@modelcontextprotocol/sdk": "^1.11.5",
|
|
33
33
|
"@valtown/deno-http-worker": "^0.0.21",
|
package/server.js
CHANGED
|
@@ -22,7 +22,7 @@ var tools_2 = require("./tools.js");
|
|
|
22
22
|
Object.defineProperty(exports, "endpoints", { enumerable: true, get: function () { return tools_2.endpoints; } });
|
|
23
23
|
const newMcpServer = () => new mcp_js_1.McpServer({
|
|
24
24
|
name: 'nirvana_labs_nirvana_api',
|
|
25
|
-
version: '1.
|
|
25
|
+
version: '1.22.0',
|
|
26
26
|
}, { capabilities: { tools: {}, logging: {} } });
|
|
27
27
|
exports.newMcpServer = newMcpServer;
|
|
28
28
|
// Create server instance
|
package/server.mjs
CHANGED
|
@@ -11,7 +11,7 @@ export { ClientType } from "./compat.mjs";
|
|
|
11
11
|
export { endpoints } from "./tools.mjs";
|
|
12
12
|
export const newMcpServer = () => new McpServer({
|
|
13
13
|
name: 'nirvana_labs_nirvana_api',
|
|
14
|
-
version: '1.
|
|
14
|
+
version: '1.22.0',
|
|
15
15
|
}, { capabilities: { tools: {}, logging: {} } });
|
|
16
16
|
// Create server instance
|
|
17
17
|
export const server = newMcpServer();
|
package/src/server.ts
CHANGED
|
@@ -18,10 +18,18 @@ export const metadata: Metadata = {
|
|
|
18
18
|
export const tool: Tool = {
|
|
19
19
|
name: 'list_vms_compute_os_images',
|
|
20
20
|
description:
|
|
21
|
-
"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\nList all OS Images\n\n# Response Schema\n```json\n{\n
|
|
21
|
+
"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\nList all OS Images\n\n# Response Schema\n```json\n{\n type: 'object',\n properties: {\n items: {\n type: 'array',\n items: {\n $ref: '#/$defs/os_image'\n }\n },\n pagination: {\n $ref: '#/$defs/pagination'\n }\n },\n required: [ 'items',\n 'pagination'\n ],\n $defs: {\n os_image: {\n type: 'object',\n description: 'OS Image details.',\n properties: {\n created_at: {\n type: 'string',\n description: 'When the OS Image was created.',\n format: 'date-time'\n },\n display_name: {\n type: 'string',\n description: 'Display name of the OS Image.'\n },\n name: {\n type: 'string',\n description: 'Name of the OS Image.'\n }\n },\n required: [ 'created_at',\n 'display_name',\n 'name'\n ]\n },\n pagination: {\n type: 'object',\n description: 'Pagination response details.',\n properties: {\n next_cursor: {\n type: 'string'\n },\n previous_cursor: {\n type: 'string'\n },\n total_count: {\n type: 'integer'\n }\n },\n required: [ 'next_cursor',\n 'previous_cursor',\n 'total_count'\n ]\n }\n }\n}\n```",
|
|
22
22
|
inputSchema: {
|
|
23
23
|
type: 'object',
|
|
24
24
|
properties: {
|
|
25
|
+
cursor: {
|
|
26
|
+
type: 'string',
|
|
27
|
+
description: 'Pagination cursor returned by a previous request',
|
|
28
|
+
},
|
|
29
|
+
limit: {
|
|
30
|
+
type: 'integer',
|
|
31
|
+
description: 'Maximum number of items to return',
|
|
32
|
+
},
|
|
25
33
|
jq_filter: {
|
|
26
34
|
type: 'string',
|
|
27
35
|
title: 'jq Filter',
|
|
@@ -37,8 +45,9 @@ export const tool: Tool = {
|
|
|
37
45
|
};
|
|
38
46
|
|
|
39
47
|
export const handler = async (client: NirvanaLabs, args: Record<string, unknown> | undefined) => {
|
|
40
|
-
const { jq_filter } = args as any;
|
|
41
|
-
|
|
48
|
+
const { jq_filter, ...body } = args as any;
|
|
49
|
+
const response = await client.compute.vms.osImages.list(body).asResponse();
|
|
50
|
+
return asTextContentResult(await maybeFilter(jq_filter, await response.json()));
|
|
42
51
|
};
|
|
43
52
|
|
|
44
53
|
export default { metadata, tool, handler };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-vms-compute-os-images.d.mts","sourceRoot":"","sources":["../../../../src/tools/compute/vms/os-images/list-vms-compute-os-images.ts"],"names":[],"mappings":"OAGO,EAAE,QAAQ,EAAuB,MAAM,uCAAuC;OAE9E,EAAE,IAAI,EAAE,MAAM,oCAAoC;OAClD,WAAW,MAAM,uBAAuB;AAE/C,eAAO,MAAM,QAAQ,EAAE,QAOtB,CAAC;AAEF,eAAO,MAAM,IAAI,EAAE,
|
|
1
|
+
{"version":3,"file":"list-vms-compute-os-images.d.mts","sourceRoot":"","sources":["../../../../src/tools/compute/vms/os-images/list-vms-compute-os-images.ts"],"names":[],"mappings":"OAGO,EAAE,QAAQ,EAAuB,MAAM,uCAAuC;OAE9E,EAAE,IAAI,EAAE,MAAM,oCAAoC;OAClD,WAAW,MAAM,uBAAuB;AAE/C,eAAO,MAAM,QAAQ,EAAE,QAOtB,CAAC;AAEF,eAAO,MAAM,IAAI,EAAE,IA2BlB,CAAC;AAEF,eAAO,MAAM,OAAO,GAAU,QAAQ,WAAW,EAAE,MAAM,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS,4EAI3F,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;sBAJoC,WAAW,QAAQ,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS;;AAM5F,wBAA2C"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-vms-compute-os-images.d.ts","sourceRoot":"","sources":["../../../../src/tools/compute/vms/os-images/list-vms-compute-os-images.ts"],"names":[],"mappings":"OAGO,EAAE,QAAQ,EAAuB,MAAM,uCAAuC;OAE9E,EAAE,IAAI,EAAE,MAAM,oCAAoC;OAClD,WAAW,MAAM,uBAAuB;AAE/C,eAAO,MAAM,QAAQ,EAAE,QAOtB,CAAC;AAEF,eAAO,MAAM,IAAI,EAAE,
|
|
1
|
+
{"version":3,"file":"list-vms-compute-os-images.d.ts","sourceRoot":"","sources":["../../../../src/tools/compute/vms/os-images/list-vms-compute-os-images.ts"],"names":[],"mappings":"OAGO,EAAE,QAAQ,EAAuB,MAAM,uCAAuC;OAE9E,EAAE,IAAI,EAAE,MAAM,oCAAoC;OAClD,WAAW,MAAM,uBAAuB;AAE/C,eAAO,MAAM,QAAQ,EAAE,QAOtB,CAAC;AAEF,eAAO,MAAM,IAAI,EAAE,IA2BlB,CAAC;AAEF,eAAO,MAAM,OAAO,GAAU,QAAQ,WAAW,EAAE,MAAM,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS,4EAI3F,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;sBAJoC,WAAW,QAAQ,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS;;AAM5F,wBAA2C"}
|
|
@@ -14,10 +14,18 @@ exports.metadata = {
|
|
|
14
14
|
};
|
|
15
15
|
exports.tool = {
|
|
16
16
|
name: 'list_vms_compute_os_images',
|
|
17
|
-
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\nList all OS Images\n\n# Response Schema\n```json\n{\n
|
|
17
|
+
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\nList all OS Images\n\n# Response Schema\n```json\n{\n type: 'object',\n properties: {\n items: {\n type: 'array',\n items: {\n $ref: '#/$defs/os_image'\n }\n },\n pagination: {\n $ref: '#/$defs/pagination'\n }\n },\n required: [ 'items',\n 'pagination'\n ],\n $defs: {\n os_image: {\n type: 'object',\n description: 'OS Image details.',\n properties: {\n created_at: {\n type: 'string',\n description: 'When the OS Image was created.',\n format: 'date-time'\n },\n display_name: {\n type: 'string',\n description: 'Display name of the OS Image.'\n },\n name: {\n type: 'string',\n description: 'Name of the OS Image.'\n }\n },\n required: [ 'created_at',\n 'display_name',\n 'name'\n ]\n },\n pagination: {\n type: 'object',\n description: 'Pagination response details.',\n properties: {\n next_cursor: {\n type: 'string'\n },\n previous_cursor: {\n type: 'string'\n },\n total_count: {\n type: 'integer'\n }\n },\n required: [ 'next_cursor',\n 'previous_cursor',\n 'total_count'\n ]\n }\n }\n}\n```",
|
|
18
18
|
inputSchema: {
|
|
19
19
|
type: 'object',
|
|
20
20
|
properties: {
|
|
21
|
+
cursor: {
|
|
22
|
+
type: 'string',
|
|
23
|
+
description: 'Pagination cursor returned by a previous request',
|
|
24
|
+
},
|
|
25
|
+
limit: {
|
|
26
|
+
type: 'integer',
|
|
27
|
+
description: 'Maximum number of items to return',
|
|
28
|
+
},
|
|
21
29
|
jq_filter: {
|
|
22
30
|
type: 'string',
|
|
23
31
|
title: 'jq Filter',
|
|
@@ -31,8 +39,9 @@ exports.tool = {
|
|
|
31
39
|
},
|
|
32
40
|
};
|
|
33
41
|
const handler = async (client, args) => {
|
|
34
|
-
const { jq_filter } = args;
|
|
35
|
-
|
|
42
|
+
const { jq_filter, ...body } = args;
|
|
43
|
+
const response = await client.compute.vms.osImages.list(body).asResponse();
|
|
44
|
+
return (0, types_1.asTextContentResult)(await (0, filtering_1.maybeFilter)(jq_filter, await response.json()));
|
|
36
45
|
};
|
|
37
46
|
exports.handler = handler;
|
|
38
47
|
exports.default = { metadata: exports.metadata, tool: exports.tool, handler: exports.handler };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-vms-compute-os-images.js","sourceRoot":"","sources":["../../../../src/tools/compute/vms/os-images/list-vms-compute-os-images.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,mEAAkE;AAClE,iEAAsF;AAKzE,QAAA,QAAQ,GAAa;IAChC,QAAQ,EAAE,uBAAuB;IACjC,SAAS,EAAE,MAAM;IACjB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,KAAK;IACjB,QAAQ,EAAE,2BAA2B;IACrC,WAAW,EAAE,gBAAgB;CAC9B,CAAC;AAEW,QAAA,IAAI,GAAS;IACxB,IAAI,EAAE,4BAA4B;IAClC,WAAW,EACT,
|
|
1
|
+
{"version":3,"file":"list-vms-compute-os-images.js","sourceRoot":"","sources":["../../../../src/tools/compute/vms/os-images/list-vms-compute-os-images.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,mEAAkE;AAClE,iEAAsF;AAKzE,QAAA,QAAQ,GAAa;IAChC,QAAQ,EAAE,uBAAuB;IACjC,SAAS,EAAE,MAAM;IACjB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,KAAK;IACjB,QAAQ,EAAE,2BAA2B;IACrC,WAAW,EAAE,gBAAgB;CAC9B,CAAC;AAEW,QAAA,IAAI,GAAS;IACxB,IAAI,EAAE,4BAA4B;IAClC,WAAW,EACT,q+CAAq+C;IACv+C,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,MAAM,EAAE;gBACN,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,kDAAkD;aAChE;YACD,KAAK,EAAE;gBACL,IAAI,EAAE,SAAS;gBACf,WAAW,EAAE,mCAAmC;aACjD;YACD,SAAS,EAAE;gBACT,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,WAAW;gBAClB,WAAW,EACT,kWAAkW;aACrW;SACF;QACD,QAAQ,EAAE,EAAE;KACb;IACD,WAAW,EAAE;QACX,YAAY,EAAE,IAAI;KACnB;CACF,CAAC;AAEK,MAAM,OAAO,GAAG,KAAK,EAAE,MAAmB,EAAE,IAAyC,EAAE,EAAE;IAC9F,MAAM,EAAE,SAAS,EAAE,GAAG,IAAI,EAAE,GAAG,IAAW,CAAC;IAC3C,MAAM,QAAQ,GAAG,MAAM,MAAM,CAAC,OAAO,CAAC,GAAG,CAAC,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,UAAU,EAAE,CAAC;IAC3E,OAAO,IAAA,2BAAmB,EAAC,MAAM,IAAA,uBAAW,EAAC,SAAS,EAAE,MAAM,QAAQ,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC;AAClF,CAAC,CAAC;AAJW,QAAA,OAAO,WAIlB;AAEF,kBAAe,EAAE,QAAQ,EAAR,gBAAQ,EAAE,IAAI,EAAJ,YAAI,EAAE,OAAO,EAAP,eAAO,EAAE,CAAC"}
|
|
@@ -11,10 +11,18 @@ export const metadata = {
|
|
|
11
11
|
};
|
|
12
12
|
export const tool = {
|
|
13
13
|
name: 'list_vms_compute_os_images',
|
|
14
|
-
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\nList all OS Images\n\n# Response Schema\n```json\n{\n
|
|
14
|
+
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\nList all OS Images\n\n# Response Schema\n```json\n{\n type: 'object',\n properties: {\n items: {\n type: 'array',\n items: {\n $ref: '#/$defs/os_image'\n }\n },\n pagination: {\n $ref: '#/$defs/pagination'\n }\n },\n required: [ 'items',\n 'pagination'\n ],\n $defs: {\n os_image: {\n type: 'object',\n description: 'OS Image details.',\n properties: {\n created_at: {\n type: 'string',\n description: 'When the OS Image was created.',\n format: 'date-time'\n },\n display_name: {\n type: 'string',\n description: 'Display name of the OS Image.'\n },\n name: {\n type: 'string',\n description: 'Name of the OS Image.'\n }\n },\n required: [ 'created_at',\n 'display_name',\n 'name'\n ]\n },\n pagination: {\n type: 'object',\n description: 'Pagination response details.',\n properties: {\n next_cursor: {\n type: 'string'\n },\n previous_cursor: {\n type: 'string'\n },\n total_count: {\n type: 'integer'\n }\n },\n required: [ 'next_cursor',\n 'previous_cursor',\n 'total_count'\n ]\n }\n }\n}\n```",
|
|
15
15
|
inputSchema: {
|
|
16
16
|
type: 'object',
|
|
17
17
|
properties: {
|
|
18
|
+
cursor: {
|
|
19
|
+
type: 'string',
|
|
20
|
+
description: 'Pagination cursor returned by a previous request',
|
|
21
|
+
},
|
|
22
|
+
limit: {
|
|
23
|
+
type: 'integer',
|
|
24
|
+
description: 'Maximum number of items to return',
|
|
25
|
+
},
|
|
18
26
|
jq_filter: {
|
|
19
27
|
type: 'string',
|
|
20
28
|
title: 'jq Filter',
|
|
@@ -28,8 +36,9 @@ export const tool = {
|
|
|
28
36
|
},
|
|
29
37
|
};
|
|
30
38
|
export const handler = async (client, args) => {
|
|
31
|
-
const { jq_filter } = args;
|
|
32
|
-
|
|
39
|
+
const { jq_filter, ...body } = args;
|
|
40
|
+
const response = await client.compute.vms.osImages.list(body).asResponse();
|
|
41
|
+
return asTextContentResult(await maybeFilter(jq_filter, await response.json()));
|
|
33
42
|
};
|
|
34
43
|
export default { metadata, tool, handler };
|
|
35
44
|
//# sourceMappingURL=list-vms-compute-os-images.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-vms-compute-os-images.mjs","sourceRoot":"","sources":["../../../../src/tools/compute/vms/os-images/list-vms-compute-os-images.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EAAE,WAAW,EAAE,MAAM,qCAAqC;OAC1D,EAAY,mBAAmB,EAAE,MAAM,uCAAuC;AAKrF,MAAM,CAAC,MAAM,QAAQ,GAAa;IAChC,QAAQ,EAAE,uBAAuB;IACjC,SAAS,EAAE,MAAM;IACjB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,KAAK;IACjB,QAAQ,EAAE,2BAA2B;IACrC,WAAW,EAAE,gBAAgB;CAC9B,CAAC;AAEF,MAAM,CAAC,MAAM,IAAI,GAAS;IACxB,IAAI,EAAE,4BAA4B;IAClC,WAAW,EACT,
|
|
1
|
+
{"version":3,"file":"list-vms-compute-os-images.mjs","sourceRoot":"","sources":["../../../../src/tools/compute/vms/os-images/list-vms-compute-os-images.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EAAE,WAAW,EAAE,MAAM,qCAAqC;OAC1D,EAAY,mBAAmB,EAAE,MAAM,uCAAuC;AAKrF,MAAM,CAAC,MAAM,QAAQ,GAAa;IAChC,QAAQ,EAAE,uBAAuB;IACjC,SAAS,EAAE,MAAM;IACjB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,KAAK;IACjB,QAAQ,EAAE,2BAA2B;IACrC,WAAW,EAAE,gBAAgB;CAC9B,CAAC;AAEF,MAAM,CAAC,MAAM,IAAI,GAAS;IACxB,IAAI,EAAE,4BAA4B;IAClC,WAAW,EACT,q+CAAq+C;IACv+C,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,MAAM,EAAE;gBACN,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,kDAAkD;aAChE;YACD,KAAK,EAAE;gBACL,IAAI,EAAE,SAAS;gBACf,WAAW,EAAE,mCAAmC;aACjD;YACD,SAAS,EAAE;gBACT,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,WAAW;gBAClB,WAAW,EACT,kWAAkW;aACrW;SACF;QACD,QAAQ,EAAE,EAAE;KACb;IACD,WAAW,EAAE;QACX,YAAY,EAAE,IAAI;KACnB;CACF,CAAC;AAEF,MAAM,CAAC,MAAM,OAAO,GAAG,KAAK,EAAE,MAAmB,EAAE,IAAyC,EAAE,EAAE;IAC9F,MAAM,EAAE,SAAS,EAAE,GAAG,IAAI,EAAE,GAAG,IAAW,CAAC;IAC3C,MAAM,QAAQ,GAAG,MAAM,MAAM,CAAC,OAAO,CAAC,GAAG,CAAC,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,UAAU,EAAE,CAAC;IAC3E,OAAO,mBAAmB,CAAC,MAAM,WAAW,CAAC,SAAS,EAAE,MAAM,QAAQ,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC;AAClF,CAAC,CAAC;AAEF,eAAe,EAAE,QAAQ,EAAE,IAAI,EAAE,OAAO,EAAE,CAAC"}
|