@d19n/youfibre-odin-sdk 2.0.41 → 2.0.43
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,12 +23,12 @@ export declare enum ConfigEntityTypes {
|
|
|
23
23
|
* Use these constants instead of string literals for type safety
|
|
24
24
|
*/
|
|
25
25
|
export declare enum ConfigPropertyKeys {
|
|
26
|
-
/**
|
|
27
|
-
|
|
26
|
+
/** Data field for Config records. Used by Platform team. */
|
|
27
|
+
Test = "Test",
|
|
28
28
|
/** object of { key: value } mappings (Platform - Config) */
|
|
29
29
|
Mappings = "Mappings",
|
|
30
|
-
/**
|
|
31
|
-
|
|
30
|
+
/** the name of the app this config relates to (Platform - Config) */
|
|
31
|
+
AppName = "AppName"
|
|
32
32
|
}
|
|
33
33
|
/**
|
|
34
34
|
* Properties for Config records
|
|
@@ -36,21 +36,21 @@ export declare enum ConfigPropertyKeys {
|
|
|
36
36
|
* @see SchemaModule:Config
|
|
37
37
|
*/
|
|
38
38
|
export interface ConfigProperties {
|
|
39
|
-
/**
|
|
39
|
+
/** Data field for Config records. Used by Platform team.
|
|
40
40
|
*
|
|
41
41
|
* @type {TEXT}
|
|
42
42
|
*/
|
|
43
|
-
|
|
43
|
+
Test: string;
|
|
44
44
|
/** object of { key: value } mappings (Platform - Config)
|
|
45
45
|
*
|
|
46
46
|
* @type {JSON}
|
|
47
47
|
*/
|
|
48
48
|
Mappings: string;
|
|
49
|
-
/**
|
|
49
|
+
/** the name of the app this config relates to (Platform - Config)
|
|
50
50
|
*
|
|
51
51
|
* @type {TEXT}
|
|
52
52
|
*/
|
|
53
|
-
|
|
53
|
+
AppName: string;
|
|
54
54
|
}
|
|
55
55
|
/**
|
|
56
56
|
* Config entity from SchemaModule
|
|
@@ -28,12 +28,12 @@ var ConfigEntityTypes;
|
|
|
28
28
|
*/
|
|
29
29
|
var ConfigPropertyKeys;
|
|
30
30
|
(function (ConfigPropertyKeys) {
|
|
31
|
-
/** the name of the app this config relates to (Platform - Config) */
|
|
32
|
-
ConfigPropertyKeys["AppName"] = "AppName";
|
|
33
|
-
/** object of { key: value } mappings (Platform - Config) */
|
|
34
|
-
ConfigPropertyKeys["Mappings"] = "Mappings";
|
|
35
31
|
/** Data field for Config records. Used by Platform team. */
|
|
36
32
|
ConfigPropertyKeys["Test"] = "Test";
|
|
33
|
+
/** object of { key: value } mappings (Platform - Config) */
|
|
34
|
+
ConfigPropertyKeys["Mappings"] = "Mappings";
|
|
35
|
+
/** the name of the app this config relates to (Platform - Config) */
|
|
36
|
+
ConfigPropertyKeys["AppName"] = "AppName";
|
|
37
37
|
})(ConfigPropertyKeys = exports.ConfigPropertyKeys || (exports.ConfigPropertyKeys = {}));
|
|
38
38
|
/**
|
|
39
39
|
* Config entity from SchemaModule
|
|
@@ -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
|