digicust_types 1.8.523 → 1.8.525
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/lib/models/digicust/execution-strategy/sftp-config.model.d.ts +3 -0
- package/lib/models/digicust/multerfile.model.d.ts +1 -0
- package/package.json +1 -1
- package/lib/models/digicust/documents/document-code-source-context.d.ts +0 -18
- package/lib/models/digicust/documents/document-code-source-context.js +0 -2
@@ -94,6 +94,7 @@ export interface FormatSftpConfig {
|
|
94
94
|
"sftp-inbound"?: string;
|
95
95
|
/** Mandantennummer */
|
96
96
|
"client-code"?: string;
|
97
|
+
"profile"?: string;
|
97
98
|
}
|
98
99
|
export interface ScopeSftpConfig {
|
99
100
|
"sftp-password"?: string;
|
@@ -168,4 +169,6 @@ export interface E2OpenSftpConfig {
|
|
168
169
|
"sftp-login-name"?: string;
|
169
170
|
"sftp-port"?: string;
|
170
171
|
"sftp-dns-name"?: string;
|
172
|
+
"clientId"?: string;
|
173
|
+
"userId"?: string;
|
171
174
|
}
|
package/package.json
CHANGED
@@ -1,18 +0,0 @@
|
|
1
|
-
import { DocumentCodeSource } from "./document-code-source.enum";
|
2
|
-
import { ConditionModel } from "../execution-strategy/condition.model";
|
3
|
-
export interface DocumentCodeSourceContext {
|
4
|
-
source: DocumentCodeSource;
|
5
|
-
taricQueryParams?: {
|
6
|
-
itemId?: string;
|
7
|
-
countryCode?: string;
|
8
|
-
procedureMode?: string;
|
9
|
-
certificateType?: string;
|
10
|
-
};
|
11
|
-
ruleMetadata?: {
|
12
|
-
name?: string;
|
13
|
-
id?: string;
|
14
|
-
conditions?: ConditionModel[];
|
15
|
-
};
|
16
|
-
computationParams?: any;
|
17
|
-
materialId?: string;
|
18
|
-
}
|