@tolinax/ayoune-interfaces 2024.27.3 → 2024.29.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/ICTA.d.ts
CHANGED
|
@@ -19,6 +19,7 @@ export interface ICTA extends IDefaultFields {
|
|
|
19
19
|
h3: string;
|
|
20
20
|
icon_before: string;
|
|
21
21
|
button_txt: string;
|
|
22
|
+
button_txt_mobile: string;
|
|
22
23
|
icon_after: string;
|
|
23
24
|
twitter_settings?: {
|
|
24
25
|
url?: string;
|
|
@@ -53,5 +54,4 @@ export interface ICTA extends IDefaultFields {
|
|
|
53
54
|
height: number;
|
|
54
55
|
show_border: number;
|
|
55
56
|
locale: string;
|
|
56
|
-
created: Date;
|
|
57
57
|
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { IDefaultFields } from "./IDefaultFields";
|
|
2
|
+
import { IaYOUneMeta } from "./IaYOUneMeta";
|
|
3
|
+
export interface ICustomerLogo extends IDefaultFields {
|
|
4
|
+
_customerID: ObjectId;
|
|
5
|
+
_consumerID?: ObjectId;
|
|
6
|
+
_clientID?: ObjectId[];
|
|
7
|
+
_subID?: ObjectId[];
|
|
8
|
+
_project: ObjectId;
|
|
9
|
+
published: boolean;
|
|
10
|
+
name?: string;
|
|
11
|
+
imageId?: ObjectId;
|
|
12
|
+
imageName?: string;
|
|
13
|
+
imageUrl?: string;
|
|
14
|
+
meta?: IaYOUneMeta;
|
|
15
|
+
}
|
package/interfaces/index.d.ts
CHANGED
|
@@ -630,6 +630,7 @@ export * from "./IPrometheusConfig";
|
|
|
630
630
|
export * from "./ICostBucketResult";
|
|
631
631
|
export * from "./IPortfolio";
|
|
632
632
|
export * from "./IReference";
|
|
633
|
+
export * from "./ICustomerLogo";
|
|
633
634
|
export * from "./IaYOUneAdvertisement";
|
|
634
635
|
export * from "./IaYOUneAdvertisementCampaign";
|
|
635
636
|
export * from "./IaYOUneAdvertisementGroup";
|
package/interfaces/index.js
CHANGED
|
@@ -646,6 +646,7 @@ __exportStar(require("./IPrometheusConfig"), exports);
|
|
|
646
646
|
__exportStar(require("./ICostBucketResult"), exports);
|
|
647
647
|
__exportStar(require("./IPortfolio"), exports);
|
|
648
648
|
__exportStar(require("./IReference"), exports);
|
|
649
|
+
__exportStar(require("./ICustomerLogo"), exports);
|
|
649
650
|
__exportStar(require("./IaYOUneAdvertisement"), exports);
|
|
650
651
|
__exportStar(require("./IaYOUneAdvertisementCampaign"), exports);
|
|
651
652
|
__exportStar(require("./IaYOUneAdvertisementGroup"), exports);
|