@adobe/spacecat-shared-data-access 1.48.2 → 1.49.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.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ # [@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)
2
+
3
+
4
+ ### Features
5
+
6
+ * Support cancelling / stopping a running job ([#410](https://github.com/adobe/spacecat-shared/issues/410)) ([68fdee4](https://github.com/adobe/spacecat-shared/commit/68fdee4db65fe87c75b925eda804ac8cb97c02af))
7
+
8
+ # [@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)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * update deps ([#408](https://github.com/adobe/spacecat-shared/issues/408)) ([b1f8283](https://github.com/adobe/spacecat-shared/commit/b1f8283f658e22a69d69f4379de306cfd73133d1))
14
+
1
15
  # [@adobe/spacecat-shared-data-access-v1.48.2](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v1.48.1...@adobe/spacecat-shared-data-access-v1.48.2) (2024-10-19)
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.2",
3
+ "version": "1.49.0",
4
4
  "description": "Shared modules of the Spacecat Services - Data Access",
5
5
  "type": "module",
6
6
  "engines": {
@@ -33,8 +33,8 @@
33
33
  "access": "public"
34
34
  },
35
35
  "dependencies": {
36
- "@adobe/spacecat-shared-dynamo": "1.2.5",
37
- "@adobe/spacecat-shared-utils": "1.2.0",
36
+ "@adobe/spacecat-shared-dynamo": "1.3.42",
37
+ "@adobe/spacecat-shared-utils": "1.20.8",
38
38
  "@aws-sdk/client-dynamodb": "3.675.0",
39
39
  "@aws-sdk/lib-dynamodb": "3.675.0",
40
40
  "@types/joi": "17.2.3",
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
  /**