@adtrackify/at-tracking-event-types 2.0.35 → 2.0.36
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/dist/cjs/types/api/destinations/destination-catalog.d.ts +3 -2
- package/dist/cjs/types/api/destinations/destinations.d.ts +2 -2
- package/dist/cjs/types/api/destinations/destinations.js +6 -6
- package/dist/esm/types/api/destinations/destination-catalog.d.ts +3 -2
- package/dist/esm/types/api/destinations/destinations.d.ts +2 -2
- package/dist/esm/types/api/destinations/destinations.js +5 -5
- package/package.json +1 -1
|
@@ -1,8 +1,9 @@
|
|
|
1
|
+
import { DESTINATION, DESTINATION_TYPE } from './destinations';
|
|
1
2
|
export interface DestinationCatalogItem {
|
|
2
3
|
id: string;
|
|
3
4
|
active: boolean;
|
|
4
|
-
destinationKey:
|
|
5
|
-
destinationType:
|
|
5
|
+
destinationKey: DESTINATION;
|
|
6
|
+
destinationType: DESTINATION_TYPE;
|
|
6
7
|
displayName?: string;
|
|
7
8
|
shortName?: string;
|
|
8
9
|
description?: string;
|
|
@@ -3,14 +3,14 @@ export interface Destination {
|
|
|
3
3
|
accountId: string;
|
|
4
4
|
pixelId: string;
|
|
5
5
|
destination: DESTINATION;
|
|
6
|
-
destinationType?:
|
|
6
|
+
destinationType?: DESTINATION_TYPE;
|
|
7
7
|
displayName?: string;
|
|
8
8
|
enabled: boolean;
|
|
9
9
|
configuration?: UserDestinationConfiguration;
|
|
10
10
|
createdAt: string;
|
|
11
11
|
updatedAt: string;
|
|
12
12
|
}
|
|
13
|
-
export declare enum
|
|
13
|
+
export declare enum DESTINATION_TYPE {
|
|
14
14
|
INTEGRATION = "integration",
|
|
15
15
|
DESTIANTION = "destination"
|
|
16
16
|
}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DESTINATION = exports.
|
|
4
|
-
var
|
|
5
|
-
(function (
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
})(
|
|
3
|
+
exports.DESTINATION = exports.DESTINATION_TYPE = void 0;
|
|
4
|
+
var DESTINATION_TYPE;
|
|
5
|
+
(function (DESTINATION_TYPE) {
|
|
6
|
+
DESTINATION_TYPE["INTEGRATION"] = "integration";
|
|
7
|
+
DESTINATION_TYPE["DESTIANTION"] = "destination";
|
|
8
|
+
})(DESTINATION_TYPE = exports.DESTINATION_TYPE || (exports.DESTINATION_TYPE = {}));
|
|
9
9
|
var DESTINATION;
|
|
10
10
|
(function (DESTINATION) {
|
|
11
11
|
DESTINATION["FACEBOOK"] = "facebook";
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
+
import { DESTINATION, DESTINATION_TYPE } from './destinations';
|
|
1
2
|
export interface DestinationCatalogItem {
|
|
2
3
|
id: string;
|
|
3
4
|
active: boolean;
|
|
4
|
-
destinationKey:
|
|
5
|
-
destinationType:
|
|
5
|
+
destinationKey: DESTINATION;
|
|
6
|
+
destinationType: DESTINATION_TYPE;
|
|
6
7
|
displayName?: string;
|
|
7
8
|
shortName?: string;
|
|
8
9
|
description?: string;
|
|
@@ -3,14 +3,14 @@ export interface Destination {
|
|
|
3
3
|
accountId: string;
|
|
4
4
|
pixelId: string;
|
|
5
5
|
destination: DESTINATION;
|
|
6
|
-
destinationType?:
|
|
6
|
+
destinationType?: DESTINATION_TYPE;
|
|
7
7
|
displayName?: string;
|
|
8
8
|
enabled: boolean;
|
|
9
9
|
configuration?: UserDestinationConfiguration;
|
|
10
10
|
createdAt: string;
|
|
11
11
|
updatedAt: string;
|
|
12
12
|
}
|
|
13
|
-
export declare enum
|
|
13
|
+
export declare enum DESTINATION_TYPE {
|
|
14
14
|
INTEGRATION = "integration",
|
|
15
15
|
DESTIANTION = "destination"
|
|
16
16
|
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
export var
|
|
2
|
-
(function (
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
})(
|
|
1
|
+
export var DESTINATION_TYPE;
|
|
2
|
+
(function (DESTINATION_TYPE) {
|
|
3
|
+
DESTINATION_TYPE["INTEGRATION"] = "integration";
|
|
4
|
+
DESTINATION_TYPE["DESTIANTION"] = "destination";
|
|
5
|
+
})(DESTINATION_TYPE || (DESTINATION_TYPE = {}));
|
|
6
6
|
export var DESTINATION;
|
|
7
7
|
(function (DESTINATION) {
|
|
8
8
|
DESTINATION["FACEBOOK"] = "facebook";
|