@vario-software/types 2026.33.1 → 2026.33.2

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.
@@ -144,14 +144,14 @@ export interface Account {
144
144
  payablesSum: number;
145
145
 
146
146
  /**
147
- * Summe Forderungen
147
+ * Kostenstelle
148
148
  */
149
- receivablesSum: number;
149
+ costCenter: string;
150
150
 
151
151
  /**
152
- * Kostenstelle
152
+ * Summe Forderungen
153
153
  */
154
- costCenter: string;
154
+ receivablesSum: number;
155
155
 
156
156
  /**
157
157
  * Custom account data
@@ -302,14 +302,14 @@ export interface AccountAddress {
302
302
  postOfficeBox: string;
303
303
 
304
304
  /**
305
- * Street
305
+ * Country code
306
306
  */
307
- street: string;
307
+ countryCode: string;
308
308
 
309
309
  /**
310
- * Country code
310
+ * Street
311
311
  */
312
- countryCode: string;
312
+ street: string;
313
313
 
314
314
  /**
315
315
  * Unique identifier of the Object
@@ -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
  mainBankAccountType: TaxPerformanceLocationType;
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
@@ -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
  * is this product purchasable
@@ -1285,14 +1285,14 @@ export interface Article {
1285
1285
  capacity: number;
1286
1286
 
1287
1287
  /**
1288
- * Mindestrestlaufzeit Eingang (Tage): Minimale Restlaufzeit in Tagen, die ein Artikel bei der Einbuchung in ein Verkaufslager noch aufweisen muss
1288
+ * gross sales prices
1289
1289
  */
1290
- minimumRemainingDaysBeforeExpiryDateOnGoodsReceipt: number;
1290
+ grossSalesPrice: number;
1291
1291
 
1292
1292
  /**
1293
- * gross sales prices
1293
+ * Mindestrestlaufzeit Eingang (Tage): Minimale Restlaufzeit in Tagen, die ein Artikel bei der Einbuchung in ein Verkaufslager noch aufweisen muss
1294
1294
  */
1295
- grossSalesPrice: number;
1295
+ minimumRemainingDaysBeforeExpiryDateOnGoodsReceipt: number;
1296
1296
 
1297
1297
  /**
1298
1298
  * Vorgabe Herstellungskosten
@@ -1310,14 +1310,14 @@ export interface Article {
1310
1310
  permissibleForOrderProposal: boolean;
1311
1311
 
1312
1312
  /**
1313
- * Versandlabeldruck
1313
+ * reference to Product
1314
1314
  */
1315
- shippingLabelPrinting: boolean;
1315
+ productRef: ApiObjectReference;
1316
1316
 
1317
1317
  /**
1318
- * reference to Product
1318
+ * Versandlabeldruck
1319
1319
  */
1320
- productRef: ApiObjectReference;
1320
+ shippingLabelPrinting: boolean;
1321
1321
 
1322
1322
  /**
1323
1323
  * alternative name of this product
@@ -1604,14 +1604,14 @@ export interface ArticleCustomer {
1604
1604
  productPrices: Array<ProductPrice>;
1605
1605
 
1606
1606
  /**
1607
- * Referenced Article
1607
+ * Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
1608
1608
  */
1609
- articleId: number;
1609
+ useDeviatingArticleDescription: boolean;
1610
1610
 
1611
1611
  /**
1612
- * Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
1612
+ * Referenced Article
1613
1613
  */
1614
- useDeviatingArticleDescription: boolean;
1614
+ articleId: number;
1615
1615
 
1616
1616
  /**
1617
1617
  * Aktiv?
@@ -1649,9 +1649,9 @@ export interface ArticleCustomer {
1649
1649
  defaultGrossPrice: number;
1650
1650
 
1651
1651
  /**
1652
- * Art der Preisermittlung
1652
+ * Artikelnummer
1653
1653
  */
1654
- priceDetermination: ArticleCustomerPriceDetermination;
1654
+ articleNumber: string;
1655
1655
 
1656
1656
  /**
1657
1657
  * Abweichende Produktnummer
@@ -1659,9 +1659,9 @@ export interface ArticleCustomer {
1659
1659
  deviatingArticleNumber: string;
1660
1660
 
1661
1661
  /**
1662
- * Artikelnummer
1662
+ * Art der Preisermittlung
1663
1663
  */
1664
- articleNumber: string;
1664
+ priceDetermination: ArticleCustomerPriceDetermination;
1665
1665
 
1666
1666
  /**
1667
1667
  * Abweichender Produktidentifer (z.B. Barcode)
@@ -1741,14 +1741,14 @@ export interface ArticleListing {
1741
1741
  identifiers: WithDefaults<List<ArticleIdentifier>>;
1742
1742
 
1743
1743
  /**
1744
- * custom data
1744
+ * is this product sellable without any quantity at the stock
1745
1745
  */
1746
- custom: EavArticleListing;
1746
+ sellableWithoutStock: boolean;
1747
1747
 
1748
1748
  /**
1749
- * is this product sellable without any quantity at the stock
1749
+ * custom data
1750
1750
  */
1751
- sellableWithoutStock: boolean;
1751
+ custom: EavArticleListing;
1752
1752
 
1753
1753
  /**
1754
1754
  * description custom data
@@ -2157,14 +2157,14 @@ export interface ArticleSupplier {
2157
2157
  info: MetaInfo;
2158
2158
 
2159
2159
  /**
2160
- * Referenced Article name
2160
+ * Verpackungseinheit
2161
2161
  */
2162
- articleName: string;
2162
+ packagingUnit: number;
2163
2163
 
2164
2164
  /**
2165
- * Verpackungseinheit
2165
+ * Referenced Article name
2166
2166
  */
2167
- packagingUnit: number;
2167
+ articleName: string;
2168
2168
 
2169
2169
  /**
2170
2170
  * Lieferanten-Preise
@@ -2328,14 +2328,14 @@ export interface Asset {
2328
2328
  billingAddressRef: ApiObjectReference;
2329
2329
 
2330
2330
  /**
2331
- * Vertrag
2331
+ * Zusatzadresse
2332
2332
  */
2333
- contractRef: ApiObjectReference;
2333
+ accountAddressRef: ApiObjectReference;
2334
2334
 
2335
2335
  /**
2336
- * Zusatzadresse
2336
+ * Vertrag
2337
2337
  */
2338
- accountAddressRef: ApiObjectReference;
2338
+ contractRef: ApiObjectReference;
2339
2339
 
2340
2340
  /**
2341
2341
  * Asset-Nummer
@@ -2496,14 +2496,14 @@ export interface BundleSchema {
2496
2496
  export interface BundleUnitTypeRatio {
2497
2497
 
2498
2498
  /**
2499
- * Verhältnis-Mengeneinheit
2499
+ * Mengeneinheit
2500
2500
  */
2501
- relationUnitTypeRef: UnitTypeReference;
2501
+ baseUnitTypeRef: UnitTypeReference;
2502
2502
 
2503
2503
  /**
2504
- * Mengeneinheit
2504
+ * Verhältnis-Mengeneinheit
2505
2505
  */
2506
- baseUnitTypeRef: UnitTypeReference;
2506
+ relationUnitTypeRef: UnitTypeReference;
2507
2507
 
2508
2508
  /**
2509
2509
  * Unique identifier of the Object
@@ -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)
@@ -3028,14 +3028,14 @@ export interface CrmDeal {
3028
3028
  info: MetaInfo;
3029
3029
 
3030
3030
  /**
3031
- * Weitere Teilnehmer vom Auftraggeber
3031
+ * Zu Erledigen von Benutzer (zugeordneter Benutzer)
3032
3032
  */
3033
- additionalParticipantsOfCustomer: Array<CrmParticipant>;
3033
+ assignedUserRef: ApiObjectReference;
3034
3034
 
3035
3035
  /**
3036
- * Zu Erledigen von Benutzer (zugeordneter Benutzer)
3036
+ * Weitere Teilnehmer vom Auftraggeber
3037
3037
  */
3038
- assignedUserRef: ApiObjectReference;
3038
+ additionalParticipantsOfCustomer: Array<CrmParticipant>;
3039
3039
 
3040
3040
  /**
3041
3041
  * Chance (in Prozent)
@@ -3314,14 +3314,14 @@ export interface CrmProject {
3314
3314
  priorityRef: ApiObjectReference;
3315
3315
 
3316
3316
  /**
3317
- * Projektleiter vom Auftragnehmer
3317
+ * Phase
3318
3318
  */
3319
- projectManagerOfContractor: CrmParticipant;
3319
+ phaseRef: ApiObjectReference;
3320
3320
 
3321
3321
  /**
3322
- * Phase
3322
+ * Projektleiter vom Auftragnehmer
3323
3323
  */
3324
- phaseRef: ApiObjectReference;
3324
+ projectManagerOfContractor: CrmParticipant;
3325
3325
 
3326
3326
  /**
3327
3327
  * Aufgaben-Nummer
@@ -3339,14 +3339,14 @@ export interface CrmProject {
3339
3339
  billedTimes: number;
3340
3340
 
3341
3341
  /**
3342
- * Einkaufsbelege
3342
+ * Geplanter Projektzeitraum (von)
3343
3343
  */
3344
- purchaseDocumentRefs: Array<DocumentRef>;
3344
+ plannedProjectPeriodFrom: ScriptingDate;
3345
3345
 
3346
3346
  /**
3347
- * Geplanter Projektzeitraum (von)
3347
+ * Einkaufsbelege
3348
3348
  */
3349
- plannedProjectPeriodFrom: ScriptingDate;
3349
+ purchaseDocumentRefs: Array<DocumentRef>;
3350
3350
 
3351
3351
  /**
3352
3352
  * Verkaufsbelege
@@ -3379,14 +3379,14 @@ export interface CrmProject {
3379
3379
  info: MetaInfo;
3380
3380
 
3381
3381
  /**
3382
- * Weitere Teilnehmer vom Auftraggeber
3382
+ * Projektleiter vom Auftraggeber
3383
3383
  */
3384
- additionalParticipantsOfCustomer: Array<CrmParticipant>;
3384
+ projectManagerOfCustomer: CrmParticipant;
3385
3385
 
3386
3386
  /**
3387
- * Projektleiter vom Auftraggeber
3387
+ * Weitere Teilnehmer vom Auftraggeber
3388
3388
  */
3389
- projectManagerOfCustomer: CrmParticipant;
3389
+ additionalParticipantsOfCustomer: Array<CrmParticipant>;
3390
3390
 
3391
3391
  /**
3392
3392
  * Übergeordnete CRM-Objekte
@@ -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
@@ -3575,14 +3575,14 @@ export interface CrmState {
3575
3575
  readyToBill: boolean;
3576
3576
 
3577
3577
  /**
3578
- * Handelt es sich um einen Anfang-Status
3578
+ * Kommentar bei negativem Abschluß erforderlich
3579
3579
  */
3580
- startState: boolean;
3580
+ needsCommentOnNegativeFinish: boolean;
3581
3581
 
3582
3582
  /**
3583
- * Kommentar bei negativem Abschluß erforderlich
3583
+ * Handelt es sich um einen Anfang-Status
3584
3584
  */
3585
- needsCommentOnNegativeFinish: boolean;
3585
+ startState: boolean;
3586
3586
 
3587
3587
  /**
3588
3588
  * MetaInformations for this Object
@@ -3630,11 +3630,6 @@ export interface CrmSubType {
3630
3630
 
3631
3631
  export interface CrmTask {
3632
3632
 
3633
- /**
3634
- * Verantwortlicher Teilnehmer (Ansprechpartner)
3635
- */
3636
- mainResponsibleParticipantRef: ApiObjectReference;
3637
-
3638
3633
  /**
3639
3634
  * Angebot
3640
3635
  */
@@ -3645,6 +3640,11 @@ export interface CrmTask {
3645
3640
  */
3646
3641
  reminders: Array<CrmReminder>;
3647
3642
 
3643
+ /**
3644
+ * Verantwortlicher Teilnehmer (Ansprechpartner)
3645
+ */
3646
+ mainResponsibleParticipantRef: ApiObjectReference;
3647
+
3648
3648
  /**
3649
3649
  * Notizen
3650
3650
  */
@@ -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
@@ -4397,14 +4397,14 @@ export interface DeliveryTerm {
4397
4397
  label: string;
4398
4398
 
4399
4399
  /**
4400
- * Sprache des Accounts
4400
+ * information, when the shipping charges should be calculated
4401
4401
  */
4402
- languageCode: string;
4402
+ calculateFreightChargesWithType: CalculateFreightChargesWithType;
4403
4403
 
4404
4404
  /**
4405
- * information, when the shipping charges should be calculated
4405
+ * Sprache des Accounts
4406
4406
  */
4407
- calculateFreightChargesWithType: CalculateFreightChargesWithType;
4407
+ languageCode: string;
4408
4408
 
4409
4409
  /**
4410
4410
  * calculate shipping charges per parcel
@@ -4417,14 +4417,14 @@ export interface DeliveryTerm {
4417
4417
  version: number;
4418
4418
 
4419
4419
  /**
4420
- * information, how the shipping charges should be calculated
4420
+ * translations
4421
4421
  */
4422
- calculateFreightChargesFromType: CalculateFreightChargesFromType;
4422
+ translations: Array<DocumentTypeTerm>;
4423
4423
 
4424
4424
  /**
4425
- * translations
4425
+ * information, how the shipping charges should be calculated
4426
4426
  */
4427
- translations: Array<DocumentTypeTerm>;
4427
+ calculateFreightChargesFromType: CalculateFreightChargesFromType;
4428
4428
 
4429
4429
  /**
4430
4430
  * Lieferarten
@@ -4625,14 +4625,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
4625
4625
  accountId: number;
4626
4626
 
4627
4627
  /**
4628
- * Länderkennzeichen Leistungsland (ISO Alpha-3)
4628
+ * Länderkennzeichen Ursprungsland (ISO Alpha-3)
4629
4629
  */
4630
- performanceCountryCode: string;
4630
+ sourceCountryCode: string;
4631
4631
 
4632
4632
  /**
4633
- * Länderkennzeichen Ursprungsland (ISO Alpha-3)
4633
+ * Länderkennzeichen Leistungsland (ISO Alpha-3)
4634
4634
  */
4635
- sourceCountryCode: string;
4635
+ performanceCountryCode: string;
4636
4636
 
4637
4637
  /**
4638
4638
  * Vereinbartes Anzahlungsdatum
@@ -4660,14 +4660,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
4660
4660
  documentDate: ScriptingDate;
4661
4661
 
4662
4662
  /**
4663
- * Reverse-Charge-Verfahren nach §13b UStG?
4663
+ * Endbetragsrundung: Differenz zwischen gerundetem Brutto und (Netto + MwSt)
4664
4664
  */
4665
- taxLiabilityReversed: boolean;
4665
+ roundingAmount: number;
4666
4666
 
4667
4667
  /**
4668
- * Endbetragsrundung: Differenz zwischen gerundetem Brutto und (Netto + MwSt)
4668
+ * Reverse-Charge-Verfahren nach §13b UStG?
4669
4669
  */
4670
- roundingAmount: number;
4670
+ taxLiabilityReversed: boolean;
4671
4671
 
4672
4672
  /**
4673
4673
  * Versanddatum
@@ -4680,14 +4680,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
4680
4680
  supplierNumber: string;
4681
4681
 
4682
4682
  /**
4683
- * Ist der Beleg zur Lieferung freigegeben?
4683
+ * Gesamtpreis brutto
4684
4684
  */
4685
- deliveryApproved: boolean;
4685
+ totalGrossPrice: number;
4686
4686
 
4687
4687
  /**
4688
- * Gesamtpreis brutto
4688
+ * Ist der Beleg zur Lieferung freigegeben?
4689
4689
  */
4690
- totalGrossPrice: number;
4690
+ deliveryApproved: boolean;
4691
4691
 
4692
4692
  /**
4693
4693
  * Kassen-Zahlungspositionen
@@ -4732,14 +4732,14 @@ true wenn die Quittung bezahlt ist
4732
4732
  contractDetail: DocumentContractDetail;
4733
4733
 
4734
4734
  /**
4735
- * Zahlungsplan vorhanden?
4735
+ * Skontofähiger Bruttogesamtbetrag
4736
4736
  */
4737
- paymentPlan: boolean;
4737
+ cashDiscountableTotalGrossPrice: number;
4738
4738
 
4739
4739
  /**
4740
- * Skontofähiger Bruttogesamtbetrag
4740
+ * Zahlungsplan vorhanden?
4741
4741
  */
4742
- cashDiscountableTotalGrossPrice: number;
4742
+ paymentPlan: boolean;
4743
4743
 
4744
4744
  /**
4745
4745
  * Produktionsdetails
@@ -4747,14 +4747,14 @@ true wenn die Quittung bezahlt ist
4747
4747
  fabricationDetail: DocumentFabricationDetail;
4748
4748
 
4749
4749
  /**
4750
- * Berechnungsmodus
4750
+ * Kontonummer der zugehörigen Organisationseinheit
4751
4751
  */
4752
- calculationMode: CalculationMode;
4752
+ accountNumber: string;
4753
4753
 
4754
4754
  /**
4755
- * Kontonummer der zugehörigen Organisationseinheit
4755
+ * Berechnungsmodus
4756
4756
  */
4757
- accountNumber: string;
4757
+ calculationMode: CalculationMode;
4758
4758
 
4759
4759
  /**
4760
4760
  * Referenz auf Zahlungsbedingung
@@ -4767,14 +4767,14 @@ true wenn die Quittung bezahlt ist
4767
4767
  processedByWorkflow: boolean;
4768
4768
 
4769
4769
  /**
4770
- * Telefon an Versender übergeben
4770
+ * Preisanpassungen - Beleg Basiswährung
4771
4771
  */
4772
- forwardPhoneToShipper: boolean;
4772
+ baseTotalDocumentPriceModifier: number;
4773
4773
 
4774
4774
  /**
4775
- * Preisanpassungen - Beleg Basiswährung
4775
+ * Telefon an Versender übergeben
4776
4776
  */
4777
- baseTotalDocumentPriceModifier: number;
4777
+ forwardPhoneToShipper: boolean;
4778
4778
 
4779
4779
  /**
4780
4780
  * Liste der Belegtexte
@@ -4837,14 +4837,14 @@ true wenn die Quittung bezahlt ist
4837
4837
  additionalInfo: DocumentAdditionalInfo;
4838
4838
 
4839
4839
  /**
4840
- * Bestelldatum
4840
+ * skontierbarer Rechnungsbetrag Basiswährung
4841
4841
  */
4842
- orderedOn: ScriptingDate;
4842
+ baseCashDiscountableTotalGrossPrice: number;
4843
4843
 
4844
4844
  /**
4845
- * skontierbarer Rechnungsbetrag Basiswährung
4845
+ * Bestelldatum
4846
4846
  */
4847
- baseCashDiscountableTotalGrossPrice: number;
4847
+ orderedOn: ScriptingDate;
4848
4848
 
4849
4849
  /**
4850
4850
  * MetaInformations for this Object
@@ -4867,14 +4867,14 @@ true wenn die Quittung bezahlt ist
4867
4867
  dropShipping: boolean;
4868
4868
 
4869
4869
  /**
4870
- * Validierungsstatus bei elektronischen Rechnungen
4870
+ * Gesamtpreis netto
4871
4871
  */
4872
- valitoolValidationState: EInvoiceValidationState;
4872
+ totalNetPrice: number;
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
4880
  * Ist der Beleg veröffentlicht (gedruckt, per Mail versendet)?
@@ -4981,6 +4981,11 @@ true wenn die Quittung bezahlt ist
4981
4981
  */
4982
4982
  customerNumber: string;
4983
4983
 
4984
+ /**
4985
+ * Versandkostenpositionen
4986
+ */
4987
+ shippingCosts: Array<DocumentShippingCost>;
4988
+
4984
4989
  /**
4985
4990
  * Statusinstanz des Belegs
4986
4991
  */
@@ -4991,21 +4996,11 @@ true wenn die Quittung bezahlt ist
4991
4996
  */
4992
4997
  taxIdentificationNumber: string;
4993
4998
 
4994
- /**
4995
- * Versandkostenpositionen
4996
- */
4997
- shippingCosts: Array<DocumentShippingCost>;
4998
-
4999
4999
  /**
5000
5000
  * Rückgeld
5001
5001
  */
5002
5002
  posReceiptChangeAmount: number;
5003
5003
 
5004
- /**
5005
- * Referenz auf Lieferbedingung
5006
- */
5007
- deliveryTermRef: ApiObjectReference;
5008
-
5009
5004
  /**
5010
5005
  * Ist die Quittung ausbalanciert, also bezahlt und kein Rückgeld
5011
5006
  true wenn die Quittung ausbalanciert ist
@@ -5013,6 +5008,11 @@ true wenn die Quittung ausbalanciert ist
5013
5008
  */
5014
5009
  posReceiptBalanced: boolean;
5015
5010
 
5011
+ /**
5012
+ * Referenz auf Lieferbedingung
5013
+ */
5014
+ deliveryTermRef: ApiObjectReference;
5015
+
5016
5016
  /**
5017
5017
  * Gesamtbruttogewicht
5018
5018
  */
@@ -5044,14 +5044,14 @@ true wenn die Quittung ausbalanciert ist
5044
5044
  taxIdVerificationState: TaxIdVerificationState;
5045
5045
 
5046
5046
  /**
5047
- * Report-Gruppe, falls vom Standard abweichend
5047
+ * Bestellt durch Ansprechpartner
5048
5048
  */
5049
- reportGroupRef: ApiObjectReference;
5049
+ orderedByPersonRef: ApiObjectReference;
5050
5050
 
5051
5051
  /**
5052
- * Bestellt durch Ansprechpartner
5052
+ * Report-Gruppe, falls vom Standard abweichend
5053
5053
  */
5054
- orderedByPersonRef: ApiObjectReference;
5054
+ reportGroupRef: ApiObjectReference;
5055
5055
  }
5056
5056
 
5057
5057
  export interface DocumentAdditionalInfo {
@@ -5189,14 +5189,14 @@ export interface DocumentAddress {
5189
5189
  postOfficeBox: string;
5190
5190
 
5191
5191
  /**
5192
- * Street
5192
+ * country code IsoAlpha3
5193
5193
  */
5194
- street: string;
5194
+ countryCode: string;
5195
5195
 
5196
5196
  /**
5197
- * country code IsoAlpha3
5197
+ * Street
5198
5198
  */
5199
- countryCode: string;
5199
+ street: string;
5200
5200
 
5201
5201
  /**
5202
5202
  * Unique identifier of the Object
@@ -5254,14 +5254,14 @@ export interface DocumentAddress {
5254
5254
  additionalAddressLine2: string;
5255
5255
 
5256
5256
  /**
5257
- * Lieferbedingungen
5257
+ * Street address number
5258
5258
  */
5259
- deliveryTermRef: ApiObjectReference;
5259
+ streetAddressNumber: string;
5260
5260
 
5261
5261
  /**
5262
- * Street address number
5262
+ * Lieferbedingungen
5263
5263
  */
5264
- streetAddressNumber: string;
5264
+ deliveryTermRef: ApiObjectReference;
5265
5265
 
5266
5266
  /**
5267
5267
  * address line 3
@@ -5404,14 +5404,14 @@ export interface DocumentContractDetail {
5404
5404
  runtimeToDate: ScriptingDate;
5405
5405
 
5406
5406
  /**
5407
- * Nächste Fälligkeit
5407
+ * Letztmöglicher kündigungstermin des Anbieters
5408
5408
  */
5409
- nextDueDate: ScriptingDate;
5409
+ lastProviderCancellationDate: ScriptingDate;
5410
5410
 
5411
5411
  /**
5412
- * Letztmöglicher kündigungstermin des Anbieters
5412
+ * Nächste Fälligkeit
5413
5413
  */
5414
- lastProviderCancellationDate: ScriptingDate;
5414
+ nextDueDate: ScriptingDate;
5415
5415
 
5416
5416
  /**
5417
5417
  * Letztmöglicher kündigungstermin des Kunden
@@ -5662,14 +5662,14 @@ export interface DocumentLine {
5662
5662
  id: number;
5663
5663
 
5664
5664
  /**
5665
- * Positionsnummer über alle Artikelpositionen hinweg
5665
+ * Preis pro Einheit in Basiswährung
5666
5666
  */
5667
- positionOfArticleLine: number;
5667
+ basePrice: number;
5668
5668
 
5669
5669
  /**
5670
- * Preis pro Einheit in Basiswährung
5670
+ * Positionsnummer über alle Artikelpositionen hinweg
5671
5671
  */
5672
- basePrice: number;
5672
+ positionOfArticleLine: number;
5673
5673
 
5674
5674
  /**
5675
5675
  * Serientyp
@@ -5781,6 +5781,11 @@ export interface DocumentLine {
5781
5781
  */
5782
5782
  settledOpenItemDiscountAmount: number;
5783
5783
 
5784
+ /**
5785
+ * Einheit Nettogewicht
5786
+ */
5787
+ netWeightUnit: UnitTypeReference;
5788
+
5784
5789
  /**
5785
5790
  * Nettoverkaufswert der Position in Basiswährung
5786
5791
  */
@@ -5791,11 +5796,6 @@ export interface DocumentLine {
5791
5796
  */
5792
5797
  contractDetail: DocumentContractDetail;
5793
5798
 
5794
- /**
5795
- * Einheit Nettogewicht
5796
- */
5797
- netWeightUnit: UnitTypeReference;
5798
-
5799
5799
  /**
5800
5800
  * Versandkosten-Details; nur gesetzt für Versandkostenpositionen, die als nummerierte Belegposition geführt werden (z.B. Sammelrechnung)
5801
5801
  */
@@ -5842,14 +5842,14 @@ export interface DocumentLine {
5842
5842
  country: CountryReference;
5843
5843
 
5844
5844
  /**
5845
- * Leistungsdatum
5845
+ * Zolltarifnummer
5846
5846
  */
5847
- performanceDate: ScriptingDate;
5847
+ customsTariffNumber: string;
5848
5848
 
5849
5849
  /**
5850
- * Zolltarifnummer
5850
+ * Leistungsdatum
5851
5851
  */
5852
- customsTariffNumber: string;
5852
+ performanceDate: ScriptingDate;
5853
5853
 
5854
5854
  /**
5855
5855
  * wurde aufgelöst in Gebindeartikel
@@ -5927,14 +5927,14 @@ export interface DocumentLine {
5927
5927
  countryRegion: ApiObjectReference;
5928
5928
 
5929
5929
  /**
5930
- * Provisionsursprung
5930
+ * Nettogewicht
5931
5931
  */
5932
- commissionOrigin: DocumentCommissionOrigin;
5932
+ netWeight: number;
5933
5933
 
5934
5934
  /**
5935
- * Nettogewicht
5935
+ * Provisionsursprung
5936
5936
  */
5937
- netWeight: number;
5937
+ commissionOrigin: DocumentCommissionOrigin;
5938
5938
 
5939
5939
  /**
5940
5940
  * Netto-Gesamtpreis (nach Preisänderungen)
@@ -6052,14 +6052,14 @@ export interface DocumentLine {
6052
6052
  custom: EavDocumentline;
6053
6053
 
6054
6054
  /**
6055
- * Artikel
6055
+ * Bemerkung zur OP-Position - wird beim Abschluss in den Kommentar des Offenen Postens übernommen
6056
6056
  */
6057
- articleId: number;
6057
+ settledOpenItemComment: string;
6058
6058
 
6059
6059
  /**
6060
- * Bemerkung zur OP-Position - wird beim Abschluss in den Kommentar des Offenen Postens übernommen
6060
+ * Artikel
6061
6061
  */
6062
- settledOpenItemComment: string;
6062
+ articleId: number;
6063
6063
 
6064
6064
  /**
6065
6065
  * Interne Preisänderungsinformationen
@@ -6241,14 +6241,14 @@ export interface DocumentLineComponent {
6241
6241
  fabricationDetail: DocumentLineComponentFabricationDetail;
6242
6242
 
6243
6243
  /**
6244
- * Referenz auf den Artikel der Komponente
6244
+ * Gelieferte Menge
6245
6245
  */
6246
- articleId: number;
6246
+ quantityCommitted: number;
6247
6247
 
6248
6248
  /**
6249
- * Gelieferte Menge
6249
+ * Referenz auf den Artikel der Komponente
6250
6250
  */
6251
- quantityCommitted: number;
6251
+ articleId: number;
6252
6252
 
6253
6253
  /**
6254
6254
  * Beschreibung des Artikels
@@ -6390,14 +6390,14 @@ export interface DocumentLineFabricationComponent {
6390
6390
  sourceBundleArticleRef: ProductArticleRef;
6391
6391
 
6392
6392
  /**
6393
- * Abweichende Herstellungskosten
6393
+ * Menge
6394
6394
  */
6395
- deviatingUnitPrice: number;
6395
+ quantity: number;
6396
6396
 
6397
6397
  /**
6398
- * Menge
6398
+ * Abweichende Herstellungskosten
6399
6399
  */
6400
- quantity: number;
6400
+ deviatingUnitPrice: number;
6401
6401
 
6402
6402
  /**
6403
6403
  * Beschreibung
@@ -6452,11 +6452,6 @@ export interface DocumentLineFabricationDetail {
6452
6452
  */
6453
6453
  quantityFinished: number;
6454
6454
 
6455
- /**
6456
- * Freifeld
6457
- */
6458
- custom: EavFabricationline;
6459
-
6460
6455
  /**
6461
6456
  * Menge defekt
6462
6457
  */
@@ -6467,6 +6462,11 @@ export interface DocumentLineFabricationDetail {
6467
6462
  */
6468
6463
  serialNumbers: Array<DocumentLineFabricationDetailSerialNumber>;
6469
6464
 
6465
+ /**
6466
+ * Freifeld
6467
+ */
6468
+ custom: EavFabricationline;
6469
+
6470
6470
  /**
6471
6471
  * Menge produziert
6472
6472
  */
@@ -6501,14 +6501,14 @@ export interface DocumentLineFabricationDetailSerialNumber {
6501
6501
  quantityFinished: number;
6502
6502
 
6503
6503
  /**
6504
- * Produzierte Seriennummer
6504
+ * Produzierte/geplante Menge
6505
6505
  */
6506
- serialNumber: ArticleSerialNumber;
6506
+ quantity: number;
6507
6507
 
6508
6508
  /**
6509
- * Produzierte/geplante Menge
6509
+ * Produzierte Seriennummer
6510
6510
  */
6511
- quantity: number;
6511
+ serialNumber: ArticleSerialNumber;
6512
6512
 
6513
6513
  /**
6514
6514
  * Gebuchte Komponenten
@@ -6637,14 +6637,14 @@ export interface DocumentLineRef {
6637
6637
  quantity: number;
6638
6638
 
6639
6639
  /**
6640
- * Belegart
6640
+ * Artikelnummer
6641
6641
  */
6642
- documentType: string;
6642
+ articleNumber: string;
6643
6643
 
6644
6644
  /**
6645
- * Artikelnummer
6645
+ * Belegart
6646
6646
  */
6647
- articleNumber: string;
6647
+ documentType: string;
6648
6648
 
6649
6649
  /**
6650
6650
  * Kurzbezeichnung des Kunden
@@ -6725,14 +6725,14 @@ export interface DocumentLineReturnDetail {
6725
6725
  customerShareOnReduction: number;
6726
6726
 
6727
6727
  /**
6728
- * Lieferbedingung für die Retoure (wie der Kunde zurücksendet)
6728
+ * Auf Retoure warten vor Warenersatz? (nur bei GOODS_EXCHANGE_ITEM_GETS_SEND_BACK)
6729
6729
  */
6730
- deliveryTermRef: ApiObjectReference;
6730
+ waitForReturnBeforeExchange: boolean;
6731
6731
 
6732
6732
  /**
6733
- * Auf Retoure warten vor Warenersatz? (nur bei GOODS_EXCHANGE_ITEM_GETS_SEND_BACK)
6733
+ * Lieferbedingung für die Retoure (wie der Kunde zurücksendet)
6734
6734
  */
6735
- waitForReturnBeforeExchange: boolean;
6735
+ deliveryTermRef: ApiObjectReference;
6736
6736
 
6737
6737
  /**
6738
6738
  * Referenz auf Retourengrund
@@ -7328,14 +7328,14 @@ export interface DocumentType {
7328
7328
  labels: Array<DocumentTypeLabel>;
7329
7329
 
7330
7330
  /**
7331
- * Zählerkreis
7331
+ * nächste Belegnummer
7332
7332
  */
7333
- sequencerConfiguration: SequencerConfiguration;
7333
+ nextNumber: string;
7334
7334
 
7335
7335
  /**
7336
- * nächste Belegnummer
7336
+ * Zählerkreis
7337
7337
  */
7338
- nextNumber: string;
7338
+ sequencerConfiguration: SequencerConfiguration;
7339
7339
 
7340
7340
  /**
7341
7341
  * Sortierung
@@ -7921,14 +7921,14 @@ export const enum FabricationOfComponents {
7921
7921
  export interface FabricationProduceRequest {
7922
7922
 
7923
7923
  /**
7924
- * Material automatisch bestätigen
7924
+ * Zu produzierende Menge
7925
7925
  */
7926
- autoCommitComponents: boolean;
7926
+ quantity: number;
7927
7927
 
7928
7928
  /**
7929
- * Zu produzierende Menge
7929
+ * Material automatisch bestätigen
7930
7930
  */
7931
- quantity: number;
7931
+ autoCommitComponents: boolean;
7932
7932
 
7933
7933
  /**
7934
7934
  * Für die Produktion zu verwendendes Material
@@ -8279,14 +8279,14 @@ export interface OpenItem {
8279
8279
  dunningBlock: boolean;
8280
8280
 
8281
8281
  /**
8282
- * order
8282
+ * Summe der Zahlungen in Basiswährung
8283
8283
  */
8284
- order: ApiObjectReference;
8284
+ baseSumPayments: number;
8285
8285
 
8286
8286
  /**
8287
- * Summe der Zahlungen in Basiswährung
8287
+ * order
8288
8288
  */
8289
- baseSumPayments: number;
8289
+ order: ApiObjectReference;
8290
8290
 
8291
8291
  /**
8292
8292
  * MetaInformations for this Object
@@ -8318,25 +8318,20 @@ export interface OpenItem {
8318
8318
  */
8319
8319
  version: number;
8320
8320
 
8321
- /**
8322
- * List of tags
8323
- */
8324
- tags: Array<TagDto>;
8325
-
8326
8321
  /**
8327
8322
  * Summe der skontierbaren Rechnungsbeträge in Basiswährung
8328
8323
  */
8329
8324
  baseSumDiscountableAmount: number;
8330
8325
 
8331
8326
  /**
8332
- * Fälligkeitsdatum
8327
+ * List of tags
8333
8328
  */
8334
- paymentDueDate: ScriptingDate;
8329
+ tags: Array<TagDto>;
8335
8330
 
8336
8331
  /**
8337
- * Länderkennzeichen Leistungsland (ISO Alpha-3, von außen setzbar, wenn kein Beleg vorhanden ist)
8332
+ * Fälligkeitsdatum
8338
8333
  */
8339
- performanceCountryCode: string;
8334
+ paymentDueDate: ScriptingDate;
8340
8335
 
8341
8336
  /**
8342
8337
  * Länderkennzeichen Ursprungsland (ISO Alpha-3, von außen setzbar, wenn kein Beleg vorhanden ist)
@@ -8344,15 +8339,20 @@ export interface OpenItem {
8344
8339
  sourceCountryCode: string;
8345
8340
 
8346
8341
  /**
8347
- * agreed Deposit payment date
8342
+ * Länderkennzeichen Leistungsland (ISO Alpha-3, von außen setzbar, wenn kein Beleg vorhanden ist)
8348
8343
  */
8349
- depositPaymentDate: ScriptingDate;
8344
+ performanceCountryCode: string;
8350
8345
 
8351
8346
  /**
8352
8347
  * Valutadatum schreibgeschützt
8353
8348
  */
8354
8349
  valueDateReadOnly: boolean;
8355
8350
 
8351
+ /**
8352
+ * agreed Deposit payment date
8353
+ */
8354
+ depositPaymentDate: ScriptingDate;
8355
+
8356
8356
  /**
8357
8357
  * Does this open item belong to accounts payable or accounts receivable
8358
8358
  */
@@ -8419,14 +8419,14 @@ export interface OpenItem {
8419
8419
  paymentAmount: number;
8420
8420
 
8421
8421
  /**
8422
- * how should a refund be done?
8422
+ * Rechnungskorrektur
8423
8423
  */
8424
- refundType: OpenItem$OpenItemRefundType;
8424
+ creditNote: ApiObjectReference;
8425
8425
 
8426
8426
  /**
8427
- * Rechnungskorrektur
8427
+ * how should a refund be done?
8428
8428
  */
8429
- creditNote: ApiObjectReference;
8429
+ refundType: OpenItem$OpenItemRefundType;
8430
8430
 
8431
8431
  /**
8432
8432
  * Buchung auf Lieferant oder Kunde bei manuellen OPs
@@ -9102,6 +9102,11 @@ export interface PaymentTerm {
9102
9102
  */
9103
9103
  paymentDays1: number;
9104
9104
 
9105
+ /**
9106
+ * Days for Discount 2
9107
+ */
9108
+ paymentDays2: number;
9109
+
9105
9110
  /**
9106
9111
  * Aktiv?
9107
9112
  */
@@ -9112,11 +9117,6 @@ export interface PaymentTerm {
9112
9117
  */
9113
9118
  description: string;
9114
9119
 
9115
- /**
9116
- * Days for Discount 2
9117
- */
9118
- paymentDays2: number;
9119
-
9120
9120
  /**
9121
9121
  * label for this payment term
9122
9122
  */
@@ -9529,14 +9529,14 @@ export interface PicklistLine {
9529
9529
  export interface PicklistLineBooking {
9530
9530
 
9531
9531
  /**
9532
- * Seriennummer
9532
+ * Zu buchende Menge (gesammelt)
9533
9533
  */
9534
- serialNumber: ArticleSerialNumber;
9534
+ quantity: number;
9535
9535
 
9536
9536
  /**
9537
- * Zu buchende Menge (gesammelt)
9537
+ * Seriennummer
9538
9538
  */
9539
- quantity: number;
9539
+ serialNumber: ArticleSerialNumber;
9540
9540
 
9541
9541
  /**
9542
9542
  * Anzeigename vom Lagerplatz
@@ -9572,14 +9572,14 @@ export interface PicklistLineComponent {
9572
9572
  quantityCollected: number;
9573
9573
 
9574
9574
  /**
9575
- * Artikelbezeichnung
9575
+ * Menge der Position
9576
9576
  */
9577
- articleName: string;
9577
+ quantity: number;
9578
9578
 
9579
9579
  /**
9580
- * Menge der Position
9580
+ * Artikelbezeichnung
9581
9581
  */
9582
- quantity: number;
9582
+ articleName: string;
9583
9583
 
9584
9584
  /**
9585
9585
  * Artikelbeschreibung
@@ -9988,11 +9988,6 @@ export interface PicklistTemplate$PicklistProcessingOptions {
9988
9988
  */
9989
9989
  printLabelOnScan: boolean;
9990
9990
 
9991
- /**
9992
- * Sollen Dienstleistungen kommissioniert werden?
9993
- */
9994
- allowPickingOfServiceArticles: boolean;
9995
-
9996
9991
  /**
9997
9992
  * Digitale Pickliste verwenden: dabei werden nur die Positionen im Frontend gezeigt und durch Tippen oder Wischen bestätigt
9998
9993
  */
@@ -10003,6 +9998,11 @@ export interface PicklistTemplate$PicklistProcessingOptions {
10003
9998
  */
10004
9999
  allowFullConfirmation: boolean;
10005
10000
 
10001
+ /**
10002
+ * Sollen Dienstleistungen kommissioniert werden?
10003
+ */
10004
+ allowPickingOfServiceArticles: boolean;
10005
+
10006
10006
  /**
10007
10007
  * Verwende die Verkaufseinheit als Standardmenge
10008
10008
  */
@@ -10108,14 +10108,14 @@ export interface PriceSelectionCriteria {
10108
10108
  date: ScriptingDate;
10109
10109
 
10110
10110
  /**
10111
- * Die Preisgruppe
10111
+ * Eine Menge
10112
10112
  */
10113
- priceGroupId: number;
10113
+ quantity: number;
10114
10114
 
10115
10115
  /**
10116
- * Eine Menge
10116
+ * Die Preisgruppe
10117
10117
  */
10118
- quantity: number;
10118
+ priceGroupId: number;
10119
10119
 
10120
10120
  /**
10121
10121
  * Liste von Artikel-IDs
@@ -10151,14 +10151,14 @@ export interface PriceSelectionCriteria {
10151
10151
  export interface Product {
10152
10152
 
10153
10153
  /**
10154
- * Charge muss bei Einbuchung in ein Verkaufslager vergeben werden (für Serientyp LOT und BEST_BEFORE)
10154
+ * Zolltarifnummer
10155
10155
  */
10156
- lotOnlyRequiredWhenBookedToSalesStorage: boolean;
10156
+ customsTariffNumber: string;
10157
10157
 
10158
10158
  /**
10159
- * Zolltarifnummer
10159
+ * Charge muss bei Einbuchung in ein Verkaufslager vergeben werden (für Serientyp LOT und BEST_BEFORE)
10160
10160
  */
10161
- customsTariffNumber: string;
10161
+ lotOnlyRequiredWhenBookedToSalesStorage: boolean;
10162
10162
 
10163
10163
  /**
10164
10164
  * Gebindeschema dieses Produkts
@@ -10342,14 +10342,14 @@ export interface ProductDiscount {
10342
10342
  validFrom: ScriptingDate;
10343
10343
 
10344
10344
  /**
10345
- * Warengruppe
10345
+ * Bestimmt die Art des Rabatts
10346
10346
  */
10347
- productGroupRef: ApiObjectReference;
10347
+ modifierType: PriceModifierType;
10348
10348
 
10349
10349
  /**
10350
- * Bestimmt die Art des Rabatts
10350
+ * Warengruppe
10351
10351
  */
10352
- modifierType: PriceModifierType;
10352
+ productGroupRef: ApiObjectReference;
10353
10353
 
10354
10354
  /**
10355
10355
  * Version Identifier for this Object (for PUT)
@@ -10397,14 +10397,14 @@ export interface ProductDiscount {
10397
10397
  modifierValueType: ValueType;
10398
10398
 
10399
10399
  /**
10400
- * Account, für den der Rabatt gültig ist
10400
+ * Name des Rabatts
10401
10401
  */
10402
- accountRef: ApiObjectReference;
10402
+ modifierName: string;
10403
10403
 
10404
10404
  /**
10405
- * Name des Rabatts
10405
+ * Account, für den der Rabatt gültig ist
10406
10406
  */
10407
- modifierName: string;
10407
+ accountRef: ApiObjectReference;
10408
10408
 
10409
10409
  /**
10410
10410
  * Unique identifier of the Object
@@ -10435,14 +10435,14 @@ export interface ProductGroup {
10435
10435
  targetTradingMargin: number;
10436
10436
 
10437
10437
  /**
10438
- * Freifeld
10438
+ * main product group
10439
10439
  */
10440
- custom: EavProductgroup;
10440
+ mainGroupRef: ApiObjectReference;
10441
10441
 
10442
10442
  /**
10443
- * main product group
10443
+ * Freifeld
10444
10444
  */
10445
- mainGroupRef: ApiObjectReference;
10445
+ custom: EavProductgroup;
10446
10446
 
10447
10447
  /**
10448
10448
  * warengruppe aktiv ja/nein
@@ -10811,14 +10811,14 @@ export interface RequestDocument {
10811
10811
  deliveryTermId: number;
10812
10812
 
10813
10813
  /**
10814
- * Für interne Zwecke: Währung für das Document
10814
+ * Dokumentzeilen
10815
10815
  */
10816
- currencyId: number;
10816
+ lines: Array<RequestDocumentLine>;
10817
10817
 
10818
10818
  /**
10819
- * Dokumentzeilen
10819
+ * Für interne Zwecke: Währung für das Document
10820
10820
  */
10821
- lines: Array<RequestDocumentLine>;
10821
+ currencyId: number;
10822
10822
 
10823
10823
  /**
10824
10824
  * Nur für interne Zwecke: neue Positionen für einzeln retournierte Baugruppen-Komponenten
@@ -10836,14 +10836,14 @@ export interface RequestDocument {
10836
10836
  contractDetail: DocumentContractDetail;
10837
10837
 
10838
10838
  /**
10839
- * Für interne Zwecke: Zahlungsbedingung für das Document
10839
+ * Vorgabelieferant bei Übernahme von Auftrag zu Bestellung(en)
10840
10840
  */
10841
- paymentTermId: number;
10841
+ supplierAccountId: number;
10842
10842
 
10843
10843
  /**
10844
- * Vorgabelieferant bei Übernahme von Auftrag zu Bestellung(en)
10844
+ * Für interne Zwecke: Zahlungsbedingung für das Document
10845
10845
  */
10846
- supplierAccountId: number;
10846
+ paymentTermId: number;
10847
10847
 
10848
10848
  /**
10849
10849
  * Schema Freifelder
@@ -10856,14 +10856,14 @@ export interface RequestDocument {
10856
10856
  dropShipping: boolean;
10857
10857
 
10858
10858
  /**
10859
- * reference to the corresponding document in an external system
10859
+ * target document type for document copy
10860
10860
  */
10861
- externalId: string;
10861
+ targetDocumentType: DocumentType;
10862
10862
 
10863
10863
  /**
10864
- * target document type for document copy
10864
+ * reference to the corresponding document in an external system
10865
10865
  */
10866
- targetDocumentType: DocumentType;
10866
+ externalId: string;
10867
10867
 
10868
10868
  /**
10869
10869
  * ID vom Pickwagen für den Wareneingang (wenn incomingGoodsStorageBinId = null)
@@ -10999,14 +10999,14 @@ export interface RequestDocumentLine {
10999
10999
  supplierAccountId: number;
11000
11000
 
11001
11001
  /**
11002
- * Position der Hauptartikel-Position einer Zubehör-Position
11002
+ * Menge, die in dieser Transaktion verarbeitet werden soll
11003
11003
  */
11004
- mainArticleLinePosition: number;
11004
+ quantity: number;
11005
11005
 
11006
11006
  /**
11007
- * Menge, die in dieser Transaktion verarbeitet werden soll
11007
+ * Position der Hauptartikel-Position einer Zubehör-Position
11008
11008
  */
11009
- quantity: number;
11009
+ mainArticleLinePosition: number;
11010
11010
 
11011
11011
  /**
11012
11012
  * Versandkosten mit Bedingungen
@@ -11023,26 +11023,26 @@ export interface RequestDocumentLine {
11023
11023
  */
11024
11024
  fabricationDetail: RequestDocumentLineFabricationDetail;
11025
11025
 
11026
- /**
11027
- * (optional) ID des Artikels dieser Position
11028
- */
11029
- articleId: number;
11030
-
11031
11026
  /**
11032
11027
  * Bemerkung zur OP-Position - wird beim Abschluss in den Kommentar des Offenen Postens übernommen
11033
11028
  */
11034
11029
  settledOpenItemComment: string;
11035
11030
 
11036
11031
  /**
11037
- * Referenz auf die zugehörige Position in einem externen System
11032
+ * (optional) ID des Artikels dieser Position
11038
11033
  */
11039
- externalId: string;
11034
+ articleId: number;
11040
11035
 
11041
11036
  /**
11042
11037
  * ID der Belegposition im aktuellen Beleg
11043
11038
  */
11044
11039
  lineId: number;
11045
11040
 
11041
+ /**
11042
+ * Referenz auf die zugehörige Position in einem externen System
11043
+ */
11044
+ externalId: string;
11045
+
11046
11046
  /**
11047
11047
  * ID des Pickwagens für den Wareneingang (wenn `incomingGoodsStorageBinId` = null)
11048
11048
  */
@@ -11073,11 +11073,6 @@ export interface RequestDocumentLine {
11073
11073
  */
11074
11074
  priceModifiers: Array<RequestDocumentPriceModifier>;
11075
11075
 
11076
- /**
11077
- * Für interne Zwecke: Externe Artikelnummer
11078
- */
11079
- externalArticleNumber: string;
11080
-
11081
11076
  /**
11082
11077
  * ID der Quell-Belegposition
11083
11078
  */
@@ -11088,6 +11083,11 @@ export interface RequestDocumentLine {
11088
11083
  */
11089
11084
  bookings: Array<RequestDocumentLineBooking>;
11090
11085
 
11086
+ /**
11087
+ * Für interne Zwecke: Externe Artikelnummer
11088
+ */
11089
+ externalArticleNumber: string;
11090
+
11091
11091
  /**
11092
11092
  * Zu der Zeile Etikettendruck anstoßen
11093
11093
  */
@@ -11311,14 +11311,14 @@ export interface SalesAgent {
11311
11311
  taxRateRef: ApiObjectReference;
11312
11312
 
11313
11313
  /**
11314
- * country code performance country IsoAlpha3
11314
+ * reference to the assigned user
11315
11315
  */
11316
- performanceCountryCode: string;
11316
+ userRef: ApiObjectReference;
11317
11317
 
11318
11318
  /**
11319
- * reference to the assigned user
11319
+ * country code performance country IsoAlpha3
11320
11320
  */
11321
- userRef: ApiObjectReference;
11321
+ performanceCountryCode: string;
11322
11322
 
11323
11323
  /**
11324
11324
  * billing type
@@ -11517,14 +11517,14 @@ export interface ScenarioDimensionValue {
11517
11517
  export interface ScenarioFactDef {
11518
11518
 
11519
11519
  /**
11520
- * Attribut Typ
11520
+ * Attribut Name
11521
11521
  */
11522
- attributeType: ScenarioFactDef$FactType;
11522
+ factAttribute: string;
11523
11523
 
11524
11524
  /**
11525
- * Attribut Name
11525
+ * Attribut Typ
11526
11526
  */
11527
- factAttribute: string;
11527
+ attributeType: ScenarioFactDef$FactType;
11528
11528
 
11529
11529
  /**
11530
11530
  * Unique identifier of the Object
@@ -11684,14 +11684,14 @@ export interface SequencerConfigurationDetail {
11684
11684
  export interface SerialNumberWithQuantityApi {
11685
11685
 
11686
11686
  /**
11687
- * Seriennummer
11687
+ * Menge
11688
11688
  */
11689
- serialNumber: ArticleSerialNumber;
11689
+ quantity: number;
11690
11690
 
11691
11691
  /**
11692
- * Menge
11692
+ * Seriennummer
11693
11693
  */
11694
- quantity: number;
11694
+ serialNumber: ArticleSerialNumber;
11695
11695
  }
11696
11696
 
11697
11697
  export interface ShelfCommonMapper {
@@ -11745,14 +11745,14 @@ export interface ShelfDocument {
11745
11745
  tags: Array<TagDto>;
11746
11746
 
11747
11747
  /**
11748
- * share informations
11748
+ * Mehrsprachige Bezeichnungen
11749
11749
  */
11750
- shares: Array<ShelfShare>;
11750
+ translatableTexts: Array<ShelfTranslatableText>;
11751
11751
 
11752
11752
  /**
11753
- * Mehrsprachige Bezeichnungen
11753
+ * share informations
11754
11754
  */
11755
- translatableTexts: Array<ShelfTranslatableText>;
11755
+ shares: Array<ShelfShare>;
11756
11756
 
11757
11757
  /**
11758
11758
  * Automatische Löschung ab
@@ -11937,14 +11937,14 @@ export interface ShelfFile {
11937
11937
  subFiles: Array<SubFileInfo>;
11938
11938
 
11939
11939
  /**
11940
- * revision number of this file
11940
+ * fileSize
11941
11941
  */
11942
- revisionNumber: number;
11942
+ fileSize: number;
11943
11943
 
11944
11944
  /**
11945
- * fileSize
11945
+ * revision number of this file
11946
11946
  */
11947
- fileSize: number;
11947
+ revisionNumber: number;
11948
11948
 
11949
11949
  /**
11950
11950
  * file-extension of this entry
@@ -12809,26 +12809,26 @@ export interface TextTemplate {
12809
12809
  */
12810
12810
  targetDocumentTypes: Array<ApiObjectReference>;
12811
12811
 
12812
- /**
12813
- * Texte in den angebotenen Sprachen
12814
- */
12815
- languageSpecificContents: Array<LocalizedTextTemplateContent>;
12816
-
12817
12812
  /**
12818
12813
  * Vorbelegtypen. Geben zusammen mit Zieldokumenttypen die Transitionen an für die dieses Template gilt
12819
12814
  */
12820
12815
  sourceDocumentTypes: Array<ApiObjectReference>;
12821
12816
 
12822
12817
  /**
12823
- * Wird eine eigene DocumentLine für den Baustein angelegt?
12818
+ * Texte in den angebotenen Sprachen
12824
12819
  */
12825
- separateLine: boolean;
12820
+ languageSpecificContents: Array<LocalizedTextTemplateContent>;
12826
12821
 
12827
12822
  /**
12828
12823
  * article für den diese Templates gelten
12829
12824
  */
12830
12825
  articleId: number;
12831
12826
 
12827
+ /**
12828
+ * Wird eine eigene DocumentLine für den Baustein angelegt?
12829
+ */
12830
+ separateLine: boolean;
12831
+
12832
12832
  /**
12833
12833
  * Wann wird ein UI-Hint angezeigt
12834
12834
  */
@@ -13014,14 +13014,14 @@ export interface User {
13014
13014
  version: number;
13015
13015
 
13016
13016
  /**
13017
- * is the email verified
13017
+ * first-name
13018
13018
  */
13019
- emailVerified: boolean;
13019
+ firstName: string;
13020
13020
 
13021
13021
  /**
13022
- * first-name
13022
+ * is the email verified
13023
13023
  */
13024
- firstName: string;
13024
+ emailVerified: boolean;
13025
13025
 
13026
13026
  /**
13027
13027
  * email-address
@@ -13034,14 +13034,14 @@ export interface User {
13034
13034
  id: number;
13035
13035
 
13036
13036
  /**
13037
- * username
13037
+ * Valid to
13038
13038
  */
13039
- username: string;
13039
+ validTo: ScriptingDateTime;
13040
13040
 
13041
13041
  /**
13042
- * Valid to
13042
+ * username
13043
13043
  */
13044
- validTo: ScriptingDateTime;
13044
+ username: string;
13045
13045
 
13046
13046
  /**
13047
13047
  * MetaInformations for this Object
@@ -13229,14 +13229,14 @@ export interface VariantValue {
13229
13229
  version: number;
13230
13230
 
13231
13231
  /**
13232
- * Mehrsprachige Bezeichnungen
13232
+ * Variantenattribut
13233
13233
  */
13234
- labels: Array<VariantDescription>;
13234
+ attributeRef: ApiObjectReference;
13235
13235
 
13236
13236
  /**
13237
- * Variantenattribut
13237
+ * Mehrsprachige Bezeichnungen
13238
13238
  */
13239
- attributeRef: ApiObjectReference;
13239
+ labels: Array<VariantDescription>;
13240
13240
 
13241
13241
  /**
13242
13242
  * MetaInformations for this Object