opticedge-types 1.0.7 → 1.0.8
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/enums/rc.d.ts +1 -0
- package/dist/enums/rc.js +1 -0
- package/package.json +1 -1
- package/src/enums/rc.ts +1 -0
package/dist/enums/rc.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ export declare enum BillingIssueActionType {
|
|
|
7
7
|
SLACK_NOTIFIED = "slack_notified",// ops Slack alert sent
|
|
8
8
|
NOTIFY_INITIAL = "notify_initial",// initial immediate notify (push+email)
|
|
9
9
|
NOTIFY_WEEK = "notify_week",// 7-day reminder
|
|
10
|
+
SKIP_NOTIFY_WEEK = "skip_notify_week",
|
|
10
11
|
NOTIFY_DAY = "notify_day",// 1-day reminder
|
|
11
12
|
NOTIFY_FINAL = "notify_final",// final post-expiration message
|
|
12
13
|
GRACE_EXPIRED = "grace_expired",// grace period finalized
|
package/dist/enums/rc.js
CHANGED
|
@@ -12,6 +12,7 @@ var BillingIssueActionType;
|
|
|
12
12
|
BillingIssueActionType["SLACK_NOTIFIED"] = "slack_notified";
|
|
13
13
|
BillingIssueActionType["NOTIFY_INITIAL"] = "notify_initial";
|
|
14
14
|
BillingIssueActionType["NOTIFY_WEEK"] = "notify_week";
|
|
15
|
+
BillingIssueActionType["SKIP_NOTIFY_WEEK"] = "skip_notify_week";
|
|
15
16
|
BillingIssueActionType["NOTIFY_DAY"] = "notify_day";
|
|
16
17
|
BillingIssueActionType["NOTIFY_FINAL"] = "notify_final";
|
|
17
18
|
BillingIssueActionType["GRACE_EXPIRED"] = "grace_expired";
|
package/package.json
CHANGED
package/src/enums/rc.ts
CHANGED
|
@@ -8,6 +8,7 @@ export enum BillingIssueActionType {
|
|
|
8
8
|
SLACK_NOTIFIED = 'slack_notified', // ops Slack alert sent
|
|
9
9
|
NOTIFY_INITIAL = 'notify_initial', // initial immediate notify (push+email)
|
|
10
10
|
NOTIFY_WEEK = 'notify_week', // 7-day reminder
|
|
11
|
+
SKIP_NOTIFY_WEEK = 'skip_notify_week',
|
|
11
12
|
NOTIFY_DAY = 'notify_day', // 1-day reminder
|
|
12
13
|
NOTIFY_FINAL = 'notify_final', // final post-expiration message
|
|
13
14
|
GRACE_EXPIRED = 'grace_expired', // grace period finalized
|