@adtrackify/at-tracking-event-types 3.1.38 → 3.1.39
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/destinations.d.ts +17 -0
- package/dist/cjs/types/api/destinations/destinations.js +7 -1
- package/dist/cjs/types/api/destinations/destinations.js.map +1 -1
- package/dist/esm/types/api/destinations/destinations.d.ts +17 -0
- package/dist/esm/types/api/destinations/destinations.js +6 -0
- package/dist/esm/types/api/destinations/destinations.js.map +1 -1
- package/package.json +1 -1
|
@@ -11,6 +11,23 @@ export interface Destination {
|
|
|
11
11
|
createdAt: string;
|
|
12
12
|
updatedAt: string;
|
|
13
13
|
orderConfig?: DestinationOrderConfig;
|
|
14
|
+
healthStatus?: DestinationHealthStatus;
|
|
15
|
+
}
|
|
16
|
+
export interface DestinationHealthStatus {
|
|
17
|
+
status: DESTINATION_HEALTH_STATUS;
|
|
18
|
+
lastCheckedAt: string;
|
|
19
|
+
requestErrorCode?: number;
|
|
20
|
+
errorDetails?: {
|
|
21
|
+
errorCode?: number;
|
|
22
|
+
errorSubCode?: number;
|
|
23
|
+
errorType?: string;
|
|
24
|
+
errorMessage?: string;
|
|
25
|
+
};
|
|
26
|
+
}
|
|
27
|
+
export declare enum DESTINATION_HEALTH_STATUS {
|
|
28
|
+
HEALTHY = "healthy",
|
|
29
|
+
UNHEALTHY = "unhealthy",
|
|
30
|
+
UNKNOWN = "unknown"
|
|
14
31
|
}
|
|
15
32
|
export interface DestinationOrderConfig {
|
|
16
33
|
blockedSources?: string[];
|
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.EVENT_TRIGGER_CONDITION = exports.DESTINATION = exports.DESTINATION_TYPE = void 0;
|
|
3
|
+
exports.EVENT_TRIGGER_CONDITION = exports.DESTINATION = exports.DESTINATION_TYPE = exports.DESTINATION_HEALTH_STATUS = void 0;
|
|
4
|
+
var DESTINATION_HEALTH_STATUS;
|
|
5
|
+
(function (DESTINATION_HEALTH_STATUS) {
|
|
6
|
+
DESTINATION_HEALTH_STATUS["HEALTHY"] = "healthy";
|
|
7
|
+
DESTINATION_HEALTH_STATUS["UNHEALTHY"] = "unhealthy";
|
|
8
|
+
DESTINATION_HEALTH_STATUS["UNKNOWN"] = "unknown";
|
|
9
|
+
})(DESTINATION_HEALTH_STATUS = exports.DESTINATION_HEALTH_STATUS || (exports.DESTINATION_HEALTH_STATUS = {}));
|
|
4
10
|
var DESTINATION_TYPE;
|
|
5
11
|
(function (DESTINATION_TYPE) {
|
|
6
12
|
DESTINATION_TYPE["INTEGRATION"] = "integration";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"destinations.js","sourceRoot":"","sources":["../../../../../src/types/api/destinations/destinations.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"destinations.js","sourceRoot":"","sources":["../../../../../src/types/api/destinations/destinations.ts"],"names":[],"mappings":";;;AA6BA,IAAY,yBAIX;AAJD,WAAY,yBAAyB;IACnC,gDAAmB,CAAA;IACnB,oDAAuB,CAAA;IACvB,gDAAmB,CAAA;AACrB,CAAC,EAJW,yBAAyB,GAAzB,iCAAyB,KAAzB,iCAAyB,QAIpC;AAOD,IAAY,gBAIX;AAJD,WAAY,gBAAgB;IAC1B,+CAA2B,CAAA;IAC3B,+CAA2B,CAAA;IAC3B,8DAA0C,CAAA;AAC5C,CAAC,EAJW,gBAAgB,GAAhB,wBAAgB,KAAhB,wBAAgB,QAI3B;AAED,IAAY,WA+BX;AA/BD,WAAY,WAAW;IAErB,oCAAqB,CAAA;IACrB,gCAAiB,CAAA;IACjB,uCAAwB,CAAA;IACxB,4CAA6B,CAAA;IAC7B,sDAAuC,CAAA;IACvC,kCAAmB,CAAA;IACnB,kCAAmB,CAAA;IACnB,yCAA0B,CAAA;IAC1B,qCAAsB,CAAA;IACtB,oCAAqB,CAAA;IACrB,kCAAmB,CAAA;IACnB,gCAAiB,CAAA;IACjB,oCAAqB,CAAA;IACrB,yCAA0B,CAAA;IAC1B,sCAAuB,CAAA;IACvB,kCAAmB,CAAA;IACnB,oCAAqB,CAAA;IACrB,yDAA0C,CAAA;IAC1C,oCAAqB,CAAA;IACrB,oCAAqB,CAAA;IACrB,sCAAuB,CAAA;IAGvB,2DAA4C,CAAA;IAC5C,8DAA+C,CAAA;IAC/C,gFAAiE,CAAA;IAGjE,wEAAyD,CAAA;AAC3D,CAAC,EA/BW,WAAW,GAAX,mBAAW,KAAX,mBAAW,QA+BtB;AA8BD,IAAY,uBAIX;AAJD,WAAY,uBAAuB;IACjC,oCAAS,CAAA;IACT,oCAAS,CAAA;IACT,oCAAS,CAAA;AACX,CAAC,EAJW,uBAAuB,GAAvB,+BAAuB,KAAvB,+BAAuB,QAIlC"}
|
|
@@ -11,6 +11,23 @@ export interface Destination {
|
|
|
11
11
|
createdAt: string;
|
|
12
12
|
updatedAt: string;
|
|
13
13
|
orderConfig?: DestinationOrderConfig;
|
|
14
|
+
healthStatus?: DestinationHealthStatus;
|
|
15
|
+
}
|
|
16
|
+
export interface DestinationHealthStatus {
|
|
17
|
+
status: DESTINATION_HEALTH_STATUS;
|
|
18
|
+
lastCheckedAt: string;
|
|
19
|
+
requestErrorCode?: number;
|
|
20
|
+
errorDetails?: {
|
|
21
|
+
errorCode?: number;
|
|
22
|
+
errorSubCode?: number;
|
|
23
|
+
errorType?: string;
|
|
24
|
+
errorMessage?: string;
|
|
25
|
+
};
|
|
26
|
+
}
|
|
27
|
+
export declare enum DESTINATION_HEALTH_STATUS {
|
|
28
|
+
HEALTHY = "healthy",
|
|
29
|
+
UNHEALTHY = "unhealthy",
|
|
30
|
+
UNKNOWN = "unknown"
|
|
14
31
|
}
|
|
15
32
|
export interface DestinationOrderConfig {
|
|
16
33
|
blockedSources?: string[];
|
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
export var DESTINATION_HEALTH_STATUS;
|
|
2
|
+
(function (DESTINATION_HEALTH_STATUS) {
|
|
3
|
+
DESTINATION_HEALTH_STATUS["HEALTHY"] = "healthy";
|
|
4
|
+
DESTINATION_HEALTH_STATUS["UNHEALTHY"] = "unhealthy";
|
|
5
|
+
DESTINATION_HEALTH_STATUS["UNKNOWN"] = "unknown";
|
|
6
|
+
})(DESTINATION_HEALTH_STATUS || (DESTINATION_HEALTH_STATUS = {}));
|
|
1
7
|
export var DESTINATION_TYPE;
|
|
2
8
|
(function (DESTINATION_TYPE) {
|
|
3
9
|
DESTINATION_TYPE["INTEGRATION"] = "integration";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"destinations.js","sourceRoot":"","sources":["../../../../../src/types/api/destinations/destinations.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"destinations.js","sourceRoot":"","sources":["../../../../../src/types/api/destinations/destinations.ts"],"names":[],"mappings":"AA6BA,MAAM,CAAN,IAAY,yBAIX;AAJD,WAAY,yBAAyB;IACnC,gDAAmB,CAAA;IACnB,oDAAuB,CAAA;IACvB,gDAAmB,CAAA;AACrB,CAAC,EAJW,yBAAyB,KAAzB,yBAAyB,QAIpC;AAOD,MAAM,CAAN,IAAY,gBAIX;AAJD,WAAY,gBAAgB;IAC1B,+CAA2B,CAAA;IAC3B,+CAA2B,CAAA;IAC3B,8DAA0C,CAAA;AAC5C,CAAC,EAJW,gBAAgB,KAAhB,gBAAgB,QAI3B;AAED,MAAM,CAAN,IAAY,WA+BX;AA/BD,WAAY,WAAW;IAErB,oCAAqB,CAAA;IACrB,gCAAiB,CAAA;IACjB,uCAAwB,CAAA;IACxB,4CAA6B,CAAA;IAC7B,sDAAuC,CAAA;IACvC,kCAAmB,CAAA;IACnB,kCAAmB,CAAA;IACnB,yCAA0B,CAAA;IAC1B,qCAAsB,CAAA;IACtB,oCAAqB,CAAA;IACrB,kCAAmB,CAAA;IACnB,gCAAiB,CAAA;IACjB,oCAAqB,CAAA;IACrB,yCAA0B,CAAA;IAC1B,sCAAuB,CAAA;IACvB,kCAAmB,CAAA;IACnB,oCAAqB,CAAA;IACrB,yDAA0C,CAAA;IAC1C,oCAAqB,CAAA;IACrB,oCAAqB,CAAA;IACrB,sCAAuB,CAAA;IAGvB,2DAA4C,CAAA;IAC5C,8DAA+C,CAAA;IAC/C,gFAAiE,CAAA;IAGjE,wEAAyD,CAAA;AAC3D,CAAC,EA/BW,WAAW,KAAX,WAAW,QA+BtB;AA8BD,MAAM,CAAN,IAAY,uBAIX;AAJD,WAAY,uBAAuB;IACjC,oCAAS,CAAA;IACT,oCAAS,CAAA;IACT,oCAAS,CAAA;AACX,CAAC,EAJW,uBAAuB,KAAvB,uBAAuB,QAIlC"}
|