@vario-software/types 2026.32.6 → 2026.32.7
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 +26 -26
- package/scripting/types.d.ts +462 -462
package/package.json
CHANGED
package/scripting/services.d.ts
CHANGED
|
@@ -1941,16 +1941,16 @@ export interface DocumentScriptingService {
|
|
|
1941
1941
|
* Versendet einen Beleg per Mail
|
|
1942
1942
|
*
|
|
1943
1943
|
* @param {number} documentId - ID des zu versendenden Belegs
|
|
1944
|
-
* @param {string} reportGroupIdentifier -
|
|
1945
1944
|
*/
|
|
1946
|
-
sendViaMail(documentId: number
|
|
1945
|
+
sendViaMail(documentId: number): void;
|
|
1947
1946
|
|
|
1948
1947
|
/**
|
|
1949
1948
|
* Versendet einen Beleg per Mail
|
|
1950
1949
|
*
|
|
1951
1950
|
* @param {number} documentId - ID des zu versendenden Belegs
|
|
1951
|
+
* @param {string} reportGroupIdentifier -
|
|
1952
1952
|
*/
|
|
1953
|
-
sendViaMail(documentId: number): void;
|
|
1953
|
+
sendViaMail(documentId: number, reportGroupIdentifier: string): void;
|
|
1954
1954
|
|
|
1955
1955
|
/**
|
|
1956
1956
|
* Überführt einen Beleg in einen anderen Status
|
|
@@ -2882,14 +2882,14 @@ export interface ScriptingServiceList {
|
|
|
2882
2882
|
shelfDocumentService: ShelfDocumentScriptingService;
|
|
2883
2883
|
|
|
2884
2884
|
/**
|
|
2885
|
-
*
|
|
2885
|
+
* Verwaltung von Versandarten
|
|
2886
2886
|
*/
|
|
2887
|
-
|
|
2887
|
+
deliveryMethodService: DeliveryMethodScriptingService;
|
|
2888
2888
|
|
|
2889
2889
|
/**
|
|
2890
|
-
*
|
|
2890
|
+
* Logging im Scripting
|
|
2891
2891
|
*/
|
|
2892
|
-
|
|
2892
|
+
logger: LoggingScriptingService;
|
|
2893
2893
|
|
|
2894
2894
|
/**
|
|
2895
2895
|
* Service zur Verarbeitung von Deals
|
|
@@ -2912,14 +2912,14 @@ export interface ScriptingServiceList {
|
|
|
2912
2912
|
textTemplateService: TextTemplateScriptingService;
|
|
2913
2913
|
|
|
2914
2914
|
/**
|
|
2915
|
-
*
|
|
2915
|
+
* Service zur Verarbeitung von Hauptwarengruppen im Skripten
|
|
2916
2916
|
*/
|
|
2917
|
-
|
|
2917
|
+
productMainGroupService: ProductMainGroupScriptingService;
|
|
2918
2918
|
|
|
2919
2919
|
/**
|
|
2920
|
-
*
|
|
2920
|
+
* Ausgabe-Support Methoden
|
|
2921
2921
|
*/
|
|
2922
|
-
|
|
2922
|
+
outputHelper: ScriptOutputHelperService;
|
|
2923
2923
|
|
|
2924
2924
|
/**
|
|
2925
2925
|
* Service zur Verarbeitung von Account-Listings in Skripten
|
|
@@ -2947,14 +2947,14 @@ export interface ScriptingServiceList {
|
|
|
2947
2947
|
utils: ScriptingUtilities;
|
|
2948
2948
|
|
|
2949
2949
|
/**
|
|
2950
|
-
* Service zur Verarbeitung von
|
|
2950
|
+
* Service zur Verarbeitung von Artikel-Kundenbeziehungen im Skripten
|
|
2951
2951
|
*/
|
|
2952
|
-
|
|
2952
|
+
articleCustomerService: ArticleCustomerScriptingService;
|
|
2953
2953
|
|
|
2954
2954
|
/**
|
|
2955
|
-
* Service zur Verarbeitung von
|
|
2955
|
+
* Service zur Verarbeitung von Variantenschemas in Skripten
|
|
2956
2956
|
*/
|
|
2957
|
-
|
|
2957
|
+
variantSchemaService: VariantSchemaScriptingService;
|
|
2958
2958
|
|
|
2959
2959
|
/**
|
|
2960
2960
|
* Service zur Verarbeitung von Artikeln im Skripten
|
|
@@ -2982,14 +2982,14 @@ export interface ScriptingServiceList {
|
|
|
2982
2982
|
articleStorageService: ArticleStorageScriptingService;
|
|
2983
2983
|
|
|
2984
2984
|
/**
|
|
2985
|
-
*
|
|
2985
|
+
* Verwaltung von Zahlungsarten
|
|
2986
2986
|
*/
|
|
2987
|
-
|
|
2987
|
+
paymentMethodService: PaymentMethodScriptingService;
|
|
2988
2988
|
|
|
2989
2989
|
/**
|
|
2990
|
-
*
|
|
2990
|
+
* Anfragen von neuen Zählerkreis-Nummern
|
|
2991
2991
|
*/
|
|
2992
|
-
|
|
2992
|
+
freeSequencerService: FreeSequencerScriptingService;
|
|
2993
2993
|
|
|
2994
2994
|
/**
|
|
2995
2995
|
* Service zur Verarbeitung von AssetsTypen in Skripten
|
|
@@ -3002,14 +3002,14 @@ export interface ScriptingServiceList {
|
|
|
3002
3002
|
stockService: StockScriptingService;
|
|
3003
3003
|
|
|
3004
3004
|
/**
|
|
3005
|
-
* Service zur Verarbeitung von
|
|
3005
|
+
* Service zur Verarbeitung von Assets in Skripten
|
|
3006
3006
|
*/
|
|
3007
|
-
|
|
3007
|
+
assetService: AssetScriptingService;
|
|
3008
3008
|
|
|
3009
3009
|
/**
|
|
3010
|
-
* Service zur Verarbeitung von
|
|
3010
|
+
* Service zur Verarbeitung von Variantenwerten in Skripten
|
|
3011
3011
|
*/
|
|
3012
|
-
|
|
3012
|
+
variantValueService: VariantValueScriptingService;
|
|
3013
3013
|
|
|
3014
3014
|
/**
|
|
3015
3015
|
* Service zur Verarbeitung von ScenarioActualValue
|
|
@@ -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
|
|
3117
3118
|
* @return {number} Ein BigDecimal-Wert
|
|
3118
3119
|
*/
|
|
3119
|
-
newBigDecimal(value: object): number;
|
|
3120
|
+
newBigDecimal(value: object, scale: number): number;
|
|
3120
3121
|
|
|
3121
3122
|
/**
|
|
3122
3123
|
* Erstellt eine neue BigDecimal-Instanz
|
|
3123
3124
|
*
|
|
3124
3125
|
* @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
|
|
3128
|
+
newBigDecimal(value: object): number;
|
|
3129
3129
|
|
|
3130
3130
|
/**
|
|
3131
3131
|
* Erstellt eine API-Referenz
|