@meniga/insights-factory-bank-admin 1.14.0-alpha.1 → 1.14.0-alpha.13

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.
Files changed (2) hide show
  1. package/index.ts +8 -3
  2. 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?: TimeIntervalUnit;
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?: TimeIntervalUnit;
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?: TimeIntervalUnit;
1309
+ validityPeriodUnit?: ExpirationDateTimeIntervalUnit;
1309
1310
  maximumExpirationDate?: string;
1310
1311
  }
1311
1312
  export interface PauseInsightsDefinitionRequest
@@ -1504,6 +1505,10 @@ export interface ContentTemplateReadModel
1504
1505
  * Example value based on based on https://miro.com/app/board/o9J_lEZhz3E=/?moveToWidget=3074457361121201654&cot=14
1505
1506
  */
1506
1507
  bankAdminDataModel: string;
1508
+ /** Dispatcher template which can be used for dynamic rendering of the payload generated by Insight Factory */
1509
+ dispatcherTemplate: string;
1510
+ /** Type of Dispatcher content template */
1511
+ dispatcherTemplateContentType: string;
1507
1512
  }
1508
1513
  /** Approver role model */
1509
1514
  export interface ApproverReadModel
package/package.json CHANGED
@@ -1 +1 @@
1
- {"name": "@meniga/insights-factory-bank-admin","version": "1.14.0-alpha.1","main": "index.ts","scripts": {},"license": "ISC"}
1
+ {"name": "@meniga/insights-factory-bank-admin","version": "1.14.0-alpha.13","main": "index.ts","scripts": {},"license": "ISC"}