@vario-software/types 2026.30.3 → 2026.31.0
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 +90740 -49605
- package/scripting/eav_types.d.ts +6 -0
- package/scripting/services.d.ts +75 -60
- package/scripting/types.d.ts +572 -395
package/scripting/eav_types.d.ts
CHANGED
package/scripting/services.d.ts
CHANGED
|
@@ -5,14 +5,15 @@ import {
|
|
|
5
5
|
ApiObjectReference, Article, Article$Metric, ArticleAssetInformation,
|
|
6
6
|
ArticleAvailabilityDetermination, ArticleCustomer, ArticleIdentifier,
|
|
7
7
|
ArticleListing, ArticlePrintLabelSettings, ArticleSerialNumber,
|
|
8
|
-
ArticleStorage, ArticleSupplier,
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
8
|
+
ArticleStorage, ArticleSupplier, AssemblyComponentReturnLine, Asset,
|
|
9
|
+
AssetType, BulkTransferRequestApi, BulkTransferResult, Contact,
|
|
10
|
+
CountryReference, CreateNewDocumentRequest, CrmActivity, CrmActivityType,
|
|
11
|
+
CrmChecklistItem, CrmDeal, CrmDealTopic, CrmObjectRef, CrmParticipant,
|
|
12
|
+
CrmPriority, CrmProject, CrmReference, CrmReminder, CrmState, CrmSubType,
|
|
13
|
+
CrmTask, CrmTaskParticipant, CrmTypedDocumentRef, CrmTypedDocumentRefList,
|
|
14
|
+
CurrencyReference, Customer, DangerousGoodInformation,
|
|
15
|
+
DealNotificationEventConfig, DeliveryMethod, DeliveryTerm, DmsOutputStream,
|
|
16
|
+
Document, DocumentAdditionalInfo,
|
|
16
17
|
DocumentAdditionalInfo$IncomingGoodsTarget,
|
|
17
18
|
DocumentAdditionalInfo$IncomingGoodsTargetOfLine,
|
|
18
19
|
DocumentAdditionalInfo$PrintedTranslatedField, DocumentAddress,
|
|
@@ -21,8 +22,8 @@ import {
|
|
|
21
22
|
DocumentLineComponent, DocumentLineComponentFabricationDetail,
|
|
22
23
|
DocumentLineFabricationBookedComponent, DocumentLineFabricationComponent,
|
|
23
24
|
DocumentLineFabricationDetail, DocumentLineFabricationDetailSerialNumber,
|
|
24
|
-
DocumentLinePosDetail, DocumentLineRef,
|
|
25
|
-
DocumentPosPayment, DocumentPriceModifier, DocumentRef,
|
|
25
|
+
DocumentLinePosDetail, DocumentLineRef, DocumentLineReturnDetail,
|
|
26
|
+
DocumentPosDetail, DocumentPosPayment, DocumentPriceModifier, DocumentRef,
|
|
26
27
|
DocumentShippingCost, DocumentTax, DocumentText,
|
|
27
28
|
DocumentTransferToStateRequest, DocumentTransferToTypeRequest,
|
|
28
29
|
DocumentType, DocumentTypeFollowUp, DocumentTypeLabel, DocumentTypeState,
|
|
@@ -553,27 +554,27 @@ export interface ArticleScriptingService {
|
|
|
553
554
|
*
|
|
554
555
|
* @param {string} batchIdentifier - ID des Etikettendrucklaufs
|
|
555
556
|
* @param {number} articleId - ID des zu druckenden Artikels
|
|
556
|
-
* @param {number} articleSerialNumberId - ID der zu druckenden Seriennummer
|
|
557
557
|
* @param {number} labelCount - Anzahl der zu druckenden Etiketten
|
|
558
558
|
*/
|
|
559
|
-
addLabelToPrintBatch(batchIdentifier: string, articleId: number,
|
|
559
|
+
addLabelToPrintBatch(batchIdentifier: string, articleId: number, labelCount: number): void;
|
|
560
560
|
|
|
561
561
|
/**
|
|
562
562
|
* Fügt Informationen zum Druck Etiketten zu einem Artikel zu einem Etikettendrucklauf hinzu
|
|
563
563
|
*
|
|
564
564
|
* @param {string} batchIdentifier - ID des Etikettendrucklaufs
|
|
565
565
|
* @param {number} articleId - ID des zu druckenden Artikels
|
|
566
|
-
* @param {number} labelCount - Anzahl der zu druckenden Etiketten
|
|
567
566
|
*/
|
|
568
|
-
addLabelToPrintBatch(batchIdentifier: string, articleId: number
|
|
567
|
+
addLabelToPrintBatch(batchIdentifier: string, articleId: number): void;
|
|
569
568
|
|
|
570
569
|
/**
|
|
571
570
|
* Fügt Informationen zum Druck Etiketten zu einem Artikel zu einem Etikettendrucklauf hinzu
|
|
572
571
|
*
|
|
573
572
|
* @param {string} batchIdentifier - ID des Etikettendrucklaufs
|
|
574
573
|
* @param {number} articleId - ID des zu druckenden Artikels
|
|
574
|
+
* @param {number} articleSerialNumberId - ID der zu druckenden Seriennummer
|
|
575
|
+
* @param {number} labelCount - Anzahl der zu druckenden Etiketten
|
|
575
576
|
*/
|
|
576
|
-
addLabelToPrintBatch(batchIdentifier: string, articleId: number): void;
|
|
577
|
+
addLabelToPrintBatch(batchIdentifier: string, articleId: number, articleSerialNumberId: number, labelCount: number): void;
|
|
577
578
|
|
|
578
579
|
/**
|
|
579
580
|
* Persistiert einen Artikel. Die Texte werden zur Sprache {@code languageCode} gespeichert
|
|
@@ -689,21 +690,21 @@ Die Texte werden zur Sprache der eigenen Adresse gespeichert.
|
|
|
689
690
|
newLabelPrintBatchIdentifier(): string;
|
|
690
691
|
|
|
691
692
|
/**
|
|
692
|
-
* Liest einen Artikel mit Texten zur Sprache
|
|
693
|
+
* Liest einen Artikel mit Texten zur Sprache languageCode
|
|
693
694
|
*
|
|
694
695
|
* @param {number} id - ID vom zu lesenden Artikel
|
|
696
|
+
* @param {string} languageCode - Zu verwendende Sprache
|
|
695
697
|
* @return {Article} Der gelesene Artikel
|
|
696
698
|
*/
|
|
697
|
-
readById(id: number): Article;
|
|
699
|
+
readById(id: number, languageCode: string): Article;
|
|
698
700
|
|
|
699
701
|
/**
|
|
700
|
-
* Liest einen Artikel mit Texten zur Sprache
|
|
702
|
+
* Liest einen Artikel mit Texten zur Sprache der eigenen Adresse
|
|
701
703
|
*
|
|
702
704
|
* @param {number} id - ID vom zu lesenden Artikel
|
|
703
|
-
* @param {string} languageCode - Zu verwendende Sprache
|
|
704
705
|
* @return {Article} Der gelesene Artikel
|
|
705
706
|
*/
|
|
706
|
-
readById(id: number
|
|
707
|
+
readById(id: number): Article;
|
|
707
708
|
|
|
708
709
|
/**
|
|
709
710
|
* Liest einen Artikel über die Artikelnummer mit Texten zur Sprache {@code languageCode}
|
|
@@ -1757,37 +1758,37 @@ export interface DocumentScriptingService {
|
|
|
1757
1758
|
* Bricht die Bearbeitung eines Belegs ab (Transition EDIT -> SAVED)
|
|
1758
1759
|
*
|
|
1759
1760
|
* @param {number} documentId - ID des Belegs
|
|
1760
|
-
* @param {Array<AdditionalParameter>} additionalParameters - Zusätzliche Parameter
|
|
1761
1761
|
* @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
|
|
1762
1762
|
*/
|
|
1763
|
-
cancel(documentId: number
|
|
1763
|
+
cancel(documentId: number): Document;
|
|
1764
1764
|
|
|
1765
1765
|
/**
|
|
1766
1766
|
* Bricht die Bearbeitung eines Belegs ab (Transition EDIT -> SAVED)
|
|
1767
1767
|
*
|
|
1768
1768
|
* @param {number} documentId - ID des Belegs
|
|
1769
|
+
* @param {Array<AdditionalParameter>} additionalParameters - Zusätzliche Parameter
|
|
1769
1770
|
* @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
|
|
1770
1771
|
*/
|
|
1771
|
-
cancel(documentId: number): Document;
|
|
1772
|
+
cancel(documentId: number, additionalParameters: Array<AdditionalParameter>): Document;
|
|
1772
1773
|
|
|
1773
1774
|
/**
|
|
1774
1775
|
* Kopiert einen Beleg in die vorgegebene Ziel-Belegart
|
|
1775
1776
|
*
|
|
1776
1777
|
* @param {number} documentId - ID des zu kopierenden Belegs
|
|
1777
|
-
* @param {string}
|
|
1778
|
+
* @param {string} targetDocumentType - Ziel-Belegart der Kopie
|
|
1779
|
+
* @param {Array<AdditionalParameter>} additionalParameters - Zusätzliche Parameter
|
|
1778
1780
|
* @return {Document} Der kopierte Beleg
|
|
1779
1781
|
*/
|
|
1780
|
-
copy(documentId: number,
|
|
1782
|
+
copy(documentId: number, targetDocumentType: string, additionalParameters: Array<AdditionalParameter>): Document;
|
|
1781
1783
|
|
|
1782
1784
|
/**
|
|
1783
1785
|
* Kopiert einen Beleg in die vorgegebene Ziel-Belegart
|
|
1784
1786
|
*
|
|
1785
1787
|
* @param {number} documentId - ID des zu kopierenden Belegs
|
|
1786
|
-
* @param {string}
|
|
1787
|
-
* @param {Array<AdditionalParameter>} additionalParameters - Zusätzliche Parameter
|
|
1788
|
+
* @param {string} targetDocumentTypeLabel - Ziel-Belegart der Kopie
|
|
1788
1789
|
* @return {Document} Der kopierte Beleg
|
|
1789
1790
|
*/
|
|
1790
|
-
copy(documentId: number,
|
|
1791
|
+
copy(documentId: number, targetDocumentTypeLabel: string): Document;
|
|
1791
1792
|
|
|
1792
1793
|
/**
|
|
1793
1794
|
* Erstellt einen neuen Beleg
|
|
@@ -1801,18 +1802,18 @@ export interface DocumentScriptingService {
|
|
|
1801
1802
|
* Löst einen Beleg auf
|
|
1802
1803
|
*
|
|
1803
1804
|
* @param {number} documentId - ID des aufzulösenden Belegs
|
|
1805
|
+
* @param {Array<AdditionalParameter>} additionalParameters - Zusätzliche Parameter
|
|
1804
1806
|
* @return {Document} Der aufgelöste Beleg
|
|
1805
1807
|
*/
|
|
1806
|
-
dissolve(documentId: number): Document;
|
|
1808
|
+
dissolve(documentId: number, additionalParameters: Array<AdditionalParameter>): Document;
|
|
1807
1809
|
|
|
1808
1810
|
/**
|
|
1809
1811
|
* Löst einen Beleg auf
|
|
1810
1812
|
*
|
|
1811
1813
|
* @param {number} documentId - ID des aufzulösenden Belegs
|
|
1812
|
-
* @param {Array<AdditionalParameter>} additionalParameters - Zusätzliche Parameter
|
|
1813
1814
|
* @return {Document} Der aufgelöste Beleg
|
|
1814
1815
|
*/
|
|
1815
|
-
dissolve(documentId: number
|
|
1816
|
+
dissolve(documentId: number): Document;
|
|
1816
1817
|
|
|
1817
1818
|
/**
|
|
1818
1819
|
* Startet die Bearbeitung eines Belegs (Transition SAVED -> EDIT)
|
|
@@ -1923,18 +1924,18 @@ export interface DocumentScriptingService {
|
|
|
1923
1924
|
* Speichert einen Beleg (Transition EDIT -> SAVED)
|
|
1924
1925
|
*
|
|
1925
1926
|
* @param {number} documentId - ID des zu speichernden Belegs
|
|
1926
|
-
* @param {Array<AdditionalParameter>} additionalParameters - Zusätzliche Parameter
|
|
1927
1927
|
* @return {Document} Der gespeicherte Beleg
|
|
1928
1928
|
*/
|
|
1929
|
-
save(documentId: number
|
|
1929
|
+
save(documentId: number): Document;
|
|
1930
1930
|
|
|
1931
1931
|
/**
|
|
1932
1932
|
* Speichert einen Beleg (Transition EDIT -> SAVED)
|
|
1933
1933
|
*
|
|
1934
1934
|
* @param {number} documentId - ID des zu speichernden Belegs
|
|
1935
|
+
* @param {Array<AdditionalParameter>} additionalParameters - Zusätzliche Parameter
|
|
1935
1936
|
* @return {Document} Der gespeicherte Beleg
|
|
1936
1937
|
*/
|
|
1937
|
-
save(documentId: number): Document;
|
|
1938
|
+
save(documentId: number, additionalParameters: Array<AdditionalParameter>): Document;
|
|
1938
1939
|
|
|
1939
1940
|
/**
|
|
1940
1941
|
* Versendet einen Beleg per Mail
|
|
@@ -2870,26 +2871,26 @@ export interface ScriptingServiceList {
|
|
|
2870
2871
|
*/
|
|
2871
2872
|
crmTaskService: CrmTaskScriptingService;
|
|
2872
2873
|
|
|
2873
|
-
/**
|
|
2874
|
-
* Service zur Verarbeitung von Shelf-Documents
|
|
2875
|
-
*/
|
|
2876
|
-
shelfDocumentService: ShelfDocumentScriptingService;
|
|
2877
|
-
|
|
2878
2874
|
/**
|
|
2879
2875
|
* Service zur Verarbeitung von Accounts
|
|
2880
2876
|
*/
|
|
2881
2877
|
accountService: AccountScriptingService;
|
|
2882
2878
|
|
|
2883
2879
|
/**
|
|
2884
|
-
*
|
|
2880
|
+
* Service zur Verarbeitung von Shelf-Documents
|
|
2885
2881
|
*/
|
|
2886
|
-
|
|
2882
|
+
shelfDocumentService: ShelfDocumentScriptingService;
|
|
2887
2883
|
|
|
2888
2884
|
/**
|
|
2889
2885
|
* Verwaltung von Versandarten
|
|
2890
2886
|
*/
|
|
2891
2887
|
deliveryMethodService: DeliveryMethodScriptingService;
|
|
2892
2888
|
|
|
2889
|
+
/**
|
|
2890
|
+
* Logging im Scripting
|
|
2891
|
+
*/
|
|
2892
|
+
logger: LoggingScriptingService;
|
|
2893
|
+
|
|
2893
2894
|
/**
|
|
2894
2895
|
* Service zur Verarbeitung von Deals
|
|
2895
2896
|
*/
|
|
@@ -2911,14 +2912,14 @@ export interface ScriptingServiceList {
|
|
|
2911
2912
|
textTemplateService: TextTemplateScriptingService;
|
|
2912
2913
|
|
|
2913
2914
|
/**
|
|
2914
|
-
*
|
|
2915
|
+
* Service zur Verarbeitung von Hauptwarengruppen im Skripten
|
|
2915
2916
|
*/
|
|
2916
|
-
|
|
2917
|
+
productMainGroupService: ProductMainGroupScriptingService;
|
|
2917
2918
|
|
|
2918
2919
|
/**
|
|
2919
|
-
*
|
|
2920
|
+
* Ausgabe-Support Methoden
|
|
2920
2921
|
*/
|
|
2921
|
-
|
|
2922
|
+
outputHelper: ScriptOutputHelperService;
|
|
2922
2923
|
|
|
2923
2924
|
/**
|
|
2924
2925
|
* Service zur Verarbeitung von Account-Listings in Skripten
|
|
@@ -2946,14 +2947,14 @@ export interface ScriptingServiceList {
|
|
|
2946
2947
|
utils: ScriptingUtilities;
|
|
2947
2948
|
|
|
2948
2949
|
/**
|
|
2949
|
-
* Service zur Verarbeitung von
|
|
2950
|
+
* Service zur Verarbeitung von Artikel-Kundenbeziehungen im Skripten
|
|
2950
2951
|
*/
|
|
2951
|
-
|
|
2952
|
+
articleCustomerService: ArticleCustomerScriptingService;
|
|
2952
2953
|
|
|
2953
2954
|
/**
|
|
2954
|
-
* Service zur Verarbeitung von
|
|
2955
|
+
* Service zur Verarbeitung von Variantenschemas in Skripten
|
|
2955
2956
|
*/
|
|
2956
|
-
|
|
2957
|
+
variantSchemaService: VariantSchemaScriptingService;
|
|
2957
2958
|
|
|
2958
2959
|
/**
|
|
2959
2960
|
* Service zur Verarbeitung von Artikeln im Skripten
|
|
@@ -2981,14 +2982,14 @@ export interface ScriptingServiceList {
|
|
|
2981
2982
|
articleStorageService: ArticleStorageScriptingService;
|
|
2982
2983
|
|
|
2983
2984
|
/**
|
|
2984
|
-
*
|
|
2985
|
+
* Verwaltung von Zahlungsarten
|
|
2985
2986
|
*/
|
|
2986
|
-
|
|
2987
|
+
paymentMethodService: PaymentMethodScriptingService;
|
|
2987
2988
|
|
|
2988
2989
|
/**
|
|
2989
|
-
*
|
|
2990
|
+
* Anfragen von neuen Zählerkreis-Nummern
|
|
2990
2991
|
*/
|
|
2991
|
-
|
|
2992
|
+
freeSequencerService: FreeSequencerScriptingService;
|
|
2992
2993
|
|
|
2993
2994
|
/**
|
|
2994
2995
|
* Service zur Verarbeitung von AssetsTypen in Skripten
|
|
@@ -3001,14 +3002,14 @@ export interface ScriptingServiceList {
|
|
|
3001
3002
|
stockService: StockScriptingService;
|
|
3002
3003
|
|
|
3003
3004
|
/**
|
|
3004
|
-
* Service zur Verarbeitung von
|
|
3005
|
+
* Service zur Verarbeitung von Assets in Skripten
|
|
3005
3006
|
*/
|
|
3006
|
-
|
|
3007
|
+
assetService: AssetScriptingService;
|
|
3007
3008
|
|
|
3008
3009
|
/**
|
|
3009
|
-
* Service zur Verarbeitung von
|
|
3010
|
+
* Service zur Verarbeitung von Variantenwerten in Skripten
|
|
3010
3011
|
*/
|
|
3011
|
-
|
|
3012
|
+
variantValueService: VariantValueScriptingService;
|
|
3012
3013
|
|
|
3013
3014
|
/**
|
|
3014
3015
|
* Service zur Verarbeitung von ScenarioActualValue
|
|
@@ -3113,18 +3114,18 @@ export interface ScriptingUtilities {
|
|
|
3113
3114
|
* Erstellt eine neue BigDecimal-Instanz
|
|
3114
3115
|
*
|
|
3115
3116
|
* @param {object} value - Der Quell-Wert
|
|
3116
|
-
* @param {number} scale - Anzahl Nachkommastellen
|
|
3117
3117
|
* @return {number} Ein BigDecimal-Wert
|
|
3118
3118
|
*/
|
|
3119
|
-
newBigDecimal(value: object
|
|
3119
|
+
newBigDecimal(value: object): number;
|
|
3120
3120
|
|
|
3121
3121
|
/**
|
|
3122
3122
|
* Erstellt eine neue BigDecimal-Instanz
|
|
3123
3123
|
*
|
|
3124
3124
|
* @param {object} value - Der Quell-Wert
|
|
3125
|
+
* @param {number} scale - Anzahl Nachkommastellen
|
|
3125
3126
|
* @return {number} Ein BigDecimal-Wert
|
|
3126
3127
|
*/
|
|
3127
|
-
newBigDecimal(value: object): number;
|
|
3128
|
+
newBigDecimal(value: object, scale: number): number;
|
|
3128
3129
|
|
|
3129
3130
|
/**
|
|
3130
3131
|
* Erstellt eine API-Referenz
|
|
@@ -4036,6 +4037,13 @@ export interface dtoFactory {
|
|
|
4036
4037
|
*/
|
|
4037
4038
|
createArticleSerialNumber(): ArticleSerialNumber;
|
|
4038
4039
|
|
|
4040
|
+
/**
|
|
4041
|
+
* Erstellt einen neue Instanz von AssemblyComponentReturnLine
|
|
4042
|
+
*
|
|
4043
|
+
* @return {AssemblyComponentReturnLine} Neue Instanz von AssemblyComponentReturnLine
|
|
4044
|
+
*/
|
|
4045
|
+
createAssemblyComponentReturnLine(): AssemblyComponentReturnLine;
|
|
4046
|
+
|
|
4039
4047
|
/**
|
|
4040
4048
|
* Erstellt einen neue Instanz von AssetType
|
|
4041
4049
|
*
|
|
@@ -4316,6 +4324,13 @@ export interface dtoFactory {
|
|
|
4316
4324
|
*/
|
|
4317
4325
|
createDocumentLineRef(): DocumentLineRef;
|
|
4318
4326
|
|
|
4327
|
+
/**
|
|
4328
|
+
* Erstellt einen neue Instanz von DocumentLineReturnDetail
|
|
4329
|
+
*
|
|
4330
|
+
* @return {DocumentLineReturnDetail} Neue Instanz von DocumentLineReturnDetail
|
|
4331
|
+
*/
|
|
4332
|
+
createDocumentLineReturnDetail(): DocumentLineReturnDetail;
|
|
4333
|
+
|
|
4319
4334
|
/**
|
|
4320
4335
|
* Erstellt einen neue Instanz von DocumentPosDetail
|
|
4321
4336
|
*
|