@adobe/spacecat-shared-data-access 1.61.3 → 1.61.4
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 +7 -0
- package/package.json +3 -3
- package/src/v2/models/audit/index.d.ts +1 -1
- package/src/v2/models/experiment/index.d.ts +4 -4
- package/src/v2/models/import-job/index.d.ts +3 -3
- package/src/v2/models/latest-audit/index.d.ts +1 -1
- package/src/v2/models/site-top-page/index.d.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
# [@adobe/spacecat-shared-data-access-v1.61.4](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v1.61.3...@adobe/spacecat-shared-data-access-v1.61.4) (2024-12-30)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* types & deps ([#510](https://github.com/adobe/spacecat-shared/issues/510)) ([d162c1d](https://github.com/adobe/spacecat-shared/commit/d162c1d75a2052fc07da844923762e9397016b90))
|
|
7
|
+
|
|
1
8
|
# [@adobe/spacecat-shared-data-access-v1.61.3](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v1.61.2...@adobe/spacecat-shared-data-access-v1.61.3) (2024-12-28)
|
|
2
9
|
|
|
3
10
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adobe/spacecat-shared-data-access",
|
|
3
|
-
"version": "1.61.
|
|
3
|
+
"version": "1.61.4",
|
|
4
4
|
"description": "Shared modules of the Spacecat Services - Data Access",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"engines": {
|
|
@@ -34,8 +34,8 @@
|
|
|
34
34
|
"access": "public"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@adobe/spacecat-shared-dynamo": "1.
|
|
38
|
-
"@adobe/spacecat-shared-utils": "1.
|
|
37
|
+
"@adobe/spacecat-shared-dynamo": "1.5.0",
|
|
38
|
+
"@adobe/spacecat-shared-utils": "1.25.0",
|
|
39
39
|
"@aws-sdk/client-dynamodb": "3.716.0",
|
|
40
40
|
"@aws-sdk/lib-dynamodb": "3.716.0",
|
|
41
41
|
"@types/joi": "17.2.3",
|
|
@@ -15,23 +15,23 @@ import type { BaseCollection, BaseModel, Site } from '../index';
|
|
|
15
15
|
export interface Experiment extends BaseModel {
|
|
16
16
|
getConversionEventName(): string;
|
|
17
17
|
getConversionEventValue(): string;
|
|
18
|
-
getEndDate():
|
|
18
|
+
getEndDate(): string;
|
|
19
19
|
getExpId(): string;
|
|
20
20
|
getName(): string;
|
|
21
21
|
getSite(): Promise<Site>;
|
|
22
22
|
getSiteId(): string;
|
|
23
|
-
getStartDate():
|
|
23
|
+
getStartDate(): string;
|
|
24
24
|
getStatus(): string;
|
|
25
25
|
getType(): string;
|
|
26
26
|
getUrl(): string;
|
|
27
27
|
getVariants(): object;
|
|
28
28
|
setConversionEventName(conversionEventName: string): Experiment;
|
|
29
29
|
setConversionEventValue(conversionEventValue: string): Experiment;
|
|
30
|
-
setEndDate(endDate:
|
|
30
|
+
setEndDate(endDate: string): Experiment;
|
|
31
31
|
setExpId(expId: string): Experiment;
|
|
32
32
|
setName(name: string): Experiment;
|
|
33
33
|
setSiteId(siteId: string): Experiment;
|
|
34
|
-
setStartDate(startDate:
|
|
34
|
+
setStartDate(startDate: string): Experiment;
|
|
35
35
|
setStatus(status: string): Experiment;
|
|
36
36
|
setType(type: string): Experiment;
|
|
37
37
|
setUrl(url: string): Experiment;
|
|
@@ -16,7 +16,7 @@ import type { ImportUrl } from '../import-url';
|
|
|
16
16
|
export interface ImportJob extends BaseModel {
|
|
17
17
|
getBaseURL(): string,
|
|
18
18
|
getDuration(): number,
|
|
19
|
-
getEndedAt():
|
|
19
|
+
getEndedAt(): string,
|
|
20
20
|
getFailedCount(): number,
|
|
21
21
|
getHasCustomHeaders(): boolean,
|
|
22
22
|
getHasCustomImportJs(): boolean,
|
|
@@ -27,13 +27,13 @@ export interface ImportJob extends BaseModel {
|
|
|
27
27
|
getInitiatedBy(): string,
|
|
28
28
|
getOptions(): string,
|
|
29
29
|
getRedirectCount(): number,
|
|
30
|
-
getStartedAt():
|
|
30
|
+
getStartedAt(): string,
|
|
31
31
|
getStatus(): string,
|
|
32
32
|
getSuccessCount(): number,
|
|
33
33
|
getUrlCount(): number,
|
|
34
34
|
setBaseURL(baseURL: string): void,
|
|
35
35
|
setDuration(duration: number): void,
|
|
36
|
-
setEndedAt(endTime:
|
|
36
|
+
setEndedAt(endTime: string): void,
|
|
37
37
|
setFailedCount(failedCount: number): void,
|
|
38
38
|
setHasCustomHeaders(hasCustomHeaders: boolean): void,
|
|
39
39
|
setHasCustomImportJs(hasCustomImportJs: boolean): void,
|
|
@@ -22,7 +22,7 @@ export interface SiteTopPage extends BaseModel {
|
|
|
22
22
|
getTraffic(): number;
|
|
23
23
|
getUrl(): string;
|
|
24
24
|
setGeo(geo: string): SiteTopPage;
|
|
25
|
-
setImportedAt(importedAt:
|
|
25
|
+
setImportedAt(importedAt: string): SiteTopPage;
|
|
26
26
|
setSiteId(siteId: string): SiteTopPage;
|
|
27
27
|
setSource(source: string): SiteTopPage;
|
|
28
28
|
setTopKeyword(topKeyword: string): SiteTopPage;
|