@anchan828/nest-cloud-run-queue-worker 3.1.22 → 3.2.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.
@@ -67,8 +67,9 @@ let QueueWorkerExplorerService = class QueueWorkerExplorerService {
67
67
  metadata.push({
68
68
  priority: args.priority || 0,
69
69
  processor: methodRef.bind(instance),
70
- processorName: `${worker.className}.${methodName}`,
70
+ methodName,
71
71
  workerName: worker.name,
72
+ workerClassName: worker.className,
72
73
  });
73
74
  }
74
75
  }
@@ -43,7 +43,8 @@ export interface QueueWorkerMetadata {
43
43
  }
44
44
  export interface QueueWorkerProcessorMetadata extends QueueWorkerProcessDecoratorArgs {
45
45
  workerName: QueueWorkerName;
46
- processorName: string;
46
+ workerClassName: string;
47
+ methodName: string;
47
48
  processor: QueueWorkerProcessor;
48
49
  }
49
50
  export type QueueWorkerExtraConfig = {
@@ -1,31 +1,55 @@
1
1
  import { QueueWorkerDecodedMessage, QueueWorkerMetadata, QueueWorkerModuleOptions, QueueWorkerProcessorMetadata, QueueWorkerProcessResult } from "./interfaces";
2
2
  export declare class Worker<T> {
3
- private readonly message;
4
3
  private readonly metadata;
5
4
  private readonly options;
5
+ /**
6
+ * Worker name.
7
+ */
6
8
  get name(): string;
9
+ /**
10
+ * Worker priority. The lower the number, the higher the priority.
11
+ */
7
12
  get priority(): number;
13
+ /**
14
+ * Class name with QueueWorker decorator.
15
+ */
8
16
  get className(): string;
9
- constructor(message: QueueWorkerDecodedMessage<T>, metadata: QueueWorkerMetadata, options: QueueWorkerModuleOptions);
17
+ constructor(metadata: QueueWorkerMetadata, options: QueueWorkerModuleOptions);
10
18
  /**
11
19
  * Execute all processors in the worker. If you want to execute a each processor, use `getProcessors` method.
12
20
  */
13
- execute(): Promise<QueueWorkerProcessResult[]>;
21
+ execute(message: QueueWorkerDecodedMessage<T>): Promise<QueueWorkerProcessResult[]>;
14
22
  /**
15
23
  * Get all processors in the worker. Use this method to execute manually when you want to execute only on specific conditions using metadata such as class name or processor name.
16
24
  */
17
25
  getProcessors(): Processor<T>[];
18
26
  }
19
27
  export declare class Processor<T> {
20
- private readonly message;
21
28
  private readonly metadata;
22
29
  private readonly options;
30
+ /**
31
+ * Processor name. This is `#{worker.className}.${processor.methodName}`.
32
+ */
23
33
  get name(): string;
34
+ /**
35
+ * Processor priority. The lower the number, the higher the priority.
36
+ */
24
37
  get priority(): number;
38
+ /**
39
+ * The name of the processor that has this worker.
40
+ */
25
41
  get workerName(): string;
26
- constructor(message: QueueWorkerDecodedMessage<T>, metadata: QueueWorkerProcessorMetadata, options: QueueWorkerModuleOptions);
42
+ /**
43
+ * The class name of the worker that has this processor.
44
+ */
45
+ get workerClassName(): string;
46
+ /**
47
+ * The method name of the processor with QueueWorkerProcess.
48
+ */
49
+ get methodName(): string;
50
+ constructor(metadata: QueueWorkerProcessorMetadata, options: QueueWorkerModuleOptions);
27
51
  /**
28
52
  * Execute the processor.
29
53
  */
30
- execute(): Promise<QueueWorkerProcessResult<T>>;
54
+ execute(message: QueueWorkerDecodedMessage<T>): Promise<QueueWorkerProcessResult<T>>;
31
55
  }
@@ -2,28 +2,36 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.Processor = exports.Worker = void 0;
4
4
  class Worker {
5
+ /**
6
+ * Worker name.
7
+ */
5
8
  get name() {
6
9
  return this.metadata.name;
7
10
  }
11
+ /**
12
+ * Worker priority. The lower the number, the higher the priority.
13
+ */
8
14
  get priority() {
9
15
  return this.metadata.priority;
10
16
  }
17
+ /**
18
+ * Class name with QueueWorker decorator.
19
+ */
11
20
  get className() {
12
21
  return this.metadata.className;
13
22
  }
14
- constructor(message, metadata, options) {
15
- this.message = message;
23
+ constructor(metadata, options) {
16
24
  this.metadata = metadata;
17
25
  this.options = options;
18
26
  }
19
27
  /**
20
28
  * Execute all processors in the worker. If you want to execute a each processor, use `getProcessors` method.
21
29
  */
22
- async execute() {
30
+ async execute(message) {
23
31
  const results = [];
24
32
  const processors = this.getProcessors();
25
33
  for (const processor of processors) {
26
- results.push(await processor.execute());
34
+ results.push(await processor.execute(message));
27
35
  }
28
36
  return results;
29
37
  }
@@ -31,39 +39,59 @@ class Worker {
31
39
  * Get all processors in the worker. Use this method to execute manually when you want to execute only on specific conditions using metadata such as class name or processor name.
32
40
  */
33
41
  getProcessors() {
34
- return this.metadata.processors.map((processor) => new Processor(this.message, processor, this.options));
42
+ return this.metadata.processors.map((processor) => new Processor(processor, this.options));
35
43
  }
36
44
  }
37
45
  exports.Worker = Worker;
38
46
  class Processor {
47
+ /**
48
+ * Processor name. This is `#{worker.className}.${processor.methodName}`.
49
+ */
39
50
  get name() {
40
- return this.metadata.processorName;
51
+ return `${this.workerClassName}.${this.methodName}`;
41
52
  }
53
+ /**
54
+ * Processor priority. The lower the number, the higher the priority.
55
+ */
42
56
  get priority() {
43
57
  return this.metadata.priority;
44
58
  }
59
+ /**
60
+ * The name of the processor that has this worker.
61
+ */
45
62
  get workerName() {
46
63
  return this.metadata.workerName;
47
64
  }
48
- constructor(message, metadata, options) {
49
- this.message = message;
65
+ /**
66
+ * The class name of the worker that has this processor.
67
+ */
68
+ get workerClassName() {
69
+ return this.metadata.workerClassName;
70
+ }
71
+ /**
72
+ * The method name of the processor with QueueWorkerProcess.
73
+ */
74
+ get methodName() {
75
+ return this.metadata.methodName;
76
+ }
77
+ constructor(metadata, options) {
50
78
  this.metadata = metadata;
51
79
  this.options = options;
52
80
  }
53
81
  /**
54
82
  * Execute the processor.
55
83
  */
56
- async execute() {
84
+ async execute(message) {
57
85
  const maxRetryAttempts = this.options.maxRetryAttempts ?? 1;
58
86
  const resultBase = {
59
- data: this.message.data.data,
60
- processorName: this.metadata.processorName,
61
- raw: this.message.raw,
87
+ data: message.data.data,
88
+ processorName: this.name,
89
+ raw: message.raw,
62
90
  workerName: this.metadata.workerName,
63
91
  };
64
92
  for (let i = 0; i < maxRetryAttempts; i++) {
65
93
  try {
66
- await this.metadata.processor(this.message.data.data, this.message.raw);
94
+ await this.metadata.processor(message.data.data, message.raw);
67
95
  i = maxRetryAttempts;
68
96
  }
69
97
  catch (error) {
@@ -13,6 +13,10 @@ export declare class QueueWorkerService {
13
13
  execute<T = any>(meessage: QueueWorkerRawMessage<T>): Promise<QueueWorkerProcessResult<T>[]>;
14
14
  execute<T = any>(meessage: Message<T>): Promise<QueueWorkerProcessResult<T>[]>;
15
15
  execute<T = any>(meessage: QueueWorkerDecodedMessage<T>): Promise<QueueWorkerProcessResult<T>[]>;
16
+ /**
17
+ * Get all workers. If you want to get a specific worker, use `getWorkers` method.
18
+ */
19
+ getAllWorkers(): Worker<any>[];
16
20
  /**
17
21
  * Get all workers that match the worker name. Use this method to execute manually when you want to execute only on specific conditions using metadata such as class name or processor name.
18
22
  * If you want to execute all workers simply, use `execute` method.
@@ -22,7 +22,7 @@ var __classPrivateFieldSet = (this && this.__classPrivateFieldSet) || function (
22
22
  if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot write private member to an object whose class did not declare it");
23
23
  return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
24
24
  };
25
- var _QueueWorkerService_instances, _QueueWorkerService__allWorkers, _QueueWorkerService_allWorkers_get;
25
+ var _QueueWorkerService__allWorkers;
26
26
  Object.defineProperty(exports, "__esModule", { value: true });
27
27
  exports.QueueWorkerService = void 0;
28
28
  const common_1 = require("@nestjs/common");
@@ -32,7 +32,6 @@ const util_1 = require("./util");
32
32
  const worker_1 = require("./worker");
33
33
  let QueueWorkerService = class QueueWorkerService {
34
34
  constructor(options, explorerService) {
35
- _QueueWorkerService_instances.add(this);
36
35
  this.options = options;
37
36
  this.explorerService = explorerService;
38
37
  _QueueWorkerService__allWorkers.set(this, void 0);
@@ -50,10 +49,19 @@ let QueueWorkerService = class QueueWorkerService {
50
49
  }
51
50
  const results = [];
52
51
  for (const worker of workers) {
53
- results.push(...(await worker.execute()));
52
+ results.push(...(await worker.execute(decodedMessage)));
54
53
  }
55
54
  return results;
56
55
  }
56
+ /**
57
+ * Get all workers. If you want to get a specific worker, use `getWorkers` method.
58
+ */
59
+ getAllWorkers() {
60
+ if (!__classPrivateFieldGet(this, _QueueWorkerService__allWorkers, "f")) {
61
+ __classPrivateFieldSet(this, _QueueWorkerService__allWorkers, this.explorerService.explore().map((metadata) => new worker_1.Worker(metadata, this.options)), "f");
62
+ }
63
+ return __classPrivateFieldGet(this, _QueueWorkerService__allWorkers, "f");
64
+ }
57
65
  getWorkers(meessage) {
58
66
  const decodedMessage = (0, util_1.isDecodedMessage)(meessage)
59
67
  ? meessage
@@ -61,20 +69,11 @@ let QueueWorkerService = class QueueWorkerService {
61
69
  if (!decodedMessage.data.name) {
62
70
  return [];
63
71
  }
64
- return __classPrivateFieldGet(this, _QueueWorkerService_instances, "a", _QueueWorkerService_allWorkers_get)
65
- .filter((worker) => decodedMessage.data.name === worker.name)
66
- .map((metadata) => new worker_1.Worker(decodedMessage, metadata, this.options));
72
+ return this.getAllWorkers().filter((worker) => decodedMessage.data.name === worker.name);
67
73
  }
68
74
  };
69
75
  exports.QueueWorkerService = QueueWorkerService;
70
76
  _QueueWorkerService__allWorkers = new WeakMap();
71
- _QueueWorkerService_instances = new WeakSet();
72
- _QueueWorkerService_allWorkers_get = function _QueueWorkerService_allWorkers_get() {
73
- if (!__classPrivateFieldGet(this, _QueueWorkerService__allWorkers, "f")) {
74
- __classPrivateFieldSet(this, _QueueWorkerService__allWorkers, this.explorerService.explore(), "f");
75
- }
76
- return __classPrivateFieldGet(this, _QueueWorkerService__allWorkers, "f");
77
- };
78
77
  exports.QueueWorkerService = QueueWorkerService = __decorate([
79
78
  (0, common_1.Injectable)(),
80
79
  __param(0, (0, common_1.Inject)(constants_1.QUEUE_WORKER_MODULE_OPTIONS)),
@@ -64,8 +64,9 @@ let QueueWorkerExplorerService = class QueueWorkerExplorerService {
64
64
  metadata.push({
65
65
  priority: args.priority || 0,
66
66
  processor: methodRef.bind(instance),
67
- processorName: `${worker.className}.${methodName}`,
67
+ methodName,
68
68
  workerName: worker.name,
69
+ workerClassName: worker.className,
69
70
  });
70
71
  }
71
72
  }
@@ -43,7 +43,8 @@ export interface QueueWorkerMetadata {
43
43
  }
44
44
  export interface QueueWorkerProcessorMetadata extends QueueWorkerProcessDecoratorArgs {
45
45
  workerName: QueueWorkerName;
46
- processorName: string;
46
+ workerClassName: string;
47
+ methodName: string;
47
48
  processor: QueueWorkerProcessor;
48
49
  }
49
50
  export type QueueWorkerExtraConfig = {
@@ -1,31 +1,55 @@
1
1
  import { QueueWorkerDecodedMessage, QueueWorkerMetadata, QueueWorkerModuleOptions, QueueWorkerProcessorMetadata, QueueWorkerProcessResult } from "./interfaces";
2
2
  export declare class Worker<T> {
3
- private readonly message;
4
3
  private readonly metadata;
5
4
  private readonly options;
5
+ /**
6
+ * Worker name.
7
+ */
6
8
  get name(): string;
9
+ /**
10
+ * Worker priority. The lower the number, the higher the priority.
11
+ */
7
12
  get priority(): number;
13
+ /**
14
+ * Class name with QueueWorker decorator.
15
+ */
8
16
  get className(): string;
9
- constructor(message: QueueWorkerDecodedMessage<T>, metadata: QueueWorkerMetadata, options: QueueWorkerModuleOptions);
17
+ constructor(metadata: QueueWorkerMetadata, options: QueueWorkerModuleOptions);
10
18
  /**
11
19
  * Execute all processors in the worker. If you want to execute a each processor, use `getProcessors` method.
12
20
  */
13
- execute(): Promise<QueueWorkerProcessResult[]>;
21
+ execute(message: QueueWorkerDecodedMessage<T>): Promise<QueueWorkerProcessResult[]>;
14
22
  /**
15
23
  * Get all processors in the worker. Use this method to execute manually when you want to execute only on specific conditions using metadata such as class name or processor name.
16
24
  */
17
25
  getProcessors(): Processor<T>[];
18
26
  }
19
27
  export declare class Processor<T> {
20
- private readonly message;
21
28
  private readonly metadata;
22
29
  private readonly options;
30
+ /**
31
+ * Processor name. This is `#{worker.className}.${processor.methodName}`.
32
+ */
23
33
  get name(): string;
34
+ /**
35
+ * Processor priority. The lower the number, the higher the priority.
36
+ */
24
37
  get priority(): number;
38
+ /**
39
+ * The name of the processor that has this worker.
40
+ */
25
41
  get workerName(): string;
26
- constructor(message: QueueWorkerDecodedMessage<T>, metadata: QueueWorkerProcessorMetadata, options: QueueWorkerModuleOptions);
42
+ /**
43
+ * The class name of the worker that has this processor.
44
+ */
45
+ get workerClassName(): string;
46
+ /**
47
+ * The method name of the processor with QueueWorkerProcess.
48
+ */
49
+ get methodName(): string;
50
+ constructor(metadata: QueueWorkerProcessorMetadata, options: QueueWorkerModuleOptions);
27
51
  /**
28
52
  * Execute the processor.
29
53
  */
30
- execute(): Promise<QueueWorkerProcessResult<T>>;
54
+ execute(message: QueueWorkerDecodedMessage<T>): Promise<QueueWorkerProcessResult<T>>;
31
55
  }
@@ -1,26 +1,34 @@
1
1
  export class Worker {
2
+ /**
3
+ * Worker name.
4
+ */
2
5
  get name() {
3
6
  return this.metadata.name;
4
7
  }
8
+ /**
9
+ * Worker priority. The lower the number, the higher the priority.
10
+ */
5
11
  get priority() {
6
12
  return this.metadata.priority;
7
13
  }
14
+ /**
15
+ * Class name with QueueWorker decorator.
16
+ */
8
17
  get className() {
9
18
  return this.metadata.className;
10
19
  }
11
- constructor(message, metadata, options) {
12
- this.message = message;
20
+ constructor(metadata, options) {
13
21
  this.metadata = metadata;
14
22
  this.options = options;
15
23
  }
16
24
  /**
17
25
  * Execute all processors in the worker. If you want to execute a each processor, use `getProcessors` method.
18
26
  */
19
- async execute() {
27
+ async execute(message) {
20
28
  const results = [];
21
29
  const processors = this.getProcessors();
22
30
  for (const processor of processors) {
23
- results.push(await processor.execute());
31
+ results.push(await processor.execute(message));
24
32
  }
25
33
  return results;
26
34
  }
@@ -28,38 +36,58 @@ export class Worker {
28
36
  * Get all processors in the worker. Use this method to execute manually when you want to execute only on specific conditions using metadata such as class name or processor name.
29
37
  */
30
38
  getProcessors() {
31
- return this.metadata.processors.map((processor) => new Processor(this.message, processor, this.options));
39
+ return this.metadata.processors.map((processor) => new Processor(processor, this.options));
32
40
  }
33
41
  }
34
42
  export class Processor {
43
+ /**
44
+ * Processor name. This is `#{worker.className}.${processor.methodName}`.
45
+ */
35
46
  get name() {
36
- return this.metadata.processorName;
47
+ return `${this.workerClassName}.${this.methodName}`;
37
48
  }
49
+ /**
50
+ * Processor priority. The lower the number, the higher the priority.
51
+ */
38
52
  get priority() {
39
53
  return this.metadata.priority;
40
54
  }
55
+ /**
56
+ * The name of the processor that has this worker.
57
+ */
41
58
  get workerName() {
42
59
  return this.metadata.workerName;
43
60
  }
44
- constructor(message, metadata, options) {
45
- this.message = message;
61
+ /**
62
+ * The class name of the worker that has this processor.
63
+ */
64
+ get workerClassName() {
65
+ return this.metadata.workerClassName;
66
+ }
67
+ /**
68
+ * The method name of the processor with QueueWorkerProcess.
69
+ */
70
+ get methodName() {
71
+ return this.metadata.methodName;
72
+ }
73
+ constructor(metadata, options) {
46
74
  this.metadata = metadata;
47
75
  this.options = options;
48
76
  }
49
77
  /**
50
78
  * Execute the processor.
51
79
  */
52
- async execute() {
80
+ async execute(message) {
53
81
  const maxRetryAttempts = this.options.maxRetryAttempts ?? 1;
54
82
  const resultBase = {
55
- data: this.message.data.data,
56
- processorName: this.metadata.processorName,
57
- raw: this.message.raw,
83
+ data: message.data.data,
84
+ processorName: this.name,
85
+ raw: message.raw,
58
86
  workerName: this.metadata.workerName,
59
87
  };
60
88
  for (let i = 0; i < maxRetryAttempts; i++) {
61
89
  try {
62
- await this.metadata.processor(this.message.data.data, this.message.raw);
90
+ await this.metadata.processor(message.data.data, message.raw);
63
91
  i = maxRetryAttempts;
64
92
  }
65
93
  catch (error) {
@@ -13,6 +13,10 @@ export declare class QueueWorkerService {
13
13
  execute<T = any>(meessage: QueueWorkerRawMessage<T>): Promise<QueueWorkerProcessResult<T>[]>;
14
14
  execute<T = any>(meessage: Message<T>): Promise<QueueWorkerProcessResult<T>[]>;
15
15
  execute<T = any>(meessage: QueueWorkerDecodedMessage<T>): Promise<QueueWorkerProcessResult<T>[]>;
16
+ /**
17
+ * Get all workers. If you want to get a specific worker, use `getWorkers` method.
18
+ */
19
+ getAllWorkers(): Worker<any>[];
16
20
  /**
17
21
  * Get all workers that match the worker name. Use this method to execute manually when you want to execute only on specific conditions using metadata such as class name or processor name.
18
22
  * If you want to execute all workers simply, use `execute` method.
@@ -21,7 +21,7 @@ var __classPrivateFieldSet = (this && this.__classPrivateFieldSet) || function (
21
21
  if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot write private member to an object whose class did not declare it");
22
22
  return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
23
23
  };
24
- var _QueueWorkerService_instances, _QueueWorkerService__allWorkers, _QueueWorkerService_allWorkers_get;
24
+ var _QueueWorkerService__allWorkers;
25
25
  import { BadRequestException, Inject, Injectable } from "@nestjs/common";
26
26
  import { ERROR_QUEUE_WORKER_NAME_NOT_FOUND, ERROR_WORKER_NOT_FOUND, QUEUE_WORKER_MODULE_OPTIONS } from "./constants";
27
27
  import { QueueWorkerExplorerService } from "./explorer.service";
@@ -29,7 +29,6 @@ import { decodeMessage, isDecodedMessage } from "./util";
29
29
  import { Worker } from "./worker";
30
30
  let QueueWorkerService = class QueueWorkerService {
31
31
  constructor(options, explorerService) {
32
- _QueueWorkerService_instances.add(this);
33
32
  this.options = options;
34
33
  this.explorerService = explorerService;
35
34
  _QueueWorkerService__allWorkers.set(this, void 0);
@@ -47,10 +46,19 @@ let QueueWorkerService = class QueueWorkerService {
47
46
  }
48
47
  const results = [];
49
48
  for (const worker of workers) {
50
- results.push(...(await worker.execute()));
49
+ results.push(...(await worker.execute(decodedMessage)));
51
50
  }
52
51
  return results;
53
52
  }
53
+ /**
54
+ * Get all workers. If you want to get a specific worker, use `getWorkers` method.
55
+ */
56
+ getAllWorkers() {
57
+ if (!__classPrivateFieldGet(this, _QueueWorkerService__allWorkers, "f")) {
58
+ __classPrivateFieldSet(this, _QueueWorkerService__allWorkers, this.explorerService.explore().map((metadata) => new Worker(metadata, this.options)), "f");
59
+ }
60
+ return __classPrivateFieldGet(this, _QueueWorkerService__allWorkers, "f");
61
+ }
54
62
  getWorkers(meessage) {
55
63
  const decodedMessage = isDecodedMessage(meessage)
56
64
  ? meessage
@@ -58,19 +66,10 @@ let QueueWorkerService = class QueueWorkerService {
58
66
  if (!decodedMessage.data.name) {
59
67
  return [];
60
68
  }
61
- return __classPrivateFieldGet(this, _QueueWorkerService_instances, "a", _QueueWorkerService_allWorkers_get)
62
- .filter((worker) => decodedMessage.data.name === worker.name)
63
- .map((metadata) => new Worker(decodedMessage, metadata, this.options));
69
+ return this.getAllWorkers().filter((worker) => decodedMessage.data.name === worker.name);
64
70
  }
65
71
  };
66
72
  _QueueWorkerService__allWorkers = new WeakMap();
67
- _QueueWorkerService_instances = new WeakSet();
68
- _QueueWorkerService_allWorkers_get = function _QueueWorkerService_allWorkers_get() {
69
- if (!__classPrivateFieldGet(this, _QueueWorkerService__allWorkers, "f")) {
70
- __classPrivateFieldSet(this, _QueueWorkerService__allWorkers, this.explorerService.explore(), "f");
71
- }
72
- return __classPrivateFieldGet(this, _QueueWorkerService__allWorkers, "f");
73
- };
74
73
  QueueWorkerService = __decorate([
75
74
  Injectable(),
76
75
  __param(0, Inject(QUEUE_WORKER_MODULE_OPTIONS)),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@anchan828/nest-cloud-run-queue-worker",
3
- "version": "3.1.22",
3
+ "version": "3.2.0",
4
4
  "description": "> TODO: description",
5
5
  "homepage": "https://github.com/anchan828/nest-cloud-run-queue/tree/master/packages/worker#readme",
6
6
  "bugs": {
@@ -33,7 +33,7 @@
33
33
  "watch": "tsc -w"
34
34
  },
35
35
  "dependencies": {
36
- "@anchan828/nest-cloud-run-queue-common": "^3.1.22"
36
+ "@anchan828/nest-cloud-run-queue-common": "^3.2.0"
37
37
  },
38
38
  "devDependencies": {
39
39
  "@nestjs/common": "10.4.6",
@@ -60,5 +60,5 @@
60
60
  "default": "./dist/cjs/index.js"
61
61
  }
62
62
  },
63
- "gitHead": "1db10afa4047283bd701744232114140b07a2ab0"
63
+ "gitHead": "d265a08dc01c37adfbdda2926a90f69683c51797"
64
64
  }