@meniga/insights-factory-bank-admin 1.17.0 → 1.18.0-alpha.10
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/index.ts +3 -2
- package/package.json +1 -1
package/index.ts
CHANGED
|
@@ -2,8 +2,8 @@ export type DayOfWeek = "Sunday" | "Monday" | "Tuesday" | "Wednesday" | "Thursda
|
|
|
2
2
|
export type ProcessingResultType = "Passed" | "AudienceNotPassed" | "Failure";
|
|
3
3
|
export type InsightDefinitionApprovalStatus = "WaitingForApproval" | "Approved" | "Rejected";
|
|
4
4
|
export type InsightDefinitionStatus = "Active" | "Inactive" | "Deleted" | "Draft" | "Planned" | "Ended" | "Triggered" | "WaitingForApproval" | "Rejected" | "Approved" | "Paused";
|
|
5
|
-
export type InsightDefinitionTestCurrentStatus = "Completed" | "Cancelled" | "Planned" | "InProgress" | "Triggered" | "Failed" | "Invalidated";
|
|
6
|
-
export type InsightDefinitionTestStatus = "Active" | "Completed" | "Cancelled" | "Triggered" | "Failed" | "Invalidated";
|
|
5
|
+
export type InsightDefinitionTestCurrentStatus = "Completed" | "Cancelled" | "Planned" | "InProgress" | "Triggered" | "Failed" | "Invalidated" | "Deleted";
|
|
6
|
+
export type InsightDefinitionTestStatus = "Active" | "Completed" | "Cancelled" | "Triggered" | "Failed" | "Invalidated" | "Deleted";
|
|
7
7
|
export type InsightDefinitionTestType = "EstimateReach" | "ChannelPreview";
|
|
8
8
|
export type ChannelType = "Push" | "Pull";
|
|
9
9
|
export type ClrValueType = "Numeric" | "String";
|
|
@@ -75,6 +75,7 @@ export interface DeletedInsightDefinition
|
|
|
75
75
|
{
|
|
76
76
|
insightDefinitionId: string;
|
|
77
77
|
insightDefinitionVersion: number;
|
|
78
|
+
insightDefinitionTestsIds: string[];
|
|
78
79
|
}
|
|
79
80
|
export interface InsightDefinitionsDeleted
|
|
80
81
|
{
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"name": "@meniga/insights-factory-bank-admin","version": "1.
|
|
1
|
+
{"name": "@meniga/insights-factory-bank-admin","version": "1.18.0-alpha.10","main": "index.ts","scripts": {},"license": "ISC"}
|