@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.
@@ -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: string;
5
- destinationType: string;
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?: DESTINATTON_TYPE;
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 DESTINATTON_TYPE {
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.DESTINATTON_TYPE = void 0;
4
- var DESTINATTON_TYPE;
5
- (function (DESTINATTON_TYPE) {
6
- DESTINATTON_TYPE["INTEGRATION"] = "integration";
7
- DESTINATTON_TYPE["DESTIANTION"] = "destination";
8
- })(DESTINATTON_TYPE = exports.DESTINATTON_TYPE || (exports.DESTINATTON_TYPE = {}));
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: string;
5
- destinationType: string;
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?: DESTINATTON_TYPE;
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 DESTINATTON_TYPE {
13
+ export declare enum DESTINATION_TYPE {
14
14
  INTEGRATION = "integration",
15
15
  DESTIANTION = "destination"
16
16
  }
@@ -1,8 +1,8 @@
1
- export var DESTINATTON_TYPE;
2
- (function (DESTINATTON_TYPE) {
3
- DESTINATTON_TYPE["INTEGRATION"] = "integration";
4
- DESTINATTON_TYPE["DESTIANTION"] = "destination";
5
- })(DESTINATTON_TYPE || (DESTINATTON_TYPE = {}));
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";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adtrackify/at-tracking-event-types",
3
- "version": "2.0.35",
3
+ "version": "2.0.36",
4
4
  "description": "",
5
5
  "files": [
6
6
  "dist/*"