@colijnit/transactionapi 259.1.29 → 259.1.30
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.
|
@@ -9,9 +9,9 @@ export declare class TransactionRefTransaction {
|
|
|
9
9
|
refTransactionId: number;
|
|
10
10
|
refTransactionNr: string;
|
|
11
11
|
refTransactionType: string;
|
|
12
|
-
|
|
12
|
+
refRelationNr: number;
|
|
13
13
|
refRelationName: string;
|
|
14
|
-
constructor(transId: number, transNr: string, transType: string,
|
|
14
|
+
constructor(transId: number, transNr: string, transType: string, relationNr: number, relationName: string);
|
|
15
15
|
}
|
|
16
16
|
export declare class TransactionLineInfo extends BusinessObject {
|
|
17
17
|
uuid: string;
|
|
@@ -19,11 +19,11 @@ const complex_field_decorator_1 = require("@colijnit/ioneconnector/build/factory
|
|
|
19
19
|
const date_field_decorator_1 = require("@colijnit/ioneconnector/build/factory/decorators/date-field.decorator");
|
|
20
20
|
const rxjs_1 = require("rxjs");
|
|
21
21
|
class TransactionRefTransaction {
|
|
22
|
-
constructor(transId, transNr, transType,
|
|
22
|
+
constructor(transId, transNr, transType, relationNr, relationName) {
|
|
23
23
|
this.refTransactionId = transId;
|
|
24
24
|
this.refTransactionNr = transNr;
|
|
25
25
|
this.refTransactionType = transType;
|
|
26
|
-
this.
|
|
26
|
+
this.refRelationNr = relationNr;
|
|
27
27
|
this.refRelationName = relationName;
|
|
28
28
|
}
|
|
29
29
|
}
|