@tolinax/ayoune-interfaces 2024.84.3 → 2024.86.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/IAffClick.d.ts +1 -0
- package/interfaces/IAffView.d.ts +1 -0
- package/interfaces/ICTAClick.d.ts +1 -0
- package/interfaces/ICTAView.d.ts +1 -0
- package/interfaces/ICloudTagView.d.ts +1 -0
- package/interfaces/IDownloadView.d.ts +10 -0
- package/interfaces/IDownloadView.js +2 -0
- package/interfaces/IEventRegisterView.d.ts +10 -0
- package/interfaces/IEventRegisterView.js +2 -0
- package/interfaces/IFeedBackView.d.ts +1 -0
- package/interfaces/IFormView.d.ts +1 -0
- package/interfaces/IInterestBarClick.d.ts +1 -0
- package/interfaces/IInterestBarView.d.ts +1 -0
- package/interfaces/ILinkPortalClick.d.ts +1 -0
- package/interfaces/ILinkPortalView.d.ts +1 -0
- package/interfaces/IMailClick.d.ts +1 -0
- package/interfaces/IPopupClick.d.ts +1 -0
- package/interfaces/IPopupView.d.ts +1 -0
- package/interfaces/IPushClick.d.ts +1 -0
- package/interfaces/IQuestionView.d.ts +1 -0
- package/interfaces/IShortLinkClick.d.ts +1 -0
- package/interfaces/IStoreView.d.ts +1 -0
- package/interfaces/IUsageLog.d.ts +1 -0
- package/interfaces/IView.d.ts +1 -0
- package/interfaces/index.d.ts +2 -0
- package/interfaces/index.js +2 -0
- package/package.json +1 -1
|
@@ -3,6 +3,7 @@ import { IaYOUneTrackingParams } from "./IaYOUneTrackingParams";
|
|
|
3
3
|
import { IGeoIPLocationTracking } from "./IGeoIPLocationTracking";
|
|
4
4
|
export interface IAffClick extends IaYOUneTrackingParams, IGeoIPLocationTracking, IDefaultFields {
|
|
5
5
|
_customerID: ObjectId;
|
|
6
|
+
_consumerID?: ObjectId;
|
|
6
7
|
_clientID?: ObjectId[];
|
|
7
8
|
_subID?: ObjectId[];
|
|
8
9
|
_affiliateID?: ObjectId;
|
package/interfaces/IAffView.d.ts
CHANGED
|
@@ -3,6 +3,7 @@ import { IaYOUneTrackingParams } from "./IaYOUneTrackingParams";
|
|
|
3
3
|
import { IGeoIPLocationTracking } from "./IGeoIPLocationTracking";
|
|
4
4
|
export interface IAffView extends IaYOUneTrackingParams, IGeoIPLocationTracking, IDefaultFields {
|
|
5
5
|
_customerID: ObjectId;
|
|
6
|
+
_consumerID?: ObjectId;
|
|
6
7
|
_clientID?: ObjectId[];
|
|
7
8
|
_subID?: ObjectId[];
|
|
8
9
|
_affiliateID?: ObjectId;
|
|
@@ -3,6 +3,7 @@ import { IaYOUneTrackingParams } from "./IaYOUneTrackingParams";
|
|
|
3
3
|
import { IGeoIPLocationTracking } from "./IGeoIPLocationTracking";
|
|
4
4
|
export interface ICTAClick extends IaYOUneTrackingParams, IGeoIPLocationTracking, IDefaultFields {
|
|
5
5
|
_customerID: ObjectId;
|
|
6
|
+
_consumerID?: ObjectId;
|
|
6
7
|
_clientID?: ObjectId[];
|
|
7
8
|
_subID?: ObjectId[];
|
|
8
9
|
type?: string;
|
package/interfaces/ICTAView.d.ts
CHANGED
|
@@ -3,6 +3,7 @@ import { IaYOUneTrackingParams } from "./IaYOUneTrackingParams";
|
|
|
3
3
|
import { IGeoIPLocationTracking } from "./IGeoIPLocationTracking";
|
|
4
4
|
export interface ICTAView extends IaYOUneTrackingParams, IGeoIPLocationTracking, IDefaultFields {
|
|
5
5
|
_customerID: ObjectId;
|
|
6
|
+
_consumerID?: ObjectId;
|
|
6
7
|
_clientID?: ObjectId[];
|
|
7
8
|
_subID?: ObjectId[];
|
|
8
9
|
type?: string;
|
|
@@ -3,6 +3,7 @@ import { IaYOUneTrackingParams } from "./IaYOUneTrackingParams";
|
|
|
3
3
|
import { IGeoIPLocationTracking } from "./IGeoIPLocationTracking";
|
|
4
4
|
export interface ICloudTagView extends IaYOUneTrackingParams, IGeoIPLocationTracking, IDefaultFields {
|
|
5
5
|
_customerID: ObjectId;
|
|
6
|
+
_consumerID?: ObjectId;
|
|
6
7
|
_clientID?: ObjectId[];
|
|
7
8
|
_subID?: ObjectId[];
|
|
8
9
|
type?: string;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { IDefaultFields } from "./IDefaultFields";
|
|
2
|
+
import { IaYOUneTrackingParams } from "./IaYOUneTrackingParams";
|
|
3
|
+
import { IGeoIPLocationTracking } from "./IGeoIPLocationTracking";
|
|
4
|
+
export interface IDownloadView extends IaYOUneTrackingParams, IGeoIPLocationTracking, IDefaultFields {
|
|
5
|
+
_customerID: ObjectId;
|
|
6
|
+
_consumerID?: ObjectId;
|
|
7
|
+
_download: ObjectId;
|
|
8
|
+
_clientID: ObjectId[];
|
|
9
|
+
_subID: ObjectId[];
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { IDefaultFields } from "./IDefaultFields";
|
|
2
|
+
import { IaYOUneTrackingParams } from "./IaYOUneTrackingParams";
|
|
3
|
+
import { IGeoIPLocationTracking } from "./IGeoIPLocationTracking";
|
|
4
|
+
export interface IEventRegisterView extends IaYOUneTrackingParams, IGeoIPLocationTracking, IDefaultFields {
|
|
5
|
+
_customerID: ObjectId;
|
|
6
|
+
_consumerID?: ObjectId;
|
|
7
|
+
_event: ObjectId;
|
|
8
|
+
_clientID: ObjectId[];
|
|
9
|
+
_subID: ObjectId[];
|
|
10
|
+
}
|
|
@@ -3,6 +3,7 @@ import { IaYOUneTrackingParams } from "./IaYOUneTrackingParams";
|
|
|
3
3
|
import { IGeoIPLocationTracking } from "./IGeoIPLocationTracking";
|
|
4
4
|
export interface IFeedBackView extends IaYOUneTrackingParams, IGeoIPLocationTracking, IDefaultFields {
|
|
5
5
|
_customerID: ObjectId;
|
|
6
|
+
_consumerID?: ObjectId;
|
|
6
7
|
_clientID?: ObjectId[];
|
|
7
8
|
_subID?: ObjectId[];
|
|
8
9
|
feedback?: ObjectId;
|
|
@@ -3,6 +3,7 @@ import { IaYOUneTrackingParams } from "./IaYOUneTrackingParams";
|
|
|
3
3
|
import { IGeoIPLocationTracking } from "./IGeoIPLocationTracking";
|
|
4
4
|
export interface IFormView extends IaYOUneTrackingParams, IGeoIPLocationTracking, IDefaultFields {
|
|
5
5
|
_customerID: ObjectId;
|
|
6
|
+
_consumerID?: ObjectId;
|
|
6
7
|
_clientID?: ObjectId[];
|
|
7
8
|
_subID?: ObjectId[];
|
|
8
9
|
form?: ObjectId;
|
|
@@ -3,6 +3,7 @@ import { IaYOUneTrackingParams } from "./IaYOUneTrackingParams";
|
|
|
3
3
|
import { IGeoIPLocationTracking } from "./IGeoIPLocationTracking";
|
|
4
4
|
export interface IInterestBarClick extends IaYOUneTrackingParams, IGeoIPLocationTracking, IDefaultFields {
|
|
5
5
|
_customerID: ObjectId;
|
|
6
|
+
_consumerID?: ObjectId;
|
|
6
7
|
_clientID?: ObjectId[];
|
|
7
8
|
_subID?: ObjectId[];
|
|
8
9
|
bar?: ObjectId;
|
|
@@ -3,6 +3,7 @@ import { IaYOUneTrackingParams } from "./IaYOUneTrackingParams";
|
|
|
3
3
|
import { IGeoIPLocationTracking } from "./IGeoIPLocationTracking";
|
|
4
4
|
export interface IInterestBarView extends IaYOUneTrackingParams, IGeoIPLocationTracking, IDefaultFields {
|
|
5
5
|
_customerID: ObjectId;
|
|
6
|
+
_consumerID?: ObjectId;
|
|
6
7
|
_clientID: ObjectId[];
|
|
7
8
|
_subID: ObjectId[];
|
|
8
9
|
bar: ObjectId;
|
|
@@ -3,6 +3,7 @@ import { IaYOUneTrackingParams } from "./IaYOUneTrackingParams";
|
|
|
3
3
|
import { IGeoIPLocationTracking } from "./IGeoIPLocationTracking";
|
|
4
4
|
export interface ILinkPortalClick extends IaYOUneTrackingParams, IGeoIPLocationTracking, IDefaultFields {
|
|
5
5
|
_customerID: ObjectId;
|
|
6
|
+
_consumerID?: ObjectId;
|
|
6
7
|
_clientID?: ObjectId[];
|
|
7
8
|
_subID?: ObjectId[];
|
|
8
9
|
_linkID?: ObjectId;
|
|
@@ -3,6 +3,7 @@ import { IaYOUneTrackingParams } from "./IaYOUneTrackingParams";
|
|
|
3
3
|
import { IGeoIPLocationTracking } from "./IGeoIPLocationTracking";
|
|
4
4
|
export interface ILinkPortalView extends IaYOUneTrackingParams, IGeoIPLocationTracking, IDefaultFields {
|
|
5
5
|
_customerID: ObjectId;
|
|
6
|
+
_consumerID?: ObjectId;
|
|
6
7
|
_clientID: ObjectId[];
|
|
7
8
|
_subID: ObjectId[];
|
|
8
9
|
channel: string;
|
|
@@ -4,6 +4,7 @@ import { IGeoIPLocationTracking } from "./IGeoIPLocationTracking";
|
|
|
4
4
|
export interface IMailClick extends IaYOUneTrackingParams, IGeoIPLocationTracking, IDefaultFields {
|
|
5
5
|
mail?: ObjectId;
|
|
6
6
|
consumer?: ObjectId;
|
|
7
|
+
_consumerID?: ObjectId;
|
|
7
8
|
destination?: string;
|
|
8
9
|
linkid?: number;
|
|
9
10
|
key?: string;
|
|
@@ -3,6 +3,7 @@ import { IaYOUneTrackingParams } from "./IaYOUneTrackingParams";
|
|
|
3
3
|
import { IGeoIPLocationTracking } from "./IGeoIPLocationTracking";
|
|
4
4
|
export interface IPopupClick extends IaYOUneTrackingParams, IGeoIPLocationTracking, IDefaultFields {
|
|
5
5
|
_customerID: ObjectId;
|
|
6
|
+
_consumerID?: ObjectId;
|
|
6
7
|
_clientID?: ObjectId[];
|
|
7
8
|
_subID?: ObjectId[];
|
|
8
9
|
type?: string;
|
|
@@ -3,6 +3,7 @@ import { IaYOUneTrackingParams } from "./IaYOUneTrackingParams";
|
|
|
3
3
|
import { IGeoIPLocationTracking } from "./IGeoIPLocationTracking";
|
|
4
4
|
export interface IPopupView extends IaYOUneTrackingParams, IGeoIPLocationTracking, IDefaultFields {
|
|
5
5
|
_customerID: ObjectId;
|
|
6
|
+
_consumerID?: ObjectId;
|
|
6
7
|
_clientID?: ObjectId[];
|
|
7
8
|
_subID?: ObjectId[];
|
|
8
9
|
type?: string;
|
|
@@ -3,6 +3,7 @@ import { IaYOUneTrackingParams } from "./IaYOUneTrackingParams";
|
|
|
3
3
|
import { IGeoIPLocationTracking } from "./IGeoIPLocationTracking";
|
|
4
4
|
export interface IPushClick extends IaYOUneTrackingParams, IGeoIPLocationTracking, IDefaultFields {
|
|
5
5
|
_customerID: ObjectId;
|
|
6
|
+
_consumerID?: ObjectId;
|
|
6
7
|
_clientID?: string;
|
|
7
8
|
_subID?: string;
|
|
8
9
|
subscriptionId?: string;
|
|
@@ -3,6 +3,7 @@ import { IaYOUneTrackingParams } from "./IaYOUneTrackingParams";
|
|
|
3
3
|
import { IGeoIPLocationTracking } from "./IGeoIPLocationTracking";
|
|
4
4
|
export interface IQuestionView extends IaYOUneTrackingParams, IGeoIPLocationTracking, IDefaultFields {
|
|
5
5
|
_customerID: ObjectId;
|
|
6
|
+
_consumerID?: ObjectId;
|
|
6
7
|
_clientID?: ObjectId[];
|
|
7
8
|
_subID?: ObjectId[];
|
|
8
9
|
question?: ObjectId;
|
|
@@ -3,6 +3,7 @@ import { IaYOUneTrackingParams } from "./IaYOUneTrackingParams";
|
|
|
3
3
|
import { IGeoIPLocationTracking } from "./IGeoIPLocationTracking";
|
|
4
4
|
export interface IShortLinkClick extends IaYOUneTrackingParams, IGeoIPLocationTracking, IDefaultFields {
|
|
5
5
|
_customerID: ObjectId;
|
|
6
|
+
_consumerID?: ObjectId;
|
|
6
7
|
_clientID?: ObjectId[];
|
|
7
8
|
_subID?: ObjectId[];
|
|
8
9
|
_shortLink?: ObjectId;
|
|
@@ -3,6 +3,7 @@ import { IaYOUneTrackingParams } from "./IaYOUneTrackingParams";
|
|
|
3
3
|
import { IGeoIPLocationTracking } from "./IGeoIPLocationTracking";
|
|
4
4
|
export interface IStoreView extends IaYOUneTrackingParams, IGeoIPLocationTracking, IDefaultFields {
|
|
5
5
|
_customerID: ObjectId;
|
|
6
|
+
_consumerID?: ObjectId;
|
|
6
7
|
_clientID?: ObjectId[];
|
|
7
8
|
_subID?: ObjectId[];
|
|
8
9
|
url: string;
|
|
@@ -3,6 +3,7 @@ import { IGeoIPLocationTracking } from "./IGeoIPLocationTracking";
|
|
|
3
3
|
import { IaYOUneTrackingParams } from "./IaYOUneTrackingParams";
|
|
4
4
|
export interface IUsageLog extends IGeoIPLocationTracking, IaYOUneTrackingParams, IDefaultFields {
|
|
5
5
|
_customerID?: ObjectId;
|
|
6
|
+
_consumerID?: ObjectId;
|
|
6
7
|
_clientID?: ObjectId[];
|
|
7
8
|
_subID?: ObjectId[];
|
|
8
9
|
_userID?: ObjectId;
|
package/interfaces/IView.d.ts
CHANGED
package/interfaces/index.d.ts
CHANGED
|
@@ -236,6 +236,7 @@ export * from "./IDomain";
|
|
|
236
236
|
export * from "./IDownload";
|
|
237
237
|
export * from "./IDownloadList";
|
|
238
238
|
export * from "./IDownloadLog";
|
|
239
|
+
export * from "./IDownloadView";
|
|
239
240
|
export * from "./IDraft";
|
|
240
241
|
export * from "./IDynamicContent";
|
|
241
242
|
export * from "./IDynamicContentSnippet";
|
|
@@ -372,6 +373,7 @@ export * from "./IIndustryKPI";
|
|
|
372
373
|
export * from "./IMarketResearch";
|
|
373
374
|
export * from "./IMaterial";
|
|
374
375
|
export * from "./IMeeting";
|
|
376
|
+
export * from "./IEventRegisterView";
|
|
375
377
|
export * from "./IMeetingLocation";
|
|
376
378
|
export * from "./IMeetingMinute";
|
|
377
379
|
export * from "./IMeetingSpeaker";
|
package/interfaces/index.js
CHANGED
|
@@ -252,6 +252,7 @@ __exportStar(require("./IDomain"), exports);
|
|
|
252
252
|
__exportStar(require("./IDownload"), exports);
|
|
253
253
|
__exportStar(require("./IDownloadList"), exports);
|
|
254
254
|
__exportStar(require("./IDownloadLog"), exports);
|
|
255
|
+
__exportStar(require("./IDownloadView"), exports);
|
|
255
256
|
__exportStar(require("./IDraft"), exports);
|
|
256
257
|
__exportStar(require("./IDynamicContent"), exports);
|
|
257
258
|
__exportStar(require("./IDynamicContentSnippet"), exports);
|
|
@@ -388,6 +389,7 @@ __exportStar(require("./IIndustryKPI"), exports);
|
|
|
388
389
|
__exportStar(require("./IMarketResearch"), exports);
|
|
389
390
|
__exportStar(require("./IMaterial"), exports);
|
|
390
391
|
__exportStar(require("./IMeeting"), exports);
|
|
392
|
+
__exportStar(require("./IEventRegisterView"), exports);
|
|
391
393
|
__exportStar(require("./IMeetingLocation"), exports);
|
|
392
394
|
__exportStar(require("./IMeetingMinute"), exports);
|
|
393
395
|
__exportStar(require("./IMeetingSpeaker"), exports);
|