@d19n/youfibre-odin-sdk 2.0.302 → 2.0.303
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.
|
@@ -62,6 +62,7 @@ export declare enum BillingAdjustmentProrationType {
|
|
|
62
62
|
* - `CONTRACT_BUY_OUT` - Contract Buy Out
|
|
63
63
|
* - `GOODWILL_GESTURE` - Goodwill Gesture
|
|
64
64
|
* - `OUTAGE_COMPENSATION` - Outage Compensation
|
|
65
|
+
* - `PAYMENT_PLAN` - Payment Plan
|
|
65
66
|
* - `PRICE_MATCH_ADJUSTMENT` - Price Match Adjustment
|
|
66
67
|
* - `PRICE_MATCH_DEAL` - Price Match Deal
|
|
67
68
|
* - `RECONTRACTING_ADJUSTMENT` - Recontracting Adjustment
|
|
@@ -78,6 +79,7 @@ export declare enum BillingAdjustmentReason {
|
|
|
78
79
|
CONTRACT_BUY_OUT = "CONTRACT_BUY_OUT",
|
|
79
80
|
GOODWILL_GESTURE = "GOODWILL_GESTURE",
|
|
80
81
|
OUTAGE_COMPENSATION = "OUTAGE_COMPENSATION",
|
|
82
|
+
PAYMENT_PLAN = "PAYMENT_PLAN",
|
|
81
83
|
PRICE_MATCH_ADJUSTMENT = "PRICE_MATCH_ADJUSTMENT",
|
|
82
84
|
PRICE_MATCH_DEAL = "PRICE_MATCH_DEAL",
|
|
83
85
|
RECONTRACTING_ADJUSTMENT = "RECONTRACTING_ADJUSTMENT",
|
|
@@ -64,6 +64,7 @@ var BillingAdjustmentProrationType;
|
|
|
64
64
|
* - `CONTRACT_BUY_OUT` - Contract Buy Out
|
|
65
65
|
* - `GOODWILL_GESTURE` - Goodwill Gesture
|
|
66
66
|
* - `OUTAGE_COMPENSATION` - Outage Compensation
|
|
67
|
+
* - `PAYMENT_PLAN` - Payment Plan
|
|
67
68
|
* - `PRICE_MATCH_ADJUSTMENT` - Price Match Adjustment
|
|
68
69
|
* - `PRICE_MATCH_DEAL` - Price Match Deal
|
|
69
70
|
* - `RECONTRACTING_ADJUSTMENT` - Recontracting Adjustment
|
|
@@ -81,6 +82,7 @@ var BillingAdjustmentReason;
|
|
|
81
82
|
BillingAdjustmentReason["CONTRACT_BUY_OUT"] = "CONTRACT_BUY_OUT";
|
|
82
83
|
BillingAdjustmentReason["GOODWILL_GESTURE"] = "GOODWILL_GESTURE";
|
|
83
84
|
BillingAdjustmentReason["OUTAGE_COMPENSATION"] = "OUTAGE_COMPENSATION";
|
|
85
|
+
BillingAdjustmentReason["PAYMENT_PLAN"] = "PAYMENT_PLAN";
|
|
84
86
|
BillingAdjustmentReason["PRICE_MATCH_ADJUSTMENT"] = "PRICE_MATCH_ADJUSTMENT";
|
|
85
87
|
BillingAdjustmentReason["PRICE_MATCH_DEAL"] = "PRICE_MATCH_DEAL";
|
|
86
88
|
BillingAdjustmentReason["RECONTRACTING_ADJUSTMENT"] = "RECONTRACTING_ADJUSTMENT";
|
|
@@ -42,8 +42,8 @@ export declare enum CreditNoteEntityTypes {
|
|
|
42
42
|
* - `ORDER_CONFIGURATION` - Order configuration
|
|
43
43
|
* - `OTS_ORDER_CANCELLATION` - OTS Order Cancellation
|
|
44
44
|
* - `PAYMENT_ERROR` - Payment Error
|
|
45
|
-
* - `
|
|
46
|
-
* - ... and
|
|
45
|
+
* - `PAYMENT_PLAN` - Payment Plan
|
|
46
|
+
* - ... and 5 more
|
|
47
47
|
*/
|
|
48
48
|
export declare enum CreditNoteReason {
|
|
49
49
|
BAD_DEBT_WRITE_OFF = "BAD_DEBT_WRITE_OFF",
|
|
@@ -60,6 +60,7 @@ export declare enum CreditNoteReason {
|
|
|
60
60
|
ORDER_CONFIGURATION = "ORDER_CONFIGURATION",
|
|
61
61
|
OTS_ORDER_CANCELLATION = "OTS_ORDER_CANCELLATION",
|
|
62
62
|
PAYMENT_ERROR = "PAYMENT_ERROR",
|
|
63
|
+
PAYMENT_PLAN = "PAYMENT_PLAN",
|
|
63
64
|
REFERRAL_REWARD = "REFERRAL_REWARD",
|
|
64
65
|
RETENTION = "RETENTION",
|
|
65
66
|
SALES_MIS_SOLD = "SALES_MISSOLD",
|
|
@@ -42,8 +42,8 @@ var CreditNoteEntityTypes;
|
|
|
42
42
|
* - `ORDER_CONFIGURATION` - Order configuration
|
|
43
43
|
* - `OTS_ORDER_CANCELLATION` - OTS Order Cancellation
|
|
44
44
|
* - `PAYMENT_ERROR` - Payment Error
|
|
45
|
-
* - `
|
|
46
|
-
* - ... and
|
|
45
|
+
* - `PAYMENT_PLAN` - Payment Plan
|
|
46
|
+
* - ... and 5 more
|
|
47
47
|
*/
|
|
48
48
|
var CreditNoteReason;
|
|
49
49
|
(function (CreditNoteReason) {
|
|
@@ -61,6 +61,7 @@ var CreditNoteReason;
|
|
|
61
61
|
CreditNoteReason["ORDER_CONFIGURATION"] = "ORDER_CONFIGURATION";
|
|
62
62
|
CreditNoteReason["OTS_ORDER_CANCELLATION"] = "OTS_ORDER_CANCELLATION";
|
|
63
63
|
CreditNoteReason["PAYMENT_ERROR"] = "PAYMENT_ERROR";
|
|
64
|
+
CreditNoteReason["PAYMENT_PLAN"] = "PAYMENT_PLAN";
|
|
64
65
|
CreditNoteReason["REFERRAL_REWARD"] = "REFERRAL_REWARD";
|
|
65
66
|
CreditNoteReason["RETENTION"] = "RETENTION";
|
|
66
67
|
CreditNoteReason["SALES_MIS_SOLD"] = "SALES_MISSOLD";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@d19n/youfibre-odin-sdk",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.303",
|
|
4
4
|
"description": "",
|
|
5
5
|
"author": "@d19n",
|
|
6
6
|
"license": "UNLICENSED",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
46
|
"@d19n/odin-sdk-generator": "^3.0.244",
|
|
47
|
-
"@d19n/odin-types": "^3.0
|
|
47
|
+
"@d19n/odin-types": "^3.1.0"
|
|
48
48
|
},
|
|
49
49
|
"scripts": {
|
|
50
50
|
"test:wholesale-provider": "npx --yes tsx src/wholesale-provider/test/netomnia-provider.spec.ts && npx --yes tsx src/wholesale-provider/test/kci-effect-bridge.spec.ts",
|