@alba-cars/common-modules 2.10.4 → 2.10.6
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.
|
@@ -1,4 +1,8 @@
|
|
|
1
1
|
import { DateFilter, TypedFilter } from "../../../../global/utilities";
|
|
2
|
+
declare class BlogFaqItem {
|
|
3
|
+
question: string;
|
|
4
|
+
answer: string;
|
|
5
|
+
}
|
|
2
6
|
export declare class BlogFilter extends TypedFilter {
|
|
3
7
|
title?: string | string[];
|
|
4
8
|
slug?: string | string[];
|
|
@@ -25,6 +29,8 @@ export declare class BlogGetDTO {
|
|
|
25
29
|
slug: string;
|
|
26
30
|
status: string;
|
|
27
31
|
createdById: string;
|
|
32
|
+
faq?: BlogFaqItem[];
|
|
33
|
+
audioUrl?: string;
|
|
28
34
|
filters?: BlogFilter;
|
|
29
35
|
options?: BlogGetDTOOptions;
|
|
30
36
|
static fromEntity(entity: any): BlogGetDTO;
|
|
@@ -43,6 +49,8 @@ export declare class BlogCreateDTO {
|
|
|
43
49
|
metaKeywords: string;
|
|
44
50
|
slug: string;
|
|
45
51
|
status: string;
|
|
52
|
+
faq?: BlogFaqItem[];
|
|
53
|
+
audioUrl?: string;
|
|
46
54
|
validate(): string[];
|
|
47
55
|
static fromPlain(plain: Record<string, unknown>): BlogCreateDTO;
|
|
48
56
|
}
|
|
@@ -57,6 +65,9 @@ export declare class BlogUpdateDTO {
|
|
|
57
65
|
metaKeywords?: string;
|
|
58
66
|
slug?: string;
|
|
59
67
|
status?: string;
|
|
68
|
+
faq?: BlogFaqItem[];
|
|
69
|
+
audioUrl?: string;
|
|
60
70
|
validate(): string[];
|
|
61
71
|
static fromPlain(plain: Record<string, unknown>): BlogUpdateDTO;
|
|
62
72
|
}
|
|
73
|
+
export {};
|