@d19n/youfibre-odin-sdk 2.0.44 → 2.0.46
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 UpdateAddressDataSetMessage extends OdinRecordUpdatedEvent<Upda
|
|
|
23
23
|
* Properties for UpdateAddressDataSet action
|
|
24
24
|
*
|
|
25
25
|
* @property Required fields: 1
|
|
26
|
-
* @property Optional fields:
|
|
26
|
+
* @property Optional fields: 3
|
|
27
27
|
*/
|
|
28
28
|
export interface UpdateAddressDataSetProperties {
|
|
29
29
|
/**
|
|
@@ -48,6 +48,13 @@ export interface UpdateAddressDataSetProperties {
|
|
|
48
48
|
* @type {LOOKUP}
|
|
49
49
|
*/
|
|
50
50
|
Owner?: string | null;
|
|
51
|
+
/**
|
|
52
|
+
* TotalAddressNumber
|
|
53
|
+
*
|
|
54
|
+
* Shows total number of addresses within dataset
|
|
55
|
+
* @type {NUMBER}
|
|
56
|
+
*/
|
|
57
|
+
TotalAddressNumber?: number | null;
|
|
51
58
|
}
|
|
52
59
|
/**
|
|
53
60
|
* UpdateAddressDataSet
|
|
@@ -71,18 +71,18 @@ export declare enum CreditNoteReason {
|
|
|
71
71
|
* Use these constants instead of string literals for type safety
|
|
72
72
|
*/
|
|
73
73
|
export declare enum CreditNotePropertyKeys {
|
|
74
|
-
/** credit note
|
|
75
|
-
|
|
76
|
-
/** credit note status (Finance - CreditNote) */
|
|
77
|
-
Status = "Status",
|
|
74
|
+
/** amount of the credit note (Finance - CreditNote) */
|
|
75
|
+
Amount = "Amount",
|
|
78
76
|
/** description of the credit note (Finance - CreditNote) */
|
|
79
77
|
Description = "Description",
|
|
80
78
|
/** the record # of the invoice (Finance - CreditNote) */
|
|
81
79
|
InvoiceRef = "InvoiceRef",
|
|
80
|
+
/** credit note reason (Finance - CreditNote) */
|
|
81
|
+
Reason = "Reason",
|
|
82
82
|
/** reason code (Finance - CreditNote) */
|
|
83
83
|
ReasonCode = "ReasonCode",
|
|
84
|
-
/**
|
|
85
|
-
|
|
84
|
+
/** credit note status (Finance - CreditNote) */
|
|
85
|
+
Status = "Status"
|
|
86
86
|
}
|
|
87
87
|
/**
|
|
88
88
|
* Properties for CreditNote records
|
|
@@ -90,18 +90,12 @@ export declare enum CreditNotePropertyKeys {
|
|
|
90
90
|
* @see BillingModule:CreditNote
|
|
91
91
|
*/
|
|
92
92
|
export interface CreditNoteProperties {
|
|
93
|
-
/** credit note
|
|
94
|
-
*
|
|
95
|
-
* @type {ENUM}
|
|
96
|
-
* @enum {CreditNoteReason}
|
|
97
|
-
*/
|
|
98
|
-
Reason: CreditNoteReason;
|
|
99
|
-
/** credit note status (Finance - CreditNote)
|
|
93
|
+
/** amount of the credit note (Finance - CreditNote)
|
|
100
94
|
*
|
|
101
|
-
* @type {
|
|
102
|
-
* @
|
|
95
|
+
* @type {CURRENCY}
|
|
96
|
+
* @default 0
|
|
103
97
|
*/
|
|
104
|
-
|
|
98
|
+
Amount: string;
|
|
105
99
|
/** description of the credit note (Finance - CreditNote)
|
|
106
100
|
*
|
|
107
101
|
* @type {TEXT_LONG}
|
|
@@ -112,18 +106,24 @@ export interface CreditNoteProperties {
|
|
|
112
106
|
* @type {TEXT}
|
|
113
107
|
*/
|
|
114
108
|
InvoiceRef: string;
|
|
109
|
+
/** credit note reason (Finance - CreditNote)
|
|
110
|
+
*
|
|
111
|
+
* @type {ENUM}
|
|
112
|
+
* @enum {CreditNoteReason}
|
|
113
|
+
*/
|
|
114
|
+
Reason: CreditNoteReason;
|
|
115
115
|
/** reason code (Finance - CreditNote)
|
|
116
116
|
*
|
|
117
117
|
* @type {TEXT}
|
|
118
118
|
* @hidden This field is hidden in the UI
|
|
119
119
|
*/
|
|
120
120
|
ReasonCode: string;
|
|
121
|
-
/**
|
|
121
|
+
/** credit note status (Finance - CreditNote)
|
|
122
122
|
*
|
|
123
|
-
* @type {
|
|
124
|
-
* @
|
|
123
|
+
* @type {TEXT}
|
|
124
|
+
* @hidden This field is hidden in the UI
|
|
125
125
|
*/
|
|
126
|
-
|
|
126
|
+
Status: string;
|
|
127
127
|
}
|
|
128
128
|
/**
|
|
129
129
|
* CreditNote entity from BillingModule
|
|
@@ -73,18 +73,18 @@ var CreditNoteReason;
|
|
|
73
73
|
*/
|
|
74
74
|
var CreditNotePropertyKeys;
|
|
75
75
|
(function (CreditNotePropertyKeys) {
|
|
76
|
-
/** credit note
|
|
77
|
-
CreditNotePropertyKeys["
|
|
78
|
-
/** credit note status (Finance - CreditNote) */
|
|
79
|
-
CreditNotePropertyKeys["Status"] = "Status";
|
|
76
|
+
/** amount of the credit note (Finance - CreditNote) */
|
|
77
|
+
CreditNotePropertyKeys["Amount"] = "Amount";
|
|
80
78
|
/** description of the credit note (Finance - CreditNote) */
|
|
81
79
|
CreditNotePropertyKeys["Description"] = "Description";
|
|
82
80
|
/** the record # of the invoice (Finance - CreditNote) */
|
|
83
81
|
CreditNotePropertyKeys["InvoiceRef"] = "InvoiceRef";
|
|
82
|
+
/** credit note reason (Finance - CreditNote) */
|
|
83
|
+
CreditNotePropertyKeys["Reason"] = "Reason";
|
|
84
84
|
/** reason code (Finance - CreditNote) */
|
|
85
85
|
CreditNotePropertyKeys["ReasonCode"] = "ReasonCode";
|
|
86
|
-
/**
|
|
87
|
-
CreditNotePropertyKeys["
|
|
86
|
+
/** credit note status (Finance - CreditNote) */
|
|
87
|
+
CreditNotePropertyKeys["Status"] = "Status";
|
|
88
88
|
})(CreditNotePropertyKeys = exports.CreditNotePropertyKeys || (exports.CreditNotePropertyKeys = {}));
|
|
89
89
|
/**
|
|
90
90
|
* CreditNote entity from BillingModule
|