@vario-software/types 2026.28.0 → 2026.28.2
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 +35 -35
- package/scripting/types.d.ts +354 -354
package/package.json
CHANGED
package/scripting/services.d.ts
CHANGED
|
@@ -1817,18 +1817,18 @@ export interface DocumentScriptingService {
|
|
|
1817
1817
|
* Startet die Bearbeitung eines Belegs (Transition SAVED -> EDIT)
|
|
1818
1818
|
*
|
|
1819
1819
|
* @param {number} documentId - ID des Belegs
|
|
1820
|
-
* @param {Array<AdditionalParameter>} additionalParameters - Zusätzliche Parameter
|
|
1821
1820
|
* @return {Document} Der Beleg in Bearbeitung
|
|
1822
1821
|
*/
|
|
1823
|
-
edit(documentId: number
|
|
1822
|
+
edit(documentId: number): Document;
|
|
1824
1823
|
|
|
1825
1824
|
/**
|
|
1826
1825
|
* Startet die Bearbeitung eines Belegs (Transition SAVED -> EDIT)
|
|
1827
1826
|
*
|
|
1828
1827
|
* @param {number} documentId - ID des Belegs
|
|
1828
|
+
* @param {Array<AdditionalParameter>} additionalParameters - Zusätzliche Parameter
|
|
1829
1829
|
* @return {Document} Der Beleg in Bearbeitung
|
|
1830
1830
|
*/
|
|
1831
|
-
edit(documentId: number): Document;
|
|
1831
|
+
edit(documentId: number, additionalParameters: Array<AdditionalParameter>): Document;
|
|
1832
1832
|
|
|
1833
1833
|
/**
|
|
1834
1834
|
* Erstellt ein AdditionalParameter-Objekt
|
|
@@ -1931,16 +1931,16 @@ export interface DocumentScriptingService {
|
|
|
1931
1931
|
* Versendet einen Beleg per Mail
|
|
1932
1932
|
*
|
|
1933
1933
|
* @param {number} documentId - ID des zu versendenden Belegs
|
|
1934
|
-
* @param {string} reportGroupIdentifier -
|
|
1935
1934
|
*/
|
|
1936
|
-
sendViaMail(documentId: number
|
|
1935
|
+
sendViaMail(documentId: number): void;
|
|
1937
1936
|
|
|
1938
1937
|
/**
|
|
1939
1938
|
* Versendet einen Beleg per Mail
|
|
1940
1939
|
*
|
|
1941
1940
|
* @param {number} documentId - ID des zu versendenden Belegs
|
|
1941
|
+
* @param {string} reportGroupIdentifier -
|
|
1942
1942
|
*/
|
|
1943
|
-
sendViaMail(documentId: number): void;
|
|
1943
|
+
sendViaMail(documentId: number, reportGroupIdentifier: string): void;
|
|
1944
1944
|
|
|
1945
1945
|
/**
|
|
1946
1946
|
* Überführt einen Beleg in einen anderen Status
|
|
@@ -2861,26 +2861,26 @@ export interface ScriptingServiceList {
|
|
|
2861
2861
|
*/
|
|
2862
2862
|
crmTaskService: CrmTaskScriptingService;
|
|
2863
2863
|
|
|
2864
|
-
/**
|
|
2865
|
-
* Service zur Verarbeitung von Shelf-Documents
|
|
2866
|
-
*/
|
|
2867
|
-
shelfDocumentService: ShelfDocumentScriptingService;
|
|
2868
|
-
|
|
2869
2864
|
/**
|
|
2870
2865
|
* Service zur Verarbeitung von Accounts
|
|
2871
2866
|
*/
|
|
2872
2867
|
accountService: AccountScriptingService;
|
|
2873
2868
|
|
|
2874
2869
|
/**
|
|
2875
|
-
*
|
|
2870
|
+
* Service zur Verarbeitung von Shelf-Documents
|
|
2876
2871
|
*/
|
|
2877
|
-
|
|
2872
|
+
shelfDocumentService: ShelfDocumentScriptingService;
|
|
2878
2873
|
|
|
2879
2874
|
/**
|
|
2880
2875
|
* Verwaltung von Versandarten
|
|
2881
2876
|
*/
|
|
2882
2877
|
deliveryMethodService: DeliveryMethodScriptingService;
|
|
2883
2878
|
|
|
2879
|
+
/**
|
|
2880
|
+
* Logging im Scripting
|
|
2881
|
+
*/
|
|
2882
|
+
logger: LoggingScriptingService;
|
|
2883
|
+
|
|
2884
2884
|
/**
|
|
2885
2885
|
* Service zur Verarbeitung von Deals
|
|
2886
2886
|
*/
|
|
@@ -2897,14 +2897,14 @@ export interface ScriptingServiceList {
|
|
|
2897
2897
|
productGroupService: ProductGroupScriptingService;
|
|
2898
2898
|
|
|
2899
2899
|
/**
|
|
2900
|
-
*
|
|
2900
|
+
* Service zur Verarbeitung von Hauptwarengruppen im Skripten
|
|
2901
2901
|
*/
|
|
2902
|
-
|
|
2902
|
+
productMainGroupService: ProductMainGroupScriptingService;
|
|
2903
2903
|
|
|
2904
2904
|
/**
|
|
2905
|
-
*
|
|
2905
|
+
* Ausgabe-Support Methoden
|
|
2906
2906
|
*/
|
|
2907
|
-
|
|
2907
|
+
outputHelper: ScriptOutputHelperService;
|
|
2908
2908
|
|
|
2909
2909
|
/**
|
|
2910
2910
|
* Service zur Verarbeitung von Account-Listings in Skripten
|
|
@@ -2932,14 +2932,14 @@ export interface ScriptingServiceList {
|
|
|
2932
2932
|
utils: ScriptingUtilities;
|
|
2933
2933
|
|
|
2934
2934
|
/**
|
|
2935
|
-
* Service zur Verarbeitung von
|
|
2935
|
+
* Service zur Verarbeitung von Artikel-Kundenbeziehungen im Skripten
|
|
2936
2936
|
*/
|
|
2937
|
-
|
|
2937
|
+
articleCustomerService: ArticleCustomerScriptingService;
|
|
2938
2938
|
|
|
2939
2939
|
/**
|
|
2940
|
-
* Service zur Verarbeitung von
|
|
2940
|
+
* Service zur Verarbeitung von Variantenschemas in Skripten
|
|
2941
2941
|
*/
|
|
2942
|
-
|
|
2942
|
+
variantSchemaService: VariantSchemaScriptingService;
|
|
2943
2943
|
|
|
2944
2944
|
/**
|
|
2945
2945
|
* Service zur Verarbeitung von Artikeln im Skripten
|
|
@@ -2967,14 +2967,14 @@ export interface ScriptingServiceList {
|
|
|
2967
2967
|
articleStorageService: ArticleStorageScriptingService;
|
|
2968
2968
|
|
|
2969
2969
|
/**
|
|
2970
|
-
*
|
|
2970
|
+
* Verwaltung von Zahlungsarten
|
|
2971
2971
|
*/
|
|
2972
|
-
|
|
2972
|
+
paymentMethodService: PaymentMethodScriptingService;
|
|
2973
2973
|
|
|
2974
2974
|
/**
|
|
2975
|
-
*
|
|
2975
|
+
* Anfragen von neuen Zählerkreis-Nummern
|
|
2976
2976
|
*/
|
|
2977
|
-
|
|
2977
|
+
freeSequencerService: FreeSequencerScriptingService;
|
|
2978
2978
|
|
|
2979
2979
|
/**
|
|
2980
2980
|
* Service zur Verarbeitung von AssetsTypen in Skripten
|
|
@@ -2987,14 +2987,14 @@ export interface ScriptingServiceList {
|
|
|
2987
2987
|
stockService: StockScriptingService;
|
|
2988
2988
|
|
|
2989
2989
|
/**
|
|
2990
|
-
* Service zur Verarbeitung von
|
|
2990
|
+
* Service zur Verarbeitung von Assets in Skripten
|
|
2991
2991
|
*/
|
|
2992
|
-
|
|
2992
|
+
assetService: AssetScriptingService;
|
|
2993
2993
|
|
|
2994
2994
|
/**
|
|
2995
|
-
* Service zur Verarbeitung von
|
|
2995
|
+
* Service zur Verarbeitung von Variantenwerten in Skripten
|
|
2996
2996
|
*/
|
|
2997
|
-
|
|
2997
|
+
variantValueService: VariantValueScriptingService;
|
|
2998
2998
|
|
|
2999
2999
|
/**
|
|
3000
3000
|
* Service zur Verarbeitung von ScenarioActualValue
|
|
@@ -3160,24 +3160,24 @@ export interface ShelfDocumentScriptingService {
|
|
|
3160
3160
|
deleteAttribution(attributionId: number): void;
|
|
3161
3161
|
|
|
3162
3162
|
/**
|
|
3163
|
-
* Lädt eine Datei von einer URL
|
|
3163
|
+
* Lädt eine Datei von einer URL herunter und erstellt ein neues DMS-Dokument
|
|
3164
3164
|
*
|
|
3165
3165
|
* @param {string} url - Download-URL
|
|
3166
|
-
* @param {EScriptingAuthenticationType} authenticationType - Art der Authentifizierung (BASIC_AUTH, BEARER_TOKEN)
|
|
3167
|
-
* @param {string} authValue - Authentifizierungswert — Platzhalter (z.B. {{secret:myApi:token}}) oder Klartext. Bei BASIC_AUTH im Format 'username:password'
|
|
3168
3166
|
* @param {string} documentTypeKey - Schlüssel der Dokumentenart
|
|
3169
3167
|
* @return {ShelfDocument} Das neu erstellte DMS-Dokument
|
|
3170
3168
|
*/
|
|
3171
|
-
downloadIntoDMS(url: string,
|
|
3169
|
+
downloadIntoDMS(url: string, documentTypeKey: string): ShelfDocument;
|
|
3172
3170
|
|
|
3173
3171
|
/**
|
|
3174
|
-
* Lädt eine Datei von einer URL herunter und erstellt ein neues DMS-Dokument
|
|
3172
|
+
* Lädt eine Datei von einer URL mit Authentifizierung herunter und erstellt ein neues DMS-Dokument
|
|
3175
3173
|
*
|
|
3176
3174
|
* @param {string} url - Download-URL
|
|
3175
|
+
* @param {EScriptingAuthenticationType} authenticationType - Art der Authentifizierung (BASIC_AUTH, BEARER_TOKEN)
|
|
3176
|
+
* @param {string} authValue - Authentifizierungswert — Platzhalter (z.B. {{secret:myApi:token}}) oder Klartext. Bei BASIC_AUTH im Format 'username:password'
|
|
3177
3177
|
* @param {string} documentTypeKey - Schlüssel der Dokumentenart
|
|
3178
3178
|
* @return {ShelfDocument} Das neu erstellte DMS-Dokument
|
|
3179
3179
|
*/
|
|
3180
|
-
downloadIntoDMS(url: string, documentTypeKey: string): ShelfDocument;
|
|
3180
|
+
downloadIntoDMS(url: string, authenticationType: EScriptingAuthenticationType, authValue: string, documentTypeKey: string): ShelfDocument;
|
|
3181
3181
|
|
|
3182
3182
|
/**
|
|
3183
3183
|
* Findet ein Dokumentenart über ihren Schlüssel
|