digicust_types 1.8.108 → 1.8.110
Sign up to get free protection for your applications and to get access to all the features.
@@ -1,5 +1,5 @@
|
|
1
1
|
import { CustomsTariffNumberNormalizationSettings, DigicustDocumentType, Event, Money, PackageType, ProcedureMode, Rule, StakeholderModel } from "..";
|
2
|
-
import { AebSftpConfig, AsycudaSftpConfig, DakosySftpConfig, DbhSftpConfig, DhfSftpConfig, LdvSftpConfig } from "./sftp-config.model";
|
2
|
+
import { AebSftpConfig, AsycudaSftpConfig, DakosySftpConfig, DbhSftpConfig, DhfSftpConfig, FormatSftpConfig, LdvSftpConfig, BEOConfig } from "./sftp-config.model";
|
3
3
|
/**
|
4
4
|
* Execution strategies are customer-configurable plans on how to process a specific case.
|
5
5
|
*/
|
@@ -213,7 +213,7 @@ export interface ExecutionStrategy {
|
|
213
213
|
time?: number;
|
214
214
|
};
|
215
215
|
isProcessWithDextor: boolean;
|
216
|
-
submission?: DakosySftpConfig | AebSftpConfig | DbhSftpConfig | LdvSftpConfig | DhfSftpConfig | AsycudaSftpConfig;
|
216
|
+
submission?: DakosySftpConfig | AebSftpConfig | DbhSftpConfig | BEOConfig | LdvSftpConfig | DhfSftpConfig | AsycudaSftpConfig | FormatSftpConfig;
|
217
217
|
events: Event[];
|
218
218
|
rules: Rule[];
|
219
219
|
automated?: boolean;
|
@@ -53,6 +53,28 @@ export interface AsycudaSftpConfig {
|
|
53
53
|
"sftp-inbound"?: string;
|
54
54
|
};
|
55
55
|
}
|
56
|
+
export interface FormatSftpConfig {
|
57
|
+
active?: boolean;
|
58
|
+
vendor?: "format";
|
59
|
+
config?: {
|
60
|
+
"sftp-password"?: string;
|
61
|
+
"sftp-login-name"?: string;
|
62
|
+
"sftp-port"?: string;
|
63
|
+
"sftp-dns-name"?: string;
|
64
|
+
"sftp-inbound"?: string;
|
65
|
+
/** Mandantennummer */
|
66
|
+
"client-code"?: string;
|
67
|
+
};
|
68
|
+
}
|
69
|
+
export interface BEOConfig {
|
70
|
+
active?: boolean;
|
71
|
+
vendor?: "beo";
|
72
|
+
config?: {
|
73
|
+
token?: string;
|
74
|
+
/** Kundennummer */
|
75
|
+
"client-code"?: string;
|
76
|
+
};
|
77
|
+
}
|
56
78
|
export interface DbhSftpConfig {
|
57
79
|
active?: boolean;
|
58
80
|
vendor?: "dbh";
|