@vario-software/types 2026.15.6 → 2026.16.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 +1 -1
- package/schema/erp.d.ts +64338 -39446
- package/scripting/services.d.ts +37 -19
- package/scripting/types.d.ts +426 -264
package/scripting/services.d.ts
CHANGED
|
@@ -8,9 +8,10 @@ import {
|
|
|
8
8
|
CountryReference, CreateNewDocumentRequest, CrmActivity, CrmActivityType,
|
|
9
9
|
CrmChecklistItem, CrmDeal, CrmDealTopic, CrmObjectRef, CrmParticipant,
|
|
10
10
|
CrmPriority, CrmProject, CrmReference, CrmReminder, CrmState, CrmSubType,
|
|
11
|
-
CrmTask, CrmTypedDocumentRef, CrmTypedDocumentRefList,
|
|
12
|
-
DealNotificationEventConfig, DeliveryMethod, DeliveryTerm,
|
|
13
|
-
|
|
11
|
+
CrmTask, CrmTaskParticipant, CrmTypedDocumentRef, CrmTypedDocumentRefList,
|
|
12
|
+
Customer, DealNotificationEventConfig, DeliveryMethod, DeliveryTerm,
|
|
13
|
+
Document, DocumentAdditionalInfo,
|
|
14
|
+
DocumentAdditionalInfo$IncomingGoodsTarget,
|
|
14
15
|
DocumentAdditionalInfo$IncomingGoodsTargetOfLine,
|
|
15
16
|
DocumentAdditionalInfo$OrderIntoPickingConvertResult,
|
|
16
17
|
DocumentAdditionalInfo$PrintedTranslatedField, DocumentAddress,
|
|
@@ -430,16 +431,16 @@ export interface ArticleScriptingService {
|
|
|
430
431
|
* Führt einen Etikettendrucklauf aus
|
|
431
432
|
*
|
|
432
433
|
* @param {string} batchIdentifier - ID des Etikettendrucklaufs
|
|
433
|
-
* @param {string} reportGroupIdentifier - Name einer Etiketten-Report-Gruppe
|
|
434
434
|
*/
|
|
435
|
-
executeLabelPrintBatch(batchIdentifier: string
|
|
435
|
+
executeLabelPrintBatch(batchIdentifier: string): void;
|
|
436
436
|
|
|
437
437
|
/**
|
|
438
438
|
* Führt einen Etikettendrucklauf aus
|
|
439
439
|
*
|
|
440
440
|
* @param {string} batchIdentifier - ID des Etikettendrucklaufs
|
|
441
|
+
* @param {string} reportGroupIdentifier - Name einer Etiketten-Report-Gruppe
|
|
441
442
|
*/
|
|
442
|
-
executeLabelPrintBatch(batchIdentifier: string): void;
|
|
443
|
+
executeLabelPrintBatch(batchIdentifier: string, reportGroupIdentifier: string): void;
|
|
443
444
|
|
|
444
445
|
/**
|
|
445
446
|
* Liefert die Einkaufsrabatte zu einem Artikel
|
|
@@ -770,9 +771,10 @@ export interface CrmDealScriptingService {
|
|
|
770
771
|
/**
|
|
771
772
|
* Findet den End-Status
|
|
772
773
|
*
|
|
774
|
+
* @param {number} typeId - ID eines CRM-Typs
|
|
773
775
|
* @return {CrmState} Der End-Status
|
|
774
776
|
*/
|
|
775
|
-
findFinalState(): CrmState;
|
|
777
|
+
findFinalState(typeId: number): CrmState;
|
|
776
778
|
|
|
777
779
|
/**
|
|
778
780
|
* Findet eine CRM-Priorität über die ID
|
|
@@ -801,9 +803,10 @@ export interface CrmDealScriptingService {
|
|
|
801
803
|
/**
|
|
802
804
|
* Findet den Start-Status
|
|
803
805
|
*
|
|
806
|
+
* @param {number} typeId - ID eines CRM-Typs
|
|
804
807
|
* @return {CrmState} Der Start-Status
|
|
805
808
|
*/
|
|
806
|
-
findStartState(): CrmState;
|
|
809
|
+
findStartState(typeId: number): CrmState;
|
|
807
810
|
|
|
808
811
|
/**
|
|
809
812
|
* Findet einen CRM-Status über die ID
|
|
@@ -817,9 +820,10 @@ export interface CrmDealScriptingService {
|
|
|
817
820
|
* Findet einen CRM-Status über sein Label
|
|
818
821
|
*
|
|
819
822
|
* @param {string} stateLabel - Label vom gesuchten Status
|
|
823
|
+
* @param {number} typeId - ID des CRM-Sub-Typs
|
|
820
824
|
* @return {CrmState} Der gefundene Status
|
|
821
825
|
*/
|
|
822
|
-
findStateByLabel(stateLabel: string): CrmState;
|
|
826
|
+
findStateByLabel(stateLabel: string, typeId: number): CrmState;
|
|
823
827
|
|
|
824
828
|
/**
|
|
825
829
|
* Findet ein Deal-Thema über seine ID
|
|
@@ -981,9 +985,10 @@ export interface CrmProjectScriptingService {
|
|
|
981
985
|
/**
|
|
982
986
|
* Findet den End-Status
|
|
983
987
|
*
|
|
988
|
+
* @param {number} typeId - ID eines CRM-Typs
|
|
984
989
|
* @return {CrmState} Der End-Status
|
|
985
990
|
*/
|
|
986
|
-
findFinalState(): CrmState;
|
|
991
|
+
findFinalState(typeId: number): CrmState;
|
|
987
992
|
|
|
988
993
|
/**
|
|
989
994
|
* Findet eine CRM-Priorität über die ID
|
|
@@ -1012,9 +1017,10 @@ export interface CrmProjectScriptingService {
|
|
|
1012
1017
|
/**
|
|
1013
1018
|
* Findet den Start-Status
|
|
1014
1019
|
*
|
|
1020
|
+
* @param {number} typeId - ID eines CRM-Typs
|
|
1015
1021
|
* @return {CrmState} Der Start-Status
|
|
1016
1022
|
*/
|
|
1017
|
-
findStartState(): CrmState;
|
|
1023
|
+
findStartState(typeId: number): CrmState;
|
|
1018
1024
|
|
|
1019
1025
|
/**
|
|
1020
1026
|
* Findet einen CRM-Status über die ID
|
|
@@ -1028,9 +1034,10 @@ export interface CrmProjectScriptingService {
|
|
|
1028
1034
|
* Findet einen CRM-Status über sein Label
|
|
1029
1035
|
*
|
|
1030
1036
|
* @param {string} stateLabel - Label vom gesuchten Status
|
|
1037
|
+
* @param {number} typeId - ID des CRM-Sub-Typs
|
|
1031
1038
|
* @return {CrmState} Der gefundene Status
|
|
1032
1039
|
*/
|
|
1033
|
-
findStateByLabel(stateLabel: string): CrmState;
|
|
1040
|
+
findStateByLabel(stateLabel: string, typeId: number): CrmState;
|
|
1034
1041
|
|
|
1035
1042
|
/**
|
|
1036
1043
|
* Findet einen CRM-Typ über die ID
|
|
@@ -1143,9 +1150,10 @@ export interface CrmTaskScriptingService {
|
|
|
1143
1150
|
/**
|
|
1144
1151
|
* Findet den End-Status
|
|
1145
1152
|
*
|
|
1153
|
+
* @param {number} typeId - ID eines CRM-Typs
|
|
1146
1154
|
* @return {CrmState} Der End-Status
|
|
1147
1155
|
*/
|
|
1148
|
-
findFinalState(): CrmState;
|
|
1156
|
+
findFinalState(typeId: number): CrmState;
|
|
1149
1157
|
|
|
1150
1158
|
/**
|
|
1151
1159
|
* Findet eine CRM-Priorität über die ID
|
|
@@ -1174,16 +1182,18 @@ export interface CrmTaskScriptingService {
|
|
|
1174
1182
|
/**
|
|
1175
1183
|
* Sucht den "Bereit zur Abrechnung"-Status
|
|
1176
1184
|
*
|
|
1185
|
+
* @param {number} typeId - ID eines CRM-Task-Typs
|
|
1177
1186
|
* @return {CrmState} "Bereit zur Abrechnung"-Status
|
|
1178
1187
|
*/
|
|
1179
|
-
findReadyToBillState(): CrmState;
|
|
1188
|
+
findReadyToBillState(typeId: number): CrmState;
|
|
1180
1189
|
|
|
1181
1190
|
/**
|
|
1182
1191
|
* Findet den Start-Status
|
|
1183
1192
|
*
|
|
1193
|
+
* @param {number} typeId - ID eines CRM-Typs
|
|
1184
1194
|
* @return {CrmState} Der Start-Status
|
|
1185
1195
|
*/
|
|
1186
|
-
findStartState(): CrmState;
|
|
1196
|
+
findStartState(typeId: number): CrmState;
|
|
1187
1197
|
|
|
1188
1198
|
/**
|
|
1189
1199
|
* Findet einen CRM-Status über die ID
|
|
@@ -1197,9 +1207,10 @@ export interface CrmTaskScriptingService {
|
|
|
1197
1207
|
* Findet einen CRM-Status über sein Label
|
|
1198
1208
|
*
|
|
1199
1209
|
* @param {string} stateLabel - Label vom gesuchten Status
|
|
1210
|
+
* @param {number} typeId - ID des CRM-Sub-Typs
|
|
1200
1211
|
* @return {CrmState} Der gefundene Status
|
|
1201
1212
|
*/
|
|
1202
|
-
findStateByLabel(stateLabel: string): CrmState;
|
|
1213
|
+
findStateByLabel(stateLabel: string, typeId: number): CrmState;
|
|
1203
1214
|
|
|
1204
1215
|
/**
|
|
1205
1216
|
* Findet einen CRM-Typ über die ID
|
|
@@ -2583,18 +2594,18 @@ export interface ScriptingUtilities {
|
|
|
2583
2594
|
* Erstellt eine neue BigDecimal-Instanz
|
|
2584
2595
|
*
|
|
2585
2596
|
* @param {object} value - Der Quell-Wert
|
|
2586
|
-
* @param {number} scale - Anzahl Nachkommastellen
|
|
2587
2597
|
* @return {number} Ein BigDecimal-Wert
|
|
2588
2598
|
*/
|
|
2589
|
-
newBigDecimal(value: object
|
|
2599
|
+
newBigDecimal(value: object): number;
|
|
2590
2600
|
|
|
2591
2601
|
/**
|
|
2592
2602
|
* Erstellt eine neue BigDecimal-Instanz
|
|
2593
2603
|
*
|
|
2594
2604
|
* @param {object} value - Der Quell-Wert
|
|
2605
|
+
* @param {number} scale - Anzahl Nachkommastellen
|
|
2595
2606
|
* @return {number} Ein BigDecimal-Wert
|
|
2596
2607
|
*/
|
|
2597
|
-
newBigDecimal(value: object): number;
|
|
2608
|
+
newBigDecimal(value: object, scale: number): number;
|
|
2598
2609
|
|
|
2599
2610
|
/**
|
|
2600
2611
|
* Erstellt eine API-Referenz
|
|
@@ -3444,6 +3455,13 @@ export interface dtoFactory {
|
|
|
3444
3455
|
*/
|
|
3445
3456
|
createCrmTask(): CrmTask;
|
|
3446
3457
|
|
|
3458
|
+
/**
|
|
3459
|
+
* Erstellt einen neue Instanz von CrmTaskParticipant
|
|
3460
|
+
*
|
|
3461
|
+
* @return {CrmTaskParticipant} Neue Instanz von CrmTaskParticipant
|
|
3462
|
+
*/
|
|
3463
|
+
createCrmTaskParticipant(): CrmTaskParticipant;
|
|
3464
|
+
|
|
3447
3465
|
/**
|
|
3448
3466
|
* Erstellt einen neue Instanz von Customer
|
|
3449
3467
|
*
|