@adobe/spacecat-shared-data-access 2.15.0 → 2.15.2
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 +14 -0
- package/package.json +1 -1
- package/src/models/audit/audit.model.js +1 -1
- package/src/models/site/config.js +1 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# [@adobe/spacecat-shared-data-access-v2.15.2](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v2.15.1...@adobe/spacecat-shared-data-access-v2.15.2) (2025-04-17)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* add comments ([7b62a79](https://github.com/adobe/spacecat-shared/commit/7b62a7987d5f72f100840543870b74b9b783e721))
|
|
7
|
+
|
|
8
|
+
# [@adobe/spacecat-shared-data-access-v2.15.1](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v2.15.0...@adobe/spacecat-shared-data-access-v2.15.1) (2025-04-17)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* completion queue url for audit jobs ([#697](https://github.com/adobe/spacecat-shared/issues/697)) ([5987a4c](https://github.com/adobe/spacecat-shared/commit/5987a4cda6f682e12270e202d5bfd262b156d104))
|
|
14
|
+
|
|
1
15
|
# [@adobe/spacecat-shared-data-access-v2.15.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v2.14.1...@adobe/spacecat-shared-data-access-v2.15.0) (2025-04-17)
|
|
2
16
|
|
|
3
17
|
|
package/package.json
CHANGED
|
@@ -132,7 +132,7 @@ class Audit extends BaseModel {
|
|
|
132
132
|
processingType: stepResult.processingType || 'default',
|
|
133
133
|
skipMessage: false,
|
|
134
134
|
allowCache: true,
|
|
135
|
-
completionQueueUrl: stepResult.completionQueueUrl || context.env?.
|
|
135
|
+
completionQueueUrl: stepResult.completionQueueUrl || context.env?.AUDIT_JOBS_QUEUE_URL,
|
|
136
136
|
auditContext,
|
|
137
137
|
}),
|
|
138
138
|
},
|
|
@@ -108,7 +108,7 @@ export const configSchema = Joi.object({
|
|
|
108
108
|
overrideBaseURL: Joi.string().uri().optional(),
|
|
109
109
|
}).optional(),
|
|
110
110
|
contentAiConfig: Joi.object({
|
|
111
|
-
index: Joi.string().
|
|
111
|
+
index: Joi.string().optional(),
|
|
112
112
|
}).optional(),
|
|
113
113
|
handlers: Joi.object().pattern(Joi.string(), Joi.object({
|
|
114
114
|
mentions: Joi.object().pattern(Joi.string(), Joi.array().items(Joi.string())),
|
|
@@ -139,7 +139,6 @@ export const configSchema = Joi.object({
|
|
|
139
139
|
export const DEFAULT_CONFIG = {
|
|
140
140
|
slack: {},
|
|
141
141
|
handlers: {},
|
|
142
|
-
contentAiConfig: {},
|
|
143
142
|
};
|
|
144
143
|
|
|
145
144
|
// Function to validate incoming configuration
|