@frontmcp/testing 0.11.1 → 0.11.2
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/esm/fixtures/index.mjs +10 -4
- package/esm/index.mjs +10 -4
- package/esm/package.json +4 -4
- package/esm/perf/index.mjs +10 -4
- package/fixtures/index.js +10 -4
- package/index.js +10 -4
- package/package.json +4 -4
- package/perf/index.js +10 -4
- package/server/test-server.d.ts.map +1 -1
package/esm/fixtures/index.mjs
CHANGED
|
@@ -2414,8 +2414,7 @@ var TestServer = class _TestServer {
|
|
|
2414
2414
|
static async start(options) {
|
|
2415
2415
|
const project = options.project ?? "default";
|
|
2416
2416
|
const { port, release } = await reservePort(project, options.port);
|
|
2417
|
-
|
|
2418
|
-
const server = new _TestServer(options, port);
|
|
2417
|
+
const server = new _TestServer(options, port, release);
|
|
2419
2418
|
try {
|
|
2420
2419
|
await server.startProcess();
|
|
2421
2420
|
} catch (error) {
|
|
@@ -2434,7 +2433,6 @@ var TestServer = class _TestServer {
|
|
|
2434
2433
|
);
|
|
2435
2434
|
}
|
|
2436
2435
|
const { port, release } = await reservePort(project, options.port);
|
|
2437
|
-
await release();
|
|
2438
2436
|
const serverOptions = {
|
|
2439
2437
|
...options,
|
|
2440
2438
|
port,
|
|
@@ -2442,7 +2440,7 @@ var TestServer = class _TestServer {
|
|
|
2442
2440
|
command: `npx nx serve ${project} --port ${port}`,
|
|
2443
2441
|
cwd: options.cwd ?? process.cwd()
|
|
2444
2442
|
};
|
|
2445
|
-
const server = new _TestServer(serverOptions, port);
|
|
2443
|
+
const server = new _TestServer(serverOptions, port, release);
|
|
2446
2444
|
try {
|
|
2447
2445
|
await server.startProcess();
|
|
2448
2446
|
} catch (error) {
|
|
@@ -2480,6 +2478,10 @@ var TestServer = class _TestServer {
|
|
|
2480
2478
|
* Stop the test server
|
|
2481
2479
|
*/
|
|
2482
2480
|
async stop() {
|
|
2481
|
+
if (this.portRelease) {
|
|
2482
|
+
await this.portRelease();
|
|
2483
|
+
this.portRelease = null;
|
|
2484
|
+
}
|
|
2483
2485
|
if (this.process) {
|
|
2484
2486
|
this.log("Stopping server...");
|
|
2485
2487
|
this.process.kill("SIGTERM");
|
|
@@ -2558,6 +2560,10 @@ var TestServer = class _TestServer {
|
|
|
2558
2560
|
...this.options.env,
|
|
2559
2561
|
PORT: String(this.options.port)
|
|
2560
2562
|
};
|
|
2563
|
+
if (this.portRelease) {
|
|
2564
|
+
await this.portRelease();
|
|
2565
|
+
this.portRelease = null;
|
|
2566
|
+
}
|
|
2561
2567
|
this.process = spawn(this.options.command, [], {
|
|
2562
2568
|
cwd: this.options.cwd,
|
|
2563
2569
|
env,
|
package/esm/index.mjs
CHANGED
|
@@ -4031,8 +4031,7 @@ var TestServer = class _TestServer {
|
|
|
4031
4031
|
static async start(options) {
|
|
4032
4032
|
const project = options.project ?? "default";
|
|
4033
4033
|
const { port, release } = await reservePort(project, options.port);
|
|
4034
|
-
|
|
4035
|
-
const server = new _TestServer(options, port);
|
|
4034
|
+
const server = new _TestServer(options, port, release);
|
|
4036
4035
|
try {
|
|
4037
4036
|
await server.startProcess();
|
|
4038
4037
|
} catch (error) {
|
|
@@ -4051,7 +4050,6 @@ var TestServer = class _TestServer {
|
|
|
4051
4050
|
);
|
|
4052
4051
|
}
|
|
4053
4052
|
const { port, release } = await reservePort(project, options.port);
|
|
4054
|
-
await release();
|
|
4055
4053
|
const serverOptions = {
|
|
4056
4054
|
...options,
|
|
4057
4055
|
port,
|
|
@@ -4059,7 +4057,7 @@ var TestServer = class _TestServer {
|
|
|
4059
4057
|
command: `npx nx serve ${project} --port ${port}`,
|
|
4060
4058
|
cwd: options.cwd ?? process.cwd()
|
|
4061
4059
|
};
|
|
4062
|
-
const server = new _TestServer(serverOptions, port);
|
|
4060
|
+
const server = new _TestServer(serverOptions, port, release);
|
|
4063
4061
|
try {
|
|
4064
4062
|
await server.startProcess();
|
|
4065
4063
|
} catch (error) {
|
|
@@ -4097,6 +4095,10 @@ var TestServer = class _TestServer {
|
|
|
4097
4095
|
* Stop the test server
|
|
4098
4096
|
*/
|
|
4099
4097
|
async stop() {
|
|
4098
|
+
if (this.portRelease) {
|
|
4099
|
+
await this.portRelease();
|
|
4100
|
+
this.portRelease = null;
|
|
4101
|
+
}
|
|
4100
4102
|
if (this.process) {
|
|
4101
4103
|
this.log("Stopping server...");
|
|
4102
4104
|
this.process.kill("SIGTERM");
|
|
@@ -4175,6 +4177,10 @@ var TestServer = class _TestServer {
|
|
|
4175
4177
|
...this.options.env,
|
|
4176
4178
|
PORT: String(this.options.port)
|
|
4177
4179
|
};
|
|
4180
|
+
if (this.portRelease) {
|
|
4181
|
+
await this.portRelease();
|
|
4182
|
+
this.portRelease = null;
|
|
4183
|
+
}
|
|
4178
4184
|
this.process = spawn(this.options.command, [], {
|
|
4179
4185
|
cwd: this.options.cwd,
|
|
4180
4186
|
env,
|
package/esm/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@frontmcp/testing",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.2",
|
|
4
4
|
"description": "E2E testing framework for FrontMCP servers - MCP client, auth mocks, Playwright integration",
|
|
5
5
|
"author": "AgentFront <info@agentfront.dev>",
|
|
6
6
|
"homepage": "https://docs.agentfront.dev",
|
|
@@ -87,8 +87,8 @@
|
|
|
87
87
|
"./esm": null
|
|
88
88
|
},
|
|
89
89
|
"peerDependencies": {
|
|
90
|
-
"@frontmcp/sdk": "0.11.
|
|
91
|
-
"@frontmcp/ui": "0.11.
|
|
90
|
+
"@frontmcp/sdk": "0.11.2",
|
|
91
|
+
"@frontmcp/ui": "0.11.2",
|
|
92
92
|
"@playwright/test": "^1.40.0",
|
|
93
93
|
"jest": "^29.0.0",
|
|
94
94
|
"@jest/globals": "^29.0.0"
|
|
@@ -111,7 +111,7 @@
|
|
|
111
111
|
"node": ">=22.0.0"
|
|
112
112
|
},
|
|
113
113
|
"dependencies": {
|
|
114
|
-
"@frontmcp/utils": "0.11.
|
|
114
|
+
"@frontmcp/utils": "0.11.2",
|
|
115
115
|
"@modelcontextprotocol/sdk": "1.26.0",
|
|
116
116
|
"jose": "^6.0.11",
|
|
117
117
|
"tslib": "^2.3.0"
|
package/esm/perf/index.mjs
CHANGED
|
@@ -3179,8 +3179,7 @@ var TestServer = class _TestServer {
|
|
|
3179
3179
|
static async start(options) {
|
|
3180
3180
|
const project = options.project ?? "default";
|
|
3181
3181
|
const { port, release } = await reservePort(project, options.port);
|
|
3182
|
-
|
|
3183
|
-
const server = new _TestServer(options, port);
|
|
3182
|
+
const server = new _TestServer(options, port, release);
|
|
3184
3183
|
try {
|
|
3185
3184
|
await server.startProcess();
|
|
3186
3185
|
} catch (error) {
|
|
@@ -3199,7 +3198,6 @@ var TestServer = class _TestServer {
|
|
|
3199
3198
|
);
|
|
3200
3199
|
}
|
|
3201
3200
|
const { port, release } = await reservePort(project, options.port);
|
|
3202
|
-
await release();
|
|
3203
3201
|
const serverOptions = {
|
|
3204
3202
|
...options,
|
|
3205
3203
|
port,
|
|
@@ -3207,7 +3205,7 @@ var TestServer = class _TestServer {
|
|
|
3207
3205
|
command: `npx nx serve ${project} --port ${port}`,
|
|
3208
3206
|
cwd: options.cwd ?? process.cwd()
|
|
3209
3207
|
};
|
|
3210
|
-
const server = new _TestServer(serverOptions, port);
|
|
3208
|
+
const server = new _TestServer(serverOptions, port, release);
|
|
3211
3209
|
try {
|
|
3212
3210
|
await server.startProcess();
|
|
3213
3211
|
} catch (error) {
|
|
@@ -3245,6 +3243,10 @@ var TestServer = class _TestServer {
|
|
|
3245
3243
|
* Stop the test server
|
|
3246
3244
|
*/
|
|
3247
3245
|
async stop() {
|
|
3246
|
+
if (this.portRelease) {
|
|
3247
|
+
await this.portRelease();
|
|
3248
|
+
this.portRelease = null;
|
|
3249
|
+
}
|
|
3248
3250
|
if (this.process) {
|
|
3249
3251
|
this.log("Stopping server...");
|
|
3250
3252
|
this.process.kill("SIGTERM");
|
|
@@ -3323,6 +3325,10 @@ var TestServer = class _TestServer {
|
|
|
3323
3325
|
...this.options.env,
|
|
3324
3326
|
PORT: String(this.options.port)
|
|
3325
3327
|
};
|
|
3328
|
+
if (this.portRelease) {
|
|
3329
|
+
await this.portRelease();
|
|
3330
|
+
this.portRelease = null;
|
|
3331
|
+
}
|
|
3326
3332
|
this.process = spawn(this.options.command, [], {
|
|
3327
3333
|
cwd: this.options.cwd,
|
|
3328
3334
|
env,
|
package/fixtures/index.js
CHANGED
|
@@ -2444,8 +2444,7 @@ var TestServer = class _TestServer {
|
|
|
2444
2444
|
static async start(options) {
|
|
2445
2445
|
const project = options.project ?? "default";
|
|
2446
2446
|
const { port, release } = await reservePort(project, options.port);
|
|
2447
|
-
|
|
2448
|
-
const server = new _TestServer(options, port);
|
|
2447
|
+
const server = new _TestServer(options, port, release);
|
|
2449
2448
|
try {
|
|
2450
2449
|
await server.startProcess();
|
|
2451
2450
|
} catch (error) {
|
|
@@ -2464,7 +2463,6 @@ var TestServer = class _TestServer {
|
|
|
2464
2463
|
);
|
|
2465
2464
|
}
|
|
2466
2465
|
const { port, release } = await reservePort(project, options.port);
|
|
2467
|
-
await release();
|
|
2468
2466
|
const serverOptions = {
|
|
2469
2467
|
...options,
|
|
2470
2468
|
port,
|
|
@@ -2472,7 +2470,7 @@ var TestServer = class _TestServer {
|
|
|
2472
2470
|
command: `npx nx serve ${project} --port ${port}`,
|
|
2473
2471
|
cwd: options.cwd ?? process.cwd()
|
|
2474
2472
|
};
|
|
2475
|
-
const server = new _TestServer(serverOptions, port);
|
|
2473
|
+
const server = new _TestServer(serverOptions, port, release);
|
|
2476
2474
|
try {
|
|
2477
2475
|
await server.startProcess();
|
|
2478
2476
|
} catch (error) {
|
|
@@ -2510,6 +2508,10 @@ var TestServer = class _TestServer {
|
|
|
2510
2508
|
* Stop the test server
|
|
2511
2509
|
*/
|
|
2512
2510
|
async stop() {
|
|
2511
|
+
if (this.portRelease) {
|
|
2512
|
+
await this.portRelease();
|
|
2513
|
+
this.portRelease = null;
|
|
2514
|
+
}
|
|
2513
2515
|
if (this.process) {
|
|
2514
2516
|
this.log("Stopping server...");
|
|
2515
2517
|
this.process.kill("SIGTERM");
|
|
@@ -2588,6 +2590,10 @@ var TestServer = class _TestServer {
|
|
|
2588
2590
|
...this.options.env,
|
|
2589
2591
|
PORT: String(this.options.port)
|
|
2590
2592
|
};
|
|
2593
|
+
if (this.portRelease) {
|
|
2594
|
+
await this.portRelease();
|
|
2595
|
+
this.portRelease = null;
|
|
2596
|
+
}
|
|
2591
2597
|
this.process = (0, import_child_process.spawn)(this.options.command, [], {
|
|
2592
2598
|
cwd: this.options.cwd,
|
|
2593
2599
|
env,
|
package/index.js
CHANGED
|
@@ -4154,8 +4154,7 @@ var TestServer = class _TestServer {
|
|
|
4154
4154
|
static async start(options) {
|
|
4155
4155
|
const project = options.project ?? "default";
|
|
4156
4156
|
const { port, release } = await reservePort(project, options.port);
|
|
4157
|
-
|
|
4158
|
-
const server = new _TestServer(options, port);
|
|
4157
|
+
const server = new _TestServer(options, port, release);
|
|
4159
4158
|
try {
|
|
4160
4159
|
await server.startProcess();
|
|
4161
4160
|
} catch (error) {
|
|
@@ -4174,7 +4173,6 @@ var TestServer = class _TestServer {
|
|
|
4174
4173
|
);
|
|
4175
4174
|
}
|
|
4176
4175
|
const { port, release } = await reservePort(project, options.port);
|
|
4177
|
-
await release();
|
|
4178
4176
|
const serverOptions = {
|
|
4179
4177
|
...options,
|
|
4180
4178
|
port,
|
|
@@ -4182,7 +4180,7 @@ var TestServer = class _TestServer {
|
|
|
4182
4180
|
command: `npx nx serve ${project} --port ${port}`,
|
|
4183
4181
|
cwd: options.cwd ?? process.cwd()
|
|
4184
4182
|
};
|
|
4185
|
-
const server = new _TestServer(serverOptions, port);
|
|
4183
|
+
const server = new _TestServer(serverOptions, port, release);
|
|
4186
4184
|
try {
|
|
4187
4185
|
await server.startProcess();
|
|
4188
4186
|
} catch (error) {
|
|
@@ -4220,6 +4218,10 @@ var TestServer = class _TestServer {
|
|
|
4220
4218
|
* Stop the test server
|
|
4221
4219
|
*/
|
|
4222
4220
|
async stop() {
|
|
4221
|
+
if (this.portRelease) {
|
|
4222
|
+
await this.portRelease();
|
|
4223
|
+
this.portRelease = null;
|
|
4224
|
+
}
|
|
4223
4225
|
if (this.process) {
|
|
4224
4226
|
this.log("Stopping server...");
|
|
4225
4227
|
this.process.kill("SIGTERM");
|
|
@@ -4298,6 +4300,10 @@ var TestServer = class _TestServer {
|
|
|
4298
4300
|
...this.options.env,
|
|
4299
4301
|
PORT: String(this.options.port)
|
|
4300
4302
|
};
|
|
4303
|
+
if (this.portRelease) {
|
|
4304
|
+
await this.portRelease();
|
|
4305
|
+
this.portRelease = null;
|
|
4306
|
+
}
|
|
4301
4307
|
this.process = (0, import_child_process.spawn)(this.options.command, [], {
|
|
4302
4308
|
cwd: this.options.cwd,
|
|
4303
4309
|
env,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@frontmcp/testing",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.2",
|
|
4
4
|
"description": "E2E testing framework for FrontMCP servers - MCP client, auth mocks, Playwright integration",
|
|
5
5
|
"author": "AgentFront <info@agentfront.dev>",
|
|
6
6
|
"homepage": "https://docs.agentfront.dev",
|
|
@@ -87,8 +87,8 @@
|
|
|
87
87
|
"./esm": null
|
|
88
88
|
},
|
|
89
89
|
"peerDependencies": {
|
|
90
|
-
"@frontmcp/sdk": "0.11.
|
|
91
|
-
"@frontmcp/ui": "0.11.
|
|
90
|
+
"@frontmcp/sdk": "0.11.2",
|
|
91
|
+
"@frontmcp/ui": "0.11.2",
|
|
92
92
|
"@playwright/test": "^1.40.0",
|
|
93
93
|
"jest": "^29.0.0",
|
|
94
94
|
"@jest/globals": "^29.0.0"
|
|
@@ -111,7 +111,7 @@
|
|
|
111
111
|
"node": ">=22.0.0"
|
|
112
112
|
},
|
|
113
113
|
"dependencies": {
|
|
114
|
-
"@frontmcp/utils": "0.11.
|
|
114
|
+
"@frontmcp/utils": "0.11.2",
|
|
115
115
|
"@modelcontextprotocol/sdk": "1.26.0",
|
|
116
116
|
"jose": "^6.0.11",
|
|
117
117
|
"tslib": "^2.3.0"
|
package/perf/index.js
CHANGED
|
@@ -3248,8 +3248,7 @@ var TestServer = class _TestServer {
|
|
|
3248
3248
|
static async start(options) {
|
|
3249
3249
|
const project = options.project ?? "default";
|
|
3250
3250
|
const { port, release } = await reservePort(project, options.port);
|
|
3251
|
-
|
|
3252
|
-
const server = new _TestServer(options, port);
|
|
3251
|
+
const server = new _TestServer(options, port, release);
|
|
3253
3252
|
try {
|
|
3254
3253
|
await server.startProcess();
|
|
3255
3254
|
} catch (error) {
|
|
@@ -3268,7 +3267,6 @@ var TestServer = class _TestServer {
|
|
|
3268
3267
|
);
|
|
3269
3268
|
}
|
|
3270
3269
|
const { port, release } = await reservePort(project, options.port);
|
|
3271
|
-
await release();
|
|
3272
3270
|
const serverOptions = {
|
|
3273
3271
|
...options,
|
|
3274
3272
|
port,
|
|
@@ -3276,7 +3274,7 @@ var TestServer = class _TestServer {
|
|
|
3276
3274
|
command: `npx nx serve ${project} --port ${port}`,
|
|
3277
3275
|
cwd: options.cwd ?? process.cwd()
|
|
3278
3276
|
};
|
|
3279
|
-
const server = new _TestServer(serverOptions, port);
|
|
3277
|
+
const server = new _TestServer(serverOptions, port, release);
|
|
3280
3278
|
try {
|
|
3281
3279
|
await server.startProcess();
|
|
3282
3280
|
} catch (error) {
|
|
@@ -3314,6 +3312,10 @@ var TestServer = class _TestServer {
|
|
|
3314
3312
|
* Stop the test server
|
|
3315
3313
|
*/
|
|
3316
3314
|
async stop() {
|
|
3315
|
+
if (this.portRelease) {
|
|
3316
|
+
await this.portRelease();
|
|
3317
|
+
this.portRelease = null;
|
|
3318
|
+
}
|
|
3317
3319
|
if (this.process) {
|
|
3318
3320
|
this.log("Stopping server...");
|
|
3319
3321
|
this.process.kill("SIGTERM");
|
|
@@ -3392,6 +3394,10 @@ var TestServer = class _TestServer {
|
|
|
3392
3394
|
...this.options.env,
|
|
3393
3395
|
PORT: String(this.options.port)
|
|
3394
3396
|
};
|
|
3397
|
+
if (this.portRelease) {
|
|
3398
|
+
await this.portRelease();
|
|
3399
|
+
this.portRelease = null;
|
|
3400
|
+
}
|
|
3395
3401
|
this.process = (0, import_child_process.spawn)(this.options.command, [], {
|
|
3396
3402
|
cwd: this.options.cwd,
|
|
3397
3403
|
env,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"test-server.d.ts","sourceRoot":"","sources":["../../src/server/test-server.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAaH,MAAM,WAAW,iBAAiB;IAChC,wEAAwE;IACxE,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,iDAAiD;IACjD,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,kCAAkC;IAClC,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,wBAAwB;IACxB,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,4BAA4B;IAC5B,GAAG,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IAC7B,kEAAkE;IAClE,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,4DAA4D;IAC5D,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,2BAA2B;IAC3B,KAAK,CAAC,EAAE,OAAO,CAAC;CACjB;AAED,MAAM,WAAW,cAAc;IAC7B,6BAA6B;IAC7B,OAAO,EAAE,MAAM,CAAC;IAChB,oCAAoC;IACpC,IAAI,EAAE,MAAM,CAAC;IACb,gCAAgC;IAChC,GAAG,CAAC,EAAE,MAAM,CAAC;CACd;AAMD;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,qBAAa,UAAU;IACrB,OAAO,CAAC,OAAO,CAA6B;IAC5C,OAAO,CAAC,QAAQ,CAAC,OAAO,CAAsE;IAC9F,OAAO,CAAC,KAAK,CAAiB;IAC9B,OAAO,CAAC,IAAI,CAAgB;IAC5B,OAAO,CAAC,WAAW,CAAsC;IAEzD,OAAO;IAmBP;;OAEG;WACU,KAAK,CAAC,OAAO,EAAE,iBAAiB,GAAG,OAAO,CAAC,UAAU,CAAC;
|
|
1
|
+
{"version":3,"file":"test-server.d.ts","sourceRoot":"","sources":["../../src/server/test-server.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAaH,MAAM,WAAW,iBAAiB;IAChC,wEAAwE;IACxE,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,iDAAiD;IACjD,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,kCAAkC;IAClC,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,wBAAwB;IACxB,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,4BAA4B;IAC5B,GAAG,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IAC7B,kEAAkE;IAClE,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,4DAA4D;IAC5D,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,2BAA2B;IAC3B,KAAK,CAAC,EAAE,OAAO,CAAC;CACjB;AAED,MAAM,WAAW,cAAc;IAC7B,6BAA6B;IAC7B,OAAO,EAAE,MAAM,CAAC;IAChB,oCAAoC;IACpC,IAAI,EAAE,MAAM,CAAC;IACb,gCAAgC;IAChC,GAAG,CAAC,EAAE,MAAM,CAAC;CACd;AAMD;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,qBAAa,UAAU;IACrB,OAAO,CAAC,OAAO,CAA6B;IAC5C,OAAO,CAAC,QAAQ,CAAC,OAAO,CAAsE;IAC9F,OAAO,CAAC,KAAK,CAAiB;IAC9B,OAAO,CAAC,IAAI,CAAgB;IAC5B,OAAO,CAAC,WAAW,CAAsC;IAEzD,OAAO;IAmBP;;OAEG;WACU,KAAK,CAAC,OAAO,EAAE,iBAAiB,GAAG,OAAO,CAAC,UAAU,CAAC;IAenE;;OAEG;WACU,OAAO,CAAC,OAAO,EAAE,MAAM,EAAE,OAAO,GAAE,OAAO,CAAC,iBAAiB,CAAM,GAAG,OAAO,CAAC,UAAU,CAAC;IA6BpG;;OAEG;IACH,MAAM,CAAC,OAAO,CAAC,OAAO,EAAE,MAAM,GAAG,UAAU;IAoB3C;;OAEG;IACH,IAAI,IAAI,IAAI,cAAc,CAEzB;IAED;;OAEG;IACG,IAAI,IAAI,OAAO,CAAC,IAAI,CAAC;IAoC3B;;OAEG;IACG,YAAY,CAAC,OAAO,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;IA2BnD;;OAEG;IACG,OAAO,IAAI,OAAO,CAAC,IAAI,CAAC;IAK9B;;OAEG;IACH,OAAO,IAAI,MAAM,EAAE;IAInB;;OAEG;IACH,SAAS,IAAI,IAAI;YAQH,YAAY;IA0G1B;;OAEG;IACH,OAAO,CAAC,kBAAkB;IAY1B;;OAEG;YACW,6BAA6B;IAmE3C,OAAO,CAAC,GAAG;CAKZ;AAcD,OAAO,EACL,WAAW,EACX,cAAc,EACd,eAAe,EACf,YAAY,EACZ,eAAe,EACf,gBAAgB,EAChB,iBAAiB,EACjB,eAAe,EACf,KAAK,UAAU,GAChB,MAAM,iBAAiB,CAAC"}
|