@agentica/core 0.17.1 → 0.19.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.
@@ -1,6 +1,22 @@
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
  Object.defineProperty(exports, "__esModule", { value: true });
12
+ const index_js_1 = require("@modelcontextprotocol/sdk/client/index.js");
13
+ const stdio_js_1 = require("@modelcontextprotocol/sdk/client/stdio.js");
14
+ const assertMcpLlmApplication_1 = require("../../functional/assertMcpLlmApplication");
3
15
  const AgenticaOperationComposer_1 = require("./AgenticaOperationComposer");
16
+ const client = new index_js_1.Client({
17
+ name: "calculator",
18
+ version: "1.0.0",
19
+ });
4
20
  // test helper functions
5
21
  function createMockHttpFunction(name, method, path) {
6
22
  return {
@@ -53,21 +69,25 @@ function createMockClassController(name, functions) {
53
69
  };
54
70
  }
55
71
  function createMockMcpController(name, functions) {
56
- return {
57
- name,
58
- protocol: "mcp",
59
- application: {
60
- transport: {
61
- type: "sse",
62
- url: new URL("https://example.com"),
63
- },
64
- functions,
65
- },
66
- };
72
+ return __awaiter(this, void 0, void 0, function* () {
73
+ return {
74
+ name,
75
+ protocol: "mcp",
76
+ application: yield (0, assertMcpLlmApplication_1.assertMcpLlmApplication)({
77
+ client,
78
+ }).then(v => (Object.assign(Object.assign({}, v), { functions }))),
79
+ };
80
+ });
67
81
  }
68
82
  describe("a AgenticaOperationComposer", () => {
83
+ beforeAll(() => __awaiter(void 0, void 0, void 0, function* () {
84
+ yield client.connect(new stdio_js_1.StdioClientTransport({
85
+ command: "npx",
86
+ args: ["-y", "@wrtnlabs/calculator-mcp"],
87
+ }));
88
+ }));
69
89
  describe("compose", () => {
70
- it("should compose operations from controllers", () => {
90
+ it("should compose operations from controllers", () => __awaiter(void 0, void 0, void 0, function* () {
71
91
  // Mock controllers
72
92
  const mockHttpController = createMockHttpController("httpController", [
73
93
  createMockHttpFunction("function1", "get", "/api/function1"),
@@ -81,7 +101,7 @@ describe("a AgenticaOperationComposer", () => {
81
101
  output: {},
82
102
  },
83
103
  ]);
84
- const mockMcpController = createMockMcpController("mcpController", [
104
+ const mockMcpController = yield createMockMcpController("mcpController", [
85
105
  {
86
106
  name: "function4",
87
107
  parameters: {},
@@ -93,7 +113,7 @@ describe("a AgenticaOperationComposer", () => {
93
113
  expect(result.flat).toBeInstanceOf(Map);
94
114
  expect(result.group).toBeInstanceOf(Map);
95
115
  expect(result.divided).toBeUndefined();
96
- });
116
+ }));
97
117
  it("should divide operations when capacity is provided", () => {
98
118
  // Mock controllers
99
119
  const mockController = createMockHttpController("httpController", [
@@ -140,9 +160,9 @@ describe("a AgenticaOperationComposer", () => {
140
160
  expect((_a = result[0]) === null || _a === void 0 ? void 0 : _a.protocol).toBe("class");
141
161
  expect((_b = result[0]) === null || _b === void 0 ? void 0 : _b.name).toBe("_0_function1");
142
162
  });
143
- it("should get operations from mcp controllers", () => {
163
+ it("should get operations from mcp controllers", () => __awaiter(void 0, void 0, void 0, function* () {
144
164
  var _a, _b;
145
- const mockController = createMockMcpController("mcpController", [
165
+ const mockController = yield createMockMcpController("mcpController", [
146
166
  {
147
167
  name: "function1",
148
168
  parameters: {},
@@ -152,7 +172,7 @@ describe("a AgenticaOperationComposer", () => {
152
172
  expect(result).toHaveLength(1);
153
173
  expect((_a = result[0]) === null || _a === void 0 ? void 0 : _a.protocol).toBe("mcp");
154
174
  expect((_b = result[0]) === null || _b === void 0 ? void 0 : _b.name).toBe("_0_function1");
155
- });
175
+ }));
156
176
  it("should throw error for unsupported protocol", () => {
157
177
  const mockController = {
158
178
  name: "unsupportedController",
@@ -195,9 +215,9 @@ describe("a AgenticaOperationComposer", () => {
195
215
  });
196
216
  });
197
217
  describe("toMcpOperations", () => {
198
- it("should convert mcp controller to operations", () => {
218
+ it("should convert mcp controller to operations", () => __awaiter(void 0, void 0, void 0, function* () {
199
219
  var _a, _b;
200
- const mockController = createMockMcpController("mcpController", [
220
+ const mockController = yield createMockMcpController("mcpController", [
201
221
  {
202
222
  name: "function1",
203
223
  parameters: {},
@@ -207,7 +227,7 @@ describe("a AgenticaOperationComposer", () => {
207
227
  expect(result).toHaveLength(1);
208
228
  expect((_a = result[0]) === null || _a === void 0 ? void 0 : _a.protocol).toBe("mcp");
209
229
  expect((_b = result[0]) === null || _b === void 0 ? void 0 : _b.name).toBe("_0_function1");
210
- });
230
+ }));
211
231
  });
212
232
  describe("divide with invalid capacity", () => {
213
233
  it("should throw error when capacity is 0", () => {
@@ -1 +1 @@
1
- {"version":3,"file":"AgenticaOperationComposer.spec.js","sourceRoot":"","sources":["../../../src/context/internal/AgenticaOperationComposer.spec.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"AgenticaOperationComposer.spec.js","sourceRoot":"","sources":["../../../src/context/internal/AgenticaOperationComposer.spec.ts"],"names":[],"mappings":";;;;;;;;;;;AAEA,wEAAmE;AACnE,wEAAiF;AAMjF,sFAAmF;AAEnF,2EAAmI;AAEnI,MAAM,MAAM,GAAG,IAAI,iBAAM,CAAC;IACxB,IAAI,EAAE,YAAY;IAClB,OAAO,EAAE,OAAO;CACjB,CAAC,CAAC;AAEH,wBAAwB;AACxB,SAAS,sBAAsB,CAAC,IAAY,EAAE,MAAmD,EAAE,IAAY;IAC7G,OAAO;QACL,IAAI;QACJ,MAAM;QACN,IAAI;QACJ,QAAQ,EAAE,GAAG,EAAE,CAAC,CAAC,EAAE,OAAO,EAAE,IAAI,EAAE,IAAI,EAAE,EAAE,EAA2B,CAAA;QACrE,SAAS,EAAE,GAAG,EAAE,CAAC,CAAC,EAAE,CAAC;QACrB,KAAK,EAAE,GAAG,EAAE,CAAC,CAAC;YACZ,MAAM;YACN,IAAI;YACJ,WAAW,EAAE,IAAI;YACjB,QAAQ,EAAE,CAAC,IAAI,CAAC;YAChB,IAAI,EAAE,IAAI;YACV,KAAK,EAAE,IAAI;YACX,UAAU,EAAE,EAAE;YACd,OAAO,EAAE,IAAI;YACb,OAAO,EAAE,IAAI;YACb,UAAU,EAAE,EAAE;YACd,OAAO,EAAE,GAAG,EAAE,CAAC,IAAI;YACnB,SAAS,EAAE,GAAG,EAAE,CAAC,CAAC,EAAE,CAAC;SACtB,CAAC;QACF,UAAU,EAAE,EAAE;QACd,MAAM,EAAE,EAAE;KACX,CAAC;AACJ,CAAC;AAED,SAAS,wBAAwB,CAAC,IAAY,EAAE,SAAkC;IAChF,OAAO;QACL,IAAI;QACJ,QAAQ,EAAE,MAAM;QAChB,UAAU,EAAE,EAAE,IAAI,EAAE,qBAAqB,EAAE;QAC3C,WAAW,EAAE;YACX,KAAK,EAAE,SAAS;YAChB,OAAO,EAAE,EAAE;YACX,SAAS;YACT,MAAM,EAAE,EAAE;SACX;KACF,CAAC;AACJ,CAAC;AAED,SAAS,yBAAyB,CAAC,IAAY,EAAE,SAA8B;IAC7E,OAAO;QACL,IAAI;QACJ,QAAQ,EAAE,OAAO;QACjB,WAAW,EAAE;YACX,KAAK,EAAE,SAAS;YAChB,OAAO,EAAE,EAAE;YACX,SAAS;SACV;QACD,OAAO,EAAE,EAAE;KACZ,CAAC;AACJ,CAAC;AAED,SAAe,uBAAuB,CAAC,IAAY,EAAE,SAA4B;;QAC/E,OAAO;YACL,IAAI;YACJ,QAAQ,EAAE,KAAK;YACf,WAAW,EAAE,MAAM,IAAA,iDAAuB,EAAC;gBACzC,MAAM;aACP,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,iCACR,CAAC,KACJ,SAAS,IACT,CAAC;SACJ,CAAC;IACJ,CAAC;CAAA;AAED,QAAQ,CAAC,6BAA6B,EAAE,GAAG,EAAE;IAC3C,SAAS,CAAC,GAAS,EAAE;QACnB,MAAM,MAAM,CAAC,OAAO,CAAC,IAAI,+BAAoB,CAAC;YAC5C,OAAO,EAAE,KAAK;YACd,IAAI,EAAE,CAAC,IAAI,EAAE,0BAA0B,CAAC;SACzC,CAAC,CAAC,CAAC;IACN,CAAC,CAAA,CAAC,CAAC;IACH,QAAQ,CAAC,SAAS,EAAE,GAAG,EAAE;QACvB,EAAE,CAAC,4CAA4C,EAAE,GAAS,EAAE;YAC1D,mBAAmB;YACnB,MAAM,kBAAkB,GAAG,wBAAwB,CAAC,gBAAgB,EAAE;gBACpE,sBAAsB,CAAC,WAAW,EAAE,KAAK,EAAE,gBAAgB,CAAC;gBAC5D,sBAAsB,CAAC,WAAW,EAAE,MAAM,EAAE,gBAAgB,CAAC;aAC9D,CAAC,CAAC;YAEH,MAAM,mBAAmB,GAAG,yBAAyB,CAAC,iBAAiB,EAAE;gBACvE;oBACE,IAAI,EAAE,WAAW;oBACjB,QAAQ,EAAE,GAAG,EAAE,CAAC,CAAC,EAAE,OAAO,EAAE,IAAI,EAAE,IAAI,EAAE,EAAE,EAA2B,CAAA;oBACrE,UAAU,EAAE,EAAE;oBACd,MAAM,EAAE,EAAE;iBACX;aACF,CAAC,CAAC;YAEH,MAAM,iBAAiB,GAAG,MAAM,uBAAuB,CAAC,eAAe,EAAE;gBACvE;oBACE,IAAI,EAAE,WAAW;oBACjB,UAAU,EAAE,EAAE;iBACf;aACF,CAAC,CAAC;YAEH,MAAM,WAAW,GAAG,CAAC,kBAAkB,EAAE,mBAAmB,EAAE,iBAAiB,CAAC,CAAC;YAEjF,MAAM,MAAM,GAAG,IAAA,mCAAO,EAAC,EAAE,WAAW,EAAE,CAAC,CAAC;YAExC,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,YAAY,CAAC,CAAC,CAAC,CAAC;YACrC,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,cAAc,CAAC,GAAG,CAAC,CAAC;YACxC,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,cAAc,CAAC,GAAG,CAAC,CAAC;YACzC,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,aAAa,EAAE,CAAC;QACzC,CAAC,CAAA,CAAC,CAAC;QAEH,EAAE,CAAC,oDAAoD,EAAE,GAAG,EAAE;YAC5D,mBAAmB;YACnB,MAAM,cAAc,GAAG,wBAAwB,CAAC,gBAAgB,EAAE;gBAChE,sBAAsB,CAAC,WAAW,EAAE,KAAK,EAAE,gBAAgB,CAAC;gBAC5D,sBAAsB,CAAC,WAAW,EAAE,MAAM,EAAE,gBAAgB,CAAC;gBAC7D,sBAAsB,CAAC,WAAW,EAAE,KAAK,EAAE,gBAAgB,CAAC;gBAC5D,sBAAsB,CAAC,WAAW,EAAE,QAAQ,EAAE,gBAAgB,CAAC;gBAC/D,sBAAsB,CAAC,WAAW,EAAE,OAAO,EAAE,gBAAgB,CAAC;aAC/D,CAAC,CAAC;YAEH,MAAM,MAAM,GAAyB;gBACnC,QAAQ,EAAE,CAAC;aACZ,CAAC;YAEF,MAAM,MAAM,GAAG,IAAA,mCAAO,EAAC,EAAE,WAAW,EAAE,CAAC,cAAc,CAAC,EAAE,MAAM,EAAE,CAAC,CAAC;YAElE,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,YAAY,CAAC,CAAC,CAAC,CAAC;YACrC,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,WAAW,EAAE,CAAC;YACrC,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,YAAY,CAAC,CAAC,CAAC,CAAC,CAAC,0DAA0D;QACpG,CAAC,CAAC,CAAC;IACL,CAAC,CAAC,CAAC;IAEH,QAAQ,CAAC,eAAe,EAAE,GAAG,EAAE;QAC7B,EAAE,CAAC,6CAA6C,EAAE,GAAG,EAAE;;YACrD,MAAM,cAAc,GAAG,wBAAwB,CAAC,gBAAgB,EAAE;gBAChE,sBAAsB,CAAC,WAAW,EAAE,KAAK,EAAE,gBAAgB,CAAC;gBAC5D,sBAAsB,CAAC,WAAW,EAAE,MAAM,EAAE,gBAAgB,CAAC;aAC9D,CAAC,CAAC;YAEH,MAAM,MAAM,GAAG,IAAA,yCAAa,EAAC,EAAE,WAAW,EAAE,CAAC,cAAc,CAAC,EAAE,MAAM,EAAE,CAAC,IAAI,EAAE,GAAG,EAAE,EAAE,CAAC,IAAI,GAAG,IAAI,IAAI,EAAE,EAAE,CAAC,CAAC;YAE1G,MAAM,CAAC,MAAM,CAAC,CAAC,YAAY,CAAC,CAAC,CAAC,CAAC;YAC/B,MAAM,CAAC,MAAA,MAAM,CAAC,CAAC,CAAC,0CAAE,QAAQ,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;YACzC,MAAM,CAAC,MAAA,MAAM,CAAC,CAAC,CAAC,0CAAE,IAAI,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC;YAC7C,MAAM,CAAC,MAAA,MAAM,CAAC,CAAC,CAAC,0CAAE,IAAI,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC;QAC/C,CAAC,CAAC,CAAC;QAEH,EAAE,CAAC,8CAA8C,EAAE,GAAG,EAAE;;YACtD,MAAM,cAAc,GAAG,yBAAyB,CAAC,iBAAiB,EAAE;gBAClE;oBACE,IAAI,EAAE,WAAW;oBACjB,QAAQ,EAAE,GAAG,EAAE,CAAC,CAAC,EAAE,OAAO,EAAE,IAAI,EAAE,IAAI,EAAE,EAAE,EAA2B,CAAA;oBACrE,UAAU,EAAE,EAAE;oBACd,MAAM,EAAE,EAAE;iBACX;aACF,CAAC,CAAC;YAEH,MAAM,MAAM,GAAG,IAAA,yCAAa,EAAC,EAAE,WAAW,EAAE,CAAC,cAAc,CAAC,EAAE,MAAM,EAAE,CAAC,IAAI,EAAE,GAAG,EAAE,EAAE,CAAC,IAAI,GAAG,IAAI,IAAI,EAAE,EAAE,CAAC,CAAC;YAE1G,MAAM,CAAC,MAAM,CAAC,CAAC,YAAY,CAAC,CAAC,CAAC,CAAC;YAC/B,MAAM,CAAC,MAAA,MAAM,CAAC,CAAC,CAAC,0CAAE,QAAQ,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;YAC1C,MAAM,CAAC,MAAA,MAAM,CAAC,CAAC,CAAC,0CAAE,IAAI,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC;QAC/C,CAAC,CAAC,CAAC;QAEH,EAAE,CAAC,4CAA4C,EAAE,GAAS,EAAE;;YAC1D,MAAM,cAAc,GAAG,MAAM,uBAAuB,CAAC,eAAe,EAAE;gBACpE;oBACE,IAAI,EAAE,WAAW;oBACjB,UAAU,EAAE,EAAE;iBACf;aACF,CAAC,CAAC;YAEH,MAAM,MAAM,GAAG,IAAA,yCAAa,EAAC,EAAE,WAAW,EAAE,CAAC,cAAc,CAAC,EAAE,MAAM,EAAE,CAAC,IAAI,EAAE,GAAG,EAAE,EAAE,CAAC,IAAI,GAAG,IAAI,IAAI,EAAE,EAAE,CAAC,CAAC;YAE1G,MAAM,CAAC,MAAM,CAAC,CAAC,YAAY,CAAC,CAAC,CAAC,CAAC;YAC/B,MAAM,CAAC,MAAA,MAAM,CAAC,CAAC,CAAC,0CAAE,QAAQ,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;YACxC,MAAM,CAAC,MAAA,MAAM,CAAC,CAAC,CAAC,0CAAE,IAAI,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC;QAC/C,CAAC,CAAA,CAAC,CAAC;QAEH,EAAE,CAAC,6CAA6C,EAAE,GAAG,EAAE;YACrD,MAAM,cAAc,GAAmC;gBACrD,IAAI,EAAE,uBAAuB;gBAC7B,QAAQ,EAAE,aAAkC;gBAC5C,UAAU,EAAE,EAAE,IAAI,EAAE,qBAAqB,EAAE;gBAC3C,WAAW,EAAE,EAA+D;aAC7E,CAAC;YAEF,MAAM,CAAC,GAAG,EAAE,CAAC,IAAA,yCAAa,EAAC,EAAE,WAAW,EAAE,CAAC,cAAc,CAAC,EAAE,MAAM,EAAE,CAAC,IAAI,EAAE,GAAG,EAAE,EAAE,CAAC,IAAI,GAAG,IAAI,IAAI,EAAE,EAAE,CAAC,CAAC,CAAC,OAAO,CAAC,mCAAmC,CAAC,CAAC;QACxJ,CAAC,CAAC,CAAC;IACL,CAAC,CAAC,CAAC;IAEH,QAAQ,CAAC,kBAAkB,EAAE,GAAG,EAAE;QAChC,EAAE,CAAC,8CAA8C,EAAE,GAAG,EAAE;;YACtD,MAAM,cAAc,GAAG,wBAAwB,CAAC,gBAAgB,EAAE;gBAChE,sBAAsB,CAAC,WAAW,EAAE,KAAK,EAAE,gBAAgB,CAAC;gBAC5D,sBAAsB,CAAC,WAAW,EAAE,MAAM,EAAE,gBAAgB,CAAC;aAC9D,CAAC,CAAC;YAEH,MAAM,MAAM,GAAG,IAAA,4CAAgB,EAAC,EAAE,UAAU,EAAE,cAAc,EAAE,KAAK,EAAE,CAAC,EAAE,MAAM,EAAE,CAAC,IAAI,EAAE,GAAG,EAAE,EAAE,CAAC,IAAI,GAAG,IAAI,IAAI,EAAE,EAAE,CAAC,CAAC;YAEpH,MAAM,CAAC,MAAM,CAAC,CAAC,YAAY,CAAC,CAAC,CAAC,CAAC;YAC/B,MAAM,CAAC,MAAA,MAAM,CAAC,CAAC,CAAC,0CAAE,QAAQ,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;YACzC,MAAM,CAAC,MAAA,MAAM,CAAC,CAAC,CAAC,0CAAE,IAAI,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC;YAC7C,MAAM,CAAC,MAAA,MAAM,CAAC,CAAC,CAAC,0CAAE,IAAI,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC;QAC/C,CAAC,CAAC,CAAC;IACL,CAAC,CAAC,CAAC;IAEH,QAAQ,CAAC,mBAAmB,EAAE,GAAG,EAAE;QACjC,EAAE,CAAC,+CAA+C,EAAE,GAAG,EAAE;;YACvD,MAAM,cAAc,GAAG,yBAAyB,CAAC,iBAAiB,EAAE;gBAClE;oBACE,IAAI,EAAE,WAAW;oBACjB,QAAQ,EAAE,GAAG,EAAE,CAAC,CAAC,EAAE,OAAO,EAAE,IAAI,EAAE,IAAI,EAAE,EAAE,EAA2B,CAAA;oBACrE,UAAU,EAAE,EAAE;oBACd,MAAM,EAAE,EAAE;iBACX;aACF,CAAC,CAAC;YAEH,MAAM,MAAM,GAAG,IAAA,6CAAiB,EAAC,EAAE,UAAU,EAAE,cAAc,EAAE,KAAK,EAAE,CAAC,EAAE,MAAM,EAAE,CAAC,IAAI,EAAE,GAAG,EAAE,EAAE,CAAC,IAAI,GAAG,IAAI,IAAI,EAAE,EAAE,CAAC,CAAC;YAErH,MAAM,CAAC,MAAM,CAAC,CAAC,YAAY,CAAC,CAAC,CAAC,CAAC;YAC/B,MAAM,CAAC,MAAA,MAAM,CAAC,CAAC,CAAC,0CAAE,QAAQ,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;YAC1C,MAAM,CAAC,MAAA,MAAM,CAAC,CAAC,CAAC,0CAAE,IAAI,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC;QAC/C,CAAC,CAAC,CAAC;IACL,CAAC,CAAC,CAAC;IAEH,QAAQ,CAAC,iBAAiB,EAAE,GAAG,EAAE;QAC/B,EAAE,CAAC,6CAA6C,EAAE,GAAS,EAAE;;YAC3D,MAAM,cAAc,GAAG,MAAM,uBAAuB,CAAC,eAAe,EAAE;gBACpE;oBACE,IAAI,EAAE,WAAW;oBACjB,UAAU,EAAE,EAAE;iBACf;aACF,CAAC,CAAC;YAEH,MAAM,MAAM,GAAG,IAAA,2CAAe,EAAC,EAAE,UAAU,EAAE,cAAc,EAAE,KAAK,EAAE,CAAC,EAAE,MAAM,EAAE,CAAC,IAAI,EAAE,GAAG,EAAE,EAAE,CAAC,IAAI,GAAG,IAAI,IAAI,EAAE,EAAE,CAAC,CAAC;YAEnH,MAAM,CAAC,MAAM,CAAC,CAAC,YAAY,CAAC,CAAC,CAAC,CAAC;YAC/B,MAAM,CAAC,MAAA,MAAM,CAAC,CAAC,CAAC,0CAAE,QAAQ,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;YACxC,MAAM,CAAC,MAAA,MAAM,CAAC,CAAC,CAAC,0CAAE,IAAI,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC;QAC/C,CAAC,CAAA,CAAC,CAAC;IACL,CAAC,CAAC,CAAC;IACH,QAAQ,CAAC,8BAA8B,EAAE,GAAG,EAAE;QAC5C,EAAE,CAAC,uCAAuC,EAAE,GAAG,EAAE;YAC/C,MAAM,KAAK,GAAG,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;YAC9B,MAAM,QAAQ,GAAG,CAAC,CAAC;YAEnB,MAAM,CAAC,GAAG,EAAE,CAAC,IAAA,kCAAM,EAAC,EAAE,KAAK,EAAE,QAAQ,EAAE,CAAC,CAAC,CAAC,OAAO,CAAC,qCAAqC,CAAC,CAAC;QAC3F,CAAC,CAAC,CAAC;QAEH,EAAE,CAAC,8CAA8C,EAAE,GAAG,EAAE;YACtD,MAAM,KAAK,GAAG,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;YAC9B,MAAM,QAAQ,GAAG,CAAC,CAAC,CAAC;YAEpB,MAAM,CAAC,GAAG,EAAE,CAAC,IAAA,kCAAM,EAAC,EAAE,KAAK,EAAE,QAAQ,EAAE,CAAC,CAAC,CAAC,OAAO,CAAC,qCAAqC,CAAC,CAAC;QAC3F,CAAC,CAAC,CAAC;QAEH,EAAE,CAAC,6CAA6C,EAAE,GAAG,EAAE;YACrD,MAAM,KAAK,GAAG,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;YAC9B,MAAM,QAAQ,GAAG,GAAG,CAAC;YACrB,MAAM,MAAM,GAAG,IAAA,kCAAM,EAAC,EAAE,KAAK,EAAE,QAAQ,EAAE,CAAC,CAAC;YAC3C,MAAM,CAAC,MAAM,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC;QAC9C,CAAC,CAAC,CAAC;QAEH,EAAE,CAAC,8CAA8C,EAAE,GAAG,EAAE;YACtD,MAAM,KAAK,GAAG,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;YAC9B,MAAM,QAAQ,GAAG,QAAQ,CAAC;YAE1B,MAAM,CAAC,GAAG,EAAE,CAAC,IAAA,kCAAM,EAAC,EAAE,KAAK,EAAE,QAAQ,EAAE,CAAC,CAAC,CAAC,OAAO,CAAC,qCAAqC,CAAC,CAAC;QAC3F,CAAC,CAAC,CAAC;QAEH,EAAE,CAAC,yCAAyC,EAAE,GAAG,EAAE;YACjD,MAAM,KAAK,GAAG,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;YAC9B,MAAM,QAAQ,GAAG,MAAM,CAAC,GAAG,CAAC;YAE5B,MAAM,CAAC,GAAG,EAAE,CAAC,IAAA,kCAAM,EAAC,EAAE,KAAK,EAAE,QAAQ,EAAE,CAAC,CAAC,CAAC,OAAO,CAAC,qCAAqC,CAAC,CAAC;QAC3F,CAAC,CAAC,CAAC;IACL,CAAC,CAAC,CAAC;IAEH,QAAQ,CAAC,QAAQ,EAAE,GAAG,EAAE;QACtB,EAAE,CAAC,mDAAmD,EAAE,GAAG,EAAE;YAC3D,MAAM,KAAK,GAAG,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC;YAC9C,MAAM,QAAQ,GAAG,CAAC,CAAC;YAEnB,MAAM,MAAM,GAAG,IAAA,kCAAM,EAAC,EAAE,KAAK,EAAE,QAAQ,EAAE,CAAC,CAAC;YAE3C,MAAM,CAAC,MAAM,CAAC,CAAC,YAAY,CAAC,CAAC,CAAC,CAAC,CAAC,2DAA2D;YAC3F,MAAM,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC;YACrC,MAAM,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC;YACrC,MAAM,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC;YACrC,MAAM,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QAClC,CAAC,CAAC,CAAC;QAEH,EAAE,CAAC,2BAA2B,EAAE,GAAG,EAAE;YACnC,MAAM,KAAK,GAAa,EAAE,CAAC;YAC3B,MAAM,QAAQ,GAAG,CAAC,CAAC;YAEnB,MAAM,MAAM,GAAG,IAAA,kCAAM,EAAC,EAAE,KAAK,EAAE,QAAQ,EAAE,CAAC,CAAC;YAE3C,MAAM,CAAC,MAAM,CAAC,CAAC,YAAY,CAAC,CAAC,CAAC,CAAC;QACjC,CAAC,CAAC,CAAC;QAEH,EAAE,CAAC,2CAA2C,EAAE,GAAG,EAAE;YACnD,MAAM,KAAK,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;YACrB,MAAM,QAAQ,GAAG,CAAC,CAAC;YAEnB,MAAM,MAAM,GAAG,IAAA,kCAAM,EAAC,EAAE,KAAK,EAAE,QAAQ,EAAE,CAAC,CAAC;YAE3C,MAAM,CAAC,MAAM,CAAC,CAAC,YAAY,CAAC,CAAC,CAAC,CAAC;YAC/B,MAAM,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC;QACpC,CAAC,CAAC,CAAC;IACL,CAAC,CAAC,CAAC;AACL,CAAC,CAAC,CAAC"}
@@ -96,7 +96,7 @@ function assertHttpLlmApplication(props) {
96
96
  if (undefined === value)
97
97
  return true;
98
98
  return "object" === typeof value && null !== value && false === Array.isArray(value) && _io41(value);
99
- }); const _io41 = input => (undefined === input.parameters || Array.isArray(input.parameters) && input.parameters.every(elem => "object" === typeof elem && null !== elem && _iu1(elem))) && (undefined === input.get || "object" === typeof input.get && null !== input.get && false === Array.isArray(input.get) && _io43(input.get)) && (undefined === input.post || "object" === typeof input.post && null !== input.post && false === Array.isArray(input.post) && _io43(input.post)) && (undefined === input.patch || "object" === typeof input.patch && null !== input.patch && false === Array.isArray(input.patch) && _io43(input.patch)) && (undefined === input.put || "object" === typeof input.put && null !== input.put && false === Array.isArray(input.put) && _io43(input.put)) && (undefined === input["delete"] || "object" === typeof input["delete"] && null !== input["delete"] && false === Array.isArray(input["delete"]) && _io43(input["delete"])) && (undefined === input.options || "object" === typeof input.options && null !== input.options && false === Array.isArray(input.options) && _io43(input.options)) && (undefined === input.head || "object" === typeof input.head && null !== input.head && false === Array.isArray(input.head) && _io43(input.head)) && (undefined === input.trace || "object" === typeof input.trace && null !== input.trace && false === Array.isArray(input.trace) && _io43(input.trace)); const _io42 = input => "string" === typeof input.$ref && RegExp(/^#\/parameters\/(.*)/).test(input.$ref) && (undefined === input.examples || Array.isArray(input.examples)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true; const _io43 = input => (undefined === input.operationId || "string" === typeof input.operationId) && (undefined === input.parameters || Array.isArray(input.parameters) && input.parameters.every(elem => "object" === typeof elem && null !== elem && _iu2(elem))) && (undefined === input.responses || "object" === typeof input.responses && null !== input.responses && false === Array.isArray(input.responses) && _io45(input.responses)) && (undefined === input.summary || "string" === typeof input.summary) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.security || Array.isArray(input.security) && input.security.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _io39(elem))) && (undefined === input.tags || Array.isArray(input.tags) && input.tags.every(elem => "string" === typeof elem)) && (undefined === input.deprecated || "boolean" === typeof input.deprecated); const _io44 = input => "string" === typeof input.$ref && RegExp(/^#\/definitions\/parameters\/(.*)/).test(input.$ref) && (undefined === input.examples || Array.isArray(input.examples)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true; const _io45 = input => Object.keys(input).every(key => {
99
+ }); const _io41 = input => (undefined === input.parameters || Array.isArray(input.parameters) && input.parameters.every(elem => "object" === typeof elem && null !== elem && _iu1(elem))) && (undefined === input.options || "object" === typeof input.options && null !== input.options && false === Array.isArray(input.options) && _io43(input.options)) && (undefined === input.get || "object" === typeof input.get && null !== input.get && false === Array.isArray(input.get) && _io43(input.get)) && (undefined === input.post || "object" === typeof input.post && null !== input.post && false === Array.isArray(input.post) && _io43(input.post)) && (undefined === input.patch || "object" === typeof input.patch && null !== input.patch && false === Array.isArray(input.patch) && _io43(input.patch)) && (undefined === input.put || "object" === typeof input.put && null !== input.put && false === Array.isArray(input.put) && _io43(input.put)) && (undefined === input["delete"] || "object" === typeof input["delete"] && null !== input["delete"] && false === Array.isArray(input["delete"]) && _io43(input["delete"])) && (undefined === input.head || "object" === typeof input.head && null !== input.head && false === Array.isArray(input.head) && _io43(input.head)) && (undefined === input.trace || "object" === typeof input.trace && null !== input.trace && false === Array.isArray(input.trace) && _io43(input.trace)); const _io42 = input => "string" === typeof input.$ref && RegExp(/^#\/parameters\/(.*)/).test(input.$ref) && (undefined === input.examples || Array.isArray(input.examples)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true; const _io43 = input => (undefined === input.operationId || "string" === typeof input.operationId) && (undefined === input.parameters || Array.isArray(input.parameters) && input.parameters.every(elem => "object" === typeof elem && null !== elem && _iu2(elem))) && (undefined === input.responses || "object" === typeof input.responses && null !== input.responses && false === Array.isArray(input.responses) && _io45(input.responses)) && (undefined === input.summary || "string" === typeof input.summary) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.security || Array.isArray(input.security) && input.security.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _io39(elem))) && (undefined === input.tags || Array.isArray(input.tags) && input.tags.every(elem => "string" === typeof elem)) && (undefined === input.deprecated || "boolean" === typeof input.deprecated); const _io44 = input => "string" === typeof input.$ref && RegExp(/^#\/definitions\/parameters\/(.*)/).test(input.$ref) && (undefined === input.examples || Array.isArray(input.examples)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true; const _io45 = input => Object.keys(input).every(key => {
100
100
  const value = input[key];
101
101
  if (undefined === value)
102
102
  return true;
@@ -166,7 +166,7 @@ function assertHttpLlmApplication(props) {
166
166
  if (undefined === value)
167
167
  return true;
168
168
  return "object" === typeof value && null !== value && false === Array.isArray(value) && _io98(value);
169
- }); const _io98 = input => (undefined === input.parameters || Array.isArray(input.parameters) && input.parameters.every(elem => "object" === typeof elem && null !== elem && _iu4(elem))) && (undefined === input.servers || Array.isArray(input.servers) && input.servers.every(elem => "object" === typeof elem && null !== elem && _io49(elem))) && (undefined === input.summary || "string" === typeof input.summary) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.get || "object" === typeof input.get && null !== input.get && false === Array.isArray(input.get) && _io100(input.get)) && (undefined === input.post || "object" === typeof input.post && null !== input.post && false === Array.isArray(input.post) && _io100(input.post)) && (undefined === input.patch || "object" === typeof input.patch && null !== input.patch && false === Array.isArray(input.patch) && _io100(input.patch)) && (undefined === input.put || "object" === typeof input.put && null !== input.put && false === Array.isArray(input.put) && _io100(input.put)) && (undefined === input["delete"] || "object" === typeof input["delete"] && null !== input["delete"] && false === Array.isArray(input["delete"]) && _io100(input["delete"])) && (undefined === input.options || "object" === typeof input.options && null !== input.options && false === Array.isArray(input.options) && _io100(input.options)) && (undefined === input.head || "object" === typeof input.head && null !== input.head && false === Array.isArray(input.head) && _io100(input.head)) && (undefined === input.trace || "object" === typeof input.trace && null !== input.trace && false === Array.isArray(input.trace) && _io100(input.trace)); const _io99 = input => "string" === typeof input.$ref && RegExp(/^#\/components\/parameters\/(.*)/).test(input.$ref) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true; const _io100 = input => (undefined === input.operationId || "string" === typeof input.operationId) && (undefined === input.parameters || Array.isArray(input.parameters) && input.parameters.every(elem => "object" === typeof elem && null !== elem && _iu4(elem))) && (undefined === input.requestBody || "object" === typeof input.requestBody && null !== input.requestBody && false === Array.isArray(input.requestBody) && _iu15(input.requestBody)) && (undefined === input.responses || "object" === typeof input.responses && null !== input.responses && false === Array.isArray(input.responses) && _io102(input.responses)) && (undefined === input.servers || Array.isArray(input.servers) && input.servers.every(elem => "object" === typeof elem && null !== elem && _io49(elem))) && (undefined === input.summary || "string" === typeof input.summary) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.security || Array.isArray(input.security) && input.security.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _io39(elem))) && (undefined === input.tags || Array.isArray(input.tags) && input.tags.every(elem => "string" === typeof elem)) && (undefined === input.deprecated || "boolean" === typeof input.deprecated); const _io101 = input => "string" === typeof input.$ref && RegExp(/^#\/components\/requestBodies\/(.*)/).test(input.$ref) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true; const _io102 = input => Object.keys(input).every(key => {
169
+ }); const _io98 = input => (undefined === input.parameters || Array.isArray(input.parameters) && input.parameters.every(elem => "object" === typeof elem && null !== elem && _iu4(elem))) && (undefined === input.servers || Array.isArray(input.servers) && input.servers.every(elem => "object" === typeof elem && null !== elem && _io49(elem))) && (undefined === input.summary || "string" === typeof input.summary) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.options || "object" === typeof input.options && null !== input.options && false === Array.isArray(input.options) && _io100(input.options)) && (undefined === input.get || "object" === typeof input.get && null !== input.get && false === Array.isArray(input.get) && _io100(input.get)) && (undefined === input.post || "object" === typeof input.post && null !== input.post && false === Array.isArray(input.post) && _io100(input.post)) && (undefined === input.patch || "object" === typeof input.patch && null !== input.patch && false === Array.isArray(input.patch) && _io100(input.patch)) && (undefined === input.put || "object" === typeof input.put && null !== input.put && false === Array.isArray(input.put) && _io100(input.put)) && (undefined === input["delete"] || "object" === typeof input["delete"] && null !== input["delete"] && false === Array.isArray(input["delete"]) && _io100(input["delete"])) && (undefined === input.head || "object" === typeof input.head && null !== input.head && false === Array.isArray(input.head) && _io100(input.head)) && (undefined === input.trace || "object" === typeof input.trace && null !== input.trace && false === Array.isArray(input.trace) && _io100(input.trace)); const _io99 = input => "string" === typeof input.$ref && RegExp(/^#\/components\/parameters\/(.*)/).test(input.$ref) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true; const _io100 = input => (undefined === input.operationId || "string" === typeof input.operationId) && (undefined === input.parameters || Array.isArray(input.parameters) && input.parameters.every(elem => "object" === typeof elem && null !== elem && _iu4(elem))) && (undefined === input.requestBody || "object" === typeof input.requestBody && null !== input.requestBody && false === Array.isArray(input.requestBody) && _iu15(input.requestBody)) && (undefined === input.responses || "object" === typeof input.responses && null !== input.responses && false === Array.isArray(input.responses) && _io102(input.responses)) && (undefined === input.servers || Array.isArray(input.servers) && input.servers.every(elem => "object" === typeof elem && null !== elem && _io49(elem))) && (undefined === input.summary || "string" === typeof input.summary) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.security || Array.isArray(input.security) && input.security.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _io39(elem))) && (undefined === input.tags || Array.isArray(input.tags) && input.tags.every(elem => "string" === typeof elem)) && (undefined === input.deprecated || "boolean" === typeof input.deprecated); const _io101 = input => "string" === typeof input.$ref && RegExp(/^#\/components\/requestBodies\/(.*)/).test(input.$ref) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true; const _io102 = input => Object.keys(input).every(key => {
170
170
  const value = input[key];
171
171
  if (undefined === value)
172
172
  return true;
@@ -186,7 +186,7 @@ function assertHttpLlmApplication(props) {
186
186
  if (undefined === value)
187
187
  return true;
188
188
  return "object" === typeof value && null !== value && false === Array.isArray(value) && _io131(value);
189
- }); const _io131 = input => (undefined === input.parameters || Array.isArray(input.parameters) && input.parameters.every(elem => "object" === typeof elem && null !== elem && _iu6(elem))) && (undefined === input.servers || Array.isArray(input.servers) && input.servers.every(elem => "object" === typeof elem && null !== elem && _io106(elem))) && (undefined === input.summary || "string" === typeof input.summary) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.get || "object" === typeof input.get && null !== input.get && false === Array.isArray(input.get) && _io138(input.get)) && (undefined === input.post || "object" === typeof input.post && null !== input.post && false === Array.isArray(input.post) && _io138(input.post)) && (undefined === input.patch || "object" === typeof input.patch && null !== input.patch && false === Array.isArray(input.patch) && _io138(input.patch)) && (undefined === input.put || "object" === typeof input.put && null !== input.put && false === Array.isArray(input.put) && _io138(input.put)) && (undefined === input["delete"] || "object" === typeof input["delete"] && null !== input["delete"] && false === Array.isArray(input["delete"]) && _io138(input["delete"])) && (undefined === input.options || "object" === typeof input.options && null !== input.options && false === Array.isArray(input.options) && _io138(input.options)) && (undefined === input.head || "object" === typeof input.head && null !== input.head && false === Array.isArray(input.head) && _io138(input.head)) && (undefined === input.trace || "object" === typeof input.trace && null !== input.trace && false === Array.isArray(input.trace) && _io138(input.trace)); const _io132 = input => (undefined === input.name || "string" === typeof input.name) && ("path" === input["in"] || "query" === input["in"] || "header" === input["in"] || "cookie" === input["in"]) && ("object" === typeof input.schema && null !== input.schema && false === Array.isArray(input.schema) && _iu5(input.schema)) && (undefined === input.required || "boolean" === typeof input.required) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.examples || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io133(input.examples)); const _io133 = input => Object.keys(input).every(key => {
189
+ }); const _io131 = input => (undefined === input.parameters || Array.isArray(input.parameters) && input.parameters.every(elem => "object" === typeof elem && null !== elem && _iu6(elem))) && (undefined === input.servers || Array.isArray(input.servers) && input.servers.every(elem => "object" === typeof elem && null !== elem && _io106(elem))) && (undefined === input.summary || "string" === typeof input.summary) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.options || "object" === typeof input.options && null !== input.options && false === Array.isArray(input.options) && _io138(input.options)) && (undefined === input.get || "object" === typeof input.get && null !== input.get && false === Array.isArray(input.get) && _io138(input.get)) && (undefined === input.post || "object" === typeof input.post && null !== input.post && false === Array.isArray(input.post) && _io138(input.post)) && (undefined === input.patch || "object" === typeof input.patch && null !== input.patch && false === Array.isArray(input.patch) && _io138(input.patch)) && (undefined === input.put || "object" === typeof input.put && null !== input.put && false === Array.isArray(input.put) && _io138(input.put)) && (undefined === input["delete"] || "object" === typeof input["delete"] && null !== input["delete"] && false === Array.isArray(input["delete"]) && _io138(input["delete"])) && (undefined === input.head || "object" === typeof input.head && null !== input.head && false === Array.isArray(input.head) && _io138(input.head)) && (undefined === input.trace || "object" === typeof input.trace && null !== input.trace && false === Array.isArray(input.trace) && _io138(input.trace)); const _io132 = input => (undefined === input.name || "string" === typeof input.name) && ("path" === input["in"] || "query" === input["in"] || "header" === input["in"] || "cookie" === input["in"]) && ("object" === typeof input.schema && null !== input.schema && false === Array.isArray(input.schema) && _iu5(input.schema)) && (undefined === input.required || "boolean" === typeof input.required) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.examples || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io133(input.examples)); const _io133 = input => Object.keys(input).every(key => {
190
190
  const value = input[key];
191
191
  if (undefined === value)
192
192
  return true;
@@ -261,7 +261,7 @@ function assertHttpLlmApplication(props) {
261
261
  if (undefined === value)
262
262
  return true;
263
263
  return "object" === typeof value && null !== value && false === Array.isArray(value) && _io199(value);
264
- }); const _io199 = input => (undefined === input.servers || Array.isArray(input.servers) && input.servers.every(elem => "object" === typeof elem && null !== elem && _io167(elem))) && (undefined === input.summary || "string" === typeof input.summary) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.get || "object" === typeof input.get && null !== input.get && false === Array.isArray(input.get) && _io200(input.get)) && (undefined === input.post || "object" === typeof input.post && null !== input.post && false === Array.isArray(input.post) && _io200(input.post)) && (undefined === input.patch || "object" === typeof input.patch && null !== input.patch && false === Array.isArray(input.patch) && _io200(input.patch)) && (undefined === input.put || "object" === typeof input.put && null !== input.put && false === Array.isArray(input.put) && _io200(input.put)) && (undefined === input["delete"] || "object" === typeof input["delete"] && null !== input["delete"] && false === Array.isArray(input["delete"]) && _io200(input["delete"])) && (undefined === input.options || "object" === typeof input.options && null !== input.options && false === Array.isArray(input.options) && _io200(input.options)) && (undefined === input.head || "object" === typeof input.head && null !== input.head && false === Array.isArray(input.head) && _io200(input.head)) && (undefined === input.trace || "object" === typeof input.trace && null !== input.trace && false === Array.isArray(input.trace) && _io200(input.trace)); const _io200 = input => (undefined === input.operationId || "string" === typeof input.operationId) && (undefined === input.parameters || Array.isArray(input.parameters) && input.parameters.every(elem => "object" === typeof elem && null !== elem && _io201(elem))) && (undefined === input.requestBody || "object" === typeof input.requestBody && null !== input.requestBody && false === Array.isArray(input.requestBody) && _io204(input.requestBody)) && (undefined === input.responses || "object" === typeof input.responses && null !== input.responses && false === Array.isArray(input.responses) && _io207(input.responses)) && (undefined === input.servers || Array.isArray(input.servers) && input.servers.every(elem => "object" === typeof elem && null !== elem && _io167(elem))) && (undefined === input.summary || "string" === typeof input.summary) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.security || Array.isArray(input.security) && input.security.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _io39(elem))) && (undefined === input.tags || Array.isArray(input.tags) && input.tags.every(elem => "string" === typeof elem)) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input["x-samchon-human"] || "boolean" === typeof input["x-samchon-human"]) && (undefined === input["x-samchon-accessor"] || Array.isArray(input["x-samchon-accessor"]) && input["x-samchon-accessor"].every(elem => "string" === typeof elem)) && (undefined === input["x-samchon-controller"] || "string" === typeof input["x-samchon-controller"]); const _io201 = input => (undefined === input.name || "string" === typeof input.name) && ("path" === input["in"] || "query" === input["in"] || "header" === input["in"] || "cookie" === input["in"]) && ("object" === typeof input.schema && null !== input.schema && false === Array.isArray(input.schema) && _iu7(input.schema)) && (undefined === input.required || "boolean" === typeof input.required) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.examples || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io202(input.examples)); const _io202 = input => Object.keys(input).every(key => {
264
+ }); const _io199 = input => (undefined === input.servers || Array.isArray(input.servers) && input.servers.every(elem => "object" === typeof elem && null !== elem && _io167(elem))) && (undefined === input.summary || "string" === typeof input.summary) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.options || "object" === typeof input.options && null !== input.options && false === Array.isArray(input.options) && _io200(input.options)) && (undefined === input.get || "object" === typeof input.get && null !== input.get && false === Array.isArray(input.get) && _io200(input.get)) && (undefined === input.post || "object" === typeof input.post && null !== input.post && false === Array.isArray(input.post) && _io200(input.post)) && (undefined === input.patch || "object" === typeof input.patch && null !== input.patch && false === Array.isArray(input.patch) && _io200(input.patch)) && (undefined === input.put || "object" === typeof input.put && null !== input.put && false === Array.isArray(input.put) && _io200(input.put)) && (undefined === input["delete"] || "object" === typeof input["delete"] && null !== input["delete"] && false === Array.isArray(input["delete"]) && _io200(input["delete"])) && (undefined === input.head || "object" === typeof input.head && null !== input.head && false === Array.isArray(input.head) && _io200(input.head)) && (undefined === input.trace || "object" === typeof input.trace && null !== input.trace && false === Array.isArray(input.trace) && _io200(input.trace)); const _io200 = input => (undefined === input.operationId || "string" === typeof input.operationId) && (undefined === input.parameters || Array.isArray(input.parameters) && input.parameters.every(elem => "object" === typeof elem && null !== elem && _io201(elem))) && (undefined === input.requestBody || "object" === typeof input.requestBody && null !== input.requestBody && false === Array.isArray(input.requestBody) && _io204(input.requestBody)) && (undefined === input.responses || "object" === typeof input.responses && null !== input.responses && false === Array.isArray(input.responses) && _io207(input.responses)) && (undefined === input.servers || Array.isArray(input.servers) && input.servers.every(elem => "object" === typeof elem && null !== elem && _io167(elem))) && (undefined === input.summary || "string" === typeof input.summary) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.security || Array.isArray(input.security) && input.security.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _io39(elem))) && (undefined === input.tags || Array.isArray(input.tags) && input.tags.every(elem => "string" === typeof elem)) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input["x-samchon-human"] || "boolean" === typeof input["x-samchon-human"]) && (undefined === input["x-samchon-accessor"] || Array.isArray(input["x-samchon-accessor"]) && input["x-samchon-accessor"].every(elem => "string" === typeof elem)) && (undefined === input["x-samchon-controller"] || "string" === typeof input["x-samchon-controller"]); const _io201 = input => (undefined === input.name || "string" === typeof input.name) && ("path" === input["in"] || "query" === input["in"] || "header" === input["in"] || "cookie" === input["in"]) && ("object" === typeof input.schema && null !== input.schema && false === Array.isArray(input.schema) && _iu7(input.schema)) && (undefined === input.required || "boolean" === typeof input.required) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.examples || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io202(input.examples)); const _io202 = input => Object.keys(input).every(key => {
265
265
  const value = input[key];
266
266
  if (undefined === value)
267
267
  return true;
@@ -2547,6 +2547,16 @@ function assertHttpLlmApplication(props) {
2547
2547
  path: _path + ".parameters",
2548
2548
  expected: "(Array<IParameter | IReference<`#/parameters/${string}`>> | undefined)",
2549
2549
  value: input.parameters
2550
+ }, _errorFactory)) && (undefined === input.options || ("object" === typeof input.options && null !== input.options && false === Array.isArray(input.options) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
2551
+ method: "typia.assert",
2552
+ path: _path + ".options",
2553
+ expected: "(SwaggerV2.IOperation | undefined)",
2554
+ value: input.options
2555
+ }, _errorFactory)) && _ao43(input.options, _path + ".options", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
2556
+ method: "typia.assert",
2557
+ path: _path + ".options",
2558
+ expected: "(SwaggerV2.IOperation | undefined)",
2559
+ value: input.options
2550
2560
  }, _errorFactory)) && (undefined === input.get || ("object" === typeof input.get && null !== input.get && false === Array.isArray(input.get) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
2551
2561
  method: "typia.assert",
2552
2562
  path: _path + ".get",
@@ -2597,16 +2607,6 @@ function assertHttpLlmApplication(props) {
2597
2607
  path: _path + "[\"delete\"]",
2598
2608
  expected: "(SwaggerV2.IOperation | undefined)",
2599
2609
  value: input["delete"]
2600
- }, _errorFactory)) && (undefined === input.options || ("object" === typeof input.options && null !== input.options && false === Array.isArray(input.options) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
2601
- method: "typia.assert",
2602
- path: _path + ".options",
2603
- expected: "(SwaggerV2.IOperation | undefined)",
2604
- value: input.options
2605
- }, _errorFactory)) && _ao43(input.options, _path + ".options", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
2606
- method: "typia.assert",
2607
- path: _path + ".options",
2608
- expected: "(SwaggerV2.IOperation | undefined)",
2609
- value: input.options
2610
2610
  }, _errorFactory)) && (undefined === input.head || ("object" === typeof input.head && null !== input.head && false === Array.isArray(input.head) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
2611
2611
  method: "typia.assert",
2612
2612
  path: _path + ".head",
@@ -4557,6 +4557,16 @@ function assertHttpLlmApplication(props) {
4557
4557
  path: _path + ".description",
4558
4558
  expected: "(string | undefined)",
4559
4559
  value: input.description
4560
+ }, _errorFactory)) && (undefined === input.options || ("object" === typeof input.options && null !== input.options && false === Array.isArray(input.options) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
4561
+ method: "typia.assert",
4562
+ path: _path + ".options",
4563
+ expected: "(OpenApiV3.IOperation | undefined)",
4564
+ value: input.options
4565
+ }, _errorFactory)) && _ao100(input.options, _path + ".options", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
4566
+ method: "typia.assert",
4567
+ path: _path + ".options",
4568
+ expected: "(OpenApiV3.IOperation | undefined)",
4569
+ value: input.options
4560
4570
  }, _errorFactory)) && (undefined === input.get || ("object" === typeof input.get && null !== input.get && false === Array.isArray(input.get) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
4561
4571
  method: "typia.assert",
4562
4572
  path: _path + ".get",
@@ -4607,16 +4617,6 @@ function assertHttpLlmApplication(props) {
4607
4617
  path: _path + "[\"delete\"]",
4608
4618
  expected: "(OpenApiV3.IOperation | undefined)",
4609
4619
  value: input["delete"]
4610
- }, _errorFactory)) && (undefined === input.options || ("object" === typeof input.options && null !== input.options && false === Array.isArray(input.options) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
4611
- method: "typia.assert",
4612
- path: _path + ".options",
4613
- expected: "(OpenApiV3.IOperation | undefined)",
4614
- value: input.options
4615
- }, _errorFactory)) && _ao100(input.options, _path + ".options", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
4616
- method: "typia.assert",
4617
- path: _path + ".options",
4618
- expected: "(OpenApiV3.IOperation | undefined)",
4619
- value: input.options
4620
4620
  }, _errorFactory)) && (undefined === input.head || ("object" === typeof input.head && null !== input.head && false === Array.isArray(input.head) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
4621
4621
  method: "typia.assert",
4622
4622
  path: _path + ".head",
@@ -6572,6 +6572,16 @@ function assertHttpLlmApplication(props) {
6572
6572
  path: _path + ".description",
6573
6573
  expected: "(string | undefined)",
6574
6574
  value: input.description
6575
+ }, _errorFactory)) && (undefined === input.options || ("object" === typeof input.options && null !== input.options && false === Array.isArray(input.options) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
6576
+ method: "typia.assert",
6577
+ path: _path + ".options",
6578
+ expected: "(OpenApiV3_1.IOperation | undefined)",
6579
+ value: input.options
6580
+ }, _errorFactory)) && _ao138(input.options, _path + ".options", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
6581
+ method: "typia.assert",
6582
+ path: _path + ".options",
6583
+ expected: "(OpenApiV3_1.IOperation | undefined)",
6584
+ value: input.options
6575
6585
  }, _errorFactory)) && (undefined === input.get || ("object" === typeof input.get && null !== input.get && false === Array.isArray(input.get) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
6576
6586
  method: "typia.assert",
6577
6587
  path: _path + ".get",
@@ -6622,16 +6632,6 @@ function assertHttpLlmApplication(props) {
6622
6632
  path: _path + "[\"delete\"]",
6623
6633
  expected: "(OpenApiV3_1.IOperation | undefined)",
6624
6634
  value: input["delete"]
6625
- }, _errorFactory)) && (undefined === input.options || ("object" === typeof input.options && null !== input.options && false === Array.isArray(input.options) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
6626
- method: "typia.assert",
6627
- path: _path + ".options",
6628
- expected: "(OpenApiV3_1.IOperation | undefined)",
6629
- value: input.options
6630
- }, _errorFactory)) && _ao138(input.options, _path + ".options", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
6631
- method: "typia.assert",
6632
- path: _path + ".options",
6633
- expected: "(OpenApiV3_1.IOperation | undefined)",
6634
- value: input.options
6635
6635
  }, _errorFactory)) && (undefined === input.head || ("object" === typeof input.head && null !== input.head && false === Array.isArray(input.head) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
6636
6636
  method: "typia.assert",
6637
6637
  path: _path + ".head",
@@ -8722,6 +8722,16 @@ function assertHttpLlmApplication(props) {
8722
8722
  path: _path + ".description",
8723
8723
  expected: "(string | undefined)",
8724
8724
  value: input.description
8725
+ }, _errorFactory)) && (undefined === input.options || ("object" === typeof input.options && null !== input.options && false === Array.isArray(input.options) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8726
+ method: "typia.assert",
8727
+ path: _path + ".options",
8728
+ expected: "(OpenApi.IOperation | undefined)",
8729
+ value: input.options
8730
+ }, _errorFactory)) && _ao200(input.options, _path + ".options", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8731
+ method: "typia.assert",
8732
+ path: _path + ".options",
8733
+ expected: "(OpenApi.IOperation | undefined)",
8734
+ value: input.options
8725
8735
  }, _errorFactory)) && (undefined === input.get || ("object" === typeof input.get && null !== input.get && false === Array.isArray(input.get) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8726
8736
  method: "typia.assert",
8727
8737
  path: _path + ".get",
@@ -8772,16 +8782,6 @@ function assertHttpLlmApplication(props) {
8772
8782
  path: _path + "[\"delete\"]",
8773
8783
  expected: "(OpenApi.IOperation | undefined)",
8774
8784
  value: input["delete"]
8775
- }, _errorFactory)) && (undefined === input.options || ("object" === typeof input.options && null !== input.options && false === Array.isArray(input.options) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8776
- method: "typia.assert",
8777
- path: _path + ".options",
8778
- expected: "(OpenApi.IOperation | undefined)",
8779
- value: input.options
8780
- }, _errorFactory)) && _ao200(input.options, _path + ".options", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8781
- method: "typia.assert",
8782
- path: _path + ".options",
8783
- expected: "(OpenApi.IOperation | undefined)",
8784
- value: input.options
8785
8785
  }, _errorFactory)) && (undefined === input.head || ("object" === typeof input.head && null !== input.head && false === Array.isArray(input.head) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8786
8786
  method: "typia.assert",
8787
8787
  path: _path + ".head",
@@ -1,4 +1,5 @@
1
- import type { IMcpLlmApplication, IMcpLlmTransportProps } from "../structures/mcp";
1
+ import type { Client } from "@modelcontextprotocol/sdk/client/index.d.ts";
2
+ import type { IMcpLlmApplication } from "../structures/mcp";
2
3
  /**
3
4
  * Create an MCP LLM application instance with type assertion.
4
5
  *
@@ -12,4 +13,6 @@ import type { IMcpLlmApplication, IMcpLlmTransportProps } from "../structures/mc
12
13
  * @returns MCP LLM application instance
13
14
  * @author Samchon
14
15
  */
15
- export declare function assertMcpLlmApplication(props: IMcpLlmTransportProps): Promise<IMcpLlmApplication>;
16
+ export declare function assertMcpLlmApplication(props: {
17
+ client: Client;
18
+ }): Promise<IMcpLlmApplication>;
@@ -59,34 +59,15 @@ exports.assertMcpLlmApplication = assertMcpLlmApplication;
59
59
  function assertMcpLlmApplication(props) {
60
60
  return __awaiter(this, void 0, void 0, function* () {
61
61
  // for peerDependencies
62
- const { Client } = yield Promise.resolve().then(() => __importStar(require("@modelcontextprotocol/sdk/client/index.js")));
63
- const { SSEClientTransport } = yield Promise.resolve().then(() => __importStar(require("@modelcontextprotocol/sdk/client/sse.js")));
64
- const { StdioClientTransport } = yield Promise.resolve().then(() => __importStar(require("@modelcontextprotocol/sdk/client/stdio.js")));
65
62
  const { ListToolsResultSchema } = yield Promise.resolve().then(() => __importStar(require("@modelcontextprotocol/sdk/types.js")));
66
- const client = new Client({
67
- name: "get_tool_list",
68
- version: "1.0.0",
69
- });
70
- const transport = (() => {
71
- switch (props.type) {
72
- case "sse":
73
- return new SSEClientTransport(props.url);
74
- case "stdio":
75
- return new StdioClientTransport(props);
76
- default:
77
- props;
78
- throw new Error("Invalid transport type");
79
- }
80
- })();
81
- yield client.connect(transport);
82
- const toolList = yield client.request({ method: "tools/list" }, ListToolsResultSchema);
63
+ const toolList = yield props.client.request({ method: "tools/list" }, ListToolsResultSchema);
83
64
  return {
84
65
  functions: toolList.tools.map(tool => ({
85
66
  name: tool.name,
86
67
  description: tool.description,
87
68
  parameters: tool.inputSchema,
88
69
  })),
89
- transport: props,
70
+ client: props.client,
90
71
  };
91
72
  });
92
73
  }
@@ -1 +1 @@
1
- {"version":3,"file":"assertMcpLlmApplication.js","sourceRoot":"","sources":["../../src/functional/assertMcpLlmApplication.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAcA,0DAkCC;AA/CD;;;;;;;;;;;;GAYG;AACH,SAAsB,uBAAuB,CAAC,KAA4B;;QACxE,uBAAuB;QACvB,MAAM,EAAE,MAAM,EAAE,GAAG,wDAAa,2CAA2C,GAAC,CAAC;QAC7E,MAAM,EAAE,kBAAkB,EAAE,GAAG,wDAAa,yCAAyC,GAAC,CAAC;QACvF,MAAM,EAAE,oBAAoB,EAAE,GAAG,wDAAa,2CAA2C,GAAC,CAAC;QAC3F,MAAM,EAAE,qBAAqB,EAAE,GAAG,wDAAa,oCAAoC,GAAC,CAAC;QAErF,MAAM,MAAM,GAAG,IAAI,MAAM,CAAC;YACxB,IAAI,EAAE,eAAe;YACrB,OAAO,EAAE,OAAO;SACjB,CAAC,CAAC;QAEH,MAAM,SAAS,GAAG,CAAC,GAAG,EAAE;YACtB,QAAQ,KAAK,CAAC,IAAI,EAAE,CAAC;gBACnB,KAAK,KAAK;oBACR,OAAO,IAAI,kBAAkB,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;gBAC3C,KAAK,OAAO;oBACV,OAAO,IAAI,oBAAoB,CAAC,KAAK,CAAC,CAAC;gBACzC;oBACE,KAAqB,CAAC;oBACtB,MAAM,IAAI,KAAK,CAAC,wBAAwB,CAAC,CAAC;YAC9C,CAAC;QACH,CAAC,CAAC,EAAE,CAAC;QACL,MAAM,MAAM,CAAC,OAAO,CAAC,SAAS,CAAC,CAAC;QAEhC,MAAM,QAAQ,GAAG,MAAM,MAAM,CAAC,OAAO,CAAC,EAAE,MAAM,EAAE,YAAY,EAAE,EAAE,qBAAqB,CAAC,CAAC;QACvF,OAAO;YACL,SAAS,EAAE,QAAQ,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;gBACrC,IAAI,EAAE,IAAI,CAAC,IAAI;gBACf,WAAW,EAAE,IAAI,CAAC,WAAW;gBAC7B,UAAU,EAAE,IAAI,CAAC,WAAW;aAC7B,CAAC,CAAC;YACH,SAAS,EAAE,KAAK;SACjB,CAAC;IACJ,CAAC;CAAA"}
1
+ {"version":3,"file":"assertMcpLlmApplication.js","sourceRoot":"","sources":["../../src/functional/assertMcpLlmApplication.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAgBA,0DAeC;AA5BD;;;;;;;;;;;;GAYG;AACH,SAAsB,uBAAuB,CAAC,KAE7C;;QACC,uBAAuB;QACvB,MAAM,EAAE,qBAAqB,EAAE,GAAG,wDAAa,oCAAoC,GAAC,CAAC;QAErF,MAAM,QAAQ,GAAG,MAAM,KAAK,CAAC,MAAM,CAAC,OAAO,CAAC,EAAE,MAAM,EAAE,YAAY,EAAE,EAAE,qBAAqB,CAAC,CAAC;QAC7F,OAAO;YACL,SAAS,EAAE,QAAQ,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;gBACrC,IAAI,EAAE,IAAI,CAAC,IAAI;gBACf,WAAW,EAAE,IAAI,CAAC,WAAW;gBAC7B,UAAU,EAAE,IAAI,CAAC,WAAW;aAC7B,CAAC,CAAC;YACH,MAAM,EAAE,KAAK,CAAC,MAAM;SACrB,CAAC;IACJ,CAAC;CAAA"}