@tolinax/ayoune-interfaces 2024.22.1 → 2024.23.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/interfaces/IFaq.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { IDefaultFields } from "./IDefaultFields";
|
|
2
|
+
import { IaYOUneMeta } from "./IaYOUneMeta";
|
|
2
3
|
export interface IFaqProduct {
|
|
3
4
|
product: ObjectId;
|
|
4
5
|
name?: string;
|
|
@@ -43,4 +44,5 @@ export interface IFaq extends IDefaultFields {
|
|
|
43
44
|
tags?: any[];
|
|
44
45
|
tts?: any;
|
|
45
46
|
category?: ObjectId;
|
|
47
|
+
meta?: IaYOUneMeta;
|
|
46
48
|
}
|
package/interfaces/IForm.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { IDefaultFields } from "./IDefaultFields";
|
|
2
|
+
import { IaYOUneMeta } from "./IaYOUneMeta";
|
|
2
3
|
interface PostAction {
|
|
3
4
|
typ?: string;
|
|
4
5
|
value?: string;
|
|
@@ -115,5 +116,6 @@ export interface IForm extends IDefaultFields {
|
|
|
115
116
|
fieldAppearance?: string;
|
|
116
117
|
viewCount?: number;
|
|
117
118
|
notificationUsers?: NotificationUser[];
|
|
119
|
+
meta?: IaYOUneMeta;
|
|
118
120
|
}
|
|
119
121
|
export {};
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { IDefaultFields } from "./IDefaultFields";
|
|
2
2
|
import { ITTS } from "./ITTS";
|
|
3
|
+
import { IaYOUneMeta } from "./IaYOUneMeta";
|
|
3
4
|
export interface IGlossary extends IDefaultFields {
|
|
4
5
|
_customerID: ObjectId;
|
|
5
6
|
_clientID?: ObjectId[];
|
|
@@ -17,5 +18,6 @@ export interface IGlossary extends IDefaultFields {
|
|
|
17
18
|
imageId?: ObjectId;
|
|
18
19
|
imageName?: string;
|
|
19
20
|
imageUrl?: string;
|
|
20
|
-
tts
|
|
21
|
+
tts?: ITTS;
|
|
22
|
+
meta?: IaYOUneMeta;
|
|
21
23
|
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { IDefaultFields } from "./IDefaultFields";
|
|
2
|
+
import { ITTS } from "./ITTS";
|
|
3
|
+
import { IaYOUneMeta } from "./IaYOUneMeta";
|
|
4
|
+
export interface IPortfolio extends IDefaultFields {
|
|
5
|
+
_customerID: ObjectId;
|
|
6
|
+
_consumerID?: ObjectId;
|
|
7
|
+
_clientID?: ObjectId[];
|
|
8
|
+
_subID?: ObjectId[];
|
|
9
|
+
_publication: ObjectId;
|
|
10
|
+
_project: ObjectId;
|
|
11
|
+
published: boolean;
|
|
12
|
+
name?: string;
|
|
13
|
+
description?: string;
|
|
14
|
+
short_description?: string;
|
|
15
|
+
lang: string;
|
|
16
|
+
videoId?: ObjectId;
|
|
17
|
+
videoName?: string;
|
|
18
|
+
videoUrl?: string;
|
|
19
|
+
imageId?: ObjectId;
|
|
20
|
+
imageName?: string;
|
|
21
|
+
imageUrl?: string;
|
|
22
|
+
tts?: ITTS;
|
|
23
|
+
meta?: IaYOUneMeta;
|
|
24
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { IDefaultFields } from "./IDefaultFields";
|
|
2
|
+
import { ITTS } from "./ITTS";
|
|
3
|
+
import { IaYOUneMeta } from "./IaYOUneMeta";
|
|
4
|
+
export interface IReference extends IDefaultFields {
|
|
5
|
+
_customerID: ObjectId;
|
|
6
|
+
_consumerID?: ObjectId;
|
|
7
|
+
_clientID?: ObjectId[];
|
|
8
|
+
_subID?: ObjectId[];
|
|
9
|
+
_publication: ObjectId;
|
|
10
|
+
_project: ObjectId;
|
|
11
|
+
published: boolean;
|
|
12
|
+
name?: string;
|
|
13
|
+
description?: string;
|
|
14
|
+
short_description?: string;
|
|
15
|
+
lang: string;
|
|
16
|
+
videoId?: ObjectId;
|
|
17
|
+
videoName?: string;
|
|
18
|
+
videoUrl?: string;
|
|
19
|
+
imageId?: ObjectId;
|
|
20
|
+
imageName?: string;
|
|
21
|
+
imageUrl?: string;
|
|
22
|
+
tts?: ITTS;
|
|
23
|
+
meta?: IaYOUneMeta;
|
|
24
|
+
}
|