gemcap-be-common 1.5.121 → 1.5.122

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.
@@ -11,6 +11,7 @@ export declare const EVENT_KEYS: {
11
11
  readonly MEMO_FILES_PREPARED: "ai.memo.files.prepared";
12
12
  readonly MEMO_ANALYSIS_COMPLETED: "ai.memo.generation.completed";
13
13
  readonly MEMO_ANALYSIS_FAILED: "ai.memo.generation.failed";
14
+ readonly JOB_CANCEL_REQUESTED: "ai.job.cancel.requested";
14
15
  };
15
16
  /**
16
17
  * ========= AUTH DOMAIN EVENTS =========
@@ -14,6 +14,7 @@ exports.EVENT_KEYS = {
14
14
  MEMO_FILES_PREPARED: 'ai.memo.files.prepared',
15
15
  MEMO_ANALYSIS_COMPLETED: 'ai.memo.generation.completed',
16
16
  MEMO_ANALYSIS_FAILED: 'ai.memo.generation.failed',
17
+ JOB_CANCEL_REQUESTED: 'ai.job.cancel.requested',
17
18
  },
18
19
  /**
19
20
  * ========= AUTH DOMAIN EVENTS =========
@@ -11,6 +11,7 @@ export const EVENT_KEYS = {
11
11
  MEMO_FILES_PREPARED: 'ai.memo.files.prepared',
12
12
  MEMO_ANALYSIS_COMPLETED: 'ai.memo.generation.completed',
13
13
  MEMO_ANALYSIS_FAILED: 'ai.memo.generation.failed',
14
+ JOB_CANCEL_REQUESTED: 'ai.job.cancel.requested',
14
15
  },
15
16
 
16
17
  /**
@@ -15,6 +15,9 @@ export declare const QUEUES: {
15
15
  readonly memo: {
16
16
  readonly generation: "ai.memo.generation";
17
17
  };
18
+ readonly job: {
19
+ readonly cancel: "ai.job.cancel.requested";
20
+ };
18
21
  };
19
22
  readonly auth: {
20
23
  readonly password: {
@@ -18,6 +18,9 @@ exports.QUEUES = {
18
18
  memo: {
19
19
  generation: 'ai.memo.generation',
20
20
  },
21
+ job: {
22
+ cancel: 'ai.job.cancel.requested',
23
+ }
21
24
  },
22
25
  auth: {
23
26
  password: {
@@ -15,6 +15,9 @@ export const QUEUES = {
15
15
  memo: {
16
16
  generation: 'ai.memo.generation',
17
17
  },
18
+ job: {
19
+ cancel: 'ai.job.cancel.requested',
20
+ }
18
21
  },
19
22
  auth: {
20
23
  password: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gemcap-be-common",
3
- "version": "1.5.121",
3
+ "version": "1.5.122",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {