@vario-software/types 2026.17.1 → 2026.17.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vario-software/types",
3
- "version": "2026.17.1",
3
+ "version": "2026.17.3",
4
4
  "types": "./index.d.ts",
5
5
  "dependencies": {
6
6
  "@types/express": "^5.0.6"
@@ -377,17 +377,17 @@ export interface ArticleScriptingService {
377
377
  *
378
378
  * @param {string} batchIdentifier - ID des Etikettendrucklaufs
379
379
  * @param {number} articleId - ID des zu druckenden Artikels
380
+ * @param {number} labelCount - Anzahl der zu druckenden Etiketten
380
381
  */
381
- addLabelToPrintBatch(batchIdentifier: string, articleId: number): void;
382
+ addLabelToPrintBatch(batchIdentifier: string, articleId: number, labelCount: number): void;
382
383
 
383
384
  /**
384
385
  * Fügt Informationen zum Druck Etiketten zu einem Artikel zu einem Etikettendrucklauf hinzu
385
386
  *
386
387
  * @param {string} batchIdentifier - ID des Etikettendrucklaufs
387
388
  * @param {number} articleId - ID des zu druckenden Artikels
388
- * @param {number} labelCount - Anzahl der zu druckenden Etiketten
389
389
  */
390
- addLabelToPrintBatch(batchIdentifier: string, articleId: number, labelCount: number): void;
390
+ addLabelToPrintBatch(batchIdentifier: string, articleId: number): void;
391
391
 
392
392
  /**
393
393
  * Persistiert einen Artikel. Die Texte werden zur Sprache {@code languageCode} gespeichert
@@ -433,16 +433,16 @@ export interface ArticleScriptingService {
433
433
  * Führt einen Etikettendrucklauf aus
434
434
  *
435
435
  * @param {string} batchIdentifier - ID des Etikettendrucklaufs
436
+ * @param {string} reportGroupIdentifier - Name einer Etiketten-Report-Gruppe
436
437
  */
437
- executeLabelPrintBatch(batchIdentifier: string): void;
438
+ executeLabelPrintBatch(batchIdentifier: string, reportGroupIdentifier: string): void;
438
439
 
439
440
  /**
440
441
  * Führt einen Etikettendrucklauf aus
441
442
  *
442
443
  * @param {string} batchIdentifier - ID des Etikettendrucklaufs
443
- * @param {string} reportGroupIdentifier - Name einer Etiketten-Report-Gruppe
444
444
  */
445
- executeLabelPrintBatch(batchIdentifier: string, reportGroupIdentifier: string): void;
445
+ executeLabelPrintBatch(batchIdentifier: string): void;
446
446
 
447
447
  /**
448
448
  * Liefert die Einkaufsrabatte zu einem Artikel
@@ -1424,20 +1424,20 @@ export interface DocumentScriptingService {
1424
1424
  * Kopiert einen Beleg in die vorgegebene Ziel-Belegart
1425
1425
  *
1426
1426
  * @param {number} documentId - ID des zu kopierenden Belegs
1427
- * @param {string} targetDocumentType - Ziel-Belegart der Kopie
1428
- * @param {Array<AdditionalParameter>} additionalParameters - Zusätzliche Parameter
1427
+ * @param {string} targetDocumentTypeLabel - Ziel-Belegart der Kopie
1429
1428
  * @return {Document} Der kopierte Beleg
1430
1429
  */
1431
- copy(documentId: number, targetDocumentType: string, additionalParameters: Array<AdditionalParameter>): Document;
1430
+ copy(documentId: number, targetDocumentTypeLabel: string): Document;
1432
1431
 
1433
1432
  /**
1434
1433
  * Kopiert einen Beleg in die vorgegebene Ziel-Belegart
1435
1434
  *
1436
1435
  * @param {number} documentId - ID des zu kopierenden Belegs
1437
- * @param {string} targetDocumentTypeLabel - Ziel-Belegart der Kopie
1436
+ * @param {string} targetDocumentType - Ziel-Belegart der Kopie
1437
+ * @param {Array<AdditionalParameter>} additionalParameters - Zusätzliche Parameter
1438
1438
  * @return {Document} Der kopierte Beleg
1439
1439
  */
1440
- copy(documentId: number, targetDocumentTypeLabel: string): Document;
1440
+ copy(documentId: number, targetDocumentType: string, additionalParameters: Array<AdditionalParameter>): Document;
1441
1441
 
1442
1442
  /**
1443
1443
  * Erstellt einen neuen Beleg
@@ -2666,18 +2666,18 @@ export interface ScriptingUtilities {
2666
2666
  * Erstellt eine neue BigDecimal-Instanz
2667
2667
  *
2668
2668
  * @param {object} value - Der Quell-Wert
2669
+ * @param {number} scale - Anzahl Nachkommastellen
2669
2670
  * @return {number} Ein BigDecimal-Wert
2670
2671
  */
2671
- newBigDecimal(value: object): number;
2672
+ newBigDecimal(value: object, scale: number): number;
2672
2673
 
2673
2674
  /**
2674
2675
  * Erstellt eine neue BigDecimal-Instanz
2675
2676
  *
2676
2677
  * @param {object} value - Der Quell-Wert
2677
- * @param {number} scale - Anzahl Nachkommastellen
2678
2678
  * @return {number} Ein BigDecimal-Wert
2679
2679
  */
2680
- newBigDecimal(value: object, scale: number): number;
2680
+ newBigDecimal(value: object): number;
2681
2681
 
2682
2682
  /**
2683
2683
  * Erstellt eine API-Referenz
@@ -336,14 +336,14 @@ export interface AccountAddress {
336
336
  types: Array<ApiCreatableReference>;
337
337
 
338
338
  /**
339
- * GLN/ILN as location identifier for this address
339
+ * Leitweg-ID
340
340
  */
341
- globalLocationNumber: string;
341
+ buyerReference: string;
342
342
 
343
343
  /**
344
- * Leitweg-ID
344
+ * GLN/ILN as location identifier for this address
345
345
  */
346
- buyerReference: string;
346
+ globalLocationNumber: string;
347
347
 
348
348
  /**
349
349
  * abweichende Zahlungsart
@@ -406,14 +406,14 @@ export interface AccountAddress {
406
406
  streetAddressNumber: string;
407
407
 
408
408
  /**
409
- * Parcel station customer number
409
+ * Default contacts
410
410
  */
411
- parcelStationCustomerNumber: string;
411
+ defaultContacts: Map<ContactTypeType,Contact>;
412
412
 
413
413
  /**
414
- * Default contacts
414
+ * Parcel station customer number
415
415
  */
416
- defaultContacts: Map<ContactTypeType,Contact>;
416
+ parcelStationCustomerNumber: string;
417
417
 
418
418
  /**
419
419
  * Name3
@@ -469,14 +469,14 @@ export interface AccountBankdetail {
469
469
  active: boolean;
470
470
 
471
471
  /**
472
- * post-code of the bank
472
+ * name of the bank
473
473
  */
474
- bankPostCode: string;
474
+ bankName: string;
475
475
 
476
476
  /**
477
- * name of the bank
477
+ * post-code of the bank
478
478
  */
479
- bankName: string;
479
+ bankPostCode: string;
480
480
 
481
481
  /**
482
482
  * account from, if differs from account-address
@@ -547,14 +547,14 @@ export const enum AccountBillingType {
547
547
  export interface AccountLoanValue {
548
548
 
549
549
  /**
550
- * Account
550
+ * Nicht berücksichtigter Betrag
551
551
  */
552
- accountId: number;
552
+ unconsideredAmount: number;
553
553
 
554
554
  /**
555
- * Nicht berücksichtigter Betrag
555
+ * Account
556
556
  */
557
- unconsideredAmount: number;
557
+ accountId: number;
558
558
 
559
559
  /**
560
560
  * Betrag aus Aufträgen
@@ -562,14 +562,14 @@ export interface AccountLoanValue {
562
562
  nonInvoicedDocumentLoan: number;
563
563
 
564
564
  /**
565
- * Kreditlimit
565
+ * Betrag aus Verbindlichkeiten(negativ)
566
566
  */
567
- maximalLoan: number;
567
+ payablesSum: number;
568
568
 
569
569
  /**
570
- * Betrag aus Verbindlichkeiten(negativ)
570
+ * Kreditlimit
571
571
  */
572
- payablesSum: number;
572
+ maximalLoan: number;
573
573
 
574
574
  /**
575
575
  * Überschrittener Kreditbetrag
@@ -956,14 +956,14 @@ export interface Article {
956
956
  customsTariffNumber: string;
957
957
 
958
958
  /**
959
- * is this product purchasable
959
+ * Product custom data
960
960
  */
961
- purchasable: boolean;
961
+ listingCustom: EavArticleListing;
962
962
 
963
963
  /**
964
- * Product custom data
964
+ * is this product purchasable
965
965
  */
966
- listingCustom: EavArticleListing;
966
+ purchasable: boolean;
967
967
 
968
968
  /**
969
969
  * base capacity unit
@@ -1006,14 +1006,14 @@ export interface Article {
1006
1006
  warrantyInMonths: number;
1007
1007
 
1008
1008
  /**
1009
- * weight and size w.o. packaging
1009
+ * Optionen zur Berechnung der Verfügbarkeit
1010
1010
  */
1011
- netMetric: Article$Metric;
1011
+ availabilityDetermination: ArticleAvailabilityDetermination;
1012
1012
 
1013
1013
  /**
1014
- * Optionen zur Berechnung der Verfügbarkeit
1014
+ * weight and size w.o. packaging
1015
1015
  */
1016
- availabilityDetermination: ArticleAvailabilityDetermination;
1016
+ netMetric: Article$Metric;
1017
1017
 
1018
1018
  /**
1019
1019
  * unique product number
@@ -1151,14 +1151,14 @@ export interface Article {
1151
1151
  workUnitInMinutes: number;
1152
1152
 
1153
1153
  /**
1154
- * Frei kommissionierbar
1154
+ * description custom data
1155
1155
  */
1156
- freelyPickable: boolean;
1156
+ listingDescriptionCustom: EavArticleListingDescription;
1157
1157
 
1158
1158
  /**
1159
- * description custom data
1159
+ * Frei kommissionierbar
1160
1160
  */
1161
- listingDescriptionCustom: EavArticleListingDescription;
1161
+ freelyPickable: boolean;
1162
1162
 
1163
1163
  /**
1164
1164
  * Umkehrung der Steuerschuld nach §13b UStG?
@@ -1241,14 +1241,14 @@ export interface Article {
1241
1241
  contingentArticleRef: ApiObjectReference;
1242
1242
 
1243
1243
  /**
1244
- * rabattierbarer Artikel?
1244
+ * alternative name of this product
1245
1245
  */
1246
- discountable: boolean;
1246
+ alternativeName: string;
1247
1247
 
1248
1248
  /**
1249
- * alternative name of this product
1249
+ * rabattierbarer Artikel?
1250
1250
  */
1251
- alternativeName: string;
1251
+ discountable: boolean;
1252
1252
 
1253
1253
  /**
1254
1254
  * base capacity
@@ -1316,14 +1316,14 @@ export interface Article {
1316
1316
  listed: boolean;
1317
1317
 
1318
1318
  /**
1319
- * provisionsberechtiger Artikel?
1319
+ * Nur manuelle Produktion
1320
1320
  */
1321
- commissionable: boolean;
1321
+ onlyManualFabrication: boolean;
1322
1322
 
1323
1323
  /**
1324
- * Nur manuelle Produktion
1324
+ * provisionsberechtiger Artikel?
1325
1325
  */
1326
- onlyManualFabrication: boolean;
1326
+ commissionable: boolean;
1327
1327
 
1328
1328
  /**
1329
1329
  * Preisbasis
@@ -1514,14 +1514,14 @@ export interface ArticleListing {
1514
1514
  alternativeName: WithDefaults<String>;
1515
1515
 
1516
1516
  /**
1517
- * Niedrigster Netto-Preis der letzten 30 Tage (benutzerdefinierte Eingabe)
1517
+ * Niedrigster Netto-Preis der letzten 30 Tage (vom System ermittelt)
1518
1518
  */
1519
- customLowestPriceNet: number;
1519
+ proposedLowestPriceNet: number;
1520
1520
 
1521
1521
  /**
1522
- * Niedrigster Netto-Preis der letzten 30 Tage (vom System ermittelt)
1522
+ * Niedrigster Netto-Preis der letzten 30 Tage (benutzerdefinierte Eingabe)
1523
1523
  */
1524
- proposedLowestPriceNet: number;
1524
+ customLowestPriceNet: number;
1525
1525
 
1526
1526
  /**
1527
1527
  * der aktuelle listing stand
@@ -1680,26 +1680,26 @@ export const enum ArticleSerialType {
1680
1680
 
1681
1681
  export interface ArticleStorage {
1682
1682
 
1683
- /**
1684
- * Nachschub ab
1685
- */
1686
- replenishmentFrom: number;
1687
-
1688
1683
  /**
1689
1684
  * Bestand im Lager
1690
1685
  */
1691
1686
  quantityInStock: number;
1692
1687
 
1693
1688
  /**
1694
- * Bestellte Menge
1689
+ * Nachschub ab
1695
1690
  */
1696
- orderedQuantity: number;
1691
+ replenishmentFrom: number;
1697
1692
 
1698
1693
  /**
1699
1694
  * Aktuelle Menge in Kommissionierung
1700
1695
  */
1701
1696
  quantityInPicking: number;
1702
1697
 
1698
+ /**
1699
+ * Bestellte Menge
1700
+ */
1701
+ orderedQuantity: number;
1702
+
1703
1703
  /**
1704
1704
  * Nachschub auf
1705
1705
  */
@@ -1778,6 +1778,11 @@ export interface ArticleStorage {
1778
1778
 
1779
1779
  export interface ArticleSupplier {
1780
1780
 
1781
+ /**
1782
+ * Lieferanten-Meldebestand
1783
+ */
1784
+ supplierReportingStock: number;
1785
+
1781
1786
  /**
1782
1787
  * Anzeigename des Accounts
1783
1788
  */
@@ -1788,11 +1793,6 @@ export interface ArticleSupplier {
1788
1793
  */
1789
1794
  useSupplierArticleDescription: boolean;
1790
1795
 
1791
- /**
1792
- * Lieferanten-Meldebestand
1793
- */
1794
- supplierReportingStock: number;
1795
-
1796
1796
  /**
1797
1797
  * Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
1798
1798
  */
@@ -1859,14 +1859,14 @@ export interface ArticleSupplier {
1859
1859
  articleName: string;
1860
1860
 
1861
1861
  /**
1862
- * Referenced Article
1862
+ * Lieferanten-Preise
1863
1863
  */
1864
- articleId: number;
1864
+ productPrices: Array<ProductPrice>;
1865
1865
 
1866
1866
  /**
1867
- * Lieferanten-Preise
1867
+ * Referenced Article
1868
1868
  */
1869
- productPrices: Array<ProductPrice>;
1869
+ articleId: number;
1870
1870
 
1871
1871
  /**
1872
1872
  * Aktiv?
@@ -1904,14 +1904,14 @@ export interface ArticleSupplier {
1904
1904
  defaultNetPrice: number;
1905
1905
 
1906
1906
  /**
1907
- * Sollen Baugruppen auf Komponenten-Basis bestellt werden?)
1907
+ * Einkaufseinheit
1908
1908
  */
1909
- orderOnComponentBase: boolean;
1909
+ purchaseUnit: number;
1910
1910
 
1911
1911
  /**
1912
- * Einkaufseinheit
1912
+ * Sollen Baugruppen auf Komponenten-Basis bestellt werden?)
1913
1913
  */
1914
- purchaseUnit: number;
1914
+ orderOnComponentBase: boolean;
1915
1915
 
1916
1916
  /**
1917
1917
  * Referenced Supplier-Account
@@ -2117,14 +2117,14 @@ export interface CountryReference {
2117
2117
  export interface CreateNewDocumentRequest {
2118
2118
 
2119
2119
  /**
2120
- * Standard-Belegart der Kategorie verwenden
2120
+ * Belegart
2121
2121
  */
2122
- defaultDocumentTypeByCategory: EDocumentCategory;
2122
+ documentTypeLabel: string;
2123
2123
 
2124
2124
  /**
2125
- * Belegart
2125
+ * Standard-Belegart der Kategorie verwenden
2126
2126
  */
2127
- documentTypeLabel: string;
2127
+ defaultDocumentTypeByCategory: EDocumentCategory;
2128
2128
 
2129
2129
  /**
2130
2130
  * Details zum Beleg
@@ -2190,14 +2190,14 @@ export interface CrmActivity {
2190
2190
  info: MetaInfo;
2191
2191
 
2192
2192
  /**
2193
- * Aktivität intern abgerechnet?
2193
+ * geplante Dauer
2194
2194
  */
2195
- internalBilled: boolean;
2195
+ plannedDurationInSeconds: number;
2196
2196
 
2197
2197
  /**
2198
- * geplante Dauer
2198
+ * Aktivität intern abgerechnet?
2199
2199
  */
2200
- plannedDurationInSeconds: number;
2200
+ internalBilled: boolean;
2201
2201
 
2202
2202
  /**
2203
2203
  * Freie Felder der CRM-Aktivität
@@ -2235,14 +2235,14 @@ export interface CrmActivity {
2235
2235
  userRef: ApiObjectReference;
2236
2236
 
2237
2237
  /**
2238
- * Handelt es sich um eine System-Aktivität?
2238
+ * tatsächliche Startzeit
2239
2239
  */
2240
- system: boolean;
2240
+ startDateTime: ScriptingDateTime;
2241
2241
 
2242
2242
  /**
2243
- * tatsächliche Startzeit
2243
+ * Handelt es sich um eine System-Aktivität?
2244
2244
  */
2245
- startDateTime: ScriptingDateTime;
2245
+ system: boolean;
2246
2246
 
2247
2247
  /**
2248
2248
  * Inhalt dieser Aktivität
@@ -2349,14 +2349,14 @@ export interface CrmActivityType {
2349
2349
  export interface CrmChecklistItem {
2350
2350
 
2351
2351
  /**
2352
- * Ist das Element "angehakt"?
2352
+ * Text des Checklisten-Elements
2353
2353
  */
2354
- checked: boolean;
2354
+ memo: string;
2355
2355
 
2356
2356
  /**
2357
- * Text des Checklisten-Elements
2357
+ * Ist das Element "angehakt"?
2358
2358
  */
2359
- memo: string;
2359
+ checked: boolean;
2360
2360
 
2361
2361
  /**
2362
2362
  * Unique identifier of the Object
@@ -2467,14 +2467,14 @@ export interface CrmDeal {
2467
2467
  info: MetaInfo;
2468
2468
 
2469
2469
  /**
2470
- * Weitere Teilnehmer vom Auftraggeber
2470
+ * Zu Erledigen von Benutzer (zugeordneter Benutzer)
2471
2471
  */
2472
- additionalParticipantsOfCustomer: Array<CrmParticipant>;
2472
+ assignedUserRef: ApiObjectReference;
2473
2473
 
2474
2474
  /**
2475
- * Zu Erledigen von Benutzer (zugeordneter Benutzer)
2475
+ * Weitere Teilnehmer vom Auftraggeber
2476
2476
  */
2477
- assignedUserRef: ApiObjectReference;
2477
+ additionalParticipantsOfCustomer: Array<CrmParticipant>;
2478
2478
 
2479
2479
  /**
2480
2480
  * Chance (in Prozent)
@@ -2773,14 +2773,14 @@ export interface CrmProject {
2773
2773
  billedTimes: number;
2774
2774
 
2775
2775
  /**
2776
- * Geplanter Projektzeitraum (von)
2776
+ * Einkaufsbelege
2777
2777
  */
2778
- plannedProjectPeriodFrom: ScriptingDate;
2778
+ purchaseDocumentRefs: Array<DocumentRef>;
2779
2779
 
2780
2780
  /**
2781
- * Einkaufsbelege
2781
+ * Geplanter Projektzeitraum (von)
2782
2782
  */
2783
- purchaseDocumentRefs: Array<DocumentRef>;
2783
+ plannedProjectPeriodFrom: ScriptingDate;
2784
2784
 
2785
2785
  /**
2786
2786
  * Verkaufsbelege
@@ -2808,14 +2808,14 @@ export interface CrmProject {
2808
2808
  info: MetaInfo;
2809
2809
 
2810
2810
  /**
2811
- * Weitere Teilnehmer vom Auftraggeber
2811
+ * Projektleiter vom Auftraggeber
2812
2812
  */
2813
- additionalParticipantsOfCustomer: Array<CrmParticipant>;
2813
+ projectManagerOfCustomer: CrmParticipant;
2814
2814
 
2815
2815
  /**
2816
- * Projektleiter vom Auftraggeber
2816
+ * Weitere Teilnehmer vom Auftraggeber
2817
2817
  */
2818
- projectManagerOfCustomer: CrmParticipant;
2818
+ additionalParticipantsOfCustomer: Array<CrmParticipant>;
2819
2819
 
2820
2820
  /**
2821
2821
  * Gesamt beauftragte Zeit in Sekunden
@@ -3438,14 +3438,14 @@ export interface CurrencyReference {
3438
3438
  export interface Customer {
3439
3439
 
3440
3440
  /**
3441
- * reference to customer group
3441
+ * Option für die Stapelverarbeitung
3442
3442
  */
3443
- customerGroupRef: ApiObjectReference;
3443
+ stackProcessingType: AccountOrderStackProcessingType;
3444
3444
 
3445
3445
  /**
3446
- * Option für die Stapelverarbeitung
3446
+ * reference to customer group
3447
3447
  */
3448
- stackProcessingType: AccountOrderStackProcessingType;
3448
+ customerGroupRef: ApiObjectReference;
3449
3449
 
3450
3450
  /**
3451
3451
  * Kreditlimit
@@ -3453,14 +3453,14 @@ export interface Customer {
3453
3453
  maximalLoan: number;
3454
3454
 
3455
3455
  /**
3456
- * collective billable
3456
+ * Maximal mögliche Lieferungen
3457
3457
  */
3458
- collectiveBillable: boolean;
3458
+ maxDeliveries: number;
3459
3459
 
3460
3460
  /**
3461
- * Maximal mögliche Lieferungen
3461
+ * collective billable
3462
3462
  */
3463
- maxDeliveries: number;
3463
+ collectiveBillable: boolean;
3464
3464
 
3465
3465
  /**
3466
3466
  * Hat der Kunde eine Liefersperre?
@@ -3503,14 +3503,14 @@ export interface Customer {
3503
3503
  info: MetaInfo;
3504
3504
 
3505
3505
  /**
3506
- * reference to the delivery method
3506
+ * tax able or tax free
3507
3507
  */
3508
- deliveryMethodRef: ApiObjectReference;
3508
+ taxable: boolean;
3509
3509
 
3510
3510
  /**
3511
- * tax able or tax free
3511
+ * reference to the delivery method
3512
3512
  */
3513
- taxable: boolean;
3513
+ deliveryMethodRef: ApiObjectReference;
3514
3514
 
3515
3515
  /**
3516
3516
  * active true/false
@@ -3752,14 +3752,14 @@ export interface DeliveryTerm {
3752
3752
  id: number;
3753
3753
 
3754
3754
  /**
3755
- * free shipping net value
3755
+ * Versandkostenartikel
3756
3756
  */
3757
- freeShippingNetValue: number;
3757
+ shippingCostArticleRef: ApiObjectReference;
3758
3758
 
3759
3759
  /**
3760
- * Versandkostenartikel
3760
+ * free shipping net value
3761
3761
  */
3762
- shippingCostArticleRef: ApiObjectReference;
3762
+ freeShippingNetValue: number;
3763
3763
 
3764
3764
  /**
3765
3765
  * MetaInformations for this Object
@@ -3815,14 +3815,14 @@ export interface Document {
3815
3815
  totalVat: number;
3816
3816
 
3817
3817
  /**
3818
- * Standardlager für neue Positionen
3818
+ * Name der bestellenden Person
3819
3819
  */
3820
- defaultStorageRef: ApiObjectReference;
3820
+ orderedBy: string;
3821
3821
 
3822
3822
  /**
3823
- * Name der bestellenden Person
3823
+ * Standardlager für neue Positionen
3824
3824
  */
3825
- orderedBy: string;
3825
+ defaultStorageRef: ApiObjectReference;
3826
3826
 
3827
3827
  /**
3828
3828
  * Lieferadresse
@@ -3858,9 +3858,9 @@ negativer Wert: überzahlter Betrag / Rückgeld
3858
3858
  deliveryQuantityPackages: number;
3859
3859
 
3860
3860
  /**
3861
- * Bestellnummer aus Vorbeleg
3861
+ * Steuerpflichtig oder steuerfrei
3862
3862
  */
3863
- referencedOrderNumber: string;
3863
+ taxable: boolean;
3864
3864
 
3865
3865
  /**
3866
3866
  * Leitweg-ID
@@ -3868,9 +3868,9 @@ negativer Wert: überzahlter Betrag / Rückgeld
3868
3868
  buyerReference: string;
3869
3869
 
3870
3870
  /**
3871
- * Steuerpflichtig oder steuerfrei
3871
+ * Bestellnummer aus Vorbeleg
3872
3872
  */
3873
- taxable: boolean;
3873
+ referencedOrderNumber: string;
3874
3874
 
3875
3875
  /**
3876
3876
  * Preisanpassungen - Belegpositionssumme Basiswährung
@@ -4045,14 +4045,14 @@ true wenn die Quittung bezahlt ist
4045
4045
  calculationMode: CalculationMode;
4046
4046
 
4047
4047
  /**
4048
- * Referenz auf Zahlungsbedingung
4048
+ * Wird vom Workflow verarbeitet?
4049
4049
  */
4050
- paymentTermRef: PaymentTermRef;
4050
+ processedByWorkflow: boolean;
4051
4051
 
4052
4052
  /**
4053
- * Wird vom Workflow verarbeitet?
4053
+ * Referenz auf Zahlungsbedingung
4054
4054
  */
4055
- processedByWorkflow: boolean;
4055
+ paymentTermRef: PaymentTermRef;
4056
4056
 
4057
4057
  /**
4058
4058
  * Preisanpassungen - Beleg Basiswährung
@@ -4085,14 +4085,14 @@ true wenn die Quittung bezahlt ist
4085
4085
  defaultAddress: DocumentAddress;
4086
4086
 
4087
4087
  /**
4088
- * Leistungsdatum
4088
+ * Verarbeitungsoption für Stapel
4089
4089
  */
4090
- performanceDate: ScriptingDate;
4090
+ stackProcessingType: OrderStackProcessingType;
4091
4091
 
4092
4092
  /**
4093
- * Verarbeitungsoption für Stapel
4093
+ * Leistungsdatum
4094
4094
  */
4095
- stackProcessingType: OrderStackProcessingType;
4095
+ performanceDate: ScriptingDate;
4096
4096
 
4097
4097
  /**
4098
4098
  * Ist der Streckengeschäfts-Beleg zur Rechnung freigegeben?
@@ -4120,14 +4120,14 @@ true wenn die Quittung bezahlt ist
4120
4120
  additionalInfo: DocumentAdditionalInfo;
4121
4121
 
4122
4122
  /**
4123
- * skontierbarer Rechnungsbetrag Basiswährung
4123
+ * Bestelldatum
4124
4124
  */
4125
- baseCashDiscountableTotalGrossPrice: number;
4125
+ orderedOn: ScriptingDate;
4126
4126
 
4127
4127
  /**
4128
- * Bestelldatum
4128
+ * skontierbarer Rechnungsbetrag Basiswährung
4129
4129
  */
4130
- orderedOn: ScriptingDate;
4130
+ baseCashDiscountableTotalGrossPrice: number;
4131
4131
 
4132
4132
  /**
4133
4133
  * MetaInformations for this Object
@@ -4269,15 +4269,22 @@ true wenn die Quittung bezahlt ist
4269
4269
  */
4270
4270
  shippingCosts: Array<DocumentShippingCost>;
4271
4271
 
4272
+ /**
4273
+ * Umsatzsteuer-Identifikationsnummer
4274
+ */
4275
+ taxIdentificationNumber: string;
4276
+
4272
4277
  /**
4273
4278
  * Statusinstanz des Belegs
4274
4279
  */
4275
4280
  documentState: DocumentTypeState;
4276
4281
 
4277
4282
  /**
4278
- * Umsatzsteuer-Identifikationsnummer
4283
+ * Ist die Quittung ausbalanciert, also bezahlt und kein Rückgeld
4284
+ true wenn die Quittung ausbalanciert ist
4285
+
4279
4286
  */
4280
- taxIdentificationNumber: string;
4287
+ posReceiptBalanced: boolean;
4281
4288
 
4282
4289
  /**
4283
4290
  * Rückgeld
@@ -4289,13 +4296,6 @@ true wenn die Quittung bezahlt ist
4289
4296
  */
4290
4297
  deliveryTermRef: ApiObjectReference;
4291
4298
 
4292
- /**
4293
- * Ist die Quittung ausbalanciert, also bezahlt und kein Rückgeld
4294
- true wenn die Quittung ausbalanciert ist
4295
-
4296
- */
4297
- posReceiptBalanced: boolean;
4298
-
4299
4299
  /**
4300
4300
  * Gesamtbruttogewicht
4301
4301
  */
@@ -4694,18 +4694,18 @@ export interface DocumentContractDetail {
4694
4694
  /**
4695
4695
  * Laufzeit bis
4696
4696
  */
4697
- runtimeToDate: ScriptingDate;
4698
-
4699
- /**
4700
- * Letztmöglicher kündigungstermin des Anbieters
4701
- */
4702
- lastProviderCancellationDate: ScriptingDate;
4697
+ runtimeToDate: ScriptingDate;
4703
4698
 
4704
4699
  /**
4705
4700
  * Nächste Fälligkeit
4706
4701
  */
4707
4702
  nextDueDate: ScriptingDate;
4708
4703
 
4704
+ /**
4705
+ * Letztmöglicher kündigungstermin des Anbieters
4706
+ */
4707
+ lastProviderCancellationDate: ScriptingDate;
4708
+
4709
4709
  /**
4710
4710
  * Letztmöglicher kündigungstermin des Kunden
4711
4711
  */
@@ -4939,14 +4939,14 @@ export interface DocumentLine {
4939
4939
  number: string;
4940
4940
 
4941
4941
  /**
4942
- * Referenz zur Kundenauftragszeile
4942
+ * Gesamtbruttogewicht
4943
4943
  */
4944
- customerOrderLineRef: DocumentLineRef;
4944
+ totalGrossWeight: number;
4945
4945
 
4946
4946
  /**
4947
- * Gesamtbruttogewicht
4947
+ * Referenz zur Kundenauftragszeile
4948
4948
  */
4949
- totalGrossWeight: number;
4949
+ customerOrderLineRef: DocumentLineRef;
4950
4950
 
4951
4951
  /**
4952
4952
  * skontierbare Position?
@@ -4964,9 +4964,9 @@ export interface DocumentLine {
4964
4964
  price: number;
4965
4965
 
4966
4966
  /**
4967
- * Gesamtpreis Position in Basiswährung
4967
+ * FiBu-Buchung
4968
4968
  */
4969
- baseTotalLinePrice: number;
4969
+ financeBooking: DocumentFinanceBooking;
4970
4970
 
4971
4971
  /**
4972
4972
  * Positionstyp
@@ -4974,9 +4974,9 @@ export interface DocumentLine {
4974
4974
  lineType: DocumentLineType;
4975
4975
 
4976
4976
  /**
4977
- * FiBu-Buchung
4977
+ * Gesamtpreis Position in Basiswährung
4978
4978
  */
4979
- financeBooking: DocumentFinanceBooking;
4979
+ baseTotalLinePrice: number;
4980
4980
 
4981
4981
  /**
4982
4982
  * vorgeorderte Menge in Pickvorgang
@@ -5019,14 +5019,14 @@ export interface DocumentLine {
5019
5019
  externalReferenceVds: string;
5020
5020
 
5021
5021
  /**
5022
- * Preis pro Einheit in Basiswährung
5022
+ * Serientyp
5023
5023
  */
5024
- basePrice: number;
5024
+ serialType: ArticleSerialType;
5025
5025
 
5026
5026
  /**
5027
- * Serientyp
5027
+ * Preis pro Einheit in Basiswährung
5028
5028
  */
5029
- serialType: ArticleSerialType;
5029
+ basePrice: number;
5030
5030
 
5031
5031
  /**
5032
5032
  * MetaInformations for this Object
@@ -5159,14 +5159,14 @@ export interface DocumentLine {
5159
5159
  sourceLineRef: DocumentLineRef;
5160
5160
 
5161
5161
  /**
5162
- * Preisherkunft
5162
+ * Referenz zum Lager
5163
5163
  */
5164
- priceOrigin: ProductPriceOrigin;
5164
+ storage: ApiObjectReference;
5165
5165
 
5166
5166
  /**
5167
- * Referenz zum Lager
5167
+ * Preisherkunft
5168
5168
  */
5169
- storage: ApiObjectReference;
5169
+ priceOrigin: ProductPriceOrigin;
5170
5170
 
5171
5171
  /**
5172
5172
  * Preisermittlungskriterien
@@ -5189,14 +5189,14 @@ export interface DocumentLine {
5189
5189
  unitType: UnitTypeReference;
5190
5190
 
5191
5191
  /**
5192
- * Referenz zur Basiszeile
5192
+ * Zubehör Einfügeart
5193
5193
  */
5194
- baseLineId: number;
5194
+ insertTerm: AccessoryInsertTerm;
5195
5195
 
5196
5196
  /**
5197
- * Zubehör Einfügeart
5197
+ * Referenz zur Basiszeile
5198
5198
  */
5199
- insertTerm: AccessoryInsertTerm;
5199
+ baseLineId: number;
5200
5200
 
5201
5201
  /**
5202
5202
  * Einheit Bruttogewicht
@@ -5224,14 +5224,14 @@ export interface DocumentLine {
5224
5224
  productType: ProductType;
5225
5225
 
5226
5226
  /**
5227
- * Nettoverkaufswert der Position in Basiswährung
5227
+ * Vertragsinformationen
5228
5228
  */
5229
- baseSalesValueNet: number;
5229
+ contractDetail: DocumentContractDetail;
5230
5230
 
5231
5231
  /**
5232
- * Vertragsinformationen
5232
+ * Nettoverkaufswert der Position in Basiswährung
5233
5233
  */
5234
- contractDetail: DocumentContractDetail;
5234
+ baseSalesValueNet: number;
5235
5235
 
5236
5236
  /**
5237
5237
  * Einheit Nettogewicht
@@ -5463,14 +5463,14 @@ export interface DocumentLineComponent {
5463
5463
  custom: EavDocumentlinecomponent;
5464
5464
 
5465
5465
  /**
5466
- * Gelieferte Menge
5466
+ * Referenz auf den Artikel der Komponente
5467
5467
  */
5468
- quantityCommitted: number;
5468
+ articleId: number;
5469
5469
 
5470
5470
  /**
5471
- * Referenz auf den Artikel der Komponente
5471
+ * Gelieferte Menge
5472
5472
  */
5473
- articleId: number;
5473
+ quantityCommitted: number;
5474
5474
 
5475
5475
  /**
5476
5476
  * Beschreibung des Artikels
@@ -5718,14 +5718,14 @@ export interface DocumentLinePosDetail {
5718
5718
  externalPaymentStatus: PosPaymentStatus;
5719
5719
 
5720
5720
  /**
5721
- * Externe Payment-ID für Verbindung zum Payment-Backend
5721
+ * Typ der Position
5722
5722
  */
5723
- externalPaymentId: string;
5723
+ posLineType: PosLineType;
5724
5724
 
5725
5725
  /**
5726
- * Typ der Position
5726
+ * Externe Payment-ID für Verbindung zum Payment-Backend
5727
5727
  */
5728
- posLineType: PosLineType;
5728
+ externalPaymentId: string;
5729
5729
 
5730
5730
  /**
5731
5731
  * Unique identifier of the Object
@@ -5943,14 +5943,14 @@ export interface DocumentPosPayment {
5943
5943
  externalPaymentErrorMessage: string;
5944
5944
 
5945
5945
  /**
5946
- * Externe Payment-ID für Verbindung zum Payment-Backend
5946
+ * Typ der Position
5947
5947
  */
5948
- externalPaymentId: string;
5948
+ posLineType: PosLineType;
5949
5949
 
5950
5950
  /**
5951
- * Typ der Position
5951
+ * Externe Payment-ID für Verbindung zum Payment-Backend
5952
5952
  */
5953
- posLineType: PosLineType;
5953
+ externalPaymentId: string;
5954
5954
 
5955
5955
  /**
5956
5956
  * Unique identifier of the Object
@@ -6073,14 +6073,14 @@ export interface DocumentRef {
6073
6073
  export interface DocumentShippingCost {
6074
6074
 
6075
6075
  /**
6076
- * Die Versandkosten
6076
+ * Wurden die Versandkosten manuell eingetragen?
6077
6077
  */
6078
- costs: number;
6078
+ manualCosts: boolean;
6079
6079
 
6080
6080
  /**
6081
- * Wurden die Versandkosten manuell eingetragen?
6081
+ * Die Versandkosten
6082
6082
  */
6083
- manualCosts: boolean;
6083
+ costs: number;
6084
6084
 
6085
6085
  /**
6086
6086
  * Keine Versandkosten (freier Versand)
@@ -7048,14 +7048,14 @@ export interface PaymentMethod {
7048
7048
  daysToAddForFollowup: number;
7049
7049
 
7050
7050
  /**
7051
- * external Payment Id
7051
+ * Die Business Transaction
7052
7052
  */
7053
- externalPaymentId: string;
7053
+ businessTransaction: ApiObjectReference;
7054
7054
 
7055
7055
  /**
7056
- * Die Business Transaction
7056
+ * external Payment Id
7057
7057
  */
7058
- businessTransaction: ApiObjectReference;
7058
+ externalPaymentId: string;
7059
7059
 
7060
7060
  /**
7061
7061
  * Unique identifier of the Object
@@ -7422,14 +7422,14 @@ export interface Picklist {
7422
7422
  export interface PicklistLine {
7423
7423
 
7424
7424
  /**
7425
- * Pickbox, mit der diese Position gesammelt werden soll
7425
+ * Gesammelte Menge der Position
7426
7426
  */
7427
- pickTrolleyBoxRef: ApiObjectReference;
7427
+ quantityCollected: number;
7428
7428
 
7429
7429
  /**
7430
- * Gesammelte Menge der Position
7430
+ * Pickbox, mit der diese Position gesammelt werden soll
7431
7431
  */
7432
- quantityCollected: number;
7432
+ pickTrolleyBoxRef: ApiObjectReference;
7433
7433
 
7434
7434
  /**
7435
7435
  * Komponenten dieser Position, falls es sich bei dieser Position um eine Baugruppe handelt
@@ -7467,14 +7467,14 @@ export interface PicklistLine {
7467
7467
  version: number;
7468
7468
 
7469
7469
  /**
7470
- * ID der Quell-Dokumentposition
7470
+ * Lageranzeigename
7471
7471
  */
7472
- sourceDocumentLineId: number;
7472
+ storageDisplayName: string;
7473
7473
 
7474
7474
  /**
7475
- * Lageranzeigename
7475
+ * ID der Quell-Dokumentposition
7476
7476
  */
7477
- storageDisplayName: string;
7477
+ sourceDocumentLineId: number;
7478
7478
 
7479
7479
  /**
7480
7480
  * Artikelnummer
@@ -7801,15 +7801,20 @@ export interface PicklistTemplate$OrderSelectionOptions {
7801
7801
  */
7802
7802
  maxArticleCountPerOrder: number;
7803
7803
 
7804
+ /**
7805
+ * Alternative Selektion in VQL
7806
+ */
7807
+ alternativeSelectionInVql: string;
7808
+
7804
7809
  /**
7805
7810
  * Maximaler Auftragswert
7806
7811
  */
7807
7812
  maxOrderValue: number;
7808
7813
 
7809
7814
  /**
7810
- * Alternative Selektion in VQL
7815
+ * Nur für Einzelkommissionierung und Konsolidierung: maximale Anzahl zu übernehmender Aufträge
7811
7816
  */
7812
- alternativeSelectionInVql: string;
7817
+ maxOrderCount: number;
7813
7818
 
7814
7819
  /**
7815
7820
  * Nur vollständig lieferbare Positionen
@@ -7821,11 +7826,6 @@ export interface PicklistTemplate$OrderSelectionOptions {
7821
7826
  */
7822
7827
  deliveryDateRange: PicklistTemplate$DateRange;
7823
7828
 
7824
- /**
7825
- * Nur für Einzelkommissionierung und Konsolidierung: maximale Anzahl zu übernehmender Aufträge
7826
- */
7827
- maxOrderCount: number;
7828
-
7829
7829
  /**
7830
7830
  * Selektion über den Bereich vom Belegdatum
7831
7831
  */
@@ -7894,11 +7894,6 @@ export interface PicklistTemplate$PicklistCreationOptions {
7894
7894
  */
7895
7895
  orderPickingTrolleyGroupRef: ApiObjectReference;
7896
7896
 
7897
- /**
7898
- * Lagerplätze vorgeben
7899
- */
7900
- specifyStorageBins: boolean;
7901
-
7902
7897
  /**
7903
7898
  * Der zu verwendende Pickwagen
7904
7899
  */
@@ -7909,6 +7904,11 @@ export interface PicklistTemplate$PicklistCreationOptions {
7909
7904
  */
7910
7905
  picklistOutputReportGroupRef: ApiObjectReference;
7911
7906
 
7907
+ /**
7908
+ * Lagerplätze vorgeben
7909
+ */
7910
+ specifyStorageBins: boolean;
7911
+
7912
7912
  /**
7913
7913
  * Positionen der Pickliste nach Laufwegposition sortieren
7914
7914
  */
@@ -7977,6 +7977,11 @@ export interface PicklistTemplate$PicklistProcessingOptions {
7977
7977
  */
7978
7978
  showShippingFormOnPickingFinish: boolean;
7979
7979
 
7980
+ /**
7981
+ * Sammelbestätigung erlauben
7982
+ */
7983
+ allowFullConfirmation: boolean;
7984
+
7980
7985
  /**
7981
7986
  * Digitale Pickliste verwenden: dabei werden nur die Positionen im Frontend gezeigt und durch Tippen oder Wischen bestätigt
7982
7987
  */
@@ -7987,11 +7992,6 @@ export interface PicklistTemplate$PicklistProcessingOptions {
7987
7992
  */
7988
7993
  allowPickingOfServiceArticles: boolean;
7989
7994
 
7990
- /**
7991
- * Sammelbestätigung erlauben
7992
- */
7993
- allowFullConfirmation: boolean;
7994
-
7995
7995
  /**
7996
7996
  * Nur für Konsolidierung: Lieferbeleg und Versandlabel zum Abschluss scannen
7997
7997
  */
@@ -8274,14 +8274,14 @@ export interface ProductDiscount {
8274
8274
  validFrom: ScriptingDate;
8275
8275
 
8276
8276
  /**
8277
- * Bestimmt die Art des Rabatts
8277
+ * Warengruppe
8278
8278
  */
8279
- modifierType: PriceModifierType;
8279
+ productGroupRef: ApiObjectReference;
8280
8280
 
8281
8281
  /**
8282
- * Warengruppe
8282
+ * Bestimmt die Art des Rabatts
8283
8283
  */
8284
- productGroupRef: ApiObjectReference;
8284
+ modifierType: PriceModifierType;
8285
8285
 
8286
8286
  /**
8287
8287
  * Version Identifier for this Object (for PUT)
@@ -8528,14 +8528,14 @@ export interface ProductPrice {
8528
8528
  qualifier: ProductPriceQualifier;
8529
8529
 
8530
8530
  /**
8531
- * Preisbasis
8531
+ * Aktionpreis
8532
8532
  */
8533
- priceBase: ArticlePriceBase;
8533
+ specialOfferPrice: boolean;
8534
8534
 
8535
8535
  /**
8536
- * Aktionpreis
8536
+ * Preisbasis
8537
8537
  */
8538
- specialOfferPrice: boolean;
8538
+ priceBase: ArticlePriceBase;
8539
8539
 
8540
8540
  /**
8541
8541
  * Gültig bis
@@ -8591,26 +8591,26 @@ export interface Referenceable {
8591
8591
 
8592
8592
  export interface RequestDocument {
8593
8593
 
8594
- /**
8595
- * ID vom Lagerplatz für den Wareneingang (wenn incomingGoodsPickTrolleyId = null)
8596
- */
8597
- incomingGoodsStorageBinId: number;
8598
-
8599
8594
  /**
8600
8595
  * Belegdatum
8601
8596
  */
8602
8597
  documentDate: ScriptingDate;
8603
8598
 
8604
8599
  /**
8605
- * ID der Kassenschublade (bei POS)
8600
+ * ID vom Lagerplatz für den Wareneingang (wenn incomingGoodsPickTrolleyId = null)
8606
8601
  */
8607
- cashDrawerId: number;
8602
+ incomingGoodsStorageBinId: number;
8608
8603
 
8609
8604
  /**
8610
8605
  * Der Anzahlungsbetrag
8611
8606
  */
8612
8607
  depositPaymentAmount: number;
8613
8608
 
8609
+ /**
8610
+ * ID der Kassenschublade (bei POS)
8611
+ */
8612
+ cashDrawerId: number;
8613
+
8614
8614
  /**
8615
8615
  * Leistungsdatum
8616
8616
  */
@@ -8677,14 +8677,14 @@ export interface RequestDocument {
8677
8677
  lines: Array<RequestDocumentLine>;
8678
8678
 
8679
8679
  /**
8680
- * ID der Kasse (bei POS)
8680
+ * Die Vertragsdetails
8681
8681
  */
8682
- posRegisterId: number;
8682
+ contractDetail: DocumentContractDetail;
8683
8683
 
8684
8684
  /**
8685
- * Die Vertragsdetails
8685
+ * ID der Kasse (bei POS)
8686
8686
  */
8687
- contractDetail: DocumentContractDetail;
8687
+ posRegisterId: number;
8688
8688
 
8689
8689
  /**
8690
8690
  * Vorgabelieferant bei Übernahme von Auftrag zu Bestellung(en)
@@ -8805,14 +8805,14 @@ export interface RequestDocumentLine {
8805
8805
  commissions: Array<RequestDocumentLineCommission>;
8806
8806
 
8807
8807
  /**
8808
- * Typ dieser Position
8808
+ * FiBu-Angaben
8809
8809
  */
8810
- lineType: DocumentLineType;
8810
+ financeBooking: DocumentFinanceBooking;
8811
8811
 
8812
8812
  /**
8813
- * FiBu-Angaben
8813
+ * Typ dieser Position
8814
8814
  */
8815
- financeBooking: DocumentFinanceBooking;
8815
+ lineType: DocumentLineType;
8816
8816
 
8817
8817
  /**
8818
8818
  * Für interne Zwecke: Steuersatz in Prozent
@@ -8825,14 +8825,14 @@ export interface RequestDocumentLine {
8825
8825
  dropShippingPolicy: DropShippingPolicy;
8826
8826
 
8827
8827
  /**
8828
- * Positionsnummer der Artikel
8828
+ * (optional) Lager-ID
8829
8829
  */
8830
- positionOfArticleLine: number;
8830
+ storageId: number;
8831
8831
 
8832
8832
  /**
8833
- * (optional) Lager-ID
8833
+ * Positionsnummer der Artikel
8834
8834
  */
8835
- storageId: number;
8835
+ positionOfArticleLine: number;
8836
8836
 
8837
8837
  /**
8838
8838
  * Vertragsdetails zur Belegposition
@@ -9033,14 +9033,14 @@ export interface RequestDocumentText {
9033
9033
  export interface RevenueCalculation {
9034
9034
 
9035
9035
  /**
9036
- * Netto Umsatz
9036
+ * Deckungsbeitrag (absolut)
9037
9037
  */
9038
- salesValue: number;
9038
+ revenue: number;
9039
9039
 
9040
9040
  /**
9041
- * Deckungsbeitrag (absolut)
9041
+ * Netto Umsatz
9042
9042
  */
9043
- revenue: number;
9043
+ salesValue: number;
9044
9044
 
9045
9045
  /**
9046
9046
  * Einkaufspreis
@@ -9409,14 +9409,14 @@ export interface SequencerConfiguration {
9409
9409
  key: string;
9410
9410
 
9411
9411
  /**
9412
- * Alternative configuration used to generate sequences instead of this configuration
9412
+ * Contains details about the sequencer configuration
9413
9413
  */
9414
- alternativeConfiguration: ApiObjectReference;
9414
+ configurationDetail: SequencerConfigurationDetail;
9415
9415
 
9416
9416
  /**
9417
- * Contains details about the sequencer configuration
9417
+ * Alternative configuration used to generate sequences instead of this configuration
9418
9418
  */
9419
- configurationDetail: SequencerConfigurationDetail;
9419
+ alternativeConfiguration: ApiObjectReference;
9420
9420
 
9421
9421
  /**
9422
9422
  * MetaInformations for this Object
@@ -9755,14 +9755,14 @@ export interface ShelfFile {
9755
9755
  version: number;
9756
9756
 
9757
9757
  /**
9758
- * current reference of this file in our storage
9758
+ * meta data
9759
9759
  */
9760
- storageHandle: string;
9760
+ metaDataEntries: Array<ShelfFileMetaData>;
9761
9761
 
9762
9762
  /**
9763
- * meta data
9763
+ * current reference of this file in our storage
9764
9764
  */
9765
- metaDataEntries: Array<ShelfFileMetaData>;
9765
+ storageHandle: string;
9766
9766
 
9767
9767
  /**
9768
9768
  * MetaInformations for this Object
@@ -10241,6 +10241,11 @@ export interface Supplier {
10241
10241
  */
10242
10242
  info: MetaInfo;
10243
10243
 
10244
+ /**
10245
+ * tax able or tax free
10246
+ */
10247
+ taxable: boolean;
10248
+
10244
10249
  /**
10245
10250
  * reference to the delivery method
10246
10251
  */
@@ -10251,11 +10256,6 @@ export interface Supplier {
10251
10256
  */
10252
10257
  supplierGroupRef: ApiObjectReference;
10253
10258
 
10254
- /**
10255
- * tax able or tax free
10256
- */
10257
- taxable: boolean;
10258
-
10259
10259
  /**
10260
10260
  * Mahnen?
10261
10261
  */
@@ -10636,14 +10636,14 @@ export interface User {
10636
10636
  roles: Array<ApiObjectReference>;
10637
10637
 
10638
10638
  /**
10639
- * Referenzierte Kundenbenutzer ID (CustomerUserEntity.id aus vab-manager)
10639
+ * Gruppen
10640
10640
  */
10641
- referencedCustomerUserId: number;
10641
+ groups: Array<ApiObjectReference>;
10642
10642
 
10643
10643
  /**
10644
- * Gruppen
10644
+ * Referenzierte Kundenbenutzer ID (CustomerUserEntity.id aus vab-manager)
10645
10645
  */
10646
- groups: Array<ApiObjectReference>;
10646
+ referencedCustomerUserId: number;
10647
10647
 
10648
10648
  /**
10649
10649
  * Is the user active?
@@ -10666,14 +10666,14 @@ export interface User {
10666
10666
  version: number;
10667
10667
 
10668
10668
  /**
10669
- * is the email verified
10669
+ * first-name
10670
10670
  */
10671
- emailVerified: boolean;
10671
+ firstName: string;
10672
10672
 
10673
10673
  /**
10674
- * first-name
10674
+ * is the email verified
10675
10675
  */
10676
- firstName: string;
10676
+ emailVerified: boolean;
10677
10677
 
10678
10678
  /**
10679
10679
  * email-address
@@ -10747,14 +10747,14 @@ export interface VariantAttributeListing {
10747
10747
  salesChannelRef: ApiObjectReference;
10748
10748
 
10749
10749
  /**
10750
- * Variantenattribut
10750
+ * Freifelder
10751
10751
  */
10752
- variantAttributeRef: ApiObjectReference;
10752
+ custom: EavVariantattributelisting;
10753
10753
 
10754
10754
  /**
10755
- * Freifelder
10755
+ * Variantenattribut
10756
10756
  */
10757
- custom: EavVariantattributelisting;
10757
+ variantAttributeRef: ApiObjectReference;
10758
10758
 
10759
10759
  /**
10760
10760
  * Unique identifier of the Object