@d19n/youfibre-odin-sdk 1.0.345 → 1.0.348
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.
|
@@ -23,7 +23,7 @@ export interface CreateTransactionalEmailMessage extends OdinRecordCreatedEvent<
|
|
|
23
23
|
* Properties for CreateTransactionalEmail action
|
|
24
24
|
*
|
|
25
25
|
* @property Required fields: 1
|
|
26
|
-
* @property Optional fields:
|
|
26
|
+
* @property Optional fields: 23
|
|
27
27
|
*/
|
|
28
28
|
export interface CreateTransactionalEmailProperties {
|
|
29
29
|
/**
|
|
@@ -188,6 +188,13 @@ export interface CreateTransactionalEmailProperties {
|
|
|
188
188
|
* @type {LOOKUP}
|
|
189
189
|
*/
|
|
190
190
|
EmailSenderId?: string | null;
|
|
191
|
+
/**
|
|
192
|
+
* WorkOrder
|
|
193
|
+
*
|
|
194
|
+
* WorkOrder
|
|
195
|
+
* @type {LOOKUP}
|
|
196
|
+
*/
|
|
197
|
+
WorkOrder?: string | null;
|
|
191
198
|
}
|
|
192
199
|
/**
|
|
193
200
|
* CreateTransactionalEmail
|
|
@@ -74,24 +74,24 @@ export declare enum PaymentMethodRefundOutcome {
|
|
|
74
74
|
* Use these constants instead of string literals for type safety
|
|
75
75
|
*/
|
|
76
76
|
export declare enum PaymentMethodRefundPropertyKeys {
|
|
77
|
+
/** Monetary value field for PaymentMethodRefund. Used by Finance team for financial tracking. */
|
|
78
|
+
Amount = "Amount",
|
|
79
|
+
/** Authorized By (Finance - PaymentMethodRefund) */
|
|
80
|
+
AuthorizedBy = "AuthorizedBy",
|
|
77
81
|
/** Reference identifier for PaymentMethodRefund relationships. Used for data integrity. */
|
|
78
82
|
ContactId = "ContactId",
|
|
79
|
-
/** Work Order Ref (Finance - PaymentMethodRefund) */
|
|
80
|
-
WorkOrderRef = "WorkOrderRef",
|
|
81
83
|
/** Description (Finance - PaymentMethodRefund) */
|
|
82
84
|
Description = "Description",
|
|
83
|
-
/** Status indicator for PaymentMethodRefund records. Tracks lifecycle state. Used by Finance team. */
|
|
84
|
-
Status = "Status",
|
|
85
85
|
/** Reference identifier for PaymentMethodRefund relationships. Used for data integrity. */
|
|
86
86
|
InvoiceRef = "InvoiceRef",
|
|
87
|
-
/** Monetary value field for PaymentMethodRefund. Used by Finance team for financial tracking. */
|
|
88
|
-
Amount = "Amount",
|
|
89
87
|
/** Reference identifier for PaymentMethodRefund relationships. Used for data integrity. */
|
|
90
88
|
OrderRef = "OrderRef",
|
|
91
89
|
/** Data field for PaymentMethodRefund records. Used by Finance team. */
|
|
92
90
|
Outcome = "Outcome",
|
|
93
|
-
/**
|
|
94
|
-
|
|
91
|
+
/** Status indicator for PaymentMethodRefund records. Tracks lifecycle state. Used by Finance team. */
|
|
92
|
+
Status = "Status",
|
|
93
|
+
/** Work Order Ref (Finance - PaymentMethodRefund) */
|
|
94
|
+
WorkOrderRef = "WorkOrderRef"
|
|
95
95
|
}
|
|
96
96
|
/**
|
|
97
97
|
* Properties for PaymentMethodRefund records
|
|
@@ -99,38 +99,32 @@ export declare enum PaymentMethodRefundPropertyKeys {
|
|
|
99
99
|
* @see BillingModule:PaymentMethodRefund
|
|
100
100
|
*/
|
|
101
101
|
export interface PaymentMethodRefundProperties {
|
|
102
|
+
/** Monetary value field for PaymentMethodRefund. Used by Finance team for financial tracking.
|
|
103
|
+
*
|
|
104
|
+
* @type {CURRENCY}
|
|
105
|
+
*/
|
|
106
|
+
Amount: string;
|
|
107
|
+
/** Authorized By (Finance - PaymentMethodRefund)
|
|
108
|
+
*
|
|
109
|
+
* @type {TEXT}
|
|
110
|
+
*/
|
|
111
|
+
AuthorizedBy: string;
|
|
102
112
|
/** Reference identifier for PaymentMethodRefund relationships. Used for data integrity.
|
|
103
113
|
*
|
|
104
114
|
* @type {LOOKUP}
|
|
105
115
|
* @hidden This field is hidden in the UI
|
|
106
116
|
*/
|
|
107
117
|
ContactId: string;
|
|
108
|
-
/** Work Order Ref (Finance - PaymentMethodRefund)
|
|
109
|
-
*
|
|
110
|
-
* @type {LOOKUP}
|
|
111
|
-
*/
|
|
112
|
-
WorkOrderRef: string;
|
|
113
118
|
/** Description (Finance - PaymentMethodRefund)
|
|
114
119
|
*
|
|
115
120
|
* @type {TEXT}
|
|
116
121
|
*/
|
|
117
122
|
Description: string;
|
|
118
|
-
/** Status indicator for PaymentMethodRefund records. Tracks lifecycle state. Used by Finance team.
|
|
119
|
-
*
|
|
120
|
-
* @type {TEXT}
|
|
121
|
-
* @hidden This field is hidden in the UI
|
|
122
|
-
*/
|
|
123
|
-
Status: string;
|
|
124
123
|
/** Reference identifier for PaymentMethodRefund relationships. Used for data integrity.
|
|
125
124
|
*
|
|
126
125
|
* @type {LOOKUP}
|
|
127
126
|
*/
|
|
128
127
|
InvoiceRef: string;
|
|
129
|
-
/** Monetary value field for PaymentMethodRefund. Used by Finance team for financial tracking.
|
|
130
|
-
*
|
|
131
|
-
* @type {CURRENCY}
|
|
132
|
-
*/
|
|
133
|
-
Amount: string;
|
|
134
128
|
/** Reference identifier for PaymentMethodRefund relationships. Used for data integrity.
|
|
135
129
|
*
|
|
136
130
|
* @type {LOOKUP}
|
|
@@ -142,11 +136,17 @@ export interface PaymentMethodRefundProperties {
|
|
|
142
136
|
* @enum {PaymentMethodRefundOutcome}
|
|
143
137
|
*/
|
|
144
138
|
Outcome: PaymentMethodRefundOutcome;
|
|
145
|
-
/**
|
|
139
|
+
/** Status indicator for PaymentMethodRefund records. Tracks lifecycle state. Used by Finance team.
|
|
146
140
|
*
|
|
147
141
|
* @type {TEXT}
|
|
142
|
+
* @hidden This field is hidden in the UI
|
|
148
143
|
*/
|
|
149
|
-
|
|
144
|
+
Status: string;
|
|
145
|
+
/** Work Order Ref (Finance - PaymentMethodRefund)
|
|
146
|
+
*
|
|
147
|
+
* @type {LOOKUP}
|
|
148
|
+
*/
|
|
149
|
+
WorkOrderRef: string;
|
|
150
150
|
}
|
|
151
151
|
/**
|
|
152
152
|
* PaymentMethodRefund entity from BillingModule
|
|
@@ -73,24 +73,24 @@ var PaymentMethodRefundOutcome;
|
|
|
73
73
|
*/
|
|
74
74
|
var PaymentMethodRefundPropertyKeys;
|
|
75
75
|
(function (PaymentMethodRefundPropertyKeys) {
|
|
76
|
+
/** Monetary value field for PaymentMethodRefund. Used by Finance team for financial tracking. */
|
|
77
|
+
PaymentMethodRefundPropertyKeys["Amount"] = "Amount";
|
|
78
|
+
/** Authorized By (Finance - PaymentMethodRefund) */
|
|
79
|
+
PaymentMethodRefundPropertyKeys["AuthorizedBy"] = "AuthorizedBy";
|
|
76
80
|
/** Reference identifier for PaymentMethodRefund relationships. Used for data integrity. */
|
|
77
81
|
PaymentMethodRefundPropertyKeys["ContactId"] = "ContactId";
|
|
78
|
-
/** Work Order Ref (Finance - PaymentMethodRefund) */
|
|
79
|
-
PaymentMethodRefundPropertyKeys["WorkOrderRef"] = "WorkOrderRef";
|
|
80
82
|
/** Description (Finance - PaymentMethodRefund) */
|
|
81
83
|
PaymentMethodRefundPropertyKeys["Description"] = "Description";
|
|
82
|
-
/** Status indicator for PaymentMethodRefund records. Tracks lifecycle state. Used by Finance team. */
|
|
83
|
-
PaymentMethodRefundPropertyKeys["Status"] = "Status";
|
|
84
84
|
/** Reference identifier for PaymentMethodRefund relationships. Used for data integrity. */
|
|
85
85
|
PaymentMethodRefundPropertyKeys["InvoiceRef"] = "InvoiceRef";
|
|
86
|
-
/** Monetary value field for PaymentMethodRefund. Used by Finance team for financial tracking. */
|
|
87
|
-
PaymentMethodRefundPropertyKeys["Amount"] = "Amount";
|
|
88
86
|
/** Reference identifier for PaymentMethodRefund relationships. Used for data integrity. */
|
|
89
87
|
PaymentMethodRefundPropertyKeys["OrderRef"] = "OrderRef";
|
|
90
88
|
/** Data field for PaymentMethodRefund records. Used by Finance team. */
|
|
91
89
|
PaymentMethodRefundPropertyKeys["Outcome"] = "Outcome";
|
|
92
|
-
/**
|
|
93
|
-
PaymentMethodRefundPropertyKeys["
|
|
90
|
+
/** Status indicator for PaymentMethodRefund records. Tracks lifecycle state. Used by Finance team. */
|
|
91
|
+
PaymentMethodRefundPropertyKeys["Status"] = "Status";
|
|
92
|
+
/** Work Order Ref (Finance - PaymentMethodRefund) */
|
|
93
|
+
PaymentMethodRefundPropertyKeys["WorkOrderRef"] = "WorkOrderRef";
|
|
94
94
|
})(PaymentMethodRefundPropertyKeys = exports.PaymentMethodRefundPropertyKeys || (exports.PaymentMethodRefundPropertyKeys = {}));
|
|
95
95
|
/**
|
|
96
96
|
* PaymentMethodRefund entity from BillingModule
|