@meniga/insights-factory-bank-admin 1.13.0-alpha.8 → 1.13.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/index.ts +8 -1
- package/package.json +1 -1
package/index.ts
CHANGED
|
@@ -4,12 +4,12 @@ export type InsightDefinitionApprovalStatus = "WaitingForApproval" | "Approved"
|
|
|
4
4
|
export type InsightDefinitionStatus = "Active" | "Inactive" | "Deleted" | "Draft" | "Planned" | "Ended" | "Triggered" | "WaitingForApproval" | "Rejected" | "Approved" | "Paused";
|
|
5
5
|
export type InsightDefinitionTestCurrentStatus = "Completed" | "Cancelled" | "Planned" | "InProgress";
|
|
6
6
|
export type InsightDefinitionTestStatus = "Active" | "Completed" | "Cancelled";
|
|
7
|
-
export type InsightDefinitionTriggerType = "EventBased" | "Recurring" | "OneOff";
|
|
8
7
|
export type InsightDefinitionTestType = "EstimateReach" | "ChannelPreview";
|
|
9
8
|
export type ChannelType = "Push" | "Pull";
|
|
10
9
|
export type ClrValueType = "Numeric" | "String";
|
|
11
10
|
export type ContentTemplateDispatcherTemplateType = "Text" | "Json";
|
|
12
11
|
export type InsightDefinitionMessageableStatus = "Active" | "Inactive" | "Planned" | "Ended" | "Triggered" | "Paused";
|
|
12
|
+
export type InsightDefinitionTriggerType = "EventBased" | "Recurring" | "OneOff";
|
|
13
13
|
export type MetadataFieldType = "Field" | "Collection" | "Object";
|
|
14
14
|
export type ScheduleType = "Hourly" | "Daily" | "Weekly" | "Monthly" | "Yearly";
|
|
15
15
|
export type SegmentStatus = "Temp" | "Active" | "Archived";
|
|
@@ -52,6 +52,13 @@ export interface UserBasedLicenseInformationModel
|
|
|
52
52
|
usersLimitEnabled: boolean;
|
|
53
53
|
usersLimit?: number;
|
|
54
54
|
}
|
|
55
|
+
export interface DeliveryChannel
|
|
56
|
+
{
|
|
57
|
+
channelId: string;
|
|
58
|
+
channelName: string;
|
|
59
|
+
widgetId: number;
|
|
60
|
+
widgetName: string;
|
|
61
|
+
}
|
|
55
62
|
export interface InsightDefinitionStatusReadModel
|
|
56
63
|
{
|
|
57
64
|
id: string;
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"name": "@meniga/insights-factory-bank-admin","version": "1.13.0
|
|
1
|
+
{"name": "@meniga/insights-factory-bank-admin","version": "1.13.0","main": "index.ts","scripts": {},"license": "ISC"}
|