@vario-software/types 2026.34.0 → 2026.34.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.
- package/package.json +1 -1
- package/schema/erp.d.ts +14 -3
- package/scripting/services.d.ts +77 -77
- package/scripting/types.d.ts +345 -345
package/scripting/types.d.ts
CHANGED
|
@@ -214,14 +214,14 @@ export interface Account {
|
|
|
214
214
|
persons: Array<AccountPerson>;
|
|
215
215
|
|
|
216
216
|
/**
|
|
217
|
-
*
|
|
217
|
+
* Referenz auf den Ziel-Belegtyp nach der Kommissionierung
|
|
218
218
|
*/
|
|
219
|
-
|
|
219
|
+
afterPickingTargetDocumentTypeRef: ApiObjectReference;
|
|
220
220
|
|
|
221
221
|
/**
|
|
222
|
-
*
|
|
222
|
+
* Standard-Ansprechpartner
|
|
223
223
|
*/
|
|
224
|
-
|
|
224
|
+
defaultPerson: AccountPerson;
|
|
225
225
|
|
|
226
226
|
/**
|
|
227
227
|
* Account-Beziehungen
|
|
@@ -291,26 +291,26 @@ export interface AccountAddress {
|
|
|
291
291
|
*/
|
|
292
292
|
regionRef: ApiObjectReference;
|
|
293
293
|
|
|
294
|
-
/**
|
|
295
|
-
* Post office box
|
|
296
|
-
*/
|
|
297
|
-
postOfficeBox: string;
|
|
298
|
-
|
|
299
294
|
/**
|
|
300
295
|
* Title
|
|
301
296
|
*/
|
|
302
297
|
titleRef: ApiCreatableReference;
|
|
303
298
|
|
|
304
299
|
/**
|
|
305
|
-
*
|
|
300
|
+
* Post office box
|
|
306
301
|
*/
|
|
307
|
-
|
|
302
|
+
postOfficeBox: string;
|
|
308
303
|
|
|
309
304
|
/**
|
|
310
305
|
* Street
|
|
311
306
|
*/
|
|
312
307
|
street: string;
|
|
313
308
|
|
|
309
|
+
/**
|
|
310
|
+
* Country code
|
|
311
|
+
*/
|
|
312
|
+
countryCode: string;
|
|
313
|
+
|
|
314
314
|
/**
|
|
315
315
|
* Unique identifier of the Object
|
|
316
316
|
*/
|
|
@@ -386,26 +386,26 @@ export interface AccountAddress {
|
|
|
386
386
|
*/
|
|
387
387
|
version: number;
|
|
388
388
|
|
|
389
|
-
/**
|
|
390
|
-
* tax identification number/ UST-ID-Nr.
|
|
391
|
-
*/
|
|
392
|
-
taxIdentificationNumber: string;
|
|
393
|
-
|
|
394
389
|
/**
|
|
395
390
|
* Additional address line1
|
|
396
391
|
*/
|
|
397
392
|
additionalAddressLine1: string;
|
|
398
393
|
|
|
399
394
|
/**
|
|
400
|
-
*
|
|
395
|
+
* tax identification number/ UST-ID-Nr.
|
|
401
396
|
*/
|
|
402
|
-
|
|
397
|
+
taxIdentificationNumber: string;
|
|
403
398
|
|
|
404
399
|
/**
|
|
405
400
|
* Additional address line2
|
|
406
401
|
*/
|
|
407
402
|
additionalAddressLine2: string;
|
|
408
403
|
|
|
404
|
+
/**
|
|
405
|
+
* Parcel station
|
|
406
|
+
*/
|
|
407
|
+
parcelStation: string;
|
|
408
|
+
|
|
409
409
|
/**
|
|
410
410
|
* Street address number
|
|
411
411
|
*/
|
|
@@ -611,14 +611,14 @@ export interface AccountLoanValue {
|
|
|
611
611
|
nonInvoicedDocumentLoan: number;
|
|
612
612
|
|
|
613
613
|
/**
|
|
614
|
-
*
|
|
614
|
+
* Betrag aus Verbindlichkeiten(negativ)
|
|
615
615
|
*/
|
|
616
|
-
|
|
616
|
+
payablesSum: number;
|
|
617
617
|
|
|
618
618
|
/**
|
|
619
|
-
*
|
|
619
|
+
* Kreditlimit
|
|
620
620
|
*/
|
|
621
|
-
|
|
621
|
+
maximalLoan: number;
|
|
622
622
|
|
|
623
623
|
/**
|
|
624
624
|
* Überschrittener Kreditbetrag
|
|
@@ -1004,26 +1004,26 @@ export interface Article {
|
|
|
1004
1004
|
*/
|
|
1005
1005
|
printLabelSettings: ArticlePrintLabelSettings;
|
|
1006
1006
|
|
|
1007
|
-
/**
|
|
1008
|
-
* Gefahrgut Informationen
|
|
1009
|
-
*/
|
|
1010
|
-
dangerousGoodInformation: DangerousGoodInformation;
|
|
1011
|
-
|
|
1012
1007
|
/**
|
|
1013
1008
|
* Zolltarifnummer
|
|
1014
1009
|
*/
|
|
1015
1010
|
customsTariffNumber: string;
|
|
1016
1011
|
|
|
1017
1012
|
/**
|
|
1018
|
-
*
|
|
1013
|
+
* Gefahrgut Informationen
|
|
1019
1014
|
*/
|
|
1020
|
-
|
|
1015
|
+
dangerousGoodInformation: DangerousGoodInformation;
|
|
1021
1016
|
|
|
1022
1017
|
/**
|
|
1023
1018
|
* is this product purchasable
|
|
1024
1019
|
*/
|
|
1025
1020
|
purchasable: boolean;
|
|
1026
1021
|
|
|
1022
|
+
/**
|
|
1023
|
+
* Product custom data
|
|
1024
|
+
*/
|
|
1025
|
+
listingCustom: EavArticleListing;
|
|
1026
|
+
|
|
1027
1027
|
/**
|
|
1028
1028
|
* base capacity unit
|
|
1029
1029
|
*/
|
|
@@ -1240,14 +1240,14 @@ export interface Article {
|
|
|
1240
1240
|
taxLiabilityReversed: boolean;
|
|
1241
1241
|
|
|
1242
1242
|
/**
|
|
1243
|
-
*
|
|
1243
|
+
* Notiz
|
|
1244
1244
|
*/
|
|
1245
|
-
|
|
1245
|
+
note: string;
|
|
1246
1246
|
|
|
1247
1247
|
/**
|
|
1248
|
-
*
|
|
1248
|
+
* Charge muss bei Einbuchung in ein Verkaufslager vergeben werden (für Serientyp LOT und BEST_BEFORE)
|
|
1249
1249
|
*/
|
|
1250
|
-
|
|
1250
|
+
lotOnlyRequiredWhenBookedToSalesStorage: boolean;
|
|
1251
1251
|
|
|
1252
1252
|
/**
|
|
1253
1253
|
* Erlaubte Arten der Kommissionierung
|
|
@@ -1285,14 +1285,14 @@ export interface Article {
|
|
|
1285
1285
|
capacity: number;
|
|
1286
1286
|
|
|
1287
1287
|
/**
|
|
1288
|
-
*
|
|
1288
|
+
* Mindestrestlaufzeit Eingang (Tage): Minimale Restlaufzeit in Tagen, die ein Artikel bei der Einbuchung in ein Verkaufslager noch aufweisen muss
|
|
1289
1289
|
*/
|
|
1290
|
-
|
|
1290
|
+
minimumRemainingDaysBeforeExpiryDateOnGoodsReceipt: number;
|
|
1291
1291
|
|
|
1292
1292
|
/**
|
|
1293
|
-
*
|
|
1293
|
+
* gross sales prices
|
|
1294
1294
|
*/
|
|
1295
|
-
|
|
1295
|
+
grossSalesPrice: 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
|
-
*
|
|
1313
|
+
* reference to Product
|
|
1314
1314
|
*/
|
|
1315
|
-
|
|
1315
|
+
productRef: ApiObjectReference;
|
|
1316
1316
|
|
|
1317
1317
|
/**
|
|
1318
|
-
*
|
|
1318
|
+
* Versandlabeldruck
|
|
1319
1319
|
*/
|
|
1320
|
-
|
|
1320
|
+
shippingLabelPrinting: boolean;
|
|
1321
1321
|
|
|
1322
1322
|
/**
|
|
1323
1323
|
* alternative name of this product
|
|
@@ -1458,14 +1458,14 @@ export interface Article$Metric {
|
|
|
1458
1458
|
sizeY: number;
|
|
1459
1459
|
|
|
1460
1460
|
/**
|
|
1461
|
-
*
|
|
1461
|
+
* weight unit
|
|
1462
1462
|
*/
|
|
1463
|
-
|
|
1463
|
+
weightUnit: UnitTypeReference;
|
|
1464
1464
|
|
|
1465
1465
|
/**
|
|
1466
|
-
*
|
|
1466
|
+
* size
|
|
1467
1467
|
*/
|
|
1468
|
-
|
|
1468
|
+
sizeZ: number;
|
|
1469
1469
|
}
|
|
1470
1470
|
|
|
1471
1471
|
export interface ArticleAssetInformation {
|
|
@@ -1604,14 +1604,14 @@ export interface ArticleCustomer {
|
|
|
1604
1604
|
productPrices: Array<ProductPrice>;
|
|
1605
1605
|
|
|
1606
1606
|
/**
|
|
1607
|
-
*
|
|
1607
|
+
* Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
|
|
1608
1608
|
*/
|
|
1609
|
-
|
|
1609
|
+
useDeviatingArticleDescription: boolean;
|
|
1610
1610
|
|
|
1611
1611
|
/**
|
|
1612
|
-
*
|
|
1612
|
+
* Referenced Article
|
|
1613
1613
|
*/
|
|
1614
|
-
|
|
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
|
-
*
|
|
1652
|
+
* Artikelnummer
|
|
1653
1653
|
*/
|
|
1654
|
-
|
|
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
|
-
*
|
|
1662
|
+
* Art der Preisermittlung
|
|
1663
1663
|
*/
|
|
1664
|
-
|
|
1664
|
+
priceDetermination: ArticleCustomerPriceDetermination;
|
|
1665
1665
|
|
|
1666
1666
|
/**
|
|
1667
1667
|
* Abweichender Produktidentifer (z.B. Barcode)
|
|
@@ -2211,6 +2211,11 @@ export interface ArticleSupplier {
|
|
|
2211
2211
|
*/
|
|
2212
2212
|
defaultNetPrice: number;
|
|
2213
2213
|
|
|
2214
|
+
/**
|
|
2215
|
+
* Referenced Supplier-Account
|
|
2216
|
+
*/
|
|
2217
|
+
accountId: number;
|
|
2218
|
+
|
|
2214
2219
|
/**
|
|
2215
2220
|
* Sollen Baugruppen auf Komponenten-Basis bestellt werden?)
|
|
2216
2221
|
*/
|
|
@@ -2221,11 +2226,6 @@ export interface ArticleSupplier {
|
|
|
2221
2226
|
*/
|
|
2222
2227
|
purchaseUnit: number;
|
|
2223
2228
|
|
|
2224
|
-
/**
|
|
2225
|
-
* Referenced Supplier-Account
|
|
2226
|
-
*/
|
|
2227
|
-
accountId: number;
|
|
2228
|
-
|
|
2229
2229
|
/**
|
|
2230
2230
|
* Abweichender Produktidentifer (z.B. Barcode)
|
|
2231
2231
|
*/
|
|
@@ -2328,14 +2328,14 @@ export interface Asset {
|
|
|
2328
2328
|
billingAddressRef: ApiObjectReference;
|
|
2329
2329
|
|
|
2330
2330
|
/**
|
|
2331
|
-
*
|
|
2331
|
+
* Vertrag
|
|
2332
2332
|
*/
|
|
2333
|
-
|
|
2333
|
+
contractRef: ApiObjectReference;
|
|
2334
2334
|
|
|
2335
2335
|
/**
|
|
2336
|
-
*
|
|
2336
|
+
* Zusatzadresse
|
|
2337
2337
|
*/
|
|
2338
|
-
|
|
2338
|
+
accountAddressRef: ApiObjectReference;
|
|
2339
2339
|
|
|
2340
2340
|
/**
|
|
2341
2341
|
* Asset-Nummer
|
|
@@ -2668,14 +2668,14 @@ export interface CountryReference {
|
|
|
2668
2668
|
export interface CreateNewDocumentRequest {
|
|
2669
2669
|
|
|
2670
2670
|
/**
|
|
2671
|
-
*
|
|
2671
|
+
* Belegart
|
|
2672
2672
|
*/
|
|
2673
|
-
|
|
2673
|
+
documentTypeLabel: string;
|
|
2674
2674
|
|
|
2675
2675
|
/**
|
|
2676
|
-
* Belegart
|
|
2676
|
+
* Standard-Belegart der Kategorie verwenden
|
|
2677
2677
|
*/
|
|
2678
|
-
|
|
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
|
-
*
|
|
3031
|
+
* Zu Erledigen von Benutzer (zugeordneter Benutzer)
|
|
3032
3032
|
*/
|
|
3033
|
-
|
|
3033
|
+
assignedUserRef: ApiObjectReference;
|
|
3034
3034
|
|
|
3035
3035
|
/**
|
|
3036
|
-
*
|
|
3036
|
+
* Weitere Teilnehmer vom Auftraggeber
|
|
3037
3037
|
*/
|
|
3038
|
-
|
|
3038
|
+
additionalParticipantsOfCustomer: Array<CrmParticipant>;
|
|
3039
3039
|
|
|
3040
3040
|
/**
|
|
3041
3041
|
* Chance (in Prozent)
|
|
@@ -3379,14 +3379,14 @@ export interface CrmProject {
|
|
|
3379
3379
|
info: MetaInfo;
|
|
3380
3380
|
|
|
3381
3381
|
/**
|
|
3382
|
-
*
|
|
3382
|
+
* Projektleiter vom Auftraggeber
|
|
3383
3383
|
*/
|
|
3384
|
-
|
|
3384
|
+
projectManagerOfCustomer: CrmParticipant;
|
|
3385
3385
|
|
|
3386
3386
|
/**
|
|
3387
|
-
*
|
|
3387
|
+
* Weitere Teilnehmer vom Auftraggeber
|
|
3388
3388
|
*/
|
|
3389
|
-
|
|
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
|
-
*
|
|
3480
|
+
* ID des CRM Objekts
|
|
3481
3481
|
*/
|
|
3482
|
-
|
|
3482
|
+
crmId: number;
|
|
3483
3483
|
|
|
3484
3484
|
/**
|
|
3485
|
-
*
|
|
3485
|
+
* Notiz zur Erinnerung
|
|
3486
3486
|
*/
|
|
3487
|
-
|
|
3487
|
+
note: string;
|
|
3488
3488
|
|
|
3489
3489
|
/**
|
|
3490
3490
|
* Wer soll erinnert werden
|
|
@@ -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
|
* Liste von Erinnerungen
|
|
3640
3635
|
*/
|
|
@@ -3645,6 +3640,11 @@ export interface CrmTask {
|
|
|
3645
3640
|
*/
|
|
3646
3641
|
customerOfferRef: DocumentRef;
|
|
3647
3642
|
|
|
3643
|
+
/**
|
|
3644
|
+
* Verantwortlicher Teilnehmer (Ansprechpartner)
|
|
3645
|
+
*/
|
|
3646
|
+
mainResponsibleParticipantRef: ApiObjectReference;
|
|
3647
|
+
|
|
3648
3648
|
/**
|
|
3649
3649
|
* Notizen
|
|
3650
3650
|
*/
|
|
@@ -4075,14 +4075,14 @@ export interface Customer {
|
|
|
4075
4075
|
stackProcessingPriority: number;
|
|
4076
4076
|
|
|
4077
4077
|
/**
|
|
4078
|
-
*
|
|
4078
|
+
* Sammelabrechnung nur manuell auslösen?
|
|
4079
4079
|
*/
|
|
4080
|
-
|
|
4080
|
+
collectiveInvoiceManually: boolean;
|
|
4081
4081
|
|
|
4082
4082
|
/**
|
|
4083
|
-
*
|
|
4083
|
+
* reference to product price group
|
|
4084
4084
|
*/
|
|
4085
|
-
|
|
4085
|
+
productPriceGroupRef: ApiObjectReference;
|
|
4086
4086
|
|
|
4087
4087
|
/**
|
|
4088
4088
|
* Unique identifier of the Object
|
|
@@ -4472,14 +4472,14 @@ export interface DmsOutputStream {
|
|
|
4472
4472
|
export interface Document {
|
|
4473
4473
|
|
|
4474
4474
|
/**
|
|
4475
|
-
*
|
|
4475
|
+
* Referenz zum Rechnungskonto
|
|
4476
4476
|
*/
|
|
4477
|
-
|
|
4477
|
+
billingAccountRef: ApiObjectReference;
|
|
4478
4478
|
|
|
4479
4479
|
/**
|
|
4480
|
-
*
|
|
4480
|
+
* Bestätigtes Lieferende (nur wenn bestätigtes Lieferdatum gesetzt)
|
|
4481
4481
|
*/
|
|
4482
|
-
|
|
4482
|
+
confirmedDeliveryDateEnd: ScriptingDate;
|
|
4483
4483
|
|
|
4484
4484
|
/**
|
|
4485
4485
|
* Externe Belegnummer
|
|
@@ -4517,14 +4517,14 @@ export interface Document {
|
|
|
4517
4517
|
totalVat: number;
|
|
4518
4518
|
|
|
4519
4519
|
/**
|
|
4520
|
-
*
|
|
4520
|
+
* Standardlager für neue Positionen
|
|
4521
4521
|
*/
|
|
4522
|
-
|
|
4522
|
+
defaultStorageRef: ApiObjectReference;
|
|
4523
4523
|
|
|
4524
4524
|
/**
|
|
4525
|
-
*
|
|
4525
|
+
* Name der bestellenden Person
|
|
4526
4526
|
*/
|
|
4527
|
-
|
|
4527
|
+
orderedBy: string;
|
|
4528
4528
|
|
|
4529
4529
|
/**
|
|
4530
4530
|
* Lieferadresse
|
|
@@ -4685,20 +4685,27 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4685
4685
|
supplierNumber: string;
|
|
4686
4686
|
|
|
4687
4687
|
/**
|
|
4688
|
-
*
|
|
4688
|
+
* Gesamtpreis brutto
|
|
4689
4689
|
*/
|
|
4690
|
-
|
|
4690
|
+
totalGrossPrice: number;
|
|
4691
4691
|
|
|
4692
4692
|
/**
|
|
4693
|
-
*
|
|
4693
|
+
* Ist der Beleg zur Lieferung freigegeben?
|
|
4694
4694
|
*/
|
|
4695
|
-
|
|
4695
|
+
deliveryApproved: boolean;
|
|
4696
4696
|
|
|
4697
4697
|
/**
|
|
4698
4698
|
* Kassen-Zahlungspositionen
|
|
4699
4699
|
*/
|
|
4700
4700
|
posPayments: Array<DocumentPosPayment>;
|
|
4701
4701
|
|
|
4702
|
+
/**
|
|
4703
|
+
* Ist die Quittung bezahlt
|
|
4704
|
+
true wenn die Quittung bezahlt ist
|
|
4705
|
+
|
|
4706
|
+
*/
|
|
4707
|
+
posReceiptPayed: boolean;
|
|
4708
|
+
|
|
4702
4709
|
/**
|
|
4703
4710
|
* Kundennummer beim Lieferanten
|
|
4704
4711
|
*/
|
|
@@ -4709,13 +4716,6 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4709
4716
|
*/
|
|
4710
4717
|
maxDeliveries: number;
|
|
4711
4718
|
|
|
4712
|
-
/**
|
|
4713
|
-
* Ist die Quittung bezahlt
|
|
4714
|
-
true wenn die Quittung bezahlt ist
|
|
4715
|
-
|
|
4716
|
-
*/
|
|
4717
|
-
posReceiptPayed: boolean;
|
|
4718
|
-
|
|
4719
4719
|
/**
|
|
4720
4720
|
* Quittung: Summe Zahlbetrag
|
|
4721
4721
|
*/
|
|
@@ -4986,11 +4986,6 @@ true wenn die Quittung bezahlt ist
|
|
|
4986
4986
|
*/
|
|
4987
4987
|
customerNumber: string;
|
|
4988
4988
|
|
|
4989
|
-
/**
|
|
4990
|
-
* Umsatzsteuer-Identifikationsnummer
|
|
4991
|
-
*/
|
|
4992
|
-
taxIdentificationNumber: string;
|
|
4993
|
-
|
|
4994
4989
|
/**
|
|
4995
4990
|
* Versandkostenpositionen
|
|
4996
4991
|
*/
|
|
@@ -5001,6 +4996,11 @@ true wenn die Quittung bezahlt ist
|
|
|
5001
4996
|
*/
|
|
5002
4997
|
documentState: DocumentTypeState;
|
|
5003
4998
|
|
|
4999
|
+
/**
|
|
5000
|
+
* Umsatzsteuer-Identifikationsnummer
|
|
5001
|
+
*/
|
|
5002
|
+
taxIdentificationNumber: string;
|
|
5003
|
+
|
|
5004
5004
|
/**
|
|
5005
5005
|
* Rückgeld
|
|
5006
5006
|
*/
|
|
@@ -5072,14 +5072,14 @@ export interface DocumentAdditionalInfo {
|
|
|
5072
5072
|
roundingMode: DocumentRounding;
|
|
5073
5073
|
|
|
5074
5074
|
/**
|
|
5075
|
-
*
|
|
5075
|
+
* Herkunft der Sprache
|
|
5076
5076
|
*/
|
|
5077
|
-
|
|
5077
|
+
languageCodeOrigin: LanguageCodeOrigin;
|
|
5078
5078
|
|
|
5079
5079
|
/**
|
|
5080
|
-
*
|
|
5080
|
+
* Parameter, welche im {@link DocumentContext} verwendet wurden
|
|
5081
5081
|
*/
|
|
5082
|
-
|
|
5082
|
+
contextParameters: Array<AdditionalParameter>;
|
|
5083
5083
|
|
|
5084
5084
|
/**
|
|
5085
5085
|
* Herkunft der Käufer-Referenz
|
|
@@ -5087,14 +5087,14 @@ export interface DocumentAdditionalInfo {
|
|
|
5087
5087
|
buyerReferenceOrigin: BuyerReferenceOrigin;
|
|
5088
5088
|
|
|
5089
5089
|
/**
|
|
5090
|
-
*
|
|
5090
|
+
* Herkunft des Berechnungsmodus
|
|
5091
5091
|
*/
|
|
5092
|
-
|
|
5092
|
+
calculationModeOrigin: CalculationModeOrigin;
|
|
5093
5093
|
|
|
5094
5094
|
/**
|
|
5095
|
-
*
|
|
5095
|
+
* Ziele für den Wareneingang für den gesamten Beleg
|
|
5096
5096
|
*/
|
|
5097
|
-
|
|
5097
|
+
incomingGoodsTarget: DocumentAdditionalInfo$IncomingGoodsTarget;
|
|
5098
5098
|
|
|
5099
5099
|
/**
|
|
5100
5100
|
* Herkunft des E-Rechnungs-Profils
|
|
@@ -5194,14 +5194,14 @@ export interface DocumentAddress {
|
|
|
5194
5194
|
postOfficeBox: string;
|
|
5195
5195
|
|
|
5196
5196
|
/**
|
|
5197
|
-
*
|
|
5197
|
+
* Street
|
|
5198
5198
|
*/
|
|
5199
|
-
|
|
5199
|
+
street: string;
|
|
5200
5200
|
|
|
5201
5201
|
/**
|
|
5202
|
-
*
|
|
5202
|
+
* country code IsoAlpha3
|
|
5203
5203
|
*/
|
|
5204
|
-
|
|
5204
|
+
countryCode: string;
|
|
5205
5205
|
|
|
5206
5206
|
/**
|
|
5207
5207
|
* Unique identifier of the Object
|
|
@@ -5259,14 +5259,14 @@ export interface DocumentAddress {
|
|
|
5259
5259
|
additionalAddressLine2: string;
|
|
5260
5260
|
|
|
5261
5261
|
/**
|
|
5262
|
-
*
|
|
5262
|
+
* Street address number
|
|
5263
5263
|
*/
|
|
5264
|
-
|
|
5264
|
+
streetAddressNumber: string;
|
|
5265
5265
|
|
|
5266
5266
|
/**
|
|
5267
|
-
*
|
|
5267
|
+
* Lieferbedingungen
|
|
5268
5268
|
*/
|
|
5269
|
-
|
|
5269
|
+
deliveryTermRef: ApiObjectReference;
|
|
5270
5270
|
|
|
5271
5271
|
/**
|
|
5272
5272
|
* address line 3
|
|
@@ -5284,14 +5284,14 @@ export interface DocumentAddress {
|
|
|
5284
5284
|
paymentMethodRef: ApiObjectReference;
|
|
5285
5285
|
|
|
5286
5286
|
/**
|
|
5287
|
-
*
|
|
5287
|
+
* salutation for this address
|
|
5288
5288
|
*/
|
|
5289
|
-
|
|
5289
|
+
salutation: string;
|
|
5290
5290
|
|
|
5291
5291
|
/**
|
|
5292
|
-
*
|
|
5292
|
+
* Referenz zum Account
|
|
5293
5293
|
*/
|
|
5294
|
-
|
|
5294
|
+
accountRef: ApiObjectReference;
|
|
5295
5295
|
|
|
5296
5296
|
/**
|
|
5297
5297
|
* address line 2
|
|
@@ -5447,14 +5447,14 @@ export interface DocumentFabricationDetail {
|
|
|
5447
5447
|
targetStorageRef: ApiObjectReference;
|
|
5448
5448
|
|
|
5449
5449
|
/**
|
|
5450
|
-
*
|
|
5450
|
+
* Notiz
|
|
5451
5451
|
*/
|
|
5452
|
-
|
|
5452
|
+
note: string;
|
|
5453
5453
|
|
|
5454
5454
|
/**
|
|
5455
|
-
*
|
|
5455
|
+
* Material-Lager
|
|
5456
5456
|
*/
|
|
5457
|
-
|
|
5457
|
+
componentsStorageRef: ApiObjectReference;
|
|
5458
5458
|
|
|
5459
5459
|
/**
|
|
5460
5460
|
* QS-Lager
|
|
@@ -5667,14 +5667,14 @@ export interface DocumentLine {
|
|
|
5667
5667
|
id: number;
|
|
5668
5668
|
|
|
5669
5669
|
/**
|
|
5670
|
-
*
|
|
5670
|
+
* Positionsnummer über alle Artikelpositionen hinweg
|
|
5671
5671
|
*/
|
|
5672
|
-
|
|
5672
|
+
positionOfArticleLine: number;
|
|
5673
5673
|
|
|
5674
5674
|
/**
|
|
5675
|
-
*
|
|
5675
|
+
* Preis pro Einheit in Basiswährung
|
|
5676
5676
|
*/
|
|
5677
|
-
|
|
5677
|
+
basePrice: number;
|
|
5678
5678
|
|
|
5679
5679
|
/**
|
|
5680
5680
|
* Serientyp
|
|
@@ -5792,14 +5792,14 @@ export interface DocumentLine {
|
|
|
5792
5792
|
settledOpenItemDiscountAmount: number;
|
|
5793
5793
|
|
|
5794
5794
|
/**
|
|
5795
|
-
*
|
|
5795
|
+
* Einheit Nettogewicht
|
|
5796
5796
|
*/
|
|
5797
|
-
|
|
5797
|
+
netWeightUnit: UnitTypeReference;
|
|
5798
5798
|
|
|
5799
5799
|
/**
|
|
5800
|
-
*
|
|
5800
|
+
* Nettoverkaufswert der Position in Basiswährung
|
|
5801
5801
|
*/
|
|
5802
|
-
|
|
5802
|
+
baseSalesValueNet: number;
|
|
5803
5803
|
|
|
5804
5804
|
/**
|
|
5805
5805
|
* Vertragsinformationen
|
|
@@ -5852,14 +5852,14 @@ export interface DocumentLine {
|
|
|
5852
5852
|
country: CountryReference;
|
|
5853
5853
|
|
|
5854
5854
|
/**
|
|
5855
|
-
*
|
|
5855
|
+
* Zolltarifnummer
|
|
5856
5856
|
*/
|
|
5857
|
-
|
|
5857
|
+
customsTariffNumber: string;
|
|
5858
5858
|
|
|
5859
5859
|
/**
|
|
5860
|
-
*
|
|
5860
|
+
* Leistungsdatum
|
|
5861
5861
|
*/
|
|
5862
|
-
|
|
5862
|
+
performanceDate: ScriptingDate;
|
|
5863
5863
|
|
|
5864
5864
|
/**
|
|
5865
5865
|
* wurde aufgelöst in Gebindeartikel
|
|
@@ -5937,14 +5937,14 @@ export interface DocumentLine {
|
|
|
5937
5937
|
countryRegion: ApiObjectReference;
|
|
5938
5938
|
|
|
5939
5939
|
/**
|
|
5940
|
-
*
|
|
5940
|
+
* Nettogewicht
|
|
5941
5941
|
*/
|
|
5942
|
-
|
|
5942
|
+
netWeight: number;
|
|
5943
5943
|
|
|
5944
5944
|
/**
|
|
5945
|
-
*
|
|
5945
|
+
* Provisionsursprung
|
|
5946
5946
|
*/
|
|
5947
|
-
|
|
5947
|
+
commissionOrigin: DocumentCommissionOrigin;
|
|
5948
5948
|
|
|
5949
5949
|
/**
|
|
5950
5950
|
* Netto-Gesamtpreis (nach Preisänderungen)
|
|
@@ -6062,14 +6062,14 @@ export interface DocumentLine {
|
|
|
6062
6062
|
custom: EavDocumentline;
|
|
6063
6063
|
|
|
6064
6064
|
/**
|
|
6065
|
-
*
|
|
6065
|
+
* Bemerkung zur OP-Position - wird beim Abschluss in den Kommentar des Offenen Postens übernommen
|
|
6066
6066
|
*/
|
|
6067
|
-
|
|
6067
|
+
settledOpenItemComment: string;
|
|
6068
6068
|
|
|
6069
6069
|
/**
|
|
6070
|
-
*
|
|
6070
|
+
* Artikel
|
|
6071
6071
|
*/
|
|
6072
|
-
|
|
6072
|
+
articleId: number;
|
|
6073
6073
|
|
|
6074
6074
|
/**
|
|
6075
6075
|
* Interne Preisänderungsinformationen
|
|
@@ -6261,14 +6261,14 @@ export interface DocumentLineComponent {
|
|
|
6261
6261
|
fabricationDetail: DocumentLineComponentFabricationDetail;
|
|
6262
6262
|
|
|
6263
6263
|
/**
|
|
6264
|
-
*
|
|
6264
|
+
* Gelieferte Menge
|
|
6265
6265
|
*/
|
|
6266
|
-
|
|
6266
|
+
quantityCommitted: number;
|
|
6267
6267
|
|
|
6268
6268
|
/**
|
|
6269
|
-
*
|
|
6269
|
+
* Referenz auf den Artikel der Komponente
|
|
6270
6270
|
*/
|
|
6271
|
-
|
|
6271
|
+
articleId: number;
|
|
6272
6272
|
|
|
6273
6273
|
/**
|
|
6274
6274
|
* Beschreibung des Artikels
|
|
@@ -6410,14 +6410,14 @@ export interface DocumentLineFabricationComponent {
|
|
|
6410
6410
|
sourceBundleArticleRef: ProductArticleRef;
|
|
6411
6411
|
|
|
6412
6412
|
/**
|
|
6413
|
-
*
|
|
6413
|
+
* Menge
|
|
6414
6414
|
*/
|
|
6415
|
-
|
|
6415
|
+
quantity: number;
|
|
6416
6416
|
|
|
6417
6417
|
/**
|
|
6418
|
-
*
|
|
6418
|
+
* Abweichende Herstellungskosten
|
|
6419
6419
|
*/
|
|
6420
|
-
|
|
6420
|
+
deviatingUnitPrice: number;
|
|
6421
6421
|
|
|
6422
6422
|
/**
|
|
6423
6423
|
* Beschreibung
|
|
@@ -6472,6 +6472,11 @@ export interface DocumentLineFabricationDetail {
|
|
|
6472
6472
|
*/
|
|
6473
6473
|
quantityFinished: number;
|
|
6474
6474
|
|
|
6475
|
+
/**
|
|
6476
|
+
* Freifeld
|
|
6477
|
+
*/
|
|
6478
|
+
custom: EavFabricationline;
|
|
6479
|
+
|
|
6475
6480
|
/**
|
|
6476
6481
|
* Menge defekt
|
|
6477
6482
|
*/
|
|
@@ -6482,11 +6487,6 @@ export interface DocumentLineFabricationDetail {
|
|
|
6482
6487
|
*/
|
|
6483
6488
|
serialNumbers: Array<DocumentLineFabricationDetailSerialNumber>;
|
|
6484
6489
|
|
|
6485
|
-
/**
|
|
6486
|
-
* Freifeld
|
|
6487
|
-
*/
|
|
6488
|
-
custom: EavFabricationline;
|
|
6489
|
-
|
|
6490
6490
|
/**
|
|
6491
6491
|
* Menge produziert
|
|
6492
6492
|
*/
|
|
@@ -6584,14 +6584,14 @@ export interface DocumentLinePosDetail {
|
|
|
6584
6584
|
deletable: boolean;
|
|
6585
6585
|
|
|
6586
6586
|
/**
|
|
6587
|
-
*
|
|
6587
|
+
* Typ der Einlage/Ausgabe
|
|
6588
6588
|
*/
|
|
6589
|
-
|
|
6589
|
+
depositExpenseTypeId: number;
|
|
6590
6590
|
|
|
6591
6591
|
/**
|
|
6592
|
-
*
|
|
6592
|
+
* Status der externen Zahlung
|
|
6593
6593
|
*/
|
|
6594
|
-
|
|
6594
|
+
externalPaymentStatus: PosPaymentStatus;
|
|
6595
6595
|
|
|
6596
6596
|
/**
|
|
6597
6597
|
* Abschöpfung auf Betrag (Modus BALANCE) — Restbetrag, der in der Kasse verbleibt
|
|
@@ -6629,14 +6629,14 @@ export interface DocumentLinePosDetail {
|
|
|
6629
6629
|
balanceBeforeWithdrawal: number;
|
|
6630
6630
|
|
|
6631
6631
|
/**
|
|
6632
|
-
*
|
|
6632
|
+
* Externe Payment-ID für Verbindung zum Payment-Backend
|
|
6633
6633
|
*/
|
|
6634
|
-
|
|
6634
|
+
externalPaymentId: string;
|
|
6635
6635
|
|
|
6636
6636
|
/**
|
|
6637
|
-
*
|
|
6637
|
+
* Typ der Position
|
|
6638
6638
|
*/
|
|
6639
|
-
|
|
6639
|
+
posLineType: PosLineType;
|
|
6640
6640
|
|
|
6641
6641
|
/**
|
|
6642
6642
|
* Unique identifier of the Object
|
|
@@ -6750,14 +6750,14 @@ export interface DocumentLineReturnDetail {
|
|
|
6750
6750
|
customerShareOnReduction: number;
|
|
6751
6751
|
|
|
6752
6752
|
/**
|
|
6753
|
-
*
|
|
6753
|
+
* Lieferbedingung für die Retoure (wie der Kunde zurücksendet)
|
|
6754
6754
|
*/
|
|
6755
|
-
|
|
6755
|
+
deliveryTermRef: ApiObjectReference;
|
|
6756
6756
|
|
|
6757
6757
|
/**
|
|
6758
|
-
*
|
|
6758
|
+
* Auf Retoure warten vor Warenersatz? (nur bei GOODS_EXCHANGE_ITEM_GETS_SEND_BACK)
|
|
6759
6759
|
*/
|
|
6760
|
-
|
|
6760
|
+
waitForReturnBeforeExchange: boolean;
|
|
6761
6761
|
|
|
6762
6762
|
/**
|
|
6763
6763
|
* Referenz auf Retourengrund
|
|
@@ -6940,14 +6940,14 @@ export interface DocumentPosPayment {
|
|
|
6940
6940
|
version: number;
|
|
6941
6941
|
|
|
6942
6942
|
/**
|
|
6943
|
-
*
|
|
6943
|
+
* Abschöpfungsbetrag. Im Modus MANUAL vom Anwender vorgegeben; in den Modi FULL/BALANCE/NONE vom Backend aus aktuellem Saldo berechnet
|
|
6944
6944
|
*/
|
|
6945
|
-
|
|
6945
|
+
withdrawalAmount: number;
|
|
6946
6946
|
|
|
6947
6947
|
/**
|
|
6948
|
-
*
|
|
6948
|
+
* Zahlungsart
|
|
6949
6949
|
*/
|
|
6950
|
-
|
|
6950
|
+
posPaymentMethodRef: ApiObjectReference;
|
|
6951
6951
|
|
|
6952
6952
|
/**
|
|
6953
6953
|
* Fehlermeldung vom Payment-Backend (nur bei fehlgeschlagener Zahlung)
|
|
@@ -6960,14 +6960,14 @@ export interface DocumentPosPayment {
|
|
|
6960
6960
|
balanceBeforeWithdrawal: number;
|
|
6961
6961
|
|
|
6962
6962
|
/**
|
|
6963
|
-
*
|
|
6963
|
+
* Externe Payment-ID für Verbindung zum Payment-Backend
|
|
6964
6964
|
*/
|
|
6965
|
-
|
|
6965
|
+
externalPaymentId: string;
|
|
6966
6966
|
|
|
6967
6967
|
/**
|
|
6968
|
-
*
|
|
6968
|
+
* Typ der Position
|
|
6969
6969
|
*/
|
|
6970
|
-
|
|
6970
|
+
posLineType: PosLineType;
|
|
6971
6971
|
|
|
6972
6972
|
/**
|
|
6973
6973
|
* Unique identifier of the Object
|
|
@@ -7358,14 +7358,14 @@ export interface DocumentType {
|
|
|
7358
7358
|
labels: Array<DocumentTypeLabel>;
|
|
7359
7359
|
|
|
7360
7360
|
/**
|
|
7361
|
-
*
|
|
7361
|
+
* nächste Belegnummer
|
|
7362
7362
|
*/
|
|
7363
|
-
|
|
7363
|
+
nextNumber: string;
|
|
7364
7364
|
|
|
7365
7365
|
/**
|
|
7366
|
-
*
|
|
7366
|
+
* Zählerkreis
|
|
7367
7367
|
*/
|
|
7368
|
-
|
|
7368
|
+
sequencerConfiguration: SequencerConfiguration;
|
|
7369
7369
|
|
|
7370
7370
|
/**
|
|
7371
7371
|
* Sortierung
|
|
@@ -7951,14 +7951,14 @@ export const enum FabricationOfComponents {
|
|
|
7951
7951
|
export interface FabricationProduceRequest {
|
|
7952
7952
|
|
|
7953
7953
|
/**
|
|
7954
|
-
*
|
|
7954
|
+
* Zu produzierende Menge
|
|
7955
7955
|
*/
|
|
7956
|
-
|
|
7956
|
+
quantity: number;
|
|
7957
7957
|
|
|
7958
7958
|
/**
|
|
7959
|
-
*
|
|
7959
|
+
* Material automatisch bestätigen
|
|
7960
7960
|
*/
|
|
7961
|
-
|
|
7961
|
+
autoCommitComponents: boolean;
|
|
7962
7962
|
|
|
7963
7963
|
/**
|
|
7964
7964
|
* Für die Produktion zu verwendendes Material
|
|
@@ -8012,14 +8012,14 @@ export interface FabricationRevertRequest {
|
|
|
8012
8012
|
quantity: number;
|
|
8013
8013
|
|
|
8014
8014
|
/**
|
|
8015
|
-
*
|
|
8015
|
+
* ID der zu stornierenden Position
|
|
8016
8016
|
*/
|
|
8017
|
-
|
|
8017
|
+
documentLineId: number;
|
|
8018
8018
|
|
|
8019
8019
|
/**
|
|
8020
|
-
*
|
|
8020
|
+
* Material automatisch stornieren
|
|
8021
8021
|
*/
|
|
8022
|
-
|
|
8022
|
+
autoRevertComponents: boolean;
|
|
8023
8023
|
|
|
8024
8024
|
/**
|
|
8025
8025
|
* Zu stornierende Seriennummern
|
|
@@ -8035,14 +8035,14 @@ export interface FabricationRevertRequest {
|
|
|
8035
8035
|
export interface FabricationSerialNumber {
|
|
8036
8036
|
|
|
8037
8037
|
/**
|
|
8038
|
-
*
|
|
8038
|
+
* MHD / Verfallsdatum
|
|
8039
8039
|
*/
|
|
8040
|
-
|
|
8040
|
+
expiryDate: ScriptingDate;
|
|
8041
8041
|
|
|
8042
8042
|
/**
|
|
8043
|
-
*
|
|
8043
|
+
* ID der zu produzierenden Seriennummer (nur zur gezielten Produktion von bereits definierten Seriennummern)
|
|
8044
8044
|
*/
|
|
8045
|
-
|
|
8045
|
+
serialNumberId: number;
|
|
8046
8046
|
|
|
8047
8047
|
/**
|
|
8048
8048
|
* Bemerkung
|
|
@@ -8309,14 +8309,14 @@ export interface OpenItem {
|
|
|
8309
8309
|
dunningBlock: boolean;
|
|
8310
8310
|
|
|
8311
8311
|
/**
|
|
8312
|
-
*
|
|
8312
|
+
* order
|
|
8313
8313
|
*/
|
|
8314
|
-
|
|
8314
|
+
order: ApiObjectReference;
|
|
8315
8315
|
|
|
8316
8316
|
/**
|
|
8317
|
-
*
|
|
8317
|
+
* Summe der Zahlungen in Basiswährung
|
|
8318
8318
|
*/
|
|
8319
|
-
|
|
8319
|
+
baseSumPayments: number;
|
|
8320
8320
|
|
|
8321
8321
|
/**
|
|
8322
8322
|
* MetaInformations for this Object
|
|
@@ -8349,14 +8349,14 @@ export interface OpenItem {
|
|
|
8349
8349
|
version: number;
|
|
8350
8350
|
|
|
8351
8351
|
/**
|
|
8352
|
-
*
|
|
8352
|
+
* List of tags
|
|
8353
8353
|
*/
|
|
8354
|
-
|
|
8354
|
+
tags: Array<TagDto>;
|
|
8355
8355
|
|
|
8356
8356
|
/**
|
|
8357
|
-
*
|
|
8357
|
+
* Summe der skontierbaren Rechnungsbeträge in Basiswährung
|
|
8358
8358
|
*/
|
|
8359
|
-
|
|
8359
|
+
baseSumDiscountableAmount: number;
|
|
8360
8360
|
|
|
8361
8361
|
/**
|
|
8362
8362
|
* Fälligkeitsdatum
|
|
@@ -8419,14 +8419,14 @@ export interface OpenItem {
|
|
|
8419
8419
|
depositPaymentAmount: number;
|
|
8420
8420
|
|
|
8421
8421
|
/**
|
|
8422
|
-
*
|
|
8422
|
+
* free payments
|
|
8423
8423
|
*/
|
|
8424
|
-
|
|
8424
|
+
records: Array<OpenItemRecord>;
|
|
8425
8425
|
|
|
8426
8426
|
/**
|
|
8427
|
-
*
|
|
8427
|
+
* Verwendungszweck
|
|
8428
8428
|
*/
|
|
8429
|
-
|
|
8429
|
+
purpose: string;
|
|
8430
8430
|
|
|
8431
8431
|
/**
|
|
8432
8432
|
* How much discount can be given for speedy payment, rule 2
|
|
@@ -8499,14 +8499,14 @@ export interface OpenItem {
|
|
|
8499
8499
|
originalPaymentDueDate: ScriptingDate;
|
|
8500
8500
|
|
|
8501
8501
|
/**
|
|
8502
|
-
*
|
|
8502
|
+
* Valutadatum
|
|
8503
8503
|
*/
|
|
8504
|
-
|
|
8504
|
+
valueDate: ScriptingDate;
|
|
8505
8505
|
|
|
8506
8506
|
/**
|
|
8507
|
-
*
|
|
8507
|
+
* whether this open item is balanced, partially paid or open
|
|
8508
8508
|
*/
|
|
8509
|
-
|
|
8509
|
+
balanceState: OpenItemBalanceState;
|
|
8510
8510
|
|
|
8511
8511
|
/**
|
|
8512
8512
|
* Skontobetrag 1
|
|
@@ -8539,14 +8539,14 @@ export interface OpenItem {
|
|
|
8539
8539
|
taxRateRef: ApiObjectReference;
|
|
8540
8540
|
|
|
8541
8541
|
/**
|
|
8542
|
-
*
|
|
8542
|
+
* Basiswährung des offenen Postens (ISO-A3)
|
|
8543
8543
|
*/
|
|
8544
|
-
|
|
8544
|
+
baseCurrencyCode: string;
|
|
8545
8545
|
|
|
8546
8546
|
/**
|
|
8547
|
-
*
|
|
8547
|
+
* Anzahlungsrechnung
|
|
8548
8548
|
*/
|
|
8549
|
-
|
|
8549
|
+
depositInvoice: ApiObjectReference;
|
|
8550
8550
|
|
|
8551
8551
|
/**
|
|
8552
8552
|
* Steuerstatus (von außen setzbar, wenn kein Beleg vorhanden ist)
|
|
@@ -8827,14 +8827,14 @@ export interface OpenItemRecord {
|
|
|
8827
8827
|
version: number;
|
|
8828
8828
|
|
|
8829
8829
|
/**
|
|
8830
|
-
*
|
|
8830
|
+
* id der transaction, die diesen record hervorgerufen hat
|
|
8831
8831
|
*/
|
|
8832
|
-
|
|
8832
|
+
transactionId: number;
|
|
8833
8833
|
|
|
8834
8834
|
/**
|
|
8835
|
-
*
|
|
8835
|
+
* Buchungsbetrag in Basiswährung
|
|
8836
8836
|
*/
|
|
8837
|
-
|
|
8837
|
+
baseAmount: number;
|
|
8838
8838
|
|
|
8839
8839
|
/**
|
|
8840
8840
|
* Abzugsbetrag in Basiswährung
|
|
@@ -9022,14 +9022,14 @@ export interface PaymentMethod {
|
|
|
9022
9022
|
daysToAddForFollowup: number;
|
|
9023
9023
|
|
|
9024
9024
|
/**
|
|
9025
|
-
*
|
|
9025
|
+
* external Payment Id
|
|
9026
9026
|
*/
|
|
9027
|
-
|
|
9027
|
+
externalPaymentId: string;
|
|
9028
9028
|
|
|
9029
9029
|
/**
|
|
9030
|
-
*
|
|
9030
|
+
* Die Business Transaction
|
|
9031
9031
|
*/
|
|
9032
|
-
|
|
9032
|
+
businessTransaction: ApiObjectReference;
|
|
9033
9033
|
|
|
9034
9034
|
/**
|
|
9035
9035
|
* Unique identifier of the Object
|
|
@@ -9132,11 +9132,6 @@ export interface PaymentTerm {
|
|
|
9132
9132
|
*/
|
|
9133
9133
|
paymentDays1: number;
|
|
9134
9134
|
|
|
9135
|
-
/**
|
|
9136
|
-
* Days for Discount 2
|
|
9137
|
-
*/
|
|
9138
|
-
paymentDays2: number;
|
|
9139
|
-
|
|
9140
9135
|
/**
|
|
9141
9136
|
* Aktiv?
|
|
9142
9137
|
*/
|
|
@@ -9147,6 +9142,11 @@ export interface PaymentTerm {
|
|
|
9147
9142
|
*/
|
|
9148
9143
|
description: string;
|
|
9149
9144
|
|
|
9145
|
+
/**
|
|
9146
|
+
* Days for Discount 2
|
|
9147
|
+
*/
|
|
9148
|
+
paymentDays2: number;
|
|
9149
|
+
|
|
9150
9150
|
/**
|
|
9151
9151
|
* label for this payment term
|
|
9152
9152
|
*/
|
|
@@ -9608,14 +9608,14 @@ export interface PicklistLineComponent {
|
|
|
9608
9608
|
quantityCollected: number;
|
|
9609
9609
|
|
|
9610
9610
|
/**
|
|
9611
|
-
*
|
|
9611
|
+
* Menge der Position
|
|
9612
9612
|
*/
|
|
9613
|
-
|
|
9613
|
+
quantity: number;
|
|
9614
9614
|
|
|
9615
9615
|
/**
|
|
9616
|
-
*
|
|
9616
|
+
* Artikelbezeichnung
|
|
9617
9617
|
*/
|
|
9618
|
-
|
|
9618
|
+
articleName: string;
|
|
9619
9619
|
|
|
9620
9620
|
/**
|
|
9621
9621
|
* Artikelbeschreibung
|
|
@@ -9843,6 +9843,11 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
9843
9843
|
*/
|
|
9844
9844
|
maxOrderValue: number;
|
|
9845
9845
|
|
|
9846
|
+
/**
|
|
9847
|
+
* Nur vollständig lieferbare Positionen
|
|
9848
|
+
*/
|
|
9849
|
+
onlyFullDeliverableOrderLines: boolean;
|
|
9850
|
+
|
|
9846
9851
|
/**
|
|
9847
9852
|
* Selektion über den Bereich vom Lieferdatum
|
|
9848
9853
|
*/
|
|
@@ -9853,11 +9858,6 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
9853
9858
|
*/
|
|
9854
9859
|
maxOrderCount: number;
|
|
9855
9860
|
|
|
9856
|
-
/**
|
|
9857
|
-
* Nur vollständig lieferbare Positionen
|
|
9858
|
-
*/
|
|
9859
|
-
onlyFullDeliverableOrderLines: boolean;
|
|
9860
|
-
|
|
9861
9861
|
/**
|
|
9862
9862
|
* Selektion über den Bereich vom Belegdatum
|
|
9863
9863
|
*/
|
|
@@ -9936,6 +9936,11 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
9936
9936
|
*/
|
|
9937
9937
|
orderPickingTrolleyGroupRef: ApiObjectReference;
|
|
9938
9938
|
|
|
9939
|
+
/**
|
|
9940
|
+
* Mit welcher Reportgruppe soll die Pickliste gedruckt werden?
|
|
9941
|
+
*/
|
|
9942
|
+
picklistOutputReportGroupRef: ApiObjectReference;
|
|
9943
|
+
|
|
9939
9944
|
/**
|
|
9940
9945
|
* Lagerplätze vorgeben
|
|
9941
9946
|
*/
|
|
@@ -9947,20 +9952,15 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
9947
9952
|
orderPickingTrolleyRef: ApiObjectReference;
|
|
9948
9953
|
|
|
9949
9954
|
/**
|
|
9950
|
-
*
|
|
9955
|
+
* Sollen alle verfügbaren Pickwagen verwendet werden?
|
|
9951
9956
|
*/
|
|
9952
|
-
|
|
9957
|
+
useAllAvailOrderPickingTrolleys: boolean;
|
|
9953
9958
|
|
|
9954
9959
|
/**
|
|
9955
9960
|
* Positionen der Pickliste nach Laufwegposition sortieren
|
|
9956
9961
|
*/
|
|
9957
9962
|
sortByRoutePosition: boolean;
|
|
9958
9963
|
|
|
9959
|
-
/**
|
|
9960
|
-
* Sollen alle verfügbaren Pickwagen verwendet werden?
|
|
9961
|
-
*/
|
|
9962
|
-
useAllAvailOrderPickingTrolleys: boolean;
|
|
9963
|
-
|
|
9964
9964
|
/**
|
|
9965
9965
|
* Sollen zuerst noch Picklisten für die Schnellkommissionierung erzeugt werden?
|
|
9966
9966
|
*/
|
|
@@ -10025,24 +10025,24 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
10025
10025
|
showShippingFormOnPickingFinish: boolean;
|
|
10026
10026
|
|
|
10027
10027
|
/**
|
|
10028
|
-
*
|
|
10028
|
+
* Digitale Pickliste verwenden: dabei werden nur die Positionen im Frontend gezeigt und durch Tippen oder Wischen bestätigt
|
|
10029
10029
|
*/
|
|
10030
|
-
|
|
10030
|
+
useDigitalPicklist: boolean;
|
|
10031
10031
|
|
|
10032
10032
|
/**
|
|
10033
|
-
*
|
|
10033
|
+
* Sammelbestätigung erlauben
|
|
10034
10034
|
*/
|
|
10035
|
-
|
|
10035
|
+
allowFullConfirmation: boolean;
|
|
10036
10036
|
|
|
10037
10037
|
/**
|
|
10038
|
-
*
|
|
10038
|
+
* Sollen bei der Erfassung automatisch die Etiketten gedruckt werden?
|
|
10039
10039
|
*/
|
|
10040
|
-
|
|
10040
|
+
printLabelOnScan: boolean;
|
|
10041
10041
|
|
|
10042
10042
|
/**
|
|
10043
|
-
*
|
|
10043
|
+
* Sollen Dienstleistungen kommissioniert werden?
|
|
10044
10044
|
*/
|
|
10045
|
-
|
|
10045
|
+
allowPickingOfServiceArticles: boolean;
|
|
10046
10046
|
|
|
10047
10047
|
/**
|
|
10048
10048
|
* Verwende die Verkaufseinheit als Standardmenge
|
|
@@ -10060,14 +10060,14 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
10060
10060
|
printLabelOnCompleteOrder: boolean;
|
|
10061
10061
|
|
|
10062
10062
|
/**
|
|
10063
|
-
*
|
|
10063
|
+
* Rollende Kommissionierung/Konsolidierung: beim Sammeln muss die Box nach dem Scan eines Artikels per Scan bestätigt werden
|
|
10064
10064
|
*/
|
|
10065
|
-
|
|
10065
|
+
scanPickTrolleyBoxToConfirmPickedArticle: boolean;
|
|
10066
10066
|
|
|
10067
10067
|
/**
|
|
10068
|
-
*
|
|
10068
|
+
* Sollen bei Abschluss des des Pickens automatisch die Etiketten gedruckt werden?
|
|
10069
10069
|
*/
|
|
10070
|
-
|
|
10070
|
+
printLabelAfterPicking: boolean;
|
|
10071
10071
|
|
|
10072
10072
|
/**
|
|
10073
10073
|
* Chargen automatisch bestätigen, wenn sie vorgegeben oder bereits beim Picken erfasst wurden
|
|
@@ -10154,14 +10154,14 @@ export interface PriceSelectionCriteria {
|
|
|
10154
10154
|
date: ScriptingDate;
|
|
10155
10155
|
|
|
10156
10156
|
/**
|
|
10157
|
-
*
|
|
10157
|
+
* Eine Menge
|
|
10158
10158
|
*/
|
|
10159
|
-
|
|
10159
|
+
quantity: number;
|
|
10160
10160
|
|
|
10161
10161
|
/**
|
|
10162
|
-
*
|
|
10162
|
+
* Die Preisgruppe
|
|
10163
10163
|
*/
|
|
10164
|
-
|
|
10164
|
+
priceGroupId: number;
|
|
10165
10165
|
|
|
10166
10166
|
/**
|
|
10167
10167
|
* Liste von Artikel-IDs
|
|
@@ -10197,14 +10197,14 @@ export interface PriceSelectionCriteria {
|
|
|
10197
10197
|
export interface Product {
|
|
10198
10198
|
|
|
10199
10199
|
/**
|
|
10200
|
-
*
|
|
10200
|
+
* Zolltarifnummer
|
|
10201
10201
|
*/
|
|
10202
|
-
|
|
10202
|
+
customsTariffNumber: string;
|
|
10203
10203
|
|
|
10204
10204
|
/**
|
|
10205
|
-
*
|
|
10205
|
+
* Charge muss bei Einbuchung in ein Verkaufslager vergeben werden (für Serientyp LOT und BEST_BEFORE)
|
|
10206
10206
|
*/
|
|
10207
|
-
|
|
10207
|
+
lotOnlyRequiredWhenBookedToSalesStorage: boolean;
|
|
10208
10208
|
|
|
10209
10209
|
/**
|
|
10210
10210
|
* Gebindeschema dieses Produkts
|
|
@@ -10373,14 +10373,14 @@ export interface ProductDiscount {
|
|
|
10373
10373
|
fromQuantity: number;
|
|
10374
10374
|
|
|
10375
10375
|
/**
|
|
10376
|
-
*
|
|
10376
|
+
* Hersteller
|
|
10377
10377
|
*/
|
|
10378
|
-
|
|
10378
|
+
manufacturerRef: ApiObjectReference;
|
|
10379
10379
|
|
|
10380
10380
|
/**
|
|
10381
|
-
*
|
|
10381
|
+
* Produkt, für welches dieser Rabatt gültig ist
|
|
10382
10382
|
*/
|
|
10383
|
-
|
|
10383
|
+
articleRef: ApiObjectReference;
|
|
10384
10384
|
|
|
10385
10385
|
/**
|
|
10386
10386
|
* Gültig von
|
|
@@ -10388,14 +10388,14 @@ export interface ProductDiscount {
|
|
|
10388
10388
|
validFrom: ScriptingDate;
|
|
10389
10389
|
|
|
10390
10390
|
/**
|
|
10391
|
-
*
|
|
10391
|
+
* Warengruppe
|
|
10392
10392
|
*/
|
|
10393
|
-
|
|
10393
|
+
productGroupRef: ApiObjectReference;
|
|
10394
10394
|
|
|
10395
10395
|
/**
|
|
10396
|
-
*
|
|
10396
|
+
* Bestimmt die Art des Rabatts
|
|
10397
10397
|
*/
|
|
10398
|
-
|
|
10398
|
+
modifierType: PriceModifierType;
|
|
10399
10399
|
|
|
10400
10400
|
/**
|
|
10401
10401
|
* Version Identifier for this Object (for PUT)
|
|
@@ -10443,14 +10443,14 @@ export interface ProductDiscount {
|
|
|
10443
10443
|
modifierValueType: ValueType;
|
|
10444
10444
|
|
|
10445
10445
|
/**
|
|
10446
|
-
*
|
|
10446
|
+
* Account, für den der Rabatt gültig ist
|
|
10447
10447
|
*/
|
|
10448
|
-
|
|
10448
|
+
accountRef: ApiObjectReference;
|
|
10449
10449
|
|
|
10450
10450
|
/**
|
|
10451
|
-
*
|
|
10451
|
+
* Name des Rabatts
|
|
10452
10452
|
*/
|
|
10453
|
-
|
|
10453
|
+
modifierName: string;
|
|
10454
10454
|
|
|
10455
10455
|
/**
|
|
10456
10456
|
* Unique identifier of the Object
|
|
@@ -10637,14 +10637,14 @@ export interface ProductPrice {
|
|
|
10637
10637
|
supplierGroupRef: ApiObjectReference;
|
|
10638
10638
|
|
|
10639
10639
|
/**
|
|
10640
|
-
*
|
|
10640
|
+
* Hersteller
|
|
10641
10641
|
*/
|
|
10642
|
-
|
|
10642
|
+
manufacturerRef: ApiObjectReference;
|
|
10643
10643
|
|
|
10644
10644
|
/**
|
|
10645
|
-
*
|
|
10645
|
+
* Produkt, für welches dieser Preis gültig ist
|
|
10646
10646
|
*/
|
|
10647
|
-
|
|
10647
|
+
articleRef: ApiObjectReference;
|
|
10648
10648
|
|
|
10649
10649
|
/**
|
|
10650
10650
|
* Version Identifier for this Object (for PUT)
|
|
@@ -10672,14 +10672,14 @@ export interface ProductPrice {
|
|
|
10672
10672
|
specialOfferPrice: boolean;
|
|
10673
10673
|
|
|
10674
10674
|
/**
|
|
10675
|
-
*
|
|
10675
|
+
* Gültig bis
|
|
10676
10676
|
*/
|
|
10677
|
-
|
|
10677
|
+
validUntil: ScriptingDate;
|
|
10678
10678
|
|
|
10679
10679
|
/**
|
|
10680
|
-
*
|
|
10680
|
+
* Preisbasis
|
|
10681
10681
|
*/
|
|
10682
|
-
|
|
10682
|
+
priceBase: ArticlePriceBase;
|
|
10683
10683
|
|
|
10684
10684
|
/**
|
|
10685
10685
|
* Bestimmt die Art des Aufschlages (fest oder prozentual) bei EK-Kalkulation
|
|
@@ -10857,14 +10857,14 @@ export interface RequestDocument {
|
|
|
10857
10857
|
deliveryTermId: number;
|
|
10858
10858
|
|
|
10859
10859
|
/**
|
|
10860
|
-
*
|
|
10860
|
+
* Dokumentzeilen
|
|
10861
10861
|
*/
|
|
10862
|
-
|
|
10862
|
+
lines: Array<RequestDocumentLine>;
|
|
10863
10863
|
|
|
10864
10864
|
/**
|
|
10865
|
-
*
|
|
10865
|
+
* Für interne Zwecke: Währung für das Document
|
|
10866
10866
|
*/
|
|
10867
|
-
|
|
10867
|
+
currencyId: number;
|
|
10868
10868
|
|
|
10869
10869
|
/**
|
|
10870
10870
|
* Nur für interne Zwecke: neue Positionen für einzeln retournierte Baugruppen-Komponenten
|
|
@@ -10882,14 +10882,14 @@ export interface RequestDocument {
|
|
|
10882
10882
|
contractDetail: DocumentContractDetail;
|
|
10883
10883
|
|
|
10884
10884
|
/**
|
|
10885
|
-
*
|
|
10885
|
+
* Für interne Zwecke: Zahlungsbedingung für das Document
|
|
10886
10886
|
*/
|
|
10887
|
-
|
|
10887
|
+
paymentTermId: number;
|
|
10888
10888
|
|
|
10889
10889
|
/**
|
|
10890
|
-
*
|
|
10890
|
+
* Vorgabelieferant bei Übernahme von Auftrag zu Bestellung(en)
|
|
10891
10891
|
*/
|
|
10892
|
-
|
|
10892
|
+
supplierAccountId: number;
|
|
10893
10893
|
|
|
10894
10894
|
/**
|
|
10895
10895
|
* Schema Freifelder
|
|
@@ -10937,14 +10937,14 @@ export interface RequestDocument {
|
|
|
10937
10937
|
texts: Array<DocumentText>;
|
|
10938
10938
|
|
|
10939
10939
|
/**
|
|
10940
|
-
*
|
|
10940
|
+
* Wird dieser Beleg durch die Picklistenverarbeitung verarbeitet?
|
|
10941
10941
|
*/
|
|
10942
|
-
|
|
10942
|
+
processedByPicklistProcessing: boolean;
|
|
10943
10943
|
|
|
10944
10944
|
/**
|
|
10945
|
-
*
|
|
10945
|
+
* Nur für interne Zwecke: neue Positionen, die bei Übernahme aus einer Pickliste angelegt werden sollen
|
|
10946
10946
|
*/
|
|
10947
|
-
|
|
10947
|
+
picklistLinesToAddOnTransfer: Array<PicklistLine>;
|
|
10948
10948
|
|
|
10949
10949
|
/**
|
|
10950
10950
|
* Die Rabatte des Beleges
|
|
@@ -11045,14 +11045,14 @@ export interface RequestDocumentLine {
|
|
|
11045
11045
|
supplierAccountId: number;
|
|
11046
11046
|
|
|
11047
11047
|
/**
|
|
11048
|
-
*
|
|
11048
|
+
* Menge, die in dieser Transaktion verarbeitet werden soll
|
|
11049
11049
|
*/
|
|
11050
|
-
|
|
11050
|
+
quantity: number;
|
|
11051
11051
|
|
|
11052
11052
|
/**
|
|
11053
|
-
*
|
|
11053
|
+
* Position der Hauptartikel-Position einer Zubehör-Position
|
|
11054
11054
|
*/
|
|
11055
|
-
|
|
11055
|
+
mainArticleLinePosition: number;
|
|
11056
11056
|
|
|
11057
11057
|
/**
|
|
11058
11058
|
* Versandkosten mit Bedingungen
|
|
@@ -11070,14 +11070,14 @@ export interface RequestDocumentLine {
|
|
|
11070
11070
|
fabricationDetail: RequestDocumentLineFabricationDetail;
|
|
11071
11071
|
|
|
11072
11072
|
/**
|
|
11073
|
-
*
|
|
11073
|
+
* Bemerkung zur OP-Position - wird beim Abschluss in den Kommentar des Offenen Postens übernommen
|
|
11074
11074
|
*/
|
|
11075
|
-
|
|
11075
|
+
settledOpenItemComment: string;
|
|
11076
11076
|
|
|
11077
11077
|
/**
|
|
11078
|
-
*
|
|
11078
|
+
* (optional) ID des Artikels dieser Position
|
|
11079
11079
|
*/
|
|
11080
|
-
|
|
11080
|
+
articleId: number;
|
|
11081
11081
|
|
|
11082
11082
|
/**
|
|
11083
11083
|
* ID der Belegposition im aktuellen Beleg
|
|
@@ -11135,14 +11135,14 @@ export interface RequestDocumentLine {
|
|
|
11135
11135
|
bookings: Array<RequestDocumentLineBooking>;
|
|
11136
11136
|
|
|
11137
11137
|
/**
|
|
11138
|
-
*
|
|
11138
|
+
* (optional) Preis des Artikels dieser Position
|
|
11139
11139
|
*/
|
|
11140
|
-
|
|
11140
|
+
productPrice: number;
|
|
11141
11141
|
|
|
11142
11142
|
/**
|
|
11143
|
-
*
|
|
11143
|
+
* Zu der Zeile Etikettendruck anstoßen
|
|
11144
11144
|
*/
|
|
11145
|
-
|
|
11145
|
+
doLabelPrint: boolean;
|
|
11146
11146
|
}
|
|
11147
11147
|
|
|
11148
11148
|
export interface RequestDocumentLineBooking {
|
|
@@ -11307,14 +11307,14 @@ export interface SalesAgent {
|
|
|
11307
11307
|
note: string;
|
|
11308
11308
|
|
|
11309
11309
|
/**
|
|
11310
|
-
*
|
|
11310
|
+
* is sales agent taxable
|
|
11311
11311
|
*/
|
|
11312
|
-
|
|
11312
|
+
taxable: boolean;
|
|
11313
11313
|
|
|
11314
11314
|
/**
|
|
11315
|
-
*
|
|
11315
|
+
* reference to the delivery method
|
|
11316
11316
|
*/
|
|
11317
|
-
|
|
11317
|
+
deliveryMethodRef: ApiObjectReference;
|
|
11318
11318
|
|
|
11319
11319
|
/**
|
|
11320
11320
|
* Freifelder
|
|
@@ -11791,14 +11791,14 @@ export interface ShelfDocument {
|
|
|
11791
11791
|
tags: Array<TagDto>;
|
|
11792
11792
|
|
|
11793
11793
|
/**
|
|
11794
|
-
*
|
|
11794
|
+
* share informations
|
|
11795
11795
|
*/
|
|
11796
|
-
|
|
11796
|
+
shares: Array<ShelfShare>;
|
|
11797
11797
|
|
|
11798
11798
|
/**
|
|
11799
|
-
*
|
|
11799
|
+
* Mehrsprachige Bezeichnungen
|
|
11800
11800
|
*/
|
|
11801
|
-
|
|
11801
|
+
translatableTexts: Array<ShelfTranslatableText>;
|
|
11802
11802
|
|
|
11803
11803
|
/**
|
|
11804
11804
|
* Automatische Löschung ab
|
|
@@ -11983,14 +11983,14 @@ export interface ShelfFile {
|
|
|
11983
11983
|
subFiles: Array<SubFileInfo>;
|
|
11984
11984
|
|
|
11985
11985
|
/**
|
|
11986
|
-
*
|
|
11986
|
+
* revision number of this file
|
|
11987
11987
|
*/
|
|
11988
|
-
|
|
11988
|
+
revisionNumber: number;
|
|
11989
11989
|
|
|
11990
11990
|
/**
|
|
11991
|
-
*
|
|
11991
|
+
* fileSize
|
|
11992
11992
|
*/
|
|
11993
|
-
|
|
11993
|
+
fileSize: number;
|
|
11994
11994
|
|
|
11995
11995
|
/**
|
|
11996
11996
|
* file-extension of this entry
|
|
@@ -12018,14 +12018,14 @@ export interface ShelfFile {
|
|
|
12018
12018
|
version: number;
|
|
12019
12019
|
|
|
12020
12020
|
/**
|
|
12021
|
-
*
|
|
12021
|
+
* current reference of this file in our storage
|
|
12022
12022
|
*/
|
|
12023
|
-
|
|
12023
|
+
storageHandle: string;
|
|
12024
12024
|
|
|
12025
12025
|
/**
|
|
12026
|
-
*
|
|
12026
|
+
* meta data
|
|
12027
12027
|
*/
|
|
12028
|
-
|
|
12028
|
+
metaDataEntries: Array<ShelfFileMetaData>;
|
|
12029
12029
|
|
|
12030
12030
|
/**
|
|
12031
12031
|
* MetaInformations for this Object
|
|
@@ -12072,14 +12072,14 @@ export interface ShelfShare {
|
|
|
12072
12072
|
publishState: ShelfSharePublishState;
|
|
12073
12073
|
|
|
12074
12074
|
/**
|
|
12075
|
-
*
|
|
12075
|
+
* wie viele Minuten bleibt dieser resource-pfad zugreifbar (null = unlimited)
|
|
12076
12076
|
*/
|
|
12077
|
-
|
|
12077
|
+
publicUrlDurationInMinutes: number;
|
|
12078
12078
|
|
|
12079
12079
|
/**
|
|
12080
|
-
*
|
|
12080
|
+
* Freifelder
|
|
12081
12081
|
*/
|
|
12082
|
-
|
|
12082
|
+
custom: EavShelfshare;
|
|
12083
12083
|
|
|
12084
12084
|
/**
|
|
12085
12085
|
* der url-pfadanteil, der öffentlichen zugriff auf diese resource gibt
|
|
@@ -12668,14 +12668,14 @@ export const enum TagType {
|
|
|
12668
12668
|
export interface TaxIdForeignCountry {
|
|
12669
12669
|
|
|
12670
12670
|
/**
|
|
12671
|
-
*
|
|
12671
|
+
* Tax ID of the company in the associated country
|
|
12672
12672
|
*/
|
|
12673
|
-
|
|
12673
|
+
taxId: string;
|
|
12674
12674
|
|
|
12675
12675
|
/**
|
|
12676
|
-
*
|
|
12676
|
+
* ISO 2 Code of the country this tax ID is used for
|
|
12677
12677
|
*/
|
|
12678
|
-
|
|
12678
|
+
countryCode: string;
|
|
12679
12679
|
|
|
12680
12680
|
/**
|
|
12681
12681
|
* Unique identifier of the Object
|
|
@@ -13060,14 +13060,14 @@ export interface User {
|
|
|
13060
13060
|
version: number;
|
|
13061
13061
|
|
|
13062
13062
|
/**
|
|
13063
|
-
*
|
|
13063
|
+
* first-name
|
|
13064
13064
|
*/
|
|
13065
|
-
|
|
13065
|
+
firstName: string;
|
|
13066
13066
|
|
|
13067
13067
|
/**
|
|
13068
|
-
*
|
|
13068
|
+
* is the email verified
|
|
13069
13069
|
*/
|
|
13070
|
-
|
|
13070
|
+
emailVerified: boolean;
|
|
13071
13071
|
|
|
13072
13072
|
/**
|
|
13073
13073
|
* email-address
|