@vario-software/types 2026.34.0 → 2026.34.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.
@@ -84,14 +84,14 @@ export interface Account {
84
84
  businessRelationType: BusinessRelationType;
85
85
 
86
86
  /**
87
- * first contact type for this account
87
+ * Zeitzone (bzw. Zeitzonen-Offset) des Accounts
88
88
  */
89
- initialContactTypeRef: ApiCreatableReference;
89
+ accountZoneId: AccountZoneId;
90
90
 
91
91
  /**
92
- * Zeitzone (bzw. Zeitzonen-Offset) des Accounts
92
+ * first contact type for this account
93
93
  */
94
- accountZoneId: AccountZoneId;
94
+ initialContactTypeRef: ApiCreatableReference;
95
95
 
96
96
  /**
97
97
  * Supplier of this account
@@ -143,26 +143,26 @@ export interface Account {
143
143
  */
144
144
  payablesSum: number;
145
145
 
146
- /**
147
- * Summe Forderungen
148
- */
149
- receivablesSum: number;
150
-
151
146
  /**
152
147
  * Kostenstelle
153
148
  */
154
149
  costCenter: string;
155
150
 
156
151
  /**
157
- * companyLegal for this account
152
+ * Summe Forderungen
158
153
  */
159
- companyLegalRef: ApiCreatableReference;
154
+ receivablesSum: number;
160
155
 
161
156
  /**
162
157
  * Custom account data
163
158
  */
164
159
  custom: EavAccount;
165
160
 
161
+ /**
162
+ * companyLegal for this account
163
+ */
164
+ companyLegalRef: ApiCreatableReference;
165
+
166
166
  /**
167
167
  * tax number/ Steuernummer
168
168
  */
@@ -214,14 +214,14 @@ export interface Account {
214
214
  persons: Array<AccountPerson>;
215
215
 
216
216
  /**
217
- * Standard-Ansprechpartner
217
+ * Referenz auf den Ziel-Belegtyp nach der Kommissionierung
218
218
  */
219
- defaultPerson: AccountPerson;
219
+ afterPickingTargetDocumentTypeRef: ApiObjectReference;
220
220
 
221
221
  /**
222
- * Referenz auf den Ziel-Belegtyp nach der Kommissionierung
222
+ * Standard-Ansprechpartner
223
223
  */
224
- afterPickingTargetDocumentTypeRef: ApiObjectReference;
224
+ defaultPerson: AccountPerson;
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
- * Country code
300
+ * Post office box
306
301
  */
307
- countryCode: string;
302
+ postOfficeBox: string;
308
303
 
309
304
  /**
310
305
  * Street
311
306
  */
312
307
  street: string;
313
308
 
309
+ /**
310
+ * Country code
311
+ */
312
+ countryCode: string;
313
+
314
314
  /**
315
315
  * Unique identifier of the Object
316
316
  */
@@ -336,26 +336,26 @@ export interface AccountAddress {
336
336
  */
337
337
  types: Array<ApiCreatableReference>;
338
338
 
339
- /**
340
- * GLN/ILN as location identifier for this address
341
- */
342
- globalLocationNumber: string;
343
-
344
339
  /**
345
340
  * Leitweg-ID
346
341
  */
347
342
  buyerReference: string;
348
343
 
349
344
  /**
350
- * abweichende Zahlungsart
345
+ * GLN/ILN as location identifier for this address
351
346
  */
352
- deviatingPaymentMethodRef: ApiObjectReference;
347
+ globalLocationNumber: string;
353
348
 
354
349
  /**
355
350
  * Custom data
356
351
  */
357
352
  custom: EavAccountaddress;
358
353
 
354
+ /**
355
+ * abweichende Zahlungsart
356
+ */
357
+ deviatingPaymentMethodRef: ApiObjectReference;
358
+
359
359
  /**
360
360
  * Postcode
361
361
  */
@@ -386,26 +386,26 @@ export interface AccountAddress {
386
386
  */
387
387
  version: number;
388
388
 
389
- /**
390
- * tax identification number/ UST-ID-Nr.
391
- */
392
- taxIdentificationNumber: string;
393
-
394
389
  /**
395
390
  * Additional address line1
396
391
  */
397
392
  additionalAddressLine1: string;
398
393
 
399
394
  /**
400
- * Parcel station
395
+ * tax identification number/ UST-ID-Nr.
401
396
  */
402
- parcelStation: string;
397
+ taxIdentificationNumber: string;
403
398
 
404
399
  /**
405
400
  * Additional address line2
406
401
  */
407
402
  additionalAddressLine2: string;
408
403
 
404
+ /**
405
+ * Parcel station
406
+ */
407
+ parcelStation: string;
408
+
409
409
  /**
410
410
  * Street address number
411
411
  */
@@ -452,14 +452,14 @@ export interface AccountAddress {
452
452
  name1: string;
453
453
 
454
454
  /**
455
- * abweichende Zahlungsbedingungen
455
+ * Contacts
456
456
  */
457
- deviatingPaymentTermRef: ApiObjectReference;
457
+ contacts: Array<Contact>;
458
458
 
459
459
  /**
460
- * Contacts
460
+ * abweichende Zahlungsbedingungen
461
461
  */
462
- contacts: Array<Contact>;
462
+ deviatingPaymentTermRef: ApiObjectReference;
463
463
 
464
464
  /**
465
465
  * is this the default address of the account
@@ -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
@@ -505,14 +505,14 @@ export interface AccountBankdetail {
505
505
  bankCity: string;
506
506
 
507
507
  /**
508
- * origin type
508
+ * Is default bank?
509
509
  */
510
- originType: AccountBankdetail$OriginType;
510
+ defaultBank: boolean;
511
511
 
512
512
  /**
513
- * Is default bank?
513
+ * origin type
514
514
  */
515
- defaultBank: boolean;
515
+ originType: AccountBankdetail$OriginType;
516
516
 
517
517
  /**
518
518
  * IBAN
@@ -596,14 +596,14 @@ export interface AccountListing {
596
596
  export interface AccountLoanValue {
597
597
 
598
598
  /**
599
- * Nicht berücksichtigter Betrag
599
+ * Account
600
600
  */
601
- unconsideredAmount: number;
601
+ accountId: number;
602
602
 
603
603
  /**
604
- * Account
604
+ * Nicht berücksichtigter Betrag
605
605
  */
606
- accountId: number;
606
+ unconsideredAmount: number;
607
607
 
608
608
  /**
609
609
  * Betrag aus Aufträgen
@@ -828,14 +828,14 @@ export interface AccountPerson {
828
828
  tags: Array<TagDto>;
829
829
 
830
830
  /**
831
- * Default contacts
831
+ * First name
832
832
  */
833
- defaultContacts: Map<ContactTypeType,Contact>;
833
+ firstName: string;
834
834
 
835
835
  /**
836
- * First name
836
+ * Default contacts
837
837
  */
838
- firstName: string;
838
+ defaultContacts: Map<ContactTypeType,Contact>;
839
839
 
840
840
  /**
841
841
  * zugeordneter Benutzer (für eigenen Account)
@@ -1005,14 +1005,14 @@ export interface Article {
1005
1005
  printLabelSettings: ArticlePrintLabelSettings;
1006
1006
 
1007
1007
  /**
1008
- * Gefahrgut Informationen
1008
+ * Zolltarifnummer
1009
1009
  */
1010
- dangerousGoodInformation: DangerousGoodInformation;
1010
+ customsTariffNumber: string;
1011
1011
 
1012
1012
  /**
1013
- * Zolltarifnummer
1013
+ * Gefahrgut Informationen
1014
1014
  */
1015
- customsTariffNumber: string;
1015
+ dangerousGoodInformation: DangerousGoodInformation;
1016
1016
 
1017
1017
  /**
1018
1018
  * Product custom data
@@ -1029,11 +1029,6 @@ 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
-
1037
1032
  /**
1038
1033
  * Seriennummern Auszeichnungsart
1039
1034
  */
@@ -1044,6 +1039,11 @@ export interface Article {
1044
1039
  */
1045
1040
  initialAvgPurchasePrice: number;
1046
1041
 
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
  */
@@ -1075,14 +1075,14 @@ export interface Article {
1075
1075
  number: string;
1076
1076
 
1077
1077
  /**
1078
- * weight and size w.o. packaging
1078
+ * Optionen zur Berechnung der Verfügbarkeit
1079
1079
  */
1080
- netMetric: Article$Metric;
1080
+ availabilityDetermination: ArticleAvailabilityDetermination;
1081
1081
 
1082
1082
  /**
1083
- * Optionen zur Berechnung der Verfügbarkeit
1083
+ * weight and size w.o. packaging
1084
1084
  */
1085
- availabilityDetermination: ArticleAvailabilityDetermination;
1085
+ netMetric: Article$Metric;
1086
1086
 
1087
1087
  /**
1088
1088
  * is this product mergeable to another package-variant
@@ -1145,14 +1145,14 @@ export interface Article {
1145
1145
  deliveryMethodRef: ApiObjectReference;
1146
1146
 
1147
1147
  /**
1148
- * Produktion
1148
+ * Soll-Handelsspanne
1149
1149
  */
1150
- fabrication: boolean;
1150
+ targetTradingMargin: number;
1151
1151
 
1152
1152
  /**
1153
- * Soll-Handelsspanne
1153
+ * Produktion
1154
1154
  */
1155
- targetTradingMargin: number;
1155
+ fabrication: boolean;
1156
1156
 
1157
1157
  /**
1158
1158
  * active
@@ -1195,14 +1195,14 @@ export interface Article {
1195
1195
  returnable: boolean;
1196
1196
 
1197
1197
  /**
1198
- * weight and size inc. packaging
1198
+ * Verkaufseinheit
1199
1199
  */
1200
- grossMetric: Article$Metric;
1200
+ salesUnit: number;
1201
1201
 
1202
1202
  /**
1203
- * Verkaufseinheit
1203
+ * weight and size inc. packaging
1204
1204
  */
1205
- salesUnit: number;
1205
+ grossMetric: Article$Metric;
1206
1206
 
1207
1207
  /**
1208
1208
  * name of this product
@@ -1215,14 +1215,14 @@ export interface Article {
1215
1215
  listingStateChangeTime: ScriptingDateTime;
1216
1216
 
1217
1217
  /**
1218
- * Country code
1218
+ * Arbeitseinheit in Minuten
1219
1219
  */
1220
- countryOfOriginRef: CountryReference;
1220
+ workUnitInMinutes: number;
1221
1221
 
1222
1222
  /**
1223
- * Arbeitseinheit in Minuten
1223
+ * Country code
1224
1224
  */
1225
- workUnitInMinutes: number;
1225
+ countryOfOriginRef: CountryReference;
1226
1226
 
1227
1227
  /**
1228
1228
  * description custom data
@@ -1235,14 +1235,14 @@ export interface Article {
1235
1235
  freelyPickable: boolean;
1236
1236
 
1237
1237
  /**
1238
- * Umkehrung der Steuerschuld nach §13b UStG?
1238
+ * Charge muss bei Einbuchung in ein Verkaufslager vergeben werden (für Serientyp LOT und BEST_BEFORE)
1239
1239
  */
1240
- taxLiabilityReversed: boolean;
1240
+ lotOnlyRequiredWhenBookedToSalesStorage: boolean;
1241
1241
 
1242
1242
  /**
1243
- * Charge muss bei Einbuchung in ein Verkaufslager vergeben werden (für Serientyp LOT und BEST_BEFORE)
1243
+ * Umkehrung der Steuerschuld nach §13b UStG?
1244
1244
  */
1245
- lotOnlyRequiredWhenBookedToSalesStorage: boolean;
1245
+ taxLiabilityReversed: boolean;
1246
1246
 
1247
1247
  /**
1248
1248
  * Notiz
@@ -1285,9 +1285,9 @@ export interface Article {
1285
1285
  capacity: number;
1286
1286
 
1287
1287
  /**
1288
- * gross sales prices
1288
+ * Vorgabe Herstellungskosten
1289
1289
  */
1290
- grossSalesPrice: number;
1290
+ defaultFabricationCost: number;
1291
1291
 
1292
1292
  /**
1293
1293
  * Mindestrestlaufzeit Eingang (Tage): Minimale Restlaufzeit in Tagen, die ein Artikel bei der Einbuchung in ein Verkaufslager noch aufweisen muss
@@ -1295,9 +1295,9 @@ export interface Article {
1295
1295
  minimumRemainingDaysBeforeExpiryDateOnGoodsReceipt: number;
1296
1296
 
1297
1297
  /**
1298
- * Vorgabe Herstellungskosten
1298
+ * gross sales prices
1299
1299
  */
1300
- defaultFabricationCost: number;
1300
+ grossSalesPrice: number;
1301
1301
 
1302
1302
  /**
1303
1303
  * Letzter EKP (Startwert)
@@ -1319,6 +1319,11 @@ export interface Article {
1319
1319
  */
1320
1320
  productRef: ApiObjectReference;
1321
1321
 
1322
+ /**
1323
+ * rabattierbarer Artikel?
1324
+ */
1325
+ discountable: boolean;
1326
+
1322
1327
  /**
1323
1328
  * alternative name of this product
1324
1329
  */
@@ -1329,11 +1334,6 @@ export interface Article {
1329
1334
  */
1330
1335
  contingentArticleRef: ApiObjectReference;
1331
1336
 
1332
- /**
1333
- * rabattierbarer Artikel?
1334
- */
1335
- discountable: boolean;
1336
-
1337
1337
  /**
1338
1338
  * base capacity
1339
1339
  */
@@ -1405,14 +1405,14 @@ export interface Article {
1405
1405
  listed: boolean;
1406
1406
 
1407
1407
  /**
1408
- * Nur manuelle Produktion
1408
+ * provisionsberechtiger Artikel?
1409
1409
  */
1410
- onlyManualFabrication: boolean;
1410
+ commissionable: boolean;
1411
1411
 
1412
1412
  /**
1413
- * provisionsberechtiger Artikel?
1413
+ * Nur manuelle Produktion
1414
1414
  */
1415
- commissionable: boolean;
1415
+ onlyManualFabrication: boolean;
1416
1416
 
1417
1417
  /**
1418
1418
  * Mindestrestlaufzeit Ausgang (Tage): Minimale Restlaufzeit in Tagen, die ein Artikel beim Verkauf noch aufweisen muss
@@ -1442,30 +1442,30 @@ export interface Article$Metric {
1442
1442
  */
1443
1443
  sizeX: number;
1444
1444
 
1445
- /**
1446
- * size unit
1447
- */
1448
- sizeUnit: UnitTypeReference;
1449
-
1450
1445
  /**
1451
1446
  * weight
1452
1447
  */
1453
1448
  weight: number;
1454
1449
 
1455
1450
  /**
1456
- * size
1451
+ * size unit
1457
1452
  */
1458
- sizeY: number;
1453
+ sizeUnit: UnitTypeReference;
1459
1454
 
1460
1455
  /**
1461
1456
  * size
1462
1457
  */
1463
- sizeZ: number;
1458
+ sizeY: number;
1464
1459
 
1465
1460
  /**
1466
1461
  * weight unit
1467
1462
  */
1468
1463
  weightUnit: UnitTypeReference;
1464
+
1465
+ /**
1466
+ * size
1467
+ */
1468
+ sizeZ: number;
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
- * Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
1592
+ * Etikettdruck-Einstellungen
1593
1593
  */
1594
- useDeviatingArticleIdentifier: boolean;
1594
+ customerPrintLabelSettings: ArticlePrintLabelSettings;
1595
1595
 
1596
1596
  /**
1597
- * Etikettdruck-Einstellungen
1597
+ * Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
1598
1598
  */
1599
- customerPrintLabelSettings: ArticlePrintLabelSettings;
1599
+ useDeviatingArticleIdentifier: boolean;
1600
1600
 
1601
1601
  /**
1602
1602
  * Kunden-Preise
@@ -1741,14 +1741,14 @@ export interface ArticleListing {
1741
1741
  identifiers: WithDefaults<List<ArticleIdentifier>>;
1742
1742
 
1743
1743
  /**
1744
- * is this product sellable without any quantity at the stock
1744
+ * custom data
1745
1745
  */
1746
- sellableWithoutStock: boolean;
1746
+ custom: EavArticleListing;
1747
1747
 
1748
1748
  /**
1749
- * custom data
1749
+ * is this product sellable without any quantity at the stock
1750
1750
  */
1751
- custom: EavArticleListing;
1751
+ sellableWithoutStock: boolean;
1752
1752
 
1753
1753
  /**
1754
1754
  * description custom data
@@ -1771,14 +1771,14 @@ export interface ArticleListing {
1771
1771
  proposedLowestPriceGross: number;
1772
1772
 
1773
1773
  /**
1774
- * Niedrigster Brutto-Preis der letzten 30 Tage (benutzerdefinierte Eingabe)
1774
+ * der Sales Channel
1775
1775
  */
1776
- customLowestPriceGross: number;
1776
+ salesChannelRef: ApiObjectReference;
1777
1777
 
1778
1778
  /**
1779
- * der Sales Channel
1779
+ * Niedrigster Brutto-Preis der letzten 30 Tage (benutzerdefinierte Eingabe)
1780
1780
  */
1781
- salesChannelRef: ApiObjectReference;
1781
+ customLowestPriceGross: number;
1782
1782
 
1783
1783
  /**
1784
1784
  * soll der Artikel gelistet werden
@@ -1993,6 +1993,11 @@ export interface ArticleStorage {
1993
1993
  */
1994
1994
  replenishmentFrom: number;
1995
1995
 
1996
+ /**
1997
+ * Bestellte Menge
1998
+ */
1999
+ orderedQuantity: number;
2000
+
1996
2001
  /**
1997
2002
  * Meldebestand
1998
2003
  */
@@ -2003,11 +2008,6 @@ export interface ArticleStorage {
2003
2008
  */
2004
2009
  quantityInPicking: number;
2005
2010
 
2006
- /**
2007
- * Bestellte Menge
2008
- */
2009
- orderedQuantity: number;
2010
-
2011
2011
  /**
2012
2012
  * Nachschub auf
2013
2013
  */
@@ -2086,11 +2086,6 @@ export interface ArticleStorage {
2086
2086
 
2087
2087
  export interface ArticleSupplier {
2088
2088
 
2089
- /**
2090
- * Anzeigename des Accounts
2091
- */
2092
- accountDisplayName: string;
2093
-
2094
2089
  /**
2095
2090
  * Lieferanten-Meldebestand
2096
2091
  */
@@ -2102,15 +2097,20 @@ export interface ArticleSupplier {
2102
2097
  useSupplierArticleDescription: boolean;
2103
2098
 
2104
2099
  /**
2105
- * Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
2100
+ * Anzeigename des Accounts
2106
2101
  */
2107
- useSupplierArticleIdentifier: boolean;
2102
+ accountDisplayName: string;
2108
2103
 
2109
2104
  /**
2110
2105
  * Lieferzeit in (Werk-)Tagen
2111
2106
  */
2112
2107
  deliveryTime: number;
2113
2108
 
2109
+ /**
2110
+ * Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
2111
+ */
2112
+ useSupplierArticleIdentifier: boolean;
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
- * Zusatzadresse
2331
+ * Vertrag
2332
2332
  */
2333
- accountAddressRef: ApiObjectReference;
2333
+ contractRef: ApiObjectReference;
2334
2334
 
2335
2335
  /**
2336
- * Vertrag
2336
+ * Zusatzadresse
2337
2337
  */
2338
- contractRef: ApiObjectReference;
2338
+ accountAddressRef: ApiObjectReference;
2339
2339
 
2340
2340
  /**
2341
2341
  * Asset-Nummer
@@ -2668,14 +2668,14 @@ export interface CountryReference {
2668
2668
  export interface CreateNewDocumentRequest {
2669
2669
 
2670
2670
  /**
2671
- * Standard-Belegart der Kategorie verwenden
2671
+ * Belegart
2672
2672
  */
2673
- defaultDocumentTypeByCategory: EDocumentCategory;
2673
+ documentTypeLabel: string;
2674
2674
 
2675
2675
  /**
2676
- * Belegart
2676
+ * Standard-Belegart der Kategorie verwenden
2677
2677
  */
2678
- documentTypeLabel: string;
2678
+ defaultDocumentTypeByCategory: EDocumentCategory;
2679
2679
 
2680
2680
  /**
2681
2681
  * Beleg als extern erstellt kennzeichnen (extern erstellter Beleg)
@@ -2791,14 +2791,14 @@ export interface CrmActivity {
2791
2791
  userRef: ApiObjectReference;
2792
2792
 
2793
2793
  /**
2794
- * Handelt es sich um eine System-Aktivität?
2794
+ * tatsächliche Startzeit
2795
2795
  */
2796
- system: boolean;
2796
+ startDateTime: ScriptingDateTime;
2797
2797
 
2798
2798
  /**
2799
- * tatsächliche Startzeit
2799
+ * Handelt es sich um eine System-Aktivität?
2800
2800
  */
2801
- startDateTime: ScriptingDateTime;
2801
+ system: boolean;
2802
2802
 
2803
2803
  /**
2804
2804
  * Inhalt dieser Aktivität
@@ -3477,14 +3477,14 @@ export const enum CrmReferenceType {
3477
3477
  export interface CrmReminder {
3478
3478
 
3479
3479
  /**
3480
- * Notiz zur Erinnerung
3480
+ * ID des CRM Objekts
3481
3481
  */
3482
- note: string;
3482
+ crmId: number;
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
3490
  * Wer soll erinnert werden
@@ -3881,14 +3881,14 @@ export interface CrmTask {
3881
3881
  blocksTaskRefs: Array<ApiObjectReference>;
3882
3882
 
3883
3883
  /**
3884
- * Soll die Aufgabe veröffentlicht werden?
3884
+ * Weitere Teilnehmer vom Auftragnehmer
3885
3885
  */
3886
- publish: boolean;
3886
+ additionalParticipantsOfContractor: Array<CrmTaskParticipant>;
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
3894
  * Fortschritt in Prozent
@@ -4015,14 +4015,14 @@ export interface CurrencyReference {
4015
4015
  export interface Customer {
4016
4016
 
4017
4017
  /**
4018
- * reference to customer group
4018
+ * Option für die Stapelverarbeitung
4019
4019
  */
4020
- customerGroupRef: ApiObjectReference;
4020
+ stackProcessingType: AccountOrderStackProcessingType;
4021
4021
 
4022
4022
  /**
4023
- * Option für die Stapelverarbeitung
4023
+ * reference to customer group
4024
4024
  */
4025
- stackProcessingType: AccountOrderStackProcessingType;
4025
+ customerGroupRef: ApiObjectReference;
4026
4026
 
4027
4027
  /**
4028
4028
  * Cron-Ausdruck zur Berechnung der Sammelabrechnung
@@ -4040,14 +4040,14 @@ export interface Customer {
4040
4040
  dueDate: ScriptingDate;
4041
4041
 
4042
4042
  /**
4043
- * collective billable
4043
+ * Maximal mögliche Lieferungen
4044
4044
  */
4045
- collectiveBillable: boolean;
4045
+ maxDeliveries: number;
4046
4046
 
4047
4047
  /**
4048
- * Maximal mögliche Lieferungen
4048
+ * collective billable
4049
4049
  */
4050
- maxDeliveries: number;
4050
+ collectiveBillable: boolean;
4051
4051
 
4052
4052
  /**
4053
4053
  * Hat der Kunde eine Liefersperre?
@@ -4075,14 +4075,14 @@ export interface Customer {
4075
4075
  stackProcessingPriority: number;
4076
4076
 
4077
4077
  /**
4078
- * reference to product price group
4078
+ * Sammelabrechnung nur manuell auslösen?
4079
4079
  */
4080
- productPriceGroupRef: ApiObjectReference;
4080
+ collectiveInvoiceManually: boolean;
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
4088
  * Unique identifier of the Object
@@ -4100,14 +4100,14 @@ export interface Customer {
4100
4100
  info: MetaInfo;
4101
4101
 
4102
4102
  /**
4103
- * reference to the delivery method
4103
+ * tax able or tax free
4104
4104
  */
4105
- deliveryMethodRef: ApiObjectReference;
4105
+ taxable: boolean;
4106
4106
 
4107
4107
  /**
4108
- * tax able or tax free
4108
+ * reference to the delivery method
4109
4109
  */
4110
- taxable: boolean;
4110
+ deliveryMethodRef: ApiObjectReference;
4111
4111
 
4112
4112
  /**
4113
4113
  * active true/false
@@ -4168,14 +4168,14 @@ export interface DangerousGoodInformation {
4168
4168
  tunnelRestrictionCode: TunnelRestrictionCode;
4169
4169
 
4170
4170
  /**
4171
- * transportation category
4171
+ * description
4172
4172
  */
4173
- transportCategory: string;
4173
+ description: string;
4174
4174
 
4175
4175
  /**
4176
- * description
4176
+ * transportation category
4177
4177
  */
4178
- description: string;
4178
+ transportCategory: string;
4179
4179
 
4180
4180
  /**
4181
4181
  * technical name
@@ -4259,14 +4259,14 @@ export const enum DealNotificationEventConfig {
4259
4259
  export interface DeliveryMethod {
4260
4260
 
4261
4261
  /**
4262
- * Soll eine Position mit dieser Liefermethode in einen Lieferbeleg mit dieser Methode übernommen werden
4262
+ * E-Mail an Versender übergeben
4263
4263
  */
4264
- splitIntoNewDocument: boolean;
4264
+ forwardEmailToShipper: boolean;
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
4272
  * Barcode
@@ -4472,14 +4472,14 @@ export interface DmsOutputStream {
4472
4472
  export interface Document {
4473
4473
 
4474
4474
  /**
4475
- * Bestätigtes Lieferende (nur wenn bestätigtes Lieferdatum gesetzt)
4475
+ * Referenz zum Rechnungskonto
4476
4476
  */
4477
- confirmedDeliveryDateEnd: ScriptingDate;
4477
+ billingAccountRef: ApiObjectReference;
4478
4478
 
4479
4479
  /**
4480
- * Referenz zum Rechnungskonto
4480
+ * Bestätigtes Lieferende (nur wenn bestätigtes Lieferdatum gesetzt)
4481
4481
  */
4482
- billingAccountRef: ApiObjectReference;
4482
+ confirmedDeliveryDateEnd: ScriptingDate;
4483
4483
 
4484
4484
  /**
4485
4485
  * Externe Belegnummer
@@ -4517,14 +4517,14 @@ export interface Document {
4517
4517
  totalVat: number;
4518
4518
 
4519
4519
  /**
4520
- * Name der bestellenden Person
4520
+ * Standardlager für neue Positionen
4521
4521
  */
4522
- orderedBy: string;
4522
+ defaultStorageRef: ApiObjectReference;
4523
4523
 
4524
4524
  /**
4525
- * Standardlager für neue Positionen
4525
+ * Name der bestellenden Person
4526
4526
  */
4527
- defaultStorageRef: ApiObjectReference;
4527
+ orderedBy: string;
4528
4528
 
4529
4529
  /**
4530
4530
  * Lieferadresse
@@ -4630,14 +4630,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
4630
4630
  accountId: number;
4631
4631
 
4632
4632
  /**
4633
- * Länderkennzeichen Leistungsland (ISO Alpha-3)
4633
+ * Länderkennzeichen Ursprungsland (ISO Alpha-3)
4634
4634
  */
4635
- performanceCountryCode: string;
4635
+ sourceCountryCode: string;
4636
4636
 
4637
4637
  /**
4638
- * Länderkennzeichen Ursprungsland (ISO Alpha-3)
4638
+ * Länderkennzeichen Leistungsland (ISO Alpha-3)
4639
4639
  */
4640
- sourceCountryCode: string;
4640
+ performanceCountryCode: string;
4641
4641
 
4642
4642
  /**
4643
4643
  * Vereinbartes Anzahlungsdatum
@@ -4699,6 +4699,13 @@ negativer Wert: überzahlter Betrag / Rückgeld
4699
4699
  */
4700
4700
  posPayments: Array<DocumentPosPayment>;
4701
4701
 
4702
+ /**
4703
+ * Ist die Quittung bezahlt
4704
+ true wenn die Quittung bezahlt ist
4705
+
4706
+ */
4707
+ posReceiptPayed: boolean;
4708
+
4702
4709
  /**
4703
4710
  * Kundennummer beim Lieferanten
4704
4711
  */
@@ -4709,13 +4716,6 @@ negativer Wert: überzahlter Betrag / Rückgeld
4709
4716
  */
4710
4717
  maxDeliveries: number;
4711
4718
 
4712
- /**
4713
- * Ist die Quittung bezahlt
4714
- true wenn die Quittung bezahlt ist
4715
-
4716
- */
4717
- posReceiptPayed: boolean;
4718
-
4719
4719
  /**
4720
4720
  * Quittung: Summe Zahlbetrag
4721
4721
  */
@@ -4762,14 +4762,14 @@ true wenn die Quittung bezahlt ist
4762
4762
  calculationMode: CalculationMode;
4763
4763
 
4764
4764
  /**
4765
- * Referenz auf Zahlungsbedingung
4765
+ * Wird vom Workflow verarbeitet?
4766
4766
  */
4767
- paymentTermRef: PaymentTermRef;
4767
+ processedByWorkflow: boolean;
4768
4768
 
4769
4769
  /**
4770
- * Wird vom Workflow verarbeitet?
4770
+ * Referenz auf Zahlungsbedingung
4771
4771
  */
4772
- processedByWorkflow: boolean;
4772
+ paymentTermRef: PaymentTermRef;
4773
4773
 
4774
4774
  /**
4775
4775
  * Preisanpassungen - Beleg Basiswährung
@@ -4872,14 +4872,14 @@ true wenn die Quittung bezahlt ist
4872
4872
  dropShipping: boolean;
4873
4873
 
4874
4874
  /**
4875
- * Gesamtpreis netto
4875
+ * Validierungsstatus bei elektronischen Rechnungen
4876
4876
  */
4877
- totalNetPrice: number;
4877
+ valitoolValidationState: EInvoiceValidationState;
4878
4878
 
4879
4879
  /**
4880
- * Validierungsstatus bei elektronischen Rechnungen
4880
+ * Gesamtpreis netto
4881
4881
  */
4882
- valitoolValidationState: EInvoiceValidationState;
4882
+ totalNetPrice: number;
4883
4883
 
4884
4884
  /**
4885
4885
  * Ist der Beleg veröffentlicht (gedruckt, per Mail versendet)?
@@ -4986,11 +4986,6 @@ true wenn die Quittung bezahlt ist
4986
4986
  */
4987
4987
  customerNumber: string;
4988
4988
 
4989
- /**
4990
- * Umsatzsteuer-Identifikationsnummer
4991
- */
4992
- taxIdentificationNumber: string;
4993
-
4994
4989
  /**
4995
4990
  * Versandkostenpositionen
4996
4991
  */
@@ -5002,14 +4997,14 @@ true wenn die Quittung bezahlt ist
5002
4997
  documentState: DocumentTypeState;
5003
4998
 
5004
4999
  /**
5005
- * Rückgeld
5000
+ * Umsatzsteuer-Identifikationsnummer
5006
5001
  */
5007
- posReceiptChangeAmount: number;
5002
+ taxIdentificationNumber: string;
5008
5003
 
5009
5004
  /**
5010
- * Referenz auf Lieferbedingung
5005
+ * Rückgeld
5011
5006
  */
5012
- deliveryTermRef: ApiObjectReference;
5007
+ posReceiptChangeAmount: number;
5013
5008
 
5014
5009
  /**
5015
5010
  * Ist die Quittung ausbalanciert, also bezahlt und kein Rückgeld
@@ -5018,6 +5013,11 @@ true wenn die Quittung ausbalanciert ist
5018
5013
  */
5019
5014
  posReceiptBalanced: boolean;
5020
5015
 
5016
+ /**
5017
+ * Referenz auf Lieferbedingung
5018
+ */
5019
+ deliveryTermRef: ApiObjectReference;
5020
+
5021
5021
  /**
5022
5022
  * Gesamtbruttogewicht
5023
5023
  */
@@ -5049,14 +5049,14 @@ true wenn die Quittung ausbalanciert ist
5049
5049
  taxIdVerificationState: TaxIdVerificationState;
5050
5050
 
5051
5051
  /**
5052
- * Report-Gruppe, falls vom Standard abweichend
5052
+ * Bestellt durch Ansprechpartner
5053
5053
  */
5054
- reportGroupRef: ApiObjectReference;
5054
+ orderedByPersonRef: ApiObjectReference;
5055
5055
 
5056
5056
  /**
5057
- * Bestellt durch Ansprechpartner
5057
+ * Report-Gruppe, falls vom Standard abweichend
5058
5058
  */
5059
- orderedByPersonRef: ApiObjectReference;
5059
+ reportGroupRef: ApiObjectReference;
5060
5060
  }
5061
5061
 
5062
5062
  export interface DocumentAdditionalInfo {
@@ -5072,14 +5072,14 @@ export interface DocumentAdditionalInfo {
5072
5072
  roundingMode: DocumentRounding;
5073
5073
 
5074
5074
  /**
5075
- * Parameter, welche im {@link DocumentContext} verwendet wurden
5075
+ * Herkunft der Sprache
5076
5076
  */
5077
- contextParameters: Array<AdditionalParameter>;
5077
+ languageCodeOrigin: LanguageCodeOrigin;
5078
5078
 
5079
5079
  /**
5080
- * Herkunft der Sprache
5080
+ * Parameter, welche im {@link DocumentContext} verwendet wurden
5081
5081
  */
5082
- languageCodeOrigin: LanguageCodeOrigin;
5082
+ contextParameters: Array<AdditionalParameter>;
5083
5083
 
5084
5084
  /**
5085
5085
  * Herkunft der Käufer-Referenz
@@ -5194,14 +5194,14 @@ export interface DocumentAddress {
5194
5194
  postOfficeBox: string;
5195
5195
 
5196
5196
  /**
5197
- * country code IsoAlpha3
5197
+ * Street
5198
5198
  */
5199
- countryCode: string;
5199
+ street: string;
5200
5200
 
5201
5201
  /**
5202
- * Street
5202
+ * country code IsoAlpha3
5203
5203
  */
5204
- street: string;
5204
+ countryCode: string;
5205
5205
 
5206
5206
  /**
5207
5207
  * Unique identifier of the Object
@@ -5259,14 +5259,14 @@ export interface DocumentAddress {
5259
5259
  additionalAddressLine2: string;
5260
5260
 
5261
5261
  /**
5262
- * Lieferbedingungen
5262
+ * Street address number
5263
5263
  */
5264
- deliveryTermRef: ApiObjectReference;
5264
+ streetAddressNumber: string;
5265
5265
 
5266
5266
  /**
5267
- * Street address number
5267
+ * Lieferbedingungen
5268
5268
  */
5269
- streetAddressNumber: string;
5269
+ deliveryTermRef: ApiObjectReference;
5270
5270
 
5271
5271
  /**
5272
5272
  * address line 3
@@ -5284,14 +5284,14 @@ export interface DocumentAddress {
5284
5284
  paymentMethodRef: ApiObjectReference;
5285
5285
 
5286
5286
  /**
5287
- * Referenz zum Account
5287
+ * salutation for this address
5288
5288
  */
5289
- accountRef: ApiObjectReference;
5289
+ salutation: string;
5290
5290
 
5291
5291
  /**
5292
- * salutation for this address
5292
+ * Referenz zum Account
5293
5293
  */
5294
- salutation: string;
5294
+ accountRef: ApiObjectReference;
5295
5295
 
5296
5296
  /**
5297
5297
  * address line 2
@@ -5409,14 +5409,14 @@ export interface DocumentContractDetail {
5409
5409
  runtimeToDate: ScriptingDate;
5410
5410
 
5411
5411
  /**
5412
- * Nächste Fälligkeit
5412
+ * Letztmöglicher kündigungstermin des Anbieters
5413
5413
  */
5414
- nextDueDate: ScriptingDate;
5414
+ lastProviderCancellationDate: ScriptingDate;
5415
5415
 
5416
5416
  /**
5417
- * Letztmöglicher kündigungstermin des Anbieters
5417
+ * Nächste Fälligkeit
5418
5418
  */
5419
- lastProviderCancellationDate: ScriptingDate;
5419
+ nextDueDate: ScriptingDate;
5420
5420
 
5421
5421
  /**
5422
5422
  * Letztmöglicher kündigungstermin des Kunden
@@ -5617,14 +5617,14 @@ export interface DocumentLine {
5617
5617
  number: string;
5618
5618
 
5619
5619
  /**
5620
- * Gesamtbruttogewicht
5620
+ * Referenz zur Kundenauftragszeile
5621
5621
  */
5622
- totalGrossWeight: number;
5622
+ customerOrderLineRef: DocumentLineRef;
5623
5623
 
5624
5624
  /**
5625
- * Referenz zur Kundenauftragszeile
5625
+ * Gesamtbruttogewicht
5626
5626
  */
5627
- customerOrderLineRef: DocumentLineRef;
5627
+ totalGrossWeight: number;
5628
5628
 
5629
5629
  /**
5630
5630
  * Referenz zum auszugleichenden Offenen Posten (nur bei OPEN_ITEM_SETTLEMENT)
@@ -5682,14 +5682,14 @@ export interface DocumentLine {
5682
5682
  serialType: ArticleSerialType;
5683
5683
 
5684
5684
  /**
5685
- * Preiseinheit
5685
+ * Steuerschema
5686
5686
  */
5687
- priceUnit: number;
5687
+ taxSchemaRef: ApiObjectReference;
5688
5688
 
5689
5689
  /**
5690
- * Steuerschema
5690
+ * Preiseinheit
5691
5691
  */
5692
- taxSchemaRef: ApiObjectReference;
5692
+ priceUnit: number;
5693
5693
 
5694
5694
  /**
5695
5695
  * Preisanpassungen - Position Basiswährung
@@ -5852,14 +5852,14 @@ export interface DocumentLine {
5852
5852
  country: CountryReference;
5853
5853
 
5854
5854
  /**
5855
- * Leistungsdatum
5855
+ * Zolltarifnummer
5856
5856
  */
5857
- performanceDate: ScriptingDate;
5857
+ customsTariffNumber: string;
5858
5858
 
5859
5859
  /**
5860
- * Zolltarifnummer
5860
+ * Leistungsdatum
5861
5861
  */
5862
- customsTariffNumber: string;
5862
+ performanceDate: ScriptingDate;
5863
5863
 
5864
5864
  /**
5865
5865
  * wurde aufgelöst in Gebindeartikel
@@ -5962,14 +5962,14 @@ export interface DocumentLine {
5962
5962
  position: number;
5963
5963
 
5964
5964
  /**
5965
- * Soll die DocumentLine über die Komponenten neu berechnet werden?
5965
+ * Buchungen
5966
5966
  */
5967
- recalcLinePriceViaComponents: boolean;
5967
+ bookings: Array<DocumentLineBooking>;
5968
5968
 
5969
5969
  /**
5970
- * Buchungen
5970
+ * Soll die DocumentLine über die Komponenten neu berechnet werden?
5971
5971
  */
5972
- bookings: Array<DocumentLineBooking>;
5972
+ recalcLinePriceViaComponents: boolean;
5973
5973
 
5974
5974
  /**
5975
5975
  * unit gross Volume in cubic meters
@@ -6062,14 +6062,14 @@ export interface DocumentLine {
6062
6062
  custom: EavDocumentline;
6063
6063
 
6064
6064
  /**
6065
- * Artikel
6065
+ * Bemerkung zur OP-Position - wird beim Abschluss in den Kommentar des Offenen Postens übernommen
6066
6066
  */
6067
- articleId: number;
6067
+ settledOpenItemComment: string;
6068
6068
 
6069
6069
  /**
6070
- * Bemerkung zur OP-Position - wird beim Abschluss in den Kommentar des Offenen Postens übernommen
6070
+ * Artikel
6071
6071
  */
6072
- settledOpenItemComment: string;
6072
+ articleId: number;
6073
6073
 
6074
6074
  /**
6075
6075
  * Interne Preisänderungsinformationen
@@ -6261,14 +6261,14 @@ export interface DocumentLineComponent {
6261
6261
  fabricationDetail: DocumentLineComponentFabricationDetail;
6262
6262
 
6263
6263
  /**
6264
- * Referenz auf den Artikel der Komponente
6264
+ * Gelieferte Menge
6265
6265
  */
6266
- articleId: number;
6266
+ quantityCommitted: number;
6267
6267
 
6268
6268
  /**
6269
- * Gelieferte Menge
6269
+ * Referenz auf den Artikel der Komponente
6270
6270
  */
6271
- quantityCommitted: number;
6271
+ articleId: number;
6272
6272
 
6273
6273
  /**
6274
6274
  * Beschreibung des Artikels
@@ -6478,14 +6478,14 @@ export interface DocumentLineFabricationDetail {
6478
6478
  quantityDefective: number;
6479
6479
 
6480
6480
  /**
6481
- * Produzierte Seriennummern
6481
+ * Freifeld
6482
6482
  */
6483
- serialNumbers: Array<DocumentLineFabricationDetailSerialNumber>;
6483
+ custom: EavFabricationline;
6484
6484
 
6485
6485
  /**
6486
- * Freifeld
6486
+ * Produzierte Seriennummern
6487
6487
  */
6488
- custom: EavFabricationline;
6488
+ serialNumbers: Array<DocumentLineFabricationDetailSerialNumber>;
6489
6489
 
6490
6490
  /**
6491
6491
  * Menge produziert
@@ -6584,14 +6584,14 @@ export interface DocumentLinePosDetail {
6584
6584
  deletable: boolean;
6585
6585
 
6586
6586
  /**
6587
- * Status der externen Zahlung
6587
+ * Typ der Einlage/Ausgabe
6588
6588
  */
6589
- externalPaymentStatus: PosPaymentStatus;
6589
+ depositExpenseTypeId: number;
6590
6590
 
6591
6591
  /**
6592
- * Typ der Einlage/Ausgabe
6592
+ * Status der externen Zahlung
6593
6593
  */
6594
- depositExpenseTypeId: number;
6594
+ externalPaymentStatus: PosPaymentStatus;
6595
6595
 
6596
6596
  /**
6597
6597
  * Abschöpfung auf Betrag (Modus BALANCE) — Restbetrag, der in der Kasse verbleibt
@@ -6629,14 +6629,14 @@ export interface DocumentLinePosDetail {
6629
6629
  balanceBeforeWithdrawal: number;
6630
6630
 
6631
6631
  /**
6632
- * Typ der Position
6632
+ * Externe Payment-ID für Verbindung zum Payment-Backend
6633
6633
  */
6634
- posLineType: PosLineType;
6634
+ externalPaymentId: string;
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
6642
  * Unique identifier of the Object
@@ -6960,14 +6960,14 @@ export interface DocumentPosPayment {
6960
6960
  balanceBeforeWithdrawal: number;
6961
6961
 
6962
6962
  /**
6963
- * Typ der Position
6963
+ * Externe Payment-ID für Verbindung zum Payment-Backend
6964
6964
  */
6965
- posLineType: PosLineType;
6965
+ externalPaymentId: string;
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
6973
  * Unique identifier of the Object
@@ -7241,14 +7241,14 @@ export interface DocumentText {
7241
7241
  transferableIntoSubsequentDocuments: boolean;
7242
7242
 
7243
7243
  /**
7244
- * Wurde entfernt und soll deshalb nicht mehr angezeigt werden.
7244
+ * position relative to the product line OR Document. For usage within text-line, this position is irrelevant
7245
7245
  */
7246
- deleted: boolean;
7246
+ textPosition: TextPosition;
7247
7247
 
7248
7248
  /**
7249
- * position relative to the product line OR Document. For usage within text-line, this position is irrelevant
7249
+ * Wurde entfernt und soll deshalb nicht mehr angezeigt werden.
7250
7250
  */
7251
- textPosition: TextPosition;
7251
+ deleted: boolean;
7252
7252
 
7253
7253
  /**
7254
7254
  * textBaustein Vorlage
@@ -7546,14 +7546,14 @@ export const enum DropShippingPolicy {
7546
7546
  export interface DummySerialNumberStockTransferApi {
7547
7547
 
7548
7548
  /**
7549
- * Ziel-Lager
7549
+ * Seriennummer
7550
7550
  */
7551
- targetStorageId: number;
7551
+ serialNumberId: number;
7552
7552
 
7553
7553
  /**
7554
- * Seriennummer
7554
+ * Ziel-Lager
7555
7555
  */
7556
- serialNumberId: number;
7556
+ targetStorageId: number;
7557
7557
 
7558
7558
  /**
7559
7559
  * Bemerkung
@@ -7576,14 +7576,14 @@ export interface DummySerialNumberStockTransferApi {
7576
7576
  targetExpiryDate: ScriptingDate;
7577
7577
 
7578
7578
  /**
7579
- * Quell-Lagerplatz
7579
+ * Menge
7580
7580
  */
7581
- sourceStorageBinId: number;
7581
+ quantity: number;
7582
7582
 
7583
7583
  /**
7584
- * Menge
7584
+ * Quell-Lagerplatz
7585
7585
  */
7586
- quantity: number;
7586
+ sourceStorageBinId: number;
7587
7587
 
7588
7588
  /**
7589
7589
  * Quell-Lager
@@ -8348,25 +8348,20 @@ export interface OpenItem {
8348
8348
  */
8349
8349
  version: number;
8350
8350
 
8351
- /**
8352
- * Summe der skontierbaren Rechnungsbeträge in Basiswährung
8353
- */
8354
- baseSumDiscountableAmount: number;
8355
-
8356
8351
  /**
8357
8352
  * List of tags
8358
8353
  */
8359
8354
  tags: Array<TagDto>;
8360
8355
 
8361
8356
  /**
8362
- * Fälligkeitsdatum
8357
+ * Summe der skontierbaren Rechnungsbeträge in Basiswährung
8363
8358
  */
8364
- paymentDueDate: ScriptingDate;
8359
+ baseSumDiscountableAmount: number;
8365
8360
 
8366
8361
  /**
8367
- * Länderkennzeichen Leistungsland (ISO Alpha-3, von außen setzbar, wenn kein Beleg vorhanden ist)
8362
+ * Fälligkeitsdatum
8368
8363
  */
8369
- performanceCountryCode: string;
8364
+ paymentDueDate: ScriptingDate;
8370
8365
 
8371
8366
  /**
8372
8367
  * Länderkennzeichen Ursprungsland (ISO Alpha-3, von außen setzbar, wenn kein Beleg vorhanden ist)
@@ -8374,15 +8369,20 @@ export interface OpenItem {
8374
8369
  sourceCountryCode: string;
8375
8370
 
8376
8371
  /**
8377
- * agreed Deposit payment date
8372
+ * Länderkennzeichen Leistungsland (ISO Alpha-3, von außen setzbar, wenn kein Beleg vorhanden ist)
8378
8373
  */
8379
- depositPaymentDate: ScriptingDate;
8374
+ performanceCountryCode: string;
8380
8375
 
8381
8376
  /**
8382
8377
  * Valutadatum schreibgeschützt
8383
8378
  */
8384
8379
  valueDateReadOnly: boolean;
8385
8380
 
8381
+ /**
8382
+ * agreed Deposit payment date
8383
+ */
8384
+ depositPaymentDate: ScriptingDate;
8385
+
8386
8386
  /**
8387
8387
  * Does this open item belong to accounts payable or accounts receivable
8388
8388
  */
@@ -8499,14 +8499,14 @@ export interface OpenItem {
8499
8499
  originalPaymentDueDate: ScriptingDate;
8500
8500
 
8501
8501
  /**
8502
- * whether this open item is balanced, partially paid or open
8502
+ * Valutadatum
8503
8503
  */
8504
- balanceState: OpenItemBalanceState;
8504
+ valueDate: ScriptingDate;
8505
8505
 
8506
8506
  /**
8507
- * Valutadatum
8507
+ * whether this open item is balanced, partially paid or open
8508
8508
  */
8509
- valueDate: ScriptingDate;
8509
+ balanceState: OpenItemBalanceState;
8510
8510
 
8511
8511
  /**
8512
8512
  * Skontobetrag 1
@@ -8539,14 +8539,14 @@ export interface OpenItem {
8539
8539
  taxRateRef: ApiObjectReference;
8540
8540
 
8541
8541
  /**
8542
- * Anzahlungsrechnung
8542
+ * Basiswährung des offenen Postens (ISO-A3)
8543
8543
  */
8544
- depositInvoice: ApiObjectReference;
8544
+ baseCurrencyCode: string;
8545
8545
 
8546
8546
  /**
8547
- * Basiswährung des offenen Postens (ISO-A3)
8547
+ * Anzahlungsrechnung
8548
8548
  */
8549
- baseCurrencyCode: string;
8549
+ depositInvoice: ApiObjectReference;
8550
8550
 
8551
8551
  /**
8552
8552
  * Steuerstatus (von außen setzbar, wenn kein Beleg vorhanden ist)
@@ -8617,14 +8617,14 @@ export const enum OpenItemDunningState {
8617
8617
  export interface OpenItemPaymentPlan {
8618
8618
 
8619
8619
  /**
8620
- * Fälligkeitsregel
8620
+ * Betrag
8621
8621
  */
8622
- dueDateCalculation: string;
8622
+ amount: number;
8623
8623
 
8624
8624
  /**
8625
- * Betrag
8625
+ * Fälligkeitsregel
8626
8626
  */
8627
- amount: number;
8627
+ dueDateCalculation: string;
8628
8628
 
8629
8629
  /**
8630
8630
  * Enddatum
@@ -8762,14 +8762,14 @@ export interface OpenItemRecord {
8762
8762
  exchangeRate: number;
8763
8763
 
8764
8764
  /**
8765
- * Buchungsart der OP-Bewegung (abgeleitet aus Herkunft und Buchungsart)
8765
+ * record discountable amount
8766
8766
  */
8767
- bookingType: OpenItemRecord$BookingType;
8767
+ discountableAmount: number;
8768
8768
 
8769
8769
  /**
8770
- * record discountable amount
8770
+ * Buchungsart der OP-Bewegung (abgeleitet aus Herkunft und Buchungsart)
8771
8771
  */
8772
- discountableAmount: number;
8772
+ bookingType: OpenItemRecord$BookingType;
8773
8773
 
8774
8774
  /**
8775
8775
  * record date
@@ -9113,14 +9113,14 @@ export interface PaymentTerm {
9113
9113
  paymentDiscount2: number;
9114
9114
 
9115
9115
  /**
9116
- * printDescription
9116
+ * Percent for Discount 1
9117
9117
  */
9118
- printDescription: string;
9118
+ paymentDiscount1: number;
9119
9119
 
9120
9120
  /**
9121
- * Percent for Discount 1
9121
+ * printDescription
9122
9122
  */
9123
- paymentDiscount1: number;
9123
+ printDescription: string;
9124
9124
 
9125
9125
  /**
9126
9126
  * for deposit: remaining term
@@ -9132,11 +9132,6 @@ export interface PaymentTerm {
9132
9132
  */
9133
9133
  paymentDays1: number;
9134
9134
 
9135
- /**
9136
- * Days for Discount 2
9137
- */
9138
- paymentDays2: number;
9139
-
9140
9135
  /**
9141
9136
  * Aktiv?
9142
9137
  */
@@ -9147,6 +9142,11 @@ export interface PaymentTerm {
9147
9142
  */
9148
9143
  description: string;
9149
9144
 
9145
+ /**
9146
+ * Days for Discount 2
9147
+ */
9148
+ paymentDays2: number;
9149
+
9150
9150
  /**
9151
9151
  * label for this payment term
9152
9152
  */
@@ -9251,14 +9251,14 @@ export interface PickTrolley {
9251
9251
  pickTrolleyBoxes: Array<PickTrolleyBox>;
9252
9252
 
9253
9253
  /**
9254
- * Bearbeiter der Pickliste
9254
+ * Lagerplatz, dem dieser Pickwagen zugeordnet ist
9255
9255
  */
9256
- processedByUserRef: ApiObjectReference;
9256
+ storageBinRef: StorageBinRef;
9257
9257
 
9258
9258
  /**
9259
- * Lagerplatz, dem dieser Pickwagen zugeordnet ist
9259
+ * Bearbeiter der Pickliste
9260
9260
  */
9261
- storageBinRef: StorageBinRef;
9261
+ processedByUserRef: ApiObjectReference;
9262
9262
 
9263
9263
  /**
9264
9264
  * Beschreibung des Wagens
@@ -9864,14 +9864,14 @@ export interface PicklistTemplate$OrderSelectionOptions {
9864
9864
  documentDateRange: PicklistTemplate$DateRange;
9865
9865
 
9866
9866
  /**
9867
- * Liste von gültigen Lagerbereichen
9867
+ * Id des salesChannels der bei der Selektion berücksichtigt wird
9868
9868
  */
9869
- storageAreaRefs: Array<ApiObjectReference>;
9869
+ salesChannelId: number;
9870
9870
 
9871
9871
  /**
9872
- * Id des salesChannels der bei der Selektion berücksichtigt wird
9872
+ * Liste von gültigen Lagerbereichen
9873
9873
  */
9874
- salesChannelId: number;
9874
+ storageAreaRefs: Array<ApiObjectReference>;
9875
9875
 
9876
9876
  /**
9877
9877
  * Nur vollständig lieferbare Aufträge
@@ -10010,14 +10010,14 @@ export interface PicklistTemplate$PicklistProcessingOptions {
10010
10010
  alwaysShowDeliveryMethod: boolean;
10011
10011
 
10012
10012
  /**
10013
- * Überschreitung vom maximalen Paketgewicht blockieren?
10013
+ * Soll die Lieferbelege automatisch nach Abschluss der Kommissionierung gedruckt werden?
10014
10014
  */
10015
- blockIfMaximumPackageWeightIsExceeded: boolean;
10015
+ autoPrintDeliveryDocument: boolean;
10016
10016
 
10017
10017
  /**
10018
- * Soll die Lieferbelege automatisch nach Abschluss der Kommissionierung gedruckt werden?
10018
+ * Überschreitung vom maximalen Paketgewicht blockieren?
10019
10019
  */
10020
- autoPrintDeliveryDocument: boolean;
10020
+ blockIfMaximumPackageWeightIsExceeded: boolean;
10021
10021
 
10022
10022
  /**
10023
10023
  * Versand-Dialog beim Abschluss zeigen
@@ -10353,14 +10353,14 @@ export interface ProductArticleRef {
10353
10353
  export interface ProductDiscount {
10354
10354
 
10355
10355
  /**
10356
- * Hauptartikel, für welchen dieser Rabatt gültig ist
10356
+ * Kundengruppe
10357
10357
  */
10358
- accessoryMainArticleRef: ApiObjectReference;
10358
+ customerGroupRef: ApiObjectReference;
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
10366
  * Lieferantengruppe
@@ -10413,14 +10413,14 @@ export interface ProductDiscount {
10413
10413
  currencyRef: CurrencyReference;
10414
10414
 
10415
10415
  /**
10416
- * Preisgruppe
10416
+ * Wert des Rabatts
10417
10417
  */
10418
- priceGroupRef: ApiObjectReference;
10418
+ modifierValue: number;
10419
10419
 
10420
10420
  /**
10421
- * Wert des Rabatts
10421
+ * Preisgruppe
10422
10422
  */
10423
- modifierValue: number;
10423
+ priceGroupRef: ApiObjectReference;
10424
10424
 
10425
10425
  /**
10426
10426
  * Bestimmt, ob es sich um einen Verkaufs- oder Einkaufsrabatt handelt
@@ -10428,14 +10428,14 @@ export interface ProductDiscount {
10428
10428
  qualifier: ProductPriceQualifier;
10429
10429
 
10430
10430
  /**
10431
- * Aktionpreis
10431
+ * Gültig bis
10432
10432
  */
10433
- specialOfferPrice: boolean;
10433
+ validUntil: ScriptingDate;
10434
10434
 
10435
10435
  /**
10436
- * Gültig bis
10436
+ * Aktionpreis
10437
10437
  */
10438
- validUntil: ScriptingDate;
10438
+ specialOfferPrice: boolean;
10439
10439
 
10440
10440
  /**
10441
10441
  * Bestimmt die Art des Rabattwerts (fest oder prozentual)
@@ -10481,14 +10481,14 @@ export interface ProductGroup {
10481
10481
  targetTradingMargin: number;
10482
10482
 
10483
10483
  /**
10484
- * main product group
10484
+ * Freifeld
10485
10485
  */
10486
- mainGroupRef: ApiObjectReference;
10486
+ custom: EavProductgroup;
10487
10487
 
10488
10488
  /**
10489
- * Freifeld
10489
+ * main product group
10490
10490
  */
10491
- custom: EavProductgroup;
10491
+ mainGroupRef: ApiObjectReference;
10492
10492
 
10493
10493
  /**
10494
10494
  * warengruppe aktiv ja/nein
@@ -10567,14 +10567,14 @@ export interface ProductMainGroup {
10567
10567
  export interface ProductPrice {
10568
10568
 
10569
10569
  /**
10570
- * Hauptartikel, für welches dieser Preis gültig ist
10570
+ * Kundengruppe
10571
10571
  */
10572
- accessoryMainArticleRef: ApiObjectReference;
10572
+ customerGroupRef: ApiObjectReference;
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
10580
  * Einkaufspreis zur Kalkulation
@@ -10666,11 +10666,6 @@ export interface ProductPrice {
10666
10666
  */
10667
10667
  qualifier: ProductPriceQualifier;
10668
10668
 
10669
- /**
10670
- * Aktionpreis
10671
- */
10672
- specialOfferPrice: boolean;
10673
-
10674
10669
  /**
10675
10670
  * Preisbasis
10676
10671
  */
@@ -10681,6 +10676,11 @@ export interface ProductPrice {
10681
10676
  */
10682
10677
  validUntil: ScriptingDate;
10683
10678
 
10679
+ /**
10680
+ * Aktionpreis
10681
+ */
10682
+ specialOfferPrice: boolean;
10683
+
10684
10684
  /**
10685
10685
  * Bestimmt die Art des Aufschlages (fest oder prozentual) bei EK-Kalkulation
10686
10686
  */
@@ -10857,14 +10857,14 @@ export interface RequestDocument {
10857
10857
  deliveryTermId: number;
10858
10858
 
10859
10859
  /**
10860
- * Für interne Zwecke: Währung für das Document
10860
+ * Dokumentzeilen
10861
10861
  */
10862
- currencyId: number;
10862
+ lines: Array<RequestDocumentLine>;
10863
10863
 
10864
10864
  /**
10865
- * Dokumentzeilen
10865
+ * Für interne Zwecke: Währung für das Document
10866
10866
  */
10867
- lines: Array<RequestDocumentLine>;
10867
+ currencyId: number;
10868
10868
 
10869
10869
  /**
10870
10870
  * Nur für interne Zwecke: neue Positionen für einzeln retournierte Baugruppen-Komponenten
@@ -10937,14 +10937,14 @@ export interface RequestDocument {
10937
10937
  texts: Array<DocumentText>;
10938
10938
 
10939
10939
  /**
10940
- * Nur für interne Zwecke: neue Positionen, die bei Übernahme aus einer Pickliste angelegt werden sollen
10940
+ * Wird dieser Beleg durch die Picklistenverarbeitung verarbeitet?
10941
10941
  */
10942
- picklistLinesToAddOnTransfer: Array<PicklistLine>;
10942
+ processedByPicklistProcessing: boolean;
10943
10943
 
10944
10944
  /**
10945
- * Wird dieser Beleg durch die Picklistenverarbeitung verarbeitet?
10945
+ * Nur für interne Zwecke: neue Positionen, die bei Übernahme aus einer Pickliste angelegt werden sollen
10946
10946
  */
10947
- processedByPicklistProcessing: boolean;
10947
+ picklistLinesToAddOnTransfer: Array<PicklistLine>;
10948
10948
 
10949
10949
  /**
10950
10950
  * Die Rabatte des Beleges
@@ -11025,14 +11025,14 @@ export interface RequestDocumentLine {
11025
11025
  dropShippingPolicy: DropShippingPolicy;
11026
11026
 
11027
11027
  /**
11028
- * Positionsnummer der Artikel
11028
+ * (optional) Lager-ID
11029
11029
  */
11030
- positionOfArticleLine: number;
11030
+ storageId: number;
11031
11031
 
11032
11032
  /**
11033
- * (optional) Lager-ID
11033
+ * Positionsnummer der Artikel
11034
11034
  */
11035
- storageId: number;
11035
+ positionOfArticleLine: number;
11036
11036
 
11037
11037
  /**
11038
11038
  * Vertragsdetails zur Belegposition
@@ -11070,14 +11070,14 @@ export interface RequestDocumentLine {
11070
11070
  fabricationDetail: RequestDocumentLineFabricationDetail;
11071
11071
 
11072
11072
  /**
11073
- * (optional) ID des Artikels dieser Position
11073
+ * Bemerkung zur OP-Position - wird beim Abschluss in den Kommentar des Offenen Postens übernommen
11074
11074
  */
11075
- articleId: number;
11075
+ settledOpenItemComment: string;
11076
11076
 
11077
11077
  /**
11078
- * Bemerkung zur OP-Position - wird beim Abschluss in den Kommentar des Offenen Postens übernommen
11078
+ * (optional) ID des Artikels dieser Position
11079
11079
  */
11080
- settledOpenItemComment: string;
11080
+ articleId: number;
11081
11081
 
11082
11082
  /**
11083
11083
  * ID der Belegposition im aktuellen Beleg
@@ -11119,11 +11119,6 @@ export interface RequestDocumentLine {
11119
11119
  */
11120
11120
  priceModifiers: Array<RequestDocumentPriceModifier>;
11121
11121
 
11122
- /**
11123
- * Für interne Zwecke: Externe Artikelnummer
11124
- */
11125
- externalArticleNumber: string;
11126
-
11127
11122
  /**
11128
11123
  * ID der Quell-Belegposition
11129
11124
  */
@@ -11134,6 +11129,11 @@ export interface RequestDocumentLine {
11134
11129
  */
11135
11130
  bookings: Array<RequestDocumentLineBooking>;
11136
11131
 
11132
+ /**
11133
+ * Für interne Zwecke: Externe Artikelnummer
11134
+ */
11135
+ externalArticleNumber: string;
11136
+
11137
11137
  /**
11138
11138
  * Zu der Zeile Etikettendruck anstoßen
11139
11139
  */
@@ -11307,14 +11307,14 @@ export interface SalesAgent {
11307
11307
  note: string;
11308
11308
 
11309
11309
  /**
11310
- * reference to the delivery method
11310
+ * is sales agent taxable
11311
11311
  */
11312
- deliveryMethodRef: ApiObjectReference;
11312
+ taxable: boolean;
11313
11313
 
11314
11314
  /**
11315
- * is sales agent taxable
11315
+ * reference to the delivery method
11316
11316
  */
11317
- taxable: boolean;
11317
+ deliveryMethodRef: ApiObjectReference;
11318
11318
 
11319
11319
  /**
11320
11320
  * Freifelder
@@ -11357,14 +11357,14 @@ export interface SalesAgent {
11357
11357
  taxRateRef: ApiObjectReference;
11358
11358
 
11359
11359
  /**
11360
- * country code performance country IsoAlpha3
11360
+ * reference to the assigned user
11361
11361
  */
11362
- performanceCountryCode: string;
11362
+ userRef: ApiObjectReference;
11363
11363
 
11364
11364
  /**
11365
- * reference to the assigned user
11365
+ * country code performance country IsoAlpha3
11366
11366
  */
11367
- userRef: ApiObjectReference;
11367
+ performanceCountryCode: string;
11368
11368
 
11369
11369
  /**
11370
11370
  * billing type
@@ -11563,14 +11563,14 @@ export interface ScenarioDimensionValue {
11563
11563
  export interface ScenarioFactDef {
11564
11564
 
11565
11565
  /**
11566
- * Attribut Name
11566
+ * Attribut Typ
11567
11567
  */
11568
- factAttribute: string;
11568
+ attributeType: ScenarioFactDef$FactType;
11569
11569
 
11570
11570
  /**
11571
- * Attribut Typ
11571
+ * Attribut Name
11572
11572
  */
11573
- attributeType: ScenarioFactDef$FactType;
11573
+ factAttribute: string;
11574
11574
 
11575
11575
  /**
11576
11576
  * Unique identifier of the Object
@@ -12072,14 +12072,14 @@ export interface ShelfShare {
12072
12072
  publishState: ShelfSharePublishState;
12073
12073
 
12074
12074
  /**
12075
- * Freifelder
12075
+ * wie viele Minuten bleibt dieser resource-pfad zugreifbar (null = unlimited)
12076
12076
  */
12077
- custom: EavShelfshare;
12077
+ publicUrlDurationInMinutes: number;
12078
12078
 
12079
12079
  /**
12080
- * wie viele Minuten bleibt dieser resource-pfad zugreifbar (null = unlimited)
12080
+ * Freifelder
12081
12081
  */
12082
- publicUrlDurationInMinutes: number;
12082
+ custom: EavShelfshare;
12083
12083
 
12084
12084
  /**
12085
12085
  * der url-pfadanteil, der öffentlichen zugriff auf diese resource gibt
@@ -12273,14 +12273,14 @@ export interface StockMovementManualApi {
12273
12273
  expiryDate: ScriptingDate;
12274
12274
 
12275
12275
  /**
12276
- * Notiz zur Seriennummer
12276
+ * Zugang oder Abgang
12277
12277
  */
12278
- serialNumberNote: string;
12278
+ factor: StockJournalFactor;
12279
12279
 
12280
12280
  /**
12281
- * Zugang oder Abgang
12281
+ * Notiz zur Seriennummer
12282
12282
  */
12283
- factor: StockJournalFactor;
12283
+ serialNumberNote: string;
12284
12284
 
12285
12285
  /**
12286
12286
  * Lager
@@ -12291,14 +12291,14 @@ export interface StockMovementManualApi {
12291
12291
  export interface StockTransferApi {
12292
12292
 
12293
12293
  /**
12294
- * Ziel-Lager
12294
+ * Seriennummer
12295
12295
  */
12296
- targetStorageId: number;
12296
+ serialNumberId: number;
12297
12297
 
12298
12298
  /**
12299
- * Seriennummer
12299
+ * Ziel-Lager
12300
12300
  */
12301
- serialNumberId: number;
12301
+ targetStorageId: number;
12302
12302
 
12303
12303
  /**
12304
12304
  * Bemerkung
@@ -12311,14 +12311,14 @@ export interface StockTransferApi {
12311
12311
  bookDate: ScriptingDate;
12312
12312
 
12313
12313
  /**
12314
- * Quell-Lagerplatz
12314
+ * Menge
12315
12315
  */
12316
- sourceStorageBinId: number;
12316
+ quantity: number;
12317
12317
 
12318
12318
  /**
12319
- * Menge
12319
+ * Quell-Lagerplatz
12320
12320
  */
12321
- quantity: number;
12321
+ sourceStorageBinId: number;
12322
12322
 
12323
12323
  /**
12324
12324
  * Quell-Lager
@@ -12518,6 +12518,11 @@ export interface Supplier {
12518
12518
  */
12519
12519
  info: MetaInfo;
12520
12520
 
12521
+ /**
12522
+ * tax able or tax free
12523
+ */
12524
+ taxable: boolean;
12525
+
12521
12526
  /**
12522
12527
  * reference to the delivery method
12523
12528
  */
@@ -12528,11 +12533,6 @@ export interface Supplier {
12528
12533
  */
12529
12534
  supplierGroupRef: ApiObjectReference;
12530
12535
 
12531
- /**
12532
- * tax able or tax free
12533
- */
12534
- taxable: boolean;
12535
-
12536
12536
  /**
12537
12537
  * Mahnen?
12538
12538
  */
@@ -12668,14 +12668,14 @@ export const enum TagType {
12668
12668
  export interface TaxIdForeignCountry {
12669
12669
 
12670
12670
  /**
12671
- * ISO 2 Code of the country this tax ID is used for
12671
+ * Tax ID of the company in the associated country
12672
12672
  */
12673
- countryCode: string;
12673
+ taxId: string;
12674
12674
 
12675
12675
  /**
12676
- * Tax ID of the company in the associated country
12676
+ * ISO 2 Code of the country this tax ID is used for
12677
12677
  */
12678
- taxId: string;
12678
+ countryCode: string;
12679
12679
 
12680
12680
  /**
12681
12681
  * Unique identifier of the Object
@@ -12855,26 +12855,26 @@ export interface TextTemplate {
12855
12855
  */
12856
12856
  targetDocumentTypes: Array<ApiObjectReference>;
12857
12857
 
12858
- /**
12859
- * Texte in den angebotenen Sprachen
12860
- */
12861
- languageSpecificContents: Array<LocalizedTextTemplateContent>;
12862
-
12863
12858
  /**
12864
12859
  * Vorbelegtypen. Geben zusammen mit Zieldokumenttypen die Transitionen an für die dieses Template gilt
12865
12860
  */
12866
12861
  sourceDocumentTypes: Array<ApiObjectReference>;
12867
12862
 
12868
12863
  /**
12869
- * Wird eine eigene DocumentLine für den Baustein angelegt?
12864
+ * Texte in den angebotenen Sprachen
12870
12865
  */
12871
- separateLine: boolean;
12866
+ languageSpecificContents: Array<LocalizedTextTemplateContent>;
12872
12867
 
12873
12868
  /**
12874
12869
  * article für den diese Templates gelten
12875
12870
  */
12876
12871
  articleId: number;
12877
12872
 
12873
+ /**
12874
+ * Wird eine eigene DocumentLine für den Baustein angelegt?
12875
+ */
12876
+ separateLine: boolean;
12877
+
12878
12878
  /**
12879
12879
  * Wann wird ein UI-Hint angezeigt
12880
12880
  */
@@ -13060,14 +13060,14 @@ export interface User {
13060
13060
  version: number;
13061
13061
 
13062
13062
  /**
13063
- * is the email verified
13063
+ * first-name
13064
13064
  */
13065
- emailVerified: boolean;
13065
+ firstName: string;
13066
13066
 
13067
13067
  /**
13068
- * first-name
13068
+ * is the email verified
13069
13069
  */
13070
- firstName: string;
13070
+ emailVerified: boolean;
13071
13071
 
13072
13072
  /**
13073
13073
  * email-address
@@ -13146,14 +13146,14 @@ export interface VariantAttributeListing {
13146
13146
  salesChannelRef: ApiObjectReference;
13147
13147
 
13148
13148
  /**
13149
- * Variantenattribut
13149
+ * Freifelder
13150
13150
  */
13151
- variantAttributeRef: ApiObjectReference;
13151
+ custom: EavVariantattributelisting;
13152
13152
 
13153
13153
  /**
13154
- * Freifelder
13154
+ * Variantenattribut
13155
13155
  */
13156
- custom: EavVariantattributelisting;
13156
+ variantAttributeRef: ApiObjectReference;
13157
13157
 
13158
13158
  /**
13159
13159
  * Unique identifier of the Object