@vario-software/types 2026.16.0 → 2026.16.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/schema/erp.d.ts +2 -2
- package/scripting/services.d.ts +41 -41
- package/scripting/types.d.ts +330 -330
package/package.json
CHANGED
package/schema/erp.d.ts
CHANGED
|
@@ -83497,7 +83497,7 @@ export interface components {
|
|
|
83497
83497
|
additionalParticipantsOfCustomer?: components["schemas"]["erp-crm-CrmTaskParticipant"][];
|
|
83498
83498
|
assignedByUserRef?: components["schemas"]["core-api-ApiObjectReference"];
|
|
83499
83499
|
assignedGroupRef?: components["schemas"]["core-api-ApiObjectReference"];
|
|
83500
|
-
|
|
83500
|
+
assignedParticipantRef?: components["schemas"]["core-api-ApiObjectReference"];
|
|
83501
83501
|
assignedUserRef?: components["schemas"]["core-api-ApiObjectReference"];
|
|
83502
83502
|
/** @description Abrechnungen */
|
|
83503
83503
|
billingDocumentRefs?: components["schemas"]["erp-document-DocumentRef"][];
|
|
@@ -83575,7 +83575,7 @@ export interface components {
|
|
|
83575
83575
|
/** @description Aufgabentitel */
|
|
83576
83576
|
label: string;
|
|
83577
83577
|
mainResponsibleGroupRef?: components["schemas"]["core-api-ApiObjectReference"];
|
|
83578
|
-
|
|
83578
|
+
mainResponsibleParticipantRef?: components["schemas"]["core-api-ApiObjectReference"];
|
|
83579
83579
|
mainResponsibleUserRef?: components["schemas"]["core-api-ApiObjectReference"];
|
|
83580
83580
|
/** @description Notizen */
|
|
83581
83581
|
notes?: string;
|
package/scripting/services.d.ts
CHANGED
|
@@ -365,9 +365,10 @@ export interface ArticleScriptingService {
|
|
|
365
365
|
*
|
|
366
366
|
* @param {string} batchIdentifier - ID des Etikettendrucklaufs
|
|
367
367
|
* @param {number} articleId - ID des zu druckenden Artikels
|
|
368
|
+
* @param {number} articleSerialNumberId - ID der zu druckenden Seriennummer
|
|
368
369
|
* @param {number} labelCount - Anzahl der zu druckenden Etiketten
|
|
369
370
|
*/
|
|
370
|
-
addLabelToPrintBatch(batchIdentifier: string, articleId: number, labelCount: number): void;
|
|
371
|
+
addLabelToPrintBatch(batchIdentifier: string, articleId: number, articleSerialNumberId: number, labelCount: number): void;
|
|
371
372
|
|
|
372
373
|
/**
|
|
373
374
|
* Fügt Informationen zum Druck Etiketten zu einem Artikel zu einem Etikettendrucklauf hinzu
|
|
@@ -382,10 +383,9 @@ export interface ArticleScriptingService {
|
|
|
382
383
|
*
|
|
383
384
|
* @param {string} batchIdentifier - ID des Etikettendrucklaufs
|
|
384
385
|
* @param {number} articleId - ID des zu druckenden Artikels
|
|
385
|
-
* @param {number} articleSerialNumberId - ID der zu druckenden Seriennummer
|
|
386
386
|
* @param {number} labelCount - Anzahl der zu druckenden Etiketten
|
|
387
387
|
*/
|
|
388
|
-
addLabelToPrintBatch(batchIdentifier: string, articleId: number,
|
|
388
|
+
addLabelToPrintBatch(batchIdentifier: string, articleId: number, labelCount: number): void;
|
|
389
389
|
|
|
390
390
|
/**
|
|
391
391
|
* Persistiert einen Artikel. Die Texte werden zur Sprache {@code languageCode} gespeichert
|
|
@@ -431,16 +431,16 @@ export interface ArticleScriptingService {
|
|
|
431
431
|
* Führt einen Etikettendrucklauf aus
|
|
432
432
|
*
|
|
433
433
|
* @param {string} batchIdentifier - ID des Etikettendrucklaufs
|
|
434
|
-
* @param {string} reportGroupIdentifier - Name einer Etiketten-Report-Gruppe
|
|
435
434
|
*/
|
|
436
|
-
executeLabelPrintBatch(batchIdentifier: string
|
|
435
|
+
executeLabelPrintBatch(batchIdentifier: string): void;
|
|
437
436
|
|
|
438
437
|
/**
|
|
439
438
|
* Führt einen Etikettendrucklauf aus
|
|
440
439
|
*
|
|
441
440
|
* @param {string} batchIdentifier - ID des Etikettendrucklaufs
|
|
441
|
+
* @param {string} reportGroupIdentifier - Name einer Etiketten-Report-Gruppe
|
|
442
442
|
*/
|
|
443
|
-
executeLabelPrintBatch(batchIdentifier: string): void;
|
|
443
|
+
executeLabelPrintBatch(batchIdentifier: string, reportGroupIdentifier: string): void;
|
|
444
444
|
|
|
445
445
|
/**
|
|
446
446
|
* Liefert die Einkaufsrabatte zu einem Artikel
|
|
@@ -1362,20 +1362,20 @@ export interface DocumentScriptingService {
|
|
|
1362
1362
|
* Kopiert einen Beleg in die vorgegebene Ziel-Belegart
|
|
1363
1363
|
*
|
|
1364
1364
|
* @param {number} documentId - ID des zu kopierenden Belegs
|
|
1365
|
-
* @param {string}
|
|
1366
|
-
* @param {Array<AdditionalParameter>} additionalParameters - Zusätzliche Parameter
|
|
1365
|
+
* @param {string} targetDocumentTypeLabel - Ziel-Belegart der Kopie
|
|
1367
1366
|
* @return {Document} Der kopierte Beleg
|
|
1368
1367
|
*/
|
|
1369
|
-
copy(documentId: number,
|
|
1368
|
+
copy(documentId: number, targetDocumentTypeLabel: string): Document;
|
|
1370
1369
|
|
|
1371
1370
|
/**
|
|
1372
1371
|
* Kopiert einen Beleg in die vorgegebene Ziel-Belegart
|
|
1373
1372
|
*
|
|
1374
1373
|
* @param {number} documentId - ID des zu kopierenden Belegs
|
|
1375
|
-
* @param {string}
|
|
1374
|
+
* @param {string} targetDocumentType - Ziel-Belegart der Kopie
|
|
1375
|
+
* @param {Array<AdditionalParameter>} additionalParameters - Zusätzliche Parameter
|
|
1376
1376
|
* @return {Document} Der kopierte Beleg
|
|
1377
1377
|
*/
|
|
1378
|
-
copy(documentId: number,
|
|
1378
|
+
copy(documentId: number, targetDocumentType: string, additionalParameters: Array<AdditionalParameter>): Document;
|
|
1379
1379
|
|
|
1380
1380
|
/**
|
|
1381
1381
|
* Erstellt einen neuen Beleg
|
|
@@ -1389,35 +1389,35 @@ export interface DocumentScriptingService {
|
|
|
1389
1389
|
* Löst einen Beleg auf
|
|
1390
1390
|
*
|
|
1391
1391
|
* @param {number} documentId - ID des aufzulösenden Belegs
|
|
1392
|
-
* @param {Array<AdditionalParameter>} additionalParameters - Zusätzliche Parameter
|
|
1393
1392
|
* @return {Document} Der aufgelöste Beleg
|
|
1394
1393
|
*/
|
|
1395
|
-
dissolve(documentId: number
|
|
1394
|
+
dissolve(documentId: number): Document;
|
|
1396
1395
|
|
|
1397
1396
|
/**
|
|
1398
1397
|
* Löst einen Beleg auf
|
|
1399
1398
|
*
|
|
1400
1399
|
* @param {number} documentId - ID des aufzulösenden Belegs
|
|
1400
|
+
* @param {Array<AdditionalParameter>} additionalParameters - Zusätzliche Parameter
|
|
1401
1401
|
* @return {Document} Der aufgelöste Beleg
|
|
1402
1402
|
*/
|
|
1403
|
-
dissolve(documentId: number): Document;
|
|
1403
|
+
dissolve(documentId: number, additionalParameters: Array<AdditionalParameter>): Document;
|
|
1404
1404
|
|
|
1405
1405
|
/**
|
|
1406
1406
|
* Startet die Bearbeitung eines Belegs (Transition SAVED -> EDIT)
|
|
1407
1407
|
*
|
|
1408
1408
|
* @param {number} documentId - ID des Belegs
|
|
1409
|
+
* @param {Array<AdditionalParameter>} additionalParameters - Zusätzliche Parameter
|
|
1409
1410
|
* @return {Document} Der Beleg in Bearbeitung
|
|
1410
1411
|
*/
|
|
1411
|
-
edit(documentId: number): Document;
|
|
1412
|
+
edit(documentId: number, additionalParameters: Array<AdditionalParameter>): Document;
|
|
1412
1413
|
|
|
1413
1414
|
/**
|
|
1414
1415
|
* Startet die Bearbeitung eines Belegs (Transition SAVED -> EDIT)
|
|
1415
1416
|
*
|
|
1416
1417
|
* @param {number} documentId - ID des Belegs
|
|
1417
|
-
* @param {Array<AdditionalParameter>} additionalParameters - Zusätzliche Parameter
|
|
1418
1418
|
* @return {Document} Der Beleg in Bearbeitung
|
|
1419
1419
|
*/
|
|
1420
|
-
edit(documentId: number
|
|
1420
|
+
edit(documentId: number): Document;
|
|
1421
1421
|
|
|
1422
1422
|
/**
|
|
1423
1423
|
* Erstellt ein AdditionalParameter-Objekt
|
|
@@ -1503,33 +1503,33 @@ export interface DocumentScriptingService {
|
|
|
1503
1503
|
* Speichert einen Beleg (Transition EDIT -> SAVED)
|
|
1504
1504
|
*
|
|
1505
1505
|
* @param {number} documentId - ID des zu speichernden Belegs
|
|
1506
|
-
* @param {Array<AdditionalParameter>} additionalParameters - Zusätzliche Parameter
|
|
1507
1506
|
* @return {Document} Der gespeicherte Beleg
|
|
1508
1507
|
*/
|
|
1509
|
-
save(documentId: number
|
|
1508
|
+
save(documentId: number): Document;
|
|
1510
1509
|
|
|
1511
1510
|
/**
|
|
1512
1511
|
* Speichert einen Beleg (Transition EDIT -> SAVED)
|
|
1513
1512
|
*
|
|
1514
1513
|
* @param {number} documentId - ID des zu speichernden Belegs
|
|
1514
|
+
* @param {Array<AdditionalParameter>} additionalParameters - Zusätzliche Parameter
|
|
1515
1515
|
* @return {Document} Der gespeicherte Beleg
|
|
1516
1516
|
*/
|
|
1517
|
-
save(documentId: number): Document;
|
|
1517
|
+
save(documentId: number, additionalParameters: Array<AdditionalParameter>): Document;
|
|
1518
1518
|
|
|
1519
1519
|
/**
|
|
1520
1520
|
* Versendet einen Beleg per Mail
|
|
1521
1521
|
*
|
|
1522
1522
|
* @param {number} documentId - ID des zu versendenden Belegs
|
|
1523
|
-
* @param {string} reportGroupIdentifier -
|
|
1524
1523
|
*/
|
|
1525
|
-
sendViaMail(documentId: number
|
|
1524
|
+
sendViaMail(documentId: number): void;
|
|
1526
1525
|
|
|
1527
1526
|
/**
|
|
1528
1527
|
* Versendet einen Beleg per Mail
|
|
1529
1528
|
*
|
|
1530
1529
|
* @param {number} documentId - ID des zu versendenden Belegs
|
|
1530
|
+
* @param {string} reportGroupIdentifier -
|
|
1531
1531
|
*/
|
|
1532
|
-
sendViaMail(documentId: number): void;
|
|
1532
|
+
sendViaMail(documentId: number, reportGroupIdentifier: string): void;
|
|
1533
1533
|
|
|
1534
1534
|
/**
|
|
1535
1535
|
* Überführt einen Beleg in einen anderen Status
|
|
@@ -2396,26 +2396,26 @@ export interface ScriptingServiceList {
|
|
|
2396
2396
|
*/
|
|
2397
2397
|
crmTaskService: CrmTaskScriptingService;
|
|
2398
2398
|
|
|
2399
|
-
/**
|
|
2400
|
-
* Service zur Verarbeitung von Accounts
|
|
2401
|
-
*/
|
|
2402
|
-
accountService: AccountScriptingService;
|
|
2403
|
-
|
|
2404
2399
|
/**
|
|
2405
2400
|
* Service zur Verarbeitung von Shelf-Documents
|
|
2406
2401
|
*/
|
|
2407
2402
|
shelfDocumentService: ShelfDocumentScriptingService;
|
|
2408
2403
|
|
|
2409
2404
|
/**
|
|
2410
|
-
*
|
|
2405
|
+
* Service zur Verarbeitung von Accounts
|
|
2411
2406
|
*/
|
|
2412
|
-
|
|
2407
|
+
accountService: AccountScriptingService;
|
|
2413
2408
|
|
|
2414
2409
|
/**
|
|
2415
2410
|
* Verwaltung von Versandarten
|
|
2416
2411
|
*/
|
|
2417
2412
|
deliveryMethodService: DeliveryMethodScriptingService;
|
|
2418
2413
|
|
|
2414
|
+
/**
|
|
2415
|
+
* Logging im Scripting
|
|
2416
|
+
*/
|
|
2417
|
+
logger: LoggingScriptingService;
|
|
2418
|
+
|
|
2419
2419
|
/**
|
|
2420
2420
|
* Service zur Verarbeitung von Deals
|
|
2421
2421
|
*/
|
|
@@ -2432,14 +2432,14 @@ export interface ScriptingServiceList {
|
|
|
2432
2432
|
productGroupService: ProductGroupScriptingService;
|
|
2433
2433
|
|
|
2434
2434
|
/**
|
|
2435
|
-
*
|
|
2435
|
+
* Service zur Verarbeitung von Hauptwarengruppen im Skripten
|
|
2436
2436
|
*/
|
|
2437
|
-
|
|
2437
|
+
productMainGroupService: ProductMainGroupScriptingService;
|
|
2438
2438
|
|
|
2439
2439
|
/**
|
|
2440
|
-
*
|
|
2440
|
+
* Ausgabe-Support Methoden
|
|
2441
2441
|
*/
|
|
2442
|
-
|
|
2442
|
+
outputHelper: ScriptOutputHelperService;
|
|
2443
2443
|
|
|
2444
2444
|
/**
|
|
2445
2445
|
* Erstellt DTOs zur Verwendung im Skript
|
|
@@ -2482,14 +2482,14 @@ export interface ScriptingServiceList {
|
|
|
2482
2482
|
variantValueListingService: VariantValueListingScriptingService;
|
|
2483
2483
|
|
|
2484
2484
|
/**
|
|
2485
|
-
*
|
|
2485
|
+
* Verwaltung von Zahlungsarten
|
|
2486
2486
|
*/
|
|
2487
|
-
|
|
2487
|
+
paymentMethodService: PaymentMethodScriptingService;
|
|
2488
2488
|
|
|
2489
2489
|
/**
|
|
2490
|
-
*
|
|
2490
|
+
* Anfragen von neuen Zählerkreis-Nummern
|
|
2491
2491
|
*/
|
|
2492
|
-
|
|
2492
|
+
freeSequencerService: FreeSequencerScriptingService;
|
|
2493
2493
|
|
|
2494
2494
|
/**
|
|
2495
2495
|
* Service zur Verarbeitung von Variantenwerten in Skripten
|
|
@@ -2594,18 +2594,18 @@ export interface ScriptingUtilities {
|
|
|
2594
2594
|
* Erstellt eine neue BigDecimal-Instanz
|
|
2595
2595
|
*
|
|
2596
2596
|
* @param {object} value - Der Quell-Wert
|
|
2597
|
-
* @param {number} scale - Anzahl Nachkommastellen
|
|
2598
2597
|
* @return {number} Ein BigDecimal-Wert
|
|
2599
2598
|
*/
|
|
2600
|
-
newBigDecimal(value: object
|
|
2599
|
+
newBigDecimal(value: object): number;
|
|
2601
2600
|
|
|
2602
2601
|
/**
|
|
2603
2602
|
* Erstellt eine neue BigDecimal-Instanz
|
|
2604
2603
|
*
|
|
2605
2604
|
* @param {object} value - Der Quell-Wert
|
|
2605
|
+
* @param {number} scale - Anzahl Nachkommastellen
|
|
2606
2606
|
* @return {number} Ein BigDecimal-Wert
|
|
2607
2607
|
*/
|
|
2608
|
-
newBigDecimal(value: object): number;
|
|
2608
|
+
newBigDecimal(value: object, scale: number): number;
|
|
2609
2609
|
|
|
2610
2610
|
/**
|
|
2611
2611
|
* Erstellt eine API-Referenz
|