@adobe/spacecat-shared-data-access 1.48.3 → 1.49.1

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
@@ -1,3 +1,17 @@
1
+ # [@adobe/spacecat-shared-data-access-v1.49.1](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v1.49.0...@adobe/spacecat-shared-data-access-v1.49.1) (2024-10-26)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **deps:** update external fixes ([#413](https://github.com/adobe/spacecat-shared/issues/413)) ([ee2c715](https://github.com/adobe/spacecat-shared/commit/ee2c715e08034bea8fb88b4f7166d40b18e107c4))
7
+
8
+ # [@adobe/spacecat-shared-data-access-v1.49.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v1.48.3...@adobe/spacecat-shared-data-access-v1.49.0) (2024-10-23)
9
+
10
+
11
+ ### Features
12
+
13
+ * Support cancelling / stopping a running job ([#410](https://github.com/adobe/spacecat-shared/issues/410)) ([68fdee4](https://github.com/adobe/spacecat-shared/commit/68fdee4db65fe87c75b925eda804ac8cb97c02af))
14
+
1
15
  # [@adobe/spacecat-shared-data-access-v1.48.3](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v1.48.2...@adobe/spacecat-shared-data-access-v1.48.3) (2024-10-21)
2
16
 
3
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/spacecat-shared-data-access",
3
- "version": "1.48.3",
3
+ "version": "1.49.1",
4
4
  "description": "Shared modules of the Spacecat Services - Data Access",
5
5
  "type": "module",
6
6
  "engines": {
@@ -35,14 +35,14 @@
35
35
  "dependencies": {
36
36
  "@adobe/spacecat-shared-dynamo": "1.3.42",
37
37
  "@adobe/spacecat-shared-utils": "1.20.8",
38
- "@aws-sdk/client-dynamodb": "3.675.0",
39
- "@aws-sdk/lib-dynamodb": "3.675.0",
38
+ "@aws-sdk/client-dynamodb": "3.679.0",
39
+ "@aws-sdk/lib-dynamodb": "3.679.0",
40
40
  "@types/joi": "17.2.3",
41
41
  "joi": "17.13.3",
42
42
  "uuid": "10.0.0"
43
43
  },
44
44
  "devDependencies": {
45
- "chai": "5.1.1",
45
+ "chai": "5.1.2",
46
46
  "chai-as-promised": "8.0.0",
47
47
  "dynamo-db-local": "9.2.2",
48
48
  "sinon": "19.0.2",
package/src/index.d.ts CHANGED
@@ -15,6 +15,7 @@ export declare const ImportJobStatus: {
15
15
  readonly RUNNING: 'RUNNING';
16
16
  readonly COMPLETE: 'COMPLETE';
17
17
  readonly FAILED: 'FAILED';
18
+ readonly STOPPED: 'STOPPED';
18
19
  };
19
20
 
20
21
  // packages/spacecat-shared-data-access/src/models/importer/import-constants.js
@@ -26,6 +26,7 @@ export const ImportJobStatus = {
26
26
  RUNNING: 'RUNNING',
27
27
  COMPLETE: 'COMPLETE',
28
28
  FAILED: 'FAILED',
29
+ STOPPED: 'STOPPED',
29
30
  };
30
31
 
31
32
  /**