@vario-software/types 2026.28.0 → 2026.28.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/scripting/services.d.ts +35 -35
- package/scripting/types.d.ts +354 -354
package/scripting/types.d.ts
CHANGED
|
@@ -178,14 +178,14 @@ export interface Account {
|
|
|
178
178
|
responsibleUserRef: ApiObjectReference;
|
|
179
179
|
|
|
180
180
|
/**
|
|
181
|
-
*
|
|
181
|
+
* Erstkontakt am
|
|
182
182
|
*/
|
|
183
|
-
|
|
183
|
+
initialContactAt: ScriptingDate;
|
|
184
184
|
|
|
185
185
|
/**
|
|
186
|
-
*
|
|
186
|
+
* calculation mode of this document
|
|
187
187
|
*/
|
|
188
|
-
|
|
188
|
+
calculationMode: CalculationMode;
|
|
189
189
|
|
|
190
190
|
/**
|
|
191
191
|
* Sprache des Accounts
|
|
@@ -213,14 +213,14 @@ export interface Account {
|
|
|
213
213
|
persons: Array<AccountPerson>;
|
|
214
214
|
|
|
215
215
|
/**
|
|
216
|
-
*
|
|
216
|
+
* Referenz auf den Ziel-Belegtyp nach der Kommissionierung
|
|
217
217
|
*/
|
|
218
|
-
|
|
218
|
+
afterPickingTargetDocumentTypeRef: ApiObjectReference;
|
|
219
219
|
|
|
220
220
|
/**
|
|
221
|
-
*
|
|
221
|
+
* Standard-Ansprechpartner
|
|
222
222
|
*/
|
|
223
|
-
|
|
223
|
+
defaultPerson: AccountPerson;
|
|
224
224
|
|
|
225
225
|
/**
|
|
226
226
|
* Account-Beziehungen
|
|
@@ -290,26 +290,26 @@ export interface AccountAddress {
|
|
|
290
290
|
*/
|
|
291
291
|
regionRef: ApiObjectReference;
|
|
292
292
|
|
|
293
|
-
/**
|
|
294
|
-
* Title
|
|
295
|
-
*/
|
|
296
|
-
titleRef: ApiCreatableReference;
|
|
297
|
-
|
|
298
293
|
/**
|
|
299
294
|
* Post office box
|
|
300
295
|
*/
|
|
301
296
|
postOfficeBox: string;
|
|
302
297
|
|
|
303
298
|
/**
|
|
304
|
-
*
|
|
299
|
+
* Title
|
|
305
300
|
*/
|
|
306
|
-
|
|
301
|
+
titleRef: ApiCreatableReference;
|
|
307
302
|
|
|
308
303
|
/**
|
|
309
304
|
* Street
|
|
310
305
|
*/
|
|
311
306
|
street: string;
|
|
312
307
|
|
|
308
|
+
/**
|
|
309
|
+
* Country code
|
|
310
|
+
*/
|
|
311
|
+
countryCode: string;
|
|
312
|
+
|
|
313
313
|
/**
|
|
314
314
|
* Unique identifier of the Object
|
|
315
315
|
*/
|
|
@@ -411,14 +411,14 @@ export interface AccountAddress {
|
|
|
411
411
|
streetAddressNumber: string;
|
|
412
412
|
|
|
413
413
|
/**
|
|
414
|
-
*
|
|
414
|
+
* Default contacts
|
|
415
415
|
*/
|
|
416
|
-
|
|
416
|
+
defaultContacts: Map<ContactTypeType,Contact>;
|
|
417
417
|
|
|
418
418
|
/**
|
|
419
|
-
*
|
|
419
|
+
* Parcel station customer number
|
|
420
420
|
*/
|
|
421
|
-
|
|
421
|
+
parcelStationCustomerNumber: string;
|
|
422
422
|
|
|
423
423
|
/**
|
|
424
424
|
* Name3
|
|
@@ -494,14 +494,14 @@ export interface AccountBankdetail {
|
|
|
494
494
|
version: number;
|
|
495
495
|
|
|
496
496
|
/**
|
|
497
|
-
*
|
|
497
|
+
* Hauptbankverbindung für
|
|
498
498
|
*/
|
|
499
|
-
|
|
499
|
+
mainBankAccountType: TaxPerformanceLocationType;
|
|
500
500
|
|
|
501
501
|
/**
|
|
502
|
-
*
|
|
502
|
+
* city of the bank
|
|
503
503
|
*/
|
|
504
|
-
|
|
504
|
+
bankCity: string;
|
|
505
505
|
|
|
506
506
|
/**
|
|
507
507
|
* origin type
|
|
@@ -1014,20 +1014,25 @@ export interface Article {
|
|
|
1014
1014
|
customsTariffNumber: string;
|
|
1015
1015
|
|
|
1016
1016
|
/**
|
|
1017
|
-
*
|
|
1017
|
+
* is this product purchasable
|
|
1018
1018
|
*/
|
|
1019
|
-
|
|
1019
|
+
purchasable: boolean;
|
|
1020
1020
|
|
|
1021
1021
|
/**
|
|
1022
|
-
*
|
|
1022
|
+
* Product custom data
|
|
1023
1023
|
*/
|
|
1024
|
-
|
|
1024
|
+
listingCustom: EavArticleListing;
|
|
1025
1025
|
|
|
1026
1026
|
/**
|
|
1027
1027
|
* base capacity unit
|
|
1028
1028
|
*/
|
|
1029
1029
|
baseCapacityUnit: UnitTypeReference;
|
|
1030
1030
|
|
|
1031
|
+
/**
|
|
1032
|
+
* is this product sellable without any quantity at the stock
|
|
1033
|
+
*/
|
|
1034
|
+
sellableWithoutStock: boolean;
|
|
1035
|
+
|
|
1031
1036
|
/**
|
|
1032
1037
|
* Seriennummern Auszeichnungsart
|
|
1033
1038
|
*/
|
|
@@ -1038,11 +1043,6 @@ export interface Article {
|
|
|
1038
1043
|
*/
|
|
1039
1044
|
initialAvgPurchasePrice: number;
|
|
1040
1045
|
|
|
1041
|
-
/**
|
|
1042
|
-
* is this product sellable without any quantity at the stock
|
|
1043
|
-
*/
|
|
1044
|
-
sellableWithoutStock: boolean;
|
|
1045
|
-
|
|
1046
1046
|
/**
|
|
1047
1047
|
* gross Volume in cubic meters
|
|
1048
1048
|
*/
|
|
@@ -1144,14 +1144,14 @@ export interface Article {
|
|
|
1144
1144
|
deliveryMethodRef: ApiObjectReference;
|
|
1145
1145
|
|
|
1146
1146
|
/**
|
|
1147
|
-
*
|
|
1147
|
+
* Produktion
|
|
1148
1148
|
*/
|
|
1149
|
-
|
|
1149
|
+
fabrication: boolean;
|
|
1150
1150
|
|
|
1151
1151
|
/**
|
|
1152
|
-
*
|
|
1152
|
+
* Soll-Handelsspanne
|
|
1153
1153
|
*/
|
|
1154
|
-
|
|
1154
|
+
targetTradingMargin: number;
|
|
1155
1155
|
|
|
1156
1156
|
/**
|
|
1157
1157
|
* active
|
|
@@ -1208,20 +1208,15 @@ export interface Article {
|
|
|
1208
1208
|
*/
|
|
1209
1209
|
listingStateChangeTime: ScriptingDateTime;
|
|
1210
1210
|
|
|
1211
|
-
/**
|
|
1212
|
-
* Arbeitseinheit in Minuten
|
|
1213
|
-
*/
|
|
1214
|
-
workUnitInMinutes: number;
|
|
1215
|
-
|
|
1216
1211
|
/**
|
|
1217
1212
|
* Country code
|
|
1218
1213
|
*/
|
|
1219
1214
|
countryOfOriginRef: CountryReference;
|
|
1220
1215
|
|
|
1221
1216
|
/**
|
|
1222
|
-
*
|
|
1217
|
+
* Arbeitseinheit in Minuten
|
|
1223
1218
|
*/
|
|
1224
|
-
|
|
1219
|
+
workUnitInMinutes: number;
|
|
1225
1220
|
|
|
1226
1221
|
/**
|
|
1227
1222
|
* Frei kommissionierbar
|
|
@@ -1229,15 +1224,20 @@ export interface Article {
|
|
|
1229
1224
|
freelyPickable: boolean;
|
|
1230
1225
|
|
|
1231
1226
|
/**
|
|
1232
|
-
*
|
|
1227
|
+
* description custom data
|
|
1233
1228
|
*/
|
|
1234
|
-
|
|
1229
|
+
listingDescriptionCustom: EavArticleListingDescription;
|
|
1235
1230
|
|
|
1236
1231
|
/**
|
|
1237
1232
|
* Umkehrung der Steuerschuld nach §13b UStG?
|
|
1238
1233
|
*/
|
|
1239
1234
|
taxLiabilityReversed: boolean;
|
|
1240
1235
|
|
|
1236
|
+
/**
|
|
1237
|
+
* Charge muss bei Einbuchung in ein Verkaufslager vergeben werden (für Serientyp LOT und BEST_BEFORE)
|
|
1238
|
+
*/
|
|
1239
|
+
lotOnlyRequiredWhenBookedToSalesStorage: boolean;
|
|
1240
|
+
|
|
1241
1241
|
/**
|
|
1242
1242
|
* Notiz
|
|
1243
1243
|
*/
|
|
@@ -1279,14 +1279,14 @@ export interface Article {
|
|
|
1279
1279
|
capacity: number;
|
|
1280
1280
|
|
|
1281
1281
|
/**
|
|
1282
|
-
*
|
|
1282
|
+
* gross sales prices
|
|
1283
1283
|
*/
|
|
1284
|
-
|
|
1284
|
+
grossSalesPrice: number;
|
|
1285
1285
|
|
|
1286
1286
|
/**
|
|
1287
|
-
*
|
|
1287
|
+
* Mindestrestlaufzeit Eingang (Tage): Minimale Restlaufzeit in Tagen, die ein Artikel bei der Einbuchung in ein Verkaufslager noch aufweisen muss
|
|
1288
1288
|
*/
|
|
1289
|
-
|
|
1289
|
+
minimumRemainingDaysBeforeExpiryDateOnGoodsReceipt: number;
|
|
1290
1290
|
|
|
1291
1291
|
/**
|
|
1292
1292
|
* Letzter EKP (Startwert)
|
|
@@ -1308,6 +1308,11 @@ export interface Article {
|
|
|
1308
1308
|
*/
|
|
1309
1309
|
shippingLabelPrinting: boolean;
|
|
1310
1310
|
|
|
1311
|
+
/**
|
|
1312
|
+
* Kontingentartikel
|
|
1313
|
+
*/
|
|
1314
|
+
contingentArticleRef: ApiObjectReference;
|
|
1315
|
+
|
|
1311
1316
|
/**
|
|
1312
1317
|
* rabattierbarer Artikel?
|
|
1313
1318
|
*/
|
|
@@ -1318,11 +1323,6 @@ export interface Article {
|
|
|
1318
1323
|
*/
|
|
1319
1324
|
alternativeName: string;
|
|
1320
1325
|
|
|
1321
|
-
/**
|
|
1322
|
-
* Kontingentartikel
|
|
1323
|
-
*/
|
|
1324
|
-
contingentArticleRef: ApiObjectReference;
|
|
1325
|
-
|
|
1326
1326
|
/**
|
|
1327
1327
|
* base capacity
|
|
1328
1328
|
*/
|
|
@@ -1359,14 +1359,14 @@ export interface Article {
|
|
|
1359
1359
|
custom: EavArticle;
|
|
1360
1360
|
|
|
1361
1361
|
/**
|
|
1362
|
-
*
|
|
1362
|
+
* Bedarfsermittlung nur über Reservierungen
|
|
1363
1363
|
*/
|
|
1364
|
-
|
|
1364
|
+
needsAssessmentOnlyOnReservationBasis: boolean;
|
|
1365
1365
|
|
|
1366
1366
|
/**
|
|
1367
|
-
*
|
|
1367
|
+
* Art des Haltbarkeitsdatums
|
|
1368
1368
|
*/
|
|
1369
|
-
|
|
1369
|
+
expiryDateType: ArticleSerialExpiryDateType;
|
|
1370
1370
|
|
|
1371
1371
|
/**
|
|
1372
1372
|
* Hersteller
|
|
@@ -1394,14 +1394,14 @@ export interface Article {
|
|
|
1394
1394
|
listed: boolean;
|
|
1395
1395
|
|
|
1396
1396
|
/**
|
|
1397
|
-
*
|
|
1397
|
+
* Nur manuelle Produktion
|
|
1398
1398
|
*/
|
|
1399
|
-
|
|
1399
|
+
onlyManualFabrication: boolean;
|
|
1400
1400
|
|
|
1401
1401
|
/**
|
|
1402
|
-
*
|
|
1402
|
+
* provisionsberechtiger Artikel?
|
|
1403
1403
|
*/
|
|
1404
|
-
|
|
1404
|
+
commissionable: boolean;
|
|
1405
1405
|
|
|
1406
1406
|
/**
|
|
1407
1407
|
* Mindestrestlaufzeit Ausgang (Tage): Minimale Restlaufzeit in Tagen, die ein Artikel beim Verkauf noch aufweisen muss
|
|
@@ -1542,14 +1542,14 @@ export interface ArticleCustomer {
|
|
|
1542
1542
|
articleName: string;
|
|
1543
1543
|
|
|
1544
1544
|
/**
|
|
1545
|
-
*
|
|
1545
|
+
* Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
|
|
1546
1546
|
*/
|
|
1547
|
-
|
|
1547
|
+
useDeviatingArticleIdentifier: boolean;
|
|
1548
1548
|
|
|
1549
1549
|
/**
|
|
1550
|
-
*
|
|
1550
|
+
* Etikettdruck-Einstellungen
|
|
1551
1551
|
*/
|
|
1552
|
-
|
|
1552
|
+
customerPrintLabelSettings: ArticlePrintLabelSettings;
|
|
1553
1553
|
|
|
1554
1554
|
/**
|
|
1555
1555
|
* Kunden-Preise
|
|
@@ -1557,14 +1557,14 @@ export interface ArticleCustomer {
|
|
|
1557
1557
|
productPrices: Array<ProductPrice>;
|
|
1558
1558
|
|
|
1559
1559
|
/**
|
|
1560
|
-
*
|
|
1560
|
+
* Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
|
|
1561
1561
|
*/
|
|
1562
|
-
|
|
1562
|
+
useDeviatingArticleDescription: boolean;
|
|
1563
1563
|
|
|
1564
1564
|
/**
|
|
1565
|
-
*
|
|
1565
|
+
* Referenced Article
|
|
1566
1566
|
*/
|
|
1567
|
-
|
|
1567
|
+
articleId: number;
|
|
1568
1568
|
|
|
1569
1569
|
/**
|
|
1570
1570
|
* Aktiv?
|
|
@@ -1602,14 +1602,14 @@ export interface ArticleCustomer {
|
|
|
1602
1602
|
defaultGrossPrice: number;
|
|
1603
1603
|
|
|
1604
1604
|
/**
|
|
1605
|
-
*
|
|
1605
|
+
* Abweichende Produktnummer
|
|
1606
1606
|
*/
|
|
1607
|
-
|
|
1607
|
+
deviatingArticleNumber: string;
|
|
1608
1608
|
|
|
1609
1609
|
/**
|
|
1610
|
-
*
|
|
1610
|
+
* Art der Preisermittlung
|
|
1611
1611
|
*/
|
|
1612
|
-
|
|
1612
|
+
priceDetermination: ArticleCustomerPriceDetermination;
|
|
1613
1613
|
|
|
1614
1614
|
/**
|
|
1615
1615
|
* Artikelnummer
|
|
@@ -1724,14 +1724,14 @@ export interface ArticleListing {
|
|
|
1724
1724
|
proposedLowestPriceGross: number;
|
|
1725
1725
|
|
|
1726
1726
|
/**
|
|
1727
|
-
* der
|
|
1727
|
+
* Niedrigster Brutto-Preis der letzten 30 Tage (benutzerdefinierte Eingabe)
|
|
1728
1728
|
*/
|
|
1729
|
-
|
|
1729
|
+
customLowestPriceGross: number;
|
|
1730
1730
|
|
|
1731
1731
|
/**
|
|
1732
|
-
*
|
|
1732
|
+
* der Sales Channel
|
|
1733
1733
|
*/
|
|
1734
|
-
|
|
1734
|
+
salesChannelRef: ApiObjectReference;
|
|
1735
1735
|
|
|
1736
1736
|
/**
|
|
1737
1737
|
* soll der Artikel gelistet werden
|
|
@@ -1947,14 +1947,14 @@ export interface ArticleStorage {
|
|
|
1947
1947
|
reorderPoint: number;
|
|
1948
1948
|
|
|
1949
1949
|
/**
|
|
1950
|
-
*
|
|
1950
|
+
* Aktuelle Menge in Kommissionierung
|
|
1951
1951
|
*/
|
|
1952
|
-
|
|
1952
|
+
quantityInPicking: number;
|
|
1953
1953
|
|
|
1954
1954
|
/**
|
|
1955
|
-
*
|
|
1955
|
+
* Bestellte Menge
|
|
1956
1956
|
*/
|
|
1957
|
-
|
|
1957
|
+
orderedQuantity: number;
|
|
1958
1958
|
|
|
1959
1959
|
/**
|
|
1960
1960
|
* Nachschub auf
|
|
@@ -2007,14 +2007,14 @@ export interface ArticleStorage {
|
|
|
2007
2007
|
storageRef: ApiObjectReference;
|
|
2008
2008
|
|
|
2009
2009
|
/**
|
|
2010
|
-
*
|
|
2010
|
+
* Sollbestand
|
|
2011
2011
|
*/
|
|
2012
|
-
|
|
2012
|
+
targetStock: number;
|
|
2013
2013
|
|
|
2014
2014
|
/**
|
|
2015
|
-
*
|
|
2015
|
+
* Vorgabe-Lagerplätze
|
|
2016
2016
|
*/
|
|
2017
|
-
|
|
2017
|
+
presetStorageBinRefs: Array<StorageBinRef>;
|
|
2018
2018
|
|
|
2019
2019
|
/**
|
|
2020
2020
|
* Aktuelle Menge in Produktion
|
|
@@ -2035,14 +2035,14 @@ export interface ArticleStorage {
|
|
|
2035
2035
|
export interface ArticleSupplier {
|
|
2036
2036
|
|
|
2037
2037
|
/**
|
|
2038
|
-
*
|
|
2038
|
+
* Anzeigename des Accounts
|
|
2039
2039
|
*/
|
|
2040
|
-
|
|
2040
|
+
accountDisplayName: string;
|
|
2041
2041
|
|
|
2042
2042
|
/**
|
|
2043
|
-
*
|
|
2043
|
+
* Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
|
|
2044
2044
|
*/
|
|
2045
|
-
|
|
2045
|
+
useSupplierArticleDescription: boolean;
|
|
2046
2046
|
|
|
2047
2047
|
/**
|
|
2048
2048
|
* Lieferanten-Meldebestand
|
|
@@ -2050,14 +2050,14 @@ export interface ArticleSupplier {
|
|
|
2050
2050
|
supplierReportingStock: number;
|
|
2051
2051
|
|
|
2052
2052
|
/**
|
|
2053
|
-
*
|
|
2053
|
+
* Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
|
|
2054
2054
|
*/
|
|
2055
|
-
|
|
2055
|
+
useSupplierArticleIdentifier: boolean;
|
|
2056
2056
|
|
|
2057
2057
|
/**
|
|
2058
|
-
*
|
|
2058
|
+
* Lieferzeit in (Werk-)Tagen
|
|
2059
2059
|
*/
|
|
2060
|
-
|
|
2060
|
+
deliveryTime: number;
|
|
2061
2061
|
|
|
2062
2062
|
/**
|
|
2063
2063
|
* Soll die abweichende Produktnummer verwendet werden (z.B. in Belegen)
|
|
@@ -2105,14 +2105,14 @@ export interface ArticleSupplier {
|
|
|
2105
2105
|
info: MetaInfo;
|
|
2106
2106
|
|
|
2107
2107
|
/**
|
|
2108
|
-
*
|
|
2108
|
+
* Verpackungseinheit
|
|
2109
2109
|
*/
|
|
2110
|
-
|
|
2110
|
+
packagingUnit: number;
|
|
2111
2111
|
|
|
2112
2112
|
/**
|
|
2113
|
-
*
|
|
2113
|
+
* Referenced Article name
|
|
2114
2114
|
*/
|
|
2115
|
-
|
|
2115
|
+
articleName: string;
|
|
2116
2116
|
|
|
2117
2117
|
/**
|
|
2118
2118
|
* Lieferanten-Preise
|
|
@@ -2145,14 +2145,14 @@ export interface ArticleSupplier {
|
|
|
2145
2145
|
dropShippingAllowed: boolean;
|
|
2146
2146
|
|
|
2147
2147
|
/**
|
|
2148
|
-
* Abweichende
|
|
2148
|
+
* Abweichende Produktbeschreibung
|
|
2149
2149
|
*/
|
|
2150
|
-
|
|
2150
|
+
supplierArticleDescription: string;
|
|
2151
2151
|
|
|
2152
2152
|
/**
|
|
2153
|
-
* Abweichende
|
|
2153
|
+
* Abweichende Produktbezeichnung
|
|
2154
2154
|
*/
|
|
2155
|
-
|
|
2155
|
+
supplierArticleName: string;
|
|
2156
2156
|
|
|
2157
2157
|
/**
|
|
2158
2158
|
* Standardpreis Netto
|
|
@@ -2160,14 +2160,14 @@ export interface ArticleSupplier {
|
|
|
2160
2160
|
defaultNetPrice: number;
|
|
2161
2161
|
|
|
2162
2162
|
/**
|
|
2163
|
-
*
|
|
2163
|
+
* Einkaufseinheit
|
|
2164
2164
|
*/
|
|
2165
|
-
|
|
2165
|
+
purchaseUnit: number;
|
|
2166
2166
|
|
|
2167
2167
|
/**
|
|
2168
|
-
*
|
|
2168
|
+
* Sollen Baugruppen auf Komponenten-Basis bestellt werden?)
|
|
2169
2169
|
*/
|
|
2170
|
-
|
|
2170
|
+
orderOnComponentBase: boolean;
|
|
2171
2171
|
|
|
2172
2172
|
/**
|
|
2173
2173
|
* Referenced Supplier-Account
|
|
@@ -2218,14 +2218,14 @@ export interface Asset {
|
|
|
2218
2218
|
active: boolean;
|
|
2219
2219
|
|
|
2220
2220
|
/**
|
|
2221
|
-
*
|
|
2221
|
+
* Ende Garantie
|
|
2222
2222
|
*/
|
|
2223
|
-
|
|
2223
|
+
warrantyEndDate: ScriptingDate;
|
|
2224
2224
|
|
|
2225
2225
|
/**
|
|
2226
|
-
*
|
|
2226
|
+
* Zugehörige Assets
|
|
2227
2227
|
*/
|
|
2228
|
-
|
|
2228
|
+
childAssetRefs: Array<ApiObjectReference>;
|
|
2229
2229
|
|
|
2230
2230
|
/**
|
|
2231
2231
|
* Asset-Bezeichnung
|
|
@@ -2512,14 +2512,14 @@ export interface CountryReference {
|
|
|
2512
2512
|
export interface CreateNewDocumentRequest {
|
|
2513
2513
|
|
|
2514
2514
|
/**
|
|
2515
|
-
*
|
|
2515
|
+
* Belegart
|
|
2516
2516
|
*/
|
|
2517
|
-
|
|
2517
|
+
documentTypeLabel: string;
|
|
2518
2518
|
|
|
2519
2519
|
/**
|
|
2520
|
-
* Belegart
|
|
2520
|
+
* Standard-Belegart der Kategorie verwenden
|
|
2521
2521
|
*/
|
|
2522
|
-
|
|
2522
|
+
defaultDocumentTypeByCategory: EDocumentCategory;
|
|
2523
2523
|
|
|
2524
2524
|
/**
|
|
2525
2525
|
* Details zum Beleg
|
|
@@ -2630,14 +2630,14 @@ export interface CrmActivity {
|
|
|
2630
2630
|
userRef: ApiObjectReference;
|
|
2631
2631
|
|
|
2632
2632
|
/**
|
|
2633
|
-
*
|
|
2633
|
+
* tatsächliche Startzeit
|
|
2634
2634
|
*/
|
|
2635
|
-
|
|
2635
|
+
startDateTime: ScriptingDateTime;
|
|
2636
2636
|
|
|
2637
2637
|
/**
|
|
2638
|
-
*
|
|
2638
|
+
* Handelt es sich um eine System-Aktivität?
|
|
2639
2639
|
*/
|
|
2640
|
-
|
|
2640
|
+
system: boolean;
|
|
2641
2641
|
|
|
2642
2642
|
/**
|
|
2643
2643
|
* Inhalt dieser Aktivität
|
|
@@ -2744,14 +2744,14 @@ export interface CrmActivityType {
|
|
|
2744
2744
|
export interface CrmChecklistItem {
|
|
2745
2745
|
|
|
2746
2746
|
/**
|
|
2747
|
-
*
|
|
2747
|
+
* Ist das Element "angehakt"?
|
|
2748
2748
|
*/
|
|
2749
|
-
|
|
2749
|
+
checked: boolean;
|
|
2750
2750
|
|
|
2751
2751
|
/**
|
|
2752
|
-
*
|
|
2752
|
+
* Text des Checklisten-Elements
|
|
2753
2753
|
*/
|
|
2754
|
-
|
|
2754
|
+
memo: string;
|
|
2755
2755
|
|
|
2756
2756
|
/**
|
|
2757
2757
|
* Unique identifier of the Object
|
|
@@ -3153,14 +3153,14 @@ export interface CrmProject {
|
|
|
3153
3153
|
priorityRef: ApiObjectReference;
|
|
3154
3154
|
|
|
3155
3155
|
/**
|
|
3156
|
-
*
|
|
3156
|
+
* Projektleiter vom Auftragnehmer
|
|
3157
3157
|
*/
|
|
3158
|
-
|
|
3158
|
+
projectManagerOfContractor: CrmParticipant;
|
|
3159
3159
|
|
|
3160
3160
|
/**
|
|
3161
|
-
*
|
|
3161
|
+
* Phase
|
|
3162
3162
|
*/
|
|
3163
|
-
|
|
3163
|
+
phaseRef: ApiObjectReference;
|
|
3164
3164
|
|
|
3165
3165
|
/**
|
|
3166
3166
|
* Aufgaben-Nummer
|
|
@@ -3178,14 +3178,14 @@ export interface CrmProject {
|
|
|
3178
3178
|
billedTimes: number;
|
|
3179
3179
|
|
|
3180
3180
|
/**
|
|
3181
|
-
*
|
|
3181
|
+
* Einkaufsbelege
|
|
3182
3182
|
*/
|
|
3183
|
-
|
|
3183
|
+
purchaseDocumentRefs: Array<DocumentRef>;
|
|
3184
3184
|
|
|
3185
3185
|
/**
|
|
3186
|
-
*
|
|
3186
|
+
* Geplanter Projektzeitraum (von)
|
|
3187
3187
|
*/
|
|
3188
|
-
|
|
3188
|
+
plannedProjectPeriodFrom: ScriptingDate;
|
|
3189
3189
|
|
|
3190
3190
|
/**
|
|
3191
3191
|
* Verkaufsbelege
|
|
@@ -3218,14 +3218,14 @@ export interface CrmProject {
|
|
|
3218
3218
|
info: MetaInfo;
|
|
3219
3219
|
|
|
3220
3220
|
/**
|
|
3221
|
-
*
|
|
3221
|
+
* Weitere Teilnehmer vom Auftraggeber
|
|
3222
3222
|
*/
|
|
3223
|
-
|
|
3223
|
+
additionalParticipantsOfCustomer: Array<CrmParticipant>;
|
|
3224
3224
|
|
|
3225
3225
|
/**
|
|
3226
|
-
*
|
|
3226
|
+
* Projektleiter vom Auftraggeber
|
|
3227
3227
|
*/
|
|
3228
|
-
|
|
3228
|
+
projectManagerOfCustomer: CrmParticipant;
|
|
3229
3229
|
|
|
3230
3230
|
/**
|
|
3231
3231
|
* Übergeordnete CRM-Objekte
|
|
@@ -3470,9 +3470,9 @@ export interface CrmSubType {
|
|
|
3470
3470
|
export interface CrmTask {
|
|
3471
3471
|
|
|
3472
3472
|
/**
|
|
3473
|
-
*
|
|
3473
|
+
* Angebot
|
|
3474
3474
|
*/
|
|
3475
|
-
|
|
3475
|
+
customerOfferRef: DocumentRef;
|
|
3476
3476
|
|
|
3477
3477
|
/**
|
|
3478
3478
|
* Verantwortlicher Teilnehmer (Ansprechpartner)
|
|
@@ -3480,9 +3480,9 @@ export interface CrmTask {
|
|
|
3480
3480
|
mainResponsibleParticipantRef: ApiObjectReference;
|
|
3481
3481
|
|
|
3482
3482
|
/**
|
|
3483
|
-
*
|
|
3483
|
+
* Liste von Erinnerungen
|
|
3484
3484
|
*/
|
|
3485
|
-
|
|
3485
|
+
reminders: Array<CrmReminder>;
|
|
3486
3486
|
|
|
3487
3487
|
/**
|
|
3488
3488
|
* Notizen
|
|
@@ -3879,14 +3879,14 @@ export interface Customer {
|
|
|
3879
3879
|
dueDate: ScriptingDate;
|
|
3880
3880
|
|
|
3881
3881
|
/**
|
|
3882
|
-
*
|
|
3882
|
+
* collective billable
|
|
3883
3883
|
*/
|
|
3884
|
-
|
|
3884
|
+
collectiveBillable: boolean;
|
|
3885
3885
|
|
|
3886
3886
|
/**
|
|
3887
|
-
*
|
|
3887
|
+
* Maximal mögliche Lieferungen
|
|
3888
3888
|
*/
|
|
3889
|
-
|
|
3889
|
+
maxDeliveries: number;
|
|
3890
3890
|
|
|
3891
3891
|
/**
|
|
3892
3892
|
* Hat der Kunde eine Liefersperre?
|
|
@@ -3914,14 +3914,14 @@ export interface Customer {
|
|
|
3914
3914
|
stackProcessingPriority: number;
|
|
3915
3915
|
|
|
3916
3916
|
/**
|
|
3917
|
-
*
|
|
3917
|
+
* Sammelabrechnung nur manuell auslösen?
|
|
3918
3918
|
*/
|
|
3919
|
-
|
|
3919
|
+
collectiveInvoiceManually: boolean;
|
|
3920
3920
|
|
|
3921
3921
|
/**
|
|
3922
|
-
*
|
|
3922
|
+
* reference to product price group
|
|
3923
3923
|
*/
|
|
3924
|
-
|
|
3924
|
+
productPriceGroupRef: ApiObjectReference;
|
|
3925
3925
|
|
|
3926
3926
|
/**
|
|
3927
3927
|
* Unique identifier of the Object
|
|
@@ -4158,14 +4158,14 @@ export interface DeliveryMethod {
|
|
|
4158
4158
|
defaultSizeUnit: UnitTypeReference;
|
|
4159
4159
|
|
|
4160
4160
|
/**
|
|
4161
|
-
*
|
|
4161
|
+
* translations
|
|
4162
4162
|
*/
|
|
4163
|
-
|
|
4163
|
+
translations: Array<DocumentTypeTerm>;
|
|
4164
4164
|
|
|
4165
4165
|
/**
|
|
4166
|
-
*
|
|
4166
|
+
* Quelle für Paketgewicht
|
|
4167
4167
|
*/
|
|
4168
|
-
|
|
4168
|
+
parcelWeightSource: DeliveryMethodParcelWeightSource;
|
|
4169
4169
|
|
|
4170
4170
|
/**
|
|
4171
4171
|
* Versand-Anbieter
|
|
@@ -4393,6 +4393,11 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4393
4393
|
*/
|
|
4394
4394
|
deliveryQuantityPackages: number;
|
|
4395
4395
|
|
|
4396
|
+
/**
|
|
4397
|
+
* Steuerpflichtig oder steuerfrei
|
|
4398
|
+
*/
|
|
4399
|
+
taxable: boolean;
|
|
4400
|
+
|
|
4396
4401
|
/**
|
|
4397
4402
|
* Leitweg-ID
|
|
4398
4403
|
*/
|
|
@@ -4403,11 +4408,6 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4403
4408
|
*/
|
|
4404
4409
|
referencedOrderNumber: string;
|
|
4405
4410
|
|
|
4406
|
-
/**
|
|
4407
|
-
* Steuerpflichtig oder steuerfrei
|
|
4408
|
-
*/
|
|
4409
|
-
taxable: boolean;
|
|
4410
|
-
|
|
4411
4411
|
/**
|
|
4412
4412
|
* Preisanpassungen - Belegpositionssumme Basiswährung
|
|
4413
4413
|
*/
|
|
@@ -4419,14 +4419,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4419
4419
|
baseDepositPaymentAmount: number;
|
|
4420
4420
|
|
|
4421
4421
|
/**
|
|
4422
|
-
*
|
|
4422
|
+
* Ist der Beleg festgeschrieben?
|
|
4423
4423
|
*/
|
|
4424
|
-
|
|
4424
|
+
frozen: boolean;
|
|
4425
4425
|
|
|
4426
4426
|
/**
|
|
4427
|
-
*
|
|
4427
|
+
* Gesamtpreis vor Rabatt [BRUTTO, NETTO]
|
|
4428
4428
|
*/
|
|
4429
|
-
|
|
4429
|
+
totalBeforeModifier: number;
|
|
4430
4430
|
|
|
4431
4431
|
/**
|
|
4432
4432
|
* Referenz auf verantwortlichen Benutzer
|
|
@@ -4459,14 +4459,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4459
4459
|
accountId: number;
|
|
4460
4460
|
|
|
4461
4461
|
/**
|
|
4462
|
-
* Länderkennzeichen
|
|
4462
|
+
* Länderkennzeichen Leistungsland (ISO Alpha-3)
|
|
4463
4463
|
*/
|
|
4464
|
-
|
|
4464
|
+
performanceCountryCode: string;
|
|
4465
4465
|
|
|
4466
4466
|
/**
|
|
4467
|
-
* Länderkennzeichen
|
|
4467
|
+
* Länderkennzeichen Ursprungsland (ISO Alpha-3)
|
|
4468
4468
|
*/
|
|
4469
|
-
|
|
4469
|
+
sourceCountryCode: string;
|
|
4470
4470
|
|
|
4471
4471
|
/**
|
|
4472
4472
|
* Vereinbartes Anzahlungsdatum
|
|
@@ -4514,14 +4514,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4514
4514
|
supplierNumber: string;
|
|
4515
4515
|
|
|
4516
4516
|
/**
|
|
4517
|
-
*
|
|
4517
|
+
* Gesamtpreis brutto
|
|
4518
4518
|
*/
|
|
4519
|
-
|
|
4519
|
+
totalGrossPrice: number;
|
|
4520
4520
|
|
|
4521
4521
|
/**
|
|
4522
|
-
*
|
|
4522
|
+
* Ist der Beleg zur Lieferung freigegeben?
|
|
4523
4523
|
*/
|
|
4524
|
-
|
|
4524
|
+
deliveryApproved: boolean;
|
|
4525
4525
|
|
|
4526
4526
|
/**
|
|
4527
4527
|
* Kassen-Zahlungspositionen
|
|
@@ -4631,14 +4631,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4631
4631
|
defaultAddress: DocumentAddress;
|
|
4632
4632
|
|
|
4633
4633
|
/**
|
|
4634
|
-
*
|
|
4634
|
+
* Verarbeitungsoption für Stapel
|
|
4635
4635
|
*/
|
|
4636
|
-
|
|
4636
|
+
stackProcessingType: OrderStackProcessingType;
|
|
4637
4637
|
|
|
4638
4638
|
/**
|
|
4639
|
-
*
|
|
4639
|
+
* Leistungsdatum
|
|
4640
4640
|
*/
|
|
4641
|
-
|
|
4641
|
+
performanceDate: ScriptingDate;
|
|
4642
4642
|
|
|
4643
4643
|
/**
|
|
4644
4644
|
* Ist der Streckengeschäfts-Beleg zur Rechnung freigegeben?
|
|
@@ -4666,14 +4666,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4666
4666
|
additionalInfo: DocumentAdditionalInfo;
|
|
4667
4667
|
|
|
4668
4668
|
/**
|
|
4669
|
-
*
|
|
4669
|
+
* Bestelldatum
|
|
4670
4670
|
*/
|
|
4671
|
-
|
|
4671
|
+
orderedOn: ScriptingDate;
|
|
4672
4672
|
|
|
4673
4673
|
/**
|
|
4674
|
-
*
|
|
4674
|
+
* skontierbarer Rechnungsbetrag Basiswährung
|
|
4675
4675
|
*/
|
|
4676
|
-
|
|
4676
|
+
baseCashDiscountableTotalGrossPrice: number;
|
|
4677
4677
|
|
|
4678
4678
|
/**
|
|
4679
4679
|
* MetaInformations for this Object
|
|
@@ -4696,14 +4696,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4696
4696
|
dropShipping: boolean;
|
|
4697
4697
|
|
|
4698
4698
|
/**
|
|
4699
|
-
*
|
|
4699
|
+
* Gesamtpreis netto
|
|
4700
4700
|
*/
|
|
4701
|
-
|
|
4701
|
+
totalNetPrice: number;
|
|
4702
4702
|
|
|
4703
4703
|
/**
|
|
4704
|
-
*
|
|
4704
|
+
* Validierungsstatus bei elektronischen Rechnungen
|
|
4705
4705
|
*/
|
|
4706
|
-
|
|
4706
|
+
valitoolValidationState: EInvoiceValidationState;
|
|
4707
4707
|
|
|
4708
4708
|
/**
|
|
4709
4709
|
* Ist der Beleg veröffentlicht (gedruckt, per Mail versendet)?
|
|
@@ -4825,11 +4825,6 @@ true wenn die Quittung bezahlt ist
|
|
|
4825
4825
|
*/
|
|
4826
4826
|
shippingCosts: Array<DocumentShippingCost>;
|
|
4827
4827
|
|
|
4828
|
-
/**
|
|
4829
|
-
* Rückgeld
|
|
4830
|
-
*/
|
|
4831
|
-
posReceiptChangeAmount: number;
|
|
4832
|
-
|
|
4833
4828
|
/**
|
|
4834
4829
|
* Ist die Quittung ausbalanciert, also bezahlt und kein Rückgeld
|
|
4835
4830
|
true wenn die Quittung ausbalanciert ist
|
|
@@ -4842,6 +4837,11 @@ true wenn die Quittung ausbalanciert ist
|
|
|
4842
4837
|
*/
|
|
4843
4838
|
deliveryTermRef: ApiObjectReference;
|
|
4844
4839
|
|
|
4840
|
+
/**
|
|
4841
|
+
* Rückgeld
|
|
4842
|
+
*/
|
|
4843
|
+
posReceiptChangeAmount: number;
|
|
4844
|
+
|
|
4845
4845
|
/**
|
|
4846
4846
|
* Gesamtbruttogewicht
|
|
4847
4847
|
*/
|
|
@@ -4873,14 +4873,14 @@ true wenn die Quittung ausbalanciert ist
|
|
|
4873
4873
|
taxIdVerificationState: TaxIdVerificationState;
|
|
4874
4874
|
|
|
4875
4875
|
/**
|
|
4876
|
-
*
|
|
4876
|
+
* Bestellt durch Ansprechpartner
|
|
4877
4877
|
*/
|
|
4878
|
-
|
|
4878
|
+
orderedByPersonRef: ApiObjectReference;
|
|
4879
4879
|
|
|
4880
4880
|
/**
|
|
4881
|
-
*
|
|
4881
|
+
* Report-Gruppe, falls vom Standard abweichend
|
|
4882
4882
|
*/
|
|
4883
|
-
|
|
4883
|
+
reportGroupRef: ApiObjectReference;
|
|
4884
4884
|
}
|
|
4885
4885
|
|
|
4886
4886
|
export interface DocumentAdditionalInfo {
|
|
@@ -5036,14 +5036,14 @@ export interface DocumentAddress {
|
|
|
5036
5036
|
postOfficeBox: string;
|
|
5037
5037
|
|
|
5038
5038
|
/**
|
|
5039
|
-
*
|
|
5039
|
+
* Street
|
|
5040
5040
|
*/
|
|
5041
|
-
|
|
5041
|
+
street: string;
|
|
5042
5042
|
|
|
5043
5043
|
/**
|
|
5044
|
-
*
|
|
5044
|
+
* country code IsoAlpha3
|
|
5045
5045
|
*/
|
|
5046
|
-
|
|
5046
|
+
countryCode: string;
|
|
5047
5047
|
|
|
5048
5048
|
/**
|
|
5049
5049
|
* Unique identifier of the Object
|
|
@@ -5456,14 +5456,14 @@ export interface DocumentLine {
|
|
|
5456
5456
|
number: string;
|
|
5457
5457
|
|
|
5458
5458
|
/**
|
|
5459
|
-
*
|
|
5459
|
+
* Referenz zur Kundenauftragszeile
|
|
5460
5460
|
*/
|
|
5461
|
-
|
|
5461
|
+
customerOrderLineRef: DocumentLineRef;
|
|
5462
5462
|
|
|
5463
5463
|
/**
|
|
5464
|
-
*
|
|
5464
|
+
* Gesamtbruttogewicht
|
|
5465
5465
|
*/
|
|
5466
|
-
|
|
5466
|
+
totalGrossWeight: number;
|
|
5467
5467
|
|
|
5468
5468
|
/**
|
|
5469
5469
|
* skontierbare Position?
|
|
@@ -5505,26 +5505,26 @@ export interface DocumentLine {
|
|
|
5505
5505
|
*/
|
|
5506
5506
|
basePrice: number;
|
|
5507
5507
|
|
|
5508
|
-
/**
|
|
5509
|
-
* Positionsnummer über alle Artikelpositionen hinweg
|
|
5510
|
-
*/
|
|
5511
|
-
positionOfArticleLine: number;
|
|
5512
|
-
|
|
5513
5508
|
/**
|
|
5514
5509
|
* Serientyp
|
|
5515
5510
|
*/
|
|
5516
5511
|
serialType: ArticleSerialType;
|
|
5517
5512
|
|
|
5518
5513
|
/**
|
|
5519
|
-
*
|
|
5514
|
+
* Positionsnummer über alle Artikelpositionen hinweg
|
|
5520
5515
|
*/
|
|
5521
|
-
|
|
5516
|
+
positionOfArticleLine: number;
|
|
5522
5517
|
|
|
5523
5518
|
/**
|
|
5524
5519
|
* Steuerschema
|
|
5525
5520
|
*/
|
|
5526
5521
|
taxSchemaRef: ApiObjectReference;
|
|
5527
5522
|
|
|
5523
|
+
/**
|
|
5524
|
+
* Preiseinheit
|
|
5525
|
+
*/
|
|
5526
|
+
priceUnit: number;
|
|
5527
|
+
|
|
5528
5528
|
/**
|
|
5529
5529
|
* Preisanpassungen - Position Basiswährung
|
|
5530
5530
|
*/
|
|
@@ -5696,14 +5696,14 @@ export interface DocumentLine {
|
|
|
5696
5696
|
commissions: Array<DocumentLineCommission>;
|
|
5697
5697
|
|
|
5698
5698
|
/**
|
|
5699
|
-
*
|
|
5699
|
+
* Gesamtpreis Position in Basiswährung
|
|
5700
5700
|
*/
|
|
5701
|
-
|
|
5701
|
+
baseTotalLinePrice: number;
|
|
5702
5702
|
|
|
5703
5703
|
/**
|
|
5704
|
-
*
|
|
5704
|
+
* Positionstyp
|
|
5705
5705
|
*/
|
|
5706
|
-
|
|
5706
|
+
lineType: DocumentLineType;
|
|
5707
5707
|
|
|
5708
5708
|
/**
|
|
5709
5709
|
* vorgeorderte Menge in Pickvorgang
|
|
@@ -5796,14 +5796,14 @@ export interface DocumentLine {
|
|
|
5796
5796
|
description: string;
|
|
5797
5797
|
|
|
5798
5798
|
/**
|
|
5799
|
-
*
|
|
5799
|
+
* Referenz zum Lager
|
|
5800
5800
|
*/
|
|
5801
|
-
|
|
5801
|
+
storage: ApiObjectReference;
|
|
5802
5802
|
|
|
5803
5803
|
/**
|
|
5804
|
-
*
|
|
5804
|
+
* Preisherkunft
|
|
5805
5805
|
*/
|
|
5806
|
-
|
|
5806
|
+
priceOrigin: ProductPriceOrigin;
|
|
5807
5807
|
|
|
5808
5808
|
/**
|
|
5809
5809
|
* Rohertragsermittlung
|
|
@@ -6045,14 +6045,14 @@ export interface DocumentLineComponent {
|
|
|
6045
6045
|
custom: EavDocumentlinecomponent;
|
|
6046
6046
|
|
|
6047
6047
|
/**
|
|
6048
|
-
*
|
|
6048
|
+
* Gelieferte Menge
|
|
6049
6049
|
*/
|
|
6050
|
-
|
|
6050
|
+
quantityCommitted: number;
|
|
6051
6051
|
|
|
6052
6052
|
/**
|
|
6053
|
-
*
|
|
6053
|
+
* Referenz auf den Artikel der Komponente
|
|
6054
6054
|
*/
|
|
6055
|
-
|
|
6055
|
+
articleId: number;
|
|
6056
6056
|
|
|
6057
6057
|
/**
|
|
6058
6058
|
* Beschreibung des Artikels
|
|
@@ -6252,14 +6252,14 @@ export interface DocumentLineFabricationDetail {
|
|
|
6252
6252
|
quantityFinished: number;
|
|
6253
6253
|
|
|
6254
6254
|
/**
|
|
6255
|
-
*
|
|
6255
|
+
* Menge defekt
|
|
6256
6256
|
*/
|
|
6257
|
-
|
|
6257
|
+
quantityDefective: number;
|
|
6258
6258
|
|
|
6259
6259
|
/**
|
|
6260
|
-
*
|
|
6260
|
+
* Produzierte Seriennummern
|
|
6261
6261
|
*/
|
|
6262
|
-
|
|
6262
|
+
serialNumbers: Array<DocumentLineFabricationDetailSerialNumber>;
|
|
6263
6263
|
|
|
6264
6264
|
/**
|
|
6265
6265
|
* Freifeld
|
|
@@ -6919,14 +6919,14 @@ export interface DocumentText {
|
|
|
6919
6919
|
transferableIntoSubsequentDocuments: boolean;
|
|
6920
6920
|
|
|
6921
6921
|
/**
|
|
6922
|
-
*
|
|
6922
|
+
* position relative to the product line OR Document. For usage within text-line, this position is irrelevant
|
|
6923
6923
|
*/
|
|
6924
|
-
|
|
6924
|
+
textPosition: TextPosition;
|
|
6925
6925
|
|
|
6926
6926
|
/**
|
|
6927
|
-
*
|
|
6927
|
+
* Wurde entfernt und soll deshalb nicht mehr angezeigt werden.
|
|
6928
6928
|
*/
|
|
6929
|
-
|
|
6929
|
+
deleted: boolean;
|
|
6930
6930
|
|
|
6931
6931
|
/**
|
|
6932
6932
|
* textBaustein Vorlage
|
|
@@ -7241,18 +7241,18 @@ export interface DummySerialNumberStockTransferApi {
|
|
|
7241
7241
|
/**
|
|
7242
7242
|
* Buchungsdatum
|
|
7243
7243
|
*/
|
|
7244
|
-
bookDate: ScriptingDate;
|
|
7245
|
-
|
|
7246
|
-
/**
|
|
7247
|
-
* Die gültige Seriennummer
|
|
7248
|
-
*/
|
|
7249
|
-
targetSerialNumber: string;
|
|
7244
|
+
bookDate: ScriptingDate;
|
|
7250
7245
|
|
|
7251
7246
|
/**
|
|
7252
7247
|
* Ggf. ein MHD-/Verfallsdatum, falls der Artikel ein solches benötigt
|
|
7253
7248
|
*/
|
|
7254
7249
|
targetExpiryDate: ScriptingDate;
|
|
7255
7250
|
|
|
7251
|
+
/**
|
|
7252
|
+
* Die gültige Seriennummer
|
|
7253
|
+
*/
|
|
7254
|
+
targetSerialNumber: string;
|
|
7255
|
+
|
|
7256
7256
|
/**
|
|
7257
7257
|
* Quell-Lagerplatz
|
|
7258
7258
|
*/
|
|
@@ -7621,14 +7621,14 @@ export interface FabricationRevertRequest {
|
|
|
7621
7621
|
export interface FabricationSerialNumber {
|
|
7622
7622
|
|
|
7623
7623
|
/**
|
|
7624
|
-
*
|
|
7624
|
+
* MHD / Verfallsdatum
|
|
7625
7625
|
*/
|
|
7626
|
-
|
|
7626
|
+
expiryDate: ScriptingDate;
|
|
7627
7627
|
|
|
7628
7628
|
/**
|
|
7629
|
-
*
|
|
7629
|
+
* ID der zu produzierenden Seriennummer (nur zur gezielten Produktion von bereits definierten Seriennummern)
|
|
7630
7630
|
*/
|
|
7631
|
-
|
|
7631
|
+
serialNumberId: number;
|
|
7632
7632
|
|
|
7633
7633
|
/**
|
|
7634
7634
|
* Bemerkung
|
|
@@ -7921,14 +7921,14 @@ export interface OpenItem {
|
|
|
7921
7921
|
paymentDueDate: ScriptingDate;
|
|
7922
7922
|
|
|
7923
7923
|
/**
|
|
7924
|
-
* Länderkennzeichen
|
|
7924
|
+
* Länderkennzeichen Leistungsland (ISO Alpha-3, von außen setzbar, wenn kein Beleg vorhanden ist)
|
|
7925
7925
|
*/
|
|
7926
|
-
|
|
7926
|
+
performanceCountryCode: string;
|
|
7927
7927
|
|
|
7928
7928
|
/**
|
|
7929
|
-
* Länderkennzeichen
|
|
7929
|
+
* Länderkennzeichen Ursprungsland (ISO Alpha-3, von außen setzbar, wenn kein Beleg vorhanden ist)
|
|
7930
7930
|
*/
|
|
7931
|
-
|
|
7931
|
+
sourceCountryCode: string;
|
|
7932
7932
|
|
|
7933
7933
|
/**
|
|
7934
7934
|
* agreed Deposit payment date
|
|
@@ -8056,14 +8056,14 @@ export interface OpenItem {
|
|
|
8056
8056
|
originalPaymentDueDate: ScriptingDate;
|
|
8057
8057
|
|
|
8058
8058
|
/**
|
|
8059
|
-
*
|
|
8059
|
+
* Valutadatum
|
|
8060
8060
|
*/
|
|
8061
|
-
|
|
8061
|
+
valueDate: ScriptingDate;
|
|
8062
8062
|
|
|
8063
8063
|
/**
|
|
8064
|
-
*
|
|
8064
|
+
* whether this open item is balanced, partially paid or open
|
|
8065
8065
|
*/
|
|
8066
|
-
|
|
8066
|
+
balanceState: OpenItemBalanceState;
|
|
8067
8067
|
|
|
8068
8068
|
/**
|
|
8069
8069
|
* Skontobetrag 1
|
|
@@ -8404,14 +8404,14 @@ export interface OpenItemRecord {
|
|
|
8404
8404
|
totalAmount: number;
|
|
8405
8405
|
|
|
8406
8406
|
/**
|
|
8407
|
-
*
|
|
8407
|
+
* Basiswährung des offenen Postens (ISO-A3)
|
|
8408
8408
|
*/
|
|
8409
|
-
|
|
8409
|
+
baseCurrencyCode: string;
|
|
8410
8410
|
|
|
8411
8411
|
/**
|
|
8412
|
-
*
|
|
8412
|
+
* id des records, der diesen storniert hat
|
|
8413
8413
|
*/
|
|
8414
|
-
|
|
8414
|
+
revertedByRecordId: number;
|
|
8415
8415
|
|
|
8416
8416
|
/**
|
|
8417
8417
|
* qualifier of open item
|
|
@@ -8545,14 +8545,14 @@ export interface PaymentMethod {
|
|
|
8545
8545
|
dunnable: boolean;
|
|
8546
8546
|
|
|
8547
8547
|
/**
|
|
8548
|
-
*
|
|
8548
|
+
* translations
|
|
8549
8549
|
*/
|
|
8550
|
-
|
|
8550
|
+
translations: Array<DocumentTypeTerm>;
|
|
8551
8551
|
|
|
8552
8552
|
/**
|
|
8553
|
-
*
|
|
8553
|
+
* Debitoren-OP abschließen?
|
|
8554
8554
|
*/
|
|
8555
|
-
|
|
8555
|
+
closeCustomerAccountType: boolean;
|
|
8556
8556
|
|
|
8557
8557
|
/**
|
|
8558
8558
|
* +Tage für Folgelastschrift
|
|
@@ -8789,14 +8789,14 @@ export interface PickTrolley {
|
|
|
8789
8789
|
pickTrolleyBoxes: Array<PickTrolleyBox>;
|
|
8790
8790
|
|
|
8791
8791
|
/**
|
|
8792
|
-
*
|
|
8792
|
+
* Lagerplatz, dem dieser Pickwagen zugeordnet ist
|
|
8793
8793
|
*/
|
|
8794
|
-
|
|
8794
|
+
storageBinRef: StorageBinRef;
|
|
8795
8795
|
|
|
8796
8796
|
/**
|
|
8797
|
-
*
|
|
8797
|
+
* Bearbeiter der Pickliste
|
|
8798
8798
|
*/
|
|
8799
|
-
|
|
8799
|
+
processedByUserRef: ApiObjectReference;
|
|
8800
8800
|
|
|
8801
8801
|
/**
|
|
8802
8802
|
* Beschreibung des Wagens
|
|
@@ -8951,14 +8951,14 @@ export const enum PickingType {
|
|
|
8951
8951
|
export interface Picklist {
|
|
8952
8952
|
|
|
8953
8953
|
/**
|
|
8954
|
-
*
|
|
8954
|
+
* Ziellager für Nachschub
|
|
8955
8955
|
*/
|
|
8956
|
-
|
|
8956
|
+
targetStorageRef: ApiObjectReference;
|
|
8957
8957
|
|
|
8958
8958
|
/**
|
|
8959
|
-
*
|
|
8959
|
+
* Zur Erstellung der Pickliste verwendete Vorlage
|
|
8960
8960
|
*/
|
|
8961
|
-
|
|
8961
|
+
usedTemplate: PicklistTemplate;
|
|
8962
8962
|
|
|
8963
8963
|
/**
|
|
8964
8964
|
* Nummer der Pickliste
|
|
@@ -9009,14 +9009,14 @@ export interface Picklist {
|
|
|
9009
9009
|
export interface PicklistLine {
|
|
9010
9010
|
|
|
9011
9011
|
/**
|
|
9012
|
-
*
|
|
9012
|
+
* Gesammelte Menge der Position
|
|
9013
9013
|
*/
|
|
9014
|
-
|
|
9014
|
+
quantityCollected: number;
|
|
9015
9015
|
|
|
9016
9016
|
/**
|
|
9017
|
-
*
|
|
9017
|
+
* Pickbox, mit der diese Position gesammelt werden soll
|
|
9018
9018
|
*/
|
|
9019
|
-
|
|
9019
|
+
pickTrolleyBoxRef: ApiObjectReference;
|
|
9020
9020
|
|
|
9021
9021
|
/**
|
|
9022
9022
|
* Komponenten dieser Position, falls es sich bei dieser Position um eine Baugruppe handelt
|
|
@@ -9054,14 +9054,14 @@ export interface PicklistLine {
|
|
|
9054
9054
|
version: number;
|
|
9055
9055
|
|
|
9056
9056
|
/**
|
|
9057
|
-
*
|
|
9057
|
+
* Lageranzeigename
|
|
9058
9058
|
*/
|
|
9059
|
-
|
|
9059
|
+
storageDisplayName: string;
|
|
9060
9060
|
|
|
9061
9061
|
/**
|
|
9062
|
-
*
|
|
9062
|
+
* ID der Quell-Dokumentposition
|
|
9063
9063
|
*/
|
|
9064
|
-
|
|
9064
|
+
sourceDocumentLineId: number;
|
|
9065
9065
|
|
|
9066
9066
|
/**
|
|
9067
9067
|
* Artikelnummer
|
|
@@ -9069,14 +9069,14 @@ export interface PicklistLine {
|
|
|
9069
9069
|
articleNumber: string;
|
|
9070
9070
|
|
|
9071
9071
|
/**
|
|
9072
|
-
*
|
|
9072
|
+
* Lagernummer
|
|
9073
9073
|
*/
|
|
9074
|
-
|
|
9074
|
+
storageNumber: string;
|
|
9075
9075
|
|
|
9076
9076
|
/**
|
|
9077
|
-
*
|
|
9077
|
+
* Art der Position
|
|
9078
9078
|
*/
|
|
9079
|
-
|
|
9079
|
+
lineType: PicklistLineType;
|
|
9080
9080
|
|
|
9081
9081
|
/**
|
|
9082
9082
|
* ID der Ziel-Dokumentposition
|
|
@@ -9400,11 +9400,6 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
9400
9400
|
*/
|
|
9401
9401
|
maxOrderValue: number;
|
|
9402
9402
|
|
|
9403
|
-
/**
|
|
9404
|
-
* Nur für Einzelkommissionierung und Konsolidierung: maximale Anzahl zu übernehmender Aufträge
|
|
9405
|
-
*/
|
|
9406
|
-
maxOrderCount: number;
|
|
9407
|
-
|
|
9408
9403
|
/**
|
|
9409
9404
|
* Nur vollständig lieferbare Positionen
|
|
9410
9405
|
*/
|
|
@@ -9415,6 +9410,11 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
9415
9410
|
*/
|
|
9416
9411
|
deliveryDateRange: PicklistTemplate$DateRange;
|
|
9417
9412
|
|
|
9413
|
+
/**
|
|
9414
|
+
* Nur für Einzelkommissionierung und Konsolidierung: maximale Anzahl zu übernehmender Aufträge
|
|
9415
|
+
*/
|
|
9416
|
+
maxOrderCount: number;
|
|
9417
|
+
|
|
9418
9418
|
/**
|
|
9419
9419
|
* Selektion über den Bereich vom Belegdatum
|
|
9420
9420
|
*/
|
|
@@ -9479,19 +9479,19 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
9479
9479
|
printPicklist: boolean;
|
|
9480
9480
|
|
|
9481
9481
|
/**
|
|
9482
|
-
*
|
|
9482
|
+
* Die zu verwendende Pickwagengruppe
|
|
9483
9483
|
*/
|
|
9484
|
-
|
|
9484
|
+
orderPickingTrolleyGroupRef: ApiObjectReference;
|
|
9485
9485
|
|
|
9486
9486
|
/**
|
|
9487
|
-
*
|
|
9487
|
+
* Maximale Anzahl an Positionen einer Pickliste
|
|
9488
9488
|
*/
|
|
9489
|
-
|
|
9489
|
+
maxPicklistLineCount: number;
|
|
9490
9490
|
|
|
9491
9491
|
/**
|
|
9492
|
-
*
|
|
9492
|
+
* Der zu verwendende Pickwagen
|
|
9493
9493
|
*/
|
|
9494
|
-
|
|
9494
|
+
orderPickingTrolleyRef: ApiObjectReference;
|
|
9495
9495
|
|
|
9496
9496
|
/**
|
|
9497
9497
|
* Mit welcher Reportgruppe soll die Pickliste gedruckt werden?
|
|
@@ -9499,9 +9499,9 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
9499
9499
|
picklistOutputReportGroupRef: ApiObjectReference;
|
|
9500
9500
|
|
|
9501
9501
|
/**
|
|
9502
|
-
*
|
|
9502
|
+
* Lagerplätze vorgeben
|
|
9503
9503
|
*/
|
|
9504
|
-
|
|
9504
|
+
specifyStorageBins: boolean;
|
|
9505
9505
|
|
|
9506
9506
|
/**
|
|
9507
9507
|
* Sollen alle verfügbaren Pickwagen verwendet werden?
|
|
@@ -9572,24 +9572,24 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
9572
9572
|
showShippingFormOnPickingFinish: boolean;
|
|
9573
9573
|
|
|
9574
9574
|
/**
|
|
9575
|
-
*
|
|
9575
|
+
* Digitale Pickliste verwenden: dabei werden nur die Positionen im Frontend gezeigt und durch Tippen oder Wischen bestätigt
|
|
9576
9576
|
*/
|
|
9577
|
-
|
|
9577
|
+
useDigitalPicklist: boolean;
|
|
9578
9578
|
|
|
9579
9579
|
/**
|
|
9580
|
-
*
|
|
9580
|
+
* Sammelbestätigung erlauben
|
|
9581
9581
|
*/
|
|
9582
|
-
|
|
9582
|
+
allowFullConfirmation: boolean;
|
|
9583
9583
|
|
|
9584
9584
|
/**
|
|
9585
|
-
* Sollen
|
|
9585
|
+
* Sollen Dienstleistungen kommissioniert werden?
|
|
9586
9586
|
*/
|
|
9587
|
-
|
|
9587
|
+
allowPickingOfServiceArticles: boolean;
|
|
9588
9588
|
|
|
9589
9589
|
/**
|
|
9590
|
-
*
|
|
9590
|
+
* Sollen bei der Erfassung automatisch die Etiketten gedruckt werden?
|
|
9591
9591
|
*/
|
|
9592
|
-
|
|
9592
|
+
printLabelOnScan: boolean;
|
|
9593
9593
|
|
|
9594
9594
|
/**
|
|
9595
9595
|
* Verwende die Verkaufseinheit als Standardmenge
|
|
@@ -9607,14 +9607,14 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
9607
9607
|
printLabelOnCompleteOrder: boolean;
|
|
9608
9608
|
|
|
9609
9609
|
/**
|
|
9610
|
-
*
|
|
9610
|
+
* Sollen bei Abschluss des des Pickens automatisch die Etiketten gedruckt werden?
|
|
9611
9611
|
*/
|
|
9612
|
-
|
|
9612
|
+
printLabelAfterPicking: boolean;
|
|
9613
9613
|
|
|
9614
9614
|
/**
|
|
9615
|
-
*
|
|
9615
|
+
* Rollende Kommissionierung/Konsolidierung: beim Sammeln muss die Box nach dem Scan eines Artikels per Scan bestätigt werden
|
|
9616
9616
|
*/
|
|
9617
|
-
|
|
9617
|
+
scanPickTrolleyBoxToConfirmPickedArticle: boolean;
|
|
9618
9618
|
|
|
9619
9619
|
/**
|
|
9620
9620
|
* Sollen nicht-bestandsgeführte Artikel kommissioniert werden?
|
|
@@ -9910,14 +9910,14 @@ export interface ProductDiscount {
|
|
|
9910
9910
|
validFrom: ScriptingDate;
|
|
9911
9911
|
|
|
9912
9912
|
/**
|
|
9913
|
-
*
|
|
9913
|
+
* Warengruppe
|
|
9914
9914
|
*/
|
|
9915
|
-
|
|
9915
|
+
productGroupRef: ApiObjectReference;
|
|
9916
9916
|
|
|
9917
9917
|
/**
|
|
9918
|
-
*
|
|
9918
|
+
* Bestimmt die Art des Rabatts
|
|
9919
9919
|
*/
|
|
9920
|
-
|
|
9920
|
+
modifierType: PriceModifierType;
|
|
9921
9921
|
|
|
9922
9922
|
/**
|
|
9923
9923
|
* Version Identifier for this Object (for PUT)
|
|
@@ -9935,14 +9935,14 @@ export interface ProductDiscount {
|
|
|
9935
9935
|
currencyRef: CurrencyReference;
|
|
9936
9936
|
|
|
9937
9937
|
/**
|
|
9938
|
-
*
|
|
9938
|
+
* Preisgruppe
|
|
9939
9939
|
*/
|
|
9940
|
-
|
|
9940
|
+
priceGroupRef: ApiObjectReference;
|
|
9941
9941
|
|
|
9942
9942
|
/**
|
|
9943
|
-
*
|
|
9943
|
+
* Wert des Rabatts
|
|
9944
9944
|
*/
|
|
9945
|
-
|
|
9945
|
+
modifierValue: number;
|
|
9946
9946
|
|
|
9947
9947
|
/**
|
|
9948
9948
|
* Bestimmt, ob es sich um einen Verkaufs- oder Einkaufsrabatt handelt
|
|
@@ -9965,14 +9965,14 @@ export interface ProductDiscount {
|
|
|
9965
9965
|
modifierValueType: ValueType;
|
|
9966
9966
|
|
|
9967
9967
|
/**
|
|
9968
|
-
*
|
|
9968
|
+
* Account, für den der Rabatt gültig ist
|
|
9969
9969
|
*/
|
|
9970
|
-
|
|
9970
|
+
accountRef: ApiObjectReference;
|
|
9971
9971
|
|
|
9972
9972
|
/**
|
|
9973
|
-
*
|
|
9973
|
+
* Name des Rabatts
|
|
9974
9974
|
*/
|
|
9975
|
-
|
|
9975
|
+
modifierName: string;
|
|
9976
9976
|
|
|
9977
9977
|
/**
|
|
9978
9978
|
* Unique identifier of the Object
|
|
@@ -10184,14 +10184,14 @@ export interface ProductPrice {
|
|
|
10184
10184
|
qualifier: ProductPriceQualifier;
|
|
10185
10185
|
|
|
10186
10186
|
/**
|
|
10187
|
-
*
|
|
10187
|
+
* Preisbasis
|
|
10188
10188
|
*/
|
|
10189
|
-
|
|
10189
|
+
priceBase: ArticlePriceBase;
|
|
10190
10190
|
|
|
10191
10191
|
/**
|
|
10192
|
-
*
|
|
10192
|
+
* Aktionpreis
|
|
10193
10193
|
*/
|
|
10194
|
-
|
|
10194
|
+
specialOfferPrice: boolean;
|
|
10195
10195
|
|
|
10196
10196
|
/**
|
|
10197
10197
|
* Gültig bis
|
|
@@ -10444,14 +10444,14 @@ export interface RequestDocument {
|
|
|
10444
10444
|
texts: Array<DocumentText>;
|
|
10445
10445
|
|
|
10446
10446
|
/**
|
|
10447
|
-
*
|
|
10447
|
+
* Wird dieser Beleg durch die Picklistenverarbeitung verarbeitet?
|
|
10448
10448
|
*/
|
|
10449
|
-
|
|
10449
|
+
processedByPicklistProcessing: boolean;
|
|
10450
10450
|
|
|
10451
10451
|
/**
|
|
10452
|
-
*
|
|
10452
|
+
* Nur für interne Zwecke: neue Positionen, die bei Übernahme aus einer Pickliste angelegt werden sollen
|
|
10453
10453
|
*/
|
|
10454
|
-
|
|
10454
|
+
picklistLinesToAddOnTransfer: Array<PicklistLine>;
|
|
10455
10455
|
|
|
10456
10456
|
/**
|
|
10457
10457
|
* Die Rabatte des Beleges
|
|
@@ -10482,14 +10482,14 @@ export interface RequestDocumentLine {
|
|
|
10482
10482
|
description: string;
|
|
10483
10483
|
|
|
10484
10484
|
/**
|
|
10485
|
-
*
|
|
10485
|
+
* Quittungsdetails zur Belegposition
|
|
10486
10486
|
*/
|
|
10487
|
-
|
|
10487
|
+
posDetail: DocumentLinePosDetail;
|
|
10488
10488
|
|
|
10489
10489
|
/**
|
|
10490
|
-
*
|
|
10490
|
+
* Herkunft des Preises
|
|
10491
10491
|
*/
|
|
10492
|
-
|
|
10492
|
+
priceOrigin: ProductPriceOrigin;
|
|
10493
10493
|
|
|
10494
10494
|
/**
|
|
10495
10495
|
* (optional) Gesamtpreis dieser Position
|
|
@@ -10507,14 +10507,14 @@ export interface RequestDocumentLine {
|
|
|
10507
10507
|
commissions: Array<RequestDocumentLineCommission>;
|
|
10508
10508
|
|
|
10509
10509
|
/**
|
|
10510
|
-
*
|
|
10510
|
+
* FiBu-Angaben
|
|
10511
10511
|
*/
|
|
10512
|
-
|
|
10512
|
+
financeBooking: DocumentFinanceBooking;
|
|
10513
10513
|
|
|
10514
10514
|
/**
|
|
10515
|
-
*
|
|
10515
|
+
* Typ dieser Position
|
|
10516
10516
|
*/
|
|
10517
|
-
|
|
10517
|
+
lineType: DocumentLineType;
|
|
10518
10518
|
|
|
10519
10519
|
/**
|
|
10520
10520
|
* Für interne Zwecke: Steuersatz in Prozent
|
|
@@ -10627,14 +10627,14 @@ export interface RequestDocumentLine {
|
|
|
10627
10627
|
bookings: Array<RequestDocumentLineBooking>;
|
|
10628
10628
|
|
|
10629
10629
|
/**
|
|
10630
|
-
*
|
|
10630
|
+
* Zu der Zeile Etikettendruck anstoßen
|
|
10631
10631
|
*/
|
|
10632
|
-
|
|
10632
|
+
doLabelPrint: boolean;
|
|
10633
10633
|
|
|
10634
10634
|
/**
|
|
10635
|
-
*
|
|
10635
|
+
* (optional) Preis des Artikels dieser Position
|
|
10636
10636
|
*/
|
|
10637
|
-
|
|
10637
|
+
productPrice: number;
|
|
10638
10638
|
}
|
|
10639
10639
|
|
|
10640
10640
|
export interface RequestDocumentLineBooking {
|
|
@@ -10763,14 +10763,14 @@ export interface RequestDocumentText {
|
|
|
10763
10763
|
export interface RevenueCalculation {
|
|
10764
10764
|
|
|
10765
10765
|
/**
|
|
10766
|
-
*
|
|
10766
|
+
* Netto Umsatz
|
|
10767
10767
|
*/
|
|
10768
|
-
|
|
10768
|
+
salesValue: number;
|
|
10769
10769
|
|
|
10770
10770
|
/**
|
|
10771
|
-
*
|
|
10771
|
+
* Deckungsbeitrag (absolut)
|
|
10772
10772
|
*/
|
|
10773
|
-
|
|
10773
|
+
revenue: number;
|
|
10774
10774
|
|
|
10775
10775
|
/**
|
|
10776
10776
|
* Einkaufspreis
|
|
@@ -10791,14 +10791,14 @@ export interface SalesAgent {
|
|
|
10791
10791
|
note: string;
|
|
10792
10792
|
|
|
10793
10793
|
/**
|
|
10794
|
-
*
|
|
10794
|
+
* reference to the delivery method
|
|
10795
10795
|
*/
|
|
10796
|
-
|
|
10796
|
+
deliveryMethodRef: ApiObjectReference;
|
|
10797
10797
|
|
|
10798
10798
|
/**
|
|
10799
|
-
*
|
|
10799
|
+
* is sales agent taxable
|
|
10800
10800
|
*/
|
|
10801
|
-
|
|
10801
|
+
taxable: boolean;
|
|
10802
10802
|
|
|
10803
10803
|
/**
|
|
10804
10804
|
* Freifelder
|
|
@@ -11148,14 +11148,14 @@ export interface SequencerConfiguration {
|
|
|
11148
11148
|
key: string;
|
|
11149
11149
|
|
|
11150
11150
|
/**
|
|
11151
|
-
*
|
|
11151
|
+
* Alternative configuration used to generate sequences instead of this configuration
|
|
11152
11152
|
*/
|
|
11153
|
-
|
|
11153
|
+
alternativeConfiguration: ApiObjectReference;
|
|
11154
11154
|
|
|
11155
11155
|
/**
|
|
11156
|
-
*
|
|
11156
|
+
* Contains details about the sequencer configuration
|
|
11157
11157
|
*/
|
|
11158
|
-
|
|
11158
|
+
configurationDetail: SequencerConfigurationDetail;
|
|
11159
11159
|
|
|
11160
11160
|
/**
|
|
11161
11161
|
* MetaInformations for this Object
|
|
@@ -11270,14 +11270,14 @@ export interface ShelfDocument {
|
|
|
11270
11270
|
tags: Array<TagDto>;
|
|
11271
11271
|
|
|
11272
11272
|
/**
|
|
11273
|
-
*
|
|
11273
|
+
* Mehrsprachige Bezeichnungen
|
|
11274
11274
|
*/
|
|
11275
|
-
|
|
11275
|
+
translatableTexts: Array<ShelfTranslatableText>;
|
|
11276
11276
|
|
|
11277
11277
|
/**
|
|
11278
|
-
*
|
|
11278
|
+
* share informations
|
|
11279
11279
|
*/
|
|
11280
|
-
|
|
11280
|
+
shares: Array<ShelfShare>;
|
|
11281
11281
|
|
|
11282
11282
|
/**
|
|
11283
11283
|
* Automatische Löschung ab
|
|
@@ -11462,14 +11462,14 @@ export interface ShelfFile {
|
|
|
11462
11462
|
subFiles: Array<SubFileInfo>;
|
|
11463
11463
|
|
|
11464
11464
|
/**
|
|
11465
|
-
*
|
|
11465
|
+
* revision number of this file
|
|
11466
11466
|
*/
|
|
11467
|
-
|
|
11467
|
+
revisionNumber: number;
|
|
11468
11468
|
|
|
11469
11469
|
/**
|
|
11470
|
-
*
|
|
11470
|
+
* fileSize
|
|
11471
11471
|
*/
|
|
11472
|
-
|
|
11472
|
+
fileSize: number;
|
|
11473
11473
|
|
|
11474
11474
|
/**
|
|
11475
11475
|
* file-extension of this entry
|
|
@@ -11497,14 +11497,14 @@ export interface ShelfFile {
|
|
|
11497
11497
|
version: number;
|
|
11498
11498
|
|
|
11499
11499
|
/**
|
|
11500
|
-
*
|
|
11500
|
+
* current reference of this file in our storage
|
|
11501
11501
|
*/
|
|
11502
|
-
|
|
11502
|
+
storageHandle: string;
|
|
11503
11503
|
|
|
11504
11504
|
/**
|
|
11505
|
-
*
|
|
11505
|
+
* meta data
|
|
11506
11506
|
*/
|
|
11507
|
-
|
|
11507
|
+
metaDataEntries: Array<ShelfFileMetaData>;
|
|
11508
11508
|
|
|
11509
11509
|
/**
|
|
11510
11510
|
* MetaInformations for this Object
|
|
@@ -11551,14 +11551,14 @@ export interface ShelfShare {
|
|
|
11551
11551
|
publishState: ShelfSharePublishState;
|
|
11552
11552
|
|
|
11553
11553
|
/**
|
|
11554
|
-
*
|
|
11554
|
+
* wie viele Minuten bleibt dieser resource-pfad zugreifbar (null = unlimited)
|
|
11555
11555
|
*/
|
|
11556
|
-
|
|
11556
|
+
publicUrlDurationInMinutes: number;
|
|
11557
11557
|
|
|
11558
11558
|
/**
|
|
11559
|
-
*
|
|
11559
|
+
* Freifelder
|
|
11560
11560
|
*/
|
|
11561
|
-
|
|
11561
|
+
custom: EavShelfshare;
|
|
11562
11562
|
|
|
11563
11563
|
/**
|
|
11564
11564
|
* der url-pfadanteil, der öffentlichen zugriff auf diese resource gibt
|