@adobe/spacecat-shared-data-access 2.68.1 → 2.69.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-v2.69.1](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v2.69.0...@adobe/spacecat-shared-data-access-v2.69.1) (2025-10-09)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* update expires in for scrapeJobs and scrapeUrls to match S3 ([#998](https://github.com/adobe/spacecat-shared/issues/998)) ([289312b](https://github.com/adobe/spacecat-shared/commit/289312bd4fbfe6c48a4c678d153472406f3a7d30))
|
|
7
|
+
|
|
8
|
+
# [@adobe/spacecat-shared-data-access-v2.69.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v2.68.1...@adobe/spacecat-shared-data-access-v2.69.0) (2025-10-08)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* add summarization audit type ([#987](https://github.com/adobe/spacecat-shared/issues/987)) ([a000227](https://github.com/adobe/spacecat-shared/commit/a000227898df9b08e74eb555fc5a32e6f11ce7fd))
|
|
14
|
+
|
|
1
15
|
# [@adobe/spacecat-shared-data-access-v2.68.1](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v2.68.0...@adobe/spacecat-shared-data-access-v2.68.1) (2025-10-07)
|
|
2
16
|
|
|
3
17
|
|
package/package.json
CHANGED
|
@@ -53,6 +53,7 @@ class Audit extends BaseModel {
|
|
|
53
53
|
SECURITY_CSP: 'security-csp',
|
|
54
54
|
SECURITY_VULNERABILITIES: 'security-vulnerabilities',
|
|
55
55
|
SECURITY_PERMISSIONS: 'security-permissions',
|
|
56
|
+
SECURITY_REDUNDANT: 'security-permissions-redundant',
|
|
56
57
|
PAID: 'paid',
|
|
57
58
|
HREFLANG: 'hreflang',
|
|
58
59
|
HEADINGS: 'headings',
|
|
@@ -61,6 +62,7 @@ class Audit extends BaseModel {
|
|
|
61
62
|
READABILITY: 'readability',
|
|
62
63
|
PRERENDER: 'prerender',
|
|
63
64
|
PRODUCT_METATAGS: 'product-metatags',
|
|
65
|
+
SUMMARIZATION: 'summarization',
|
|
64
66
|
};
|
|
65
67
|
|
|
66
68
|
static AUDIT_TYPE_PROPERTIES = {
|
|
@@ -209,8 +209,8 @@ class SchemaBuilder {
|
|
|
209
209
|
type: 'number',
|
|
210
210
|
required: true,
|
|
211
211
|
readOnly: true,
|
|
212
|
-
default: () => Date.now() + ttlInDays * 24 * 60 * 60
|
|
213
|
-
set: () => Date.now() + ttlInDays * 24 * 60 * 60
|
|
212
|
+
default: () => Math.floor(Date.now() / 1000) + ttlInDays * 24 * 60 * 60,
|
|
213
|
+
set: () => Math.floor(Date.now() / 1000) + ttlInDays * 24 * 60 * 60,
|
|
214
214
|
});
|
|
215
215
|
|
|
216
216
|
return this;
|