@vario-software/types 2026.32.1 → 2026.32.3
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 +4 -2
- package/scripting/services.d.ts +6 -6
- package/scripting/types.d.ts +292 -292
package/package.json
CHANGED
package/schema/erp.d.ts
CHANGED
|
@@ -106744,7 +106744,7 @@ export interface components {
|
|
|
106744
106744
|
* @description payment status
|
|
106745
106745
|
* @enum {string}
|
|
106746
106746
|
*/
|
|
106747
|
-
readonly status?: "READY_FOR_SUBMISSION" | "PREPARED" | "SENT" | "CANCELLED" | "
|
|
106747
|
+
readonly status?: "READY_FOR_SUBMISSION" | "PREPARED" | "SENT" | "CANCELLED" | "UNKNOWN" | "ERRONEOUS";
|
|
106748
106748
|
/**
|
|
106749
106749
|
* @description payment type
|
|
106750
106750
|
* @enum {string}
|
|
@@ -114944,6 +114944,7 @@ export interface components {
|
|
|
114944
114944
|
defaultSalesChannel?: boolean;
|
|
114945
114945
|
/** @description Beschreibung */
|
|
114946
114946
|
description?: string;
|
|
114947
|
+
discountFromSalesChannel?: components["schemas"]["core-api-ApiObjectReference"];
|
|
114947
114948
|
/** @description Externe Referenzen */
|
|
114948
114949
|
readonly externalReferences?: string;
|
|
114949
114950
|
fiscalizationBackend?: components["schemas"]["core-api-ApiObjectReference"];
|
|
@@ -114962,6 +114963,7 @@ export interface components {
|
|
|
114962
114963
|
* @description Aktuell laufender TSS-Export bis
|
|
114963
114964
|
*/
|
|
114964
114965
|
readonly pendingTssExportDateEnd?: string;
|
|
114966
|
+
priceFromSalesChannel?: components["schemas"]["core-api-ApiObjectReference"];
|
|
114965
114967
|
reportGroupRef?: components["schemas"]["core-api-ApiObjectReference"];
|
|
114966
114968
|
/**
|
|
114967
114969
|
* @description Endbetragsrundung
|
|
@@ -141017,7 +141019,7 @@ export interface operations {
|
|
|
141017
141019
|
header?: never;
|
|
141018
141020
|
path: {
|
|
141019
141021
|
paymentId: number;
|
|
141020
|
-
status: "READY_FOR_SUBMISSION" | "PREPARED" | "SENT" | "CANCELLED" | "
|
|
141022
|
+
status: "READY_FOR_SUBMISSION" | "PREPARED" | "SENT" | "CANCELLED" | "UNKNOWN" | "ERRONEOUS";
|
|
141021
141023
|
};
|
|
141022
141024
|
cookie?: never;
|
|
141023
141025
|
};
|
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
|
|
@@ -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
|