@medusajs/test-utils 3.0.0-snapshot-20250410112222 → 3.0.0-snapshot-20251104004624

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.
Files changed (42) hide show
  1. package/dist/database.d.ts +1 -1
  2. package/dist/database.d.ts.map +1 -1
  3. package/dist/database.js +121 -39
  4. package/dist/database.js.map +1 -1
  5. package/dist/events.d.ts +15 -3
  6. package/dist/events.d.ts.map +1 -1
  7. package/dist/events.js +120 -21
  8. package/dist/events.js.map +1 -1
  9. package/dist/index.js +17 -7
  10. package/dist/index.js.map +1 -1
  11. package/dist/init-modules.d.ts +2 -1
  12. package/dist/init-modules.d.ts.map +1 -1
  13. package/dist/init-modules.js +10 -8
  14. package/dist/init-modules.js.map +1 -1
  15. package/dist/medusa-test-runner-utils/bootstrap-app.d.ts.map +1 -1
  16. package/dist/medusa-test-runner-utils/bootstrap-app.js +94 -40
  17. package/dist/medusa-test-runner-utils/bootstrap-app.js.map +1 -1
  18. package/dist/medusa-test-runner-utils/config.d.ts.map +1 -1
  19. package/dist/medusa-test-runner-utils/config.js +6 -0
  20. package/dist/medusa-test-runner-utils/config.js.map +1 -1
  21. package/dist/medusa-test-runner-utils/use-db.d.ts +2 -2
  22. package/dist/medusa-test-runner-utils/use-db.d.ts.map +1 -1
  23. package/dist/medusa-test-runner-utils/use-db.js +9 -8
  24. package/dist/medusa-test-runner-utils/use-db.js.map +1 -1
  25. package/dist/medusa-test-runner-utils/utils.d.ts +8 -0
  26. package/dist/medusa-test-runner-utils/utils.d.ts.map +1 -1
  27. package/dist/medusa-test-runner-utils/utils.js +15 -0
  28. package/dist/medusa-test-runner-utils/utils.js.map +1 -1
  29. package/dist/medusa-test-runner-utils/wait-workflow-executions.d.ts +9 -0
  30. package/dist/medusa-test-runner-utils/wait-workflow-executions.d.ts.map +1 -0
  31. package/dist/medusa-test-runner-utils/wait-workflow-executions.js +34 -0
  32. package/dist/medusa-test-runner-utils/wait-workflow-executions.js.map +1 -0
  33. package/dist/medusa-test-runner.d.ts +22 -1
  34. package/dist/medusa-test-runner.d.ts.map +1 -1
  35. package/dist/medusa-test-runner.js +220 -95
  36. package/dist/medusa-test-runner.js.map +1 -1
  37. package/dist/module-test-runner.d.ts +21 -1
  38. package/dist/module-test-runner.d.ts.map +1 -1
  39. package/dist/module-test-runner.js +231 -85
  40. package/dist/module-test-runner.js.map +1 -1
  41. package/dist/tsconfig.tsbuildinfo +1 -1
  42. package/package.json +10 -22
@@ -1,144 +1,269 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.medusaIntegrationTestRunner = medusaIntegrationTestRunner;
4
+ const awilix_1 = require("@medusajs/framework/awilix");
5
+ const logger_1 = require("@medusajs/framework/logger");
6
+ const migrations_1 = require("@medusajs/framework/migrations");
4
7
  const utils_1 = require("@medusajs/framework/utils");
5
- const awilix_1 = require("awilix");
6
8
  const database_1 = require("./database");
7
9
  const medusa_test_runner_utils_1 = require("./medusa-test-runner-utils");
8
- function medusaIntegrationTestRunner({ moduleName, dbName, medusaConfigFile, schema = "public", env = {}, debug = false, inApp = false, testSuite, }) {
9
- const tempName = parseInt(process.env.JEST_WORKER_ID || "1");
10
- moduleName = moduleName ?? Math.random().toString(36).substring(7);
11
- dbName ??= `medusa-${moduleName.toLowerCase()}-integration-${tempName}`;
12
- let dbConfig = {
13
- dbName,
14
- clientUrl: (0, database_1.getDatabaseURL)(dbName),
15
- schema,
16
- debug,
17
- };
18
- const cwd = medusaConfigFile ?? process.cwd();
19
- let shutdown = async () => void 0;
20
- const dbUtils = (0, database_1.dbTestUtilFactory)();
21
- let globalContainer;
22
- let apiUtils;
23
- let loadedApplication;
24
- let options = {
25
- api: new Proxy({}, {
10
+ const wait_workflow_executions_1 = require("./medusa-test-runner-utils/wait-workflow-executions");
11
+ class MedusaTestRunner {
12
+ constructor(config) {
13
+ this.globalContainer = null;
14
+ this.apiUtils = null;
15
+ this.loadedApplication = null;
16
+ this.shutdown = async () => void 0;
17
+ this.isFirstTime = true;
18
+ this.hooks = {};
19
+ const tempName = parseInt(process.env.JEST_WORKER_ID || "1");
20
+ const moduleName = config.moduleName ?? Math.random().toString(36).substring(7);
21
+ this.dbName =
22
+ config.dbName ??
23
+ `medusa-${moduleName.toLowerCase()}-integration-${tempName}`;
24
+ this.schema = config.schema ?? "public";
25
+ this.cwd = config.cwd ?? config.medusaConfigFile ?? process.cwd();
26
+ this.modulesConfigPath = config.medusaConfigFile ?? this.cwd;
27
+ this.env = config.env ?? {};
28
+ this.debug = config.debug ?? false;
29
+ this.inApp = config.inApp ?? false;
30
+ this.disableAutoTeardown = config?.disableAutoTeardown ?? false;
31
+ this.dbUtils = (0, database_1.dbTestUtilFactory)();
32
+ this.dbConfig = {
33
+ dbName: this.dbName,
34
+ clientUrl: (0, database_1.getDatabaseURL)(this.dbName),
35
+ schema: this.schema,
36
+ debug: this.debug,
37
+ };
38
+ this.hooks = config.hooks ?? {};
39
+ this.setupProcessHandlers();
40
+ }
41
+ setupProcessHandlers() {
42
+ process.on("SIGTERM", async () => {
43
+ await this.cleanup();
44
+ process.exit(0);
45
+ });
46
+ process.on("SIGINT", async () => {
47
+ await this.cleanup();
48
+ process.exit(0);
49
+ });
50
+ }
51
+ createApiProxy() {
52
+ return new Proxy({}, {
26
53
  get: (target, prop) => {
27
- return apiUtils[prop];
54
+ return this.apiUtils?.[prop];
28
55
  },
29
- }),
30
- dbConnection: new Proxy({}, {
56
+ });
57
+ }
58
+ createDbConnectionProxy() {
59
+ return new Proxy({}, {
31
60
  get: (target, prop) => {
32
- return dbUtils.pgConnection_[prop];
61
+ return this.dbUtils.pgConnection_?.[prop];
33
62
  },
34
- }),
35
- getMedusaApp: () => loadedApplication,
36
- getContainer: () => globalContainer,
37
- dbConfig: {
38
- dbName,
39
- schema,
40
- clientUrl: dbConfig.clientUrl,
41
- },
42
- dbUtils,
43
- };
44
- let isFirstTime = true;
45
- const beforeAll_ = async () => {
46
- await (0, medusa_test_runner_utils_1.configLoaderOverride)(cwd, dbConfig);
47
- (0, medusa_test_runner_utils_1.applyEnvVarsToProcess)(env);
48
- const { logger, container, MedusaAppLoader } = await import("@medusajs/framework");
49
- const appLoader = new MedusaAppLoader();
50
- container.register({
51
- [utils_1.ContainerRegistrationKeys.LOGGER]: (0, awilix_1.asValue)(logger),
52
63
  });
64
+ }
65
+ async initializeDatabase() {
53
66
  try {
54
- console.log(`Creating database ${dbName}`);
55
- await dbUtils.create(dbName);
56
- dbUtils.pgConnection_ = await (0, medusa_test_runner_utils_1.initDb)();
67
+ logger_1.logger.info(`Creating database ${this.dbName}`);
68
+ await this.dbUtils.create(this.dbName);
69
+ this.dbUtils.pgConnection_ = await (0, medusa_test_runner_utils_1.initDb)();
57
70
  }
58
71
  catch (error) {
59
- console.error("Error initializing database", error?.message);
72
+ logger_1.logger.error(`Error initializing database: ${error?.message}`);
73
+ await this.cleanup();
60
74
  throw error;
61
75
  }
62
- console.log(`Migrating database with core migrations and links ${dbName}`);
76
+ }
77
+ async setupApplication() {
78
+ const { container, MedusaAppLoader } = await import("@medusajs/framework");
79
+ const appLoader = new MedusaAppLoader({
80
+ medusaConfigPath: this.modulesConfigPath,
81
+ cwd: this.cwd,
82
+ });
83
+ // Load plugins modules
84
+ const configModule = container.resolve(utils_1.ContainerRegistrationKeys.CONFIG_MODULE);
85
+ const plugins = await (0, utils_1.getResolvedPlugins)(this.cwd, configModule);
86
+ (0, utils_1.mergePluginModules)(configModule, plugins);
87
+ container.register({
88
+ [utils_1.ContainerRegistrationKeys.LOGGER]: (0, awilix_1.asValue)(logger_1.logger),
89
+ });
90
+ if (this.hooks?.beforeServerStart) {
91
+ await this.hooks.beforeServerStart(container);
92
+ }
93
+ await this.initializeDatabase();
94
+ const migrator = new migrations_1.Migrator({ container });
95
+ await migrator.ensureMigrationsTable();
96
+ logger_1.logger.info(`Migrating database with core migrations and links ${this.dbName}`);
63
97
  await (0, medusa_test_runner_utils_1.migrateDatabase)(appLoader);
64
- await (0, medusa_test_runner_utils_1.syncLinks)(appLoader, cwd, container);
98
+ await (0, medusa_test_runner_utils_1.syncLinks)(appLoader, this.modulesConfigPath, container, logger_1.logger);
65
99
  await (0, medusa_test_runner_utils_1.clearInstances)();
66
- let containerRes = container;
67
- let serverShutdownRes;
68
- let portRes;
69
- loadedApplication = await appLoader.load();
100
+ this.loadedApplication = await appLoader.load();
70
101
  try {
71
- const { shutdown = () => void 0, container: appContainer, port, } = await (0, medusa_test_runner_utils_1.startApp)({
72
- cwd,
73
- env,
102
+ const { shutdown, container: appContainer, port, } = await (0, medusa_test_runner_utils_1.startApp)({
103
+ cwd: this.modulesConfigPath,
104
+ env: this.env,
105
+ });
106
+ this.globalContainer = appContainer;
107
+ this.shutdown = async () => {
108
+ await shutdown();
109
+ if (this.apiUtils?.cancelToken?.source) {
110
+ this.apiUtils.cancelToken.source.cancel("Request canceled by shutdown");
111
+ }
112
+ };
113
+ const { default: axios } = (await import("axios"));
114
+ const cancelTokenSource = axios.CancelToken.source();
115
+ this.apiUtils = axios.create({
116
+ baseURL: `http://localhost:${port}`,
117
+ cancelToken: cancelTokenSource.token,
74
118
  });
75
- containerRes = appContainer;
76
- serverShutdownRes = shutdown;
77
- portRes = port;
119
+ this.apiUtils.cancelToken = { source: cancelTokenSource };
78
120
  }
79
121
  catch (error) {
80
- console.error("Error starting the app", error?.message);
122
+ logger_1.logger.error(`Error starting the app: ${error?.message}`);
123
+ await this.cleanup();
81
124
  throw error;
82
125
  }
83
- /**
84
- * Run application migrations and sync links when inside
85
- * an application
86
- */
87
- if (inApp) {
88
- console.log(`Migrating database with core migrations and links ${dbName}`);
89
- await (0, medusa_test_runner_utils_1.migrateDatabase)(appLoader);
90
- await (0, medusa_test_runner_utils_1.syncLinks)(appLoader, cwd, containerRes);
126
+ }
127
+ async cleanup() {
128
+ try {
129
+ process.removeAllListeners("SIGTERM");
130
+ process.removeAllListeners("SIGINT");
131
+ await this.dbUtils.shutdown(this.dbName);
132
+ await this.shutdown();
133
+ await (0, medusa_test_runner_utils_1.clearInstances)();
134
+ if (this.apiUtils?.cancelToken?.source) {
135
+ this.apiUtils.cancelToken.source.cancel("Cleanup");
136
+ }
137
+ if (this.globalContainer?.dispose) {
138
+ await this.globalContainer.dispose();
139
+ }
140
+ this.apiUtils = null;
141
+ this.loadedApplication = null;
142
+ this.globalContainer = null;
143
+ if (global.gc) {
144
+ global.gc();
145
+ }
91
146
  }
92
- const { default: axios } = (await import("axios"));
93
- const cancelTokenSource = axios.CancelToken.source();
94
- globalContainer = containerRes;
95
- shutdown = async () => {
96
- await serverShutdownRes();
97
- cancelTokenSource.cancel("Request canceled by shutdown");
98
- };
99
- apiUtils = axios.create({
100
- baseURL: `http://localhost:${portRes}`,
101
- cancelToken: cancelTokenSource.token,
102
- });
103
- };
104
- const beforeEach_ = async () => {
105
- // The beforeAll already run everything, so lets not re run the loaders for the first iteration
106
- if (isFirstTime) {
107
- isFirstTime = false;
147
+ catch (error) {
148
+ logger_1.logger.error("Error during cleanup:", error?.message);
149
+ }
150
+ }
151
+ async beforeAll() {
152
+ try {
153
+ this.setupProcessHandlers();
154
+ await (0, medusa_test_runner_utils_1.configLoaderOverride)(this.cwd, this.dbConfig);
155
+ (0, medusa_test_runner_utils_1.applyEnvVarsToProcess)(this.env);
156
+ await this.setupApplication();
157
+ }
158
+ catch (error) {
159
+ await this.cleanup();
160
+ throw error;
161
+ }
162
+ }
163
+ async beforeEach() {
164
+ if (this.isFirstTime) {
165
+ this.isFirstTime = false;
108
166
  return;
109
167
  }
110
- const container = options.getContainer();
168
+ await this.afterEach();
169
+ const container = this.globalContainer;
111
170
  const copiedContainer = (0, utils_1.createMedusaContainer)({}, container);
112
171
  try {
113
172
  const { MedusaAppLoader } = await import("@medusajs/framework");
114
173
  const medusaAppLoader = new MedusaAppLoader({
115
174
  container: copiedContainer,
175
+ medusaConfigPath: this.modulesConfigPath,
176
+ cwd: this.cwd,
116
177
  });
117
178
  await medusaAppLoader.runModulesLoader();
118
179
  }
119
180
  catch (error) {
120
- console.error("Error runner modules loaders", error?.message);
181
+ await copiedContainer.dispose?.();
182
+ logger_1.logger.error("Error running modules loaders:", error?.message);
121
183
  throw error;
122
184
  }
123
- };
124
- const afterEach_ = async () => {
185
+ }
186
+ async afterEach() {
125
187
  try {
126
- await dbUtils.teardown({ schema });
188
+ await (0, wait_workflow_executions_1.waitWorkflowExecutions)(this.globalContainer);
189
+ if (!this.disableAutoTeardown) {
190
+ // Perform automatic teardown
191
+ await this.dbUtils.teardown({ schema: this.schema });
192
+ }
127
193
  }
128
194
  catch (error) {
129
- console.error("Error tearing down database:", error?.message);
195
+ logger_1.logger.error("Error tearing down database:", error?.message);
130
196
  throw error;
131
197
  }
132
- };
198
+ }
199
+ getOptions() {
200
+ return {
201
+ api: this.createApiProxy(),
202
+ dbConnection: this.createDbConnectionProxy(),
203
+ getMedusaApp: () => this.loadedApplication,
204
+ getContainer: () => this.globalContainer,
205
+ dbConfig: {
206
+ dbName: this.dbName,
207
+ schema: this.schema,
208
+ clientUrl: this.dbConfig.clientUrl,
209
+ },
210
+ dbUtils: this.dbUtils,
211
+ utils: {
212
+ waitWorkflowExecutions: () => (0, wait_workflow_executions_1.waitWorkflowExecutions)(this.globalContainer),
213
+ },
214
+ };
215
+ }
216
+ }
217
+ function medusaIntegrationTestRunner({ moduleName, dbName, medusaConfigFile, schema = "public", env = {}, debug = false, inApp = false, testSuite, hooks, cwd, disableAutoTeardown, }) {
218
+ const runner = new MedusaTestRunner({
219
+ moduleName,
220
+ dbName,
221
+ medusaConfigFile,
222
+ schema,
223
+ env,
224
+ debug,
225
+ inApp,
226
+ hooks,
227
+ cwd,
228
+ disableAutoTeardown,
229
+ });
133
230
  return describe("", () => {
134
- beforeAll(beforeAll_);
135
- beforeEach(beforeEach_);
136
- afterEach(afterEach_);
231
+ let testOptions;
232
+ beforeAll(async () => {
233
+ await runner.beforeAll();
234
+ testOptions = runner.getOptions();
235
+ });
236
+ beforeEach(async () => {
237
+ await runner.beforeEach();
238
+ });
239
+ afterEach(async () => {
240
+ await runner.afterEach();
241
+ });
137
242
  afterAll(async () => {
138
- await dbUtils.shutdown(dbName);
139
- await shutdown();
243
+ // Run main cleanup
244
+ await runner.cleanup();
245
+ // Clean references to the test options
246
+ for (const key in testOptions) {
247
+ if (typeof testOptions[key] === "function") {
248
+ testOptions[key] = null;
249
+ }
250
+ else if (typeof testOptions[key] === "object" &&
251
+ testOptions[key] !== null) {
252
+ Object.keys(testOptions[key]).forEach((k) => {
253
+ testOptions[key][k] = null;
254
+ });
255
+ testOptions[key] = null;
256
+ }
257
+ }
258
+ // Encourage garbage collection
259
+ // @ts-ignore
260
+ testOptions = null;
261
+ if (global.gc) {
262
+ global.gc();
263
+ }
140
264
  });
141
- testSuite(options);
265
+ // Run test suite with options
266
+ testSuite(runner.getOptions());
142
267
  });
143
268
  }
144
269
  //# sourceMappingURL=medusa-test-runner.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"medusa-test-runner.js","sourceRoot":"","sources":["../src/medusa-test-runner.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"medusa-test-runner.js","sourceRoot":"","sources":["../src/medusa-test-runner.ts"],"names":[],"mappings":"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"}
@@ -8,7 +8,7 @@ export interface SuiteOptions<TService = unknown> {
8
8
  clientUrl: string;
9
9
  };
10
10
  }
11
- export declare function moduleIntegrationTestRunner<TService = any>({ moduleName, moduleModels, moduleOptions, moduleDependencies, joinerConfig, schema, debug, testSuite, resolve, injectedDependencies, }: {
11
+ interface ModuleTestRunnerConfig<TService = any> {
12
12
  moduleName: string;
13
13
  moduleModels?: any[];
14
14
  moduleOptions?: Record<string, any>;
@@ -19,6 +19,26 @@ export declare function moduleIntegrationTestRunner<TService = any>({ moduleName
19
19
  injectedDependencies?: Record<string, any>;
20
20
  resolve?: string;
21
21
  debug?: boolean;
22
+ cwd?: string;
23
+ hooks?: {
24
+ beforeModuleInit?: () => Promise<void>;
25
+ afterModuleInit?: (medusaApp: any, service: TService) => Promise<void>;
26
+ };
27
+ }
28
+ export declare function moduleIntegrationTestRunner<TService = any>({ moduleName, moduleModels, moduleOptions, moduleDependencies, joinerConfig, schema, debug, testSuite, resolve, injectedDependencies, cwd, hooks, }: {
29
+ moduleName: string;
30
+ moduleModels?: any[];
31
+ moduleOptions?: Record<string, any>;
32
+ moduleDependencies?: string[];
33
+ joinerConfig?: any[];
34
+ schema?: string;
35
+ dbName?: string;
36
+ injectedDependencies?: Record<string, any>;
37
+ resolve?: string;
38
+ debug?: boolean;
39
+ cwd?: string;
40
+ hooks?: ModuleTestRunnerConfig<TService>["hooks"];
22
41
  testSuite: (options: SuiteOptions<TService>) => void;
23
42
  }): void;
43
+ export {};
24
44
  //# sourceMappingURL=module-test-runner.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"module-test-runner.d.ts","sourceRoot":"","sources":["../src/module-test-runner.ts"],"names":[],"mappings":"AAWA,OAAO,EAAsC,YAAY,EAAE,MAAM,YAAY,CAAA;AAI7E,MAAM,WAAW,YAAY,CAAC,QAAQ,GAAG,OAAO;IAC9C,eAAe,EAAE,YAAY,CAAA;IAC7B,SAAS,EAAE,GAAG,CAAA;IACd,OAAO,EAAE,QAAQ,CAAA;IACjB,QAAQ,EAAE;QACR,MAAM,EAAE,MAAM,CAAA;QACd,SAAS,EAAE,MAAM,CAAA;KAClB,CAAA;CACF;AA0CD,wBAAgB,2BAA2B,CAAC,QAAQ,GAAG,GAAG,EAAE,EAC1D,UAAU,EACV,YAAY,EACZ,aAAkB,EAClB,kBAAkB,EAClB,YAAiB,EACjB,MAAiB,EACjB,KAAa,EACb,SAAS,EACT,OAAO,EACP,oBAAyB,GAC1B,EAAE;IACD,UAAU,EAAE,MAAM,CAAA;IAClB,YAAY,CAAC,EAAE,GAAG,EAAE,CAAA;IACpB,aAAa,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAA;IACnC,kBAAkB,CAAC,EAAE,MAAM,EAAE,CAAA;IAC7B,YAAY,CAAC,EAAE,GAAG,EAAE,CAAA;IACpB,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,oBAAoB,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAA;IAC1C,OAAO,CAAC,EAAE,MAAM,CAAA;IAChB,KAAK,CAAC,EAAE,OAAO,CAAA;IACf,SAAS,EAAE,CAAC,OAAO,EAAE,YAAY,CAAC,QAAQ,CAAC,KAAK,IAAI,CAAA;CACrD,QA4GA"}
1
+ {"version":3,"file":"module-test-runner.d.ts","sourceRoot":"","sources":["../src/module-test-runner.ts"],"names":[],"mappings":"AAYA,OAAO,EAAsC,YAAY,EAAE,MAAM,YAAY,CAAA;AAI7E,MAAM,WAAW,YAAY,CAAC,QAAQ,GAAG,OAAO;IAC9C,eAAe,EAAE,YAAY,CAAA;IAC7B,SAAS,EAAE,GAAG,CAAA;IACd,OAAO,EAAE,QAAQ,CAAA;IACjB,QAAQ,EAAE;QACR,MAAM,EAAE,MAAM,CAAA;QACd,SAAS,EAAE,MAAM,CAAA;KAClB,CAAA;CACF;AAED,UAAU,sBAAsB,CAAC,QAAQ,GAAG,GAAG;IAC7C,UAAU,EAAE,MAAM,CAAA;IAClB,YAAY,CAAC,EAAE,GAAG,EAAE,CAAA;IACpB,aAAa,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAA;IACnC,kBAAkB,CAAC,EAAE,MAAM,EAAE,CAAA;IAC7B,YAAY,CAAC,EAAE,GAAG,EAAE,CAAA;IACpB,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,oBAAoB,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAA;IAC1C,OAAO,CAAC,EAAE,MAAM,CAAA;IAChB,KAAK,CAAC,EAAE,OAAO,CAAA;IACf,GAAG,CAAC,EAAE,MAAM,CAAA;IACZ,KAAK,CAAC,EAAE;QACN,gBAAgB,CAAC,EAAE,MAAM,OAAO,CAAC,IAAI,CAAC,CAAA;QACtC,eAAe,CAAC,EAAE,CAAC,SAAS,EAAE,GAAG,EAAE,OAAO,EAAE,QAAQ,KAAK,OAAO,CAAC,IAAI,CAAC,CAAA;KACvE,CAAA;CACF;AAoQD,wBAAgB,2BAA2B,CAAC,QAAQ,GAAG,GAAG,EAAE,EAC1D,UAAU,EACV,YAAY,EACZ,aAAkB,EAClB,kBAAkB,EAClB,YAAiB,EACjB,MAAiB,EACjB,KAAa,EACb,SAAS,EACT,OAAO,EACP,oBAAyB,EACzB,GAAG,EACH,KAAK,GACN,EAAE;IACD,UAAU,EAAE,MAAM,CAAA;IAClB,YAAY,CAAC,EAAE,GAAG,EAAE,CAAA;IACpB,aAAa,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAA;IACnC,kBAAkB,CAAC,EAAE,MAAM,EAAE,CAAA;IAC7B,YAAY,CAAC,EAAE,GAAG,EAAE,CAAA;IACpB,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,oBAAoB,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAA;IAC1C,OAAO,CAAC,EAAE,MAAM,CAAA;IAChB,KAAK,CAAC,EAAE,OAAO,CAAA;IACf,GAAG,CAAC,EAAE,MAAM,CAAA;IACZ,KAAK,CAAC,EAAE,sBAAsB,CAAC,QAAQ,CAAC,CAAC,OAAO,CAAC,CAAA;IACjD,SAAS,EAAE,CAAC,OAAO,EAAE,YAAY,CAAC,QAAQ,CAAC,KAAK,IAAI,CAAA;CACrD,QA8DA"}