@vario-software/types 2026.29.3 → 2026.29.4

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.
@@ -83,14 +83,14 @@ export interface Account {
83
83
  businessRelationType: BusinessRelationType;
84
84
 
85
85
  /**
86
- * Zeitzone (bzw. Zeitzonen-Offset) des Accounts
86
+ * first contact type for this account
87
87
  */
88
- accountZoneId: AccountZoneId;
88
+ initialContactTypeRef: ApiCreatableReference;
89
89
 
90
90
  /**
91
- * first contact type for this account
91
+ * Zeitzone (bzw. Zeitzonen-Offset) des Accounts
92
92
  */
93
- initialContactTypeRef: ApiCreatableReference;
93
+ accountZoneId: AccountZoneId;
94
94
 
95
95
  /**
96
96
  * Supplier of this account
@@ -142,26 +142,26 @@ export interface Account {
142
142
  */
143
143
  payablesSum: number;
144
144
 
145
- /**
146
- * Kostenstelle
147
- */
148
- costCenter: string;
149
-
150
145
  /**
151
146
  * Summe Forderungen
152
147
  */
153
148
  receivablesSum: number;
154
149
 
155
150
  /**
156
- * Custom account data
151
+ * Kostenstelle
157
152
  */
158
- custom: EavAccount;
153
+ costCenter: string;
159
154
 
160
155
  /**
161
156
  * companyLegal for this account
162
157
  */
163
158
  companyLegalRef: ApiCreatableReference;
164
159
 
160
+ /**
161
+ * Custom account data
162
+ */
163
+ custom: EavAccount;
164
+
165
165
  /**
166
166
  * tax number/ Steuernummer
167
167
  */
@@ -178,14 +178,14 @@ export interface Account {
178
178
  responsibleUserRef: ApiObjectReference;
179
179
 
180
180
  /**
181
- * calculation mode of this document
181
+ * Erstkontakt am
182
182
  */
183
- calculationMode: CalculationMode;
183
+ initialContactAt: ScriptingDate;
184
184
 
185
185
  /**
186
- * Erstkontakt am
186
+ * calculation mode of this document
187
187
  */
188
- initialContactAt: ScriptingDate;
188
+ calculationMode: CalculationMode;
189
189
 
190
190
  /**
191
191
  * Sprache des Accounts
@@ -213,14 +213,14 @@ export interface Account {
213
213
  persons: Array<AccountPerson>;
214
214
 
215
215
  /**
216
- * Standard-Ansprechpartner
216
+ * Referenz auf den Ziel-Belegtyp nach der Kommissionierung
217
217
  */
218
- defaultPerson: AccountPerson;
218
+ afterPickingTargetDocumentTypeRef: ApiObjectReference;
219
219
 
220
220
  /**
221
- * Referenz auf den Ziel-Belegtyp nach der Kommissionierung
221
+ * Standard-Ansprechpartner
222
222
  */
223
- afterPickingTargetDocumentTypeRef: ApiObjectReference;
223
+ defaultPerson: AccountPerson;
224
224
 
225
225
  /**
226
226
  * Account-Beziehungen
@@ -335,26 +335,26 @@ export interface AccountAddress {
335
335
  */
336
336
  types: Array<ApiCreatableReference>;
337
337
 
338
- /**
339
- * Leitweg-ID
340
- */
341
- buyerReference: string;
342
-
343
338
  /**
344
339
  * GLN/ILN as location identifier for this address
345
340
  */
346
341
  globalLocationNumber: string;
347
342
 
348
343
  /**
349
- * Custom data
344
+ * Leitweg-ID
350
345
  */
351
- custom: EavAccountaddress;
346
+ buyerReference: string;
352
347
 
353
348
  /**
354
349
  * abweichende Zahlungsart
355
350
  */
356
351
  deviatingPaymentMethodRef: ApiObjectReference;
357
352
 
353
+ /**
354
+ * Custom data
355
+ */
356
+ custom: EavAccountaddress;
357
+
358
358
  /**
359
359
  * Postcode
360
360
  */
@@ -451,14 +451,14 @@ export interface AccountAddress {
451
451
  name1: string;
452
452
 
453
453
  /**
454
- * Contacts
454
+ * abweichende Zahlungsbedingungen
455
455
  */
456
- contacts: Array<Contact>;
456
+ deviatingPaymentTermRef: ApiObjectReference;
457
457
 
458
458
  /**
459
- * abweichende Zahlungsbedingungen
459
+ * Contacts
460
460
  */
461
- deviatingPaymentTermRef: ApiObjectReference;
461
+ contacts: Array<Contact>;
462
462
 
463
463
  /**
464
464
  * is this the default address of the account
@@ -494,14 +494,14 @@ export interface AccountBankdetail {
494
494
  version: number;
495
495
 
496
496
  /**
497
- * city of the bank
497
+ * Hauptbankverbindung für
498
498
  */
499
- bankCity: string;
499
+ mainBankAccountType: TaxPerformanceLocationType;
500
500
 
501
501
  /**
502
- * Hauptbankverbindung für
502
+ * city of the bank
503
503
  */
504
- mainBankAccountType: TaxPerformanceLocationType;
504
+ bankCity: string;
505
505
 
506
506
  /**
507
507
  * origin type
@@ -595,14 +595,14 @@ export interface AccountListing {
595
595
  export interface AccountLoanValue {
596
596
 
597
597
  /**
598
- * Account
598
+ * Nicht berücksichtigter Betrag
599
599
  */
600
- accountId: number;
600
+ unconsideredAmount: number;
601
601
 
602
602
  /**
603
- * Nicht berücksichtigter Betrag
603
+ * Account
604
604
  */
605
- unconsideredAmount: number;
605
+ accountId: number;
606
606
 
607
607
  /**
608
608
  * Betrag aus Aufträgen
@@ -610,14 +610,14 @@ export interface AccountLoanValue {
610
610
  nonInvoicedDocumentLoan: number;
611
611
 
612
612
  /**
613
- * Kreditlimit
613
+ * Betrag aus Verbindlichkeiten(negativ)
614
614
  */
615
- maximalLoan: number;
615
+ payablesSum: number;
616
616
 
617
617
  /**
618
- * Betrag aus Verbindlichkeiten(negativ)
618
+ * Kreditlimit
619
619
  */
620
- payablesSum: number;
620
+ maximalLoan: number;
621
621
 
622
622
  /**
623
623
  * Überschrittener Kreditbetrag
@@ -827,14 +827,14 @@ export interface AccountPerson {
827
827
  tags: Array<TagDto>;
828
828
 
829
829
  /**
830
- * First name
830
+ * Default contacts
831
831
  */
832
- firstName: string;
832
+ defaultContacts: Map<ContactTypeType,Contact>;
833
833
 
834
834
  /**
835
- * Default contacts
835
+ * First name
836
836
  */
837
- defaultContacts: Map<ContactTypeType,Contact>;
837
+ firstName: string;
838
838
 
839
839
  /**
840
840
  * zugeordneter Benutzer (für eigenen Account)
@@ -1029,9 +1029,9 @@ export interface Article {
1029
1029
  baseCapacityUnit: UnitTypeReference;
1030
1030
 
1031
1031
  /**
1032
- * Durchschnittl. EKP (Startwert)
1032
+ * is this product sellable without any quantity at the stock
1033
1033
  */
1034
- initialAvgPurchasePrice: number;
1034
+ sellableWithoutStock: boolean;
1035
1035
 
1036
1036
  /**
1037
1037
  * Seriennummern Auszeichnungsart
@@ -1039,9 +1039,9 @@ export interface Article {
1039
1039
  serialNumberLabelingType: ArticleSerialNumberLabelingType;
1040
1040
 
1041
1041
  /**
1042
- * is this product sellable without any quantity at the stock
1042
+ * Durchschnittl. EKP (Startwert)
1043
1043
  */
1044
- sellableWithoutStock: boolean;
1044
+ initialAvgPurchasePrice: number;
1045
1045
 
1046
1046
  /**
1047
1047
  * gross Volume in cubic meters
@@ -1144,14 +1144,14 @@ export interface Article {
1144
1144
  deliveryMethodRef: ApiObjectReference;
1145
1145
 
1146
1146
  /**
1147
- * Soll-Handelsspanne
1147
+ * Produktion
1148
1148
  */
1149
- targetTradingMargin: number;
1149
+ fabrication: boolean;
1150
1150
 
1151
1151
  /**
1152
- * Produktion
1152
+ * Soll-Handelsspanne
1153
1153
  */
1154
- fabrication: boolean;
1154
+ targetTradingMargin: number;
1155
1155
 
1156
1156
  /**
1157
1157
  * active
@@ -1209,14 +1209,14 @@ export interface Article {
1209
1209
  listingStateChangeTime: ScriptingDateTime;
1210
1210
 
1211
1211
  /**
1212
- * Arbeitseinheit in Minuten
1212
+ * Country code
1213
1213
  */
1214
- workUnitInMinutes: number;
1214
+ countryOfOriginRef: CountryReference;
1215
1215
 
1216
1216
  /**
1217
- * Country code
1217
+ * Arbeitseinheit in Minuten
1218
1218
  */
1219
- countryOfOriginRef: CountryReference;
1219
+ workUnitInMinutes: number;
1220
1220
 
1221
1221
  /**
1222
1222
  * description custom data
@@ -1229,14 +1229,14 @@ export interface Article {
1229
1229
  freelyPickable: boolean;
1230
1230
 
1231
1231
  /**
1232
- * Charge muss bei Einbuchung in ein Verkaufslager vergeben werden (für Serientyp LOT und BEST_BEFORE)
1232
+ * Umkehrung der Steuerschuld nach §13b UStG?
1233
1233
  */
1234
- lotOnlyRequiredWhenBookedToSalesStorage: boolean;
1234
+ taxLiabilityReversed: boolean;
1235
1235
 
1236
1236
  /**
1237
- * Umkehrung der Steuerschuld nach §13b UStG?
1237
+ * Charge muss bei Einbuchung in ein Verkaufslager vergeben werden (für Serientyp LOT und BEST_BEFORE)
1238
1238
  */
1239
- taxLiabilityReversed: boolean;
1239
+ lotOnlyRequiredWhenBookedToSalesStorage: boolean;
1240
1240
 
1241
1241
  /**
1242
1242
  * Notiz
@@ -1314,14 +1314,14 @@ export interface Article {
1314
1314
  discountable: boolean;
1315
1315
 
1316
1316
  /**
1317
- * Kontingentartikel
1317
+ * alternative name of this product
1318
1318
  */
1319
- contingentArticleRef: ApiObjectReference;
1319
+ alternativeName: string;
1320
1320
 
1321
1321
  /**
1322
- * alternative name of this product
1322
+ * Kontingentartikel
1323
1323
  */
1324
- alternativeName: string;
1324
+ contingentArticleRef: ApiObjectReference;
1325
1325
 
1326
1326
  /**
1327
1327
  * base capacity
@@ -1359,14 +1359,14 @@ export interface Article {
1359
1359
  custom: EavArticle;
1360
1360
 
1361
1361
  /**
1362
- * Bedarfsermittlung nur über Reservierungen
1362
+ * Art des Haltbarkeitsdatums
1363
1363
  */
1364
- needsAssessmentOnlyOnReservationBasis: boolean;
1364
+ expiryDateType: ArticleSerialExpiryDateType;
1365
1365
 
1366
1366
  /**
1367
- * Art des Haltbarkeitsdatums
1367
+ * Bedarfsermittlung nur über Reservierungen
1368
1368
  */
1369
- expiryDateType: ArticleSerialExpiryDateType;
1369
+ needsAssessmentOnlyOnReservationBasis: boolean;
1370
1370
 
1371
1371
  /**
1372
1372
  * Hersteller
@@ -1602,14 +1602,14 @@ export interface ArticleCustomer {
1602
1602
  defaultGrossPrice: number;
1603
1603
 
1604
1604
  /**
1605
- * Art der Preisermittlung
1605
+ * Abweichende Produktnummer
1606
1606
  */
1607
- priceDetermination: ArticleCustomerPriceDetermination;
1607
+ deviatingArticleNumber: string;
1608
1608
 
1609
1609
  /**
1610
- * Abweichende Produktnummer
1610
+ * Art der Preisermittlung
1611
1611
  */
1612
- deviatingArticleNumber: string;
1612
+ priceDetermination: ArticleCustomerPriceDetermination;
1613
1613
 
1614
1614
  /**
1615
1615
  * Artikelnummer
@@ -1941,6 +1941,11 @@ export interface ArticleStorage {
1941
1941
  */
1942
1942
  replenishmentFrom: number;
1943
1943
 
1944
+ /**
1945
+ * Meldebestand
1946
+ */
1947
+ reorderPoint: number;
1948
+
1944
1949
  /**
1945
1950
  * Bestellte Menge
1946
1951
  */
@@ -1952,20 +1957,15 @@ export interface ArticleStorage {
1952
1957
  quantityInPicking: number;
1953
1958
 
1954
1959
  /**
1955
- * Meldebestand
1960
+ * Nachschub auf
1956
1961
  */
1957
- reorderPoint: number;
1962
+ replenishmentOn: number;
1958
1963
 
1959
1964
  /**
1960
1965
  * Aktueller "virtueller" Bestand (wenn größere Gebinde in dieses aufgelöst werden würden)
1961
1966
  */
1962
1967
  virtualStockAmount: number;
1963
1968
 
1964
- /**
1965
- * Nachschub auf
1966
- */
1967
- replenishmentOn: number;
1968
-
1969
1969
  /**
1970
1970
  * Reservierte Menge
1971
1971
  */
@@ -2035,9 +2035,9 @@ export interface ArticleStorage {
2035
2035
  export interface ArticleSupplier {
2036
2036
 
2037
2037
  /**
2038
- * Lieferanten-Meldebestand
2038
+ * Anzeigename des Accounts
2039
2039
  */
2040
- supplierReportingStock: number;
2040
+ accountDisplayName: string;
2041
2041
 
2042
2042
  /**
2043
2043
  * Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
@@ -2045,19 +2045,19 @@ export interface ArticleSupplier {
2045
2045
  useSupplierArticleDescription: boolean;
2046
2046
 
2047
2047
  /**
2048
- * Anzeigename des Accounts
2048
+ * Lieferanten-Meldebestand
2049
2049
  */
2050
- accountDisplayName: string;
2050
+ supplierReportingStock: number;
2051
2051
 
2052
2052
  /**
2053
- * Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
2053
+ * Lieferzeit in (Werk-)Tagen
2054
2054
  */
2055
- useSupplierArticleIdentifier: boolean;
2055
+ deliveryTime: number;
2056
2056
 
2057
2057
  /**
2058
- * Lieferzeit in (Werk-)Tagen
2058
+ * Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
2059
2059
  */
2060
- deliveryTime: number;
2060
+ useSupplierArticleIdentifier: boolean;
2061
2061
 
2062
2062
  /**
2063
2063
  * Soll die abweichende Produktnummer verwendet werden (z.B. in Belegen)
@@ -2105,14 +2105,14 @@ export interface ArticleSupplier {
2105
2105
  info: MetaInfo;
2106
2106
 
2107
2107
  /**
2108
- * Referenced Article name
2108
+ * Verpackungseinheit
2109
2109
  */
2110
- articleName: string;
2110
+ packagingUnit: number;
2111
2111
 
2112
2112
  /**
2113
- * Verpackungseinheit
2113
+ * Referenced Article name
2114
2114
  */
2115
- packagingUnit: number;
2115
+ articleName: string;
2116
2116
 
2117
2117
  /**
2118
2118
  * Lieferanten-Preise
@@ -2145,14 +2145,14 @@ export interface ArticleSupplier {
2145
2145
  dropShippingAllowed: boolean;
2146
2146
 
2147
2147
  /**
2148
- * Abweichende Produktbezeichnung
2148
+ * Abweichende Produktbeschreibung
2149
2149
  */
2150
- supplierArticleName: string;
2150
+ supplierArticleDescription: string;
2151
2151
 
2152
2152
  /**
2153
- * Abweichende Produktbeschreibung
2153
+ * Abweichende Produktbezeichnung
2154
2154
  */
2155
- supplierArticleDescription: string;
2155
+ supplierArticleName: string;
2156
2156
 
2157
2157
  /**
2158
2158
  * Standardpreis Netto
@@ -2160,9 +2160,9 @@ export interface ArticleSupplier {
2160
2160
  defaultNetPrice: number;
2161
2161
 
2162
2162
  /**
2163
- * Referenced Supplier-Account
2163
+ * Einkaufseinheit
2164
2164
  */
2165
- accountId: number;
2165
+ purchaseUnit: number;
2166
2166
 
2167
2167
  /**
2168
2168
  * Sollen Baugruppen auf Komponenten-Basis bestellt werden?)
@@ -2170,9 +2170,9 @@ export interface ArticleSupplier {
2170
2170
  orderOnComponentBase: boolean;
2171
2171
 
2172
2172
  /**
2173
- * Einkaufseinheit
2173
+ * Referenced Supplier-Account
2174
2174
  */
2175
- purchaseUnit: number;
2175
+ accountId: number;
2176
2176
 
2177
2177
  /**
2178
2178
  * Abweichender Produktidentifer (z.B. Barcode)
@@ -2218,14 +2218,14 @@ export interface Asset {
2218
2218
  active: boolean;
2219
2219
 
2220
2220
  /**
2221
- * Ende Garantie
2221
+ * Zugehörige Assets
2222
2222
  */
2223
- warrantyEndDate: ScriptingDate;
2223
+ childAssetRefs: Array<ApiObjectReference>;
2224
2224
 
2225
2225
  /**
2226
- * Zugehörige Assets
2226
+ * Ende Garantie
2227
2227
  */
2228
- childAssetRefs: Array<ApiObjectReference>;
2228
+ warrantyEndDate: ScriptingDate;
2229
2229
 
2230
2230
  /**
2231
2231
  * Asset-Bezeichnung
@@ -2512,14 +2512,14 @@ export interface CountryReference {
2512
2512
  export interface CreateNewDocumentRequest {
2513
2513
 
2514
2514
  /**
2515
- * Standard-Belegart der Kategorie verwenden
2515
+ * Belegart
2516
2516
  */
2517
- defaultDocumentTypeByCategory: EDocumentCategory;
2517
+ documentTypeLabel: string;
2518
2518
 
2519
2519
  /**
2520
- * Belegart
2520
+ * Standard-Belegart der Kategorie verwenden
2521
2521
  */
2522
- documentTypeLabel: string;
2522
+ defaultDocumentTypeByCategory: EDocumentCategory;
2523
2523
 
2524
2524
  /**
2525
2525
  * Details zum Beleg
@@ -2585,14 +2585,14 @@ export interface CrmActivity {
2585
2585
  info: MetaInfo;
2586
2586
 
2587
2587
  /**
2588
- * Aktivität intern abgerechnet?
2588
+ * geplante Dauer
2589
2589
  */
2590
- internalBilled: boolean;
2590
+ plannedDurationInSeconds: number;
2591
2591
 
2592
2592
  /**
2593
- * geplante Dauer
2593
+ * Aktivität intern abgerechnet?
2594
2594
  */
2595
- plannedDurationInSeconds: number;
2595
+ internalBilled: boolean;
2596
2596
 
2597
2597
  /**
2598
2598
  * Freie Felder der CRM-Aktivität
@@ -2630,14 +2630,14 @@ export interface CrmActivity {
2630
2630
  userRef: ApiObjectReference;
2631
2631
 
2632
2632
  /**
2633
- * tatsächliche Startzeit
2633
+ * Handelt es sich um eine System-Aktivität?
2634
2634
  */
2635
- startDateTime: ScriptingDateTime;
2635
+ system: boolean;
2636
2636
 
2637
2637
  /**
2638
- * Handelt es sich um eine System-Aktivität?
2638
+ * tatsächliche Startzeit
2639
2639
  */
2640
- system: boolean;
2640
+ startDateTime: ScriptingDateTime;
2641
2641
 
2642
2642
  /**
2643
2643
  * Inhalt dieser Aktivität
@@ -3178,14 +3178,14 @@ export interface CrmProject {
3178
3178
  billedTimes: number;
3179
3179
 
3180
3180
  /**
3181
- * Einkaufsbelege
3181
+ * Geplanter Projektzeitraum (von)
3182
3182
  */
3183
- purchaseDocumentRefs: Array<DocumentRef>;
3183
+ plannedProjectPeriodFrom: ScriptingDate;
3184
3184
 
3185
3185
  /**
3186
- * Geplanter Projektzeitraum (von)
3186
+ * Einkaufsbelege
3187
3187
  */
3188
- plannedProjectPeriodFrom: ScriptingDate;
3188
+ purchaseDocumentRefs: Array<DocumentRef>;
3189
3189
 
3190
3190
  /**
3191
3191
  * Verkaufsbelege
@@ -3854,14 +3854,14 @@ export interface CurrencyReference {
3854
3854
  export interface Customer {
3855
3855
 
3856
3856
  /**
3857
- * Option für die Stapelverarbeitung
3857
+ * reference to customer group
3858
3858
  */
3859
- stackProcessingType: AccountOrderStackProcessingType;
3859
+ customerGroupRef: ApiObjectReference;
3860
3860
 
3861
3861
  /**
3862
- * reference to customer group
3862
+ * Option für die Stapelverarbeitung
3863
3863
  */
3864
- customerGroupRef: ApiObjectReference;
3864
+ stackProcessingType: AccountOrderStackProcessingType;
3865
3865
 
3866
3866
  /**
3867
3867
  * Cron-Ausdruck zur Berechnung der Sammelabrechnung
@@ -3879,14 +3879,14 @@ export interface Customer {
3879
3879
  dueDate: ScriptingDate;
3880
3880
 
3881
3881
  /**
3882
- * Maximal mögliche Lieferungen
3882
+ * collective billable
3883
3883
  */
3884
- maxDeliveries: number;
3884
+ collectiveBillable: boolean;
3885
3885
 
3886
3886
  /**
3887
- * collective billable
3887
+ * Maximal mögliche Lieferungen
3888
3888
  */
3889
- collectiveBillable: boolean;
3889
+ maxDeliveries: number;
3890
3890
 
3891
3891
  /**
3892
3892
  * Hat der Kunde eine Liefersperre?
@@ -4098,14 +4098,14 @@ export const enum DealNotificationEventConfig {
4098
4098
  export interface DeliveryMethod {
4099
4099
 
4100
4100
  /**
4101
- * E-Mail an Versender übergeben
4101
+ * Soll eine Position mit dieser Liefermethode in einen Lieferbeleg mit dieser Methode übernommen werden
4102
4102
  */
4103
- forwardEmailToShipper: boolean;
4103
+ splitIntoNewDocument: boolean;
4104
4104
 
4105
4105
  /**
4106
- * Soll eine Position mit dieser Liefermethode in einen Lieferbeleg mit dieser Methode übernommen werden
4106
+ * E-Mail an Versender übergeben
4107
4107
  */
4108
- splitIntoNewDocument: boolean;
4108
+ forwardEmailToShipper: boolean;
4109
4109
 
4110
4110
  /**
4111
4111
  * Min. Gewicht pro Paket
@@ -4158,14 +4158,14 @@ export interface DeliveryMethod {
4158
4158
  defaultSizeUnit: UnitTypeReference;
4159
4159
 
4160
4160
  /**
4161
- * Quelle für Paketgewicht
4161
+ * translations
4162
4162
  */
4163
- parcelWeightSource: DeliveryMethodParcelWeightSource;
4163
+ translations: Array<DocumentTypeTerm>;
4164
4164
 
4165
4165
  /**
4166
- * translations
4166
+ * Quelle für Paketgewicht
4167
4167
  */
4168
- translations: Array<DocumentTypeTerm>;
4168
+ parcelWeightSource: DeliveryMethodParcelWeightSource;
4169
4169
 
4170
4170
  /**
4171
4171
  * Gültige Ländercodes
@@ -4256,14 +4256,14 @@ export interface DeliveryTerm {
4256
4256
  version: number;
4257
4257
 
4258
4258
  /**
4259
- * information, how the shipping charges should be calculated
4259
+ * translations
4260
4260
  */
4261
- calculateFreightChargesFromType: CalculateFreightChargesFromType;
4261
+ translations: Array<DocumentTypeTerm>;
4262
4262
 
4263
4263
  /**
4264
- * translations
4264
+ * information, how the shipping charges should be calculated
4265
4265
  */
4266
- translations: Array<DocumentTypeTerm>;
4266
+ calculateFreightChargesFromType: CalculateFreightChargesFromType;
4267
4267
 
4268
4268
  /**
4269
4269
  * Lieferarten
@@ -4276,14 +4276,14 @@ export interface DeliveryTerm {
4276
4276
  id: number;
4277
4277
 
4278
4278
  /**
4279
- * Versandkostenartikel
4279
+ * free shipping net value
4280
4280
  */
4281
- shippingCostArticleRef: ApiObjectReference;
4281
+ freeShippingNetValue: number;
4282
4282
 
4283
4283
  /**
4284
- * free shipping net value
4284
+ * Versandkostenartikel
4285
4285
  */
4286
- freeShippingNetValue: number;
4286
+ shippingCostArticleRef: ApiObjectReference;
4287
4287
 
4288
4288
  /**
4289
4289
  * MetaInformations for this Object
@@ -4306,14 +4306,14 @@ export interface DmsOutputStream {
4306
4306
  export interface Document {
4307
4307
 
4308
4308
  /**
4309
- * Bestätigtes Lieferende (nur wenn bestätigtes Lieferdatum gesetzt)
4309
+ * Referenz zum Rechnungskonto
4310
4310
  */
4311
- confirmedDeliveryDateEnd: ScriptingDate;
4311
+ billingAccountRef: ApiObjectReference;
4312
4312
 
4313
4313
  /**
4314
- * Referenz zum Rechnungskonto
4314
+ * Bestätigtes Lieferende (nur wenn bestätigtes Lieferdatum gesetzt)
4315
4315
  */
4316
- billingAccountRef: ApiObjectReference;
4316
+ confirmedDeliveryDateEnd: ScriptingDate;
4317
4317
 
4318
4318
  /**
4319
4319
  * Externe Belegnummer
@@ -4394,9 +4394,9 @@ negativer Wert: überzahlter Betrag / Rückgeld
4394
4394
  deliveryQuantityPackages: number;
4395
4395
 
4396
4396
  /**
4397
- * Bestellnummer aus Vorbeleg
4397
+ * Steuerpflichtig oder steuerfrei
4398
4398
  */
4399
- referencedOrderNumber: string;
4399
+ taxable: boolean;
4400
4400
 
4401
4401
  /**
4402
4402
  * Leitweg-ID
@@ -4404,9 +4404,9 @@ negativer Wert: überzahlter Betrag / Rückgeld
4404
4404
  buyerReference: string;
4405
4405
 
4406
4406
  /**
4407
- * Steuerpflichtig oder steuerfrei
4407
+ * Bestellnummer aus Vorbeleg
4408
4408
  */
4409
- taxable: boolean;
4409
+ referencedOrderNumber: string;
4410
4410
 
4411
4411
  /**
4412
4412
  * Preisanpassungen - Belegpositionssumme Basiswährung
@@ -4591,14 +4591,14 @@ true wenn die Quittung bezahlt ist
4591
4591
  accountNumber: string;
4592
4592
 
4593
4593
  /**
4594
- * Wird vom Workflow verarbeitet?
4594
+ * Referenz auf Zahlungsbedingung
4595
4595
  */
4596
- processedByWorkflow: boolean;
4596
+ paymentTermRef: PaymentTermRef;
4597
4597
 
4598
4598
  /**
4599
- * Referenz auf Zahlungsbedingung
4599
+ * Wird vom Workflow verarbeitet?
4600
4600
  */
4601
- paymentTermRef: PaymentTermRef;
4601
+ processedByWorkflow: boolean;
4602
4602
 
4603
4603
  /**
4604
4604
  * Preisanpassungen - Beleg Basiswährung
@@ -4666,14 +4666,14 @@ true wenn die Quittung bezahlt ist
4666
4666
  additionalInfo: DocumentAdditionalInfo;
4667
4667
 
4668
4668
  /**
4669
- * skontierbarer Rechnungsbetrag Basiswährung
4669
+ * Bestelldatum
4670
4670
  */
4671
- baseCashDiscountableTotalGrossPrice: number;
4671
+ orderedOn: ScriptingDate;
4672
4672
 
4673
4673
  /**
4674
- * Bestelldatum
4674
+ * skontierbarer Rechnungsbetrag Basiswährung
4675
4675
  */
4676
- orderedOn: ScriptingDate;
4676
+ baseCashDiscountableTotalGrossPrice: number;
4677
4677
 
4678
4678
  /**
4679
4679
  * MetaInformations for this Object
@@ -4811,14 +4811,14 @@ true wenn die Quittung bezahlt ist
4811
4811
  customerNumber: string;
4812
4812
 
4813
4813
  /**
4814
- * Statusinstanz des Belegs
4814
+ * Umsatzsteuer-Identifikationsnummer
4815
4815
  */
4816
- documentState: DocumentTypeState;
4816
+ taxIdentificationNumber: string;
4817
4817
 
4818
4818
  /**
4819
- * Umsatzsteuer-Identifikationsnummer
4819
+ * Statusinstanz des Belegs
4820
4820
  */
4821
- taxIdentificationNumber: string;
4821
+ documentState: DocumentTypeState;
4822
4822
 
4823
4823
  /**
4824
4824
  * Versandkostenpositionen
@@ -4873,14 +4873,14 @@ true wenn die Quittung ausbalanciert ist
4873
4873
  billingAddress: DocumentAddress;
4874
4874
 
4875
4875
  /**
4876
- * Report-Gruppe, falls vom Standard abweichend
4876
+ * Bestellt durch Ansprechpartner
4877
4877
  */
4878
- reportGroupRef: ApiObjectReference;
4878
+ orderedByPersonRef: ApiObjectReference;
4879
4879
 
4880
4880
  /**
4881
- * Bestellt durch Ansprechpartner
4881
+ * Report-Gruppe, falls vom Standard abweichend
4882
4882
  */
4883
- orderedByPersonRef: ApiObjectReference;
4883
+ reportGroupRef: ApiObjectReference;
4884
4884
  }
4885
4885
 
4886
4886
  export interface DocumentAdditionalInfo {
@@ -5061,14 +5061,14 @@ export interface DocumentAddress {
5061
5061
  info: MetaInfo;
5062
5062
 
5063
5063
  /**
5064
- * GLN
5064
+ * Lieferart
5065
5065
  */
5066
- globalLocationNumber: string;
5066
+ deliveryMethodRef: ApiObjectReference;
5067
5067
 
5068
5068
  /**
5069
- * Lieferart
5069
+ * GLN
5070
5070
  */
5071
- deliveryMethodRef: ApiObjectReference;
5071
+ globalLocationNumber: string;
5072
5072
 
5073
5073
  /**
5074
5074
  * Postcode
@@ -5506,11 +5506,6 @@ export interface DocumentLine {
5506
5506
  */
5507
5507
  id: number;
5508
5508
 
5509
- /**
5510
- * Serientyp
5511
- */
5512
- serialType: ArticleSerialType;
5513
-
5514
5509
  /**
5515
5510
  * Positionsnummer über alle Artikelpositionen hinweg
5516
5511
  */
@@ -5521,6 +5516,11 @@ export interface DocumentLine {
5521
5516
  */
5522
5517
  basePrice: number;
5523
5518
 
5519
+ /**
5520
+ * Serientyp
5521
+ */
5522
+ serialType: ArticleSerialType;
5523
+
5524
5524
  /**
5525
5525
  * Steuerschema
5526
5526
  */
@@ -5622,14 +5622,14 @@ export interface DocumentLine {
5622
5622
  settledOpenItemDiscountAmount: number;
5623
5623
 
5624
5624
  /**
5625
- * Vertragsinformationen
5625
+ * Nettoverkaufswert der Position in Basiswährung
5626
5626
  */
5627
- contractDetail: DocumentContractDetail;
5627
+ baseSalesValueNet: number;
5628
5628
 
5629
5629
  /**
5630
- * Nettoverkaufswert der Position in Basiswährung
5630
+ * Vertragsinformationen
5631
5631
  */
5632
- baseSalesValueNet: number;
5632
+ contractDetail: DocumentContractDetail;
5633
5633
 
5634
5634
  /**
5635
5635
  * Einheit Nettogewicht
@@ -6076,14 +6076,14 @@ export interface DocumentLineComponent {
6076
6076
  custom: EavDocumentlinecomponent;
6077
6077
 
6078
6078
  /**
6079
- * Gelieferte Menge
6079
+ * Referenz auf den Artikel der Komponente
6080
6080
  */
6081
- quantityCommitted: number;
6081
+ articleId: number;
6082
6082
 
6083
6083
  /**
6084
- * Referenz auf den Artikel der Komponente
6084
+ * Gelieferte Menge
6085
6085
  */
6086
- articleId: number;
6086
+ quantityCommitted: number;
6087
6087
 
6088
6088
  /**
6089
6089
  * Beschreibung des Artikels
@@ -6667,14 +6667,14 @@ export interface DocumentPosPayment {
6667
6667
  version: number;
6668
6668
 
6669
6669
  /**
6670
- * Abschöpfungsbetrag. Im Modus MANUAL vom Anwender vorgegeben; in den Modi FULL/BALANCE/NONE vom Backend aus aktuellem Saldo berechnet
6670
+ * Zahlungsart
6671
6671
  */
6672
- withdrawalAmount: number;
6672
+ posPaymentMethodRef: ApiObjectReference;
6673
6673
 
6674
6674
  /**
6675
- * Zahlungsart
6675
+ * Abschöpfungsbetrag. Im Modus MANUAL vom Anwender vorgegeben; in den Modi FULL/BALANCE/NONE vom Backend aus aktuellem Saldo berechnet
6676
6676
  */
6677
- posPaymentMethodRef: ApiObjectReference;
6677
+ withdrawalAmount: number;
6678
6678
 
6679
6679
  /**
6680
6680
  * Fehlermeldung vom Payment-Backend (nur bei fehlgeschlagener Zahlung)
@@ -6822,14 +6822,14 @@ export const enum DocumentRounding {
6822
6822
  export interface DocumentShippingCost {
6823
6823
 
6824
6824
  /**
6825
- * Die Versandkosten
6825
+ * Wurden die Versandkosten manuell eingetragen?
6826
6826
  */
6827
- costs: number;
6827
+ manualCosts: boolean;
6828
6828
 
6829
6829
  /**
6830
- * Wurden die Versandkosten manuell eingetragen?
6830
+ * Die Versandkosten
6831
6831
  */
6832
- manualCosts: boolean;
6832
+ costs: number;
6833
6833
 
6834
6834
  /**
6835
6835
  * Keine Versandkosten (freier Versand)
@@ -7074,14 +7074,14 @@ export interface DocumentType {
7074
7074
  labels: Array<DocumentTypeLabel>;
7075
7075
 
7076
7076
  /**
7077
- * nächste Belegnummer
7077
+ * Zählerkreis
7078
7078
  */
7079
- nextNumber: string;
7079
+ sequencerConfiguration: SequencerConfiguration;
7080
7080
 
7081
7081
  /**
7082
- * Zählerkreis
7082
+ * nächste Belegnummer
7083
7083
  */
7084
- sequencerConfiguration: SequencerConfiguration;
7084
+ nextNumber: string;
7085
7085
 
7086
7086
  /**
7087
7087
  * Sortierung
@@ -7262,14 +7262,14 @@ export const enum DropShippingPolicy {
7262
7262
  export interface DummySerialNumberStockTransferApi {
7263
7263
 
7264
7264
  /**
7265
- * Ziel-Lager
7265
+ * Seriennummer
7266
7266
  */
7267
- targetStorageId: number;
7267
+ serialNumberId: number;
7268
7268
 
7269
7269
  /**
7270
- * Seriennummer
7270
+ * Ziel-Lager
7271
7271
  */
7272
- serialNumberId: number;
7272
+ targetStorageId: number;
7273
7273
 
7274
7274
  /**
7275
7275
  * Bemerkung
@@ -8417,14 +8417,14 @@ export interface OpenItemRecord {
8417
8417
  version: number;
8418
8418
 
8419
8419
  /**
8420
- * Buchungsbetrag in Basiswährung
8420
+ * id der transaction, die diesen record hervorgerufen hat
8421
8421
  */
8422
- baseAmount: number;
8422
+ transactionId: number;
8423
8423
 
8424
8424
  /**
8425
- * id der transaction, die diesen record hervorgerufen hat
8425
+ * Buchungsbetrag in Basiswährung
8426
8426
  */
8427
- transactionId: number;
8427
+ baseAmount: number;
8428
8428
 
8429
8429
  /**
8430
8430
  * Abzugsbetrag in Basiswährung
@@ -8583,14 +8583,14 @@ export interface PaymentMethod {
8583
8583
  dunnable: boolean;
8584
8584
 
8585
8585
  /**
8586
- * Debitoren-OP abschließen?
8586
+ * translations
8587
8587
  */
8588
- closeCustomerAccountType: boolean;
8588
+ translations: Array<DocumentTypeTerm>;
8589
8589
 
8590
8590
  /**
8591
- * translations
8591
+ * Debitoren-OP abschließen?
8592
8592
  */
8593
- translations: Array<DocumentTypeTerm>;
8593
+ closeCustomerAccountType: boolean;
8594
8594
 
8595
8595
  /**
8596
8596
  * +Tage für Folgelastschrift
@@ -8689,14 +8689,14 @@ export interface PaymentTerm {
8689
8689
  paymentDiscount2: number;
8690
8690
 
8691
8691
  /**
8692
- * Percent for Discount 1
8692
+ * printDescription
8693
8693
  */
8694
- paymentDiscount1: number;
8694
+ printDescription: string;
8695
8695
 
8696
8696
  /**
8697
- * printDescription
8697
+ * Percent for Discount 1
8698
8698
  */
8699
- printDescription: string;
8699
+ paymentDiscount1: number;
8700
8700
 
8701
8701
  /**
8702
8702
  * for deposit: remaining term
@@ -9253,14 +9253,14 @@ export interface PicklistLineComponent {
9253
9253
  targetDocumentLineComponentId: number;
9254
9254
 
9255
9255
  /**
9256
- * abweichende Artikelbezeichnung
9256
+ * Menge pro Baugruppe (falls die Picklist-Line eine Baugruppe ist)
9257
9257
  */
9258
- articleAlternativeName: string;
9258
+ quantityPerAssemblyGroup: number;
9259
9259
 
9260
9260
  /**
9261
- * Menge pro Baugruppe (falls die Picklist-Line eine Baugruppe ist)
9261
+ * abweichende Artikelbezeichnung
9262
9262
  */
9263
- quantityPerAssemblyGroup: number;
9263
+ articleAlternativeName: string;
9264
9264
 
9265
9265
  /**
9266
9266
  * Verpackte Menge der Position
@@ -9428,26 +9428,26 @@ export interface PicklistTemplate$OrderSelectionOptions {
9428
9428
  */
9429
9429
  maxArticleCountPerOrder: number;
9430
9430
 
9431
- /**
9432
- * Alternative Selektion in VQL
9433
- */
9434
- alternativeSelectionInVql: string;
9435
-
9436
9431
  /**
9437
9432
  * Maximaler Auftragswert
9438
9433
  */
9439
9434
  maxOrderValue: number;
9440
9435
 
9441
9436
  /**
9442
- * Nur vollständig lieferbare Positionen
9437
+ * Alternative Selektion in VQL
9443
9438
  */
9444
- onlyFullDeliverableOrderLines: boolean;
9439
+ alternativeSelectionInVql: string;
9445
9440
 
9446
9441
  /**
9447
9442
  * Selektion über den Bereich vom Lieferdatum
9448
9443
  */
9449
9444
  deliveryDateRange: PicklistTemplate$DateRange;
9450
9445
 
9446
+ /**
9447
+ * Nur vollständig lieferbare Positionen
9448
+ */
9449
+ onlyFullDeliverableOrderLines: boolean;
9450
+
9451
9451
  /**
9452
9452
  * Nur für Einzelkommissionierung und Konsolidierung: maximale Anzahl zu übernehmender Aufträge
9453
9453
  */
@@ -9517,14 +9517,14 @@ export interface PicklistTemplate$PicklistCreationOptions {
9517
9517
  printPicklist: boolean;
9518
9518
 
9519
9519
  /**
9520
- * Maximale Anzahl an Positionen einer Pickliste
9520
+ * Die zu verwendende Pickwagengruppe
9521
9521
  */
9522
- maxPicklistLineCount: number;
9522
+ orderPickingTrolleyGroupRef: ApiObjectReference;
9523
9523
 
9524
9524
  /**
9525
- * Die zu verwendende Pickwagengruppe
9525
+ * Maximale Anzahl an Positionen einer Pickliste
9526
9526
  */
9527
- orderPickingTrolleyGroupRef: ApiObjectReference;
9527
+ maxPicklistLineCount: number;
9528
9528
 
9529
9529
  /**
9530
9530
  * Mit welcher Reportgruppe soll die Pickliste gedruckt werden?
@@ -9542,14 +9542,14 @@ export interface PicklistTemplate$PicklistCreationOptions {
9542
9542
  specifyStorageBins: boolean;
9543
9543
 
9544
9544
  /**
9545
- * Positionen der Pickliste nach Laufwegposition sortieren
9545
+ * Sollen alle verfügbaren Pickwagen verwendet werden?
9546
9546
  */
9547
- sortByRoutePosition: boolean;
9547
+ useAllAvailOrderPickingTrolleys: boolean;
9548
9548
 
9549
9549
  /**
9550
- * Sollen alle verfügbaren Pickwagen verwendet werden?
9550
+ * Positionen der Pickliste nach Laufwegposition sortieren
9551
9551
  */
9552
- useAllAvailOrderPickingTrolleys: boolean;
9552
+ sortByRoutePosition: boolean;
9553
9553
 
9554
9554
  /**
9555
9555
  * Sollen zuerst noch Picklisten für die Schnellkommissionierung erzeugt werden?
@@ -9609,6 +9609,11 @@ export interface PicklistTemplate$PicklistProcessingOptions {
9609
9609
  */
9610
9610
  showShippingFormOnPickingFinish: boolean;
9611
9611
 
9612
+ /**
9613
+ * Sollen Dienstleistungen kommissioniert werden?
9614
+ */
9615
+ allowPickingOfServiceArticles: boolean;
9616
+
9612
9617
  /**
9613
9618
  * Digitale Pickliste verwenden: dabei werden nur die Positionen im Frontend gezeigt und durch Tippen oder Wischen bestätigt
9614
9619
  */
@@ -9619,11 +9624,6 @@ export interface PicklistTemplate$PicklistProcessingOptions {
9619
9624
  */
9620
9625
  allowFullConfirmation: boolean;
9621
9626
 
9622
- /**
9623
- * Sollen Dienstleistungen kommissioniert werden?
9624
- */
9625
- allowPickingOfServiceArticles: boolean;
9626
-
9627
9627
  /**
9628
9628
  * Sollen bei der Erfassung automatisch die Etiketten gedruckt werden?
9629
9629
  */
@@ -9645,14 +9645,14 @@ export interface PicklistTemplate$PicklistProcessingOptions {
9645
9645
  printLabelOnCompleteOrder: boolean;
9646
9646
 
9647
9647
  /**
9648
- * Sollen bei Abschluss des des Pickens automatisch die Etiketten gedruckt werden?
9648
+ * Rollende Kommissionierung/Konsolidierung: beim Sammeln muss die Box nach dem Scan eines Artikels per Scan bestätigt werden
9649
9649
  */
9650
- printLabelAfterPicking: boolean;
9650
+ scanPickTrolleyBoxToConfirmPickedArticle: boolean;
9651
9651
 
9652
9652
  /**
9653
- * Rollende Kommissionierung/Konsolidierung: beim Sammeln muss die Box nach dem Scan eines Artikels per Scan bestätigt werden
9653
+ * Sollen bei Abschluss des des Pickens automatisch die Etiketten gedruckt werden?
9654
9654
  */
9655
- scanPickTrolleyBoxToConfirmPickedArticle: boolean;
9655
+ printLabelAfterPicking: boolean;
9656
9656
 
9657
9657
  /**
9658
9658
  * Sollen nicht-bestandsgeführte Artikel kommissioniert werden?
@@ -9973,14 +9973,14 @@ export interface ProductDiscount {
9973
9973
  currencyRef: CurrencyReference;
9974
9974
 
9975
9975
  /**
9976
- * Preisgruppe
9976
+ * Wert des Rabatts
9977
9977
  */
9978
- priceGroupRef: ApiObjectReference;
9978
+ modifierValue: number;
9979
9979
 
9980
9980
  /**
9981
- * Wert des Rabatts
9981
+ * Preisgruppe
9982
9982
  */
9983
- modifierValue: number;
9983
+ priceGroupRef: ApiObjectReference;
9984
9984
 
9985
9985
  /**
9986
9986
  * Bestimmt, ob es sich um einen Verkaufs- oder Einkaufsrabatt handelt
@@ -10003,14 +10003,14 @@ export interface ProductDiscount {
10003
10003
  modifierValueType: ValueType;
10004
10004
 
10005
10005
  /**
10006
- * Account, für den der Rabatt gültig ist
10006
+ * Name des Rabatts
10007
10007
  */
10008
- accountRef: ApiObjectReference;
10008
+ modifierName: string;
10009
10009
 
10010
10010
  /**
10011
- * Name des Rabatts
10011
+ * Account, für den der Rabatt gültig ist
10012
10012
  */
10013
- modifierName: string;
10013
+ accountRef: ApiObjectReference;
10014
10014
 
10015
10015
  /**
10016
10016
  * Unique identifier of the Object
@@ -10222,14 +10222,14 @@ export interface ProductPrice {
10222
10222
  qualifier: ProductPriceQualifier;
10223
10223
 
10224
10224
  /**
10225
- * Preisbasis
10225
+ * Aktionpreis
10226
10226
  */
10227
- priceBase: ArticlePriceBase;
10227
+ specialOfferPrice: boolean;
10228
10228
 
10229
10229
  /**
10230
- * Aktionpreis
10230
+ * Preisbasis
10231
10231
  */
10232
- specialOfferPrice: boolean;
10232
+ priceBase: ArticlePriceBase;
10233
10233
 
10234
10234
  /**
10235
10235
  * Gültig bis
@@ -10336,15 +10336,20 @@ export const enum RegulationSet {
10336
10336
 
10337
10337
  export interface RequestDocument {
10338
10338
 
10339
+ /**
10340
+ * ID vom Lagerplatz für den Wareneingang (wenn incomingGoodsPickTrolleyId = null)
10341
+ */
10342
+ incomingGoodsStorageBinId: number;
10343
+
10339
10344
  /**
10340
10345
  * Belegdatum
10341
10346
  */
10342
10347
  documentDate: ScriptingDate;
10343
10348
 
10344
10349
  /**
10345
- * ID vom Lagerplatz für den Wareneingang (wenn incomingGoodsPickTrolleyId = null)
10350
+ * ID der Kassenschublade (bei POS)
10346
10351
  */
10347
- incomingGoodsStorageBinId: number;
10352
+ cashDrawerId: number;
10348
10353
 
10349
10354
  /**
10350
10355
  * Leistungsdatum
@@ -10356,11 +10361,6 @@ export interface RequestDocument {
10356
10361
  */
10357
10362
  depositPaymentAmount: number;
10358
10363
 
10359
- /**
10360
- * ID der Kassenschublade (bei POS)
10361
- */
10362
- cashDrawerId: number;
10363
-
10364
10364
  /**
10365
10365
  * Für interne Zwecke: Liefermethode für das Document
10366
10366
  */
@@ -10482,14 +10482,14 @@ export interface RequestDocument {
10482
10482
  texts: Array<DocumentText>;
10483
10483
 
10484
10484
  /**
10485
- * Wird dieser Beleg durch die Picklistenverarbeitung verarbeitet?
10485
+ * Nur für interne Zwecke: neue Positionen, die bei Übernahme aus einer Pickliste angelegt werden sollen
10486
10486
  */
10487
- processedByPicklistProcessing: boolean;
10487
+ picklistLinesToAddOnTransfer: Array<PicklistLine>;
10488
10488
 
10489
10489
  /**
10490
- * Nur für interne Zwecke: neue Positionen, die bei Übernahme aus einer Pickliste angelegt werden sollen
10490
+ * Wird dieser Beleg durch die Picklistenverarbeitung verarbeitet?
10491
10491
  */
10492
- picklistLinesToAddOnTransfer: Array<PicklistLine>;
10492
+ processedByPicklistProcessing: boolean;
10493
10493
 
10494
10494
  /**
10495
10495
  * Die Rabatte des Beleges
@@ -10660,14 +10660,14 @@ export interface RequestDocumentLine {
10660
10660
  name: string;
10661
10661
 
10662
10662
  /**
10663
- * Für interne Zwecke: Externe Artikelnummer
10663
+ * ID der Quell-Belegposition
10664
10664
  */
10665
- externalArticleNumber: string;
10665
+ sourceLineId: number;
10666
10666
 
10667
10667
  /**
10668
- * ID der Quell-Belegposition
10668
+ * Für interne Zwecke: Externe Artikelnummer
10669
10669
  */
10670
- sourceLineId: number;
10670
+ externalArticleNumber: string;
10671
10671
 
10672
10672
  /**
10673
10673
  * Buchungen zu dieser Belegposition
@@ -10675,14 +10675,14 @@ export interface RequestDocumentLine {
10675
10675
  bookings: Array<RequestDocumentLineBooking>;
10676
10676
 
10677
10677
  /**
10678
- * Zu der Zeile Etikettendruck anstoßen
10678
+ * (optional) Preis des Artikels dieser Position
10679
10679
  */
10680
- doLabelPrint: boolean;
10680
+ productPrice: number;
10681
10681
 
10682
10682
  /**
10683
- * (optional) Preis des Artikels dieser Position
10683
+ * Zu der Zeile Etikettendruck anstoßen
10684
10684
  */
10685
- productPrice: number;
10685
+ doLabelPrint: boolean;
10686
10686
  }
10687
10687
 
10688
10688
  export interface RequestDocumentLineBooking {
@@ -11323,14 +11323,14 @@ export interface ShelfDocument {
11323
11323
  tags: Array<TagDto>;
11324
11324
 
11325
11325
  /**
11326
- * Mehrsprachige Bezeichnungen
11326
+ * share informations
11327
11327
  */
11328
- translatableTexts: Array<ShelfTranslatableText>;
11328
+ shares: Array<ShelfShare>;
11329
11329
 
11330
11330
  /**
11331
- * share informations
11331
+ * Mehrsprachige Bezeichnungen
11332
11332
  */
11333
- shares: Array<ShelfShare>;
11333
+ translatableTexts: Array<ShelfTranslatableText>;
11334
11334
 
11335
11335
  /**
11336
11336
  * Automatische Löschung ab
@@ -11462,14 +11462,14 @@ export interface ShelfDocumentType {
11462
11462
  active: boolean;
11463
11463
 
11464
11464
  /**
11465
- * access level or reading
11465
+ * label of type
11466
11466
  */
11467
- accessLevelRead: number;
11467
+ label: string;
11468
11468
 
11469
11469
  /**
11470
- * label of type
11470
+ * access level or reading
11471
11471
  */
11472
- label: string;
11472
+ accessLevelRead: number;
11473
11473
 
11474
11474
  /**
11475
11475
  * storage rule for revisions
@@ -11515,14 +11515,14 @@ export interface ShelfFile {
11515
11515
  subFiles: Array<SubFileInfo>;
11516
11516
 
11517
11517
  /**
11518
- * revision number of this file
11518
+ * fileSize
11519
11519
  */
11520
- revisionNumber: number;
11520
+ fileSize: number;
11521
11521
 
11522
11522
  /**
11523
- * fileSize
11523
+ * revision number of this file
11524
11524
  */
11525
- fileSize: number;
11525
+ revisionNumber: number;
11526
11526
 
11527
11527
  /**
11528
11528
  * file-extension of this entry
@@ -11550,14 +11550,14 @@ export interface ShelfFile {
11550
11550
  version: number;
11551
11551
 
11552
11552
  /**
11553
- * meta data
11553
+ * current reference of this file in our storage
11554
11554
  */
11555
- metaDataEntries: Array<ShelfFileMetaData>;
11555
+ storageHandle: string;
11556
11556
 
11557
11557
  /**
11558
- * current reference of this file in our storage
11558
+ * meta data
11559
11559
  */
11560
- storageHandle: string;
11560
+ metaDataEntries: Array<ShelfFileMetaData>;
11561
11561
 
11562
11562
  /**
11563
11563
  * MetaInformations for this Object
@@ -11604,14 +11604,14 @@ export interface ShelfShare {
11604
11604
  publishState: ShelfSharePublishState;
11605
11605
 
11606
11606
  /**
11607
- * wie viele Minuten bleibt dieser resource-pfad zugreifbar (null = unlimited)
11607
+ * Freifelder
11608
11608
  */
11609
- publicUrlDurationInMinutes: number;
11609
+ custom: EavShelfshare;
11610
11610
 
11611
11611
  /**
11612
- * Freifelder
11612
+ * wie viele Minuten bleibt dieser resource-pfad zugreifbar (null = unlimited)
11613
11613
  */
11614
- custom: EavShelfshare;
11614
+ publicUrlDurationInMinutes: number;
11615
11615
 
11616
11616
  /**
11617
11617
  * der url-pfadanteil, der öffentlichen zugriff auf diese resource gibt
@@ -11805,14 +11805,14 @@ export interface StockMovementManualApi {
11805
11805
  expiryDate: ScriptingDate;
11806
11806
 
11807
11807
  /**
11808
- * Zugang oder Abgang
11808
+ * Notiz zur Seriennummer
11809
11809
  */
11810
- factor: StockJournalFactor;
11810
+ serialNumberNote: string;
11811
11811
 
11812
11812
  /**
11813
- * Notiz zur Seriennummer
11813
+ * Zugang oder Abgang
11814
11814
  */
11815
- serialNumberNote: string;
11815
+ factor: StockJournalFactor;
11816
11816
 
11817
11817
  /**
11818
11818
  * Lager
@@ -11823,14 +11823,14 @@ export interface StockMovementManualApi {
11823
11823
  export interface StockTransferApi {
11824
11824
 
11825
11825
  /**
11826
- * Ziel-Lager
11826
+ * Seriennummer
11827
11827
  */
11828
- targetStorageId: number;
11828
+ serialNumberId: number;
11829
11829
 
11830
11830
  /**
11831
- * Seriennummer
11831
+ * Ziel-Lager
11832
11832
  */
11833
- serialNumberId: number;
11833
+ targetStorageId: number;
11834
11834
 
11835
11835
  /**
11836
11836
  * Bemerkung
@@ -12046,14 +12046,14 @@ export interface Supplier {
12046
12046
  info: MetaInfo;
12047
12047
 
12048
12048
  /**
12049
- * Lieferantengruppe
12049
+ * reference to the delivery method
12050
12050
  */
12051
- supplierGroupRef: ApiObjectReference;
12051
+ deliveryMethodRef: ApiObjectReference;
12052
12052
 
12053
12053
  /**
12054
- * reference to the delivery method
12054
+ * Lieferantengruppe
12055
12055
  */
12056
- deliveryMethodRef: ApiObjectReference;
12056
+ supplierGroupRef: ApiObjectReference;
12057
12057
 
12058
12058
  /**
12059
12059
  * tax able or tax free
@@ -12139,14 +12139,14 @@ export interface TagDto {
12139
12139
  editColor: string;
12140
12140
 
12141
12141
  /**
12142
- * Farbe für die Anzeige des Tags
12142
+ * Farbe in Such-GUI
12143
12143
  */
12144
- color: string;
12144
+ searchColor: string;
12145
12145
 
12146
12146
  /**
12147
- * Farbe in Such-GUI
12147
+ * Farbe für die Anzeige des Tags
12148
12148
  */
12149
- searchColor: string;
12149
+ color: string;
12150
12150
 
12151
12151
  /**
12152
12152
  * Beschriftung des Tags
@@ -12190,14 +12190,14 @@ export const enum TagType {
12190
12190
  export interface TaxIdForeignCountry {
12191
12191
 
12192
12192
  /**
12193
- * Tax ID of the company in the associated country
12193
+ * ISO 2 Code of the country this tax ID is used for
12194
12194
  */
12195
- taxId: string;
12195
+ countryCode: string;
12196
12196
 
12197
12197
  /**
12198
- * ISO 2 Code of the country this tax ID is used for
12198
+ * Tax ID of the company in the associated country
12199
12199
  */
12200
- countryCode: string;
12200
+ taxId: string;
12201
12201
 
12202
12202
  /**
12203
12203
  * Unique identifier of the Object
@@ -12483,14 +12483,14 @@ export interface User {
12483
12483
  version: number;
12484
12484
 
12485
12485
  /**
12486
- * first-name
12486
+ * is the email verified
12487
12487
  */
12488
- firstName: string;
12488
+ emailVerified: boolean;
12489
12489
 
12490
12490
  /**
12491
- * is the email verified
12491
+ * first-name
12492
12492
  */
12493
- emailVerified: boolean;
12493
+ firstName: string;
12494
12494
 
12495
12495
  /**
12496
12496
  * email-address
@@ -12698,14 +12698,14 @@ export interface VariantValue {
12698
12698
  version: number;
12699
12699
 
12700
12700
  /**
12701
- * Variantenattribut
12701
+ * Mehrsprachige Bezeichnungen
12702
12702
  */
12703
- attributeRef: ApiObjectReference;
12703
+ labels: Array<VariantDescription>;
12704
12704
 
12705
12705
  /**
12706
- * Mehrsprachige Bezeichnungen
12706
+ * Variantenattribut
12707
12707
  */
12708
- labels: Array<VariantDescription>;
12708
+ attributeRef: ApiObjectReference;
12709
12709
 
12710
12710
  /**
12711
12711
  * MetaInformations for this Object