@vario-software/types 2026.31.4 → 2026.32.0
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/package.json +1 -1
- package/schema/erp.d.ts +3331 -1101
- package/scripting/services.d.ts +13 -13
- package/scripting/types.d.ts +346 -338
package/scripting/services.d.ts
CHANGED
|
@@ -2872,14 +2872,14 @@ export interface ScriptingServiceList {
|
|
|
2872
2872
|
crmTaskService: CrmTaskScriptingService;
|
|
2873
2873
|
|
|
2874
2874
|
/**
|
|
2875
|
-
* Service zur Verarbeitung von
|
|
2875
|
+
* Service zur Verarbeitung von Shelf-Documents
|
|
2876
2876
|
*/
|
|
2877
|
-
|
|
2877
|
+
shelfDocumentService: ShelfDocumentScriptingService;
|
|
2878
2878
|
|
|
2879
2879
|
/**
|
|
2880
|
-
* Service zur Verarbeitung von
|
|
2880
|
+
* Service zur Verarbeitung von Accounts
|
|
2881
2881
|
*/
|
|
2882
|
-
|
|
2882
|
+
accountService: AccountScriptingService;
|
|
2883
2883
|
|
|
2884
2884
|
/**
|
|
2885
2885
|
* Logging im Scripting
|
|
@@ -3114,18 +3114,18 @@ export interface ScriptingUtilities {
|
|
|
3114
3114
|
* Erstellt eine neue BigDecimal-Instanz
|
|
3115
3115
|
*
|
|
3116
3116
|
* @param {object} value - Der Quell-Wert
|
|
3117
|
-
* @param {number} scale - Anzahl Nachkommastellen
|
|
3118
3117
|
* @return {number} Ein BigDecimal-Wert
|
|
3119
3118
|
*/
|
|
3120
|
-
newBigDecimal(value: object
|
|
3119
|
+
newBigDecimal(value: object): number;
|
|
3121
3120
|
|
|
3122
3121
|
/**
|
|
3123
3122
|
* Erstellt eine neue BigDecimal-Instanz
|
|
3124
3123
|
*
|
|
3125
3124
|
* @param {object} value - Der Quell-Wert
|
|
3125
|
+
* @param {number} scale - Anzahl Nachkommastellen
|
|
3126
3126
|
* @return {number} Ein BigDecimal-Wert
|
|
3127
3127
|
*/
|
|
3128
|
-
newBigDecimal(value: object): number;
|
|
3128
|
+
newBigDecimal(value: object, scale: number): number;
|
|
3129
3129
|
|
|
3130
3130
|
/**
|
|
3131
3131
|
* Erstellt eine API-Referenz
|
|
@@ -3175,24 +3175,24 @@ export interface ShelfDocumentScriptingService {
|
|
|
3175
3175
|
deleteAttribution(attributionId: number): void;
|
|
3176
3176
|
|
|
3177
3177
|
/**
|
|
3178
|
-
* Lädt eine Datei von einer URL herunter und erstellt ein neues DMS-Dokument
|
|
3178
|
+
* Lädt eine Datei von einer URL mit Authentifizierung herunter und erstellt ein neues DMS-Dokument
|
|
3179
3179
|
*
|
|
3180
3180
|
* @param {string} url - Download-URL
|
|
3181
|
+
* @param {EScriptingAuthenticationType} authenticationType - Art der Authentifizierung (BASIC_AUTH, BEARER_TOKEN)
|
|
3182
|
+
* @param {string} authValue - Authentifizierungswert — Platzhalter (z.B. {{secret:myApi:token}}) oder Klartext. Bei BASIC_AUTH im Format 'username:password'
|
|
3181
3183
|
* @param {string} documentTypeKey - Schlüssel der Dokumentenart
|
|
3182
3184
|
* @return {ShelfDocument} Das neu erstellte DMS-Dokument
|
|
3183
3185
|
*/
|
|
3184
|
-
downloadIntoDMS(url: string, documentTypeKey: string): ShelfDocument;
|
|
3186
|
+
downloadIntoDMS(url: string, authenticationType: EScriptingAuthenticationType, authValue: string, documentTypeKey: string): ShelfDocument;
|
|
3185
3187
|
|
|
3186
3188
|
/**
|
|
3187
|
-
* Lädt eine Datei von einer URL
|
|
3189
|
+
* Lädt eine Datei von einer URL herunter und erstellt ein neues DMS-Dokument
|
|
3188
3190
|
*
|
|
3189
3191
|
* @param {string} url - Download-URL
|
|
3190
|
-
* @param {EScriptingAuthenticationType} authenticationType - Art der Authentifizierung (BASIC_AUTH, BEARER_TOKEN)
|
|
3191
|
-
* @param {string} authValue - Authentifizierungswert — Platzhalter (z.B. {{secret:myApi:token}}) oder Klartext. Bei BASIC_AUTH im Format 'username:password'
|
|
3192
3192
|
* @param {string} documentTypeKey - Schlüssel der Dokumentenart
|
|
3193
3193
|
* @return {ShelfDocument} Das neu erstellte DMS-Dokument
|
|
3194
3194
|
*/
|
|
3195
|
-
downloadIntoDMS(url: string,
|
|
3195
|
+
downloadIntoDMS(url: string, documentTypeKey: string): ShelfDocument;
|
|
3196
3196
|
|
|
3197
3197
|
/**
|
|
3198
3198
|
* Findet ein Dokumentenart über ihren Schlüssel
|