@vario-software/types 2026.25.0 → 2026.25.1
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/scripting/services.d.ts +10 -10
- package/scripting/types.d.ts +301 -301
package/package.json
CHANGED
package/scripting/services.d.ts
CHANGED
|
@@ -2668,14 +2668,14 @@ export interface ScriptingServiceList {
|
|
|
2668
2668
|
crmTaskService: CrmTaskScriptingService;
|
|
2669
2669
|
|
|
2670
2670
|
/**
|
|
2671
|
-
* Service zur Verarbeitung von
|
|
2671
|
+
* Service zur Verarbeitung von Accounts
|
|
2672
2672
|
*/
|
|
2673
|
-
|
|
2673
|
+
accountService: AccountScriptingService;
|
|
2674
2674
|
|
|
2675
2675
|
/**
|
|
2676
|
-
* Service zur Verarbeitung von
|
|
2676
|
+
* Service zur Verarbeitung von Shelf-Documents
|
|
2677
2677
|
*/
|
|
2678
|
-
|
|
2678
|
+
shelfDocumentService: ShelfDocumentScriptingService;
|
|
2679
2679
|
|
|
2680
2680
|
/**
|
|
2681
2681
|
* Logging im Scripting
|
|
@@ -2933,24 +2933,24 @@ export interface ShelfDocumentScriptingService {
|
|
|
2933
2933
|
deleteAttribution(attributionId: number): void;
|
|
2934
2934
|
|
|
2935
2935
|
/**
|
|
2936
|
-
* Lädt eine Datei von einer URL herunter und erstellt ein neues DMS-Dokument
|
|
2936
|
+
* Lädt eine Datei von einer URL mit Authentifizierung herunter und erstellt ein neues DMS-Dokument
|
|
2937
2937
|
*
|
|
2938
2938
|
* @param {string} url - Download-URL
|
|
2939
|
+
* @param {EScriptingAuthenticationType} authenticationType - Art der Authentifizierung (BASIC_AUTH, BEARER_TOKEN)
|
|
2940
|
+
* @param {string} authValue - Authentifizierungswert — Platzhalter (z.B. {{secret:myApi:token}}) oder Klartext. Bei BASIC_AUTH im Format 'username:password'
|
|
2939
2941
|
* @param {string} documentTypeKey - Schlüssel der Dokumentenart
|
|
2940
2942
|
* @return {ShelfDocument} Das neu erstellte DMS-Dokument
|
|
2941
2943
|
*/
|
|
2942
|
-
downloadIntoDMS(url: string, documentTypeKey: string): ShelfDocument;
|
|
2944
|
+
downloadIntoDMS(url: string, authenticationType: EScriptingAuthenticationType, authValue: string, documentTypeKey: string): ShelfDocument;
|
|
2943
2945
|
|
|
2944
2946
|
/**
|
|
2945
|
-
* Lädt eine Datei von einer URL
|
|
2947
|
+
* Lädt eine Datei von einer URL herunter und erstellt ein neues DMS-Dokument
|
|
2946
2948
|
*
|
|
2947
2949
|
* @param {string} url - Download-URL
|
|
2948
|
-
* @param {EScriptingAuthenticationType} authenticationType - Art der Authentifizierung (BASIC_AUTH, BEARER_TOKEN)
|
|
2949
|
-
* @param {string} authValue - Authentifizierungswert — Platzhalter (z.B. {{secret:myApi:token}}) oder Klartext. Bei BASIC_AUTH im Format 'username:password'
|
|
2950
2950
|
* @param {string} documentTypeKey - Schlüssel der Dokumentenart
|
|
2951
2951
|
* @return {ShelfDocument} Das neu erstellte DMS-Dokument
|
|
2952
2952
|
*/
|
|
2953
|
-
downloadIntoDMS(url: string,
|
|
2953
|
+
downloadIntoDMS(url: string, documentTypeKey: string): ShelfDocument;
|
|
2954
2954
|
|
|
2955
2955
|
/**
|
|
2956
2956
|
* Findet ein Dokumentenart über ihren Schlüssel
|