@meniga/insights-factory-bank-admin 1.14.0-alpha.7 → 1.14.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 +4 -3
- package/package.json +1 -1
package/index.ts
CHANGED
|
@@ -15,6 +15,7 @@ export type ScheduleType = "Hourly" | "Daily" | "Weekly" | "Monthly" | "Yearly";
|
|
|
15
15
|
export type SegmentStatus = "Temp" | "Active" | "Archived";
|
|
16
16
|
export type SegmentType = "Static" | "Dynamic";
|
|
17
17
|
export type TimeIntervalUnit = "Hours" | "Days" | "Weeks" | "Months";
|
|
18
|
+
export type ExpirationDateTimeIntervalUnit = "Hours" | "Days" | "Weeks" | "Months" | "Minutes";
|
|
18
19
|
export type ExpirationType = "Fixed" | "Relative" | "FromFirstMessage";
|
|
19
20
|
export type HistoryChangeOperationEnum = "Created" | "BusinessVersionChanged" | "StatusChanged" | "ApproverChanged" | "DurationChanged";
|
|
20
21
|
export interface JsonApiError
|
|
@@ -154,7 +155,7 @@ export interface InsightDefinitionContentTemplate
|
|
|
154
155
|
expirationDate?: string;
|
|
155
156
|
expirationType?: ExpirationType;
|
|
156
157
|
validityPeriod?: number;
|
|
157
|
-
validityPeriodUnit?:
|
|
158
|
+
validityPeriodUnit?: ExpirationDateTimeIntervalUnit;
|
|
158
159
|
maximumExpirationDate?: string;
|
|
159
160
|
}
|
|
160
161
|
export interface TriggeringEvent
|
|
@@ -1298,14 +1299,14 @@ export interface RelativeMessageExpirationPolicyModel
|
|
|
1298
1299
|
{
|
|
1299
1300
|
expirationType: "Relative";
|
|
1300
1301
|
validityPeriod?: number;
|
|
1301
|
-
validityPeriodUnit?:
|
|
1302
|
+
validityPeriodUnit?: ExpirationDateTimeIntervalUnit;
|
|
1302
1303
|
maximumExpirationDate?: string;
|
|
1303
1304
|
}
|
|
1304
1305
|
export interface FromFirstMessageExpirationPolicyModel
|
|
1305
1306
|
{
|
|
1306
1307
|
expirationType: "FromFirstMessage";
|
|
1307
1308
|
validityPeriod?: number;
|
|
1308
|
-
validityPeriodUnit?:
|
|
1309
|
+
validityPeriodUnit?: ExpirationDateTimeIntervalUnit;
|
|
1309
1310
|
maximumExpirationDate?: string;
|
|
1310
1311
|
}
|
|
1311
1312
|
export interface PauseInsightsDefinitionRequest
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"name": "@meniga/insights-factory-bank-admin","version": "1.14.0
|
|
1
|
+
{"name": "@meniga/insights-factory-bank-admin","version": "1.14.0","main": "index.ts","scripts": {},"license": "ISC"}
|