@vario-software/types 2026.21.0 → 2026.21.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vario-software/types",
3
- "version": "2026.21.0",
3
+ "version": "2026.21.1",
4
4
  "types": "./index.d.ts",
5
5
  "dependencies": {
6
6
  "@types/express": "^5.0.6"
package/schema/erp.d.ts CHANGED
@@ -92156,6 +92156,7 @@ export interface components {
92156
92156
  * @default false
92157
92157
  */
92158
92158
  resolveContentInFollowUpDocument: boolean;
92159
+ salesChannelRef?: components["schemas"]["core-api-ApiObjectReference"];
92159
92160
  /**
92160
92161
  * @description Wird eine eigene DocumentLine für den Baustein angelegt?
92161
92162
  * @default false
@@ -471,17 +471,17 @@ export interface ArticleScriptingService {
471
471
  *
472
472
  * @param {string} batchIdentifier - ID des Etikettendrucklaufs
473
473
  * @param {number} articleId - ID des zu druckenden Artikels
474
+ * @param {number} labelCount - Anzahl der zu druckenden Etiketten
474
475
  */
475
- addLabelToPrintBatch(batchIdentifier: string, articleId: number): void;
476
+ addLabelToPrintBatch(batchIdentifier: string, articleId: number, labelCount: number): void;
476
477
 
477
478
  /**
478
479
  * Fügt Informationen zum Druck Etiketten zu einem Artikel zu einem Etikettendrucklauf hinzu
479
480
  *
480
481
  * @param {string} batchIdentifier - ID des Etikettendrucklaufs
481
482
  * @param {number} articleId - ID des zu druckenden Artikels
482
- * @param {number} labelCount - Anzahl der zu druckenden Etiketten
483
483
  */
484
- addLabelToPrintBatch(batchIdentifier: string, articleId: number, labelCount: number): void;
484
+ addLabelToPrintBatch(batchIdentifier: string, articleId: number): void;
485
485
 
486
486
  /**
487
487
  * Fügt Informationen zum Druck Etiketten zu einem Artikel zu einem Etikettendrucklauf hinzu
@@ -1523,18 +1523,18 @@ export interface DocumentScriptingService {
1523
1523
  * Bricht die Bearbeitung eines Belegs ab (Transition EDIT -> SAVED)
1524
1524
  *
1525
1525
  * @param {number} documentId - ID des Belegs
1526
+ * @param {Array<AdditionalParameter>} additionalParameters - Zusätzliche Parameter
1526
1527
  * @return {Document} Der abgebrochene Beleg. Falls der Beleg erst angelegt und noch nicht gespeichert wurde, wird er gelöscht und es wird {@code null} zurückgeliefert
1527
1528
  */
1528
- cancel(documentId: number): Document;
1529
+ cancel(documentId: number, additionalParameters: Array<AdditionalParameter>): Document;
1529
1530
 
1530
1531
  /**
1531
1532
  * Bricht die Bearbeitung eines Belegs ab (Transition EDIT -> SAVED)
1532
1533
  *
1533
1534
  * @param {number} documentId - ID des Belegs
1534
- * @param {Array<AdditionalParameter>} additionalParameters - Zusätzliche Parameter
1535
1535
  * @return {Document} Der abgebrochene Beleg. Falls der Beleg erst angelegt und noch nicht gespeichert wurde, wird er gelöscht und es wird {@code null} zurückgeliefert
1536
1536
  */
1537
- cancel(documentId: number, additionalParameters: Array<AdditionalParameter>): Document;
1537
+ cancel(documentId: number): Document;
1538
1538
 
1539
1539
  /**
1540
1540
  * Kopiert einen Beleg in die vorgegebene Ziel-Belegart
@@ -1584,18 +1584,18 @@ export interface DocumentScriptingService {
1584
1584
  * Startet die Bearbeitung eines Belegs (Transition SAVED -> EDIT)
1585
1585
  *
1586
1586
  * @param {number} documentId - ID des Belegs
1587
+ * @param {Array<AdditionalParameter>} additionalParameters - Zusätzliche Parameter
1587
1588
  * @return {Document} Der Beleg in Bearbeitung
1588
1589
  */
1589
- edit(documentId: number): Document;
1590
+ edit(documentId: number, additionalParameters: Array<AdditionalParameter>): Document;
1590
1591
 
1591
1592
  /**
1592
1593
  * Startet die Bearbeitung eines Belegs (Transition SAVED -> EDIT)
1593
1594
  *
1594
1595
  * @param {number} documentId - ID des Belegs
1595
- * @param {Array<AdditionalParameter>} additionalParameters - Zusätzliche Parameter
1596
1596
  * @return {Document} Der Beleg in Bearbeitung
1597
1597
  */
1598
- edit(documentId: number, additionalParameters: Array<AdditionalParameter>): Document;
1598
+ edit(documentId: number): Document;
1599
1599
 
1600
1600
  /**
1601
1601
  * Erstellt ein AdditionalParameter-Objekt
@@ -1681,18 +1681,18 @@ export interface DocumentScriptingService {
1681
1681
  * Speichert einen Beleg (Transition EDIT -> SAVED)
1682
1682
  *
1683
1683
  * @param {number} documentId - ID des zu speichernden Belegs
1684
+ * @param {Array<AdditionalParameter>} additionalParameters - Zusätzliche Parameter
1684
1685
  * @return {Document} Der gespeicherte Beleg
1685
1686
  */
1686
- save(documentId: number): Document;
1687
+ save(documentId: number, additionalParameters: Array<AdditionalParameter>): Document;
1687
1688
 
1688
1689
  /**
1689
1690
  * Speichert einen Beleg (Transition EDIT -> SAVED)
1690
1691
  *
1691
1692
  * @param {number} documentId - ID des zu speichernden Belegs
1692
- * @param {Array<AdditionalParameter>} additionalParameters - Zusätzliche Parameter
1693
1693
  * @return {Document} Der gespeicherte Beleg
1694
1694
  */
1695
- save(documentId: number, additionalParameters: Array<AdditionalParameter>): Document;
1695
+ save(documentId: number): Document;
1696
1696
 
1697
1697
  /**
1698
1698
  * Versendet einen Beleg per Mail
@@ -2585,14 +2585,14 @@ export interface ScriptingServiceList {
2585
2585
  accountService: AccountScriptingService;
2586
2586
 
2587
2587
  /**
2588
- * Logging im Scripting
2588
+ * Verwaltung von Versandarten
2589
2589
  */
2590
- logger: LoggingScriptingService;
2590
+ deliveryMethodService: DeliveryMethodScriptingService;
2591
2591
 
2592
2592
  /**
2593
- * Verwaltung von Versandarten
2593
+ * Logging im Scripting
2594
2594
  */
2595
- deliveryMethodService: DeliveryMethodScriptingService;
2595
+ logger: LoggingScriptingService;
2596
2596
 
2597
2597
  /**
2598
2598
  * Service zur Verarbeitung von Deals
@@ -2610,14 +2610,14 @@ export interface ScriptingServiceList {
2610
2610
  productGroupService: ProductGroupScriptingService;
2611
2611
 
2612
2612
  /**
2613
- * Ausgabe-Support Methoden
2613
+ * Service zur Verarbeitung von Hauptwarengruppen im Skripten
2614
2614
  */
2615
- outputHelper: ScriptOutputHelperService;
2615
+ productMainGroupService: ProductMainGroupScriptingService;
2616
2616
 
2617
2617
  /**
2618
- * Service zur Verarbeitung von Hauptwarengruppen im Skripten
2618
+ * Ausgabe-Support Methoden
2619
2619
  */
2620
- productMainGroupService: ProductMainGroupScriptingService;
2620
+ outputHelper: ScriptOutputHelperService;
2621
2621
 
2622
2622
  /**
2623
2623
  * Service zur Verarbeitung von Account-Listings in Skripten
@@ -2670,14 +2670,14 @@ export interface ScriptingServiceList {
2670
2670
  articleStorageService: ArticleStorageScriptingService;
2671
2671
 
2672
2672
  /**
2673
- * Anfragen von neuen Zählerkreis-Nummern
2673
+ * Verwaltung von Zahlungsarten
2674
2674
  */
2675
- freeSequencerService: FreeSequencerScriptingService;
2675
+ paymentMethodService: PaymentMethodScriptingService;
2676
2676
 
2677
2677
  /**
2678
- * Verwaltung von Zahlungsarten
2678
+ * Anfragen von neuen Zählerkreis-Nummern
2679
2679
  */
2680
- paymentMethodService: PaymentMethodScriptingService;
2680
+ freeSequencerService: FreeSequencerScriptingService;
2681
2681
 
2682
2682
  /**
2683
2683
  * Service zur Bestandsabfrage und Lagerbuchung in Skripten