@vario-software/types 2026.35.1 → 2026.35.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.
@@ -19,14 +19,14 @@ export const enum AccessoryInsertTerm {
19
19
  export interface Account {
20
20
 
21
21
  /**
22
- * Umkehrung der Steuerschuld nach §13b UStG?
22
+ * Notiz
23
23
  */
24
- taxLiabilityReversed: boolean;
24
+ note: string;
25
25
 
26
26
  /**
27
- * Notiz
27
+ * Umkehrung der Steuerschuld nach §13b UStG?
28
28
  */
29
- note: string;
29
+ taxLiabilityReversed: boolean;
30
30
 
31
31
  /**
32
32
  * Alle Adressen außer der Standard-Adresse
@@ -154,14 +154,14 @@ export interface Account {
154
154
  receivablesSum: number;
155
155
 
156
156
  /**
157
- * companyLegal for this account
157
+ * Custom account data
158
158
  */
159
- companyLegalRef: ApiCreatableReference;
159
+ custom: EavAccount;
160
160
 
161
161
  /**
162
- * Custom account data
162
+ * companyLegal for this account
163
163
  */
164
- custom: EavAccount;
164
+ companyLegalRef: ApiCreatableReference;
165
165
 
166
166
  /**
167
167
  * tax number/ Steuernummer
@@ -178,6 +178,11 @@ export interface Account {
178
178
  */
179
179
  responsibleUserRef: ApiObjectReference;
180
180
 
181
+ /**
182
+ * Sprache des Accounts
183
+ */
184
+ languageCode: string;
185
+
181
186
  /**
182
187
  * Erstkontakt am
183
188
  */
@@ -188,11 +193,6 @@ export interface Account {
188
193
  */
189
194
  calculationMode: CalculationMode;
190
195
 
191
- /**
192
- * Sprache des Accounts
193
- */
194
- languageCode: string;
195
-
196
196
  /**
197
197
  * Has this Account a possible duplicate
198
198
  */
@@ -214,14 +214,14 @@ export interface Account {
214
214
  persons: Array<AccountPerson>;
215
215
 
216
216
  /**
217
- * Referenz auf den Ziel-Belegtyp nach der Kommissionierung
217
+ * Standard-Ansprechpartner
218
218
  */
219
- afterPickingTargetDocumentTypeRef: ApiObjectReference;
219
+ defaultPerson: AccountPerson;
220
220
 
221
221
  /**
222
- * Standard-Ansprechpartner
222
+ * Referenz auf den Ziel-Belegtyp nach der Kommissionierung
223
223
  */
224
- defaultPerson: AccountPerson;
224
+ afterPickingTargetDocumentTypeRef: ApiObjectReference;
225
225
 
226
226
  /**
227
227
  * Account-Beziehungen
@@ -291,26 +291,26 @@ export interface AccountAddress {
291
291
  */
292
292
  regionRef: ApiObjectReference;
293
293
 
294
- /**
295
- * Post office box
296
- */
297
- postOfficeBox: string;
298
-
299
294
  /**
300
295
  * Title
301
296
  */
302
297
  titleRef: ApiCreatableReference;
303
298
 
304
299
  /**
305
- * Street
300
+ * Post office box
306
301
  */
307
- street: string;
302
+ postOfficeBox: string;
308
303
 
309
304
  /**
310
305
  * Country code
311
306
  */
312
307
  countryCode: string;
313
308
 
309
+ /**
310
+ * Street
311
+ */
312
+ street: string;
313
+
314
314
  /**
315
315
  * Unique identifier of the Object
316
316
  */
@@ -347,14 +347,14 @@ export interface AccountAddress {
347
347
  globalLocationNumber: string;
348
348
 
349
349
  /**
350
- * abweichende Zahlungsart
350
+ * Custom data
351
351
  */
352
- deviatingPaymentMethodRef: ApiObjectReference;
352
+ custom: EavAccountaddress;
353
353
 
354
354
  /**
355
- * Custom data
355
+ * abweichende Zahlungsart
356
356
  */
357
- custom: EavAccountaddress;
357
+ deviatingPaymentMethodRef: ApiObjectReference;
358
358
 
359
359
  /**
360
360
  * Postcode
@@ -372,14 +372,14 @@ export interface AccountAddress {
372
372
  defaultForType: boolean;
373
373
 
374
374
  /**
375
- * calculation mode of this address
375
+ * Sprache der Adresse
376
376
  */
377
- calculationMode: CalculationMode;
377
+ languageCode: string;
378
378
 
379
379
  /**
380
- * Sprache der Adresse
380
+ * calculation mode of this address
381
381
  */
382
- languageCode: string;
382
+ calculationMode: CalculationMode;
383
383
 
384
384
  /**
385
385
  * Version Identifier for this Object (for PUT)
@@ -475,14 +475,14 @@ export interface AccountBankdetail {
475
475
  active: boolean;
476
476
 
477
477
  /**
478
- * post-code of the bank
478
+ * name of the bank
479
479
  */
480
- bankPostCode: string;
480
+ bankName: string;
481
481
 
482
482
  /**
483
- * name of the bank
483
+ * post-code of the bank
484
484
  */
485
- bankName: string;
485
+ bankPostCode: string;
486
486
 
487
487
  /**
488
488
  * account from, if differs from account-address
@@ -495,14 +495,14 @@ export interface AccountBankdetail {
495
495
  version: number;
496
496
 
497
497
  /**
498
- * city of the bank
498
+ * Hauptbankverbindung für
499
499
  */
500
- bankCity: string;
500
+ mainBankAccountType: TaxPerformanceLocationType;
501
501
 
502
502
  /**
503
- * Hauptbankverbindung für
503
+ * city of the bank
504
504
  */
505
- mainBankAccountType: TaxPerformanceLocationType;
505
+ bankCity: string;
506
506
 
507
507
  /**
508
508
  * Is default bank?
@@ -1029,6 +1029,11 @@ export interface Article {
1029
1029
  */
1030
1030
  baseCapacityUnit: UnitTypeReference;
1031
1031
 
1032
+ /**
1033
+ * is this product sellable without any quantity at the stock
1034
+ */
1035
+ sellableWithoutStock: boolean;
1036
+
1032
1037
  /**
1033
1038
  * Seriennummern Auszeichnungsart
1034
1039
  */
@@ -1039,11 +1044,6 @@ export interface Article {
1039
1044
  */
1040
1045
  initialAvgPurchasePrice: number;
1041
1046
 
1042
- /**
1043
- * is this product sellable without any quantity at the stock
1044
- */
1045
- sellableWithoutStock: boolean;
1046
-
1047
1047
  /**
1048
1048
  * gross Volume in cubic meters
1049
1049
  */
@@ -1145,14 +1145,14 @@ export interface Article {
1145
1145
  deliveryMethodRef: ApiObjectReference;
1146
1146
 
1147
1147
  /**
1148
- * Soll-Handelsspanne
1148
+ * Produktion
1149
1149
  */
1150
- targetTradingMargin: number;
1150
+ fabrication: boolean;
1151
1151
 
1152
1152
  /**
1153
- * Produktion
1153
+ * Soll-Handelsspanne
1154
1154
  */
1155
- fabrication: boolean;
1155
+ targetTradingMargin: number;
1156
1156
 
1157
1157
  /**
1158
1158
  * active
@@ -1195,14 +1195,14 @@ export interface Article {
1195
1195
  returnable: boolean;
1196
1196
 
1197
1197
  /**
1198
- * Verkaufseinheit
1198
+ * weight and size inc. packaging
1199
1199
  */
1200
- salesUnit: number;
1200
+ grossMetric: Article$Metric;
1201
1201
 
1202
1202
  /**
1203
- * weight and size inc. packaging
1203
+ * Verkaufseinheit
1204
1204
  */
1205
- grossMetric: Article$Metric;
1205
+ salesUnit: number;
1206
1206
 
1207
1207
  /**
1208
1208
  * name of this product
@@ -1214,26 +1214,26 @@ export interface Article {
1214
1214
  */
1215
1215
  listingStateChangeTime: ScriptingDateTime;
1216
1216
 
1217
- /**
1218
- * Arbeitseinheit in Minuten
1219
- */
1220
- workUnitInMinutes: number;
1221
-
1222
1217
  /**
1223
1218
  * Country code
1224
1219
  */
1225
1220
  countryOfOriginRef: CountryReference;
1226
1221
 
1227
1222
  /**
1228
- * description custom data
1223
+ * Arbeitseinheit in Minuten
1229
1224
  */
1230
- listingDescriptionCustom: EavArticleListingDescription;
1225
+ workUnitInMinutes: number;
1231
1226
 
1232
1227
  /**
1233
1228
  * Frei kommissionierbar
1234
1229
  */
1235
1230
  freelyPickable: boolean;
1236
1231
 
1232
+ /**
1233
+ * description custom data
1234
+ */
1235
+ listingDescriptionCustom: EavArticleListingDescription;
1236
+
1237
1237
  /**
1238
1238
  * Charge muss bei Einbuchung in ein Verkaufslager vergeben werden (für Serientyp LOT und BEST_BEFORE)
1239
1239
  */
@@ -1284,11 +1284,6 @@ export interface Article {
1284
1284
  */
1285
1285
  capacity: number;
1286
1286
 
1287
- /**
1288
- * Vorgabe Herstellungskosten
1289
- */
1290
- defaultFabricationCost: number;
1291
-
1292
1287
  /**
1293
1288
  * gross sales prices
1294
1289
  */
@@ -1299,6 +1294,11 @@ export interface Article {
1299
1294
  */
1300
1295
  minimumRemainingDaysBeforeExpiryDateOnGoodsReceipt: number;
1301
1296
 
1297
+ /**
1298
+ * Vorgabe Herstellungskosten
1299
+ */
1300
+ defaultFabricationCost: number;
1301
+
1302
1302
  /**
1303
1303
  * Letzter EKP (Startwert)
1304
1304
  */
@@ -1310,19 +1310,19 @@ export interface Article {
1310
1310
  permissibleForOrderProposal: boolean;
1311
1311
 
1312
1312
  /**
1313
- * reference to Product
1313
+ * Versandlabeldruck
1314
1314
  */
1315
- productRef: ApiObjectReference;
1315
+ shippingLabelPrinting: boolean;
1316
1316
 
1317
1317
  /**
1318
- * Versandlabeldruck
1318
+ * reference to Product
1319
1319
  */
1320
- shippingLabelPrinting: boolean;
1320
+ productRef: ApiObjectReference;
1321
1321
 
1322
1322
  /**
1323
- * rabattierbarer Artikel?
1323
+ * Kontingentartikel
1324
1324
  */
1325
- discountable: boolean;
1325
+ contingentArticleRef: ApiObjectReference;
1326
1326
 
1327
1327
  /**
1328
1328
  * alternative name of this product
@@ -1330,9 +1330,9 @@ export interface Article {
1330
1330
  alternativeName: string;
1331
1331
 
1332
1332
  /**
1333
- * Kontingentartikel
1333
+ * rabattierbarer Artikel?
1334
1334
  */
1335
- contingentArticleRef: ApiObjectReference;
1335
+ discountable: boolean;
1336
1336
 
1337
1337
  /**
1338
1338
  * base capacity
@@ -1405,14 +1405,14 @@ export interface Article {
1405
1405
  listed: boolean;
1406
1406
 
1407
1407
  /**
1408
- * provisionsberechtiger Artikel?
1408
+ * Nur manuelle Produktion
1409
1409
  */
1410
- commissionable: boolean;
1410
+ onlyManualFabrication: boolean;
1411
1411
 
1412
1412
  /**
1413
- * Nur manuelle Produktion
1413
+ * provisionsberechtiger Artikel?
1414
1414
  */
1415
- onlyManualFabrication: boolean;
1415
+ commissionable: boolean;
1416
1416
 
1417
1417
  /**
1418
1418
  * Mindestrestlaufzeit Ausgang (Tage): Minimale Restlaufzeit in Tagen, die ein Artikel beim Verkauf noch aufweisen muss
@@ -1443,14 +1443,14 @@ export interface Article$Metric {
1443
1443
  sizeX: number;
1444
1444
 
1445
1445
  /**
1446
- * weight
1446
+ * size unit
1447
1447
  */
1448
- weight: number;
1448
+ sizeUnit: UnitTypeReference;
1449
1449
 
1450
1450
  /**
1451
- * size unit
1451
+ * weight
1452
1452
  */
1453
- sizeUnit: UnitTypeReference;
1453
+ weight: number;
1454
1454
 
1455
1455
  /**
1456
1456
  * size
@@ -1458,14 +1458,14 @@ export interface Article$Metric {
1458
1458
  sizeY: number;
1459
1459
 
1460
1460
  /**
1461
- * weight unit
1461
+ * size
1462
1462
  */
1463
- weightUnit: UnitTypeReference;
1463
+ sizeZ: number;
1464
1464
 
1465
1465
  /**
1466
- * size
1466
+ * weight unit
1467
1467
  */
1468
- sizeZ: number;
1468
+ weightUnit: UnitTypeReference;
1469
1469
  }
1470
1470
 
1471
1471
  export interface ArticleAssetInformation {
@@ -1589,14 +1589,14 @@ export interface ArticleCustomer {
1589
1589
  articleName: string;
1590
1590
 
1591
1591
  /**
1592
- * Etikettdruck-Einstellungen
1592
+ * Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
1593
1593
  */
1594
- customerPrintLabelSettings: ArticlePrintLabelSettings;
1594
+ useDeviatingArticleIdentifier: boolean;
1595
1595
 
1596
1596
  /**
1597
- * Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
1597
+ * Etikettdruck-Einstellungen
1598
1598
  */
1599
- useDeviatingArticleIdentifier: boolean;
1599
+ customerPrintLabelSettings: ArticlePrintLabelSettings;
1600
1600
 
1601
1601
  /**
1602
1602
  * Kunden-Preise
@@ -1604,14 +1604,14 @@ export interface ArticleCustomer {
1604
1604
  productPrices: Array<ProductPrice>;
1605
1605
 
1606
1606
  /**
1607
- * Referenced Article
1607
+ * Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
1608
1608
  */
1609
- articleId: number;
1609
+ useDeviatingArticleDescription: boolean;
1610
1610
 
1611
1611
  /**
1612
- * Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
1612
+ * Referenced Article
1613
1613
  */
1614
- useDeviatingArticleDescription: boolean;
1614
+ articleId: number;
1615
1615
 
1616
1616
  /**
1617
1617
  * Aktiv?
@@ -1649,9 +1649,9 @@ export interface ArticleCustomer {
1649
1649
  defaultGrossPrice: number;
1650
1650
 
1651
1651
  /**
1652
- * Artikelnummer
1652
+ * Art der Preisermittlung
1653
1653
  */
1654
- articleNumber: string;
1654
+ priceDetermination: ArticleCustomerPriceDetermination;
1655
1655
 
1656
1656
  /**
1657
1657
  * Abweichende Produktnummer
@@ -1659,9 +1659,9 @@ export interface ArticleCustomer {
1659
1659
  deviatingArticleNumber: string;
1660
1660
 
1661
1661
  /**
1662
- * Art der Preisermittlung
1662
+ * Artikelnummer
1663
1663
  */
1664
- priceDetermination: ArticleCustomerPriceDetermination;
1664
+ articleNumber: string;
1665
1665
 
1666
1666
  /**
1667
1667
  * Abweichender Produktidentifer (z.B. Barcode)
@@ -1771,14 +1771,14 @@ export interface ArticleListing {
1771
1771
  proposedLowestPriceGross: number;
1772
1772
 
1773
1773
  /**
1774
- * der Sales Channel
1774
+ * Niedrigster Brutto-Preis der letzten 30 Tage (benutzerdefinierte Eingabe)
1775
1775
  */
1776
- salesChannelRef: ApiObjectReference;
1776
+ customLowestPriceGross: number;
1777
1777
 
1778
1778
  /**
1779
- * Niedrigster Brutto-Preis der letzten 30 Tage (benutzerdefinierte Eingabe)
1779
+ * der Sales Channel
1780
1780
  */
1781
- customLowestPriceGross: number;
1781
+ salesChannelRef: ApiObjectReference;
1782
1782
 
1783
1783
  /**
1784
1784
  * soll der Artikel gelistet werden
@@ -1999,14 +1999,14 @@ export interface ArticleStorage {
1999
1999
  reorderPoint: number;
2000
2000
 
2001
2001
  /**
2002
- * Bestellte Menge
2002
+ * Aktuelle Menge in Kommissionierung
2003
2003
  */
2004
- orderedQuantity: number;
2004
+ quantityInPicking: number;
2005
2005
 
2006
2006
  /**
2007
- * Aktuelle Menge in Kommissionierung
2007
+ * Bestellte Menge
2008
2008
  */
2009
- quantityInPicking: number;
2009
+ orderedQuantity: number;
2010
2010
 
2011
2011
  /**
2012
2012
  * Nachschub auf
@@ -2086,11 +2086,6 @@ export interface ArticleStorage {
2086
2086
 
2087
2087
  export interface ArticleSupplier {
2088
2088
 
2089
- /**
2090
- * Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
2091
- */
2092
- useSupplierArticleDescription: boolean;
2093
-
2094
2089
  /**
2095
2090
  * Anzeigename des Accounts
2096
2091
  */
@@ -2102,15 +2097,20 @@ export interface ArticleSupplier {
2102
2097
  supplierReportingStock: number;
2103
2098
 
2104
2099
  /**
2105
- * Lieferzeit in (Werk-)Tagen
2100
+ * Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
2106
2101
  */
2107
- deliveryTime: number;
2102
+ useSupplierArticleDescription: boolean;
2108
2103
 
2109
2104
  /**
2110
2105
  * Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
2111
2106
  */
2112
2107
  useSupplierArticleIdentifier: boolean;
2113
2108
 
2109
+ /**
2110
+ * Lieferzeit in (Werk-)Tagen
2111
+ */
2112
+ deliveryTime: number;
2113
+
2114
2114
  /**
2115
2115
  * Soll die abweichende Produktnummer verwendet werden (z.B. in Belegen)
2116
2116
  */
@@ -2328,14 +2328,14 @@ export interface Asset {
2328
2328
  billingAddressRef: ApiObjectReference;
2329
2329
 
2330
2330
  /**
2331
- * Vertrag
2331
+ * Zusatzadresse
2332
2332
  */
2333
- contractRef: ApiObjectReference;
2333
+ accountAddressRef: ApiObjectReference;
2334
2334
 
2335
2335
  /**
2336
- * Zusatzadresse
2336
+ * Vertrag
2337
2337
  */
2338
- accountAddressRef: ApiObjectReference;
2338
+ contractRef: ApiObjectReference;
2339
2339
 
2340
2340
  /**
2341
2341
  * Tags zum Asset
@@ -2910,14 +2910,14 @@ export interface CrmActivityType {
2910
2910
  export interface CrmChecklistItem {
2911
2911
 
2912
2912
  /**
2913
- * Text des Checklisten-Elements
2913
+ * Ist das Element "angehakt"?
2914
2914
  */
2915
- memo: string;
2915
+ checked: boolean;
2916
2916
 
2917
2917
  /**
2918
- * Ist das Element "angehakt"?
2918
+ * Text des Checklisten-Elements
2919
2919
  */
2920
- checked: boolean;
2920
+ memo: string;
2921
2921
 
2922
2922
  /**
2923
2923
  * Unique identifier of the Object
@@ -3482,14 +3482,14 @@ export const enum CrmReferenceType {
3482
3482
  export interface CrmReminder {
3483
3483
 
3484
3484
  /**
3485
- * ID des CRM Objekts
3485
+ * Notiz zur Erinnerung
3486
3486
  */
3487
- crmId: number;
3487
+ note: string;
3488
3488
 
3489
3489
  /**
3490
- * Notiz zur Erinnerung
3490
+ * ID des CRM Objekts
3491
3491
  */
3492
- note: string;
3492
+ crmId: number;
3493
3493
 
3494
3494
  /**
3495
3495
  * Wer soll erinnert werden
@@ -3886,14 +3886,14 @@ export interface CrmTask {
3886
3886
  blocksTaskRefs: Array<ApiObjectReference>;
3887
3887
 
3888
3888
  /**
3889
- * Weitere Teilnehmer vom Auftragnehmer
3889
+ * Soll die Aufgabe veröffentlicht werden?
3890
3890
  */
3891
- additionalParticipantsOfContractor: Array<CrmTaskParticipant>;
3891
+ publish: boolean;
3892
3892
 
3893
3893
  /**
3894
- * Soll die Aufgabe veröffentlicht werden?
3894
+ * Weitere Teilnehmer vom Auftragnehmer
3895
3895
  */
3896
- publish: boolean;
3896
+ additionalParticipantsOfContractor: Array<CrmTaskParticipant>;
3897
3897
 
3898
3898
  /**
3899
3899
  * Fortschritt in Prozent
@@ -4080,14 +4080,14 @@ export interface Customer {
4080
4080
  stackProcessingPriority: number;
4081
4081
 
4082
4082
  /**
4083
- * Sammelabrechnung nur manuell auslösen?
4083
+ * reference to product price group
4084
4084
  */
4085
- collectiveInvoiceManually: boolean;
4085
+ productPriceGroupRef: ApiObjectReference;
4086
4086
 
4087
4087
  /**
4088
- * reference to product price group
4088
+ * Sammelabrechnung nur manuell auslösen?
4089
4089
  */
4090
- productPriceGroupRef: ApiObjectReference;
4090
+ collectiveInvoiceManually: boolean;
4091
4091
 
4092
4092
  /**
4093
4093
  * Unique identifier of the Object
@@ -4264,14 +4264,14 @@ export const enum DealNotificationEventConfig {
4264
4264
  export interface DeliveryMethod {
4265
4265
 
4266
4266
  /**
4267
- * E-Mail an Versender übergeben
4267
+ * Soll eine Position mit dieser Liefermethode in einen Lieferbeleg mit dieser Methode übernommen werden
4268
4268
  */
4269
- forwardEmailToShipper: boolean;
4269
+ splitIntoNewDocument: boolean;
4270
4270
 
4271
4271
  /**
4272
- * Soll eine Position mit dieser Liefermethode in einen Lieferbeleg mit dieser Methode übernommen werden
4272
+ * E-Mail an Versender übergeben
4273
4273
  */
4274
- splitIntoNewDocument: boolean;
4274
+ forwardEmailToShipper: boolean;
4275
4275
 
4276
4276
  /**
4277
4277
  * Barcode
@@ -4670,14 +4670,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
4670
4670
  documentDate: ScriptingDate;
4671
4671
 
4672
4672
  /**
4673
- * Reverse-Charge-Verfahren nach §13b UStG?
4673
+ * Endbetragsrundung: Differenz zwischen gerundetem Brutto und (Netto + MwSt)
4674
4674
  */
4675
- taxLiabilityReversed: boolean;
4675
+ roundingAmount: number;
4676
4676
 
4677
4677
  /**
4678
- * Endbetragsrundung: Differenz zwischen gerundetem Brutto und (Netto + MwSt)
4678
+ * Reverse-Charge-Verfahren nach §13b UStG?
4679
4679
  */
4680
- roundingAmount: number;
4680
+ taxLiabilityReversed: boolean;
4681
4681
 
4682
4682
  /**
4683
4683
  * Versanddatum
@@ -5199,14 +5199,14 @@ export interface DocumentAddress {
5199
5199
  postOfficeBox: string;
5200
5200
 
5201
5201
  /**
5202
- * Street
5202
+ * country code IsoAlpha3
5203
5203
  */
5204
- street: string;
5204
+ countryCode: string;
5205
5205
 
5206
5206
  /**
5207
- * country code IsoAlpha3
5207
+ * Street
5208
5208
  */
5209
- countryCode: string;
5209
+ street: string;
5210
5210
 
5211
5211
  /**
5212
5212
  * Unique identifier of the Object
@@ -5622,14 +5622,14 @@ export interface DocumentLine {
5622
5622
  number: string;
5623
5623
 
5624
5624
  /**
5625
- * Gesamtbruttogewicht
5625
+ * Referenz zur Kundenauftragszeile
5626
5626
  */
5627
- totalGrossWeight: number;
5627
+ customerOrderLineRef: DocumentLineRef;
5628
5628
 
5629
5629
  /**
5630
- * Referenz zur Kundenauftragszeile
5630
+ * Gesamtbruttogewicht
5631
5631
  */
5632
- customerOrderLineRef: DocumentLineRef;
5632
+ totalGrossWeight: number;
5633
5633
 
5634
5634
  /**
5635
5635
  * Referenz zum auszugleichenden Offenen Posten (nur bei OPEN_ITEM_SETTLEMENT)
@@ -5797,14 +5797,14 @@ export interface DocumentLine {
5797
5797
  settledOpenItemDiscountAmount: number;
5798
5798
 
5799
5799
  /**
5800
- * Einheit Nettogewicht
5800
+ * Nettoverkaufswert der Position in Basiswährung
5801
5801
  */
5802
- netWeightUnit: UnitTypeReference;
5802
+ baseSalesValueNet: number;
5803
5803
 
5804
5804
  /**
5805
- * Nettoverkaufswert der Position in Basiswährung
5805
+ * Einheit Nettogewicht
5806
5806
  */
5807
- baseSalesValueNet: number;
5807
+ netWeightUnit: UnitTypeReference;
5808
5808
 
5809
5809
  /**
5810
5810
  * Vertragsinformationen
@@ -5942,14 +5942,14 @@ export interface DocumentLine {
5942
5942
  countryRegion: ApiObjectReference;
5943
5943
 
5944
5944
  /**
5945
- * Nettogewicht
5945
+ * Provisionsursprung
5946
5946
  */
5947
- netWeight: number;
5947
+ commissionOrigin: DocumentCommissionOrigin;
5948
5948
 
5949
5949
  /**
5950
- * Provisionsursprung
5950
+ * Nettogewicht
5951
5951
  */
5952
- commissionOrigin: DocumentCommissionOrigin;
5952
+ netWeight: number;
5953
5953
 
5954
5954
  /**
5955
5955
  * Netto-Gesamtpreis (nach Preisänderungen)
@@ -5967,14 +5967,14 @@ export interface DocumentLine {
5967
5967
  position: number;
5968
5968
 
5969
5969
  /**
5970
- * Soll die DocumentLine über die Komponenten neu berechnet werden?
5970
+ * Buchungen
5971
5971
  */
5972
- recalcLinePriceViaComponents: boolean;
5972
+ bookings: Array<DocumentLineBooking>;
5973
5973
 
5974
5974
  /**
5975
- * Buchungen
5975
+ * Soll die DocumentLine über die Komponenten neu berechnet werden?
5976
5976
  */
5977
- bookings: Array<DocumentLineBooking>;
5977
+ recalcLinePriceViaComponents: boolean;
5978
5978
 
5979
5979
  /**
5980
5980
  * unit gross Volume in cubic meters
@@ -6255,26 +6255,26 @@ export interface DocumentLineComponent {
6255
6255
  */
6256
6256
  pickingQuantity: number;
6257
6257
 
6258
- /**
6259
- * Produktionsdetails
6260
- */
6261
- fabricationDetail: DocumentLineComponentFabricationDetail;
6262
-
6263
6258
  /**
6264
6259
  * Freifelder
6265
6260
  */
6266
6261
  custom: EavDocumentlinecomponent;
6267
6262
 
6268
6263
  /**
6269
- * Referenz auf den Artikel der Komponente
6264
+ * Produktionsdetails
6270
6265
  */
6271
- articleId: number;
6266
+ fabricationDetail: DocumentLineComponentFabricationDetail;
6272
6267
 
6273
6268
  /**
6274
6269
  * Gelieferte Menge
6275
6270
  */
6276
6271
  quantityCommitted: number;
6277
6272
 
6273
+ /**
6274
+ * Referenz auf den Artikel der Komponente
6275
+ */
6276
+ articleId: number;
6277
+
6278
6278
  /**
6279
6279
  * Beschreibung des Artikels
6280
6280
  */
@@ -6415,14 +6415,14 @@ export interface DocumentLineFabricationComponent {
6415
6415
  sourceBundleArticleRef: ProductArticleRef;
6416
6416
 
6417
6417
  /**
6418
- * Menge
6418
+ * Abweichende Herstellungskosten
6419
6419
  */
6420
- quantity: number;
6420
+ deviatingUnitPrice: number;
6421
6421
 
6422
6422
  /**
6423
- * Abweichende Herstellungskosten
6423
+ * Menge
6424
6424
  */
6425
- deviatingUnitPrice: number;
6425
+ quantity: number;
6426
6426
 
6427
6427
  /**
6428
6428
  * Beschreibung
@@ -6483,14 +6483,14 @@ export interface DocumentLineFabricationDetail {
6483
6483
  quantityDefective: number;
6484
6484
 
6485
6485
  /**
6486
- * Produzierte Seriennummern
6486
+ * Freifeld
6487
6487
  */
6488
- serialNumbers: Array<DocumentLineFabricationDetailSerialNumber>;
6488
+ custom: EavFabricationline;
6489
6489
 
6490
6490
  /**
6491
- * Freifeld
6491
+ * Produzierte Seriennummern
6492
6492
  */
6493
- custom: EavFabricationline;
6493
+ serialNumbers: Array<DocumentLineFabricationDetailSerialNumber>;
6494
6494
 
6495
6495
  /**
6496
6496
  * Menge produziert
@@ -6634,14 +6634,14 @@ export interface DocumentLinePosDetail {
6634
6634
  balanceBeforeWithdrawal: number;
6635
6635
 
6636
6636
  /**
6637
- * Externe Payment-ID für Verbindung zum Payment-Backend
6637
+ * Typ der Position
6638
6638
  */
6639
- externalPaymentId: string;
6639
+ posLineType: PosLineType;
6640
6640
 
6641
6641
  /**
6642
- * Typ der Position
6642
+ * Externe Payment-ID für Verbindung zum Payment-Backend
6643
6643
  */
6644
- posLineType: PosLineType;
6644
+ externalPaymentId: string;
6645
6645
 
6646
6646
  /**
6647
6647
  * Unique identifier of the Object
@@ -6965,14 +6965,14 @@ export interface DocumentPosPayment {
6965
6965
  balanceBeforeWithdrawal: number;
6966
6966
 
6967
6967
  /**
6968
- * Externe Payment-ID für Verbindung zum Payment-Backend
6968
+ * Typ der Position
6969
6969
  */
6970
- externalPaymentId: string;
6970
+ posLineType: PosLineType;
6971
6971
 
6972
6972
  /**
6973
- * Typ der Position
6973
+ * Externe Payment-ID für Verbindung zum Payment-Backend
6974
6974
  */
6975
- posLineType: PosLineType;
6975
+ externalPaymentId: string;
6976
6976
 
6977
6977
  /**
6978
6978
  * Unique identifier of the Object
@@ -7131,14 +7131,14 @@ export interface DocumentShippingCost {
7131
7131
  manualCosts: boolean;
7132
7132
 
7133
7133
  /**
7134
- * Texte
7134
+ * Keine Versandkosten (freier Versand)
7135
7135
  */
7136
- texts: Array<DocumentText>;
7136
+ freeShipping: boolean;
7137
7137
 
7138
7138
  /**
7139
- * Keine Versandkosten (freier Versand)
7139
+ * Texte
7140
7140
  */
7141
- freeShipping: boolean;
7141
+ texts: Array<DocumentText>;
7142
7142
 
7143
7143
  /**
7144
7144
  * skontierbar
@@ -7581,14 +7581,14 @@ export interface DummySerialNumberStockTransferApi {
7581
7581
  targetExpiryDate: ScriptingDate;
7582
7582
 
7583
7583
  /**
7584
- * Menge
7584
+ * Quell-Lagerplatz
7585
7585
  */
7586
- quantity: number;
7586
+ sourceStorageBinId: number;
7587
7587
 
7588
7588
  /**
7589
- * Quell-Lagerplatz
7589
+ * Menge
7590
7590
  */
7591
- sourceStorageBinId: number;
7591
+ quantity: number;
7592
7592
 
7593
7593
  /**
7594
7594
  * Quell-Lager
@@ -7956,14 +7956,14 @@ export const enum FabricationOfComponents {
7956
7956
  export interface FabricationProduceRequest {
7957
7957
 
7958
7958
  /**
7959
- * Zu produzierende Menge
7959
+ * Material automatisch bestätigen
7960
7960
  */
7961
- quantity: number;
7961
+ autoCommitComponents: boolean;
7962
7962
 
7963
7963
  /**
7964
- * Material automatisch bestätigen
7964
+ * Zu produzierende Menge
7965
7965
  */
7966
- autoCommitComponents: boolean;
7966
+ quantity: number;
7967
7967
 
7968
7968
  /**
7969
7969
  * Für die Produktion zu verwendendes Material
@@ -8017,14 +8017,14 @@ export interface FabricationRevertRequest {
8017
8017
  quantity: number;
8018
8018
 
8019
8019
  /**
8020
- * ID der zu stornierenden Position
8020
+ * Material automatisch stornieren
8021
8021
  */
8022
- documentLineId: number;
8022
+ autoRevertComponents: boolean;
8023
8023
 
8024
8024
  /**
8025
- * Material automatisch stornieren
8025
+ * ID der zu stornierenden Position
8026
8026
  */
8027
- autoRevertComponents: boolean;
8027
+ documentLineId: number;
8028
8028
 
8029
8029
  /**
8030
8030
  * Zu stornierende Seriennummern
@@ -8379,14 +8379,14 @@ export interface OpenItem {
8379
8379
  performanceCountryCode: string;
8380
8380
 
8381
8381
  /**
8382
- * agreed Deposit payment date
8382
+ * Valutadatum schreibgeschützt
8383
8383
  */
8384
- depositPaymentDate: ScriptingDate;
8384
+ valueDateReadOnly: boolean;
8385
8385
 
8386
8386
  /**
8387
- * Valutadatum schreibgeschützt
8387
+ * agreed Deposit payment date
8388
8388
  */
8389
- valueDateReadOnly: boolean;
8389
+ depositPaymentDate: ScriptingDate;
8390
8390
 
8391
8391
  /**
8392
8392
  * Does this open item belong to accounts payable or accounts receivable
@@ -8424,14 +8424,14 @@ export interface OpenItem {
8424
8424
  depositPaymentAmount: number;
8425
8425
 
8426
8426
  /**
8427
- * free payments
8427
+ * Verwendungszweck
8428
8428
  */
8429
- records: Array<OpenItemRecord>;
8429
+ purpose: string;
8430
8430
 
8431
8431
  /**
8432
- * Verwendungszweck
8432
+ * free payments
8433
8433
  */
8434
- purpose: string;
8434
+ records: Array<OpenItemRecord>;
8435
8435
 
8436
8436
  /**
8437
8437
  * How much discount can be given for speedy payment, rule 2
@@ -8454,14 +8454,14 @@ export interface OpenItem {
8454
8454
  paymentAmount: number;
8455
8455
 
8456
8456
  /**
8457
- * Rechnungskorrektur
8457
+ * how should a refund be done?
8458
8458
  */
8459
- creditNote: ApiObjectReference;
8459
+ refundType: OpenItem$OpenItemRefundType;
8460
8460
 
8461
8461
  /**
8462
- * how should a refund be done?
8462
+ * Rechnungskorrektur
8463
8463
  */
8464
- refundType: OpenItem$OpenItemRefundType;
8464
+ creditNote: ApiObjectReference;
8465
8465
 
8466
8466
  /**
8467
8467
  * Buchung auf Lieferant oder Kunde bei manuellen OPs
@@ -8484,14 +8484,14 @@ export interface OpenItem {
8484
8484
  sumFee: number;
8485
8485
 
8486
8486
  /**
8487
- * Zahlungsplan
8487
+ * The full amount of the payment
8488
8488
  */
8489
- paymentPlan: OpenItemPaymentPlan;
8489
+ fullPaymentAmount: number;
8490
8490
 
8491
8491
  /**
8492
- * The full amount of the payment
8492
+ * Zahlungsplan
8493
8493
  */
8494
- fullPaymentAmount: number;
8494
+ paymentPlan: OpenItemPaymentPlan;
8495
8495
 
8496
8496
  /**
8497
8497
  * Zahlungssperre
@@ -8504,14 +8504,14 @@ export interface OpenItem {
8504
8504
  originalPaymentDueDate: ScriptingDate;
8505
8505
 
8506
8506
  /**
8507
- * whether this open item is balanced, partially paid or open
8507
+ * Valutadatum
8508
8508
  */
8509
- balanceState: OpenItemBalanceState;
8509
+ valueDate: ScriptingDate;
8510
8510
 
8511
8511
  /**
8512
- * Valutadatum
8512
+ * whether this open item is balanced, partially paid or open
8513
8513
  */
8514
- valueDate: ScriptingDate;
8514
+ balanceState: OpenItemBalanceState;
8515
8515
 
8516
8516
  /**
8517
8517
  * Skontobetrag 1
@@ -8524,14 +8524,14 @@ export interface OpenItem {
8524
8524
  baseSumDiscount: number;
8525
8525
 
8526
8526
  /**
8527
- * Summe der Mahngebühren und Zinsen in Basiswährung
8527
+ * Zahlungsvorlage
8528
8528
  */
8529
- baseSumDunnings: number;
8529
+ paymentTemplateRef: ApiObjectReference;
8530
8530
 
8531
8531
  /**
8532
- * Zahlungsvorlage
8532
+ * Summe der Mahngebühren und Zinsen in Basiswährung
8533
8533
  */
8534
- paymentTemplateRef: ApiObjectReference;
8534
+ baseSumDunnings: number;
8535
8535
 
8536
8536
  /**
8537
8537
  * Rechnungsbetrag
@@ -8642,14 +8642,14 @@ export interface OpenItemPaymentPlan {
8642
8642
  dueDate: ScriptingDate;
8643
8643
 
8644
8644
  /**
8645
- * Aktiv
8645
+ * Zahlungsplantyp
8646
8646
  */
8647
- active: boolean;
8647
+ paymentPlanType: OpenItemPaymentPlan$PaymentPlanType;
8648
8648
 
8649
8649
  /**
8650
- * Zahlungsplantyp
8650
+ * Aktiv
8651
8651
  */
8652
- paymentPlanType: OpenItemPaymentPlan$PaymentPlanType;
8652
+ active: boolean;
8653
8653
 
8654
8654
  /**
8655
8655
  * Beschreibung
@@ -8832,14 +8832,14 @@ export interface OpenItemRecord {
8832
8832
  version: number;
8833
8833
 
8834
8834
  /**
8835
- * id der transaction, die diesen record hervorgerufen hat
8835
+ * Buchungsbetrag in Basiswährung
8836
8836
  */
8837
- transactionId: number;
8837
+ baseAmount: number;
8838
8838
 
8839
8839
  /**
8840
- * Buchungsbetrag in Basiswährung
8840
+ * id der transaction, die diesen record hervorgerufen hat
8841
8841
  */
8842
- baseAmount: number;
8842
+ transactionId: number;
8843
8843
 
8844
8844
  /**
8845
8845
  * Abzugsbetrag in Basiswährung
@@ -8857,14 +8857,14 @@ export interface OpenItemRecord {
8857
8857
  totalAmount: number;
8858
8858
 
8859
8859
  /**
8860
- * Basiswährung des offenen Postens (ISO-A3)
8860
+ * id des records, der diesen storniert hat
8861
8861
  */
8862
- baseCurrencyCode: string;
8862
+ revertedByRecordId: number;
8863
8863
 
8864
8864
  /**
8865
- * id des records, der diesen storniert hat
8865
+ * Basiswährung des offenen Postens (ISO-A3)
8866
8866
  */
8867
- revertedByRecordId: number;
8867
+ baseCurrencyCode: string;
8868
8868
 
8869
8869
  /**
8870
8870
  * qualifier of open item
@@ -9012,14 +9012,14 @@ export interface PaymentMethod {
9012
9012
  dunnable: boolean;
9013
9013
 
9014
9014
  /**
9015
- * translations
9015
+ * Debitoren-OP abschließen?
9016
9016
  */
9017
- translations: Array<DocumentTypeTerm>;
9017
+ closeCustomerAccountType: boolean;
9018
9018
 
9019
9019
  /**
9020
- * Debitoren-OP abschließen?
9020
+ * translations
9021
9021
  */
9022
- closeCustomerAccountType: boolean;
9022
+ translations: Array<DocumentTypeTerm>;
9023
9023
 
9024
9024
  /**
9025
9025
  * +Tage für Folgelastschrift
@@ -9027,14 +9027,14 @@ export interface PaymentMethod {
9027
9027
  daysToAddForFollowup: number;
9028
9028
 
9029
9029
  /**
9030
- * external Payment Id
9030
+ * Die Business Transaction
9031
9031
  */
9032
- externalPaymentId: string;
9032
+ businessTransaction: ApiObjectReference;
9033
9033
 
9034
9034
  /**
9035
- * Die Business Transaction
9035
+ * external Payment Id
9036
9036
  */
9037
- businessTransaction: ApiObjectReference;
9037
+ externalPaymentId: string;
9038
9038
 
9039
9039
  /**
9040
9040
  * Unique identifier of the Object
@@ -9128,14 +9128,14 @@ export interface PaymentTerm {
9128
9128
  paymentDiscount1: number;
9129
9129
 
9130
9130
  /**
9131
- * Days for Discount 1
9131
+ * for deposit: remaining term
9132
9132
  */
9133
- paymentDays1: number;
9133
+ remainingTermRef: ApiObjectReference;
9134
9134
 
9135
9135
  /**
9136
- * for deposit: remaining term
9136
+ * Days for Discount 1
9137
9137
  */
9138
- remainingTermRef: ApiObjectReference;
9138
+ paymentDays1: number;
9139
9139
 
9140
9140
  /**
9141
9141
  * Days for Discount 2
@@ -9613,14 +9613,14 @@ export interface PicklistLineComponent {
9613
9613
  quantityCollected: number;
9614
9614
 
9615
9615
  /**
9616
- * Menge der Position
9616
+ * Artikelbezeichnung
9617
9617
  */
9618
- quantity: number;
9618
+ articleName: string;
9619
9619
 
9620
9620
  /**
9621
- * Artikelbezeichnung
9621
+ * Menge der Position
9622
9622
  */
9623
- articleName: string;
9623
+ quantity: number;
9624
9624
 
9625
9625
  /**
9626
9626
  * Artikelbeschreibung
@@ -9848,6 +9848,11 @@ export interface PicklistTemplate$OrderSelectionOptions {
9848
9848
  */
9849
9849
  maxOrderValue: number;
9850
9850
 
9851
+ /**
9852
+ * Selektion über den Bereich vom Lieferdatum
9853
+ */
9854
+ deliveryDateRange: PicklistTemplate$DateRange;
9855
+
9851
9856
  /**
9852
9857
  * Nur für Einzelkommissionierung und Konsolidierung: maximale Anzahl zu übernehmender Aufträge
9853
9858
  */
@@ -9858,11 +9863,6 @@ export interface PicklistTemplate$OrderSelectionOptions {
9858
9863
  */
9859
9864
  onlyFullDeliverableOrderLines: boolean;
9860
9865
 
9861
- /**
9862
- * Selektion über den Bereich vom Lieferdatum
9863
- */
9864
- deliveryDateRange: PicklistTemplate$DateRange;
9865
-
9866
9866
  /**
9867
9867
  * Selektion über den Bereich vom Belegdatum
9868
9868
  */
@@ -10034,6 +10034,11 @@ export interface PicklistTemplate$PicklistProcessingOptions {
10034
10034
  */
10035
10035
  printLabelOnScan: boolean;
10036
10036
 
10037
+ /**
10038
+ * Sollen Dienstleistungen kommissioniert werden?
10039
+ */
10040
+ allowPickingOfServiceArticles: boolean;
10041
+
10037
10042
  /**
10038
10043
  * Digitale Pickliste verwenden: dabei werden nur die Positionen im Frontend gezeigt und durch Tippen oder Wischen bestätigt
10039
10044
  */
@@ -10044,11 +10049,6 @@ export interface PicklistTemplate$PicklistProcessingOptions {
10044
10049
  */
10045
10050
  allowFullConfirmation: boolean;
10046
10051
 
10047
- /**
10048
- * Sollen Dienstleistungen kommissioniert werden?
10049
- */
10050
- allowPickingOfServiceArticles: boolean;
10051
-
10052
10052
  /**
10053
10053
  * Verwende die Verkaufseinheit als Standardmenge
10054
10054
  */
@@ -10159,14 +10159,14 @@ export interface PriceSelectionCriteria {
10159
10159
  date: ScriptingDate;
10160
10160
 
10161
10161
  /**
10162
- * Eine Menge
10162
+ * Die Preisgruppe
10163
10163
  */
10164
- quantity: number;
10164
+ priceGroupId: number;
10165
10165
 
10166
10166
  /**
10167
- * Die Preisgruppe
10167
+ * Eine Menge
10168
10168
  */
10169
- priceGroupId: number;
10169
+ quantity: number;
10170
10170
 
10171
10171
  /**
10172
10172
  * Liste von Artikel-IDs
@@ -10202,14 +10202,14 @@ export interface PriceSelectionCriteria {
10202
10202
  export interface Product {
10203
10203
 
10204
10204
  /**
10205
- * Zolltarifnummer
10205
+ * Charge muss bei Einbuchung in ein Verkaufslager vergeben werden (für Serientyp LOT und BEST_BEFORE)
10206
10206
  */
10207
- customsTariffNumber: string;
10207
+ lotOnlyRequiredWhenBookedToSalesStorage: boolean;
10208
10208
 
10209
10209
  /**
10210
- * Charge muss bei Einbuchung in ein Verkaufslager vergeben werden (für Serientyp LOT und BEST_BEFORE)
10210
+ * Zolltarifnummer
10211
10211
  */
10212
- lotOnlyRequiredWhenBookedToSalesStorage: boolean;
10212
+ customsTariffNumber: string;
10213
10213
 
10214
10214
  /**
10215
10215
  * Gebindeschema dieses Produkts
@@ -10358,14 +10358,14 @@ export interface ProductArticleRef {
10358
10358
  export interface ProductDiscount {
10359
10359
 
10360
10360
  /**
10361
- * Kundengruppe
10361
+ * Hauptartikel, für welchen dieser Rabatt gültig ist
10362
10362
  */
10363
- customerGroupRef: ApiObjectReference;
10363
+ accessoryMainArticleRef: ApiObjectReference;
10364
10364
 
10365
10365
  /**
10366
- * Hauptartikel, für welchen dieser Rabatt gültig ist
10366
+ * Kundengruppe
10367
10367
  */
10368
- accessoryMainArticleRef: ApiObjectReference;
10368
+ customerGroupRef: ApiObjectReference;
10369
10369
 
10370
10370
  /**
10371
10371
  * Lieferantengruppe
@@ -10393,14 +10393,14 @@ export interface ProductDiscount {
10393
10393
  validFrom: ScriptingDate;
10394
10394
 
10395
10395
  /**
10396
- * Warengruppe
10396
+ * Bestimmt die Art des Rabatts
10397
10397
  */
10398
- productGroupRef: ApiObjectReference;
10398
+ modifierType: PriceModifierType;
10399
10399
 
10400
10400
  /**
10401
- * Bestimmt die Art des Rabatts
10401
+ * Warengruppe
10402
10402
  */
10403
- modifierType: PriceModifierType;
10403
+ productGroupRef: ApiObjectReference;
10404
10404
 
10405
10405
  /**
10406
10406
  * Version Identifier for this Object (for PUT)
@@ -10418,14 +10418,14 @@ export interface ProductDiscount {
10418
10418
  currencyRef: CurrencyReference;
10419
10419
 
10420
10420
  /**
10421
- * Wert des Rabatts
10421
+ * Preisgruppe
10422
10422
  */
10423
- modifierValue: number;
10423
+ priceGroupRef: ApiObjectReference;
10424
10424
 
10425
10425
  /**
10426
- * Preisgruppe
10426
+ * Wert des Rabatts
10427
10427
  */
10428
- priceGroupRef: ApiObjectReference;
10428
+ modifierValue: number;
10429
10429
 
10430
10430
  /**
10431
10431
  * Bestimmt, ob es sich um einen Verkaufs- oder Einkaufsrabatt handelt
@@ -10433,14 +10433,14 @@ export interface ProductDiscount {
10433
10433
  qualifier: ProductPriceQualifier;
10434
10434
 
10435
10435
  /**
10436
- * Gültig bis
10436
+ * Aktionpreis
10437
10437
  */
10438
- validUntil: ScriptingDate;
10438
+ specialOfferPrice: boolean;
10439
10439
 
10440
10440
  /**
10441
- * Aktionpreis
10441
+ * Gültig bis
10442
10442
  */
10443
- specialOfferPrice: boolean;
10443
+ validUntil: ScriptingDate;
10444
10444
 
10445
10445
  /**
10446
10446
  * Bestimmt die Art des Rabattwerts (fest oder prozentual)
@@ -10572,14 +10572,14 @@ export interface ProductMainGroup {
10572
10572
  export interface ProductPrice {
10573
10573
 
10574
10574
  /**
10575
- * Kundengruppe
10575
+ * Hauptartikel, für welches dieser Preis gültig ist
10576
10576
  */
10577
- customerGroupRef: ApiObjectReference;
10577
+ accessoryMainArticleRef: ApiObjectReference;
10578
10578
 
10579
10579
  /**
10580
- * Hauptartikel, für welches dieser Preis gültig ist
10580
+ * Kundengruppe
10581
10581
  */
10582
- accessoryMainArticleRef: ApiObjectReference;
10582
+ customerGroupRef: ApiObjectReference;
10583
10583
 
10584
10584
  /**
10585
10585
  * Einkaufspreis zur Kalkulation
@@ -10671,6 +10671,11 @@ export interface ProductPrice {
10671
10671
  */
10672
10672
  qualifier: ProductPriceQualifier;
10673
10673
 
10674
+ /**
10675
+ * Aktionpreis
10676
+ */
10677
+ specialOfferPrice: boolean;
10678
+
10674
10679
  /**
10675
10680
  * Preisbasis
10676
10681
  */
@@ -10681,11 +10686,6 @@ export interface ProductPrice {
10681
10686
  */
10682
10687
  validUntil: ScriptingDate;
10683
10688
 
10684
- /**
10685
- * Aktionpreis
10686
- */
10687
- specialOfferPrice: boolean;
10688
-
10689
10689
  /**
10690
10690
  * Bestimmt die Art des Aufschlages (fest oder prozentual) bei EK-Kalkulation
10691
10691
  */
@@ -10897,14 +10897,14 @@ export interface RequestDocument {
10897
10897
  paymentTermId: number;
10898
10898
 
10899
10899
  /**
10900
- * Für interne Zwecke: Vorgabe Streckengeschäft
10900
+ * Schema Freifelder
10901
10901
  */
10902
- dropShipping: boolean;
10902
+ custom: EavDocument;
10903
10903
 
10904
10904
  /**
10905
- * Schema Freifelder
10905
+ * Für interne Zwecke: Vorgabe Streckengeschäft
10906
10906
  */
10907
- custom: EavDocument;
10907
+ dropShipping: boolean;
10908
10908
 
10909
10909
  /**
10910
10910
  * target document type for document copy
@@ -11050,14 +11050,14 @@ export interface RequestDocumentLine {
11050
11050
  supplierAccountId: number;
11051
11051
 
11052
11052
  /**
11053
- * Menge, die in dieser Transaktion verarbeitet werden soll
11053
+ * Position der Hauptartikel-Position einer Zubehör-Position
11054
11054
  */
11055
- quantity: number;
11055
+ mainArticleLinePosition: number;
11056
11056
 
11057
11057
  /**
11058
- * Position der Hauptartikel-Position einer Zubehör-Position
11058
+ * Menge, die in dieser Transaktion verarbeitet werden soll
11059
11059
  */
11060
- mainArticleLinePosition: number;
11060
+ quantity: number;
11061
11061
 
11062
11062
  /**
11063
11063
  * Versandkosten mit Bedingungen
@@ -11065,14 +11065,14 @@ export interface RequestDocumentLine {
11065
11065
  shippingCostDetail: RequestDocumentLineShippingCostDetail;
11066
11066
 
11067
11067
  /**
11068
- * Details Produktionsbelegen
11068
+ * Für interne Zwecke: Freifelder
11069
11069
  */
11070
- fabricationDetail: RequestDocumentLineFabricationDetail;
11070
+ custom: EavDocumentline;
11071
11071
 
11072
11072
  /**
11073
- * Für interne Zwecke: Freifelder
11073
+ * Details Produktionsbelegen
11074
11074
  */
11075
- custom: EavDocumentline;
11075
+ fabricationDetail: RequestDocumentLineFabricationDetail;
11076
11076
 
11077
11077
  /**
11078
11078
  * Bemerkung zur OP-Position - wird beim Abschluss in den Kommentar des Offenen Postens übernommen
@@ -11124,11 +11124,6 @@ export interface RequestDocumentLine {
11124
11124
  */
11125
11125
  priceModifiers: Array<RequestDocumentPriceModifier>;
11126
11126
 
11127
- /**
11128
- * Für interne Zwecke: Externe Artikelnummer
11129
- */
11130
- externalArticleNumber: string;
11131
-
11132
11127
  /**
11133
11128
  * ID der Quell-Belegposition
11134
11129
  */
@@ -11139,6 +11134,11 @@ export interface RequestDocumentLine {
11139
11134
  */
11140
11135
  bookings: Array<RequestDocumentLineBooking>;
11141
11136
 
11137
+ /**
11138
+ * Für interne Zwecke: Externe Artikelnummer
11139
+ */
11140
+ externalArticleNumber: string;
11141
+
11142
11142
  /**
11143
11143
  * Zu der Zeile Etikettendruck anstoßen
11144
11144
  */
@@ -11988,14 +11988,14 @@ export interface ShelfFile {
11988
11988
  subFiles: Array<SubFileInfo>;
11989
11989
 
11990
11990
  /**
11991
- * fileSize
11991
+ * revision number of this file
11992
11992
  */
11993
- fileSize: number;
11993
+ revisionNumber: number;
11994
11994
 
11995
11995
  /**
11996
- * revision number of this file
11996
+ * fileSize
11997
11997
  */
11998
- revisionNumber: number;
11998
+ fileSize: number;
11999
11999
 
12000
12000
  /**
12001
12001
  * file-extension of this entry
@@ -12023,14 +12023,14 @@ export interface ShelfFile {
12023
12023
  version: number;
12024
12024
 
12025
12025
  /**
12026
- * meta data
12026
+ * current reference of this file in our storage
12027
12027
  */
12028
- metaDataEntries: Array<ShelfFileMetaData>;
12028
+ storageHandle: string;
12029
12029
 
12030
12030
  /**
12031
- * current reference of this file in our storage
12031
+ * meta data
12032
12032
  */
12033
- storageHandle: string;
12033
+ metaDataEntries: Array<ShelfFileMetaData>;
12034
12034
 
12035
12035
  /**
12036
12036
  * MetaInformations for this Object
@@ -12077,14 +12077,14 @@ export interface ShelfShare {
12077
12077
  publishState: ShelfSharePublishState;
12078
12078
 
12079
12079
  /**
12080
- * Freifelder
12080
+ * wie viele Minuten bleibt dieser resource-pfad zugreifbar (null = unlimited)
12081
12081
  */
12082
- custom: EavShelfshare;
12082
+ publicUrlDurationInMinutes: number;
12083
12083
 
12084
12084
  /**
12085
- * wie viele Minuten bleibt dieser resource-pfad zugreifbar (null = unlimited)
12085
+ * Freifelder
12086
12086
  */
12087
- publicUrlDurationInMinutes: number;
12087
+ custom: EavShelfshare;
12088
12088
 
12089
12089
  /**
12090
12090
  * der url-pfadanteil, der öffentlichen zugriff auf diese resource gibt
@@ -12316,14 +12316,14 @@ export interface StockTransferApi {
12316
12316
  bookDate: ScriptingDate;
12317
12317
 
12318
12318
  /**
12319
- * Menge
12319
+ * Quell-Lagerplatz
12320
12320
  */
12321
- quantity: number;
12321
+ sourceStorageBinId: number;
12322
12322
 
12323
12323
  /**
12324
- * Quell-Lagerplatz
12324
+ * Menge
12325
12325
  */
12326
- sourceStorageBinId: number;
12326
+ quantity: number;
12327
12327
 
12328
12328
  /**
12329
12329
  * Quell-Lager
@@ -13066,14 +13066,14 @@ export interface User {
13066
13066
  version: number;
13067
13067
 
13068
13068
  /**
13069
- * first-name
13069
+ * is the email verified
13070
13070
  */
13071
- firstName: string;
13071
+ emailVerified: boolean;
13072
13072
 
13073
13073
  /**
13074
- * is the email verified
13074
+ * first-name
13075
13075
  */
13076
- emailVerified: boolean;
13076
+ firstName: string;
13077
13077
 
13078
13078
  /**
13079
13079
  * email-address
@@ -13086,14 +13086,14 @@ export interface User {
13086
13086
  id: number;
13087
13087
 
13088
13088
  /**
13089
- * Valid to
13089
+ * username
13090
13090
  */
13091
- validTo: ScriptingDateTime;
13091
+ username: string;
13092
13092
 
13093
13093
  /**
13094
- * username
13094
+ * Valid to
13095
13095
  */
13096
- username: string;
13096
+ validTo: ScriptingDateTime;
13097
13097
 
13098
13098
  /**
13099
13099
  * MetaInformations for this Object
@@ -13152,14 +13152,14 @@ export interface VariantAttributeListing {
13152
13152
  salesChannelRef: ApiObjectReference;
13153
13153
 
13154
13154
  /**
13155
- * Variantenattribut
13155
+ * Freifelder
13156
13156
  */
13157
- variantAttributeRef: ApiObjectReference;
13157
+ custom: EavVariantattributelisting;
13158
13158
 
13159
13159
  /**
13160
- * Freifelder
13160
+ * Variantenattribut
13161
13161
  */
13162
- custom: EavVariantattributelisting;
13162
+ variantAttributeRef: ApiObjectReference;
13163
13163
 
13164
13164
  /**
13165
13165
  * Unique identifier of the Object