@d19n/youfibre-odin-sdk 1.0.299 → 1.0.300
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/entities-v2/Account.d.ts +125 -0
- package/dist/entities-v2/Account.js +136 -1
- package/dist/entities-v2/Case.d.ts +76 -0
- package/dist/entities-v2/Case.js +82 -2
- package/dist/entities-v2/ChurnRequest.d.ts +25 -0
- package/dist/entities-v2/ChurnRequest.js +28 -1
- package/dist/entities-v2/ContractBuyOut.d.ts +45 -0
- package/dist/entities-v2/ContractBuyOut.js +48 -1
- package/dist/entities-v2/DeactivationApproval.d.ts +29 -0
- package/dist/entities-v2/DeactivationApproval.js +32 -1
- package/dist/entities-v2/Lead.d.ts +33 -0
- package/dist/entities-v2/Lead.js +36 -1
- package/dist/entities-v2/Milestone.d.ts +33 -0
- package/dist/entities-v2/Milestone.js +36 -1
- package/dist/entities-v2/Order.d.ts +45 -0
- package/dist/entities-v2/Order.js +49 -2
- package/dist/entities-v2/OrderRemediationTask.d.ts +25 -0
- package/dist/entities-v2/OrderRemediationTask.js +28 -1
- package/dist/entities-v2/Outage.d.ts +33 -0
- package/dist/entities-v2/Outage.js +36 -1
- package/dist/entities-v2/PICRequest.d.ts +25 -0
- package/dist/entities-v2/PICRequest.js +28 -1
- package/dist/entities-v2/Payment.d.ts +37 -0
- package/dist/entities-v2/Payment.js +40 -1
- package/dist/entities-v2/PaymentMethodRefund.d.ts +29 -0
- package/dist/entities-v2/PaymentMethodRefund.js +32 -1
- package/dist/entities-v2/PgPaymentMethod.d.ts +57 -0
- package/dist/entities-v2/PgPaymentMethod.js +60 -1
- package/dist/entities-v2/PgTransaction.d.ts +49 -0
- package/dist/entities-v2/PgTransaction.js +52 -1
- package/dist/entities-v2/PgWebhook.d.ts +17 -0
- package/dist/entities-v2/PgWebhook.js +20 -1
- package/dist/entities-v2/PgWebhookAttempt.d.ts +17 -0
- package/dist/entities-v2/PgWebhookAttempt.js +20 -1
- package/dist/entities-v2/Program.d.ts +33 -0
- package/dist/entities-v2/Program.js +36 -1
- package/dist/entities-v2/Project.d.ts +33 -0
- package/dist/entities-v2/Project.js +36 -1
- package/dist/entities-v2/Referral.d.ts +41 -0
- package/dist/entities-v2/Referral.js +44 -1
- package/dist/entities-v2/Reward.d.ts +25 -0
- package/dist/entities-v2/Reward.js +28 -1
- package/dist/entities-v2/Subtask.d.ts +33 -0
- package/dist/entities-v2/Subtask.js +36 -1
- package/dist/entities-v2/Task.d.ts +33 -0
- package/dist/entities-v2/Task.js +36 -1
- package/dist/entities-v2/WorkOrder.d.ts +549 -0
- package/dist/entities-v2/WorkOrder.js +579 -3
- package/package.json +2 -2
|
@@ -38,6 +38,131 @@ export declare enum AccountEntityTypes {
|
|
|
38
38
|
/** This is the account where service is being delivered */
|
|
39
39
|
SERVICE = "SERVICE"
|
|
40
40
|
}
|
|
41
|
+
/**
|
|
42
|
+
* Pipeline stage names for BUSINESS Account
|
|
43
|
+
* Pipeline: Account
|
|
44
|
+
* accounts pipeline
|
|
45
|
+
*/
|
|
46
|
+
export declare enum BusinessAccountStageNames {
|
|
47
|
+
/** new */
|
|
48
|
+
New = "New",
|
|
49
|
+
/** active (success) */
|
|
50
|
+
Active = "Active",
|
|
51
|
+
/** inactive (fail) */
|
|
52
|
+
Inactive = "Inactive"
|
|
53
|
+
}
|
|
54
|
+
/**
|
|
55
|
+
* Pipeline stage keys for BUSINESS Account
|
|
56
|
+
* Use these keys when transitioning between stages
|
|
57
|
+
*/
|
|
58
|
+
export declare enum BusinessAccountStageKeys {
|
|
59
|
+
/** new */
|
|
60
|
+
New = "New",
|
|
61
|
+
/** active */
|
|
62
|
+
Active = "Active",
|
|
63
|
+
/** inactive */
|
|
64
|
+
Inactive = "Inactive"
|
|
65
|
+
}
|
|
66
|
+
/**
|
|
67
|
+
* Pipeline stage names for MULTIPLE Account
|
|
68
|
+
* Pipeline: Account
|
|
69
|
+
* accounts pipeline
|
|
70
|
+
*/
|
|
71
|
+
export declare enum MultipleAccountStageNames {
|
|
72
|
+
/** new */
|
|
73
|
+
New = "New",
|
|
74
|
+
/** active (success) */
|
|
75
|
+
Active = "Active",
|
|
76
|
+
/** inactive (fail) */
|
|
77
|
+
Inactive = "Inactive"
|
|
78
|
+
}
|
|
79
|
+
/**
|
|
80
|
+
* Pipeline stage keys for MULTIPLE Account
|
|
81
|
+
* Use these keys when transitioning between stages
|
|
82
|
+
*/
|
|
83
|
+
export declare enum MultipleAccountStageKeys {
|
|
84
|
+
/** new */
|
|
85
|
+
New = "New",
|
|
86
|
+
/** active */
|
|
87
|
+
Active = "Active",
|
|
88
|
+
/** inactive */
|
|
89
|
+
Inactive = "Inactive"
|
|
90
|
+
}
|
|
91
|
+
/**
|
|
92
|
+
* Pipeline stage names for PRIMARY Account
|
|
93
|
+
* Pipeline: Account
|
|
94
|
+
* accounts pipeline
|
|
95
|
+
*/
|
|
96
|
+
export declare enum PrimaryAccountStageNames {
|
|
97
|
+
/** new */
|
|
98
|
+
New = "New",
|
|
99
|
+
/** active (success) */
|
|
100
|
+
Active = "Active",
|
|
101
|
+
/** inactive (fail) */
|
|
102
|
+
Inactive = "Inactive"
|
|
103
|
+
}
|
|
104
|
+
/**
|
|
105
|
+
* Pipeline stage keys for PRIMARY Account
|
|
106
|
+
* Use these keys when transitioning between stages
|
|
107
|
+
*/
|
|
108
|
+
export declare enum PrimaryAccountStageKeys {
|
|
109
|
+
/** new */
|
|
110
|
+
New = "New",
|
|
111
|
+
/** active */
|
|
112
|
+
Active = "Active",
|
|
113
|
+
/** inactive */
|
|
114
|
+
Inactive = "Inactive"
|
|
115
|
+
}
|
|
116
|
+
/**
|
|
117
|
+
* Pipeline stage names for RESELLER Account
|
|
118
|
+
* Pipeline: Account
|
|
119
|
+
* accounts pipeline
|
|
120
|
+
*/
|
|
121
|
+
export declare enum ResellerAccountStageNames {
|
|
122
|
+
/** new */
|
|
123
|
+
New = "New",
|
|
124
|
+
/** active (success) */
|
|
125
|
+
Active = "Active",
|
|
126
|
+
/** inactive (fail) */
|
|
127
|
+
Inactive = "Inactive"
|
|
128
|
+
}
|
|
129
|
+
/**
|
|
130
|
+
* Pipeline stage keys for RESELLER Account
|
|
131
|
+
* Use these keys when transitioning between stages
|
|
132
|
+
*/
|
|
133
|
+
export declare enum ResellerAccountStageKeys {
|
|
134
|
+
/** new */
|
|
135
|
+
New = "New",
|
|
136
|
+
/** active */
|
|
137
|
+
Active = "Active",
|
|
138
|
+
/** inactive */
|
|
139
|
+
Inactive = "Inactive"
|
|
140
|
+
}
|
|
141
|
+
/**
|
|
142
|
+
* Pipeline stage names for SERVICE Account
|
|
143
|
+
* Pipeline: Account
|
|
144
|
+
* accounts pipeline
|
|
145
|
+
*/
|
|
146
|
+
export declare enum ServiceAccountStageNames {
|
|
147
|
+
/** new */
|
|
148
|
+
New = "New",
|
|
149
|
+
/** active (success) */
|
|
150
|
+
Active = "Active",
|
|
151
|
+
/** inactive (fail) */
|
|
152
|
+
Inactive = "Inactive"
|
|
153
|
+
}
|
|
154
|
+
/**
|
|
155
|
+
* Pipeline stage keys for SERVICE Account
|
|
156
|
+
* Use these keys when transitioning between stages
|
|
157
|
+
*/
|
|
158
|
+
export declare enum ServiceAccountStageKeys {
|
|
159
|
+
/** new */
|
|
160
|
+
New = "New",
|
|
161
|
+
/** active */
|
|
162
|
+
Active = "Active",
|
|
163
|
+
/** inactive */
|
|
164
|
+
Inactive = "Inactive"
|
|
165
|
+
}
|
|
41
166
|
/**
|
|
42
167
|
* Valid values for Account.PreviousProvider
|
|
43
168
|
*
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
* Generated from Odin schema definition
|
|
13
13
|
*/
|
|
14
14
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
-
exports.ROUTING_KEY_LINK_ACCOUNT_FILE_DELETED = exports.ROUTING_KEY_LINK_ACCOUNT_FILE_CREATED = exports.ROUTING_KEY_LINK_BILLING_CONTACT_DELETED = exports.ROUTING_KEY_LINK_BILLING_CONTACT_CREATED = exports.ROUTING_KEY_LINK_ACCOUNT_PAYMENT_DELETED = exports.ROUTING_KEY_LINK_ACCOUNT_PAYMENT_CREATED = exports.ROUTING_KEY_LINK_ACCOUNT_CASE_DELETED = exports.ROUTING_KEY_LINK_ACCOUNT_CASE_CREATED = exports.ROUTING_KEY_LINK_BILLING_ADDRESS_DELETED = exports.ROUTING_KEY_LINK_BILLING_ADDRESS_CREATED = exports.ROUTING_KEY_LINK_ACCOUNT_MOBILE_CONFIGURATION_DELETED = exports.ROUTING_KEY_LINK_ACCOUNT_MOBILE_CONFIGURATION_CREATED = exports.ROUTING_KEY_LINK_ACCOUNT_ACCOUNT_DELETED = exports.ROUTING_KEY_LINK_ACCOUNT_ACCOUNT_CREATED = exports.ROUTING_KEY_LINK_ACCOUNT_INVOICE_DELETED = exports.ROUTING_KEY_LINK_ACCOUNT_INVOICE_CREATED = exports.ROUTING_KEY_LINK_ACCOUNT_ORDER_DELETED = exports.ROUTING_KEY_LINK_ACCOUNT_ORDER_CREATED = exports.ROUTING_KEY_LINK_ACCOUNT_ONE_TOUCH_SWITCH_DELETED = exports.ROUTING_KEY_LINK_ACCOUNT_ONE_TOUCH_SWITCH_CREATED = exports.ROUTING_KEY_LINK_ACCOUNT_NOTE_DELETED = exports.ROUTING_KEY_LINK_ACCOUNT_NOTE_CREATED = exports.ROUTING_KEY_LINK_ACCOUNT_ORGANIZATION_DELETED = exports.ROUTING_KEY_LINK_ACCOUNT_ORGANIZATION_CREATED = exports.ROUTING_KEY_LINK_ACCOUNT_WORK_ORDER_DELETED = exports.ROUTING_KEY_LINK_ACCOUNT_WORK_ORDER_CREATED = exports.ROUTING_KEY_ACCOUNT_DELETED = exports.ROUTING_KEY_ACCOUNT_UPDATED = exports.ROUTING_KEY_ACCOUNT_CREATED = exports.Account = exports.AccountPropertyKeys = exports.AccountGroupBilling = exports.AccountBillingMode = exports.AccountType = exports.AccountStatus = exports.AccountPreviousProvider = exports.AccountEntityTypes = void 0;
|
|
15
|
+
exports.ROUTING_KEY_LINK_ACCOUNT_FILE_DELETED = exports.ROUTING_KEY_LINK_ACCOUNT_FILE_CREATED = exports.ROUTING_KEY_LINK_BILLING_CONTACT_DELETED = exports.ROUTING_KEY_LINK_BILLING_CONTACT_CREATED = exports.ROUTING_KEY_LINK_ACCOUNT_PAYMENT_DELETED = exports.ROUTING_KEY_LINK_ACCOUNT_PAYMENT_CREATED = exports.ROUTING_KEY_LINK_ACCOUNT_CASE_DELETED = exports.ROUTING_KEY_LINK_ACCOUNT_CASE_CREATED = exports.ROUTING_KEY_LINK_BILLING_ADDRESS_DELETED = exports.ROUTING_KEY_LINK_BILLING_ADDRESS_CREATED = exports.ROUTING_KEY_LINK_ACCOUNT_MOBILE_CONFIGURATION_DELETED = exports.ROUTING_KEY_LINK_ACCOUNT_MOBILE_CONFIGURATION_CREATED = exports.ROUTING_KEY_LINK_ACCOUNT_ACCOUNT_DELETED = exports.ROUTING_KEY_LINK_ACCOUNT_ACCOUNT_CREATED = exports.ROUTING_KEY_LINK_ACCOUNT_INVOICE_DELETED = exports.ROUTING_KEY_LINK_ACCOUNT_INVOICE_CREATED = exports.ROUTING_KEY_LINK_ACCOUNT_ORDER_DELETED = exports.ROUTING_KEY_LINK_ACCOUNT_ORDER_CREATED = exports.ROUTING_KEY_LINK_ACCOUNT_ONE_TOUCH_SWITCH_DELETED = exports.ROUTING_KEY_LINK_ACCOUNT_ONE_TOUCH_SWITCH_CREATED = exports.ROUTING_KEY_LINK_ACCOUNT_NOTE_DELETED = exports.ROUTING_KEY_LINK_ACCOUNT_NOTE_CREATED = exports.ROUTING_KEY_LINK_ACCOUNT_ORGANIZATION_DELETED = exports.ROUTING_KEY_LINK_ACCOUNT_ORGANIZATION_CREATED = exports.ROUTING_KEY_LINK_ACCOUNT_WORK_ORDER_DELETED = exports.ROUTING_KEY_LINK_ACCOUNT_WORK_ORDER_CREATED = exports.ROUTING_KEY_ACCOUNT_DELETED = exports.ROUTING_KEY_ACCOUNT_UPDATED = exports.ROUTING_KEY_ACCOUNT_CREATED = exports.Account = exports.AccountPropertyKeys = exports.AccountGroupBilling = exports.AccountBillingMode = exports.AccountType = exports.AccountStatus = exports.AccountPreviousProvider = exports.ServiceAccountStageKeys = exports.ServiceAccountStageNames = exports.ResellerAccountStageKeys = exports.ResellerAccountStageNames = exports.PrimaryAccountStageKeys = exports.PrimaryAccountStageNames = exports.MultipleAccountStageKeys = exports.MultipleAccountStageNames = exports.BusinessAccountStageKeys = exports.BusinessAccountStageNames = exports.AccountEntityTypes = void 0;
|
|
16
16
|
const core_1 = require("@d19n/odin-types/dist/core");
|
|
17
17
|
/**
|
|
18
18
|
* Available types for Account records
|
|
@@ -30,6 +30,141 @@ var AccountEntityTypes;
|
|
|
30
30
|
/** This is the account where service is being delivered */
|
|
31
31
|
AccountEntityTypes["SERVICE"] = "SERVICE";
|
|
32
32
|
})(AccountEntityTypes = exports.AccountEntityTypes || (exports.AccountEntityTypes = {}));
|
|
33
|
+
/**
|
|
34
|
+
* Pipeline stage names for BUSINESS Account
|
|
35
|
+
* Pipeline: Account
|
|
36
|
+
* accounts pipeline
|
|
37
|
+
*/
|
|
38
|
+
var BusinessAccountStageNames;
|
|
39
|
+
(function (BusinessAccountStageNames) {
|
|
40
|
+
/** new */
|
|
41
|
+
BusinessAccountStageNames["New"] = "New";
|
|
42
|
+
/** active (success) */
|
|
43
|
+
BusinessAccountStageNames["Active"] = "Active";
|
|
44
|
+
/** inactive (fail) */
|
|
45
|
+
BusinessAccountStageNames["Inactive"] = "Inactive";
|
|
46
|
+
})(BusinessAccountStageNames = exports.BusinessAccountStageNames || (exports.BusinessAccountStageNames = {}));
|
|
47
|
+
/**
|
|
48
|
+
* Pipeline stage keys for BUSINESS Account
|
|
49
|
+
* Use these keys when transitioning between stages
|
|
50
|
+
*/
|
|
51
|
+
var BusinessAccountStageKeys;
|
|
52
|
+
(function (BusinessAccountStageKeys) {
|
|
53
|
+
/** new */
|
|
54
|
+
BusinessAccountStageKeys["New"] = "New";
|
|
55
|
+
/** active */
|
|
56
|
+
BusinessAccountStageKeys["Active"] = "Active";
|
|
57
|
+
/** inactive */
|
|
58
|
+
BusinessAccountStageKeys["Inactive"] = "Inactive";
|
|
59
|
+
})(BusinessAccountStageKeys = exports.BusinessAccountStageKeys || (exports.BusinessAccountStageKeys = {}));
|
|
60
|
+
/**
|
|
61
|
+
* Pipeline stage names for MULTIPLE Account
|
|
62
|
+
* Pipeline: Account
|
|
63
|
+
* accounts pipeline
|
|
64
|
+
*/
|
|
65
|
+
var MultipleAccountStageNames;
|
|
66
|
+
(function (MultipleAccountStageNames) {
|
|
67
|
+
/** new */
|
|
68
|
+
MultipleAccountStageNames["New"] = "New";
|
|
69
|
+
/** active (success) */
|
|
70
|
+
MultipleAccountStageNames["Active"] = "Active";
|
|
71
|
+
/** inactive (fail) */
|
|
72
|
+
MultipleAccountStageNames["Inactive"] = "Inactive";
|
|
73
|
+
})(MultipleAccountStageNames = exports.MultipleAccountStageNames || (exports.MultipleAccountStageNames = {}));
|
|
74
|
+
/**
|
|
75
|
+
* Pipeline stage keys for MULTIPLE Account
|
|
76
|
+
* Use these keys when transitioning between stages
|
|
77
|
+
*/
|
|
78
|
+
var MultipleAccountStageKeys;
|
|
79
|
+
(function (MultipleAccountStageKeys) {
|
|
80
|
+
/** new */
|
|
81
|
+
MultipleAccountStageKeys["New"] = "New";
|
|
82
|
+
/** active */
|
|
83
|
+
MultipleAccountStageKeys["Active"] = "Active";
|
|
84
|
+
/** inactive */
|
|
85
|
+
MultipleAccountStageKeys["Inactive"] = "Inactive";
|
|
86
|
+
})(MultipleAccountStageKeys = exports.MultipleAccountStageKeys || (exports.MultipleAccountStageKeys = {}));
|
|
87
|
+
/**
|
|
88
|
+
* Pipeline stage names for PRIMARY Account
|
|
89
|
+
* Pipeline: Account
|
|
90
|
+
* accounts pipeline
|
|
91
|
+
*/
|
|
92
|
+
var PrimaryAccountStageNames;
|
|
93
|
+
(function (PrimaryAccountStageNames) {
|
|
94
|
+
/** new */
|
|
95
|
+
PrimaryAccountStageNames["New"] = "New";
|
|
96
|
+
/** active (success) */
|
|
97
|
+
PrimaryAccountStageNames["Active"] = "Active";
|
|
98
|
+
/** inactive (fail) */
|
|
99
|
+
PrimaryAccountStageNames["Inactive"] = "Inactive";
|
|
100
|
+
})(PrimaryAccountStageNames = exports.PrimaryAccountStageNames || (exports.PrimaryAccountStageNames = {}));
|
|
101
|
+
/**
|
|
102
|
+
* Pipeline stage keys for PRIMARY Account
|
|
103
|
+
* Use these keys when transitioning between stages
|
|
104
|
+
*/
|
|
105
|
+
var PrimaryAccountStageKeys;
|
|
106
|
+
(function (PrimaryAccountStageKeys) {
|
|
107
|
+
/** new */
|
|
108
|
+
PrimaryAccountStageKeys["New"] = "New";
|
|
109
|
+
/** active */
|
|
110
|
+
PrimaryAccountStageKeys["Active"] = "Active";
|
|
111
|
+
/** inactive */
|
|
112
|
+
PrimaryAccountStageKeys["Inactive"] = "Inactive";
|
|
113
|
+
})(PrimaryAccountStageKeys = exports.PrimaryAccountStageKeys || (exports.PrimaryAccountStageKeys = {}));
|
|
114
|
+
/**
|
|
115
|
+
* Pipeline stage names for RESELLER Account
|
|
116
|
+
* Pipeline: Account
|
|
117
|
+
* accounts pipeline
|
|
118
|
+
*/
|
|
119
|
+
var ResellerAccountStageNames;
|
|
120
|
+
(function (ResellerAccountStageNames) {
|
|
121
|
+
/** new */
|
|
122
|
+
ResellerAccountStageNames["New"] = "New";
|
|
123
|
+
/** active (success) */
|
|
124
|
+
ResellerAccountStageNames["Active"] = "Active";
|
|
125
|
+
/** inactive (fail) */
|
|
126
|
+
ResellerAccountStageNames["Inactive"] = "Inactive";
|
|
127
|
+
})(ResellerAccountStageNames = exports.ResellerAccountStageNames || (exports.ResellerAccountStageNames = {}));
|
|
128
|
+
/**
|
|
129
|
+
* Pipeline stage keys for RESELLER Account
|
|
130
|
+
* Use these keys when transitioning between stages
|
|
131
|
+
*/
|
|
132
|
+
var ResellerAccountStageKeys;
|
|
133
|
+
(function (ResellerAccountStageKeys) {
|
|
134
|
+
/** new */
|
|
135
|
+
ResellerAccountStageKeys["New"] = "New";
|
|
136
|
+
/** active */
|
|
137
|
+
ResellerAccountStageKeys["Active"] = "Active";
|
|
138
|
+
/** inactive */
|
|
139
|
+
ResellerAccountStageKeys["Inactive"] = "Inactive";
|
|
140
|
+
})(ResellerAccountStageKeys = exports.ResellerAccountStageKeys || (exports.ResellerAccountStageKeys = {}));
|
|
141
|
+
/**
|
|
142
|
+
* Pipeline stage names for SERVICE Account
|
|
143
|
+
* Pipeline: Account
|
|
144
|
+
* accounts pipeline
|
|
145
|
+
*/
|
|
146
|
+
var ServiceAccountStageNames;
|
|
147
|
+
(function (ServiceAccountStageNames) {
|
|
148
|
+
/** new */
|
|
149
|
+
ServiceAccountStageNames["New"] = "New";
|
|
150
|
+
/** active (success) */
|
|
151
|
+
ServiceAccountStageNames["Active"] = "Active";
|
|
152
|
+
/** inactive (fail) */
|
|
153
|
+
ServiceAccountStageNames["Inactive"] = "Inactive";
|
|
154
|
+
})(ServiceAccountStageNames = exports.ServiceAccountStageNames || (exports.ServiceAccountStageNames = {}));
|
|
155
|
+
/**
|
|
156
|
+
* Pipeline stage keys for SERVICE Account
|
|
157
|
+
* Use these keys when transitioning between stages
|
|
158
|
+
*/
|
|
159
|
+
var ServiceAccountStageKeys;
|
|
160
|
+
(function (ServiceAccountStageKeys) {
|
|
161
|
+
/** new */
|
|
162
|
+
ServiceAccountStageKeys["New"] = "New";
|
|
163
|
+
/** active */
|
|
164
|
+
ServiceAccountStageKeys["Active"] = "Active";
|
|
165
|
+
/** inactive */
|
|
166
|
+
ServiceAccountStageKeys["Inactive"] = "Inactive";
|
|
167
|
+
})(ServiceAccountStageKeys = exports.ServiceAccountStageKeys || (exports.ServiceAccountStageKeys = {}));
|
|
33
168
|
/**
|
|
34
169
|
* Valid values for Account.PreviousProvider
|
|
35
170
|
*
|
|
@@ -39,6 +39,82 @@ export declare enum CaseEntityTypes {
|
|
|
39
39
|
/** Outage */
|
|
40
40
|
OUTAGE = "OUTAGE"
|
|
41
41
|
}
|
|
42
|
+
/**
|
|
43
|
+
* Pipeline stage names for DEFAULT Case
|
|
44
|
+
* Pipeline: Case Default
|
|
45
|
+
* case management pipeline
|
|
46
|
+
*/
|
|
47
|
+
export declare enum DefaultCaseStageNames {
|
|
48
|
+
/** The case is open and needs to be processed (default) */
|
|
49
|
+
Open = "Open",
|
|
50
|
+
Blocked = "Blocked",
|
|
51
|
+
/** Pending Reply */
|
|
52
|
+
PendingReply = "Pending Reply",
|
|
53
|
+
/** Pending Agent */
|
|
54
|
+
PendingAgent = "Pending Agent",
|
|
55
|
+
/** Pending Review */
|
|
56
|
+
PendingReview = "Pending Review",
|
|
57
|
+
/** The case is resolved (success) */
|
|
58
|
+
Solved = "Solved",
|
|
59
|
+
/** The case is closed (fail) */
|
|
60
|
+
Closed = "Closed",
|
|
61
|
+
/** Escalated */
|
|
62
|
+
Escalated = "Escalated"
|
|
63
|
+
}
|
|
64
|
+
/**
|
|
65
|
+
* Pipeline stage keys for DEFAULT Case
|
|
66
|
+
* Use these keys when transitioning between stages
|
|
67
|
+
*/
|
|
68
|
+
export declare enum DefaultCaseStageKeys {
|
|
69
|
+
/** The case is open and needs to be processed */
|
|
70
|
+
CaseDefaultStageOpen = "CaseDefaultStageOpen",
|
|
71
|
+
CaseDefaultStageBlocked = "CaseDefaultStageBlocked",
|
|
72
|
+
/** Pending Reply */
|
|
73
|
+
CaseDefaultStagePendingReply = "CaseDefaultStagePendingReply",
|
|
74
|
+
/** Pending Agent */
|
|
75
|
+
CaseDefaultStagePendingAgent = "CaseDefaultStagePendingAgent",
|
|
76
|
+
/** Pending Review */
|
|
77
|
+
CaseDefaultStagePendingReview = "CaseDefaultStagePendingReview",
|
|
78
|
+
/** The case is resolved */
|
|
79
|
+
CaseDefaultStageSolved = "CaseDefaultStageSolved",
|
|
80
|
+
/** The case is closed */
|
|
81
|
+
CaseDefaultStageClosed = "CaseDefaultStageClosed",
|
|
82
|
+
/** Escalated */
|
|
83
|
+
CaseDefaultStageEscalated = "CaseDefaultStageEscalated"
|
|
84
|
+
}
|
|
85
|
+
/**
|
|
86
|
+
* Pipeline stage names for OUTAGE Case
|
|
87
|
+
* Pipeline: Outage pipeline
|
|
88
|
+
* Case management for outages
|
|
89
|
+
*/
|
|
90
|
+
export declare enum OutageCaseStageNames {
|
|
91
|
+
/** new outage planned or unplanned (default) */
|
|
92
|
+
New = "New",
|
|
93
|
+
/** Team has confirmed the outage exists or the maintenance is approved. */
|
|
94
|
+
Acknowledged = "Acknowledged",
|
|
95
|
+
/** Restoration work (unplanned) or maintenance tasks (planned) are actively happening. */
|
|
96
|
+
InProgress = "In Progress",
|
|
97
|
+
/** Outage or maintenance work is complete. (success) */
|
|
98
|
+
Solved = "Solved",
|
|
99
|
+
/** Verification done. Final notifications sent. Post-mortem or documentation completed (if required). */
|
|
100
|
+
Closed = "Closed"
|
|
101
|
+
}
|
|
102
|
+
/**
|
|
103
|
+
* Pipeline stage keys for OUTAGE Case
|
|
104
|
+
* Use these keys when transitioning between stages
|
|
105
|
+
*/
|
|
106
|
+
export declare enum OutageCaseStageKeys {
|
|
107
|
+
/** new outage planned or unplanned */
|
|
108
|
+
OutagePipelineStageNew = "OutagePipelineStageNew",
|
|
109
|
+
/** Team has confirmed the outage exists or the maintenance is approved. */
|
|
110
|
+
OutagePipelineStageAcknowledged = "OutagePipelineStageAcknowledged",
|
|
111
|
+
/** Restoration work (unplanned) or maintenance tasks (planned) are actively happening. */
|
|
112
|
+
OutagePipelineStageInProgress = "OutagePipelineStageInProgress",
|
|
113
|
+
/** Outage or maintenance work is complete. */
|
|
114
|
+
OutagePipelineStageSolved = "OutagePipelineStageSolved",
|
|
115
|
+
/** Verification done. Final notifications sent. Post-mortem or documentation completed (if required). */
|
|
116
|
+
OutagePipelineStageClosed = "OutagePipelineStageClosed"
|
|
117
|
+
}
|
|
42
118
|
/**
|
|
43
119
|
* Valid values for Case.BusinessArea
|
|
44
120
|
*
|
package/dist/entities-v2/Case.js
CHANGED
|
@@ -12,8 +12,8 @@
|
|
|
12
12
|
* Generated from Odin schema definition
|
|
13
13
|
*/
|
|
14
14
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
-
exports.
|
|
16
|
-
exports.ROUTING_KEY_LINK_CASE_ADDRESS_DELETED = exports.ROUTING_KEY_LINK_CASE_ADDRESS_CREATED = exports.ROUTING_KEY_LINK_CASE_CONTACT_DELETED = exports.ROUTING_KEY_LINK_CASE_CONTACT_CREATED = exports.ROUTING_KEY_LINK_CASE_QUEUE_CHANGE_DELETED = exports.ROUTING_KEY_LINK_CASE_QUEUE_CHANGE_CREATED = void 0;
|
|
15
|
+
exports.ROUTING_KEY_LINK_CASE_FILE_DELETED = exports.ROUTING_KEY_LINK_CASE_FILE_CREATED = exports.ROUTING_KEY_LINK_CASE_CASE_DELETED = exports.ROUTING_KEY_LINK_CASE_CASE_CREATED = exports.ROUTING_KEY_LINK_CASE_CONVERSATION_DELETED = exports.ROUTING_KEY_LINK_CASE_CONVERSATION_CREATED = exports.ROUTING_KEY_LINK_CASE_WORK_ORDER_DELETED = exports.ROUTING_KEY_LINK_CASE_WORK_ORDER_CREATED = exports.ROUTING_KEY_LINK_CASE_NOTE_DELETED = exports.ROUTING_KEY_LINK_CASE_NOTE_CREATED = exports.ROUTING_KEY_LINK_CASE_TEAM_DELETED = exports.ROUTING_KEY_LINK_CASE_TEAM_CREATED = exports.ROUTING_KEY_LINK_CASE_CONTRACT_BUY_OUT_DELETED = exports.ROUTING_KEY_LINK_CASE_CONTRACT_BUY_OUT_CREATED = exports.ROUTING_KEY_LINK_CASE_EMAIL_DELETED = exports.ROUTING_KEY_LINK_CASE_EMAIL_CREATED = exports.ROUTING_KEY_LINK_CASE_SMS_MESSAGE_DELETED = exports.ROUTING_KEY_LINK_CASE_SMS_MESSAGE_CREATED = exports.ROUTING_KEY_LINK_CASE_OWNER_DELETED = exports.ROUTING_KEY_LINK_CASE_OWNER_CREATED = exports.ROUTING_KEY_LINK_CASE_ACTIVITY_LOG_DELETED = exports.ROUTING_KEY_LINK_CASE_ACTIVITY_LOG_CREATED = exports.ROUTING_KEY_CASE_DELETED = exports.ROUTING_KEY_CASE_UPDATED = exports.ROUTING_KEY_CASE_CREATED = exports.Case = exports.CasePropertyKeys = exports.CaseComplaint = exports.CaseFormalComplaint = exports.CaseConversationStatus = exports.CaseCategory = exports.CaseProblem = exports.CaseSource = exports.CaseImpact = exports.CaseCsatReason = exports.CaseDpaCustomerType = exports.CaseSubCategory = exports.CaseReasonForReview = exports.CaseDpaCustomerCategory = exports.CaseBlockedReason = exports.CaseChannel = exports.CaseSla = exports.CaseOrigin = exports.CaseDeprecated = exports.CaseBusinessArea = exports.OutageCaseStageKeys = exports.OutageCaseStageNames = exports.DefaultCaseStageKeys = exports.DefaultCaseStageNames = exports.CaseEntityTypes = void 0;
|
|
16
|
+
exports.ROUTING_KEY_LINK_CASE_ADDRESS_DELETED = exports.ROUTING_KEY_LINK_CASE_ADDRESS_CREATED = exports.ROUTING_KEY_LINK_CASE_CONTACT_DELETED = exports.ROUTING_KEY_LINK_CASE_CONTACT_CREATED = exports.ROUTING_KEY_LINK_CASE_QUEUE_CHANGE_DELETED = exports.ROUTING_KEY_LINK_CASE_QUEUE_CHANGE_CREATED = exports.ROUTING_KEY_LINK_CASE_ORDER_DELETED = exports.ROUTING_KEY_LINK_CASE_ORDER_CREATED = exports.ROUTING_KEY_LINK_CASE_CASE_ACTION_DELETED = exports.ROUTING_KEY_LINK_CASE_CASE_ACTION_CREATED = void 0;
|
|
17
17
|
const core_1 = require("@d19n/odin-types/dist/core");
|
|
18
18
|
/**
|
|
19
19
|
* Available types for Case records
|
|
@@ -25,6 +25,86 @@ var CaseEntityTypes;
|
|
|
25
25
|
/** Outage */
|
|
26
26
|
CaseEntityTypes["OUTAGE"] = "OUTAGE";
|
|
27
27
|
})(CaseEntityTypes = exports.CaseEntityTypes || (exports.CaseEntityTypes = {}));
|
|
28
|
+
/**
|
|
29
|
+
* Pipeline stage names for DEFAULT Case
|
|
30
|
+
* Pipeline: Case Default
|
|
31
|
+
* case management pipeline
|
|
32
|
+
*/
|
|
33
|
+
var DefaultCaseStageNames;
|
|
34
|
+
(function (DefaultCaseStageNames) {
|
|
35
|
+
/** The case is open and needs to be processed (default) */
|
|
36
|
+
DefaultCaseStageNames["Open"] = "Open";
|
|
37
|
+
DefaultCaseStageNames["Blocked"] = "Blocked";
|
|
38
|
+
/** Pending Reply */
|
|
39
|
+
DefaultCaseStageNames["PendingReply"] = "Pending Reply";
|
|
40
|
+
/** Pending Agent */
|
|
41
|
+
DefaultCaseStageNames["PendingAgent"] = "Pending Agent";
|
|
42
|
+
/** Pending Review */
|
|
43
|
+
DefaultCaseStageNames["PendingReview"] = "Pending Review";
|
|
44
|
+
/** The case is resolved (success) */
|
|
45
|
+
DefaultCaseStageNames["Solved"] = "Solved";
|
|
46
|
+
/** The case is closed (fail) */
|
|
47
|
+
DefaultCaseStageNames["Closed"] = "Closed";
|
|
48
|
+
/** Escalated */
|
|
49
|
+
DefaultCaseStageNames["Escalated"] = "Escalated";
|
|
50
|
+
})(DefaultCaseStageNames = exports.DefaultCaseStageNames || (exports.DefaultCaseStageNames = {}));
|
|
51
|
+
/**
|
|
52
|
+
* Pipeline stage keys for DEFAULT Case
|
|
53
|
+
* Use these keys when transitioning between stages
|
|
54
|
+
*/
|
|
55
|
+
var DefaultCaseStageKeys;
|
|
56
|
+
(function (DefaultCaseStageKeys) {
|
|
57
|
+
/** The case is open and needs to be processed */
|
|
58
|
+
DefaultCaseStageKeys["CaseDefaultStageOpen"] = "CaseDefaultStageOpen";
|
|
59
|
+
DefaultCaseStageKeys["CaseDefaultStageBlocked"] = "CaseDefaultStageBlocked";
|
|
60
|
+
/** Pending Reply */
|
|
61
|
+
DefaultCaseStageKeys["CaseDefaultStagePendingReply"] = "CaseDefaultStagePendingReply";
|
|
62
|
+
/** Pending Agent */
|
|
63
|
+
DefaultCaseStageKeys["CaseDefaultStagePendingAgent"] = "CaseDefaultStagePendingAgent";
|
|
64
|
+
/** Pending Review */
|
|
65
|
+
DefaultCaseStageKeys["CaseDefaultStagePendingReview"] = "CaseDefaultStagePendingReview";
|
|
66
|
+
/** The case is resolved */
|
|
67
|
+
DefaultCaseStageKeys["CaseDefaultStageSolved"] = "CaseDefaultStageSolved";
|
|
68
|
+
/** The case is closed */
|
|
69
|
+
DefaultCaseStageKeys["CaseDefaultStageClosed"] = "CaseDefaultStageClosed";
|
|
70
|
+
/** Escalated */
|
|
71
|
+
DefaultCaseStageKeys["CaseDefaultStageEscalated"] = "CaseDefaultStageEscalated";
|
|
72
|
+
})(DefaultCaseStageKeys = exports.DefaultCaseStageKeys || (exports.DefaultCaseStageKeys = {}));
|
|
73
|
+
/**
|
|
74
|
+
* Pipeline stage names for OUTAGE Case
|
|
75
|
+
* Pipeline: Outage pipeline
|
|
76
|
+
* Case management for outages
|
|
77
|
+
*/
|
|
78
|
+
var OutageCaseStageNames;
|
|
79
|
+
(function (OutageCaseStageNames) {
|
|
80
|
+
/** new outage planned or unplanned (default) */
|
|
81
|
+
OutageCaseStageNames["New"] = "New";
|
|
82
|
+
/** Team has confirmed the outage exists or the maintenance is approved. */
|
|
83
|
+
OutageCaseStageNames["Acknowledged"] = "Acknowledged";
|
|
84
|
+
/** Restoration work (unplanned) or maintenance tasks (planned) are actively happening. */
|
|
85
|
+
OutageCaseStageNames["InProgress"] = "In Progress";
|
|
86
|
+
/** Outage or maintenance work is complete. (success) */
|
|
87
|
+
OutageCaseStageNames["Solved"] = "Solved";
|
|
88
|
+
/** Verification done. Final notifications sent. Post-mortem or documentation completed (if required). */
|
|
89
|
+
OutageCaseStageNames["Closed"] = "Closed";
|
|
90
|
+
})(OutageCaseStageNames = exports.OutageCaseStageNames || (exports.OutageCaseStageNames = {}));
|
|
91
|
+
/**
|
|
92
|
+
* Pipeline stage keys for OUTAGE Case
|
|
93
|
+
* Use these keys when transitioning between stages
|
|
94
|
+
*/
|
|
95
|
+
var OutageCaseStageKeys;
|
|
96
|
+
(function (OutageCaseStageKeys) {
|
|
97
|
+
/** new outage planned or unplanned */
|
|
98
|
+
OutageCaseStageKeys["OutagePipelineStageNew"] = "OutagePipelineStageNew";
|
|
99
|
+
/** Team has confirmed the outage exists or the maintenance is approved. */
|
|
100
|
+
OutageCaseStageKeys["OutagePipelineStageAcknowledged"] = "OutagePipelineStageAcknowledged";
|
|
101
|
+
/** Restoration work (unplanned) or maintenance tasks (planned) are actively happening. */
|
|
102
|
+
OutageCaseStageKeys["OutagePipelineStageInProgress"] = "OutagePipelineStageInProgress";
|
|
103
|
+
/** Outage or maintenance work is complete. */
|
|
104
|
+
OutageCaseStageKeys["OutagePipelineStageSolved"] = "OutagePipelineStageSolved";
|
|
105
|
+
/** Verification done. Final notifications sent. Post-mortem or documentation completed (if required). */
|
|
106
|
+
OutageCaseStageKeys["OutagePipelineStageClosed"] = "OutagePipelineStageClosed";
|
|
107
|
+
})(OutageCaseStageKeys = exports.OutageCaseStageKeys || (exports.OutageCaseStageKeys = {}));
|
|
28
108
|
/**
|
|
29
109
|
* Valid values for Case.BusinessArea
|
|
30
110
|
*
|
|
@@ -20,6 +20,31 @@ export declare enum ChurnRequestEntityTypes {
|
|
|
20
20
|
/** This is the default record type */
|
|
21
21
|
DEFAULT = "DEFAULT"
|
|
22
22
|
}
|
|
23
|
+
/**
|
|
24
|
+
* Pipeline stage names for DEFAULT ChurnRequest
|
|
25
|
+
* Pipeline: Churn Request Pipeline
|
|
26
|
+
* Churn Request Pipeline
|
|
27
|
+
*/
|
|
28
|
+
export declare enum DefaultChurnRequestStageNames {
|
|
29
|
+
/** To-Do (default) */
|
|
30
|
+
ToDo = "To-Do",
|
|
31
|
+
/** In-Progress */
|
|
32
|
+
InProgress = "In-Progress",
|
|
33
|
+
/** Done (success) */
|
|
34
|
+
Done = "Done"
|
|
35
|
+
}
|
|
36
|
+
/**
|
|
37
|
+
* Pipeline stage keys for DEFAULT ChurnRequest
|
|
38
|
+
* Use these keys when transitioning between stages
|
|
39
|
+
*/
|
|
40
|
+
export declare enum DefaultChurnRequestStageKeys {
|
|
41
|
+
/** To-Do */
|
|
42
|
+
ChurnRequestStageToDo = "ChurnRequestStageToDo",
|
|
43
|
+
/** In-Progress */
|
|
44
|
+
ChurnRequestStageInProgress = "ChurnRequestStageInProgress",
|
|
45
|
+
/** Done */
|
|
46
|
+
ChurnRequestStageDone = "ChurnRequestStageDone"
|
|
47
|
+
}
|
|
23
48
|
/**
|
|
24
49
|
* Valid values for ChurnRequest.Outcome
|
|
25
50
|
*
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
* Generated from Odin schema definition
|
|
13
13
|
*/
|
|
14
14
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
-
exports.ROUTING_KEY_LINK_CHURN_REQUEST_ORDER_DELETED = exports.ROUTING_KEY_LINK_CHURN_REQUEST_ORDER_CREATED = exports.ROUTING_KEY_LINK_CHURN_REQUEST_NOTE_DELETED = exports.ROUTING_KEY_LINK_CHURN_REQUEST_NOTE_CREATED = exports.ROUTING_KEY_CHURN_REQUEST_DELETED = exports.ROUTING_KEY_CHURN_REQUEST_UPDATED = exports.ROUTING_KEY_CHURN_REQUEST_CREATED = exports.ChurnRequest = exports.ChurnRequestPropertyKeys = exports.ChurnRequestReason = exports.ChurnRequestOutcome = exports.ChurnRequestEntityTypes = void 0;
|
|
15
|
+
exports.ROUTING_KEY_LINK_CHURN_REQUEST_ORDER_DELETED = exports.ROUTING_KEY_LINK_CHURN_REQUEST_ORDER_CREATED = exports.ROUTING_KEY_LINK_CHURN_REQUEST_NOTE_DELETED = exports.ROUTING_KEY_LINK_CHURN_REQUEST_NOTE_CREATED = exports.ROUTING_KEY_CHURN_REQUEST_DELETED = exports.ROUTING_KEY_CHURN_REQUEST_UPDATED = exports.ROUTING_KEY_CHURN_REQUEST_CREATED = exports.ChurnRequest = exports.ChurnRequestPropertyKeys = exports.ChurnRequestReason = exports.ChurnRequestOutcome = exports.DefaultChurnRequestStageKeys = exports.DefaultChurnRequestStageNames = exports.ChurnRequestEntityTypes = void 0;
|
|
16
16
|
const core_1 = require("@d19n/odin-types/dist/core");
|
|
17
17
|
/**
|
|
18
18
|
* Available types for ChurnRequest records
|
|
@@ -22,6 +22,33 @@ var ChurnRequestEntityTypes;
|
|
|
22
22
|
/** This is the default record type */
|
|
23
23
|
ChurnRequestEntityTypes["DEFAULT"] = "DEFAULT";
|
|
24
24
|
})(ChurnRequestEntityTypes = exports.ChurnRequestEntityTypes || (exports.ChurnRequestEntityTypes = {}));
|
|
25
|
+
/**
|
|
26
|
+
* Pipeline stage names for DEFAULT ChurnRequest
|
|
27
|
+
* Pipeline: Churn Request Pipeline
|
|
28
|
+
* Churn Request Pipeline
|
|
29
|
+
*/
|
|
30
|
+
var DefaultChurnRequestStageNames;
|
|
31
|
+
(function (DefaultChurnRequestStageNames) {
|
|
32
|
+
/** To-Do (default) */
|
|
33
|
+
DefaultChurnRequestStageNames["ToDo"] = "To-Do";
|
|
34
|
+
/** In-Progress */
|
|
35
|
+
DefaultChurnRequestStageNames["InProgress"] = "In-Progress";
|
|
36
|
+
/** Done (success) */
|
|
37
|
+
DefaultChurnRequestStageNames["Done"] = "Done";
|
|
38
|
+
})(DefaultChurnRequestStageNames = exports.DefaultChurnRequestStageNames || (exports.DefaultChurnRequestStageNames = {}));
|
|
39
|
+
/**
|
|
40
|
+
* Pipeline stage keys for DEFAULT ChurnRequest
|
|
41
|
+
* Use these keys when transitioning between stages
|
|
42
|
+
*/
|
|
43
|
+
var DefaultChurnRequestStageKeys;
|
|
44
|
+
(function (DefaultChurnRequestStageKeys) {
|
|
45
|
+
/** To-Do */
|
|
46
|
+
DefaultChurnRequestStageKeys["ChurnRequestStageToDo"] = "ChurnRequestStageToDo";
|
|
47
|
+
/** In-Progress */
|
|
48
|
+
DefaultChurnRequestStageKeys["ChurnRequestStageInProgress"] = "ChurnRequestStageInProgress";
|
|
49
|
+
/** Done */
|
|
50
|
+
DefaultChurnRequestStageKeys["ChurnRequestStageDone"] = "ChurnRequestStageDone";
|
|
51
|
+
})(DefaultChurnRequestStageKeys = exports.DefaultChurnRequestStageKeys || (exports.DefaultChurnRequestStageKeys = {}));
|
|
25
52
|
/**
|
|
26
53
|
* Valid values for ChurnRequest.Outcome
|
|
27
54
|
*
|
|
@@ -25,6 +25,51 @@ export declare enum ContractBuyOutEntityTypes {
|
|
|
25
25
|
/** This is the default record type */
|
|
26
26
|
DEFAULT = "DEFAULT"
|
|
27
27
|
}
|
|
28
|
+
/**
|
|
29
|
+
* Pipeline stage names for DEFAULT ContractBuyOut
|
|
30
|
+
* Pipeline: CreditBuyOut
|
|
31
|
+
* credit buy out pipeline
|
|
32
|
+
*/
|
|
33
|
+
export declare enum DefaultContractBuyOutStageNames {
|
|
34
|
+
/** for newly created cbo (default) */
|
|
35
|
+
Created = "Created",
|
|
36
|
+
/** when the document is received */
|
|
37
|
+
Received = "Received",
|
|
38
|
+
/** when documentation provided by customer is not complete */
|
|
39
|
+
MoreInfoRequired = "More Info Required",
|
|
40
|
+
/** when the invoice is verified */
|
|
41
|
+
Verified = "Verified",
|
|
42
|
+
/** Additional Approval Required */
|
|
43
|
+
AdditionalApprovalRequired = "Additional Approval Required",
|
|
44
|
+
/** cbo approved */
|
|
45
|
+
Approved = "Approved",
|
|
46
|
+
/** refund processed (success) */
|
|
47
|
+
RefundProcessed = "Refund Processed",
|
|
48
|
+
/** cbo rejected (fail) */
|
|
49
|
+
Cancelled = "Cancelled"
|
|
50
|
+
}
|
|
51
|
+
/**
|
|
52
|
+
* Pipeline stage keys for DEFAULT ContractBuyOut
|
|
53
|
+
* Use these keys when transitioning between stages
|
|
54
|
+
*/
|
|
55
|
+
export declare enum DefaultContractBuyOutStageKeys {
|
|
56
|
+
/** for newly created cbo */
|
|
57
|
+
CreditBuyOutStageCreated = "CreditBuyOutStageCreated",
|
|
58
|
+
/** when the document is received */
|
|
59
|
+
CreditBuyOutStageReceived = "CreditBuyOutStageReceived",
|
|
60
|
+
/** when documentation provided by customer is not complete */
|
|
61
|
+
CreditBuyOutStageMoreInfoRequired = "CreditBuyOutStageMoreInfoRequired",
|
|
62
|
+
/** when the invoice is verified */
|
|
63
|
+
CreditBuyOutStageVerified = "CreditBuyOutStageVerified",
|
|
64
|
+
/** Additional Approval Required */
|
|
65
|
+
CreditBuyOutStageAdditionalApprovalRequired = "CreditBuyOutStageAdditionalApprovalRequired",
|
|
66
|
+
/** cbo approved */
|
|
67
|
+
CreditBuyOutStageApproved = "CreditBuyOutStageApproved",
|
|
68
|
+
/** refund processed */
|
|
69
|
+
CreditBuyOutStageRefundProcessed = "CreditBuyOutStageRefundProcessed",
|
|
70
|
+
/** cbo rejected */
|
|
71
|
+
CreditBuyOutStageCancelled = "CreditBuyOutStageCancelled"
|
|
72
|
+
}
|
|
28
73
|
/**
|
|
29
74
|
* Valid values for ContractBuyOut.PreviousProvider
|
|
30
75
|
*
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
* Generated from Odin schema definition
|
|
13
13
|
*/
|
|
14
14
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
-
exports.ROUTING_KEY_LINK_CONTRACT_BUY_OUT_FILE_DELETED = exports.ROUTING_KEY_LINK_CONTRACT_BUY_OUT_FILE_CREATED = exports.ROUTING_KEY_LINK_CONTRACT_BUY_OUT_USER_DELETED = exports.ROUTING_KEY_LINK_CONTRACT_BUY_OUT_USER_CREATED = exports.ROUTING_KEY_LINK_CONTRACT_BUY_OUT_NOTE_DELETED = exports.ROUTING_KEY_LINK_CONTRACT_BUY_OUT_NOTE_CREATED = exports.ROUTING_KEY_LINK_CONTRACT_BUY_OUT_PAYMENT_METHOD_DELETED = exports.ROUTING_KEY_LINK_CONTRACT_BUY_OUT_PAYMENT_METHOD_CREATED = exports.ROUTING_KEY_CONTRACT_BUY_OUT_DELETED = exports.ROUTING_KEY_CONTRACT_BUY_OUT_UPDATED = exports.ROUTING_KEY_CONTRACT_BUY_OUT_CREATED = exports.ContractBuyOut = exports.ContractBuyOutPropertyKeys = exports.ContractBuyOutPreviousProvider = exports.ContractBuyOutEntityTypes = void 0;
|
|
15
|
+
exports.ROUTING_KEY_LINK_CONTRACT_BUY_OUT_FILE_DELETED = exports.ROUTING_KEY_LINK_CONTRACT_BUY_OUT_FILE_CREATED = exports.ROUTING_KEY_LINK_CONTRACT_BUY_OUT_USER_DELETED = exports.ROUTING_KEY_LINK_CONTRACT_BUY_OUT_USER_CREATED = exports.ROUTING_KEY_LINK_CONTRACT_BUY_OUT_NOTE_DELETED = exports.ROUTING_KEY_LINK_CONTRACT_BUY_OUT_NOTE_CREATED = exports.ROUTING_KEY_LINK_CONTRACT_BUY_OUT_PAYMENT_METHOD_DELETED = exports.ROUTING_KEY_LINK_CONTRACT_BUY_OUT_PAYMENT_METHOD_CREATED = exports.ROUTING_KEY_CONTRACT_BUY_OUT_DELETED = exports.ROUTING_KEY_CONTRACT_BUY_OUT_UPDATED = exports.ROUTING_KEY_CONTRACT_BUY_OUT_CREATED = exports.ContractBuyOut = exports.ContractBuyOutPropertyKeys = exports.ContractBuyOutPreviousProvider = exports.DefaultContractBuyOutStageKeys = exports.DefaultContractBuyOutStageNames = exports.ContractBuyOutEntityTypes = void 0;
|
|
16
16
|
const core_1 = require("@d19n/odin-types/dist/core");
|
|
17
17
|
/**
|
|
18
18
|
* Available types for ContractBuyOut records
|
|
@@ -22,6 +22,53 @@ var ContractBuyOutEntityTypes;
|
|
|
22
22
|
/** This is the default record type */
|
|
23
23
|
ContractBuyOutEntityTypes["DEFAULT"] = "DEFAULT";
|
|
24
24
|
})(ContractBuyOutEntityTypes = exports.ContractBuyOutEntityTypes || (exports.ContractBuyOutEntityTypes = {}));
|
|
25
|
+
/**
|
|
26
|
+
* Pipeline stage names for DEFAULT ContractBuyOut
|
|
27
|
+
* Pipeline: CreditBuyOut
|
|
28
|
+
* credit buy out pipeline
|
|
29
|
+
*/
|
|
30
|
+
var DefaultContractBuyOutStageNames;
|
|
31
|
+
(function (DefaultContractBuyOutStageNames) {
|
|
32
|
+
/** for newly created cbo (default) */
|
|
33
|
+
DefaultContractBuyOutStageNames["Created"] = "Created";
|
|
34
|
+
/** when the document is received */
|
|
35
|
+
DefaultContractBuyOutStageNames["Received"] = "Received";
|
|
36
|
+
/** when documentation provided by customer is not complete */
|
|
37
|
+
DefaultContractBuyOutStageNames["MoreInfoRequired"] = "More Info Required";
|
|
38
|
+
/** when the invoice is verified */
|
|
39
|
+
DefaultContractBuyOutStageNames["Verified"] = "Verified";
|
|
40
|
+
/** Additional Approval Required */
|
|
41
|
+
DefaultContractBuyOutStageNames["AdditionalApprovalRequired"] = "Additional Approval Required";
|
|
42
|
+
/** cbo approved */
|
|
43
|
+
DefaultContractBuyOutStageNames["Approved"] = "Approved";
|
|
44
|
+
/** refund processed (success) */
|
|
45
|
+
DefaultContractBuyOutStageNames["RefundProcessed"] = "Refund Processed";
|
|
46
|
+
/** cbo rejected (fail) */
|
|
47
|
+
DefaultContractBuyOutStageNames["Cancelled"] = "Cancelled";
|
|
48
|
+
})(DefaultContractBuyOutStageNames = exports.DefaultContractBuyOutStageNames || (exports.DefaultContractBuyOutStageNames = {}));
|
|
49
|
+
/**
|
|
50
|
+
* Pipeline stage keys for DEFAULT ContractBuyOut
|
|
51
|
+
* Use these keys when transitioning between stages
|
|
52
|
+
*/
|
|
53
|
+
var DefaultContractBuyOutStageKeys;
|
|
54
|
+
(function (DefaultContractBuyOutStageKeys) {
|
|
55
|
+
/** for newly created cbo */
|
|
56
|
+
DefaultContractBuyOutStageKeys["CreditBuyOutStageCreated"] = "CreditBuyOutStageCreated";
|
|
57
|
+
/** when the document is received */
|
|
58
|
+
DefaultContractBuyOutStageKeys["CreditBuyOutStageReceived"] = "CreditBuyOutStageReceived";
|
|
59
|
+
/** when documentation provided by customer is not complete */
|
|
60
|
+
DefaultContractBuyOutStageKeys["CreditBuyOutStageMoreInfoRequired"] = "CreditBuyOutStageMoreInfoRequired";
|
|
61
|
+
/** when the invoice is verified */
|
|
62
|
+
DefaultContractBuyOutStageKeys["CreditBuyOutStageVerified"] = "CreditBuyOutStageVerified";
|
|
63
|
+
/** Additional Approval Required */
|
|
64
|
+
DefaultContractBuyOutStageKeys["CreditBuyOutStageAdditionalApprovalRequired"] = "CreditBuyOutStageAdditionalApprovalRequired";
|
|
65
|
+
/** cbo approved */
|
|
66
|
+
DefaultContractBuyOutStageKeys["CreditBuyOutStageApproved"] = "CreditBuyOutStageApproved";
|
|
67
|
+
/** refund processed */
|
|
68
|
+
DefaultContractBuyOutStageKeys["CreditBuyOutStageRefundProcessed"] = "CreditBuyOutStageRefundProcessed";
|
|
69
|
+
/** cbo rejected */
|
|
70
|
+
DefaultContractBuyOutStageKeys["CreditBuyOutStageCancelled"] = "CreditBuyOutStageCancelled";
|
|
71
|
+
})(DefaultContractBuyOutStageKeys = exports.DefaultContractBuyOutStageKeys || (exports.DefaultContractBuyOutStageKeys = {}));
|
|
25
72
|
/**
|
|
26
73
|
* Valid values for ContractBuyOut.PreviousProvider
|
|
27
74
|
*
|