@colijnit/transactionapi 1.1.5 → 1.1.9
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/build/enum/data-service-method.enum.d.ts +2 -1
- package/build/enum/data-service-method.enum.js +1 -0
- package/build/enum/domain-name.enum.d.ts +2 -1
- package/build/enum/domain-name.enum.js +1 -0
- package/build/enum/master-data-object-name.enum.d.ts +2 -1
- package/build/enum/master-data-object-name.enum.js +1 -0
- package/build/enum/public-service-method.d.ts +5 -1
- package/build/enum/public-service-method.js +4 -0
- package/build/enum/sla-publication.enum.d.ts +4 -0
- package/build/enum/sla-publication.enum.js +5 -0
- package/build/enum/transaction-method.enum.d.ts +3 -1
- package/build/enum/transaction-method.enum.js +2 -0
- package/build/ione-api-transaction.d.ts +5 -0
- package/build/model/customer-full-object.bo.d.ts +2 -1
- package/build/model/customer-full-object.bo.js +6 -0
- package/build/model/customer-group.bo.d.ts +6 -0
- package/build/model/customer-group.bo.js +36 -0
- package/build/model/nul-relation-object.d.ts +2 -0
- package/build/model/nul-relation-object.js +1 -0
- package/build/model/relation-list-object.bo.d.ts +1 -0
- package/build/model/relation-list-object.bo.js +8 -0
- package/build/model/sla-product.bo.d.ts +20 -0
- package/build/model/sla-product.bo.js +56 -0
- package/build/transaction-auth.d.ts +5 -0
- package/build/transaction-auth.js +291 -381
- package/build/transaction-public.d.ts +5 -0
- package/build/transaction-public.js +49 -0
- package/build/transaction.d.ts +5 -0
- package/build/transaction.js +15 -0
- package/build/transaction.unit.test.js +43 -6
- package/package.json +7 -4
|
@@ -9,5 +9,6 @@ export declare enum DataServiceMethod {
|
|
|
9
9
|
UnlockObject = "unlockObject",
|
|
10
10
|
UpdateMultipleObjects = "updateMultipleObjects",
|
|
11
11
|
InsertMultipleObjects = "insertMultipleObjects",
|
|
12
|
-
DeleteMultipleObjects = "deleteMultipleObjects"
|
|
12
|
+
DeleteMultipleObjects = "deleteMultipleObjects",
|
|
13
|
+
Commit = "commit"
|
|
13
14
|
}
|
|
@@ -11,4 +11,5 @@ export var DataServiceMethod;
|
|
|
11
11
|
DataServiceMethod["UpdateMultipleObjects"] = "updateMultipleObjects";
|
|
12
12
|
DataServiceMethod["InsertMultipleObjects"] = "insertMultipleObjects";
|
|
13
13
|
DataServiceMethod["DeleteMultipleObjects"] = "deleteMultipleObjects";
|
|
14
|
+
DataServiceMethod["Commit"] = "commit";
|
|
14
15
|
})(DataServiceMethod || (DataServiceMethod = {}));
|
|
@@ -55,5 +55,6 @@ export declare enum DomainName {
|
|
|
55
55
|
PaymentCondition = "DOM_BETALINGSCONDITIE",
|
|
56
56
|
PinTerminal = "DOM_PINTERMINALS",
|
|
57
57
|
ValidityUnit = "DOM_GELDIGHEIDSDUUR_TYPES",
|
|
58
|
-
VoucherType = "DOM_VOUCHERTYPES"
|
|
58
|
+
VoucherType = "DOM_VOUCHERTYPES",
|
|
59
|
+
TextType = "TEKSTSOORT"
|
|
59
60
|
}
|
|
@@ -11,4 +11,5 @@ export var MasterDataObjectName;
|
|
|
11
11
|
MasterDataObjectName["PrivacySettingDTO"] = "PrivacySettingDTO";
|
|
12
12
|
MasterDataObjectName["CoDomainValue"] = "CoDomainValue";
|
|
13
13
|
MasterDataObjectName["WareHouse"] = "WareHouse";
|
|
14
|
+
MasterDataObjectName["CustomerGroup"] = "CustomerGroup";
|
|
14
15
|
})(MasterDataObjectName || (MasterDataObjectName = {}));
|
|
@@ -31,6 +31,7 @@ export declare enum PublicServiceMethod {
|
|
|
31
31
|
GetPrivacySettings = "getPrivacySettings",
|
|
32
32
|
GetMarketingCodes = "getMarketingCodes",
|
|
33
33
|
GetTransactionByNrAndKind = "getTransactionByNrAndKind",
|
|
34
|
+
GetTransactionById = "getTransactionId",
|
|
34
35
|
GetDomainValues = "getDomainValue",
|
|
35
36
|
GetTransactionArticleWarehouses = "getTransactionArticleWarehouses",
|
|
36
37
|
CreateTransaction = "createTransaction",
|
|
@@ -48,5 +49,8 @@ export declare enum PublicServiceMethod {
|
|
|
48
49
|
PostalCodeRetrieval = "postalCodeRetrieval",
|
|
49
50
|
GetDeliveryMethods = "getDeliveryMethods",
|
|
50
51
|
GetDeliveryOptions = "getDeliveryMethods",
|
|
51
|
-
GetRelationListObjects = "getRelationListObjects"
|
|
52
|
+
GetRelationListObjects = "getRelationListObjects",
|
|
53
|
+
GetStandardTextsNoHeadOrFeet = "getStandardTextsNoHeadOrFeet",
|
|
54
|
+
GetCustomerGroups = "getCustomerGroups",
|
|
55
|
+
Commit = "commit"
|
|
52
56
|
}
|
|
@@ -32,6 +32,7 @@ export var PublicServiceMethod;
|
|
|
32
32
|
PublicServiceMethod["GetPrivacySettings"] = "getPrivacySettings";
|
|
33
33
|
PublicServiceMethod["GetMarketingCodes"] = "getMarketingCodes";
|
|
34
34
|
PublicServiceMethod["GetTransactionByNrAndKind"] = "getTransactionByNrAndKind";
|
|
35
|
+
PublicServiceMethod["GetTransactionById"] = "getTransactionId";
|
|
35
36
|
PublicServiceMethod["GetDomainValues"] = "getDomainValue";
|
|
36
37
|
PublicServiceMethod["GetTransactionArticleWarehouses"] = "getTransactionArticleWarehouses";
|
|
37
38
|
PublicServiceMethod["CreateTransaction"] = "createTransaction";
|
|
@@ -50,4 +51,7 @@ export var PublicServiceMethod;
|
|
|
50
51
|
PublicServiceMethod["GetDeliveryMethods"] = "getDeliveryMethods";
|
|
51
52
|
PublicServiceMethod["GetDeliveryOptions"] = "getDeliveryMethods";
|
|
52
53
|
PublicServiceMethod["GetRelationListObjects"] = "getRelationListObjects";
|
|
54
|
+
PublicServiceMethod["GetStandardTextsNoHeadOrFeet"] = "getStandardTextsNoHeadOrFeet";
|
|
55
|
+
PublicServiceMethod["GetCustomerGroups"] = "getCustomerGroups";
|
|
56
|
+
PublicServiceMethod["Commit"] = "commit";
|
|
53
57
|
})(PublicServiceMethod || (PublicServiceMethod = {}));
|
|
@@ -6,10 +6,12 @@ export declare enum TransactionMethod {
|
|
|
6
6
|
CancelAddTransactionLine = "cancelAddTransactionLine",
|
|
7
7
|
CreateTransaction = "createTransaction",
|
|
8
8
|
GetTransactionByNrAndKind = "getTransactionByNrAndKind",
|
|
9
|
+
GetTransactionById = "getTransactionById",
|
|
9
10
|
SaveTransaction = "saveTransaction",
|
|
10
11
|
SetRelationByUser = "setRelationByUser",
|
|
11
12
|
SetTransactionDeliveryOptions = "setTransactionDeliveryOptions",
|
|
12
13
|
SetTransactionRelation = "setTransactionRelation",
|
|
13
14
|
ChangeTransactionLineQuantity = "changeTransactionLineQuantity",
|
|
14
|
-
ResolvePendingLineReason = "resolvePendingLineReason"
|
|
15
|
+
ResolvePendingLineReason = "resolvePendingLineReason",
|
|
16
|
+
GetStandardTextsNoHeadOrFeet = "getStandardTextsNoHeadOrFeet"
|
|
15
17
|
}
|
|
@@ -7,10 +7,12 @@ export var TransactionMethod;
|
|
|
7
7
|
TransactionMethod["CancelAddTransactionLine"] = "cancelAddTransactionLine";
|
|
8
8
|
TransactionMethod["CreateTransaction"] = "createTransaction";
|
|
9
9
|
TransactionMethod["GetTransactionByNrAndKind"] = "getTransactionByNrAndKind";
|
|
10
|
+
TransactionMethod["GetTransactionById"] = "getTransactionById";
|
|
10
11
|
TransactionMethod["SaveTransaction"] = "saveTransaction";
|
|
11
12
|
TransactionMethod["SetRelationByUser"] = "setRelationByUser";
|
|
12
13
|
TransactionMethod["SetTransactionDeliveryOptions"] = "setTransactionDeliveryOptions";
|
|
13
14
|
TransactionMethod["SetTransactionRelation"] = "setTransactionRelation";
|
|
14
15
|
TransactionMethod["ChangeTransactionLineQuantity"] = "changeTransactionLineQuantity";
|
|
15
16
|
TransactionMethod["ResolvePendingLineReason"] = "resolvePendingLineReason";
|
|
17
|
+
TransactionMethod["GetStandardTextsNoHeadOrFeet"] = "getStandardTextsNoHeadOrFeet";
|
|
16
18
|
})(TransactionMethod || (TransactionMethod = {}));
|
|
@@ -22,13 +22,18 @@ export declare abstract class IoneApiTransaction {
|
|
|
22
22
|
abstract getSingleImage(nodeId: number | string, publication: number, includeMimetype: boolean, thumb: boolean): Promise<DataServiceResponseData>;
|
|
23
23
|
abstract getDocumentContent(id: number, thumbnail: boolean): Promise<DataServiceResponseData>;
|
|
24
24
|
abstract getCountries(): Promise<DataServiceResponseData>;
|
|
25
|
+
abstract getCustomerGroups(): Promise<DataServiceResponseData>;
|
|
26
|
+
abstract commit(): Promise<DataServiceResponseData>;
|
|
25
27
|
abstract getPrivacySettings(): Promise<DataServiceResponseData>;
|
|
26
28
|
abstract getMarketingCodes(): Promise<DataServiceResponseData>;
|
|
27
29
|
abstract getCommissionCodes(languageCode: string): Promise<DataServiceResponseData>;
|
|
28
30
|
abstract getInOutCollection(languageCode: string): Promise<DataServiceResponseData>;
|
|
31
|
+
abstract getTextTypes(languageCode: string): Promise<DataServiceResponseData>;
|
|
32
|
+
abstract getStandardTexts(languageCode: any): Promise<DataServiceResponseData>;
|
|
29
33
|
abstract getTransactionArticleWarehouses(goodId: number, branchNr?: string): Promise<DataServiceResponseData>;
|
|
30
34
|
abstract createTransaction(kind: TransactionKind, branchNr: string): Promise<DataServiceResponseData>;
|
|
31
35
|
abstract getTransactionByNrAndKind(kind: TransactionKind, transactionNo: number): Promise<DataServiceResponseData>;
|
|
36
|
+
abstract getTransactionById(transactionId: number): Promise<DataServiceResponseData>;
|
|
32
37
|
abstract addRelationToTransaction(uuid: string, relationId: number): Promise<DataServiceResponseData>;
|
|
33
38
|
abstract saveTransaction(uuid: string): Promise<DataServiceResponseData>;
|
|
34
39
|
abstract setTransactionDeliveryOptions(request: SetTransactionDeliveryOptionsRequest): Promise<DataServiceResponseData>;
|
|
@@ -20,12 +20,13 @@ import { InsuredInterest } from "./insuredInterest.bo";
|
|
|
20
20
|
import { Department } from "./department.bo";
|
|
21
21
|
import { RelationEventLink } from "./relation-event-link.bo";
|
|
22
22
|
import { RelationPrivacySetting } from "./relation-privacy-setting.bo";
|
|
23
|
+
import { CustomerGroup } from "./customer-group.bo";
|
|
23
24
|
export declare class CustomerFullObject extends Relation {
|
|
24
25
|
memberNr: string;
|
|
25
26
|
relationStatus: RelationStatus;
|
|
26
27
|
vatPayment: boolean;
|
|
27
28
|
mainDebtor: number;
|
|
28
|
-
customerGroup:
|
|
29
|
+
customerGroup: CustomerGroup;
|
|
29
30
|
invoiceFrequency: string;
|
|
30
31
|
numberInvoices: number;
|
|
31
32
|
financialCustomerGroup: string;
|
|
@@ -50,6 +50,8 @@ import { BoSerializerStep } from "../utils/bo-serializer-step.utils";
|
|
|
50
50
|
import { RelationEventLink } from "./relation-event-link.bo";
|
|
51
51
|
import { RelationPrivacySetting } from "./relation-privacy-setting.bo";
|
|
52
52
|
import { BoFactoryStep } from "../utils/bo-factory-step.utils";
|
|
53
|
+
import { CustomerGroup } from "./customer-group.bo";
|
|
54
|
+
import { ComplexField } from "../factory/decorators/complex-field.decorator";
|
|
53
55
|
var CustomerFullObject = (function (_super) {
|
|
54
56
|
__extends(CustomerFullObject, _super);
|
|
55
57
|
function CustomerFullObject() {
|
|
@@ -176,6 +178,10 @@ var CustomerFullObject = (function (_super) {
|
|
|
176
178
|
BooleanText(),
|
|
177
179
|
__metadata("design:type", Boolean)
|
|
178
180
|
], CustomerFullObject.prototype, "vatPayment", void 0);
|
|
181
|
+
__decorate([
|
|
182
|
+
ComplexField(CustomerGroup),
|
|
183
|
+
__metadata("design:type", CustomerGroup)
|
|
184
|
+
], CustomerFullObject.prototype, "customerGroup", void 0);
|
|
179
185
|
__decorate([
|
|
180
186
|
BooleanText(),
|
|
181
187
|
__metadata("design:type", Boolean)
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
var __extends = (this && this.__extends) || (function () {
|
|
2
|
+
var extendStatics = function (d, b) {
|
|
3
|
+
extendStatics = Object.setPrototypeOf ||
|
|
4
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
5
|
+
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
|
6
|
+
return extendStatics(d, b);
|
|
7
|
+
};
|
|
8
|
+
return function (d, b) {
|
|
9
|
+
extendStatics(d, b);
|
|
10
|
+
function __() { this.constructor = d; }
|
|
11
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
12
|
+
};
|
|
13
|
+
})();
|
|
14
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
15
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
16
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
17
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
18
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
19
|
+
};
|
|
20
|
+
import { BusinessObjectData } from "../factory/decorators/business-object-data.decorator";
|
|
21
|
+
import { DataMapping } from "../enum/data-mapping.enum";
|
|
22
|
+
import { BusinessObject } from "./business-object";
|
|
23
|
+
var CustomerGroup = (function (_super) {
|
|
24
|
+
__extends(CustomerGroup, _super);
|
|
25
|
+
function CustomerGroup() {
|
|
26
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
27
|
+
}
|
|
28
|
+
CustomerGroup = __decorate([
|
|
29
|
+
BusinessObjectData({
|
|
30
|
+
name: "CustomerGroup",
|
|
31
|
+
mapping: DataMapping.RelMan
|
|
32
|
+
})
|
|
33
|
+
], CustomerGroup);
|
|
34
|
+
return CustomerGroup;
|
|
35
|
+
}(BusinessObject));
|
|
36
|
+
export { CustomerGroup };
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
import { RelationAnyType } from "./relation-any-type";
|
|
2
2
|
import { RelationListObject } from "./relation-list-object.bo";
|
|
3
|
+
import { CustomerFullObject } from "./customer-full-object.bo";
|
|
3
4
|
export declare const NULL_RELATION_OBJECT: RelationAnyType;
|
|
4
5
|
export declare const NULL_RELATION_LIST_OBJECT: RelationListObject;
|
|
6
|
+
export declare const NULL_CUSTOMER_FULL_OBJECT: CustomerFullObject;
|
|
@@ -2,3 +2,4 @@ import { RelationListObject } from "./relation-list-object.bo";
|
|
|
2
2
|
import { CustomerFullObject } from "./customer-full-object.bo";
|
|
3
3
|
export var NULL_RELATION_OBJECT = new CustomerFullObject();
|
|
4
4
|
export var NULL_RELATION_LIST_OBJECT = new RelationListObject();
|
|
5
|
+
export var NULL_CUSTOMER_FULL_OBJECT = new CustomerFullObject();
|
|
@@ -55,6 +55,7 @@ export declare class RelationListObject extends BusinessObject {
|
|
|
55
55
|
get displayName(): string;
|
|
56
56
|
get displayInitials(): string;
|
|
57
57
|
get displayAddress(): string;
|
|
58
|
+
get hasAddressFull(): boolean;
|
|
58
59
|
get displayPostalcodeCity(): string;
|
|
59
60
|
get displayAddressFull(): string;
|
|
60
61
|
constructor();
|
|
@@ -30,6 +30,7 @@ import { StringUtils } from "../utils/string-utils";
|
|
|
30
30
|
import { RelationContactLink } from "./relation-contact-link.bo";
|
|
31
31
|
import { Address } from "./address.bo";
|
|
32
32
|
import { NumberUtils } from "../utils/number-utils";
|
|
33
|
+
import { isNill } from "../utils/function/is-nill.function";
|
|
33
34
|
var RelationListObject = (function (_super) {
|
|
34
35
|
__extends(RelationListObject, _super);
|
|
35
36
|
function RelationListObject() {
|
|
@@ -85,6 +86,13 @@ var RelationListObject = (function (_super) {
|
|
|
85
86
|
enumerable: true,
|
|
86
87
|
configurable: true
|
|
87
88
|
});
|
|
89
|
+
Object.defineProperty(RelationListObject.prototype, "hasAddressFull", {
|
|
90
|
+
get: function () {
|
|
91
|
+
return !(isNill(this.street) && isNill(this.houseNr) && isNill(this.postalCode) && isNill(this.city));
|
|
92
|
+
},
|
|
93
|
+
enumerable: true,
|
|
94
|
+
configurable: true
|
|
95
|
+
});
|
|
88
96
|
Object.defineProperty(RelationListObject.prototype, "displayPostalcodeCity", {
|
|
89
97
|
get: function () {
|
|
90
98
|
return StringUtils.Format("{0}, {1}", [this.postalCode, this.city]);
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { BusinessObject } from "./business-object";
|
|
2
|
+
import { ProductKind } from "../enum/product-kind.enum";
|
|
3
|
+
import { CoDocument } from "./co-document";
|
|
4
|
+
import { RelationContract } from "./relation-contract.bo";
|
|
5
|
+
import { SlaPublication } from "../enum/sla-publication.enum";
|
|
6
|
+
export declare class SlaProduct extends BusinessObject {
|
|
7
|
+
product: string;
|
|
8
|
+
description: string;
|
|
9
|
+
productReference: string;
|
|
10
|
+
serialNo: string;
|
|
11
|
+
stateId: number;
|
|
12
|
+
productKind: ProductKind;
|
|
13
|
+
charge: boolean;
|
|
14
|
+
publicationCode: SlaPublication;
|
|
15
|
+
image: CoDocument;
|
|
16
|
+
imageAsDataUri: string;
|
|
17
|
+
relationContracts: RelationContract[];
|
|
18
|
+
constructor();
|
|
19
|
+
getId(): string;
|
|
20
|
+
}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
var __extends = (this && this.__extends) || (function () {
|
|
2
|
+
var extendStatics = function (d, b) {
|
|
3
|
+
extendStatics = Object.setPrototypeOf ||
|
|
4
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
5
|
+
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
|
6
|
+
return extendStatics(d, b);
|
|
7
|
+
};
|
|
8
|
+
return function (d, b) {
|
|
9
|
+
extendStatics(d, b);
|
|
10
|
+
function __() { this.constructor = d; }
|
|
11
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
12
|
+
};
|
|
13
|
+
})();
|
|
14
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
15
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
16
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
17
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
18
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
19
|
+
};
|
|
20
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
21
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
22
|
+
};
|
|
23
|
+
import { BusinessObject } from "./business-object";
|
|
24
|
+
import { BooleanText } from "../factory/decorators/boolean.decorator";
|
|
25
|
+
import { CoDocument } from "./co-document";
|
|
26
|
+
import { ComplexField } from "../factory/decorators/complex-field.decorator";
|
|
27
|
+
import { NoDbField } from "../factory/decorators/no-db-field.decorator";
|
|
28
|
+
var SlaProduct = (function (_super) {
|
|
29
|
+
__extends(SlaProduct, _super);
|
|
30
|
+
function SlaProduct() {
|
|
31
|
+
var _this = _super.call(this) || this;
|
|
32
|
+
_this.relationContracts = [];
|
|
33
|
+
return _this;
|
|
34
|
+
}
|
|
35
|
+
SlaProduct.prototype.getId = function () {
|
|
36
|
+
return this.product;
|
|
37
|
+
};
|
|
38
|
+
__decorate([
|
|
39
|
+
BooleanText("T"),
|
|
40
|
+
__metadata("design:type", Boolean)
|
|
41
|
+
], SlaProduct.prototype, "charge", void 0);
|
|
42
|
+
__decorate([
|
|
43
|
+
ComplexField(CoDocument),
|
|
44
|
+
__metadata("design:type", CoDocument)
|
|
45
|
+
], SlaProduct.prototype, "image", void 0);
|
|
46
|
+
__decorate([
|
|
47
|
+
NoDbField(),
|
|
48
|
+
__metadata("design:type", String)
|
|
49
|
+
], SlaProduct.prototype, "imageAsDataUri", void 0);
|
|
50
|
+
__decorate([
|
|
51
|
+
NoDbField(),
|
|
52
|
+
__metadata("design:type", Array)
|
|
53
|
+
], SlaProduct.prototype, "relationContracts", void 0);
|
|
54
|
+
return SlaProduct;
|
|
55
|
+
}(BusinessObject));
|
|
56
|
+
export { SlaProduct };
|
|
@@ -14,15 +14,20 @@ export declare class TransactionAuth extends IoneApiTransaction {
|
|
|
14
14
|
getSingleImage(nodeId: number | string, publication?: number, includeMimetype?: boolean, thumb?: boolean): Promise<DataServiceResponseData>;
|
|
15
15
|
getDocumentContent(id: number, thumbnail?: boolean): Promise<DataServiceResponseData>;
|
|
16
16
|
getCountries(): Promise<DataServiceResponseData>;
|
|
17
|
+
getCustomerGroups(): Promise<DataServiceResponseData>;
|
|
18
|
+
commit(): Promise<DataServiceResponseData>;
|
|
17
19
|
getPrivacySettings(): Promise<DataServiceResponseData>;
|
|
18
20
|
getRelationPrivacySettings(): Promise<DataServiceResponseData>;
|
|
19
21
|
getCommissionCodes(languageCode: string): Promise<DataServiceResponseData>;
|
|
20
22
|
getInOutCollection(languageCode: string): Promise<DataServiceResponseData>;
|
|
23
|
+
getTextTypes(languageCode: string): Promise<DataServiceResponseData>;
|
|
21
24
|
private _getDomainCollection;
|
|
25
|
+
getStandardTexts(languageCode: any): Promise<DataServiceResponseData>;
|
|
22
26
|
getTransactionArticleWarehouses(goodId: number, branchNr?: string): Promise<DataServiceResponseData>;
|
|
23
27
|
getMarketingCodes(): Promise<DataServiceResponseData>;
|
|
24
28
|
createTransaction(kind: TransactionKind, branchNr: string): Promise<DataServiceResponseData>;
|
|
25
29
|
getTransactionByNrAndKind(kind: TransactionKind, transactionNo: number): Promise<DataServiceResponseData>;
|
|
30
|
+
getTransactionById(transactionId: number): Promise<DataServiceResponseData>;
|
|
26
31
|
addRelationToTransaction(uuid: string, relationId: number): Promise<DataServiceResponseData>;
|
|
27
32
|
saveTransaction(uuid: string): Promise<DataServiceResponseData>;
|
|
28
33
|
setTransactionDeliveryOptions(request: SetTransactionDeliveryOptionsRequest): Promise<DataServiceResponseData>;
|