@tolinax/ayoune-interfaces 2024.25.0 → 2024.27.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/IAddress.d.ts +14 -0
- package/interfaces/IAddress.js +2 -0
- package/interfaces/IaYOUneAdvertisement.d.ts +12 -0
- package/interfaces/IaYOUneAdvertisement.js +2 -0
- package/interfaces/IaYOUneAdvertisementCampaign.d.ts +11 -0
- package/interfaces/IaYOUneAdvertisementCampaign.js +2 -0
- package/interfaces/IaYOUneAdvertisementDisplay.d.ts +13 -0
- package/interfaces/IaYOUneAdvertisementDisplay.js +2 -0
- package/interfaces/IaYOUneAdvertisementDisplayGroup.d.ts +11 -0
- package/interfaces/IaYOUneAdvertisementDisplayGroup.js +2 -0
- package/interfaces/IaYOUneAdvertisementDisplayLocation.d.ts +12 -0
- package/interfaces/IaYOUneAdvertisementDisplayLocation.js +2 -0
- package/interfaces/IaYOUneAdvertisementGroup.d.ts +10 -0
- package/interfaces/IaYOUneAdvertisementGroup.js +2 -0
- package/interfaces/IaYOUneAdvertisementLocation.d.ts +12 -0
- package/interfaces/IaYOUneAdvertisementLocation.js +2 -0
- package/interfaces/index.d.ts +6 -0
- package/interfaces/index.js +6 -0
- package/package.json +1 -1
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export interface IAddress {
|
|
2
|
+
company: string;
|
|
3
|
+
salutation: string;
|
|
4
|
+
firstName: string;
|
|
5
|
+
lastName: string;
|
|
6
|
+
street: string;
|
|
7
|
+
houseNumber: string;
|
|
8
|
+
addressAdditional?: string;
|
|
9
|
+
zip: string;
|
|
10
|
+
city: string;
|
|
11
|
+
country: string;
|
|
12
|
+
postNumber: string;
|
|
13
|
+
packstationNumber: string;
|
|
14
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { IDefaultFields } from "./IDefaultFields";
|
|
2
|
+
export interface IaYOUneAdvertisement extends IDefaultFields {
|
|
3
|
+
_customerID?: ObjectId;
|
|
4
|
+
name?: string;
|
|
5
|
+
note?: string;
|
|
6
|
+
mediaType?: string[];
|
|
7
|
+
_mediaFile?: ObjectId;
|
|
8
|
+
locale?: string;
|
|
9
|
+
regions?: string[];
|
|
10
|
+
from?: Date;
|
|
11
|
+
to?: Date;
|
|
12
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { IDefaultFields } from "./IDefaultFields";
|
|
2
|
+
export interface IaYOUneAdvertisementCampaign extends IDefaultFields {
|
|
3
|
+
_customerID?: ObjectId;
|
|
4
|
+
name?: string;
|
|
5
|
+
note?: string;
|
|
6
|
+
mediaTypes?: string[];
|
|
7
|
+
locale?: string;
|
|
8
|
+
regions?: string[];
|
|
9
|
+
from?: Date;
|
|
10
|
+
to?: Date;
|
|
11
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { IDefaultFields } from "./IDefaultFields";
|
|
2
|
+
export interface IaYOUneAdvertisementDisplay extends IDefaultFields {
|
|
3
|
+
_customerID?: ObjectId;
|
|
4
|
+
serial?: string;
|
|
5
|
+
name?: string;
|
|
6
|
+
note?: string;
|
|
7
|
+
_location?: ObjectId;
|
|
8
|
+
prioritizeOwnAds?: boolean;
|
|
9
|
+
ratio?: number;
|
|
10
|
+
mediaTypes?: string[];
|
|
11
|
+
locale?: string;
|
|
12
|
+
outdoor?: boolean;
|
|
13
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { IDefaultFields } from "./IDefaultFields";
|
|
2
|
+
export interface IaYOUneAdvertisementDisplayGroup extends IDefaultFields {
|
|
3
|
+
_customerID?: ObjectId;
|
|
4
|
+
name?: string;
|
|
5
|
+
note?: string;
|
|
6
|
+
_location?: ObjectId;
|
|
7
|
+
prioritizeOwnAds?: boolean;
|
|
8
|
+
ratio?: number;
|
|
9
|
+
mediaTypes?: string[];
|
|
10
|
+
_displays: ObjectId[];
|
|
11
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { IDefaultFields } from "./IDefaultFields";
|
|
2
|
+
import { IAddress } from "./IAddress";
|
|
3
|
+
export interface IaYOUneAdvertisementDisplayLocation extends IDefaultFields {
|
|
4
|
+
_customerID?: ObjectId;
|
|
5
|
+
name?: string;
|
|
6
|
+
note?: string;
|
|
7
|
+
address?: IAddress;
|
|
8
|
+
prioritizeOwnAds?: boolean;
|
|
9
|
+
ratio?: number;
|
|
10
|
+
mediaTypes?: string[];
|
|
11
|
+
locale?: string;
|
|
12
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { IDefaultFields } from "./IDefaultFields";
|
|
2
|
+
import { IAddress } from "./IAddress";
|
|
3
|
+
export interface IaYOUneAdvertisementLocation extends IDefaultFields {
|
|
4
|
+
_customerID?: ObjectId;
|
|
5
|
+
name?: string;
|
|
6
|
+
note?: string;
|
|
7
|
+
address?: IAddress;
|
|
8
|
+
prioritizeOwnAds?: boolean;
|
|
9
|
+
ratio?: number;
|
|
10
|
+
mediaTypes?: string[];
|
|
11
|
+
locale?: string;
|
|
12
|
+
}
|
package/interfaces/index.d.ts
CHANGED
|
@@ -630,3 +630,9 @@ export * from "./IPrometheusConfig";
|
|
|
630
630
|
export * from "./ICostBucketResult";
|
|
631
631
|
export * from "./IPortfolio";
|
|
632
632
|
export * from "./IReference";
|
|
633
|
+
export * from "./IaYOUneAdvertisement";
|
|
634
|
+
export * from "./IaYOUneAdvertisementCampaign";
|
|
635
|
+
export * from "./IaYOUneAdvertisementGroup";
|
|
636
|
+
export * from "./IaYOUneAdvertisementDisplay";
|
|
637
|
+
export * from "./IaYOUneAdvertisementDisplayLocation";
|
|
638
|
+
export * from "./IaYOUneAdvertisementDisplayGroup";
|
package/interfaces/index.js
CHANGED
|
@@ -646,3 +646,9 @@ __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("./IaYOUneAdvertisement"), exports);
|
|
650
|
+
__exportStar(require("./IaYOUneAdvertisementCampaign"), exports);
|
|
651
|
+
__exportStar(require("./IaYOUneAdvertisementGroup"), exports);
|
|
652
|
+
__exportStar(require("./IaYOUneAdvertisementDisplay"), exports);
|
|
653
|
+
__exportStar(require("./IaYOUneAdvertisementDisplayLocation"), exports);
|
|
654
|
+
__exportStar(require("./IaYOUneAdvertisementDisplayGroup"), exports);
|