@wals-pro/n8n-nodes-weclapp 0.3.0

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.
Files changed (98) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +206 -0
  3. package/dist/credentials/WeclappApi.credentials.d.ts +10 -0
  4. package/dist/credentials/WeclappApi.credentials.js +56 -0
  5. package/dist/credentials/WeclappApi.credentials.js.map +1 -0
  6. package/dist/credentials/weclapp.dark.svg +19 -0
  7. package/dist/credentials/weclapp.light.svg +19 -0
  8. package/dist/nodes/Weclapp/GenericFunctions.d.ts +19 -0
  9. package/dist/nodes/Weclapp/GenericFunctions.js +287 -0
  10. package/dist/nodes/Weclapp/GenericFunctions.js.map +1 -0
  11. package/dist/nodes/Weclapp/SharedFields.d.ts +24 -0
  12. package/dist/nodes/Weclapp/SharedFields.js +348 -0
  13. package/dist/nodes/Weclapp/SharedFields.js.map +1 -0
  14. package/dist/nodes/Weclapp/Weclapp.node.d.ts +27 -0
  15. package/dist/nodes/Weclapp/Weclapp.node.js +231 -0
  16. package/dist/nodes/Weclapp/Weclapp.node.js.map +1 -0
  17. package/dist/nodes/Weclapp/actions/applyPayment.d.ts +9 -0
  18. package/dist/nodes/Weclapp/actions/applyPayment.js +64 -0
  19. package/dist/nodes/Weclapp/actions/applyPayment.js.map +1 -0
  20. package/dist/nodes/Weclapp/actions/articlePriceSync.d.ts +41 -0
  21. package/dist/nodes/Weclapp/actions/articlePriceSync.js +238 -0
  22. package/dist/nodes/Weclapp/actions/articlePriceSync.js.map +1 -0
  23. package/dist/nodes/Weclapp/actions/documentUpload.d.ts +3 -0
  24. package/dist/nodes/Weclapp/actions/documentUpload.js +90 -0
  25. package/dist/nodes/Weclapp/actions/documentUpload.js.map +1 -0
  26. package/dist/nodes/Weclapp/descriptions/ArticleDescription.d.ts +3 -0
  27. package/dist/nodes/Weclapp/descriptions/ArticleDescription.js +724 -0
  28. package/dist/nodes/Weclapp/descriptions/ArticleDescription.js.map +1 -0
  29. package/dist/nodes/Weclapp/descriptions/BankDescription.d.ts +6 -0
  30. package/dist/nodes/Weclapp/descriptions/BankDescription.js +471 -0
  31. package/dist/nodes/Weclapp/descriptions/BankDescription.js.map +1 -0
  32. package/dist/nodes/Weclapp/descriptions/CustomApiDescription.d.ts +4 -0
  33. package/dist/nodes/Weclapp/descriptions/CustomApiDescription.js +238 -0
  34. package/dist/nodes/Weclapp/descriptions/CustomApiDescription.js.map +1 -0
  35. package/dist/nodes/Weclapp/descriptions/DocumentDescription.d.ts +3 -0
  36. package/dist/nodes/Weclapp/descriptions/DocumentDescription.js +976 -0
  37. package/dist/nodes/Weclapp/descriptions/DocumentDescription.js.map +1 -0
  38. package/dist/nodes/Weclapp/descriptions/PartyDescription.d.ts +4 -0
  39. package/dist/nodes/Weclapp/descriptions/PartyDescription.js +408 -0
  40. package/dist/nodes/Weclapp/descriptions/PartyDescription.js.map +1 -0
  41. package/dist/nodes/Weclapp/descriptions/ProductionOrderDescription.d.ts +4 -0
  42. package/dist/nodes/Weclapp/descriptions/ProductionOrderDescription.js +628 -0
  43. package/dist/nodes/Weclapp/descriptions/ProductionOrderDescription.js.map +1 -0
  44. package/dist/nodes/Weclapp/descriptions/PurchaseInvoiceDescription.d.ts +3 -0
  45. package/dist/nodes/Weclapp/descriptions/PurchaseInvoiceDescription.js +559 -0
  46. package/dist/nodes/Weclapp/descriptions/PurchaseInvoiceDescription.js.map +1 -0
  47. package/dist/nodes/Weclapp/descriptions/PurchaseOrderDescription.d.ts +3 -0
  48. package/dist/nodes/Weclapp/descriptions/PurchaseOrderDescription.js +681 -0
  49. package/dist/nodes/Weclapp/descriptions/PurchaseOrderDescription.js.map +1 -0
  50. package/dist/nodes/Weclapp/descriptions/QuotationDescription.d.ts +3 -0
  51. package/dist/nodes/Weclapp/descriptions/QuotationDescription.js +1069 -0
  52. package/dist/nodes/Weclapp/descriptions/QuotationDescription.js.map +1 -0
  53. package/dist/nodes/Weclapp/descriptions/SalesInvoiceDescription.d.ts +3 -0
  54. package/dist/nodes/Weclapp/descriptions/SalesInvoiceDescription.js +994 -0
  55. package/dist/nodes/Weclapp/descriptions/SalesInvoiceDescription.js.map +1 -0
  56. package/dist/nodes/Weclapp/descriptions/SalesOrderDescription.d.ts +4 -0
  57. package/dist/nodes/Weclapp/descriptions/SalesOrderDescription.js +1122 -0
  58. package/dist/nodes/Weclapp/descriptions/SalesOrderDescription.js.map +1 -0
  59. package/dist/nodes/Weclapp/descriptions/ShipmentDescription.d.ts +3 -0
  60. package/dist/nodes/Weclapp/descriptions/ShipmentDescription.js +502 -0
  61. package/dist/nodes/Weclapp/descriptions/ShipmentDescription.js.map +1 -0
  62. package/dist/nodes/Weclapp/descriptions/TagUnitUserDescription.d.ts +9 -0
  63. package/dist/nodes/Weclapp/descriptions/TagUnitUserDescription.js +664 -0
  64. package/dist/nodes/Weclapp/descriptions/TagUnitUserDescription.js.map +1 -0
  65. package/dist/nodes/Weclapp/descriptions/TicketDescription.d.ts +9 -0
  66. package/dist/nodes/Weclapp/descriptions/TicketDescription.js +745 -0
  67. package/dist/nodes/Weclapp/descriptions/TicketDescription.js.map +1 -0
  68. package/dist/nodes/Weclapp/descriptions/WarehouseDescription.d.ts +35 -0
  69. package/dist/nodes/Weclapp/descriptions/WarehouseDescription.js +935 -0
  70. package/dist/nodes/Weclapp/descriptions/WarehouseDescription.js.map +1 -0
  71. package/dist/nodes/Weclapp/descriptions/WebhookDescription.d.ts +4 -0
  72. package/dist/nodes/Weclapp/descriptions/WebhookDescription.js +411 -0
  73. package/dist/nodes/Weclapp/descriptions/WebhookDescription.js.map +1 -0
  74. package/dist/nodes/Weclapp/descriptions/index.d.ts +3 -0
  75. package/dist/nodes/Weclapp/descriptions/index.js +56 -0
  76. package/dist/nodes/Weclapp/descriptions/index.js.map +1 -0
  77. package/dist/nodes/Weclapp/generated/entityMetadata.d.ts +3 -0
  78. package/dist/nodes/Weclapp/generated/entityMetadata.js +368 -0
  79. package/dist/nodes/Weclapp/generated/entityMetadata.js.map +1 -0
  80. package/dist/nodes/Weclapp/generated/openapiMetadata.d.ts +3 -0
  81. package/dist/nodes/Weclapp/generated/openapiMetadata.js +212 -0
  82. package/dist/nodes/Weclapp/generated/openapiMetadata.js.map +1 -0
  83. package/dist/nodes/Weclapp/methods/customAttributes.d.ts +32 -0
  84. package/dist/nodes/Weclapp/methods/customAttributes.js +156 -0
  85. package/dist/nodes/Weclapp/methods/customAttributes.js.map +1 -0
  86. package/dist/nodes/Weclapp/methods/loadOptions.d.ts +3 -0
  87. package/dist/nodes/Weclapp/methods/loadOptions.js +107 -0
  88. package/dist/nodes/Weclapp/methods/loadOptions.js.map +1 -0
  89. package/dist/nodes/Weclapp/weclapp.dark.svg +19 -0
  90. package/dist/nodes/Weclapp/weclapp.light.svg +19 -0
  91. package/dist/nodes/WeclappTrigger/WeclappTrigger.node.d.ts +12 -0
  92. package/dist/nodes/WeclappTrigger/WeclappTrigger.node.js +198 -0
  93. package/dist/nodes/WeclappTrigger/WeclappTrigger.node.js.map +1 -0
  94. package/dist/nodes/WeclappTrigger/weclapp.dark.svg +19 -0
  95. package/dist/nodes/WeclappTrigger/weclapp.light.svg +19 -0
  96. package/dist/package.json +78 -0
  97. package/dist/tsconfig.tsbuildinfo +1 -0
  98. package/package.json +78 -0
@@ -0,0 +1,368 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.enumValues = exports.entityFields = exports.weclappEntities = void 0;
4
+ exports.weclappEntities = [
5
+ "accountingTransaction",
6
+ "archivedEmail",
7
+ "article",
8
+ "articleAccountingCode",
9
+ "articleCategory",
10
+ "articleCategoryClassification",
11
+ "articleItemGroup",
12
+ "articlePrice",
13
+ "articleRating",
14
+ "articleStatus",
15
+ "articleSupplySource",
16
+ "attendance",
17
+ "bankAccount",
18
+ "bankTransaction",
19
+ "batchNumber",
20
+ "blanketPurchaseOrder",
21
+ "blanketSalesOrder",
22
+ "calendar",
23
+ "calendarEvent",
24
+ "campaign",
25
+ "campaignParticipant",
26
+ "cashAccount",
27
+ "cashAccountTransaction",
28
+ "comment",
29
+ "commercialLanguage",
30
+ "companySize",
31
+ "costCenter",
32
+ "costCenterGroup",
33
+ "costType",
34
+ "crmCallCategory",
35
+ "crmEvent",
36
+ "crmEventCategory",
37
+ "currency",
38
+ "customAttributeDefinition",
39
+ "customerCategory",
40
+ "customerLeadLossReason",
41
+ "customerTopic",
42
+ "customsTariffNumber",
43
+ "document",
44
+ "externalConnection",
45
+ "financialYear",
46
+ "fulfillmentProvider",
47
+ "incomingGoods",
48
+ "internalTransportReference",
49
+ "inventory",
50
+ "inventoryGroup",
51
+ "inventoryItem",
52
+ "inventoryTransportReference",
53
+ "leadRating",
54
+ "leadSource",
55
+ "ledgerAccount",
56
+ "legalForm",
57
+ "loadingEquipmentIdentifier",
58
+ "mailTemplate",
59
+ "manufacturer",
60
+ "notification",
61
+ "numberRange",
62
+ "numberRangeValue",
63
+ "opportunity",
64
+ "opportunityTopic",
65
+ "opportunityWinLossReason",
66
+ "party",
67
+ "partyRating",
68
+ "paymentMethod",
69
+ "paymentRun",
70
+ "paymentRunItem",
71
+ "performanceRecord",
72
+ "personDepartment",
73
+ "personRole",
74
+ "personalAccountingCode",
75
+ "pick",
76
+ "pickCheckReason",
77
+ "placeOfService",
78
+ "priceCalculationParameter",
79
+ "productionOrder",
80
+ "productionWorkSchedule",
81
+ "productionWorkScheduleAssignment",
82
+ "projectOrderStatusPage",
83
+ "purchaseInvoice",
84
+ "purchaseOpenItem",
85
+ "purchaseOrder",
86
+ "purchaseOrderRequest",
87
+ "purchaseRequisition",
88
+ "quotation",
89
+ "recordEmailingRule",
90
+ "region",
91
+ "reminder",
92
+ "remotePrintJob",
93
+ "salesInvoice",
94
+ "salesOpenItem",
95
+ "salesOrder",
96
+ "salesStage",
97
+ "sector",
98
+ "sepaDirectDebitMandate",
99
+ "serialNumber",
100
+ "shelf",
101
+ "shipment",
102
+ "shipmentMethod",
103
+ "shipmentReturnAssessment",
104
+ "shipmentReturnError",
105
+ "shipmentReturnReason",
106
+ "shipmentReturnRectification",
107
+ "shippingCarrier",
108
+ "storageLocation",
109
+ "storagePlace",
110
+ "storagePlaceBlockingReason",
111
+ "storagePlaceSize",
112
+ "tag",
113
+ "task",
114
+ "taskList",
115
+ "taskTemplate",
116
+ "taxDeterminationRule",
117
+ "termOfPayment",
118
+ "ticketPoolingGroup",
119
+ "timeRecord",
120
+ "title",
121
+ "translation",
122
+ "transportationOrder",
123
+ "unit",
124
+ "user",
125
+ "userRole",
126
+ "variantArticle",
127
+ "variantArticleAttribute",
128
+ "variantArticleVariant",
129
+ "warehouse",
130
+ "warehouseStock",
131
+ "warehouseStockMovement",
132
+ "webhook",
133
+ "weclappOs"
134
+ ];
135
+ exports.entityFields = {
136
+ "accountingTransaction": ["accountingImportDate", "conversionRate", "conversionRateDate", "createdDate", "currencyId", "draft", "externalRecordNumber", "id", "internalRecordNumber", "lastModifiedDate", "reverseTransaction", "status", "transactionDate", "transactionDetails", "transactionEstablishDate", "transactionNumber", "type", "version"],
137
+ "archivedEmail": ["bccAddresses", "body", "ccAddresses", "createdDate", "fromAddress", "id", "lastModifiedDate", "messageIdentifier", "receivedDate", "replyToAddress", "subject", "toAddresses", "version"],
138
+ "article": ["accountId", "accountingCodeId", "active", "applyCashDiscount", "articleAlternativeQuantities", "articleCalculationPrices", "articleCategoryId", "articleGrossWeight", "articleHeight", "articleImages", "articleLength", "articleNetWeight", "articleNumber", "articlePrices", "articleType", "articleWidth", "availableForSalesChannels", "availableInSale", "averageDeliveryTime", "barcode", "batchNumberRequired", "billOfMaterialPartDeliveryPossible", "catalogCode", "commissionRate", "contractBillingCycle", "contractBillingMode", "countryOfOriginCode", "createdDate", "customAttributes", "customerArticleNumbers", "customsDescription", "customsTariffNumberId", "defaultLoadingEquipmentIdentifierId", "defaultPriceCalculationType", "defaultStoragePlaces", "defineIndividualTaskTemplates", "description", "ean", "expenseAccountId", "expirationDays", "fixedPurchaseQuantity", "id", "internalNote", "invoicingType", "lastModifiedDate", "launchDate", "loadingEquipmentArticleId", "longText", "lowLevelCode", "manufacturerId", "manufacturerPartNumber", "marginCalculationPriceType", "matchCode", "minimumPurchaseQuantity", "minimumStockQuantity", "name", "packagingQuantity", "packagingUnitBaseArticleId", "packagingUnitParentArticleId", "plannedWorkingTimePerUnit", "primarySupplySourceId", "procurementLeadDays", "producerType", "productionArticle", "productionBillOfMaterialItems", "productionConfigurationRule", "purchaseCostCenterId", "quantityConversions", "ratingId", "recordItemGroupName", "safetyStockDays", "salesBillOfMaterialItems", "salesCostCenterId", "sellByDate", "sellFromDate", "serialNumberRequired", "serviceArticleForServiceQuotaBookingId", "serviceQuotaQuantity", "shortDescription1", "shortDescription2", "showOnDeliveryNote", "statusId", "supplySources", "supportUntilDate", "systemCode", "tags", "targetStockQuantity", "taxRateType", "unitId", "useAvailableForSalesChannels", "useSalesBillOfMaterialItemPrices", "useSalesBillOfMaterialItemPricesForPurchase", "useSalesBillOfMaterialSubitemCosts", "version"],
139
+ "articleCategory": ["articleAccountingCodeId", "articleCategoryClassificationId", "costTypeId", "createdDate", "description", "id", "imageId", "lastModifiedDate", "name", "parentCategoryId", "purchaseCostCenterId", "salesCostCenterId", "version"],
140
+ "articleItemGroup": ["createdDate", "id", "items", "lastModifiedDate", "name", "version"],
141
+ "articlePrice": ["articleId", "createdDate", "currencyId", "customerId", "description", "endDate", "id", "lastModifiedByUserId", "lastModifiedDate", "price", "priceScaleType", "priceScaleValue", "reductionAdditions", "salesChannel", "startDate", "version"],
142
+ "articleSupplySource": ["articleNumber", "articlePrices", "createdDate", "customAttributes", "description", "dropshippingPossible", "ean", "fixedPurchaseQuantity", "id", "ignoreInDropshippingAutomation", "internalNote", "lastModifiedDate", "manufacturerPartNumber", "matchCode", "minimumPurchaseQuantity", "name", "procurementLeadDays", "shortDescription1", "shortDescription2", "supplierId", "supplierStockQuantity", "taxRateType", "unitId", "version"],
143
+ "attendance": ["createdDate", "endTime", "id", "lastModifiedDate", "startTime", "userId", "version"],
144
+ "bankAccount": ["accountHolder", "accountId", "accountNumber", "active", "autoSync", "automaticProcessing", "balance", "bankCode", "connectionFailure", "createdDate", "creditInstitute", "creditInstituteCity", "creditInstituteStreet", "creditInstituteZip", "creditLine", "currencyId", "differentSepaCreditorIdentifier", "enabledForElectronicPaymentTransactions", "iban", "id", "incidentalCostsOfMonetaryTrafficAccountId", "incidentalCostsOfMonetaryTrafficTaxId", "lastDownload", "lastModifiedDate", "primary", "qrIban", "qrIdentifier", "swiftBic", "version"],
145
+ "bankTransaction": ["accountForCostsOfMonetaryTrafficId", "accountForDunningFeeId", "additionalEcommerceId", "amount", "amountCostsOfMonetaryTraffic", "cleared", "createdById", "createdDate", "currencyId", "description", "ecommerceId", "effectiveDate", "externalConnectionId", "externalRecordNumber", "id", "lastModifiedDate", "origin", "partyId", "paymentMethodId", "paymentToleranceAccountId", "paymentType", "version"],
146
+ "batchNumber": ["articleId", "batchNumber", "createdDate", "customAttributes", "expirationDate", "id", "lastModifiedDate", "version"],
147
+ "blanketPurchaseOrder": ["articleId", "blanketPurchaseOrderNumber", "calculationMode", "commercialLanguage", "confirmationNumber", "createdDate", "creatorId", "currencyConversionDate", "currencyConversionLocked", "currencyConversionRate", "customAttributes", "deliveryAddress", "description", "discountPercentage", "endDate", "formSettingsFromSalesChannel", "headerDiscount", "headerSurcharge", "id", "invoiceAddress", "lastModifiedDate", "nonStandardTaxId", "note", "orderDate", "orderQuantity", "paymentMethodId", "recipientCountryCode", "recordAddress", "recordComment", "recordCurrencyId", "recordEmailAddresses", "recordFreeText", "recordOpening", "reductionAdditionItems", "releases", "residualQuantity", "responsibleUserId", "senderCountryCode", "sentToRecipient", "shipmentMethodId", "startDate", "status", "statusHistory", "supplierBlanketPurchaseOrderNumber", "supplierId", "supplierQuotationNumber", "tags", "taxId", "termOfPaymentId", "unitPrice", "useManualUnitPrice", "version", "warehouseId"],
148
+ "blanketSalesOrder": ["articleId", "blanketSalesOrderNumber", "calculationMode", "commercialLanguage", "commissionSalesPartners", "createdDate", "customAttributes", "customerId", "customerReference", "defaultHeaderDiscount", "defaultHeaderSurcharge", "defaultShippingCarrierId", "deliveryAddress", "deliveryEmailAddresses", "description", "discountPercentage", "distributionChannel", "endDate", "factoring", "fulfillmentProviderId", "id", "invoiceAddress", "invoiceRecipientId", "lastModifiedDate", "manualUnitPrice", "nonStandardTaxId", "note", "orderDate", "orderNumberAtCustomer", "orderQuantity", "paymentMethodId", "recipientCountryCode", "recordAddress", "recordCurrencyId", "recordEmailAddresses", "reductionAdditionItems", "releases", "responsibleUserId", "salesInvoiceEmailAddresses", "sentToRecipient", "shipmentMethodId", "startDate", "status", "statusHistory", "tags", "taxId", "termOfPaymentId", "unitPrice", "version", "warehouseId"],
149
+ "calendar": ["caldavAccountId", "calendarColor", "calendarKey", "calendarSharingPermissions", "createdDate", "id", "lastEventsSyncToken", "lastModifiedDate", "mailAccountId", "name", "ownerId", "sharePrivateEvents", "synchronize", "version"],
150
+ "calendarEvent": ["allDayEvent", "attendees", "calendarId", "concerningId", "contactId", "createdDate", "deleted", "description", "endDate", "id", "lastModifiedDate", "location", "privateEvent", "recurringEvent", "references", "reminderSendType", "reminderTime", "showAs", "startDate", "subject", "userId", "version"],
151
+ "campaign": ["campaignEndDate", "campaignName", "campaignNumber", "campaignStartDate", "campaignType", "createdDate", "customAttributes", "description", "id", "lastModifiedDate", "responsibleUserId", "version"],
152
+ "campaignParticipant": ["campaignId", "createdDate", "id", "lastModifiedDate", "participation", "partyId", "version"],
153
+ "cashAccount": ["accountId", "active", "createdDate", "currencyId", "description", "id", "lastModifiedDate", "openingBalance", "treasurerId", "version"],
154
+ "cashAccountTransaction": ["accountId", "amount", "cashAccountSheetId", "cleared", "createdById", "createdDate", "currencyId", "description", "effectiveDate", "externalRecordNumber", "id", "lastModifiedDate", "origin", "paymentMethodId", "paymentType", "taxId", "version"],
155
+ "comment": ["authorName", "authorUserId", "comment", "createdDate", "entityId", "entityName", "htmlComment", "id", "lastEditDate", "lastModifiedDate", "parentCommentId", "privateComment", "publicComment", "recipientUsers", "solution", "version"],
156
+ "commercialLanguage": ["countryCode", "createdDate", "id", "languageCode", "lastModifiedDate", "version"],
157
+ "costCenter": ["costCenterGroupId", "costCenterNumber", "costCenterType", "createdDate", "description", "id", "lastModifiedDate", "version"],
158
+ "costType": ["createdDate", "id", "lastModifiedDate", "name", "version"],
159
+ "crmEvent": ["calendarEventId", "callCategoryId", "contactId", "createdDate", "creatorUserId", "customAttributes", "description", "endDate", "eventCategoryId", "id", "lastModifiedDate", "location", "opportunityId", "partyId", "startDate", "subject", "type", "version"],
160
+ "currency": ["createdDate", "currencySymbol", "id", "lastModifiedDate", "name", "version"],
161
+ "customAttributeDefinition": ["active", "attributeDescription", "attributeEntityType", "attributeKey", "attributeLabels", "attributeType", "conditions", "createdDate", "defaultBooleanValue", "defaultDateValue", "defaultNumberValue", "defaultStringValue", "entities", "groupName", "id", "label", "lastModifiedDate", "legacyEntities", "mandatory", "permissions", "publicPageTypes", "readOnly", "selectableValues", "showAttributeEntityType", "showInOverview", "showOnCreationDialog", "systemCustomAttribute", "version"],
162
+ "document": ["createdDate", "description", "documentSize", "documentType", "id", "lastModifiedDate", "mediaType", "name", "userId", "version", "versions"],
163
+ "externalConnection": ["connectionType", "createdDate", "id", "lastModifiedDate", "name", "version"],
164
+ "financialYear": ["createdDate", "id", "lastModifiedDate", "name", "periods", "status", "validFrom", "validTo", "version"],
165
+ "fulfillmentProvider": ["createdDate", "fulfillmentProviderType", "id", "lastModifiedDate", "name", "version", "warehouseId"],
166
+ "incomingGoods": ["commercialLanguage", "createdDate", "creatorId", "customAttributes", "customerDeliveryAddress", "customerInvoiceAddress", "deliveryNoteNumber", "description", "dhlReceiverId", "disableRecordEmailingRule", "dropshippingShipmentId", "id", "incomingGoodsItems", "incomingGoodsNumber", "incomingGoodsType", "invoiceAddress", "invoiceRecipientId", "lastModifiedDate", "purchaseOrders", "recipientAddress", "recordComment", "recordFreeText", "recordOpening", "relatedShipmentId", "responsibleUserId", "returnAddress", "salesOrders", "senderCustomerNumber", "senderPartyId", "senderSupplierNumber", "sentToRecipient", "shippingReturnCarrierId", "sourceWarehouseId", "status", "statusHistory", "tags", "version", "warehouseId"],
167
+ "internalTransportReference": ["active", "createdDate", "id", "internalTransportReferenceNumber", "lastModifiedDate", "loadingEquipmentArticleId", "loadingEquipmentIdentifierId", "permanent", "version", "warehouseId"],
168
+ "inventory": ["counter", "createdDate", "description", "endDate", "id", "inventoryGroupId", "inventoryNumber", "lastModifiedDate", "levelOfDetail", "managerId", "recorder", "startDate", "status", "statusHistory", "version", "warehouseId"],
169
+ "inventoryGroup": ["createdDate", "id", "lastModifiedDate", "name", "version"],
170
+ "inventoryItem": ["articleId", "batchNumber", "comment", "countedQuantity", "createdDate", "expectedQuantity", "expirationDate", "id", "inboundDate", "inventoryId", "inventorySerialNumbers", "inventoryTransportReferenceId", "lastModifiedDate", "manualPosition", "orderItemId", "positionNumber", "replacementValue", "storagePlaceId", "version"],
171
+ "inventoryTransportReference": ["createdDate", "id", "internalTransportNumber", "inventoryId", "lastModifiedDate", "loadingEquipmentArticleId", "loadingEquipmentIdentifierId", "manualReference", "version"],
172
+ "ledgerAccount": ["accountNumber", "automatic", "balanceSheetItem", "createdDate", "description", "id", "lastModifiedDate", "parentAccountId", "type", "version"],
173
+ "loadingEquipmentIdentifier": ["createdDate", "description", "id", "lastModifiedDate", "loadingEquipmentArticles", "name", "version"],
174
+ "mailTemplate": ["bccEmailAddresses", "ccEmailAddresses", "createdDate", "creatorId", "id", "lastModifiedDate", "name", "subject", "text", "toEmailAddresses", "type", "useAsDefault", "version"],
175
+ "manufacturer": ["active", "address", "createdDate", "email", "id", "lastModifiedDate", "name", "version"],
176
+ "notification": ["createdDate", "description", "entityId", "entityName", "id", "lastModifiedDate", "priority", "read", "title", "version"],
177
+ "numberRange": ["createdDate", "id", "lastModifiedDate", "type", "version"],
178
+ "numberRangeValue": ["articleCategories", "createdDate", "creditNoteInvoiceTypes", "id", "interval", "lastModifiedDate", "lastValue", "length", "numberRangeId", "prefix", "salesChannels", "salesInvoiceTypes", "suffix", "validFromDate", "validToDate", "version"],
179
+ "opportunity": ["contactId", "createdDate", "creatorId", "customAttributes", "customerId", "description", "expectedDeliveryDate", "expectedSignatureDate", "hotLead", "id", "lastModifiedDate", "name", "nextCallDate", "opportunityNumber", "responsibleUserId", "revenue", "salesChannel", "salesProbability", "salesStageHistory", "salesStageId", "startDate", "tags", "topics", "version", "winLossDescription", "winLossReasonId"],
180
+ "party": ["addresses", "bankAccounts", "birthDate", "commercialLanguageId", "commissionBlock", "commissionSalesPartners", "company", "company2", "companySizeId", "competitor", "contacts", "convertedOnDate", "createdDate", "currencyId", "customAttributes", "customer", "customerAllowDropshippingOrderCreation", "customerAmountInsured", "customerAnnualRevenue", "customerBlockNotice", "customerBlocked", "customerBusinessType", "customerCategoryId", "customerCreditLimit", "customerCurrentSalesStageId", "customerDebtorAccountId", "customerDebtorAccountingCodeId", "customerDefaultHeaderDiscount", "customerDefaultHeaderSurcharge", "customerDefaultShippingCarrierId", "customerDeliveryBlock", "customerInsolvent", "customerInsured", "customerInternalNote", "customerLossDescription", "customerLossReasonId", "customerNonStandardTaxId", "customerNumber", "customerNumberOld", "customerPaymentMethodId", "customerSalesChannel", "customerSalesOrderPaymentType", "customerSalesProbability", "customerSalesStageHistory", "customerSatisfaction", "customerShipmentMethodId", "customerSupplierNumber", "customerTermOfPaymentId", "customerUseCustomsTariffNumber", "deliveryAddressId", "deliveryEmailAddressesId", "description", "dunningAddressId", "dunningEmailAddressesId", "email", "emailHome", "enableDropshippingInNewSupplySources", "eoriNumber", "factoring", "fax", "firstName", "fixPhone2", "fixedResponsibleUser", "formerSalesPartner", "habitualExporter", "id", "imageId", "invoiceAddressId", "invoiceBlock", "invoiceRecipientId", "lastModifiedDate", "lastName", "leadRatingId", "leadSourceId", "leadStatus", "legalFormId", "middleName", "mobilePhone1", "mobilePhone2", "onlineAccounts", "optInEmail", "optInLetter", "optInPhone", "optInSms", "parentPartyId", "partyEmailAddresses", "partyHabitualExporterLettersOfIntent", "partyType", "personCompany", "personDepartmentId", "personRoleId", "phone", "phoneHome", "primaryAddressId", "primaryContactId", "publicPageExpirationDate", "publicPageUuid", "purchaseEmailAddressesId", "purchaseViaPlafond", "quotationEmailAddressesId", "ratingId", "referenceNumber", "regionId", "responsibleUserId", "salesInvoiceEmailAddressesId", "salesOrderEmailAddressesId", "salesPartner", "salesPartnerDefaultCommissionFix", "salesPartnerDefaultCommissionPercentage", "salesPartnerDefaultCommissionType", "salutation", "sectorId", "supplier", "supplierActive", "supplierCreditorAccountId", "supplierCreditorAccountingCodeId", "supplierCustomerNumberAtSupplier", "supplierDefaultShippingCarrierId", "supplierInternalNote", "supplierMergeItemsForOcrInvoiceUpload", "supplierMinimumPurchaseOrderAmount", "supplierNonStandardTaxId", "supplierNumber", "supplierNumberOld", "supplierOrderBlock", "supplierPaymentMethodId", "supplierShipmentMethodId", "supplierTermOfPaymentId", "tags", "taxId", "titleId", "topics", "vatIdentificationNumber", "version", "website", "xRechnungLeitwegId"],
181
+ "paymentMethod": ["autoClearingAccountTransaction", "clearingAccountId", "createdDate", "discountPercentage", "discountValue", "documentText", "id", "lastModifiedDate", "name", "reference", "type", "version"],
182
+ "paymentRun": ["createdDate", "id", "lastModifiedDate", "paymentRunDate", "paymentRunItems", "paymentRunNumber", "runByUserId", "totalAmount", "version"],
183
+ "paymentRunItem": ["amountDiscount", "amountPayment", "bankAccountId", "bankTransactionId", "cleared", "conversionRate", "conversionRateDate", "createdDate", "id", "lastModifiedDate", "partyBankAccountId", "paymentRunId", "paymentRunPaymentType", "purchaseOpenItemId", "purpose", "recordCurrency", "version"],
184
+ "performanceRecord": ["commercialLanguage", "commission", "createdDate", "creatorId", "customAttributes", "customerId", "customerSignatureDate", "description", "disableRecordEmailingRule", "id", "invoiceAddress", "invoiceRecipientId", "lastModifiedDate", "orderNumberAtCustomer", "performanceRecordDate", "performanceRecordItems", "performanceRecordNumber", "recordAddress", "recordComment", "recordCommentInheritance", "recordEmailAddresses", "recordFreeText", "recordFreeTextInheritance", "recordOpening", "recordOpeningInheritance", "salesChannel", "salesInvoiceEmailAddresses", "salesOrderId", "sentToRecipient", "servicePeriodFrom", "servicePeriodTo", "serviceProviderId", "serviceProviderSignatureDate", "status", "statusHistory", "tags", "version"],
185
+ "pick": ["batchNumber", "bookedDate", "confirmedByUserId", "confirmedDate", "createdDate", "id", "internalTransportReferenceId", "lastModifiedDate", "orderItemId", "packagingUnitBaseArticleId", "positionNumber", "productionOrderItemId", "quantity", "salesOrderItemId", "serialNumbers", "shipmentItemId", "sourceInternalTransportReferenceId", "sourceStoragePlaceId", "storagePlaceId", "transportationOrderId", "version"],
186
+ "priceCalculationParameter": ["articleCategoryId", "articleId", "createdDate", "fixSurcharge", "fromScale", "id", "lastModifiedDate", "lowerPurchasePriceBound", "margin", "percentSurcharge", "profit", "salesChannel", "version"],
187
+ "productionOrder": ["actualEndDate", "actualQuantity", "actualStartDate", "articleId", "assemblyStoragePlaceId", "createdDate", "customAttributes", "id", "lastModifiedDate", "pickingInstructions", "picksComplete", "productionOrderItems", "productionOrderNumber", "salesOrderItemId", "status", "statusHistory", "targetEndDate", "targetQuantity", "targetStartDate", "version", "warehouseId", "workItems"],
188
+ "productionWorkSchedule": ["createdDate", "customAttributes", "description", "id", "lastModifiedDate", "status", "version", "workScheduleItems", "workScheduleNumber"],
189
+ "productionWorkScheduleAssignment": ["alternative", "articleId", "createdDate", "customAttributes", "id", "lastModifiedDate", "productionWorkScheduleId", "validFrom", "validTo", "version"],
190
+ "projectOrderStatusPage": ["commentsVisible", "createComments", "createdDate", "displayAllTeamMembers", "documentsVisible", "id", "lastModifiedDate", "mainTasksVisible", "name", "plannedWorkVisibility", "projectOrderId", "projectStatusPageUrl", "realizedWorkVisibility", "subTasksVisible", "ticketsVisible", "uploadDocument", "version"],
191
+ "purchaseInvoice": ["bookingDate", "bookingText", "cancellationDate", "commercialLanguage", "costCenterId", "costTypeId", "createdDate", "createdViaOcr", "creatorId", "creditResetsOrderState", "currencyConversionDate", "currencyConversionLocked", "currencyConversionRate", "customAttributes", "deliveryAddress", "deliveryDate", "description", "disableRecordEmailingRule", "dueDate", "grossAmount", "grossAmountInCompanyCurrency", "grossAmountOfHeaderTaxes", "grossAmountOfHeaderTaxesInCompanyCurrency", "grossPrices", "headerDiscount", "headerSurcharge", "id", "importSalesTaxAmount", "importSalesTaxId", "internalInvoiceNumber", "invoiceAddress", "invoiceDate", "invoiceNumber", "lastModifiedDate", "netAmount", "netAmountInCompanyCurrency", "nonStandardTaxId", "paymentBlock", "paymentBlockNote", "paymentMethodId", "paymentStatus", "precedingPurchaseInvoiceId", "pricingDate", "purchaseInvoiceItems", "purchaseInvoiceType", "purchaseOrders", "recipientCountryCode", "recordAddress", "recordComment", "recordCurrencyId", "recordEmailAddresses", "recordFreeText", "recordOpening", "responsibleUserId", "senderCountryCode", "sentToRecipient", "servicePeriodFrom", "servicePeriodTo", "shippingCostItems", "shippingDate", "status", "statusHistory", "supplierHabitualExporterLetterOfIntentId", "supplierId", "tags", "termOfPaymentId", "vatRegistrationNumber", "version"],
192
+ "purchaseOpenItem": ["amount", "amountDiscount", "amountOpen", "amountPaid", "clearanceDate", "cleared", "createdDate", "id", "lastModifiedDate", "openItemNumber", "openItemType", "paymentApplications", "purchaseInvoiceId", "version"],
193
+ "purchaseOrder": ["advancePaymentStatus", "commercialLanguage", "commercialLanguageCustomer", "commission", "confirmationNumber", "createdDate", "creatorId", "currencyConversionDate", "currencyConversionLocked", "currencyConversionRate", "customAttributes", "deliveryAddress", "description", "disableRecordEmailingRule", "dropshippingDeliveryNoteFormTexts", "externalPurchaseOrderNumber", "formSettingsFromSalesChannel", "grossAmount", "grossAmountInCompanyCurrency", "headerDiscount", "headerSurcharge", "id", "invoiceAddress", "invoiced", "lastModifiedDate", "mergedToPurchaseOrderId", "netAmount", "netAmountInCompanyCurrency", "nonStandardTaxId", "note", "orderDate", "packageTrackingNumber", "packageTrackingUrl", "paid", "paymentMethodId", "plannedDeliveryDate", "plannedShippingDate", "purchaseOrderItems", "purchaseOrderNumber", "purchaseOrderRequestId", "purchaseOrderType", "received", "recipientCountryCode", "recordAddress", "recordComment", "recordCurrencyId", "recordEmailAddresses", "recordFreeText", "recordOpening", "responsibleUserId", "salesOrderId", "senderCountryCode", "sentToRecipient", "servicePeriodFrom", "servicePeriodTo", "shipmentMethodId", "shippingCarrierId", "shippingCostItems", "shippingNotificationDate", "status", "statusHistory", "supplierHabitualExporterLetterOfIntentId", "supplierId", "supplierQuotationNumber", "tags", "termOfPaymentId", "version", "warehouseId"],
194
+ "purchaseOrderRequest": ["commercialLanguage", "commission", "confirmationDeadline", "createdDate", "creatorId", "customAttributes", "deliveryAddress", "description", "disableRecordEmailingRule", "id", "invoiceAddress", "lastModifiedDate", "plannedDeliveryDate", "purchaseOrderRequestItems", "purchaseOrderRequestNumber", "purchaseOrderRequestOffers", "purchaseOrderRequestType", "quotationId", "recordAddress", "recordComment", "recordFreeText", "recordOpening", "responsibleUserId", "salesOrderId", "sentToRecipient", "status", "statusHistory", "tags", "version", "warehouseId"],
195
+ "purchaseRequisition": ["articleId", "createdDate", "customAttributes", "earliestRequiredDate", "id", "internalShipmentId", "lastModifiedDate", "latestRequiredDate", "packagingUnitToOrderId", "productionOrderId", "productionOrderItemId", "proposedDate", "proposedQuantity", "purchaseOrderId", "requirementQuantity", "requisitionNumber", "salesOrderItemId", "status", "statusHistory", "supplierId", "version", "warehouseId"],
196
+ "quotation": ["activeVersion", "commercialLanguage", "commission", "commissionSalesPartners", "createdDate", "creatorId", "currencyConversionDate", "currencyConversionLocked", "currencyConversionRate", "customAttributes", "customerId", "defaultShippingCarrierId", "deliveryAddress", "deliveryEmailAddresses", "description", "disableRecordEmailingRule", "dispatchCountryCode", "expectedSignatureDate", "factoring", "grossAmount", "grossAmountInCompanyCurrency", "headerDiscount", "headerSurcharge", "id", "invoiceAddress", "invoiceRecipientId", "lastModifiedDate", "mergedToQuotationId", "netAmount", "netAmountInCompanyCurrency", "nonStandardTaxId", "opportunityId", "paymentMethodId", "plannedDeliveryDate", "plannedShippingDate", "pricingDate", "publicLink", "quotationDate", "quotationItems", "quotationNumber", "quotationType", "quotationVersion", "recordAddress", "recordComment", "recordCommentInheritance", "recordCurrencyId", "recordEmailAddresses", "recordFreeText", "recordFreeTextInheritance", "recordOpening", "recordOpeningInheritance", "rejectionReason", "requestDate", "responsibleUserId", "salesChannel", "salesInvoiceEmailAddresses", "salesOrderEmailAddresses", "salesProbability", "salesStageHistory", "salesStageId", "sentToRecipient", "servicePeriodFrom", "servicePeriodTo", "shipmentMethodId", "shippingCostItems", "status", "statusHistory", "tags", "template", "termOfPaymentId", "validFrom", "validTo", "version", "warehouseId"],
197
+ "recordEmailingRule": ["active", "attachPurchaseOrderRequestCsvFile", "attachRecordDocument", "attachReturnLabel", "attachShippingLabel", "bccRecipients", "ccRecipients", "createdDate", "event", "id", "lastModifiedDate", "mailAccountId", "name", "otherRecipients", "paymentMethods", "recipientType", "salesChannels", "salesInvoiceOrigin", "salesInvoiceTypes", "salesOrderOrigins", "shipmentOutTypes", "templateId", "version"],
198
+ "region": ["countryCode", "createdDate", "description", "id", "lastModifiedDate", "matchCode", "name", "responsibleUserId", "version"],
199
+ "reminder": ["additionalRecipients", "ccMail", "createdDate", "entityId", "entityName", "id", "lastModifiedDate", "lastReminderSentDate", "message", "recurringEvent", "reminderDate", "sendType", "subject", "userId", "version"],
200
+ "remotePrintJob": ["createdDate", "documentId", "id", "lastModifiedDate", "printStatus", "printerName", "quantity", "userId", "version", "weclappOsHardwareId", "weclappOsId"],
201
+ "salesInvoice": ["bookingDate", "bookingText", "cancellationDate", "cancellationNumber", "cancellationSlipCommissionBlock", "cancellationSlipCommissionSettlementDone", "collectiveInvoicePositionPrintType", "commercialLanguage", "commission", "commissionBlock", "commissionSalesPartners", "commissionSettlementDone", "costCenterId", "costTypeId", "createdDate", "creatorId", "creditResetsOrderState", "currencyConversionDate", "currencyConversionLocked", "currencyConversionRate", "customAttributes", "customerHabitualExporterLetterOfIntentId", "customerId", "deliveryAddress", "deliveryDate", "description", "directDebitFileCreated", "directDebitFileLatestDate", "disableRecordEmailingRule", "dispatchCountryCode", "dueDate", "dunningBlockDateUntilDate", "dunningBlockNote", "dunningBlockState", "factoring", "grossAmount", "grossAmountInCompanyCurrency", "headerDiscount", "headerSurcharge", "id", "invoiceDate", "invoiceNumber", "lastModifiedDate", "netAmount", "netAmountInCompanyCurrency", "nonStandardTaxId", "orderNumberAtCustomer", "paid", "paymentMethodId", "paymentStatus", "precedingSalesInvoiceId", "pricingDate", "recordAddress", "recordComment", "recordCommentInheritance", "recordCurrencyId", "recordEmailAddresses", "recordFreeText", "recordFreeTextInheritance", "recordOpening", "recordOpeningInheritance", "responsibleUserId", "salesChannel", "salesInvoiceItems", "salesInvoiceType", "salesOrderId", "salesOrders", "sentToRecipient", "sepaDirectDebitMandateId", "servicePeriodFrom", "servicePeriodTo", "shipmentMethodId", "shippingCostItems", "shippingDate", "status", "statusHistory", "tags", "termOfPaymentId", "vatRegistrationNumber", "version"],
202
+ "salesOpenItem": ["amount", "amountDiscount", "amountOpen", "amountPaid", "clearanceDate", "cleared", "createdDate", "id", "lastModifiedDate", "openItemNumber", "openItemType", "paymentApplications", "salesInvoiceId", "version"],
203
+ "salesOrder": ["advancePaymentAmount", "advancePaymentStatus", "applyShippingCostsOnlyOnce", "cashAccountId", "commercialLanguage", "commission", "commissionSalesPartners", "createdDate", "creatorId", "currencyConversionDate", "currencyConversionLocked", "currencyConversionRate", "customAttributes", "customerHabitualExporterLetterOfIntentId", "customerId", "defaultShippingCarrierId", "defaultShippingReturnCarrierId", "deliveryAddress", "deliveryEmailAddresses", "description", "disableRecordEmailingRule", "dispatchCountryCode", "ecommerceOrder", "factoring", "fulfillmentProviderId", "grossAmount", "grossAmountInCompanyCurrency", "headerDiscount", "headerSurcharge", "id", "invoiceAddress", "invoiceRecipientId", "invoiced", "lastModifiedDate", "netAmount", "netAmountInCompanyCurrency", "nonStandardTaxId", "note", "onlyServices", "orderDate", "orderItems", "orderNumber", "orderNumberAtCustomer", "paid", "paymentMethodId", "payments", "plannedDeliveryDate", "plannedProjectEndDate", "plannedProjectStartDate", "plannedShippingDate", "pricingDate", "projectGoals", "projectMembers", "projectModeActive", "quotationId", "recordAddress", "recordAsn", "recordComment", "recordCommentInheritance", "recordCurrencyId", "recordEmailAddresses", "recordFreeText", "recordFreeTextInheritance", "recordOpening", "recordOpeningInheritance", "responsibleUserId", "salesChannel", "salesInvoiceEmailAddresses", "salesOrderPaymentType", "sentToRecipient", "sepaDirectDebitMandateId", "servicePeriodFrom", "servicePeriodTo", "servicesFinished", "shipmentMethodId", "shipped", "shippingCostItems", "shippingLabelsCount", "status", "statusHistory", "tags", "template", "termOfPaymentId", "version", "warehouseId"],
204
+ "salesStage": ["createdDate", "id", "lastModifiedDate", "name", "probability", "version"],
205
+ "sepaDirectDebitMandate": ["bankAccountId", "cancellationDate", "createdDate", "description", "firstDebit", "id", "lastModifiedDate", "mandateReference", "partyBankAccountId", "runtime", "signatureDate", "type", "version"],
206
+ "serialNumber": ["articleId", "createdDate", "customAttributes", "id", "lastModifiedDate", "serialNumber", "version"],
207
+ "shelf": ["active", "createdDate", "id", "lastModifiedDate", "shortIdentifier", "storageLocationId", "storagePlaces", "version"],
208
+ "shipment": ["additionalDeliveryInformation", "commercialLanguage", "consolidationStoragePlaceId", "createdDate", "creatorId", "customAttributes", "customerPurchaseOrderNumber", "declaredValueAmount", "declaredValueAmountCurrencyId", "deliveryDate", "description", "destinationStoragePlaceId", "destinationWarehouseId", "dhlReceiverId", "disableRecordEmailingRule", "id", "invoiceAddress", "invoiceRecipientId", "lastModifiedDate", "mainSalesOrderId", "packageHeight", "packageLength", "packageReferenceNumber", "packageReturnTrackingNumber", "packageReturnTrackingUrl", "packageTrackingNumber", "packageTrackingUrl", "packageWeight", "packageWidth", "parcels", "pickingInstructions", "picksComplete", "purchaseOrders", "recipientAddress", "recipientCustomerNumber", "recipientPartyId", "recipientSupplierNumber", "recordComment", "recordEmailAddresses", "recordFreeText", "recordOpening", "responsibleUserId", "salesInvoiceEmailAddresses", "salesOrders", "sentToRecipient", "shipmentItems", "shipmentMethodId", "shipmentNumber", "shipmentType", "shippedFromAddress", "shippingCarrierId", "shippingDate", "shippingLabelsCount", "shippingReturnCarrierId", "status", "statusHistory", "tags", "totalWeight", "version", "warehouseId"],
209
+ "shipmentMethod": ["active", "createdDate", "description", "id", "lastModifiedDate", "name", "version"],
210
+ "shippingCarrier": ["active", "createdDate", "ecommerceShippingCarrier", "id", "internalShippingCarrier", "lastModifiedDate", "name", "positionNumber", "shippingServiceProviderType", "trackingUrl", "version"],
211
+ "storageLocation": ["active", "blockStoragePlaces", "createdDate", "customAttributes", "id", "lastModifiedDate", "name", "shelves", "shortIdentifier", "storagePlaceTypeSettingsBlocked", "storagePlaceTypeSettingsPicking", "storagePlaceTypeSettingsStock", "version", "warehouseId"],
212
+ "storagePlace": ["active", "barcode", "blockedForResupply", "blockedForResupplyReasonId", "createdDate", "currentInventoryId", "customAttributes", "customerId", "fieldNumber", "id", "lastModifiedDate", "levelNumber", "name", "shelfId", "shelfStorageLocationId", "storageLocationId", "storagePlaceSizeId", "storagePlaceType", "version", "warehouseId"],
213
+ "storagePlaceSize": ["createdDate", "description", "id", "lastModifiedDate", "loadingEquipmentIdentifierId", "name", "segmentQuantity", "version"],
214
+ "tag": ["createdDate", "id", "lastModifiedDate", "name", "version"],
215
+ "task": ["allowOverBooking", "allowTimeBooking", "articleId", "assignees", "billableStatus", "calendarEventId", "createdDate", "creatorUserId", "customAttributes", "customerId", "dateFrom", "dateTo", "description", "entityReferences", "id", "identifier", "invoicingStatus", "lastModifiedDate", "lastReminderDateForOverdue", "orderItemId", "parentTaskId", "performanceRecordedStatus", "plannedEffort", "positionNumber", "previousTaskId", "subject", "taskLists", "taskMailAccount", "taskPriority", "taskStatus", "taskTopics", "taskTypes", "taskVisibilityType", "ticketId", "userOfLastStatusChangeId", "version", "watchers"],
216
+ "taskList": ["createdDate", "id", "lastModifiedDate", "name", "responsibleUserId", "version", "visibilityType"],
217
+ "taskTemplate": ["articleId", "assignees", "createdDate", "creatorUserId", "customAttributes", "description", "entityReferences", "id", "lastModifiedDate", "name", "parentTaskTemplateId", "plannedEffort", "positionNumber", "subject", "taskPriority", "taskTopics", "taskTypes", "taskVisibilityType", "version", "watchers"],
218
+ "taxDeterminationRule": ["accountingCodeId", "createdDate", "customerDebtorAccountingCodeId", "dispatchCountryCode", "endDate", "id", "lastModifiedDate", "partyType", "recipientCountryCode", "sales", "startDate", "taxId", "taxRateType", "validVatId", "version"],
219
+ "termOfPayment": ["conditions", "createdDate", "datevTermOfPaymentNumber", "description", "dueDateOption", "fixedDay", "id", "lastModifiedDate", "name", "numberOfDays", "reference", "validFrom", "validTo", "version"],
220
+ "ticketPoolingGroup": ["createdDate", "description", "id", "lastModifiedDate", "name", "ticketCategories", "ticketPoolingGroupMembers", "version"],
221
+ "timeRecord": ["articleId", "billable", "billableDurationSeconds", "billableInvoiceStatus", "createdDate", "customAttributes", "customerId", "description", "durationSeconds", "externalConnectionSourceId", "hourlyRate", "id", "lastModifiedDate", "performanceRecordedStatus", "placeOfServiceId", "printOnPerformanceRecord", "projectId", "projectTaskId", "salesInvoiceId", "salesOrderId", "salesOrderTicketId", "serviceQuotaId", "startDate", "taskId", "ticketId", "timeRecordSource", "userId", "version"],
222
+ "translation": ["createdDate", "id", "key", "lastModifiedDate", "values", "version"],
223
+ "transportationOrder": ["assignedUserId", "createdDate", "customAttributes", "destinationStoragePlaceId", "id", "internalTransportReferenceId", "lastModifiedDate", "loadingEquipmentArticleId", "loadingEquipmentIdentifierId", "picks", "productionOrderId", "shipmentId", "status", "statusHistory", "transportationOrderNumber", "transportationOrderType", "version"],
224
+ "unit": ["createdDate", "description", "id", "lastModifiedDate", "name", "timeUnitAmount", "version"],
225
+ "user": ["birthDate", "createdDate", "customAttributes", "email", "faxNumber", "firstName", "id", "imageId", "lastModifiedDate", "lastName", "licenses", "mobilePhoneNumber", "phoneNumber", "status", "title", "userRoles", "username", "version"],
226
+ "userRole": ["allPermissionsEnabled", "createdDate", "id", "includedUserRoles", "lastModifiedDate", "name", "permissions", "version"],
227
+ "variantArticle": ["createdDate", "id", "lastModifiedDate", "primaryArticleId", "variantArticleName", "variantArticleNumber", "variants", "version"],
228
+ "variantArticleAttribute": ["attributeOptions", "createdDate", "id", "lastModifiedDate", "name", "version"],
229
+ "variantArticleVariant": ["articleId", "attributeOptions", "createdDate", "id", "lastModifiedDate", "positionNumber", "variantArticleId", "version"],
230
+ "warehouse": ["active", "createdDate", "customAttributes", "defaultConsolidationStoragePlaceId", "defaultProductionStoragePlaceId", "defaultReturnsStoragePlaceId", "defaultStoragePlaceId", "deliveryAddress", "directBookingInternalTransportReferenceId", "id", "invoiceAddress", "lastModifiedDate", "loadingEquipmentStoragePlace", "name", "primaryAddress", "shortIdentifier", "standard", "transitStoragePlace", "version", "warehouseType"],
231
+ "warehouseStock": ["articleId", "batchNumberId", "createdDate", "id", "inboundDate", "internalTransportReferenceId", "lastModifiedDate", "packagingUnits", "picks", "quantity", "salesOrderItemId", "serialNumbers", "storagePlaceId", "version", "warehouseId"],
232
+ "warehouseStockMovement": ["articleId", "batchNumberId", "costCenterId", "createdDate", "customAttributes", "id", "incomingGoodsItemId", "internalTransportReferenceId", "lastModifiedDate", "movementNote", "movementNumber", "postingDate", "productionOrderId", "quantity", "salesOrderItemId", "serialNumbers", "shipmentItemId", "stockMovementType", "storagePlaceId", "transportationOrderId", "userId", "valuationPrice", "version"],
233
+ "webhook": ["atCreate", "atDelete", "atUpdate", "createdDate", "deactivatedDate", "entityName", "errorMessage", "id", "lastModifiedDate", "requestMethod", "url", "version"],
234
+ "weclappOs": ["createdDate", "description", "hardwareId", "id", "lastModifiedDate", "name", "printerNames", "version"],
235
+ };
236
+ exports.enumValues = {
237
+ "accountingTransactionStatus": ["DRAFT", "ESTABLISHED", "PREBATCHBOOKING"],
238
+ "advancePaymentStatus": ["OPEN", "PAID"],
239
+ "apiProblemType": ["/webapp/view/api/errors.html#!/errors/context", "/webapp/view/api/errors.html#!/errors/conversation", "/webapp/view/api/errors.html#!/errors/entity_not_found", "/webapp/view/api/errors.html#!/errors/forbidden", "/webapp/view/api/errors.html#!/errors/invalid_json", "/webapp/view/api/errors.html#!/errors/not_found", "/webapp/view/api/errors.html#!/errors/optimistic_lock", "/webapp/view/api/errors.html#!/errors/persistence", "/webapp/view/api/errors.html#!/errors/unauthorized", "/webapp/view/api/errors.html#!/errors/unexpected", "/webapp/view/api/errors.html#!/errors/unsupported_mime_type", "/webapp/view/api/errors.html#!/errors/validation"],
240
+ "articleCalculationPriceType": ["CALCULATION_PRICE", "RECOMMENDED_RETAIL_PRICE"],
241
+ "articleType": ["BASIC", "LOADING_EQUIPMENT", "LOADING_EQUIPMENT_STORABLE", "PACKAGING_UNIT", "SALES_BILL_OF_MATERIAL", "SERVICE", "SERVICE_QUOTA", "SHIPPING_COST", "STORABLE"],
242
+ "balanceSheetItem": ["ABSCHREIBUNGEN_GWG_ACCOUNTS", "ABSCHREIBUNGEN_UND_ANLAGEVERMOEGEN_ACCOUNTS", "BESONDERE_AUFWENDUNGEN_ACCOUNTS", "BUCHWERT_ANLAGENABGAENGE_ACCOUNTS", "FREMDLEISTUNGEN_ACCOUNTS", "GAS_STROM_ACCOUNTS", "GELEISTETE_ANZAHLUNGEN_ACCOUNTS", "GESETZLICHE_SOZIALE_AUFWENDUNGEN_ACCOUNTS", "HEIZUNG_ACCOUNTS", "INSTANDHALTUNG_ACCOUNTS", "INSTANDHALTUNG_UND_WERKZEUGE_ACCOUNTS", "KFZ_SONSTIGE_ACCOUNTS", "KFZ_STEUER_ACCOUNTS", "KFZ_VERSICHERUNG_ACCOUNTS", "KOSTEN_DER_WARENABGABE_ACCOUNTS", "LOEHENE_UND_GEHAELTER_ACCOUNTS", "MIETE_PACHT_ACCOUNTS", "NEUTRALE_AUFWENDUNGEN_ACCOUNTS", "NEUTRALE_ERTRAEGE_ACCOUNTS", "PRIVAT_ANTEILE_ACCOUNTS", "REVENUE_ACCOUNTS", "ROH_HILFS_UNDBETRIE_BSSTOFFE_ACCOUNTS", "SALDO_DER_STATISTISCHEN_KONTEN_ACCOUNTS", "SONSTIGE_ERLOESE_ACCOUNTS", "SONSTIGE_KONTEN_ACCOUNTS", "SONSTIGE_RAUMKOSTEN_ACCOUNTS", "STEUERN_VERSICHERUNGEN_BEITRAEGE_ACCOUNTS", "UMSATZSTEUER_ACCOUNTS", "UMSATZSTEUER_ZAHLUNGEN_ACCOUNTS", "VERSCHIEDENE_KOSTEN_ACCOUNTS", "VORSTEUER_ACCOUNTS", "WERBE_UND_REISEKOSTEN_ACCOUNTS"],
243
+ "billableInvoiceStatus": ["INVOICED", "NOT_INVOICED", "PARTLY_INVOICED"],
244
+ "blanketPurchaseOrderStatusType": ["CANCELLED", "CLOSED", "CONFIRMED", "DOCUMENT_PRINTED", "NEW"],
245
+ "blanketSalesOrderStatusType": ["CANCELLED", "CLOSED", "CONFIRMED", "ENTRY_IN_PROGRESS"],
246
+ "bookingType": ["CARRY_FORWARD", "CREDIT_ADVICE", "IMPERSONAL", "INCOMING_CREDIT_NOTE", "INCOMING_INVOICE", "INCOMING_MANUAL_ENTRY", "INCOMING_PAYMENT", "OUTGOING_CREDIT_NOTE", "OUTGOING_INVOICE", "OUTGOING_MANUAL_ENTRY", "OUTGOING_PAYMENT"],
247
+ "calculationType": ["MARGIN_CALCULATION", "PURCHASE", "RECOMMENDED_RETAIL_PRICE", "SALES"],
248
+ "calendarSharingPermissionType": ["ADMIN", "READ", "READ_WRITE"],
249
+ "campaignType": ["ADVERTISEMENT", "BULKMAIL", "EMAIL", "EVENT", "EXPOSITION", "FAIR", "OTHER", "PUBLICRELATION", "TELEMARKETING", "WEBINAR"],
250
+ "collectiveInvoicePositionPrintType": ["ORDER_POSITION_GROUP", "PERFORMANCE_RECORD_POSITION_GROUP", "SHIPMENT_POSITION_GROUP"],
251
+ "commissionType": ["FIX", "FIX_AND_MARGIN", "FIX_AND_REVENUE", "MARGIN", "NO_COMMISSION", "REVENUE"],
252
+ "contractChargeInterval": ["DAILY", "FIVE_YEARLY", "FOUR_YEARLY", "HALF_YEARLY", "MONTHLY", "NONE", "QUARTER", "THREE_YEARLY", "TWO_YEARLY", "WEEKLY", "YEARLY"],
253
+ "contractChargeIntervalType": ["NON_RECURRENT", "RECURRENT"],
254
+ "crmEventType": ["GENERAL", "INCOMING_CALL", "LETTER", "OUTGOING_CALL"],
255
+ "customAttributeDefinitionConditionOperator": ["EQUAL", "NOT_EQUAL"],
256
+ "customAttributeDefinitionConditionType": ["BOOLEAN", "STRING"],
257
+ "customAttributeDefinitionPermissionType": ["READ", "READ_AND_UPDATE"],
258
+ "customAttributeEntityType": ["article", "blanketPurchaseOrder", "blanketSalesOrder", "campaign", "contract", "customer", "incomingGoods", "opportunity", "party", "performanceRecord", "productionOrder", "project", "purchaseInvoice", "purchaseOrder", "purchaseOrderRequest", "quotation", "recurringInvoice", "salesInvoice", "salesOrder", "serialNumber", "shipment", "supplier", "ticket", "user"],
259
+ "customAttributeExtendableEntity": ["article", "articleSupplySource", "batchNumber", "blanketPurchaseOrder", "blanketSalesOrder", "campaign", "competitor", "contract", "contractItem", "crmEvent", "customer", "incomingGoods", "incomingGoodsItem", "opportunity", "parcel", "party", "performanceRecord", "performanceRecordItem", "productionOrder", "productionOrderItem", "project", "purchaseInvoice", "purchaseInvoiceItem", "purchaseOrder", "purchaseOrderItem", "purchaseOrderRequest", "purchaseOrderRequestItem", "purchaseRequisition", "quotation", "quotationItem", "recurringInvoice", "recurringInvoiceItem", "salesInvoice", "salesInvoiceItem", "salesOrder", "salesOrderItem", "serialNumber", "serviceQuota", "shipment", "shipmentItem", "storageLocation", "storagePlace", "supplier", "task", "ticket", "timeRecord", "transportationOrder", "user", "warehouse", "warehouseStockMovement"],
260
+ "customAttributePublicPageType": ["PURCHASE_ORDER_REQUEST", "QUOTATION"],
261
+ "customAttributeType": ["BOOLEAN", "DATE", "DECIMAL", "ENTITY", "INTEGER", "LARGE_TEXT", "LIST", "MULTISELECT_LIST", "REFERENCE", "STRING", "URL"],
262
+ "customerBusinessType": ["B2B", "B2C", "B2G"],
263
+ "customerSatisfaction": ["NEUTRAL", "SATISFIED", "UNSATISFIED"],
264
+ "debitCreditIndicator": ["CREDIT", "DEBIT"],
265
+ "dispositionInfoAvailabilityType": ["COMPLETELY_AVAILABLE", "NOTHING_AVAILABLE", "NOT_CHECKED", "PARTIALLY_AVAILABLE", "TRANSFER_REQUIRED"],
266
+ "distributionChannel": ["GROSS1", "GROSS10", "GROSS100", "GROSS101", "GROSS102", "GROSS103", "GROSS104", "GROSS105", "GROSS106", "GROSS107", "GROSS108", "GROSS109", "GROSS11", "GROSS110", "GROSS111", "GROSS112", "GROSS113", "GROSS114", "GROSS115", "GROSS116", "GROSS117", "GROSS118", "GROSS119", "GROSS12", "GROSS120", "GROSS121", "GROSS122", "GROSS123", "GROSS124", "GROSS125", "GROSS126", "GROSS127", "GROSS128", "GROSS129", "GROSS13", "GROSS130", "GROSS131", "GROSS132", "GROSS133", "GROSS134", "GROSS135", "GROSS136", "GROSS137", "GROSS138", "GROSS139", "GROSS14", "GROSS140", "GROSS141", "GROSS142", "GROSS143", "GROSS144", "GROSS145", "GROSS146", "GROSS147", "GROSS148", "GROSS149", "GROSS15", "GROSS150", "GROSS151", "GROSS152", "GROSS153", "GROSS154", "GROSS155", "GROSS156", "GROSS157", "GROSS158", "GROSS159", "GROSS16", "GROSS160", "GROSS161", "GROSS162", "GROSS163", "GROSS164", "GROSS165", "GROSS166", "GROSS167", "GROSS168", "GROSS169", "GROSS17", "GROSS170", "GROSS171", "GROSS172", "GROSS173", "GROSS174", "GROSS175", "GROSS176", "GROSS177", "GROSS178", "GROSS179", "GROSS18", "GROSS180", "GROSS181", "GROSS182", "GROSS183", "GROSS184", "GROSS185", "GROSS186", "GROSS187", "GROSS188", "GROSS189", "GROSS19", "GROSS190", "GROSS191", "GROSS192", "GROSS193", "GROSS194", "GROSS195", "GROSS196", "GROSS197", "GROSS198", "GROSS199", "GROSS2", "GROSS20", "GROSS200", "GROSS201", "GROSS202", "GROSS203", "GROSS204", "GROSS205", "GROSS206", "GROSS207", "GROSS208", "GROSS209", "GROSS21", "GROSS210", "GROSS211", "GROSS212", "GROSS213", "GROSS214", "GROSS215", "GROSS216", "GROSS217", "GROSS218", "GROSS219", "GROSS22", "GROSS220", "GROSS221", "GROSS222", "GROSS223", "GROSS224", "GROSS225", "GROSS226", "GROSS227", "GROSS228", "GROSS229", "GROSS23", "GROSS230", "GROSS231", "GROSS232", "GROSS233", "GROSS234", "GROSS235", "GROSS236", "GROSS237", "GROSS238", "GROSS239", "GROSS24", "GROSS240", "GROSS241", "GROSS242", "GROSS243", "GROSS244", "GROSS245", "GROSS246", "GROSS247", "GROSS248", "GROSS249", "GROSS25", "GROSS250", "GROSS251", "GROSS252", "GROSS253", "GROSS254", "GROSS255", "GROSS256", "GROSS257", "GROSS258", "GROSS259", "GROSS26", "GROSS260", "GROSS261", "GROSS262", "GROSS263", "GROSS264", "GROSS265", "GROSS266", "GROSS267", "GROSS268", "GROSS269", "GROSS27", "GROSS270", "GROSS271", "GROSS272", "GROSS273", "GROSS274", "GROSS275", "GROSS276", "GROSS277", "GROSS278", "GROSS279", "GROSS28", "GROSS280", "GROSS281", "GROSS282", "GROSS283", "GROSS284", "GROSS285", "GROSS286", "GROSS287", "GROSS288", "GROSS289", "GROSS29", "GROSS290", "GROSS291", "GROSS292", "GROSS293", "GROSS294", "GROSS295", "GROSS296", "GROSS297", "GROSS298", "GROSS299", "GROSS3", "GROSS30", "GROSS300", "GROSS31", "GROSS32", "GROSS33", "GROSS34", "GROSS35", "GROSS36", "GROSS37", "GROSS38", "GROSS39", "GROSS4", "GROSS40", "GROSS41", "GROSS42", "GROSS43", "GROSS44", "GROSS45", "GROSS46", "GROSS47", "GROSS48", "GROSS49", "GROSS5", "GROSS50", "GROSS51", "GROSS52", "GROSS53", "GROSS54", "GROSS55", "GROSS56", "GROSS57", "GROSS58", "GROSS59", "GROSS6", "GROSS60", "GROSS61", "GROSS62", "GROSS63", "GROSS64", "GROSS65", "GROSS66", "GROSS67", "GROSS68", "GROSS69", "GROSS7", "GROSS70", "GROSS71", "GROSS72", "GROSS73", "GROSS74", "GROSS75", "GROSS76", "GROSS77", "GROSS78", "GROSS79", "GROSS8", "GROSS80", "GROSS81", "GROSS82", "GROSS83", "GROSS84", "GROSS85", "GROSS86", "GROSS87", "GROSS88", "GROSS89", "GROSS9", "GROSS90", "GROSS91", "GROSS92", "GROSS93", "GROSS94", "GROSS95", "GROSS96", "GROSS97", "GROSS98", "GROSS99", "NET1", "NET10", "NET100", "NET101", "NET102", "NET103", "NET104", "NET105", "NET106", "NET107", "NET108", "NET109", "NET11", "NET110", "NET111", "NET112", "NET113", "NET114", "NET115", "NET116", "NET117", "NET118", "NET119", "NET12", "NET120", "NET121", "NET122", "NET123", "NET124", "NET125", "NET126", "NET127", "NET128", "NET129", "NET13", "NET130", "NET131", "NET132", "NET133", "NET134", "NET135", "NET136", "NET137", "NET138", "NET139", "NET14", "NET140", "NET141", "NET142", "NET143", "NET144", "NET145", "NET146", "NET147", "NET148", "NET149", "NET15", "NET150", "NET151", "NET152", "NET153", "NET154", "NET155", "NET156", "NET157", "NET158", "NET159", "NET16", "NET160", "NET161", "NET162", "NET163", "NET164", "NET165", "NET166", "NET167", "NET168", "NET169", "NET17", "NET170", "NET171", "NET172", "NET173", "NET174", "NET175", "NET176", "NET177", "NET178", "NET179", "NET18", "NET180", "NET181", "NET182", "NET183", "NET184", "NET185", "NET186", "NET187", "NET188", "NET189", "NET19", "NET190", "NET191", "NET192", "NET193", "NET194", "NET195", "NET196", "NET197", "NET198", "NET199", "NET2", "NET20", "NET200", "NET201", "NET202", "NET203", "NET204", "NET205", "NET206", "NET207", "NET208", "NET209", "NET21", "NET210", "NET211", "NET212", "NET213", "NET214", "NET215", "NET216", "NET217", "NET218", "NET219", "NET22", "NET220", "NET221", "NET222", "NET223", "NET224", "NET225", "NET226", "NET227", "NET228", "NET229", "NET23", "NET230", "NET231", "NET232", "NET233", "NET234", "NET235", "NET236", "NET237", "NET238", "NET239", "NET24", "NET240", "NET241", "NET242", "NET243", "NET244", "NET245", "NET246", "NET247", "NET248", "NET249", "NET25", "NET250", "NET251", "NET252", "NET253", "NET254", "NET255", "NET256", "NET257", "NET258", "NET259", "NET26", "NET260", "NET261", "NET262", "NET263", "NET264", "NET265", "NET266", "NET267", "NET268", "NET269", "NET27", "NET270", "NET271", "NET272", "NET273", "NET274", "NET275", "NET276", "NET277", "NET278", "NET279", "NET28", "NET280", "NET281", "NET282", "NET283", "NET284", "NET285", "NET286", "NET287", "NET288", "NET289", "NET29", "NET290", "NET291", "NET292", "NET293", "NET294", "NET295", "NET296", "NET297", "NET298", "NET299", "NET3", "NET30", "NET300", "NET31", "NET32", "NET33", "NET34", "NET35", "NET36", "NET37", "NET38", "NET39", "NET4", "NET40", "NET41", "NET42", "NET43", "NET44", "NET45", "NET46", "NET47", "NET48", "NET49", "NET5", "NET50", "NET51", "NET52", "NET53", "NET54", "NET55", "NET56", "NET57", "NET58", "NET59", "NET6", "NET60", "NET61", "NET62", "NET63", "NET64", "NET65", "NET66", "NET67", "NET68", "NET69", "NET7", "NET70", "NET71", "NET72", "NET73", "NET74", "NET75", "NET76", "NET77", "NET78", "NET79", "NET8", "NET80", "NET81", "NET82", "NET83", "NET84", "NET85", "NET86", "NET87", "NET88", "NET89", "NET9", "NET90", "NET91", "NET92", "NET93", "NET94", "NET95", "NET96", "NET97", "NET98", "NET99"],
267
+ "documentType": ["ARTICLE_DATASHEET", "ARTICLE_LABEL", "BLANKET_PURCHASE_ORDER", "BLANKET_SALES_ORDER", "CANCELLATION_UBL", "CANCELLATION_XR", "CONTRACT", "CREDIT_ADVICE", "CREDIT_ADVICE_CANCELLATION", "CREDIT_ADVICE_PRELIMINARY_INVOICE", "CREDIT_ADVICE_UBL", "CREDIT_ADVICE_XR", "CRM_EVENT_LETTER", "CUSTOMER_ARTICLE_PRICE_LIST", "DUNNING", "INCOMING_GOODS", "INCOMING_GOODS_FROM_RETURN", "INCOMING_GOODS_RETURNS_PICKUP_NOTE", "INVENTORY_TAKING", "PERFORMANCE_RECORD", "PRODUCTION_ORDER", "PURCHASE_INVOICE", "PURCHASE_INVOICE_FATTURAPA", "PURCHASE_INVOICE_ZUGFERD", "PURCHASE_ORDER", "PURCHASE_ORDER_CANCELLATION", "PURCHASE_ORDER_DEFAULT", "PURCHASE_ORDER_REQUEST", "PURCHASE_ORDER_REQUEST_OFFER_ITEM_CSV", "PURCHASE_ORDER_REQUEST_SUPPLIER_DOCUMENT", "QUOTATION", "QUOTATION_DEFAULT", "SALES_INVOICE", "SALES_INVOICE_CANCELLATION", "SALES_INVOICE_DEFAULT", "SALES_INVOICE_FATTURAPA", "SALES_INVOICE_PRELIMINARY", "SALES_INVOICE_QR", "SALES_INVOICE_UBL", "SALES_INVOICE_XR", "SALES_ORDER", "SALES_ORDER_DEFAULT", "SHIPMENT_CUSTOMS_DECLARATION", "SHIPMENT_DELIVERY_LABEL", "SHIPMENT_DELIVERY_NOTE", "SHIPMENT_DELIVERY_NOTE_DEFAULT", "SHIPMENT_PICKING_LIST", "SHIPMENT_PROFORMA_INVOICE", "SHIPMENT_RETURN_DELIVERY_NOTE", "SHIPMENT_RETURN_LABEL", "SHIPMENT_SERIAL_NUMBERS_CSV", "TICKET", "ZUGFERD_VALIDATION"],
268
+ "dueDateOption": ["END_OF_MONTH", "FIX", "IMMEDIATE", "PERIOD"],
269
+ "dunningBlockState": ["BLOCKED", "TEMPORAL_BLOCKED", "UNBLOCKED"],
270
+ "ecommerceShippingCarrier": ["AUSTRIAN_POST", "CARGO_INTERNATIONAL", "DACHSER", "DB_SCHENKER", "DEUTSCHE_POST", "DHL", "DHL_EXPRESS", "DPD", "FEDEX", "GLS", "GO", "HERMES", "ILOXX", "KUEHNE_NAGEL", "OTHER", "PARCEL_ONE", "TNT", "UPS"],
271
+ "eventInvitationStatus": ["ACCEPT", "CANCEL", "DECLINE", "INVITATION", "TENTATIVE", "UNDEFINED"],
272
+ "eventRight": ["CAN_MODIFY_EVERYTHING", "CAN_MODIFY_EVERYTHING_BUT_NOT_PARTICIPIENT_LIST", "CAN_MODIFY_ONLY_PARTICIPIENT_LIST", "CAN_NOT_MODIFY_ANYTHING"],
273
+ "externalConnectionType": ["AMAZON", "BREVO", "CLEVERREACH", "DATEV_CONNECT_ONLINE_PROD", "DATEV_CONNECT_ONLINE_STAGING", "DHL", "EBAY", "FINTEC_SYSTEMS", "GOOGLEV3", "ITSCOPE", "JIRA", "KAUFLAND", "MAGENTO", "MAGENTO2", "MAILCHIMP", "MAPBOX", "MOLLIE_PROD", "MOLLIE_STAGING", "NAMIRIAL_2C_SOLUTION", "OTTO", "PRESTA", "SENDCLOUD", "SHIPCLOUD", "SHOPIFY", "SHOPWARE", "SHOPWARE6", "STRIPE_PROD", "STRIPE_STAGING", "SYNAXON", "TEAMVIEWER", "TINK", "VERSACOMMERCE", "WECLAPP2WECLAPP", "WOOCOMMERCE", "XTCOMMERCE"],
274
+ "fastProductionBookingResultMessage": ["INVALID_ORDER", "INVALID_ORDER_NUMBER", "INVALID_QUANTITY", "SUCCESS"],
275
+ "financialYearStatus": ["CLOSED", "CURRENT", "PLANNED", "PRELIMINARY_CLOSED"],
276
+ "followupBusyState": ["BUSY", "FREE", "OUT_OF_OFFICE", "TENTATIVE"],
277
+ "fulfillmentProviderType": ["AMAZON", "EXTERNAL", "INTERNAL"],
278
+ "internalShippingCarrier": ["ANGEL_DE", "AUSTRIAN_POST_EMS", "AUSTRIAN_POST_PLUS_INTERNATIONAL", "AUSTRIAN_POST_PREMIUM", "AUSTRIAN_POST_PREMIUM_SELECT", "AUSTRIAN_POST_RETURNS", "AUSTRIAN_POST_STANDARD", "CARGO_INTERNATIONAL_EXPRESS", "CARGO_INTERNATIONAL_STANDARD", "DEUTSCHE_POST_STANDARD", "DHL_EUROPAKET", "DHL_EUROPAKET_EV", "DHL_EXPRESS_ECONOMY_SELECT", "DHL_EXPRESS_ONE_DAY", "DHL_EXPRESS_ONE_DAY_EARLY", "DHL_KLEINPAKET", "DHL_KLEINPAKET_EV", "DHL_PAKET_EV", "DHL_PAKET_INTERNATIONAL_EV", "DHL_RETURNS", "DHL_RETURNS_EV", "DHL_STANDARD", "DHL_WARENPOST", "DHL_WARENPOST_INTERNATIONAL_EV", "DPD_EXPRESS_ONE_DAY", "DPD_EXPRESS_ONE_DAY_EARLY", "DPD_RETURNS", "DPD_STANDARD", "FEDEX_EXPRESS_ONE_DAY_EARLY", "FEDEX_INTERNATIONAL_ECONOMY", "FEDEX_INTERNATIONAL_PRIORITY", "FEDEX_STANDARD", "GLS_EXPRESS_ONE_DAY", "GLS_PICK_AND_SHIP", "GLS_RETURNS", "GLS_STANDARD", "GO_ONE_DAY", "HERMES_RETURNS", "HERMES_STANDARD", "ILOXX_STANDARD", "PARCEL_ONE", "TNT_ONE_DAY", "TNT_ONE_DAY_EARLY", "UPS_EXPEDITED", "UPS_EXPRESS_1200", "UPS_EXPRESS_ONE_DAY", "UPS_EXPRESS_ONE_DAY_EARLY", "UPS_RETURNS", "UPS_STANDARD"],
279
+ "inventorySerialNumberStatus": ["CHECKED", "EXPECTED", "MANUALLY", "MISSING"],
280
+ "inventoryStatusType": ["BOOKED", "CANCELLED", "CLOSED", "COMPLETE", "DIFFERENCE_CHECKED", "DOCUMENTS_PRINTED", "NEW", "PLANNED", "STARTED"],
281
+ "invoicingType": ["EFFORT", "FIXED_PRICE"],
282
+ "itemType": ["DEFAULT", "FREE_TEXT", "SERVICE", "SERVICE_QUOTA"],
283
+ "jobStatus": ["ABORTING", "EXECUTING", "NOT_EXECUTING", "SCHEDULED"],
284
+ "jobType": ["ACCOUNTING_DATASTRUCTURE_MIGRATION", "ACCOUNTING_EXPORT", "ACCOUNT_BALANCES_TRANSFER", "ADAPT_SALES_STAGES", "AMAZON_ARTICLE_WECLAPP_ARTICLE_FBA_SYNC", "AMAZON_ARTICLE_WECLAPP_ARTICLE_SYNC", "AMAZON_CREATE_REPORTS", "AMAZON_INVOICE_UPLOAD", "AMAZON_REPORT_SALES_ORDER_FBA_SYNC", "AMAZON_REPORT_SALES_ORDER_SYNC", "AMAZON_SETTLEMENT_WECLAPP_SYNC", "AMAZON_WECLAPP_ARTICLE_FBA_SYNC", "AMAZON_WECLAPP_ARTICLE_SYNC", "AMAZON_WECLAPP_FBA_STOCK_SYNC", "AMAZON_WECLAPP_REPORT_FBA_SYNC", "AMAZON_WECLAPP_REPORT_SYNC", "AMAZON_WECLAPP_SETTLEMENT_SYNC", "ARTICLE_KEY_FIGURES_EXPORT", "ARTICLE_PRICE_TO_AMAZON_REPORT_SYNC", "BREVO_CAMPAIGN_PARTICIPANT_EXPORT", "BREVO_CONTACT_EXPORT", "BREVO_CONTACT_IMPORT", "BREVO_CUSTOMER_EXPORT", "BREVO_LEAD_EXPORT", "CAMPAIGN_EMAIL_SENDING", "CLEVER_REACH_CAMPAIGN_PARTICIPANT_EXPORT", "CLEVER_REACH_CONTACT_EXPORT", "CLEVER_REACH_CONTACT_IMPORT", "CLEVER_REACH_CUSTOMER_EXPORT", "CLEVER_REACH_LEAD_EXPORT", "COMMISSION_RUN", "CONTRACT_BILLING", "DATEV_BBS_TRANSMISSION", "DATEV_BDS_TRANSMISSION", "DATEV_RDS_TRANSMISSION", "EBAY_WECLAPP_DELETION_REQUEST_SYNC", "EBAY_WECLAPP_LISTING_SYNC", "EBAY_WECLAPP_ORDER_SYNC", "EBAY_WECLAPP_PAYMENT_SYNC", "EBAY_WECLAPP_SELLER_PROFILE_SYNC", "ERIC_CREATE_ACCOUNT_SHEET", "FATTURAPA_IMPORT", "FATTURAPA_SALES_INVOICE_XML_CREATION", "GROUPWARE_CONTACT_CREATION", "IMPORT_VCARD", "INVENTORY_BOOKING", "INVENTORY_VALUATION", "INVENTORY_VALUTATION_EXPORT", "ITSCOPE_ARTICLE_PRICE_UPDATE", "ITSCOPE_WECLAPP_ARTICLE_SYNC", "ITSCOPE_WECLAPP_PURCHASE_ORDER_SYNC", "ITSCOPE_WECLAPP_SALES_ORDER_SYNC", "IT_SCOPE_QUOTATION_SYNC", "KAUFLAND_ARTICLE_UPLOAD_CHECK_SYNC", "KAUFLAND_INVOICE_UPLOAD", "KAUFLAND_WECLAPP_ARTICLE_SYNC", "KAUFLAND_WECLAPP_ORDER_SYNC", "LISTING_TO_EBAY_UPDATE_SYNC", "MAGENTO2_WECLAPP_ARTICLE_SYNC", "MAGENTO2_WECLAPP_CUSTOMER_SYNC", "MAGENTO2_WECLAPP_ORDER_SYNC", "MAGENTO_WECLAPP_ARTICLE_SYNC", "MAGENTO_WECLAPP_CUSTOMER_SYNC", "MAGENTO_WECLAPP_ORDER_SYNC", "MAIL_CHIMP_CAMPAIGN_PARTICIPANT_EXPORT", "MAIL_CHIMP_CONTACT_EXPORT", "MAIL_CHIMP_CONTACT_IMPORT", "MAIL_CHIMP_CUSTOMER_EXPORT", "MAIL_CHIMP_LEAD_EXPORT", "MAIL_TO_INVOICE_IMPORT", "MASS_ACCOUNTING_TRANSACTION_UPDATE", "MASS_ADVANCE_PAYMENT_INVOICE_COMPLETE_WORKFLOW", "MASS_ADVANCE_PAYMENT_INVOICE_CREATION", "MASS_AMAZON_SHIPMENT_CREATION", "MASS_ARTICLE_CUSTOM_ATTRIBUTE_UPDATE", "MASS_ARTICLE_PRINT_DATASHEET", "MASS_ARTICLE_SUPPLY_SOURCE_CUSTOM_ATTRIBUTE_UPDATE", "MASS_ARTICLE_SUPPLY_SOURCE_UPDATE", "MASS_ARTICLE_UPDATE", "MASS_BILL_OF_MATERIAL_ITEM_UPDATE", "MASS_BLANKET_PURCHASE_ORDER_CANCEL", "MASS_BLANKET_PURCHASE_ORDER_COMPLETE", "MASS_BLANKET_PURCHASE_ORDER_CONFIRM_BY_SUPPLIER", "MASS_BLANKET_PURCHASE_ORDER_CUSTOM_ATTRIBUTE_UPDATE", "MASS_BLANKET_PURCHASE_ORDER_PRINT", "MASS_BLANKET_PURCHASE_ORDER_REOPEN", "MASS_BLANKET_PURCHASE_ORDER_SEND_EMAIL", "MASS_BLANKET_PURCHASE_ORDER_UPDATE", "MASS_BLANKET_PURCHASE_ORDER_UPDATE_FORM_TEXTS", "MASS_BLANKET_SALES_ORDER_CANCEL", "MASS_BLANKET_SALES_ORDER_COMPLETE", "MASS_BLANKET_SALES_ORDER_CREATE_CONFIRMATION", "MASS_BLANKET_SALES_ORDER_CUSTOM_ATTRIBUTE_UPDATE", "MASS_BLANKET_SALES_ORDER_DELETION", "MASS_BLANKET_SALES_ORDER_REOPEN", "MASS_BLANKET_SALES_ORDER_SEND_EMAIL", "MASS_BLANKET_SALES_ORDER_UPDATE", "MASS_BLANKET_SALES_ORDER_UPDATE_FORM_TEXTS", "MASS_BUSINESS_TIMES_DAY_OFF_DELETE", "MASS_CAMPAIGN_CUSTOM_ATTRIBUTE_UPDATE", "MASS_CAMPAIGN_PARTICIPANTS_UPDATE", "MASS_CAMPAIGN_UPDATE", "MASS_CANCELLATION_SEND_EMAIL", "MASS_CANCEL_TRANSPORTATION_ORDER", "MASS_CLEAR_OPEN_ITEM", "MASS_CLOSE_SUPPLIER_ORDER", "MASS_COMPLETE_WORKFLOW_TRANSPORTATION_ORDER", "MASS_CONTRACT_CHARGE_CUSTOM_ATTRIBUTE_UPDATE", "MASS_CONTRACT_CHARGE_UPDATE", "MASS_CONTRACT_CUSTOM_ATTRIBUTE_UPDATE", "MASS_CONTRACT_PRINT_DOCUMENT", "MASS_CONTRACT_SEND_EMAIL", "MASS_CONTRACT_UPDATE", "MASS_CONTRACT_UPDATE_FORM_TEXTS", "MASS_CREATE_DROPSHIPPING_ORDER", "MASS_CREATE_SALES_ORDER_COMMISSION", "MASS_CREATE_TRANSPORTATION_ORDER_FROM_PICKING_BOOKS", "MASS_CREDIT_NOTE_COMPLETE_WORKFLOW", "MASS_CRM_EVENT_CUSTOM_ATTRIBUTE_UPDATE", "MASS_CRM_EVENT_UPDATE", "MASS_CUSTOMER_RETURN_DELETE", "MASS_DELIVERY_NOTE_SEND_EMAIL", "MASS_DOWNLOAD_BANK_TRANSACTION", "MASS_DUNNING_RUN_PROCESS_PROPOSALS", "MASS_DUNNING_RUN_SEND_EMAIL_DETAIL", "MASS_DUNNING_RUN_SEND_EMAIL_OVERVIEW", "MASS_EBAY_LISTINGS_DELETE", "MASS_EBAY_LISTING_UPDATE", "MASS_INTERNAL_TRANSPORT_REFERENCE_UPDATE", "MASS_INVOICE_BOOK", "MASS_INVOICE_CHECK", "MASS_INVOICE_COMPLETE_ENTRY", "MASS_INVOICE_COMPLETE_WORKFLOW", "MASS_INVOICE_CREATE_OPEN_ITEMS", "MASS_INVOICE_DOCUMENT_CREATION", "MASS_INVOICE_SEND_EMAIL", "MASS_INVOICE_VERIFIED", "MASS_IT_SCOPE_ARTICLE_CREATION", "MASS_IT_SCOPE_ORDER_SYNC", "MASS_LEDGER_ACCOUNT_UPDATE", "MASS_OFFER_ACCEPT", "MASS_OFFER_CUSTOM_ATTRIBUTE_UPDATE", "MASS_OFFER_ITEM_CUSTOM_ATTRIBUTE_UPDATE", "MASS_OFFER_ITEM_UPDATE", "MASS_OFFER_PRINT_DOCUMENT", "MASS_OFFER_RECALCULATE_COSTS", "MASS_OFFER_REJECT", "MASS_OFFER_RESET_TAXES", "MASS_OFFER_SEND_EMAIL", "MASS_OFFER_UPDATE", "MASS_OFFER_UPDATE_FORM_TEXTS", "MASS_OPPORTUNITY_CUSTOM_ATTRIBUTE_UPDATE", "MASS_OPPORTUNITY_UPDATE", "MASS_ORDER_CANCEL", "MASS_ORDER_CLOSE", "MASS_ORDER_CONFIRMATION_CREATION", "MASS_ORDER_RECALCULATE_COSTS", "MASS_ORDER_REOPEN", "MASS_ORDER_RESET_TAXES", "MASS_ORDER_SHIPPING_LABEL_CREATION", "MASS_ORDER_SHIPPING_RETURN_LABEL_CREATION", "MASS_ORDER_UPDATE", "MASS_ORDER_UPDATE_FORM_TEXTS", "MASS_PARTY_CUSTOM_ATTRIBUTE_UPDATE", "MASS_PARTY_MERGE", "MASS_PARTY_SET_PRIMARY_CONTACT", "MASS_PARTY_UPDATE", "MASS_PART_PAYMENT_INVOICE_COMPLETE_WORKFLOW", "MASS_PART_PAYMENT_INVOICE_CREATION", "MASS_PAYMENT_RUN_PROCESS_PROPOSALS", "MASS_PERFORMANCE_RECORD_COMPLETE_WORKFLOW_FOR_SALES_ORDER", "MASS_PERFORMANCE_RECORD_CREATE_DOCUMENTS", "MASS_PERFORMANCE_RECORD_CUSTOM_ATTRIBUTE_UPDATE", "MASS_PERFORMANCE_RECORD_INVOICING", "MASS_PERFORMANCE_RECORD_ITEM_CUSTOM_ATTRIBUTE_UPDATE", "MASS_PERFORMANCE_RECORD_RECORDING", "MASS_PERFORMANCE_RECORD_SEND_EMAIL", "MASS_PERFORMANCE_RECORD_UPDATE", "MASS_PERFORMANCE_RECORD_UPDATE_FORM_TEXTS", "MASS_PICKING_LIST_CREATION", "MASS_PM_REQUIREMENT_ITEM_UPDATE", "MASS_PREPAYMENT_INVOICE_CREATION", "MASS_PREPAYMENT_INVOICE_WORKFLOW", "MASS_PRINT_DROPSHIPPING_ORDER_DELIVERY_NOTE", "MASS_PRINT_PRODUCTION_ORDER", "MASS_PRINT_PURCHASE_ORDER_DOCUMENTS", "MASS_PRINT_RETURNS_PICKUP_NOTE", "MASS_PRINT_RETURNS_RETURN_NOTE", "MASS_PRINT_RETURN_DELIVERY_NOTE", "MASS_PROCESS_DROPSHIPPING_ORDER", "MASS_PRODUCTION_ORDER_CANCELLATION", "MASS_PRODUCTION_ORDER_CUSTOM_ATTRIBUTE_UPDATE", "MASS_PRODUCTION_ORDER_ITEM_ARTICLE_EXCHANGE", "MASS_PRODUCTION_ORDER_ITEM_CUSTOM_ATTRIBUTE_UPDATE", "MASS_PRODUCTION_ORDER_MATERIAL_ITEMS_UPDATE", "MASS_PRODUCTION_ORDER_PICKING_LIST_CREATION", "MASS_PRODUCTION_ORDER_REOPEN", "MASS_PRODUCTION_ORDER_UPDATE", "MASS_PRODUCTION_ORDER_UPDATE_FORM_TEXTS", "MASS_PROJECT_CUSTOM_ATTRIBUTE_UPDATE", "MASS_PROJECT_UPDATE", "MASS_PURCHASE_CREDIT_NOTE_COMPLETE_WORKFLOW", "MASS_PURCHASE_INVOICE_BACK_TO_ENTRY", "MASS_PURCHASE_INVOICE_BOOK_ACCOUNTING", "MASS_PURCHASE_INVOICE_CANCEL", "MASS_PURCHASE_INVOICE_COMPLETE_WORKFLOW", "MASS_PURCHASE_INVOICE_CREATE_CREDIT_NOTE", "MASS_PURCHASE_INVOICE_CUSTOM_ATTRIBUTE_UPDATE", "MASS_PURCHASE_INVOICE_ITEM_CUSTOM_ATTRIBUTE_UPDATE", "MASS_PURCHASE_INVOICE_ITEM_UPDATE", "MASS_PURCHASE_INVOICE_RESET_TAXES", "MASS_PURCHASE_INVOICE_SHIPPING_COST_ITEM_UPDATE", "MASS_PURCHASE_INVOICE_UPDATE", "MASS_PURCHASE_ORDER_CANCEL", "MASS_PURCHASE_ORDER_CUSTOM_ATTRIBUTE_UPDATE", "MASS_PURCHASE_ORDER_INVOICE_COMPLETE_WORKFLOW", "MASS_PURCHASE_ORDER_ITEM_CUSTOM_ATTRIBUTE_UPDATE", "MASS_PURCHASE_ORDER_ITEM_UPDATE", "MASS_PURCHASE_ORDER_REOPEN", "MASS_PURCHASE_ORDER_SEND_EMAIL", "MASS_PURCHASE_ORDER_UPDATE", "MASS_PURCHASE_ORDER_UPDATE_FORM_TEXTS", "MASS_PURCHASE_REQUEST_CANCEL", "MASS_PURCHASE_REQUEST_CLOSE", "MASS_PURCHASE_REQUEST_CREATE_DOCUMENTS", "MASS_PURCHASE_REQUEST_CUSTOM_ATTRIBUTE_UPDATE", "MASS_PURCHASE_REQUEST_REOPEN", "MASS_PURCHASE_REQUEST_SEND_EMAIL", "MASS_PURCHASE_REQUEST_UPDATE", "MASS_PURCHASE_REQUEST_UPDATE_FORM_TEXTS", "MASS_RECORD_ADDRESS_FROM_CRM_UPDATE", "MASS_RECORD_EMAIL_ADDRESS_FROM_CRM_UPDATE", "MASS_RECURRING_CREATE_INVOICE", "MASS_RECURRING_INVOICE_CUSTOM_ATTRIBUTE_UPDATE", "MASS_RECURRING_INVOICE_ITEM_CUSTOM_ATTRIBUTE_UPDATE", "MASS_RECURRING_INVOICE_ITEM_UPDATE", "MASS_RECURRING_INVOICE_UPDATE", "MASS_RECURRING_INVOICE_UPDATE_FORM_TEXTS", "MASS_RECURRING_RECALCULATION_COST", "MASS_REGION_UPDATE", "MASS_REMINDER_UPDATE", "MASS_RESET_CLEAR_OPEN_ITEM", "MASS_SALES_BILL_OF_MATERIAL_ITEM_UPDATE", "MASS_SALES_INVOICE_BACK_TO_ENTRY", "MASS_SALES_INVOICE_BOOK_ACCOUNTING", "MASS_SALES_INVOICE_CANCEL", "MASS_SALES_INVOICE_CREATE_CREDIT_NOTE", "MASS_SALES_INVOICE_CUSTOM_ATTRIBUTE_UPDATE", "MASS_SALES_INVOICE_ITEM_CUSTOM_ATTRIBUTE_UPDATE", "MASS_SALES_INVOICE_ITEM_UPDATE", "MASS_SALES_INVOICE_RECALCULATE_COSTS", "MASS_SALES_INVOICE_RESET_TAXES", "MASS_SALES_INVOICE_SHIPPING_COST_ITEM_UPDATE", "MASS_SALES_INVOICE_UPDATE", "MASS_SALES_INVOICE_UPDATE_FORM_TEXTS", "MASS_SALES_ORDER_CASH_CUSTOM_ATTRIBUTE_UPDATE", "MASS_SALES_ORDER_COMPLETE_WORKFLOW", "MASS_SALES_ORDER_CREATE_PERFORMANCE_RECORD", "MASS_SALES_ORDER_CUSTOM_ATTRIBUTE_UPDATE", "MASS_SALES_ORDER_ITEM_CUSTOM_ATTRIBUTE_UPDATE", "MASS_SALES_ORDER_ITEM_UPDATE", "MASS_SALES_ORDER_SEND_EMAIL", "MASS_SALES_PRICE_ADD_SPECIAL_PRICE", "MASS_SALES_PRICE_DELETION", "MASS_SAVE_ORDER_CONFIRMED", "MASS_SEPA_MAIN_BANK_UPDATE", "MASS_SERIALNUMBER_CUSTOM_ATTRIBUTE_UPDATE", "MASS_SERVICE_QUOTA_CLOSE", "MASS_SERVICE_QUOTA_CREATE_PERFORMANCE_RECORD", "MASS_SERVICE_QUOTA_CUSTOM_ATTRIBUTE_UPDATE", "MASS_SERVICE_QUOTA_REOPEN", "MASS_SERVICE_QUOTA_UPDATE", "MASS_SET_ORDERS_SHIPPED", "MASS_SHIPMENT_ARRIVAL_CANCEL", "MASS_SHIPMENT_ARRIVAL_CUSTOM_ATTRIBUTE_UPDATE", "MASS_SHIPMENT_ARRIVAL_ITEM_CUSTOM_ATTRIBUTE_UPDATE", "MASS_SHIPMENT_COMPLETE_WORKFLOW", "MASS_SHIPMENT_COMPLETE_WORKFLOW_FOR_SALES_ORDER", "MASS_SHIPMENT_CREATION", "MASS_SHIPMENT_INCOMING_DELETE", "MASS_SHIPMENT_INCOMING_REOPEN", "MASS_SHIPMENT_INCOMING_UPDATE", "MASS_SHIPMENT_INCOMING_UPDATE_FORM_TEXTS", "MASS_SHIPMENT_INVOICE_CREATION", "MASS_SHIPMENT_OUTGOING_BACK_TO_ENTRY", "MASS_SHIPMENT_OUTGOING_CANCEL", "MASS_SHIPMENT_OUTGOING_CUSTOM_ATTRIBUTE_UPDATE", "MASS_SHIPMENT_OUTGOING_DELETE", "MASS_SHIPMENT_OUTGOING_ITEM_CUSTOM_ATTRIBUTE_UPDATE", "MASS_SHIPMENT_OUTGOING_RETURN_LABEL_CREATION", "MASS_SHIPMENT_OUTGOING_UPDATE", "MASS_SHIPMENT_OUTGOING_UPDATE_FORM_TEXTS", "MASS_SHIPPING_CARRIER_UPDATE", "MASS_SHIPPING_CONFIRMATION_OF_ARRIVAL_CREATION", "MASS_SHIPPING_CONFIRMATION_OF_ARRIVAL_SEND_EMAIL", "MASS_SHIPPING_LABEL_CREATION", "MASS_SHIPPING_NOTE_CREATION", "MASS_SHIPPING_RETURN_LABEL_CREATION", "MASS_SHIP_IN", "MASS_SHIP_OUT", "MASS_STANDARD_INVOICE_CREATION", "MASS_STANDARD_INVOICE_WORKFLOW", "MASS_START_PRODUCTION_ORDER", "MASS_STOCK_BATCH_NUMBER_CUSTOM_ATTRIBUTE_UPDATE", "MASS_STORAGE_PLACE_CUSTOM_ATTRIBUTE_UPDATE", "MASS_STORAGE_PLACE_UPDATE", "MASS_SUPPLIER_PRICE_DELETION", "MASS_SUPPLIER_RETURN_DELETE", "MASS_TASK_BILLING_DATA_UPDATE", "MASS_TASK_CREATE_PERFORMANCE_RECORD", "MASS_TASK_CREATE_RECORDED_PERFORMANCE_RECORD_AND_INVOICE", "MASS_TASK_CUSTOM_ATTRIBUTE_UPDATE", "MASS_TASK_UPDATE", "MASS_TAX_RESET", "MASS_TEAMVIEWER_DOWNLOAD_TIME_ENTRIES", "MASS_TICKET_CATEGORY_UPDATE", "MASS_TICKET_CREATE_PERFORMANCE_RECORD", "MASS_TICKET_CREATE_RECORDED_PERFORMANCE_RECORD_AND_INVOICE", "MASS_TICKET_CUSTOM_ATTRIBUTE_UPDATE", "MASS_TICKET_FAQ_COPY", "MASS_TICKET_FAQ_UPDATE", "MASS_TICKET_LINK_TO_SALES_ORDER", "MASS_TICKET_MERGE", "MASS_TICKET_SLA_RECALCULATE", "MASS_TICKET_STATUS_UPDATE", "MASS_TICKET_UPDATE", "MASS_TIME_RECORD_CREATE_PERFORMANCE_RECORD", "MASS_TIME_RECORD_CREATE_RECORDED_PERFORMANCE_RECORD_AND_INVOICE", "MASS_TIME_RECORD_CUSTOM_ATTRIBUTE_UPDATE", "MASS_TIME_RECORD_MOVE", "MASS_TIME_RECORD_UPDATE", "MASS_TRANSACTION_BOOKING", "MASS_TRANSACTION_CLEARING", "MASS_TRANSACTION_DELETE", "MASS_TRANSACTION_PROCESSING", "MASS_TRANSACTION_REMOVE_PAYMENTAPPLICATIONS", "MASS_TRANSACTION_RESET_IGNORE", "MASS_TRANSACTION_SET_IGNORE", "MASS_TRANSPORTATION_ORDER_CUSTOM_ATTRIBUTE_UPDATE", "MASS_TRANSPORTATION_ORDER_PICKING_LIST_CREATION", "MASS_UPDATE_CONTRACT_PRICES", "MASS_UPDATE_OFFER_PRICES", "MASS_UPDATE_RECURRING_INVOICE_PRICES", "MASS_UPDATE_SALES_INVOICE_PRICES", "MASS_UPDATE_SALES_ORDER_PRICES", "MATERIAL_PLANNING_RUN", "OFFER_EXPORT", "OTTO_ARTICLE_UPLOAD_CHECK_SYNC", "OTTO_WECLAPP_ARTICLE_SYNC", "OTTO_WECLAPP_CREDIT_NOTE_SYNC", "OTTO_WECLAPP_INVOICE_SYNC", "OTTO_WECLAPP_ORDER_SYNC", "PRESTA_WECLAPP_ARTICLE_SYNC", "PRESTA_WECLAPP_CUSTOMER_SYNC", "PRESTA_WECLAPP_ORDER_SYNC", "PRICE_CALCULATION_ARTICLE", "PURCHASE_INVOICE_EXPORT", "PURCHASE_INVOICE_SHIPPING_COST_EXPORT", "PURCHASE_ORDER_EXPORT", "PURCHASE_ORDER_REQUEST_SEND_EMAIL", "RECEIVED_INVOICE_IMPORT", "RECURRING_INVOICE_INVOICE_CREATION", "RESET_ACCOUNTING", "RESET_BUSINESS_TRANSACTIONS", "SALES_INVOICE_EXPORT", "SALES_INVOICE_SHIPPING_COST_ITEMS_EXPORT", "SALES_INVOICE_XRECHNUNG_EXPORT", "SALES_ORDER_EXPORT", "SHIPMENTIN_EXPORT", "SHIPMENTOUT_EXPORT", "SHOPIFY_WECLAPP_ARTICLE_SYNC", "SHOPIFY_WECLAPP_CUSTOMER_SYNC", "SHOPIFY_WECLAPP_ORDER_SYNC", "SHOPIFY_WECLAPP_PAYMENT_SYNC", "SHOPWARE6_WECLAPP_ARTICLE_SYNC", "SHOPWARE6_WECLAPP_CUSTOMER_SYNC", "SHOPWARE6_WECLAPP_ORDER_SYNC", "SHOPWARE_WECLAPP_ARTICLE_SYNC", "SHOPWARE_WECLAPP_CUSTOMER_SYNC", "SHOPWARE_WECLAPP_ORDER_SYNC", "SYNAXON_WECLAPP_ARTICLE_UPDATE", "TRANSUS_SALES_INVOICE_XML_CREATION", "TRANSUS_SHIPMENT_XML_CREATION", "TRANSUS_WECLAPP_ORDER_SYNC", "WECLAPP_AMAZON_OUTBOUND_SHIPMENT_SYNC", "WECLAPP_AMAZON_STOCK_SYNC", "WECLAPP_EBAY_LISTING_STOCK_SYNC", "WECLAPP_EBAY_ORDER_SYNC", "WECLAPP_ITSCOPE_ARTICLE_PRICE_UPDATE", "WECLAPP_ITSCOPE_ORDER_SYNC", "WECLAPP_KAUFLAND_ARTICLE_SYNC", "WECLAPP_KAUFLAND_ORDER_SYNC", "WECLAPP_KAUFLAND_STOCK_SYNC", "WECLAPP_MAGENTO2_ARTICLE_SYNC", "WECLAPP_MAGENTO2_ORDER_SYNC", "WECLAPP_MAGENTO2_STOCK_SYNC", "WECLAPP_MAGENTO_ARTICLE_SYNC", "WECLAPP_MAGENTO_ORDER_SYNC", "WECLAPP_MAGENTO_STOCK_SYNC", "WECLAPP_OTTO_ARTICLE_SYNC", "WECLAPP_OTTO_ORDER_SYNC", "WECLAPP_OTTO_STOCK_SYNC", "WECLAPP_PRESTA_ARTICLE_SYNC", "WECLAPP_PRESTA_CUSTOMER_SYNC", "WECLAPP_PRESTA_ORDER_SYNC", "WECLAPP_PRESTA_STOCK_SYNC", "WECLAPP_SALES_ORDER_AMAZON_REPORT_SYNC", "WECLAPP_SHOPIFY_ARTICLE_SYNC", "WECLAPP_SHOPIFY_ORDER_SYNC", "WECLAPP_SHOPIFY_STOCK_SYNC", "WECLAPP_SHOPWARE6_ARTICLE_SYNC", "WECLAPP_SHOPWARE6_ORDER_SYNC", "WECLAPP_SHOPWARE6_STOCK_SYNC", "WECLAPP_SHOPWARE_ARTICLE_SYNC", "WECLAPP_SHOPWARE_CUSTOMER_SYNC", "WECLAPP_SHOPWARE_ORDER_SYNC", "WECLAPP_SHOPWARE_STOCK_SYNC", "WECLAPP_TO_AMAZON_ARTICLE_REPORT_SYNC", "WECLAPP_TO_AMAZON_REPORT_SYNC", "WECLAPP_TO_SHOPIFY_CUSTOMER_SYNC", "WECLAPP_TO_SHOPWARE6_CUSTOMER_SYNC", "WECLAPP_TO_WECLAPP_ARTICLE_PUSH", "WECLAPP_TO_WECLAPP_CUSTOM_ATTRIBUTES_PULL", "WECLAPP_TO_WECLAPP_DELETION", "WECLAPP_TO_WECLAPP_OFFER_PULL", "WECLAPP_TO_WECLAPP_OTHER_DATA_PUSH", "WECLAPP_TO_WECLAPP_PARTY_PULL", "WECLAPP_TO_WECLAPP_PARTY_PUSH", "WECLAPP_TO_WECLAPP_PURCHASE_ORDERS_AS_SALES_ORDERS_PULL", "WECLAPP_TO_WECLAPP_PURCHASE_ORDER_PUSH", "WECLAPP_TO_WECLAPP_SALES_ORDER_PULL", "WECLAPP_TO_WECLAPP_STORE_PUSH", "WECLAPP_TO_WECLAPP_SUPPLIER_STOCK_SYNC", "WECLAPP_TO_WECLAPP_TICKET_PULL", "WECLAPP_TO_WECLAPP_USER_PULL", "WECLAPP_WOOCOMMERCE_ARTICLE_SYNC", "WECLAPP_WOOCOMMERCE_ORDER_SYNC", "WECLAPP_WOOCOMMERCE_STOCK_SYNC", "WOOCOMMERCE_WECLAPP_ARTICLE_SYNC", "WOOCOMMERCE_WECLAPP_CUSTOMER_SYNC", "WOOCOMMERCE_WECLAPP_ORDER_SYNC", "XT_WECLAPP_ARTICLE_SYNC", "XT_WECLAPP_ORDER_SYNC", "accountingTransaction_delete", "articleSupplySource_delete", "article_delete", "blanketPurchaseOrder_delete", "contract_delete", "crmEvent_delete", "internalTransportReference_delete", "opportunity_delete", "party_delete", "performanceRecord_delete", "pick_delete", "productionOrder_delete", "purchaseInvoice_delete", "purchaseOrderRequest_delete", "purchaseOrder_delete", "quotation_delete", "reminder_delete", "salesInvoice_delete", "salesOrder_delete", "storagePlace_delete", "tag_delete", "task_create", "task_delete", "tax_delete", "ticket_delete", "transportationOrder_delete", "variantArticle_delete"],
285
+ "leadStatus": ["CONVERTED", "DISQUALIFIED", "NEW", "PREQUALIFIED", "QUALIFIED"],
286
+ "ledgerAccountType": ["CARRY_FORWARD_ACCOUNT", "IMPERSONAL_ACCOUNT", "PERSONAL_ACCOUNT"],
287
+ "levelOfDetail": ["ARTICLE", "SERIAL_NUMBER", "STORAGE_PLACE", "WAREHOUSE"],
288
+ "marginCalculationPriceType": ["ARTICLE_CALCULATION_PRICE", "EMPLOYEE_COST", "MOVING_AVERAGE", "PURCHASE_PRICE_PRODUCTION_COST"],
289
+ "moneyTransactionProcessingStrategy": ["BOOK", "CLEAR", "NONE", "PROCESS"],
290
+ "moneyTransactionSource": ["AMAZON", "CAMT053", "EBAY", "FINAPI", "KLARNA", "LONDON_ZURICH", "MANUALLY", "MOLLIE", "MT940_KAPOTT", "MT940_PROVIDE", "PAYMENT_RUN", "PAYPAL", "POS", "QWIST", "SHOPIFY", "STRIPE", "TINK"],
291
+ "noLoginProjectOrderPlannedWorkVisibility": ["ALL", "NO", "ONLY_EFFORT_BASED"],
292
+ "noLoginProjectOrderRealizedWorkVisibility": ["ALL", "NO", "ONLY_EFFORT_BASED_ALL_WORK", "ONLY_EFFORT_BASED_BILLABLE_WORK"],
293
+ "notificationPriority": ["CRITICAL", "NORMAL"],
294
+ "numberRangeType": ["ACCOUNTING_EXPORT_LOG", "ACCOUNTING_TRANSACTION", "ARTICLE", "BILLING_REFERENCE", "BLANKET_PURCHASE_ORDER", "BLANKET_SALES_ORDER", "CAMPAIGN", "CONTRACT", "COST_CENTER", "CREDIT_ADVICE", "CREDIT_ADVICE_CANCELLATION", "CREDIT_ADVICE_PRELIMINARY", "INCOMING_GOODS", "INTERNAL_TRANSPORT_REFERENCE", "INVENTORY", "INVENTORY_ITEM", "LEDGER_ACCOUNT_CREDITOR", "LEDGER_ACCOUNT_DEBTOR", "LEDGER_ACCOUNT_IMPERSONAL", "OPPORTUNITY", "PARTY_CUSTOMER", "PARTY_SUPPLIER", "PERFORMANCE_RECORD", "PM_PROJECT", "PRODUCTION_ORDER", "PROFORMA_INVOICE", "PURCHASE_INVOICE", "PURCHASE_OPEN_ITEM", "PURCHASE_ORDER", "PURCHASE_ORDER_REQUEST", "PURCHASE_REQUISITION", "QUOTATION", "RECURRING_INVOICE", "SALES_INVOICE", "SALES_INVOICE_CANCELLATION", "SALES_INVOICE_FINAL_STANDARD", "SALES_INVOICE_PRELIMINARY", "SALES_OPEN_ITEM", "SALES_ORDER", "SERIAL_NUMBER", "SERVICE_QUOTA", "SHIPMENT", "TICKET", "TRANSPORTATION_ORDER", "WAREHOUSE_STOCK_MOVEMENT"],
295
+ "offerOutType": ["CONTRACT", "NONE", "PROJECT", "SALES_INVOICE", "SALES_ORDER"],
296
+ "offerStatusType": ["ACCEPTED", "CANCELLED", "INQUIRED", "OPEN", "REJECTED"],
297
+ "onlineAccountType": ["AMAZON", "BLOG", "EBAY", "FACEBOOK", "GOOGLE_DRIVE", "INSTAGRAM", "LINKEDIN", "OTHER", "PINTEREST", "SKYPE", "SLIDESHARE", "TWITTER", "WIKIPEDIA", "XING", "YELP", "YOUTUBE"],
298
+ "openItemType": ["CREDITOR", "CREDITOR_INVERTED", "CREDIT_ADVICE", "CREDIT_ADVICE_INVERTED", "CREDIT_NOTE_CREDITOR", "CREDIT_NOTE_CREDITOR_INVERTED", "CREDIT_NOTE_DEBITOR", "CREDIT_NOTE_DEBITOR_INVERTED", "DEBTOR", "DEBTOR_INCOMING_PAYMENT", "DEBTOR_INCOMING_PAYMENT_INVERTED", "DEBTOR_INVERTED", "DEBTOR_OUTGOING_PAYMENT", "DEBTOR_OUTGOING_PAYMENT_INVERTED", "DEBTOR_PARTY", "DEBTOR_PARTY_INVERTED", "DEBTOR_RETURN_DEBIT", "DEBTOR_RETURN_DEBIT_FEE"],
299
+ "orderStatusType": ["CANCELLED", "CLOSED", "MANUALLY_CLOSED", "ORDER_CONFIRMATION_PRINTED", "ORDER_ENTRY_IN_PROGRESS"],
300
+ "partyHabitualExporterLetterOfIntentType": ["MULTIPLE_ACCOUNTING_EVENTS", "SINGLE_ACCOUNTING_EVENT"],
301
+ "partyType": ["ORGANIZATION", "PERSON"],
302
+ "paymentMethodTypeKey": ["BANK", "CASH"],
303
+ "paymentRunPaymentType": ["NONE", "ONLINE", "SEPA", "SWIFT"],
304
+ "paymentStatus": ["CLEARED_WITH_CREDIT_NOTE", "CREDIT_NOTE_CLEARED", "NO_OPEN_ITEM", "OPEN", "PAID", "UNKNOWN"],
305
+ "paymentType": ["DISBURSEMENT", "RECEIPT"],
306
+ "performanceRecordedStatus": ["NOT_PERFORMANCE_RECORDED", "PERFORMANCE_RECORDED", "UNDEFINED"],
307
+ "performanceRecordStatusType": ["CANCELLED", "DOCUMENT_CREATED", "OPEN", "RECORDED"],
308
+ "permissionString": ["entity-accountDetermination-delete", "entity-accountDetermination-read", "entity-accountDetermination-update", "entity-accountingTransaction-delete", "entity-accountingTransaction-import", "entity-accountingTransaction-read", "entity-accountingTransaction-update", "entity-appSettings-delete", "entity-appSettings-read", "entity-appSettings-update", "entity-archivedEmail-delete", "entity-archivedEmail-read", "entity-archivedEmail-update", "entity-article-batchNumber", "entity-article-billOfMaterial", "entity-article-cost", "entity-article-delete", "entity-article-deletePrice", "entity-article-export", "entity-article-exportPrice", "entity-article-import", "entity-article-importPrice", "entity-article-read", "entity-article-readBarcode", "entity-article-readInventoryValuation", "entity-article-readPrice", "entity-article-serialNumber", "entity-article-settings", "entity-article-update", "entity-article-updateAccountingData", "entity-article-updateActive", "entity-article-updateArticleType", "entity-article-updateConversionRate", "entity-article-updateCustomsTariffNumber", "entity-article-updateImage", "entity-article-updateInventoryValuation", "entity-article-updateMarketValue", "entity-article-updateMassPriceCalculation", "entity-article-updateNumber", "entity-article-updatePrice", "entity-article-updatePrintDatasheet", "entity-article-updatePrintLabels", "entity-article-updateShipmentInfo", "entity-articleAccountingCode-delete", "entity-articleAccountingCode-read", "entity-articleAccountingCode-update", "entity-articleCategory-delete", "entity-articleCategory-export", "entity-articleCategory-import", "entity-articleCategory-read", "entity-articleCategory-update", "entity-articleCategory-updateAccountingData", "entity-articleItemGroup-delete", "entity-articleItemGroup-read", "entity-articleItemGroup-update", "entity-articleRating-delete", "entity-articleRating-read", "entity-articleRating-update", "entity-articleStatus-delete", "entity-articleStatus-read", "entity-articleStatus-update", "entity-articleSupplySource-delete", "entity-articleSupplySource-deletePrice", "entity-articleSupplySource-export", "entity-articleSupplySource-import", "entity-articleSupplySource-read", "entity-articleSupplySource-readPrice", "entity-articleSupplySource-update", "entity-articleSupplySource-updatePrice", "entity-attendance-delete", "entity-attendance-readAll", "entity-attendance-settings", "entity-attendance-update", "entity-authenticationToken-read", "entity-authenticationToken-update", "entity-bankAccount-delete", "entity-bankAccount-read", "entity-bankAccount-update", "entity-blanketPurchaseOrder-delete", "entity-blanketPurchaseOrder-read", "entity-blanketPurchaseOrder-update", "entity-blanketSalesOrder-delete", "entity-blanketSalesOrder-read", "entity-blanketSalesOrder-update", "entity-bookingTemplate-delete", "entity-bookingTemplate-read", "entity-bookingTemplate-update", "entity-businessHolidays-delete", "entity-businessHolidays-read", "entity-businessHolidays-update", "entity-businessHours-delete", "entity-businessHours-read", "entity-businessHours-update", "entity-calendar-delete", "entity-calendar-read", "entity-calendar-update", "entity-campaign-delete", "entity-campaign-read", "entity-campaign-readAll", "entity-campaign-update", "entity-cashAccount-delete", "entity-cashAccount-read", "entity-cashAccount-update", "entity-cashAccountSheet-delete", "entity-cashAccountSheet-read", "entity-cashAccountSheet-update", "entity-cashAccountSheet-updateClose", "entity-commercialLanguage-delete", "entity-commercialLanguage-read", "entity-commercialLanguage-update", "entity-companySize-delete", "entity-companySize-read", "entity-companySize-update", "entity-contract-billing", "entity-contract-createDocuments", "entity-contract-delete", "entity-contract-import", "entity-contract-read", "entity-contract-readAll", "entity-contract-settings", "entity-contract-update", "entity-contractAuthorizationUnit-delete", "entity-contractAuthorizationUnit-read", "entity-contractAuthorizationUnit-update", "entity-contractBillingGroup-delete", "entity-contractBillingGroup-read", "entity-contractBillingGroup-update", "entity-contractTerminationReason-delete", "entity-contractTerminationReason-read", "entity-contractTerminationReason-update", "entity-contractType-delete", "entity-contractType-read", "entity-contractType-update", "entity-costCenter-delete", "entity-costCenter-export", "entity-costCenter-import", "entity-costCenter-read", "entity-costCenter-update", "entity-costCenterGroup-delete", "entity-costCenterGroup-read", "entity-costCenterGroup-update", "entity-costType-delete", "entity-costType-read", "entity-costType-update", "entity-currency-delete", "entity-currency-read", "entity-currency-update", "entity-customAttributeDefinition-delete", "entity-customAttributeDefinition-update", "entity-customFont-delete", "entity-customFont-read", "entity-customFont-update", "entity-customLabelFormat-delete", "entity-customLabelFormat-read", "entity-customLabelFormat-update", "entity-customerCategory-delete", "entity-customerCategory-read", "entity-customerCategory-update", "entity-customerLeadLossReason-delete", "entity-customerLeadLossReason-read", "entity-customerLeadLossReason-update", "entity-customerTopic-delete", "entity-customerTopic-read", "entity-customerTopic-update", "entity-customsTariffNumber-delete", "entity-customsTariffNumber-read", "entity-customsTariffNumber-update", "entity-defaultInterestConfig-delete", "entity-defaultInterestConfig-read", "entity-defaultInterestConfig-update", "entity-documentFolder-delete", "entity-documentFolder-read", "entity-documentFolder-update", "entity-documentFolder-updatePublicPageUuid", "entity-dunningLevel-delete", "entity-dunningLevel-read", "entity-dunningLevel-update", "entity-dunningRun-delete", "entity-dunningRun-read", "entity-dunningRun-settings", "entity-dunningRun-update", "entity-ericTransferLog-read", "entity-ericTransferLog-update", "entity-externalConnection-delete", "entity-externalConnection-read", "entity-externalConnection-update", "entity-financialYear-delete", "entity-financialYear-read", "entity-financialYear-update", "entity-financialYear-updatePostingPeriod", "entity-formVariant-delete", "entity-formVariant-read", "entity-formVariant-update", "entity-fulfillmentProvider-delete", "entity-fulfillmentProvider-read", "entity-fulfillmentProvider-update", "entity-groupwareContact-delete", "entity-groupwareContact-read", "entity-groupwareContact-update", "entity-helpdeskCustomerPortal-read", "entity-helpdeskCustomerPortal-update", "entity-incomingGoods-createWithoutPurchaseOrder", "entity-incomingGoods-delete", "entity-incomingGoods-read", "entity-incomingGoods-settings", "entity-incomingGoods-update", "entity-internalTransportReference-createPermanentTransportReference", "entity-internalTransportReference-delete", "entity-internalTransportReference-read", "entity-internalTransportReference-update", "entity-inventory-createDocuments", "entity-inventory-import", "entity-inventory-read", "entity-inventory-update", "entity-labelVariant-delete", "entity-labelVariant-read", "entity-labelVariant-update", "entity-leadRating-delete", "entity-leadRating-read", "entity-leadRating-update", "entity-leadSource-delete", "entity-leadSource-read", "entity-leadSource-update", "entity-ledgerAccount-delete", "entity-ledgerAccount-read", "entity-ledgerAccount-update", "entity-legalForm-delete", "entity-legalForm-read", "entity-legalForm-update", "entity-loadingEquipmentIdentifier-delete", "entity-loadingEquipmentIdentifier-read", "entity-loadingEquipmentIdentifier-update", "entity-mailAccount-delete", "entity-mailAccount-read", "entity-mailAccount-update", "entity-mailMessage-delete", "entity-mailMessage-read", "entity-mailMessage-update", "entity-mailTemplate-delete", "entity-mailTemplate-read", "entity-mailTemplate-update", "entity-manufacturer-delete", "entity-manufacturer-read", "entity-manufacturer-update", "entity-moneyTransaction-delete", "entity-moneyTransaction-read", "entity-moneyTransaction-update", "entity-numberRange-delete", "entity-numberRange-read", "entity-numberRange-update", "entity-opportunity-delete", "entity-opportunity-import", "entity-opportunity-read", "entity-opportunity-settings", "entity-opportunity-update", "entity-opportunity-updateSalesStageToWonOrLost", "entity-opportunityTopic-delete", "entity-opportunityTopic-read", "entity-opportunityTopic-update", "entity-opportunityWinLossReason-delete", "entity-opportunityWinLossReason-read", "entity-opportunityWinLossReason-update", "entity-party-delete", "entity-party-export", "entity-party-featureCompetitor", "entity-party-featureSupplier", "entity-party-financialData", "entity-party-import", "entity-party-read", "entity-party-readAll", "entity-party-settings", "entity-party-settingsHideContacts", "entity-party-syncAddressesToOpenRecords", "entity-party-update", "entity-party-updateAccountingData", "entity-party-updateCustomerBlocked", "entity-party-updateCustomerCreditLimit", "entity-party-updateCustomerDeliveryBlock", "entity-party-updateCustomerDunningBlock", "entity-party-updateCustomerInsured", "entity-party-updateCustomerNonStandardTax", "entity-party-updateCustomerOrSupplierNumber", "entity-party-updateInvoiceBlock", "entity-party-updatePublicPageUuid", "entity-party-widgetCleverReach", "entity-partyOpenItemReference-delete", "entity-partyOpenItemReference-read", "entity-partyOpenItemReference-update", "entity-partyRating-delete", "entity-partyRating-read", "entity-partyRating-update", "entity-paymentApplication-read", "entity-paymentMethod-delete", "entity-paymentMethod-read", "entity-paymentMethod-update", "entity-paymentProviderCredential-delete", "entity-paymentProviderCredential-read", "entity-paymentProviderCredential-update", "entity-paymentRun-createPaymentAdvice", "entity-paymentRun-delete", "entity-paymentRun-read", "entity-paymentRun-settings", "entity-paymentRun-update", "entity-performanceRecord-delete", "entity-performanceRecord-read", "entity-performanceRecord-settings", "entity-performanceRecord-update", "entity-personDepartment-delete", "entity-personDepartment-read", "entity-personDepartment-update", "entity-personRole-delete", "entity-personRole-read", "entity-personRole-update", "entity-personalAccountingCode-delete", "entity-personalAccountingCode-read", "entity-personalAccountingCode-update", "entity-pick-read", "entity-pick-update", "entity-pickCheckReason-delete", "entity-pickCheckReason-read", "entity-pickCheckReason-update", "entity-placeOfService-delete", "entity-placeOfService-read", "entity-placeOfService-update", "entity-priceCalculationParameter-delete", "entity-priceCalculationParameter-read", "entity-priceCalculationParameter-update", "entity-productionOrder-createDocuments", "entity-productionOrder-delete", "entity-productionOrder-import", "entity-productionOrder-read", "entity-productionOrder-settings", "entity-productionOrder-update", "entity-productionWorkSchedule-delete", "entity-productionWorkSchedule-import", "entity-productionWorkSchedule-read", "entity-productionWorkSchedule-update", "entity-productionWorkScheduleAssignment-delete", "entity-productionWorkScheduleAssignment-import", "entity-productionWorkScheduleAssignment-read", "entity-productionWorkScheduleAssignment-update", "entity-project-delete", "entity-project-read", "entity-project-readAll", "entity-project-update", "entity-project-updatePublicPageUuid", "entity-purchaseInvoice-cancel", "entity-purchaseInvoice-delete", "entity-purchaseInvoice-deleteDocuments", "entity-purchaseInvoice-import", "entity-purchaseInvoice-read", "entity-purchaseInvoice-settings", "entity-purchaseInvoice-update", "entity-purchaseOpenItem-create", "entity-purchaseOpenItem-createDocuments", "entity-purchaseOpenItem-delete", "entity-purchaseOpenItem-export", "entity-purchaseOpenItem-read", "entity-purchaseOpenItem-update", "entity-purchaseOrder-createDocuments", "entity-purchaseOrder-delete", "entity-purchaseOrder-read", "entity-purchaseOrder-settings", "entity-purchaseOrder-update", "entity-purchaseOrder-updatePurchaseOrderTypeTriangular", "entity-purchaseOrderRequest-createDocuments", "entity-purchaseOrderRequest-delete", "entity-purchaseOrderRequest-read", "entity-purchaseOrderRequest-settings", "entity-purchaseOrderRequest-update", "entity-purchaseOrderRequest-updatePublicPageUuid", "entity-purchaseRequisition-delete", "entity-purchaseRequisition-read", "entity-purchaseRequisition-settings", "entity-purchaseRequisition-update", "entity-quotation-createDocuments", "entity-quotation-delete", "entity-quotation-import", "entity-quotation-read", "entity-quotation-settings", "entity-quotation-update", "entity-quotation-updatePublicPageUuid", "entity-reasonOfAbsence-delete", "entity-reasonOfAbsence-read", "entity-reasonOfAbsence-update", "entity-recordEmailingRule-delete", "entity-recordEmailingRule-read", "entity-recordEmailingRule-update", "entity-recurringInvoice-delete", "entity-recurringInvoice-deleteDocuments", "entity-recurringInvoice-read", "entity-recurringInvoice-settings", "entity-recurringInvoice-update", "entity-region-delete", "entity-region-read", "entity-region-update", "entity-remotePrintConfiguration-delete", "entity-remotePrintConfiguration-read", "entity-remotePrintConfiguration-update", "entity-remotePrintJob-delete", "entity-remotePrintJob-read", "entity-remotePrintJob-readAll", "entity-remotePrintJob-update", "entity-salesInvoice-cancel", "entity-salesInvoice-createDocuments", "entity-salesInvoice-delete", "entity-salesInvoice-deleteDocuments", "entity-salesInvoice-export", "entity-salesInvoice-import", "entity-salesInvoice-read", "entity-salesInvoice-recreateDocuments", "entity-salesInvoice-settings", "entity-salesInvoice-update", "entity-salesOpenItem-create", "entity-salesOpenItem-createDocuments", "entity-salesOpenItem-delete", "entity-salesOpenItem-export", "entity-salesOpenItem-read", "entity-salesOpenItem-update", "entity-salesOrder-createOrderConfirmation", "entity-salesOrder-delete", "entity-salesOrder-import", "entity-salesOrder-manageAllProjectOrderTasks", "entity-salesOrder-read", "entity-salesOrder-readShippedQuantity", "entity-salesOrder-settings", "entity-salesOrder-update", "entity-salesOrder-updatePaymentTypeAdvancePayment", "entity-salesOrder-updatePaymentTypeCounterSales", "entity-salesOrder-updatePaymentTypePartPayment", "entity-salesOrder-updatePaymentTypePrepayment", "entity-salesOrder-updatePaymentTypeStandard", "entity-salesStage-delete", "entity-salesStage-read", "entity-salesStage-update", "entity-salesTeam-delete", "entity-salesTeam-read", "entity-salesTeam-update", "entity-sector-delete", "entity-sector-read", "entity-sector-update", "entity-sepaDirectDebitMandate-delete", "entity-sepaDirectDebitMandate-export", "entity-sepaDirectDebitMandate-import", "entity-sepaDirectDebitMandate-read", "entity-sepaDirectDebitMandate-settings", "entity-sepaDirectDebitMandate-update", "entity-serviceQuota-delete", "entity-serviceQuota-read", "entity-serviceQuota-update", "entity-shipment-createLabel", "entity-shipment-createWithoutSalesOrder", "entity-shipment-delete", "entity-shipment-export", "entity-shipment-read", "entity-shipment-settings", "entity-shipment-update", "entity-shipmentMethod-delete", "entity-shipmentMethod-read", "entity-shipmentMethod-update", "entity-shippingCarrier-delete", "entity-shippingCarrier-read", "entity-shippingCarrier-update", "entity-shoutboxTemplate-delete", "entity-shoutboxTemplate-read", "entity-shoutboxTemplate-update", "entity-stagedMoneyTransaction-delete", "entity-stagedMoneyTransaction-read", "entity-stagedMoneyTransaction-update", "entity-storagePlaceBlockingReason-delete", "entity-storagePlaceBlockingReason-read", "entity-storagePlaceBlockingReason-update", "entity-storagePlaceSize-delete", "entity-storagePlaceSize-read", "entity-storagePlaceSize-update", "entity-tag-create", "entity-tag-delete", "entity-tag-read", "entity-tag-update", "entity-task-delete", "entity-task-deletePrivateAsWatcher", "entity-task-read", "entity-task-update", "entity-task-updatePrivateAsWatcher", "entity-taskTemplate-delete", "entity-taskTemplate-read", "entity-taskTemplate-update", "entity-taskTopic-delete", "entity-taskTopic-read", "entity-taskTopic-update", "entity-taskType-delete", "entity-taskType-read", "entity-taskType-update", "entity-tax-delete", "entity-tax-read", "entity-tax-update", "entity-taxDeterminationRule-delete", "entity-taxDeterminationRule-read", "entity-taxDeterminationRule-update", "entity-termOfPayment-delete", "entity-termOfPayment-read", "entity-termOfPayment-update", "entity-textModule-delete", "entity-textModule-read", "entity-textModule-update", "entity-ticket-delete", "entity-ticket-read", "entity-ticket-readAll", "entity-ticket-settings", "entity-ticket-update", "entity-ticket-updateAdvanced", "entity-ticket-updateDeleteTicketRating", "entity-ticket-updatePrint", "entity-ticket-updatePublicPageUuid", "entity-ticketAssignmentRule-delete", "entity-ticketAssignmentRule-read", "entity-ticketAssignmentRule-update", "entity-ticketCategory-import", "entity-ticketCategory-read", "entity-ticketCategory-update", "entity-ticketChannel-delete", "entity-ticketChannel-read", "entity-ticketChannel-update", "entity-ticketFaq-delete", "entity-ticketFaq-read", "entity-ticketFaq-update", "entity-ticketMailTemplate-delete", "entity-ticketMailTemplate-read", "entity-ticketMailTemplate-update", "entity-ticketPoolingGroup-delete", "entity-ticketPoolingGroup-read", "entity-ticketPoolingGroup-update", "entity-ticketPriority-delete", "entity-ticketPriority-read", "entity-ticketPriority-update", "entity-ticketServiceLevelAgreement-delete", "entity-ticketServiceLevelAgreement-read", "entity-ticketServiceLevelAgreement-update", "entity-ticketStatus-delete", "entity-ticketStatus-read", "entity-ticketStatus-update", "entity-ticketType-delete", "entity-ticketType-read", "entity-ticketType-update", "entity-timeRecord-create", "entity-timeRecord-delete", "entity-timeRecord-move", "entity-timeRecord-read", "entity-timeRecord-readAllProject", "entity-timeRecord-resourceCalendar", "entity-timeRecord-settings", "entity-timeRecord-update", "entity-timeRecord-updateHourlyRateProject", "entity-timeRecord-updateHourlyRateTicket", "entity-timeRecord-updateUser", "entity-translation-delete", "entity-translation-export", "entity-translation-import", "entity-translation-read", "entity-translation-update", "entity-transportationOrder-createPickingOrder", "entity-transportationOrder-delete", "entity-transportationOrder-read", "entity-transportationOrder-update", "entity-unit-delete", "entity-unit-read", "entity-unit-update", "entity-user-delete", "entity-user-export", "entity-user-import", "entity-user-update", "entity-userRole-delete", "entity-userRole-read", "entity-userRole-update", "entity-userRole-updatePermissions", "entity-variantArticle-delete", "entity-variantArticle-read", "entity-variantArticle-update", "entity-vibrantReport-delete", "entity-vibrantReport-read", "entity-vibrantReport-update", "entity-warehouse-delete", "entity-warehouse-read", "entity-warehouse-update", "entity-warehouseStock-read", "entity-warehouseStockMovement-read", "entity-warehouseStockMovement-update", "entity-web2LeadConfig-delete", "entity-web2LeadConfig-read", "entity-web2LeadConfig-update", "entity-web2TicketConfig-delete", "entity-web2TicketConfig-read", "entity-web2TicketConfig-update", "entity-webhook-delete", "entity-webhook-read", "entity-webhook-update", "entity-weclappOs-delete", "entity-weclappOs-read", "entity-weclappOs-update", "feature-accountingExport-execute", "feature-activityLog-read", "feature-amazon-betaDelivery", "feature-commission-read", "feature-commission-settings", "feature-commission-update", "feature-contractReports-read", "feature-customReport-execute", "feature-customReport-update", "feature-dataTransfer-exportFullZip", "feature-ecommerce-amazonExport", "feature-ecommerce-amazonImport", "feature-ecommerce-eBayListings", "feature-ecommerce-ecommerceCenter", "feature-helpdeskReports-read", "feature-masterDataReports-read", "feature-reductionAddition-update", "feature-reports-read", "feature-revenueReports-read", "feature-salesCost-read", "feature-salesCost-update", "feature-tableExport-execute", "feature-transactionDataReports-read", "feature-warehouseReports-read", "feature-weclapp-admin", "feature-weclapp-massActions", "feature-weclappToWeclapp-betaUser", "feature-xtCommerce-betaUser", "settings-accounting-initialize", "settings-accounting-reset", "settings-accounting-update", "settings-fieldsetConfiguration-update", "settings-form-update", "settings-generalRecord-update", "settings-mail2Ticket-update", "settings-menuItemConfiguration-update", "settings-organizer-update", "settings-purchase-update", "settings-sales-update", "settings-salesChannel-update", "settings-view-update", "settings-warehouse-update", "settings-warehouse-updateLocationTypeSettings"],
309
+ "priceConditionType": ["ADDITIONAL_ABS", "ADDITION_PERCENT", "REDUCTION_ABS", "REDUCTION_PERCENT"],
310
+ "priceScaleType": ["SCALE_FROM", "SCALE_TO"],
311
+ "productionArticleConfigurationRule": ["ALL_COMPONENTS", "AT_LEAST_ONE_COMPONENT", "AT_LEAST_ONE_COMPONENT_WITH_VARIABLE_QUANTITY", "ONE_COMPONENT", "ONE_COMPONENT_WITH_VARIABLE_QUANTITY"],
312
+ "productionCostCenterType": ["DIRECT_COST_CENTER", "INDIRECT_COST_CENTER", "SERVICE_COST_CENTER"],
313
+ "productionOrderItemStatus": ["BOOKED", "CLOSED", "OPEN"],
314
+ "productionOrderStatusType": ["CANCELLED", "CLOSED", "DOCUMENTS_PRINTED", "ENTRY_IN_PROGRESS", "INTERRUPTED", "NEW", "STARTED"],
315
+ "productionWorkScheduleItemTimeType": ["SINGLE_TIME", "TIME_PER_UNIT"],
316
+ "productionWorkScheduleStatus": ["APPROVED", "ENTRY_IN_PROGRESS", "INVALID"],
317
+ "purchaseInvoiceStatusType": ["CANCELLED", "DOCUMENT_CREATED", "ENTRY_COMPLETED", "INVOICE_CHECKED", "INVOICE_RECEIVED", "INVOICE_VERIFICATION", "NEW", "OCR_VERIFICATION", "OPEN_ITEM_CREATED"],
318
+ "purchaseInvoiceType": ["ADVANCE_PAYMENT_INVOICE", "CREDIT_ADVICE", "CREDIT_NOTE", "FINAL_INVOICE", "PART_PAYMENT_INVOICE", "PREPAYMENT_INVOICE", "STANDARD_INVOICE"],
319
+ "purchaseOrderRequestPurchasePriceUpdateMode": ["NO_UPDATE", "UPDATE_GENERAL_PURCHASE_PRICE", "UPDATE_PURCHASE_PRICE_ONLY_FOR_CUSTOMER"],
320
+ "purchaseOrderRequestStatusType": ["CANCELLED", "CLOSED", "DOCUMENT_PRINTED", "NEW", "OFFER_RECEIVED"],
321
+ "purchaseOrderRequestSupplierStatusType": ["ACCEPTED", "DECLINED", "OFFER_RECEIVED", "OPEN", "REQUESTED", "REVISED", "REVISED_REQUEST"],
322
+ "purchaseOrderRequestType": ["BLANKET_ORDER_REQUEST", "BLANKET_PURCHASE_ORDER_REQUEST", "DROP_SHIPPING_REQUEST", "PURCHASE_ORDER_REQUEST", "SALES_ORDER_COMMISSION_REQUEST"],
323
+ "purchaseRequisitionStatusType": ["APPROVED", "CANCELLED", "CLOSED", "NEW"],
324
+ "recordEmailingRuleEventType": ["CREDIT_ADVICE_CANCELLATION_DOCUMENT_CREATED", "CREDIT_ADVICE_CANCELLED", "CREDIT_ADVICE_CREATED", "CREDIT_ADVICE_DOCUMENT_CREATED", "CREDIT_ADVICE_ENTRY_COMPLETED", "CREDIT_ADVICE_OPEN_ITEM_CREATED", "CREDIT_ADVICE_OPEN_ITEM_PAID", "PERFORMANCE_RECORD_CANCELLED", "PERFORMANCE_RECORD_DOCUMENT_CREATED", "PERFORMANCE_RECORD_RECORDED", "PURCHASE_ORDER_CANCELLED", "PURCHASE_ORDER_CLOSED", "PURCHASE_ORDER_CONFIRMED", "PURCHASE_ORDER_DOCUMENTS_PRINTED", "PURCHASE_ORDER_DROPSHIPPING_DELIVERY_NOTE_PRINTED", "PURCHASE_ORDER_REQUEST_DECLINED", "PURCHASE_ORDER_REQUEST_REQUESTED", "QUOTATION_ACCEPTED", "QUOTATION_DOCUMENT_CREATED", "QUOTATION_INQUIRED", "QUOTATION_REJECTED", "RETURN_CREDIT_NOTE_CREATED", "RETURN_LABEL_PRINTED", "RETURN_MOVED_INTO_STORE", "SALES_INVOICE_CANCELLATION_DOCUMENT_CREATED", "SALES_INVOICE_CANCELLED", "SALES_INVOICE_CREATED", "SALES_INVOICE_DOCUMENT_CREATED", "SALES_INVOICE_ENTRY_COMPLETED", "SALES_INVOICE_OPEN_ITEM_CREATED", "SALES_INVOICE_OPEN_ITEM_PAID", "SALES_ORDER_CANCELLED", "SALES_ORDER_CLOSED", "SALES_ORDER_CONFIRMATION_PRINTED", "SALES_ORDER_INVOICED", "SALES_ORDER_MANUALLY_CLOSED", "SALES_ORDER_PARTIALLY_SHIPPED", "SALES_ORDER_SHIPMENT_RECORD_CREATED", "SALES_ORDER_SHIPMENT_RECORD_PARTIALLY_CREATED", "SALES_ORDER_SHIPPED", "SHIPMENT_CANCELLED", "SHIPMENT_CONFIRMATION_OF_ARRIVAL_CREATED", "SHIPMENT_DELIVERY_NOTE_PRINTED", "SHIPMENT_DROPSHIPPING_DELIVERY_NOTE_PRINTED", "SHIPMENT_DROPSHIPPING_SHIPPED", "SHIPMENT_RETURN_LABEL_PRINTED", "SHIPMENT_SHIPPED", "SUPPLIER_RETURN_DELIVERY_NOTE_PRINTED", "SUPPLIER_RETURN_RETURN_LABEL_PRINTED", "SUPPLIER_RETURN_SHIPPED"],
325
+ "recordEmailingRuleRecipientType": ["OTHER_RECIPIENT", "RECORD_RECIPIENT"],
326
+ "recordItemReductionAdditionSource": ["ARTICLE", "ARTICLE_AND_CUSTOMER", "ARTICLE_CATEGORY", "ARTICLE_CATEGORY_AND_CUSTOMER", "MANUAL"],
327
+ "recordItemReductionAdditionType": ["ADDITION_ABSOLUTE", "ADDITION_PERCENT", "REDUCTION_ABSOLUTE", "REDUCTION_PERCENT"],
328
+ "recurringEventType": ["DAILY", "MONTHLY", "WEEKLY", "YEARLY"],
329
+ "reminderSendType": ["MAIL", "NOTIFICATION"],
330
+ "remotePrintJobStatus": ["DOCUMENT_NOT_FOUND", "ERROR", "NEW", "PRINTED", "SUBMITTED", "UNKNOWN_PRINTER"],
331
+ "salesInvoiceOrigin": ["ADVANCE_PAYMENT_INVOICE", "CONTRACT", "FINAL_INVOICE", "PART_PAYMENT_INVOICE", "PREPAYMENT_INVOICE", "RECURRING_INVOICE", "RETAIL_INVOICE", "SALES_ORDER", "STANDARD_INVOICE"],
332
+ "salesInvoiceStatusType": ["CANCELLED", "DOCUMENT_CREATED", "ENTRY_COMPLETED", "NEW", "OPEN_ITEM_CREATED"],
333
+ "salesInvoiceType": ["ADVANCE_PAYMENT_INVOICE", "CREDIT_NOTE", "FINAL_INVOICE", "PART_PAYMENT_INVOICE", "PREPAYMENT_INVOICE", "RETAIL_INVOICE", "STANDARD_INVOICE"],
334
+ "salesOrderOrigin": ["BLANKET_SALES_ORDER", "CONTRACT", "NO_ORIGIN", "QUOTATION"],
335
+ "salesOrderPaymentType": ["ADVANCE_PAYMENT", "COUNTER_SALES", "PART_PAYMENT", "PREPAYMENT", "STANDARD"],
336
+ "salutation": ["COMPANY", "FAMILY", "MR", "MRS", "NO_SALUTATION"],
337
+ "sepaDirectDebitRuntime": ["ONE_OFF_MANDATE", "RECURRING_MANDATE"],
338
+ "sepaDirectDebitType": ["B2B", "CORE"],
339
+ "serviceQuotaTreatmentType": ["ASSIGN_AUTOMATICALLY", "CANCEL_ON_CHANGE", "REMOVE_ON_DEMAND"],
340
+ "shipmentInType": ["CUSTOMER_RETURN", "INTERNAL", "STANDARD", "SUPPLIER_COMPENSATION"],
341
+ "shipmentOutType": ["CONSIGNMENT", "CONSIGNMENT_RETURN", "CUSTOMER_COMPENSATION", "INTERNAL", "STANDARD", "SUPPLIER_RETURN"],
342
+ "shipmentStatusType": ["CANCELLED", "DELIVERED", "DELIVERY_NOTE_PRINTED", "INCOMING_CANCELLED", "INCOMING_MOVED_INTO_STORE", "INCOMING_SHIPPED", "IN_ROUTE", "NEW", "SHIPPED"],
343
+ "shippingServiceProviderType": ["DHL", "SENDCLOUD", "SHIPCLOUD", "STANDARD"],
344
+ "specialCalculationMode": ["ROUND_SUMS_TO_0_05"],
345
+ "stockMovementType": ["IN", "IN_CUSTOMER_RETURN", "IN_DISABLE_TRANSPORT_REFERENCE", "IN_INVENTORY", "IN_PACKAGING_UNIT_TRANSFORMATION", "IN_PRODUCTION_ORDER", "IN_PURCHASE_ORDER", "IN_REPACK_ON_TRANSPORT_REFERENCE", "IN_SHIPMENT", "IN_SHIPMENT_CANCELLATION", "IN_SHIPMENT_CONSIGNMENT", "IN_SHIPMENT_INTERNAL", "IN_THIRD_PARTY_DEAL", "IN_TRANSFER", "OUT", "OUT_DISABLE_TRANSPORT_REFERENCE", "OUT_INVENTORY", "OUT_PACKAGING_UNIT_TRANSFORMATION", "OUT_PRODUCTION_ORDER", "OUT_REPACK_ON_TRANSPORT_REFERENCE", "OUT_SALES_ORDER", "OUT_SHIPMENT", "OUT_SHIPMENT_CANCELLATION", "OUT_SHIPMENT_CONSIGNMENT", "OUT_SHIPMENT_INTERNAL", "OUT_THIRD_PARTY_DEAL", "OUT_TRANSFER"],
346
+ "storagePlaceType": ["ASSEMBLY", "BLOCKED", "BUFFER", "CONSOLIDATION", "INBOUND", "PICKING", "STOCK", "UNIVERSAL", "UNIVERSAL_WITHOUT_PICKING"],
347
+ "storeType": ["CONSIGNMENT", "DROP_SHIPPING", "STANDARD"],
348
+ "supplierOrderStatusType": ["CANCELLED", "CLOSED", "CONFIRMED", "ORDER_DOCUMENTS_PRINTED", "ORDER_ENTRY_COMPLETED", "ORDER_ENTRY_IN_PROGRESS"],
349
+ "supplierOrderType": ["DROPSHIPPING", "NORMAL", "SALES_ORDER", "SALES_ORDER_COMMISSION", "TRIANGULAR"],
350
+ "taskPriority": ["HIGH", "LOW", "MEDIUM"],
351
+ "taskProgressStatus": ["COMPLETED", "DEFERRED", "IN_PROGRESS", "NOT_STARTED", "WAITING_ON_OTHERS"],
352
+ "taskVisibilityType": ["ORGANIZATION", "PRIVATE"],
353
+ "taxKey": ["AD_ADD_STANDARD", "AD_ADD_TAX_FREE_THIRD", "AD_ADD_ZERO", "AD_IN_STANDARD", "AD_IN_TAX_FREE_THIRD", "AD_IN_ZERO", "AL_ADD_REDUCED", "AL_ADD_STANDARD", "AL_ADD_TAX_FREE_THIRD", "AL_ADD_ZERO", "AL_IN_REDUCED", "AL_IN_STANDARD", "AL_IN_TAX_FREE_THIRD", "AL_IN_ZERO", "AR_ADD_REDUCED", "AR_ADD_STANDARD", "AR_ADD_TAX_FREE_THIRD", "AR_ADD_ZERO", "AR_IN_REDUCED", "AR_IN_STANDARD", "AR_IN_TAX_FREE_THIRD", "AR_IN_ZERO", "AT_ADD_REDUCED", "AT_ADD_REDUCED_SLIGHT", "AT_ADD_STANDARD", "AT_ADD_TAX_FREE_EU", "AT_ADD_TAX_FREE_EU_SERVICES", "AT_ADD_TAX_FREE_THIRD", "AT_ADD_ZERO", "AT_IN_REDUCED", "AT_IN_REDUCED_SLIGHT", "AT_IN_REV_REDUCED_EU", "AT_IN_REV_REDUCED_EU_SERVICE", "AT_IN_REV_REDUCED_SLIGHT_EU", "AT_IN_REV_REDUCED_SLIGHT_EU_SERVICE", "AT_IN_REV_STANDARD_EU", "AT_IN_REV_STANDARD_EU_SERVICE", "AT_IN_STANDARD", "AT_IN_TAX_FREE_THIRD", "AT_IN_ZERO", "AU_ADD_STANDARD", "AU_ADD_TAX_FREE_THIRD", "AU_ADD_ZERO", "AU_IN_STANDARD", "AU_IN_TAX_FREE_THIRD", "AU_IN_ZERO", "BA_ADD_STANDARD", "BA_ADD_TAX_FREE_THIRD", "BA_ADD_ZERO", "BA_IN_STANDARD", "BA_IN_TAX_FREE_THIRD", "BA_IN_ZERO", "BE_ADD_REDUCED", "BE_ADD_REDUCED_SLIGHT", "BE_ADD_STANDARD", "BE_ADD_TAX_FREE_EU", "BE_ADD_TAX_FREE_EU_SERVICES", "BE_ADD_TAX_FREE_THIRD", "BE_ADD_ZERO", "BE_IN_REDUCED", "BE_IN_REDUCED_SLIGHT", "BE_IN_REV_REDUCED_EU", "BE_IN_REV_REDUCED_EU_SERVICE", "BE_IN_REV_REDUCED_SLIGHT_EU", "BE_IN_REV_REDUCED_SLIGHT_EU_SERVICE", "BE_IN_REV_STANDARD_EU", "BE_IN_REV_STANDARD_EU_SERVICE", "BE_IN_STANDARD", "BE_IN_TAX_FREE_THIRD", "BE_IN_ZERO", "BG_ADD_REDUCED", "BG_ADD_STANDARD", "BG_ADD_TAX_FREE_EU", "BG_ADD_TAX_FREE_EU_SERVICES", "BG_ADD_TAX_FREE_THIRD", "BG_ADD_ZERO", "BG_IN_REDUCED", "BG_IN_REV_REDUCED_EU", "BG_IN_REV_REDUCED_EU_SERVICE", "BG_IN_REV_STANDARD_EU", "BG_IN_REV_STANDARD_EU_SERVICE", "BG_IN_STANDARD", "BG_IN_TAX_FREE_THIRD", "BG_IN_ZERO", "BO_ADD_REDUCED", "BO_ADD_STANDARD", "BO_ADD_TAX_FREE_THIRD", "BO_ADD_ZERO", "BO_IN_REDUCED", "BO_IN_STANDARD", "BO_IN_TAX_FREE_THIRD", "BO_IN_ZERO", "BR_ADD_STANDARD", "BR_ADD_TAX_FREE_THIRD", "BR_ADD_ZERO", "BR_IN_STANDARD", "BR_IN_TAX_FREE_THIRD", "BR_IN_ZERO", "CA_ADD_STANDARD", "CA_ADD_TAX_FREE_THIRD", "CA_ADD_ZERO", "CA_IN_STANDARD", "CA_IN_TAX_FREE_THIRD", "CA_IN_ZERO", "CH_ADD_REDUCED", "CH_ADD_REDUCED_2024", "CH_ADD_REDUCED_SLIGHT", "CH_ADD_REDUCED_SLIGHT_2024", "CH_ADD_STANDARD", "CH_ADD_STANDARD_2024", "CH_ADD_TAX_FREE_THIRD", "CH_ADD_ZERO", "CH_IN_REDUCED", "CH_IN_REDUCED_2024", "CH_IN_REDUCED_SLIGHT", "CH_IN_REDUCED_SLIGHT_2024", "CH_IN_STANDARD", "CH_IN_STANDARD_2024", "CH_IN_TAX_FREE_THIRD", "CH_IN_ZERO", "CL_ADD_STANDARD", "CL_ADD_TAX_FREE_THIRD", "CL_ADD_ZERO", "CL_IN_STANDARD", "CL_IN_TAX_FREE_THIRD", "CL_IN_ZERO", "CN_ADD_REDUCED", "CN_ADD_REDUCED_SLIGHT", "CN_ADD_REDUCED_SUPER", "CN_ADD_STANDARD", "CN_ADD_TAX_FREE_THIRD", "CN_ADD_ZERO", "CN_IN_REDUCED", "CN_IN_REDUCED_SLIGHT", "CN_IN_REDUCED_SUPER", "CN_IN_STANDARD", "CN_IN_TAX_FREE_THIRD", "CN_IN_ZERO", "CY_ADD_REDUCED", "CY_ADD_REDUCED_SLIGHT", "CY_ADD_STANDARD", "CY_ADD_TAX_FREE_EU", "CY_ADD_TAX_FREE_EU_SERVICES", "CY_ADD_TAX_FREE_THIRD", "CY_ADD_ZERO", "CY_IN_REDUCED", "CY_IN_REDUCED_SLIGHT", "CY_IN_REV_REDUCED_EU", "CY_IN_REV_REDUCED_EU_SERVICE", "CY_IN_REV_REDUCED_SLIGHT_EU", "CY_IN_REV_REDUCED_SLIGHT_EU_SERVICE", "CY_IN_REV_STANDARD_EU", "CY_IN_REV_STANDARD_EU_SERVICE", "CY_IN_STANDARD", "CY_IN_TAX_FREE_THIRD", "CY_IN_ZERO", "CZ_ADD_REDUCED", "CZ_ADD_REDUCED_2024", "CZ_ADD_REDUCED_SLIGHT", "CZ_ADD_STANDARD", "CZ_ADD_TAX_FREE_EU", "CZ_ADD_TAX_FREE_EU_SERVICES", "CZ_ADD_TAX_FREE_THIRD", "CZ_ADD_ZERO", "CZ_IN_REDUCED", "CZ_IN_REDUCED_2024", "CZ_IN_REDUCED_SLIGHT", "CZ_IN_REV_REDUCED_EU", "CZ_IN_REV_REDUCED_EU_2024", "CZ_IN_REV_REDUCED_EU_SERVICE", "CZ_IN_REV_REDUCED_EU_SERVICE_2024", "CZ_IN_REV_REDUCED_SLIGHT_EU", "CZ_IN_REV_REDUCED_SLIGHT_EU_SERVICE", "CZ_IN_REV_STANDARD_EU", "CZ_IN_REV_STANDARD_EU_SERVICE", "CZ_IN_STANDARD", "CZ_IN_TAX_FREE_THIRD", "CZ_IN_ZERO", "DE_ADD_REDUCED", "DE_ADD_REDUCED_2020", "DE_ADD_STANDARD", "DE_ADD_STANDARD_2020", "DE_ADD_TAX_FREE_EU", "DE_ADD_TAX_FREE_EU_SERVICES", "DE_ADD_TAX_FREE_THIRD", "DE_ADD_ZERO", "DE_IN_IMPORT", "DE_IN_REDUCED", "DE_IN_REDUCED_2020", "DE_IN_REV_REDUCED_EU", "DE_IN_REV_REDUCED_EU_2020", "DE_IN_REV_REDUCED_EU_SERVICE", "DE_IN_REV_REDUCED_EU_SERVICE_2020", "DE_IN_REV_STANDARD_EU", "DE_IN_REV_STANDARD_EU_2020", "DE_IN_REV_STANDARD_EU_SERVICE", "DE_IN_REV_STANDARD_EU_SERVICE_2020", "DE_IN_STANDARD", "DE_IN_STANDARD_2020", "DE_IN_TAX_FREE_THIRD", "DE_IN_ZERO", "DK_ADD_STANDARD", "DK_ADD_TAX_FREE_EU", "DK_ADD_TAX_FREE_EU_SERVICES", "DK_ADD_TAX_FREE_THIRD", "DK_ADD_ZERO", "DK_IN_REV_STANDARD_EU", "DK_IN_REV_STANDARD_EU_SERVICE", "DK_IN_STANDARD", "DK_IN_TAX_FREE_THIRD", "DK_IN_ZERO", "EE_ADD_REDUCED", "EE_ADD_REDUCED_SLIGHT_2025", "EE_ADD_STANDARD", "EE_ADD_STANDARD_2024", "EE_ADD_STANDARD_2025_Q3", "EE_ADD_TAX_FREE_EU", "EE_ADD_TAX_FREE_EU_SERVICES", "EE_ADD_TAX_FREE_THIRD", "EE_ADD_ZERO", "EE_IN_REDUCED", "EE_IN_REDUCED_SLIGHT_2025", "EE_IN_REV_REDUCED_EU", "EE_IN_REV_REDUCED_EU_SERVICE", "EE_IN_REV_REDUCED_SLIGHT_EU_2025", "EE_IN_REV_REDUCED_SLIGHT_EU_SERVICE_2025", "EE_IN_REV_STANDARD_EU", "EE_IN_REV_STANDARD_EU_2024", "EE_IN_REV_STANDARD_EU_2025_Q3", "EE_IN_REV_STANDARD_EU_SERVICE", "EE_IN_REV_STANDARD_EU_SERVICE_2024", "EE_IN_REV_STANDARD_EU_SERVICE_2025_Q3", "EE_IN_STANDARD", "EE_IN_STANDARD_2024", "EE_IN_STANDARD_2025_Q3", "EE_IN_TAX_FREE_THIRD", "EE_IN_ZERO", "ES_ADD_REDUCED", "ES_ADD_REDUCED_SLIGHT", "ES_ADD_STANDARD", "ES_ADD_TAX_FREE_EU", "ES_ADD_TAX_FREE_EU_SERVICES", "ES_ADD_TAX_FREE_THIRD", "ES_ADD_ZERO", "ES_IN_REDUCED", "ES_IN_REDUCED_SLIGHT", "ES_IN_REV_REDUCED_EU", "ES_IN_REV_REDUCED_EU_SERVICE", "ES_IN_REV_REDUCED_SLIGHT_EU", "ES_IN_REV_REDUCED_SLIGHT_EU_SERVICE", "ES_IN_REV_STANDARD_EU", "ES_IN_REV_STANDARD_EU_SERVICE", "ES_IN_STANDARD", "ES_IN_TAX_FREE_THIRD", "ES_IN_ZERO", "FI_ADD_REDUCED", "FI_ADD_REDUCED_SLIGHT", "FI_ADD_STANDARD", "FI_ADD_STANDARD_09_2024", "FI_ADD_TAX_FREE_EU", "FI_ADD_TAX_FREE_EU_SERVICES", "FI_ADD_TAX_FREE_THIRD", "FI_ADD_ZERO", "FI_IN_REDUCED", "FI_IN_REDUCED_SLIGHT", "FI_IN_REV_REDUCED_EU", "FI_IN_REV_REDUCED_EU_SERVICE", "FI_IN_REV_REDUCED_SLIGHT_EU", "FI_IN_REV_REDUCED_SLIGHT_EU_SERVICE", "FI_IN_REV_STANDARD_EU", "FI_IN_REV_STANDARD_EU_09_2024", "FI_IN_REV_STANDARD_EU_SERVICE", "FI_IN_STANDARD", "FI_IN_STANDARD_09_2024", "FI_IN_TAX_FREE_THIRD", "FI_IN_ZERO", "FO_ADD_STANDARD", "FO_ADD_TAX_FREE_THIRD", "FO_ADD_ZERO", "FO_IN_STANDARD", "FO_IN_TAX_FREE_THIRD", "FO_IN_ZERO", "FR_ADD_REDUCED", "FR_ADD_REDUCED_SLIGHT", "FR_ADD_REDUCED_SUPER", "FR_ADD_STANDARD", "FR_ADD_TAX_FREE_EU", "FR_ADD_TAX_FREE_EU_SERVICES", "FR_ADD_TAX_FREE_THIRD", "FR_ADD_ZERO", "FR_IN_REDUCED", "FR_IN_REDUCED_SLIGHT", "FR_IN_REDUCED_SUPER", "FR_IN_REV_REDUCED_EU", "FR_IN_REV_REDUCED_EU_SERVICE", "FR_IN_REV_REDUCED_SLIGHT_EU", "FR_IN_REV_REDUCED_SLIGHT_EU_SERVICE", "FR_IN_REV_REDUCED_SUPER_EU", "FR_IN_REV_REDUCED_SUPER_EU_SERVICE", "FR_IN_REV_STANDARD_EU", "FR_IN_REV_STANDARD_EU_SERVICE", "FR_IN_STANDARD", "FR_IN_TAX_FREE_THIRD", "FR_IN_ZERO", "GB_ADD_REDUCED", "GB_ADD_STANDARD", "GB_ADD_TAX_FREE_THIRD", "GB_ADD_ZERO", "GB_IN_REDUCED", "GB_IN_STANDARD", "GB_IN_TAX_FREE_THIRD", "GB_IN_ZERO", "GR_ADD_REDUCED", "GR_ADD_REDUCED_SLIGHT", "GR_ADD_STANDARD", "GR_ADD_TAX_FREE_EU", "GR_ADD_TAX_FREE_EU_SERVICES", "GR_ADD_TAX_FREE_THIRD", "GR_ADD_ZERO", "GR_IN_REDUCED", "GR_IN_REDUCED_SLIGHT", "GR_IN_REV_REDUCED_EU", "GR_IN_REV_REDUCED_EU_SERVICE", "GR_IN_REV_REDUCED_SLIGHT_EU", "GR_IN_REV_REDUCED_SLIGHT_EU_SERVICE", "GR_IN_REV_STANDARD_EU", "GR_IN_REV_STANDARD_EU_SERVICE", "GR_IN_STANDARD", "GR_IN_TAX_FREE_THIRD", "GR_IN_ZERO", "HR_ADD_REDUCED", "HR_ADD_REDUCED_SLIGHT", "HR_ADD_STANDARD", "HR_ADD_TAX_FREE_EU", "HR_ADD_TAX_FREE_EU_SERVICES", "HR_ADD_TAX_FREE_THIRD", "HR_ADD_ZERO", "HR_IN_REDUCED", "HR_IN_REDUCED_SLIGHT", "HR_IN_REV_REDUCED_EU", "HR_IN_REV_REDUCED_EU_SERVICE", "HR_IN_REV_REDUCED_SLIGHT_EU", "HR_IN_REV_REDUCED_SLIGHT_EU_SERVICE", "HR_IN_REV_STANDARD_EU", "HR_IN_REV_STANDARD_EU_SERVICE", "HR_IN_STANDARD", "HR_IN_TAX_FREE_THIRD", "HR_IN_ZERO", "HU_ADD_REDUCED", "HU_ADD_REDUCED_SLIGHT", "HU_ADD_STANDARD", "HU_ADD_TAX_FREE_EU", "HU_ADD_TAX_FREE_EU_SERVICES", "HU_ADD_TAX_FREE_THIRD", "HU_ADD_ZERO", "HU_IN_REDUCED", "HU_IN_REDUCED_SLIGHT", "HU_IN_REV_REDUCED_EU", "HU_IN_REV_REDUCED_EU_SERVICE", "HU_IN_REV_REDUCED_SLIGHT_EU", "HU_IN_REV_REDUCED_SLIGHT_EU_SERVICE", "HU_IN_REV_STANDARD_EU", "HU_IN_REV_STANDARD_EU_SERVICE", "HU_IN_STANDARD", "HU_IN_TAX_FREE_THIRD", "HU_IN_ZERO", "IE_ADD_REDUCED", "IE_ADD_REDUCED_SLIGHT", "IE_ADD_REDUCED_SUPER", "IE_ADD_STANDARD", "IE_ADD_TAX_FREE_EU", "IE_ADD_TAX_FREE_EU_SERVICES", "IE_ADD_TAX_FREE_THIRD", "IE_ADD_ZERO", "IE_IN_REDUCED", "IE_IN_REDUCED_SLIGHT", "IE_IN_REDUCED_SUPER", "IE_IN_REV_REDUCED_EU", "IE_IN_REV_REDUCED_EU_SERVICE", "IE_IN_REV_REDUCED_SLIGHT_EU", "IE_IN_REV_REDUCED_SLIGHT_EU_SERVICE", "IE_IN_REV_REDUCED_SUPER_EU", "IE_IN_REV_REDUCED_SUPER_EU_SERVICE", "IE_IN_REV_STANDARD_EU", "IE_IN_REV_STANDARD_EU_SERVICE", "IE_IN_STANDARD", "IE_IN_TAX_FREE_THIRD", "IE_IN_ZERO", "IL_ADD_REDUCED", "IL_ADD_STANDARD", "IL_ADD_TAX_FREE_THIRD", "IL_ADD_ZERO", "IL_IN_REDUCED", "IL_IN_STANDARD", "IL_IN_TAX_FREE_THIRD", "IL_IN_ZERO", "IN_ADD_REDUCED", "IN_ADD_REDUCED_SUPER", "IN_ADD_STANDARD", "IN_ADD_TAX_FREE_THIRD", "IN_ADD_ZERO", "IN_IN_REDUCED", "IN_IN_REDUCED_SUPER", "IN_IN_STANDARD", "IN_IN_TAX_FREE_THIRD", "IN_IN_ZERO", "IS_ADD_REDUCED", "IS_ADD_STANDARD", "IS_ADD_TAX_FREE_THIRD", "IS_ADD_ZERO", "IS_IN_REDUCED", "IS_IN_STANDARD", "IS_IN_TAX_FREE_THIRD", "IS_IN_ZERO", "IT_ADD_REDUCED", "IT_ADD_REDUCED_SLIGHT", "IT_ADD_REDUCED_SUPER", "IT_ADD_STANDARD", "IT_ADD_TAX_FREE_EU", "IT_ADD_TAX_FREE_EU_SERVICES", "IT_ADD_TAX_FREE_LETTER_OF_INTENT", "IT_ADD_TAX_FREE_THIRD", "IT_ADD_TAX_FREE_THIRD_SERVICES", "IT_ADD_ZERO", "IT_IN_REDUCED", "IT_IN_REDUCED_SLIGHT", "IT_IN_REDUCED_SUPER", "IT_IN_REV_REDUCED_EU", "IT_IN_REV_REDUCED_EU_SERVICE", "IT_IN_REV_REDUCED_SLIGHT_EU", "IT_IN_REV_REDUCED_SLIGHT_EU_SERVICE", "IT_IN_REV_REDUCED_SUPER_EU", "IT_IN_REV_REDUCED_SUPER_EU_SERVICE", "IT_IN_REV_STANDARD_EU", "IT_IN_REV_STANDARD_EU_SERVICE", "IT_IN_STANDARD", "IT_IN_TAX_FREE_LETTER_OF_INTENT", "IT_IN_TAX_FREE_THIRD", "IT_IN_ZERO", "JP_ADD_STANDARD", "JP_ADD_TAX_FREE_THIRD", "JP_ADD_ZERO", "JP_IN_STANDARD", "JP_IN_TAX_FREE_THIRD", "JP_IN_ZERO", "LI_ADD_REDUCED", "LI_ADD_REDUCED_2024", "LI_ADD_REDUCED_SUPER", "LI_ADD_REDUCED_SUPER_2024", "LI_ADD_STANDARD", "LI_ADD_STANDARD_2024", "LI_ADD_TAX_FREE_THIRD", "LI_ADD_ZERO", "LI_IN_REDUCED", "LI_IN_REDUCED_2024", "LI_IN_REDUCED_SUPER", "LI_IN_REDUCED_SUPER_2024", "LI_IN_STANDARD", "LI_IN_STANDARD_2024", "LI_IN_TAX_FREE_THIRD", "LI_IN_ZERO", "LK_ADD_STANDARD", "LK_ADD_TAX_FREE_THIRD", "LK_ADD_ZERO", "LK_IN_STANDARD", "LK_IN_TAX_FREE_THIRD", "LK_IN_ZERO", "LT_ADD_REDUCED", "LT_ADD_REDUCED_SLIGHT", "LT_ADD_STANDARD", "LT_ADD_TAX_FREE_EU", "LT_ADD_TAX_FREE_EU_SERVICES", "LT_ADD_TAX_FREE_THIRD", "LT_ADD_ZERO", "LT_IN_REDUCED", "LT_IN_REDUCED_SLIGHT", "LT_IN_REV_REDUCED_EU", "LT_IN_REV_REDUCED_EU_SERVICE", "LT_IN_REV_REDUCED_SLIGHT_EU", "LT_IN_REV_REDUCED_SLIGHT_EU_SERVICE", "LT_IN_REV_STANDARD_EU", "LT_IN_REV_STANDARD_EU_SERVICE", "LT_IN_STANDARD", "LT_IN_TAX_FREE_THIRD", "LT_IN_ZERO", "LU_ADD_REDUCED", "LU_ADD_REDUCED_2023", "LU_ADD_REDUCED_SLIGHT", "LU_ADD_REDUCED_SLIGHT_2023", "LU_ADD_REDUCED_SUPER", "LU_ADD_STANDARD", "LU_ADD_STANDARD_2023", "LU_ADD_TAX_FREE_EU", "LU_ADD_TAX_FREE_EU_SERVICES", "LU_ADD_TAX_FREE_THIRD", "LU_ADD_ZERO", "LU_IN_REDUCED", "LU_IN_REDUCED_2023", "LU_IN_REDUCED_SLIGHT", "LU_IN_REDUCED_SLIGHT_2023", "LU_IN_REDUCED_SUPER", "LU_IN_REV_REDUCED_EU", "LU_IN_REV_REDUCED_EU_2023", "LU_IN_REV_REDUCED_EU_SERVICE", "LU_IN_REV_REDUCED_EU_SERVICE_2023", "LU_IN_REV_REDUCED_SLIGHT_EU", "LU_IN_REV_REDUCED_SLIGHT_EU_2023", "LU_IN_REV_REDUCED_SLIGHT_EU_SERVICE", "LU_IN_REV_REDUCED_SLIGHT_EU_SERVICE_2023", "LU_IN_REV_REDUCED_SUPER_EU", "LU_IN_REV_REDUCED_SUPER_EU_SERVICE", "LU_IN_REV_STANDARD_EU", "LU_IN_REV_STANDARD_EU_2023", "LU_IN_REV_STANDARD_EU_SERVICE", "LU_IN_REV_STANDARD_EU_SERVICE_2023", "LU_IN_STANDARD", "LU_IN_STANDARD_2023", "LU_IN_TAX_FREE_THIRD", "LU_IN_ZERO", "LV_ADD_REDUCED", "LV_ADD_REDUCED_SLIGHT", "LV_ADD_STANDARD", "LV_ADD_TAX_FREE_EU", "LV_ADD_TAX_FREE_EU_SERVICES", "LV_ADD_TAX_FREE_THIRD", "LV_ADD_ZERO", "LV_IN_REDUCED", "LV_IN_REDUCED_SLIGHT", "LV_IN_REV_REDUCED_EU", "LV_IN_REV_REDUCED_EU_SERVICE", "LV_IN_REV_REDUCED_SLIGHT_EU", "LV_IN_REV_REDUCED_SLIGHT_EU_SERVICE", "LV_IN_REV_STANDARD_EU", "LV_IN_REV_STANDARD_EU_SERVICE", "LV_IN_STANDARD", "LV_IN_TAX_FREE_THIRD", "LV_IN_ZERO", "MA_ADD_STANDARD", "MA_ADD_TAX_FREE_THIRD", "MA_ADD_ZERO", "MA_IN_STANDARD", "MA_IN_TAX_FREE_THIRD", "MA_IN_ZERO", "ME_ADD_REDUCED", "ME_ADD_STANDARD", "ME_ADD_TAX_FREE_THIRD", "ME_ADD_ZERO", "ME_IN_REDUCED", "ME_IN_STANDARD", "ME_IN_TAX_FREE_THIRD", "ME_IN_ZERO", "MK_ADD_REDUCED", "MK_ADD_STANDARD", "MK_ADD_TAX_FREE_THIRD", "MK_ADD_ZERO", "MK_IN_REDUCED", "MK_IN_STANDARD", "MK_IN_TAX_FREE_THIRD", "MK_IN_ZERO", "MT_ADD_REDUCED", "MT_ADD_REDUCED_2024", "MT_ADD_REDUCED_SLIGHT", "MT_ADD_REDUCED_SLIGHT_2024", "MT_ADD_REDUCED_SUPER", "MT_ADD_STANDARD", "MT_ADD_TAX_FREE_EU", "MT_ADD_TAX_FREE_EU_SERVICES", "MT_ADD_TAX_FREE_THIRD", "MT_ADD_ZERO", "MT_IN_REDUCED", "MT_IN_REDUCED_2024", "MT_IN_REDUCED_SLIGHT", "MT_IN_REDUCED_SLIGHT_2024", "MT_IN_REDUCED_SUPER", "MT_IN_REV_REDUCED_EU", "MT_IN_REV_REDUCED_EU_2024", "MT_IN_REV_REDUCED_EU_SERVICE", "MT_IN_REV_REDUCED_EU_SERVICE_2024", "MT_IN_REV_REDUCED_SLIGHT_EU", "MT_IN_REV_REDUCED_SLIGHT_EU_2024", "MT_IN_REV_REDUCED_SLIGHT_EU_SERVICE", "MT_IN_REV_REDUCED_SLIGHT_EU_SERVICE_2024", "MT_IN_REV_REDUCED_SUPER_EU", "MT_IN_REV_REDUCED_SUPER_EU_SERVICE", "MT_IN_REV_STANDARD_EU", "MT_IN_REV_STANDARD_EU_SERVICE", "MT_IN_STANDARD", "MT_IN_TAX_FREE_THIRD", "MT_IN_ZERO", "MX_ADD_STANDARD", "MX_ADD_TAX_FREE_THIRD", "MX_ADD_ZERO", "MX_IN_STANDARD", "MX_IN_TAX_FREE_THIRD", "MX_IN_ZERO", "NL_ADD_REDUCED", "NL_ADD_STANDARD", "NL_ADD_TAX_FREE_EU", "NL_ADD_TAX_FREE_EU_SERVICES", "NL_ADD_TAX_FREE_THIRD", "NL_ADD_ZERO", "NL_IN_REDUCED", "NL_IN_REV_REDUCED_EU", "NL_IN_REV_REDUCED_EU_SERVICE", "NL_IN_REV_STANDARD_EU", "NL_IN_REV_STANDARD_EU_SERVICE", "NL_IN_STANDARD", "NL_IN_TAX_FREE_THIRD", "NL_IN_ZERO", "NO_ADD_REDUCED", "NO_ADD_REDUCED_SUPER", "NO_ADD_STANDARD", "NO_ADD_TAX_FREE_THIRD", "NO_ADD_ZERO", "NO_IN_REDUCED", "NO_IN_REDUCED_SUPER", "NO_IN_STANDARD", "NO_IN_TAX_FREE_THIRD", "NO_IN_ZERO", "NZ_ADD_STANDARD", "NZ_ADD_TAX_FREE_THIRD", "NZ_ADD_ZERO", "NZ_IN_STANDARD", "NZ_IN_TAX_FREE_THIRD", "NZ_IN_ZERO", "PL_ADD_REDUCED", "PL_ADD_REDUCED_SUPER", "PL_ADD_STANDARD", "PL_ADD_TAX_FREE_EU", "PL_ADD_TAX_FREE_EU_SERVICES", "PL_ADD_TAX_FREE_THIRD", "PL_ADD_ZERO", "PL_IN_REDUCED", "PL_IN_REDUCED_SUPER", "PL_IN_REV_REDUCED_EU", "PL_IN_REV_REDUCED_EU_SERVICE", "PL_IN_REV_REDUCED_SUPER_EU", "PL_IN_REV_REDUCED_SUPER_EU_SERVICE", "PL_IN_REV_STANDARD_EU", "PL_IN_REV_STANDARD_EU_SERVICE", "PL_IN_STANDARD", "PL_IN_TAX_FREE_THIRD", "PL_IN_ZERO", "PT_ADD_REDUCED", "PT_ADD_REDUCED_SLIGHT", "PT_ADD_STANDARD", "PT_ADD_TAX_FREE_EU", "PT_ADD_TAX_FREE_EU_SERVICES", "PT_ADD_TAX_FREE_THIRD", "PT_ADD_ZERO", "PT_IN_REDUCED", "PT_IN_REDUCED_SLIGHT", "PT_IN_REV_REDUCED_EU", "PT_IN_REV_REDUCED_EU_SERVICE", "PT_IN_REV_REDUCED_SLIGHT_EU", "PT_IN_REV_REDUCED_SLIGHT_EU_SERVICE", "PT_IN_REV_STANDARD_EU", "PT_IN_REV_STANDARD_EU_SERVICE", "PT_IN_STANDARD", "PT_IN_TAX_FREE_THIRD", "PT_IN_ZERO", "RO_ADD_REDUCED", "RO_ADD_REDUCED_2025", "RO_ADD_REDUCED_SLIGHT", "RO_ADD_STANDARD", "RO_ADD_STANDARD_2025", "RO_ADD_TAX_FREE_EU", "RO_ADD_TAX_FREE_EU_SERVICES", "RO_ADD_TAX_FREE_THIRD", "RO_ADD_ZERO", "RO_IN_REDUCED", "RO_IN_REDUCED_2025", "RO_IN_REDUCED_SLIGHT", "RO_IN_REV_REDUCED_EU", "RO_IN_REV_REDUCED_EU_2025", "RO_IN_REV_REDUCED_EU_SERVICE", "RO_IN_REV_REDUCED_EU_SERVICE_2025", "RO_IN_REV_REDUCED_SLIGHT_EU", "RO_IN_REV_REDUCED_SLIGHT_EU_SERVICE", "RO_IN_REV_STANDARD_EU", "RO_IN_REV_STANDARD_EU_2025", "RO_IN_REV_STANDARD_EU_SERVICE", "RO_IN_REV_STANDARD_EU_SERVICE_2025", "RO_IN_STANDARD", "RO_IN_STANDARD_2025", "RO_IN_TAX_FREE_THIRD", "RO_IN_ZERO", "RS_ADD_REDUCED", "RS_ADD_STANDARD", "RS_ADD_TAX_FREE_THIRD", "RS_ADD_ZERO", "RS_IN_REDUCED", "RS_IN_STANDARD", "RS_IN_TAX_FREE_THIRD", "RS_IN_ZERO", "RU_ADD_REDUCED", "RU_ADD_STANDARD", "RU_ADD_TAX_FREE_THIRD", "RU_ADD_ZERO", "RU_IN_REDUCED", "RU_IN_STANDARD", "RU_IN_TAX_FREE_THIRD", "RU_IN_ZERO", "SE_ADD_REDUCED", "SE_ADD_REDUCED_SLIGHT", "SE_ADD_STANDARD", "SE_ADD_TAX_FREE_EU", "SE_ADD_TAX_FREE_EU_SERVICES", "SE_ADD_TAX_FREE_THIRD", "SE_ADD_ZERO", "SE_IN_REDUCED", "SE_IN_REDUCED_SLIGHT", "SE_IN_REV_REDUCED_EU", "SE_IN_REV_REDUCED_EU_SERVICE", "SE_IN_REV_REDUCED_SLIGHT_EU", "SE_IN_REV_REDUCED_SLIGHT_EU_SERVICE", "SE_IN_REV_STANDARD_EU", "SE_IN_REV_STANDARD_EU_SERVICE", "SE_IN_STANDARD", "SE_IN_TAX_FREE_THIRD", "SE_IN_ZERO", "SG_ADD_STANDARD", "SG_ADD_TAX_FREE_THIRD", "SG_ADD_ZERO", "SG_IN_STANDARD", "SG_IN_TAX_FREE_THIRD", "SG_IN_ZERO", "SI_ADD_REDUCED", "SI_ADD_STANDARD", "SI_ADD_TAX_FREE_EU", "SI_ADD_TAX_FREE_EU_SERVICES", "SI_ADD_TAX_FREE_THIRD", "SI_ADD_ZERO", "SI_IN_REDUCED", "SI_IN_REV_REDUCED_EU", "SI_IN_REV_REDUCED_EU_SERVICE", "SI_IN_REV_STANDARD_EU", "SI_IN_REV_STANDARD_EU_SERVICE", "SI_IN_STANDARD", "SI_IN_TAX_FREE_THIRD", "SI_IN_ZERO", "SK_ADD_REDUCED", "SK_ADD_REDUCED_2025", "SK_ADD_STANDARD", "SK_ADD_STANDARD_2025", "SK_ADD_TAX_FREE_EU", "SK_ADD_TAX_FREE_EU_SERVICES", "SK_ADD_TAX_FREE_THIRD", "SK_ADD_ZERO", "SK_IN_REDUCED", "SK_IN_REDUCED_2025", "SK_IN_REV_REDUCED_EU", "SK_IN_REV_REDUCED_EU_2025", "SK_IN_REV_REDUCED_EU_SERVICE", "SK_IN_REV_REDUCED_EU_SERVICE_2025", "SK_IN_REV_STANDARD_EU", "SK_IN_REV_STANDARD_EU_2025", "SK_IN_REV_STANDARD_EU_SERVICE", "SK_IN_REV_STANDARD_EU_SERVICE_2025", "SK_IN_STANDARD", "SK_IN_STANDARD_2025", "SK_IN_TAX_FREE_THIRD", "SK_IN_ZERO", "TH_ADD_STANDARD", "TH_ADD_TAX_FREE_THIRD", "TH_ADD_ZERO", "TH_IN_STANDARD", "TH_IN_TAX_FREE_THIRD", "TH_IN_ZERO", "TR_ADD_REDUCED", "TR_ADD_REDUCED_SUPER", "TR_ADD_STANDARD", "TR_ADD_TAX_FREE_THIRD", "TR_ADD_ZERO", "TR_IN_REDUCED", "TR_IN_REDUCED_SUPER", "TR_IN_STANDARD", "TR_IN_TAX_FREE_THIRD", "TR_IN_ZERO", "TW_ADD_STANDARD", "TW_ADD_TAX_FREE_THIRD", "TW_ADD_ZERO", "TW_IN_STANDARD", "TW_IN_TAX_FREE_THIRD", "TW_IN_ZERO", "UA_ADD_REDUCED", "UA_ADD_STANDARD", "UA_ADD_TAX_FREE_THIRD", "UA_ADD_ZERO", "UA_IN_REDUCED", "UA_IN_STANDARD", "UA_IN_TAX_FREE_THIRD", "UA_IN_ZERO", "VE_ADD_STANDARD", "VE_ADD_TAX_FREE_THIRD", "VE_ADD_ZERO", "VE_IN_STANDARD", "VE_IN_TAX_FREE_THIRD", "VE_IN_ZERO", "XI_ADD_REDUCED", "XI_ADD_STANDARD", "XI_ADD_TAX_FREE_EU", "XI_ADD_TAX_FREE_EU_SERVICES", "XI_ADD_TAX_FREE_THIRD", "XI_ADD_ZERO", "XI_IN_REDUCED", "XI_IN_REV_REDUCED_EU", "XI_IN_REV_REDUCED_EU_SERVICE", "XI_IN_REV_STANDARD_EU", "XI_IN_REV_STANDARD_EU_SERVICE", "XI_IN_STANDARD", "XI_IN_TAX_FREE_THIRD", "XI_IN_ZERO", "XK_ADD_REDUCED", "XK_ADD_STANDARD", "XK_ADD_TAX_FREE_THIRD", "XK_ADD_ZERO", "XK_IN_REDUCED", "XK_IN_STANDARD", "XK_IN_TAX_FREE_THIRD", "XK_IN_ZERO", "ZA_ADD_REDUCED", "ZA_ADD_REDUCED_SUPER", "ZA_ADD_STANDARD", "ZA_ADD_TAX_FREE_THIRD", "ZA_ADD_ZERO", "ZA_IN_REDUCED", "ZA_IN_REDUCED_SUPER", "ZA_IN_STANDARD", "ZA_IN_TAX_FREE_THIRD", "ZA_IN_ZERO"],
354
+ "taxRateType": ["REDUCED", "SLIGHTLY_REDUCED", "STANDARD", "SUPER_REDUCED", "ZERO"],
355
+ "taxType": ["IMPORT_SALES_TAX", "INPUT_VAT", "INPUT_VAT_REVERSED", "VALUE_ADDED_TAX"],
356
+ "teamRole": ["MANAGER", "USER"],
357
+ "templateType": ["EMAIL", "LETTER"],
358
+ "timeRecordSource": ["TEAMVIEWER"],
359
+ "timeUnit": ["DAY", "HOUR", "MINUTE", "MONTH", "SECOND", "WEEK", "YEAR"],
360
+ "transportationOrderStatusType": ["CANCELLED", "COMPLETED", "IN_INTERIM", "IN_TRANSIT", "NEW"],
361
+ "transportationOrderType": ["PICKING", "STOCK_TRANSFER"],
362
+ "usage": ["ARTICLE", "EXTERNAL_CONNECTION", "TRANSUS"],
363
+ "userMfaDeviceType": ["TOTP", "U2F", "WEBAUTHN"],
364
+ "userStatus": ["ACTIVE", "DEPARTURE", "NOT_ACTIVE"],
365
+ "validationErrorType": ["/webapp/view/api/errors.html#!/validation/authorization", "/webapp/view/api/errors.html#!/validation/blocked", "/webapp/view/api/errors.html#!/validation/consistency", "/webapp/view/api/errors.html#!/validation/digits", "/webapp/view/api/errors.html#!/validation/duplicate", "/webapp/view/api/errors.html#!/validation/email", "/webapp/view/api/errors.html#!/validation/email_or_domain", "/webapp/view/api/errors.html#!/validation/empty", "/webapp/view/api/errors.html#!/validation/enum", "/webapp/view/api/errors.html#!/validation/future", "/webapp/view/api/errors.html#!/validation/greater_than", "/webapp/view/api/errors.html#!/validation/less_than", "/webapp/view/api/errors.html#!/validation/max", "/webapp/view/api/errors.html#!/validation/min", "/webapp/view/api/errors.html#!/validation/not_empty", "/webapp/view/api/errors.html#!/validation/past", "/webapp/view/api/errors.html#!/validation/pattern", "/webapp/view/api/errors.html#!/validation/reference", "/webapp/view/api/errors.html#!/validation/size", "/webapp/view/api/errors.html#!/validation/syntax", "/webapp/view/api/errors.html#!/validation/type"],
366
+ "webhookRequestMethod": ["GET", "POST"],
367
+ };
368
+ //# sourceMappingURL=entityMetadata.js.map