@alwatr/async-queue 1.3.4 → 1.3.6

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/CHANGELOG.md CHANGED
@@ -3,6 +3,16 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [1.3.6](https://github.com/Alwatr/nanolib/compare/@alwatr/async-queue@1.3.5...@alwatr/async-queue@1.3.6) (2024-10-12)
7
+
8
+ **Note:** Version bump only for package @alwatr/async-queue
9
+
10
+ ## [1.3.5](https://github.com/Alwatr/nanolib/compare/@alwatr/async-queue@1.3.4...@alwatr/async-queue@1.3.5) (2024-10-11)
11
+
12
+ ### Code Refactoring
13
+
14
+ * prevent side-effects ([01e00e1](https://github.com/Alwatr/nanolib/commit/01e00e191385cc92b28677df0c01a085916ae677)) by @mohammadhonarvar
15
+
6
16
  ## [1.3.4](https://github.com/Alwatr/nanolib/compare/@alwatr/async-queue@1.3.3...@alwatr/async-queue@1.3.4) (2024-10-11)
7
17
 
8
18
  ### Miscellaneous Chores
package/dist/main.cjs CHANGED
@@ -1,4 +1,4 @@
1
- /* @alwatr/async-queue v1.3.4 */
1
+ /* @alwatr/async-queue v1.3.6 */
2
2
  "use strict";
3
3
  var __defProp = Object.defineProperty;
4
4
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
@@ -26,7 +26,7 @@ __export(main_exports, {
26
26
  module.exports = __toCommonJS(main_exports);
27
27
  var import_flatomise = require("@alwatr/flatomise");
28
28
  var import_package_tracer = require("@alwatr/package-tracer");
29
- import_package_tracer.packageTracer.add("@alwatr/async-queue", "1.3.4");
29
+ __dev_mode__: import_package_tracer.packageTracer.add("@alwatr/async-queue", "1.3.6");
30
30
  var AsyncQueue = class {
31
31
  constructor() {
32
32
  /**
package/dist/main.cjs.map CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../src/main.ts"],
4
- "sourcesContent": ["import {newFlatomise} from '@alwatr/flatomise';\nimport {packageTracer} from '@alwatr/package-tracer';\n\npackageTracer.add(__package_name__, __package_version__);\n\n/**\n * A queue that executes async tasks in order like mutex and semaphore methodology\n *\n * @example\n * ```ts\n * const queue = new AsyncQueue();\n *\n * function longTask() {\n * queue.push('longTaskId', async () => {\n * // ...\n * });\n * }\n * ```\n */\nexport class AsyncQueue {\n /**\n * A record of task IDs and their corresponding last queued task promises.\n */\n private queue__: DictionaryOpt<Promise<unknown>> = {};\n\n /**\n * Push a async task to the queue.\n *\n * @param taskId task id\n * @param task async task\n * @returns A promise that resolves when the task is done.\n *\n * @example\n * ```typescript\n * const queue = new AsyncQueue();\n *\n * function longTask() {\n * queue.push('longTaskId', async () => {\n * // ...\n * });\n * ```\n */\n async push<T>(taskId: string, task: () => Promise<T>): Promise<T> {\n const flatomise = newFlatomise<T>();\n\n const previousTaskPromise = this.queue__[taskId];\n this.queue__[taskId] = flatomise.promise;\n\n try {\n await previousTaskPromise;\n }\n catch (_e) {\n // ignore\n }\n\n setTimeout(() => {\n task()\n .then(flatomise.resolve, flatomise.reject)\n .then(() => {\n if (this.queue__[taskId] === flatomise.promise) {\n delete this.queue__[taskId];\n }\n });\n }, 0);\n\n return flatomise.promise;\n }\n\n /**\n * Check if the task running in the queue.\n *\n * @param taskId task id\n * @returns true if the task is running, otherwise false.\n * @example\n * ```typescript\n * if (queue.isRunning('longTaskId')) {\n * // ...\n * }\n * ```\n */\n isRunning(taskId: string): boolean {\n return this.queue__[taskId] !== undefined;\n }\n\n /**\n * Wait for the all tasks in the queue to finish.\n *\n * @param taskId task id\n * @returns A promise that resolves when all tasks are done.\n * @example\n * ```typescript\n * await queue.waitForFinish('longTaskId');\n * ```\n */\n waitForFinish(taskId: string): Promise<unknown> {\n return this.queue__[taskId] ?? Promise.resolve();\n }\n\n /**\n * Wait for the all tasks in the queue to finish.\n * @returns A promise that resolves when all tasks are done.\n * @example\n * ```typescript\n * await queue.waitForAllFinish();\n * ```\n */\n waitForAllFinish(): Promise<unknown[]> {\n return Promise.all(Object.values(this.queue__));\n }\n}\n"],
5
- "mappings": ";;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,uBAA2B;AAC3B,4BAA4B;AAE5B,oCAAc,IAAI,uBAAkB,OAAmB;AAgBhD,IAAM,aAAN,MAAiB;AAAA,EAAjB;AAIL;AAAA;AAAA;AAAA,SAAQ,UAA2C,CAAC;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAmBpD,MAAM,KAAQ,QAAgB,MAAoC;AAChE,UAAM,gBAAY,+BAAgB;AAElC,UAAM,sBAAsB,KAAK,QAAQ,MAAM;AAC/C,SAAK,QAAQ,MAAM,IAAI,UAAU;AAEjC,QAAI;AACF,YAAM;AAAA,IACR,SACO,IAAI;AAAA,IAEX;AAEA,eAAW,MAAM;AACf,WAAK,EACF,KAAK,UAAU,SAAS,UAAU,MAAM,EACxC,KAAK,MAAM;AACV,YAAI,KAAK,QAAQ,MAAM,MAAM,UAAU,SAAS;AAC9C,iBAAO,KAAK,QAAQ,MAAM;AAAA,QAC5B;AAAA,MACF,CAAC;AAAA,IACL,GAAG,CAAC;AAEJ,WAAO,UAAU;AAAA,EACnB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAcA,UAAU,QAAyB;AACjC,WAAO,KAAK,QAAQ,MAAM,MAAM;AAAA,EAClC;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAYA,cAAc,QAAkC;AAC9C,WAAO,KAAK,QAAQ,MAAM,KAAK,QAAQ,QAAQ;AAAA,EACjD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAUA,mBAAuC;AACrC,WAAO,QAAQ,IAAI,OAAO,OAAO,KAAK,OAAO,CAAC;AAAA,EAChD;AACF;",
4
+ "sourcesContent": ["import {newFlatomise} from '@alwatr/flatomise';\nimport {packageTracer} from '@alwatr/package-tracer';\n\n__dev_mode__: packageTracer.add(__package_name__, __package_version__);\n\n/**\n * A queue that executes async tasks in order like mutex and semaphore methodology\n *\n * @example\n * ```ts\n * const queue = new AsyncQueue();\n *\n * function longTask() {\n * queue.push('longTaskId', async () => {\n * // ...\n * });\n * }\n * ```\n */\nexport class AsyncQueue {\n /**\n * A record of task IDs and their corresponding last queued task promises.\n */\n private queue__: DictionaryOpt<Promise<unknown>> = {};\n\n /**\n * Push a async task to the queue.\n *\n * @param taskId task id\n * @param task async task\n * @returns A promise that resolves when the task is done.\n *\n * @example\n * ```typescript\n * const queue = new AsyncQueue();\n *\n * function longTask() {\n * queue.push('longTaskId', async () => {\n * // ...\n * });\n * ```\n */\n async push<T>(taskId: string, task: () => Promise<T>): Promise<T> {\n const flatomise = newFlatomise<T>();\n\n const previousTaskPromise = this.queue__[taskId];\n this.queue__[taskId] = flatomise.promise;\n\n try {\n await previousTaskPromise;\n }\n catch (_e) {\n // ignore\n }\n\n setTimeout(() => {\n task()\n .then(flatomise.resolve, flatomise.reject)\n .then(() => {\n if (this.queue__[taskId] === flatomise.promise) {\n delete this.queue__[taskId];\n }\n });\n }, 0);\n\n return flatomise.promise;\n }\n\n /**\n * Check if the task running in the queue.\n *\n * @param taskId task id\n * @returns true if the task is running, otherwise false.\n * @example\n * ```typescript\n * if (queue.isRunning('longTaskId')) {\n * // ...\n * }\n * ```\n */\n isRunning(taskId: string): boolean {\n return this.queue__[taskId] !== undefined;\n }\n\n /**\n * Wait for the all tasks in the queue to finish.\n *\n * @param taskId task id\n * @returns A promise that resolves when all tasks are done.\n * @example\n * ```typescript\n * await queue.waitForFinish('longTaskId');\n * ```\n */\n waitForFinish(taskId: string): Promise<unknown> {\n return this.queue__[taskId] ?? Promise.resolve();\n }\n\n /**\n * Wait for the all tasks in the queue to finish.\n * @returns A promise that resolves when all tasks are done.\n * @example\n * ```typescript\n * await queue.waitForAllFinish();\n * ```\n */\n waitForAllFinish(): Promise<unknown[]> {\n return Promise.all(Object.values(this.queue__));\n }\n}\n"],
5
+ "mappings": ";;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,uBAA2B;AAC3B,4BAA4B;AAE5B,aAAc,qCAAc,IAAI,uBAAkB,OAAmB;AAgB9D,IAAM,aAAN,MAAiB;AAAA,EAAjB;AAIL;AAAA;AAAA;AAAA,SAAQ,UAA2C,CAAC;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAmBpD,MAAM,KAAQ,QAAgB,MAAoC;AAChE,UAAM,gBAAY,+BAAgB;AAElC,UAAM,sBAAsB,KAAK,QAAQ,MAAM;AAC/C,SAAK,QAAQ,MAAM,IAAI,UAAU;AAEjC,QAAI;AACF,YAAM;AAAA,IACR,SACO,IAAI;AAAA,IAEX;AAEA,eAAW,MAAM;AACf,WAAK,EACF,KAAK,UAAU,SAAS,UAAU,MAAM,EACxC,KAAK,MAAM;AACV,YAAI,KAAK,QAAQ,MAAM,MAAM,UAAU,SAAS;AAC9C,iBAAO,KAAK,QAAQ,MAAM;AAAA,QAC5B;AAAA,MACF,CAAC;AAAA,IACL,GAAG,CAAC;AAEJ,WAAO,UAAU;AAAA,EACnB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAcA,UAAU,QAAyB;AACjC,WAAO,KAAK,QAAQ,MAAM,MAAM;AAAA,EAClC;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAYA,cAAc,QAAkC;AAC9C,WAAO,KAAK,QAAQ,MAAM,KAAK,QAAQ,QAAQ;AAAA,EACjD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAUA,mBAAuC;AACrC,WAAO,QAAQ,IAAI,OAAO,OAAO,KAAK,OAAO,CAAC;AAAA,EAChD;AACF;",
6
6
  "names": []
7
7
  }
package/dist/main.mjs CHANGED
@@ -1,9 +1,9 @@
1
- /* @alwatr/async-queue v1.3.4 */
1
+ /* @alwatr/async-queue v1.3.6 */
2
2
 
3
3
  // src/main.ts
4
4
  import { newFlatomise } from "@alwatr/flatomise";
5
5
  import { packageTracer } from "@alwatr/package-tracer";
6
- packageTracer.add("@alwatr/async-queue", "1.3.4");
6
+ __dev_mode__: packageTracer.add("@alwatr/async-queue", "1.3.6");
7
7
  var AsyncQueue = class {
8
8
  constructor() {
9
9
  /**
package/dist/main.mjs.map CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../src/main.ts"],
4
- "sourcesContent": ["import {newFlatomise} from '@alwatr/flatomise';\nimport {packageTracer} from '@alwatr/package-tracer';\n\npackageTracer.add(__package_name__, __package_version__);\n\n/**\n * A queue that executes async tasks in order like mutex and semaphore methodology\n *\n * @example\n * ```ts\n * const queue = new AsyncQueue();\n *\n * function longTask() {\n * queue.push('longTaskId', async () => {\n * // ...\n * });\n * }\n * ```\n */\nexport class AsyncQueue {\n /**\n * A record of task IDs and their corresponding last queued task promises.\n */\n private queue__: DictionaryOpt<Promise<unknown>> = {};\n\n /**\n * Push a async task to the queue.\n *\n * @param taskId task id\n * @param task async task\n * @returns A promise that resolves when the task is done.\n *\n * @example\n * ```typescript\n * const queue = new AsyncQueue();\n *\n * function longTask() {\n * queue.push('longTaskId', async () => {\n * // ...\n * });\n * ```\n */\n async push<T>(taskId: string, task: () => Promise<T>): Promise<T> {\n const flatomise = newFlatomise<T>();\n\n const previousTaskPromise = this.queue__[taskId];\n this.queue__[taskId] = flatomise.promise;\n\n try {\n await previousTaskPromise;\n }\n catch (_e) {\n // ignore\n }\n\n setTimeout(() => {\n task()\n .then(flatomise.resolve, flatomise.reject)\n .then(() => {\n if (this.queue__[taskId] === flatomise.promise) {\n delete this.queue__[taskId];\n }\n });\n }, 0);\n\n return flatomise.promise;\n }\n\n /**\n * Check if the task running in the queue.\n *\n * @param taskId task id\n * @returns true if the task is running, otherwise false.\n * @example\n * ```typescript\n * if (queue.isRunning('longTaskId')) {\n * // ...\n * }\n * ```\n */\n isRunning(taskId: string): boolean {\n return this.queue__[taskId] !== undefined;\n }\n\n /**\n * Wait for the all tasks in the queue to finish.\n *\n * @param taskId task id\n * @returns A promise that resolves when all tasks are done.\n * @example\n * ```typescript\n * await queue.waitForFinish('longTaskId');\n * ```\n */\n waitForFinish(taskId: string): Promise<unknown> {\n return this.queue__[taskId] ?? Promise.resolve();\n }\n\n /**\n * Wait for the all tasks in the queue to finish.\n * @returns A promise that resolves when all tasks are done.\n * @example\n * ```typescript\n * await queue.waitForAllFinish();\n * ```\n */\n waitForAllFinish(): Promise<unknown[]> {\n return Promise.all(Object.values(this.queue__));\n }\n}\n"],
5
- "mappings": ";;;AAAA,SAAQ,oBAAmB;AAC3B,SAAQ,qBAAoB;AAE5B,cAAc,IAAI,uBAAkB,OAAmB;AAgBhD,IAAM,aAAN,MAAiB;AAAA,EAAjB;AAIL;AAAA;AAAA;AAAA,SAAQ,UAA2C,CAAC;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAmBpD,MAAM,KAAQ,QAAgB,MAAoC;AAChE,UAAM,YAAY,aAAgB;AAElC,UAAM,sBAAsB,KAAK,QAAQ,MAAM;AAC/C,SAAK,QAAQ,MAAM,IAAI,UAAU;AAEjC,QAAI;AACF,YAAM;AAAA,IACR,SACO,IAAI;AAAA,IAEX;AAEA,eAAW,MAAM;AACf,WAAK,EACF,KAAK,UAAU,SAAS,UAAU,MAAM,EACxC,KAAK,MAAM;AACV,YAAI,KAAK,QAAQ,MAAM,MAAM,UAAU,SAAS;AAC9C,iBAAO,KAAK,QAAQ,MAAM;AAAA,QAC5B;AAAA,MACF,CAAC;AAAA,IACL,GAAG,CAAC;AAEJ,WAAO,UAAU;AAAA,EACnB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAcA,UAAU,QAAyB;AACjC,WAAO,KAAK,QAAQ,MAAM,MAAM;AAAA,EAClC;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAYA,cAAc,QAAkC;AAC9C,WAAO,KAAK,QAAQ,MAAM,KAAK,QAAQ,QAAQ;AAAA,EACjD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAUA,mBAAuC;AACrC,WAAO,QAAQ,IAAI,OAAO,OAAO,KAAK,OAAO,CAAC;AAAA,EAChD;AACF;",
4
+ "sourcesContent": ["import {newFlatomise} from '@alwatr/flatomise';\nimport {packageTracer} from '@alwatr/package-tracer';\n\n__dev_mode__: packageTracer.add(__package_name__, __package_version__);\n\n/**\n * A queue that executes async tasks in order like mutex and semaphore methodology\n *\n * @example\n * ```ts\n * const queue = new AsyncQueue();\n *\n * function longTask() {\n * queue.push('longTaskId', async () => {\n * // ...\n * });\n * }\n * ```\n */\nexport class AsyncQueue {\n /**\n * A record of task IDs and their corresponding last queued task promises.\n */\n private queue__: DictionaryOpt<Promise<unknown>> = {};\n\n /**\n * Push a async task to the queue.\n *\n * @param taskId task id\n * @param task async task\n * @returns A promise that resolves when the task is done.\n *\n * @example\n * ```typescript\n * const queue = new AsyncQueue();\n *\n * function longTask() {\n * queue.push('longTaskId', async () => {\n * // ...\n * });\n * ```\n */\n async push<T>(taskId: string, task: () => Promise<T>): Promise<T> {\n const flatomise = newFlatomise<T>();\n\n const previousTaskPromise = this.queue__[taskId];\n this.queue__[taskId] = flatomise.promise;\n\n try {\n await previousTaskPromise;\n }\n catch (_e) {\n // ignore\n }\n\n setTimeout(() => {\n task()\n .then(flatomise.resolve, flatomise.reject)\n .then(() => {\n if (this.queue__[taskId] === flatomise.promise) {\n delete this.queue__[taskId];\n }\n });\n }, 0);\n\n return flatomise.promise;\n }\n\n /**\n * Check if the task running in the queue.\n *\n * @param taskId task id\n * @returns true if the task is running, otherwise false.\n * @example\n * ```typescript\n * if (queue.isRunning('longTaskId')) {\n * // ...\n * }\n * ```\n */\n isRunning(taskId: string): boolean {\n return this.queue__[taskId] !== undefined;\n }\n\n /**\n * Wait for the all tasks in the queue to finish.\n *\n * @param taskId task id\n * @returns A promise that resolves when all tasks are done.\n * @example\n * ```typescript\n * await queue.waitForFinish('longTaskId');\n * ```\n */\n waitForFinish(taskId: string): Promise<unknown> {\n return this.queue__[taskId] ?? Promise.resolve();\n }\n\n /**\n * Wait for the all tasks in the queue to finish.\n * @returns A promise that resolves when all tasks are done.\n * @example\n * ```typescript\n * await queue.waitForAllFinish();\n * ```\n */\n waitForAllFinish(): Promise<unknown[]> {\n return Promise.all(Object.values(this.queue__));\n }\n}\n"],
5
+ "mappings": ";;;AAAA,SAAQ,oBAAmB;AAC3B,SAAQ,qBAAoB;AAE5B,aAAc,eAAc,IAAI,uBAAkB,OAAmB;AAgB9D,IAAM,aAAN,MAAiB;AAAA,EAAjB;AAIL;AAAA;AAAA;AAAA,SAAQ,UAA2C,CAAC;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAmBpD,MAAM,KAAQ,QAAgB,MAAoC;AAChE,UAAM,YAAY,aAAgB;AAElC,UAAM,sBAAsB,KAAK,QAAQ,MAAM;AAC/C,SAAK,QAAQ,MAAM,IAAI,UAAU;AAEjC,QAAI;AACF,YAAM;AAAA,IACR,SACO,IAAI;AAAA,IAEX;AAEA,eAAW,MAAM;AACf,WAAK,EACF,KAAK,UAAU,SAAS,UAAU,MAAM,EACxC,KAAK,MAAM;AACV,YAAI,KAAK,QAAQ,MAAM,MAAM,UAAU,SAAS;AAC9C,iBAAO,KAAK,QAAQ,MAAM;AAAA,QAC5B;AAAA,MACF,CAAC;AAAA,IACL,GAAG,CAAC;AAEJ,WAAO,UAAU;AAAA,EACnB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAcA,UAAU,QAAyB;AACjC,WAAO,KAAK,QAAQ,MAAM,MAAM;AAAA,EAClC;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAYA,cAAc,QAAkC;AAC9C,WAAO,KAAK,QAAQ,MAAM,KAAK,QAAQ,QAAQ;AAAA,EACjD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAUA,mBAAuC;AACrC,WAAO,QAAQ,IAAI,OAAO,OAAO,KAAK,OAAO,CAAC;AAAA,EAChD;AACF;",
6
6
  "names": []
7
7
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alwatr/async-queue",
3
- "version": "1.3.4",
3
+ "version": "1.3.6",
4
4
  "description": "A queue that executes async tasks in order like mutex and semaphore methodology for javascript and typescript.",
5
5
  "author": "S. Ali Mihandoost <ali.mihandoost@gmail.com>",
6
6
  "keywords": [
@@ -75,16 +75,16 @@
75
75
  "clean": "rm -rfv dist *.tsbuildinfo"
76
76
  },
77
77
  "dependencies": {
78
- "@alwatr/flatomise": "^1.2.4",
79
- "@alwatr/package-tracer": "^1.0.4"
78
+ "@alwatr/flatomise": "^1.2.6",
79
+ "@alwatr/package-tracer": "^1.0.6"
80
80
  },
81
81
  "devDependencies": {
82
- "@alwatr/nano-build": "^2.0.1",
82
+ "@alwatr/nano-build": "^2.0.2",
83
83
  "@alwatr/prettier-config": "^1.0.6",
84
84
  "@alwatr/tsconfig-base": "^1.3.2",
85
85
  "@alwatr/type-helper": "^2.0.2",
86
86
  "jest": "^29.7.0",
87
87
  "typescript": "^5.6.3"
88
88
  },
89
- "gitHead": "2a35f99b0347aacdccf3b6f28b30ca902f02a2f1"
89
+ "gitHead": "15d12342d2e69fbb6129675cce620132c5bd0bfc"
90
90
  }