mirror of
https://dev.azure.com/hugendubel/ISA/_git/ISA-Frontend
synced 2025-12-31 09:37:15 +01:00
Add new model definitions for various APIs in generated Swagger files
This commit is contained in:
@@ -4,7 +4,7 @@
|
||||
"sourceRoot": "generated/swagger/oms-api/src",
|
||||
"prefix": "lib",
|
||||
"projectType": "library",
|
||||
"tags": [],
|
||||
"tags": ["generated","swagger", "oms", "api"],
|
||||
"targets": {
|
||||
"generate": {
|
||||
"command": "ng-swagger-gen --config {projectRoot}/ng-swagger-gen.json --output {projectRoot}/src",
|
||||
|
||||
62
generated/swagger/oms-api/src/base-service.ts
Normal file
62
generated/swagger/oms-api/src/base-service.ts
Normal file
@@ -0,0 +1,62 @@
|
||||
/* tslint:disable */
|
||||
import { HttpClient, HttpParameterCodec, HttpParams } from '@angular/common/http';
|
||||
import { OmsConfiguration } from './oms-configuration';
|
||||
|
||||
/**
|
||||
* Custom parameter codec to correctly handle the plus sign in parameter
|
||||
* values. See https://github.com/angular/angular/issues/18261
|
||||
*/
|
||||
class ParameterCodec implements HttpParameterCodec {
|
||||
encodeKey(key: string): string {
|
||||
return encodeURIComponent(key);
|
||||
}
|
||||
|
||||
encodeValue(value: string): string {
|
||||
return encodeURIComponent(value);
|
||||
}
|
||||
|
||||
decodeKey(key: string): string {
|
||||
return decodeURIComponent(key);
|
||||
}
|
||||
|
||||
decodeValue(value: string): string {
|
||||
return decodeURIComponent(value);
|
||||
}
|
||||
}
|
||||
const PARAMETER_CODEC = new ParameterCodec();
|
||||
|
||||
/**
|
||||
* Base class for API services
|
||||
*/
|
||||
export class BaseService {
|
||||
constructor(
|
||||
protected config: OmsConfiguration,
|
||||
protected http: HttpClient,
|
||||
) {}
|
||||
|
||||
private _rootUrl: string = '';
|
||||
|
||||
/**
|
||||
* Returns the root url for API operations. If not set directly in this
|
||||
* service, will fallback to ApiConfiguration.rootUrl.
|
||||
*/
|
||||
get rootUrl(): string {
|
||||
return this._rootUrl || this.config.rootUrl;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the root URL for API operations in this service.
|
||||
*/
|
||||
set rootUrl(rootUrl: string) {
|
||||
this._rootUrl = rootUrl;
|
||||
}
|
||||
|
||||
/**
|
||||
* Creates a new `HttpParams` with the correct codec
|
||||
*/
|
||||
protected newParams(): HttpParams {
|
||||
return new HttpParams({
|
||||
encoder: PARAMETER_CODEC,
|
||||
});
|
||||
}
|
||||
}
|
||||
266
generated/swagger/oms-api/src/models.ts
Normal file
266
generated/swagger/oms-api/src/models.ts
Normal file
@@ -0,0 +1,266 @@
|
||||
export { ResponseArgsOfQuerySettingsDTO } from './models/response-args-of-query-settings-dto';
|
||||
export { QuerySettingsDTO } from './models/query-settings-dto';
|
||||
export { InputGroupDTO } from './models/input-group-dto';
|
||||
export { InputDTO } from './models/input-dto';
|
||||
export { InputType } from './models/input-type';
|
||||
export { InputOptionsDTO } from './models/input-options-dto';
|
||||
export { OptionDTO } from './models/option-dto';
|
||||
export { OrderByDTO } from './models/order-by-dto';
|
||||
export { ResponseArgs } from './models/response-args';
|
||||
export { DialogOfString } from './models/dialog-of-string';
|
||||
export { DialogSettings } from './models/dialog-settings';
|
||||
export { DialogContentType } from './models/dialog-content-type';
|
||||
export { KeyValueDTOOfStringAndString } from './models/key-value-dtoof-string-and-string';
|
||||
export { ProblemDetails } from './models/problem-details';
|
||||
export { ResponseArgsOfIEnumerableOfAutocompleteDTO } from './models/response-args-of-ienumerable-of-autocomplete-dto';
|
||||
export { AutocompleteDTO } from './models/autocomplete-dto';
|
||||
export { AutocompleteTokenDTO } from './models/autocomplete-token-dto';
|
||||
export { ListResponseArgsOfDBHOrderItemListItemDTO } from './models/list-response-args-of-dbhorder-item-list-item-dto';
|
||||
export { ResponseArgsOfIEnumerableOfDBHOrderItemListItemDTO } from './models/response-args-of-ienumerable-of-dbhorder-item-list-item-dto';
|
||||
export { DBHOrderItemListItemDTO } from './models/dbhorder-item-list-item-dto';
|
||||
export { OrderItemType } from './models/order-item-type';
|
||||
export { OrderItemListItemDTO } from './models/order-item-list-item-dto';
|
||||
export { CRUDA } from './models/cruda';
|
||||
export { EnvironmentChannel } from './models/environment-channel';
|
||||
export { OrderType } from './models/order-type';
|
||||
export { OrderItemProcessingStatusValue } from './models/order-item-processing-status-value';
|
||||
export { ProductDTO } from './models/product-dto';
|
||||
export { SizeOfString } from './models/size-of-string';
|
||||
export { WeightOfAvoirdupois } from './models/weight-of-avoirdupois';
|
||||
export { Avoirdupois } from './models/avoirdupois';
|
||||
export { TouchedBase } from './models/touched-base';
|
||||
export { PriceDTO } from './models/price-dto';
|
||||
export { PriceValueDTO } from './models/price-value-dto';
|
||||
export { VATValueDTO } from './models/vatvalue-dto';
|
||||
export { VATType } from './models/vattype';
|
||||
export { Gender } from './models/gender';
|
||||
export { DateRangeDTO } from './models/date-range-dto';
|
||||
export { PaymentType } from './models/payment-type';
|
||||
export { PaymentStatus } from './models/payment-status';
|
||||
export { QueryTokenDTO } from './models/query-token-dto';
|
||||
export { ListResponseArgsOfOrderItemListItemDTO } from './models/list-response-args-of-order-item-list-item-dto';
|
||||
export { ResponseArgsOfIEnumerableOfOrderItemListItemDTO } from './models/response-args-of-ienumerable-of-order-item-list-item-dto';
|
||||
export { ResponseArgsOfInteger } from './models/response-args-of-integer';
|
||||
export { ResponseArgsOfIEnumerableOfBranchDTO } from './models/response-args-of-ienumerable-of-branch-dto';
|
||||
export { BranchDTO } from './models/branch-dto';
|
||||
export { EntityDTOContainerOfLabelDTO } from './models/entity-dtocontainer-of-label-dto';
|
||||
export { LabelDTO } from './models/label-dto';
|
||||
export { EntityDTOBaseOfLabelDTOAndILabel } from './models/entity-dtobase-of-label-dtoand-ilabel';
|
||||
export { EntityDTOBase } from './models/entity-dtobase';
|
||||
export { EntityDTO } from './models/entity-dto';
|
||||
export { EntityStatus } from './models/entity-status';
|
||||
export { EntityDTOReferenceContainer } from './models/entity-dtoreference-container';
|
||||
export { ExternalReferenceDTO } from './models/external-reference-dto';
|
||||
export { EntityDTOContainerOfBranchDTO } from './models/entity-dtocontainer-of-branch-dto';
|
||||
export { AddressDTO } from './models/address-dto';
|
||||
export { GeoLocation } from './models/geo-location';
|
||||
export { BranchType } from './models/branch-type';
|
||||
export { EntityDTOBaseOfBranchDTOAndIBranch } from './models/entity-dtobase-of-branch-dtoand-ibranch';
|
||||
export { ListResponseArgsOfLogisticianDTO } from './models/list-response-args-of-logistician-dto';
|
||||
export { ResponseArgsOfIEnumerableOfLogisticianDTO } from './models/response-args-of-ienumerable-of-logistician-dto';
|
||||
export { LogisticianDTO } from './models/logistician-dto';
|
||||
export { EntityDTOBaseOfLogisticianDTOAndILogistician } from './models/entity-dtobase-of-logistician-dtoand-ilogistician';
|
||||
export { ResponseArgsOfLogisticianDTO } from './models/response-args-of-logistician-dto';
|
||||
export { ResponseArgsOfValueTupleOfIEnumerableOfDisplayOrderDTOAndIEnumerableOfKeyValueDTOOfStringAndString } from './models/response-args-of-value-tuple-of-ienumerable-of-display-order-dtoand-ienumerable-of-key-value-dtoof-string-and-string';
|
||||
export { ValueTupleOfIEnumerableOfDisplayOrderDTOAndIEnumerableOfKeyValueDTOOfStringAndString } from './models/value-tuple-of-ienumerable-of-display-order-dtoand-ienumerable-of-key-value-dtoof-string-and-string';
|
||||
export { DisplayOrderDTO } from './models/display-order-dto';
|
||||
export { DisplayBranchDTO } from './models/display-branch-dto';
|
||||
export { CommunicationDetailsDTO } from './models/communication-details-dto';
|
||||
export { EntityDTOBaseOfDisplayBranchDTOAndIBranch } from './models/entity-dtobase-of-display-branch-dtoand-ibranch';
|
||||
export { DisplayOrderItemDTO } from './models/display-order-item-dto';
|
||||
export { DisplayOrderItemSubsetDTO } from './models/display-order-item-subset-dto';
|
||||
export { EntityDTOBaseOfDisplayOrderItemSubsetDTOAndIOrderItemStatus } from './models/entity-dtobase-of-display-order-item-subset-dtoand-iorder-item-status';
|
||||
export { QuantityUnitType } from './models/quantity-unit-type';
|
||||
export { PromotionDTO } from './models/promotion-dto';
|
||||
export { EntityDTOBaseOfDisplayOrderItemDTOAndIOrderItem } from './models/entity-dtobase-of-display-order-item-dtoand-iorder-item';
|
||||
export { DisplayAddresseeDTO } from './models/display-addressee-dto';
|
||||
export { OrganisationDTO } from './models/organisation-dto';
|
||||
export { OrganisationNamesDTO } from './models/organisation-names-dto';
|
||||
export { BuyerType } from './models/buyer-type';
|
||||
export { DisplayLogisticianDTO } from './models/display-logistician-dto';
|
||||
export { EntityDTOBaseOfDisplayLogisticianDTOAndILogistician } from './models/entity-dtobase-of-display-logistician-dtoand-ilogistician';
|
||||
export { DisplayOrderPaymentDTO } from './models/display-order-payment-dto';
|
||||
export { EntityDTOBaseOfDisplayOrderPaymentDTOAndIReadOnlyPayment } from './models/entity-dtobase-of-display-order-payment-dtoand-iread-only-payment';
|
||||
export { TermsOfDeliveryDTO } from './models/terms-of-delivery-dto';
|
||||
export { TypeOfDelivery } from './models/type-of-delivery';
|
||||
export { ShippingType } from './models/shipping-type';
|
||||
export { NotificationChannel } from './models/notification-channel';
|
||||
export { LinkedRecordDTO } from './models/linked-record-dto';
|
||||
export { EntityDTOBaseOfDisplayOrderDTOAndIOrder } from './models/entity-dtobase-of-display-order-dtoand-iorder';
|
||||
export { KulturPassOrderValues } from './models/kultur-pass-order-values';
|
||||
export { ResponseArgsOfIEnumerableOfDisplayOrderDTO } from './models/response-args-of-ienumerable-of-display-order-dto';
|
||||
export { ResponseArgsOfValueTupleOfOrderItemSubsetDTOAndOrderItemSubsetDTO } from './models/response-args-of-value-tuple-of-order-item-subset-dtoand-order-item-subset-dto';
|
||||
export { ValueTupleOfOrderItemSubsetDTOAndOrderItemSubsetDTO } from './models/value-tuple-of-order-item-subset-dtoand-order-item-subset-dto';
|
||||
export { OrderItemSubsetDTO } from './models/order-item-subset-dto';
|
||||
export { EntityDTOContainerOfOrderItemDTO } from './models/entity-dtocontainer-of-order-item-dto';
|
||||
export { OrderItemDTO } from './models/order-item-dto';
|
||||
export { EntityDTOContainerOfOrderDTO } from './models/entity-dtocontainer-of-order-dto';
|
||||
export { OrderDTO } from './models/order-dto';
|
||||
export { OrderProcessingStatus } from './models/order-processing-status';
|
||||
export { BuyerDTO } from './models/buyer-dto';
|
||||
export { BuyerStatus } from './models/buyer-status';
|
||||
export { AddresseeWithReferenceDTO } from './models/addressee-with-reference-dto';
|
||||
export { EntityReferenceDTO } from './models/entity-reference-dto';
|
||||
export { EntityDTOContainerOfShippingAddressDTO } from './models/entity-dtocontainer-of-shipping-address-dto';
|
||||
export { ShippingAddressDTO } from './models/shipping-address-dto';
|
||||
export { AddressType } from './models/address-type';
|
||||
export { EntityDTOBaseOfShippingAddressDTOAndIShippingAddress } from './models/entity-dtobase-of-shipping-address-dtoand-ishipping-address';
|
||||
export { EntityDTOContainerOfLogisticianDTO } from './models/entity-dtocontainer-of-logistician-dto';
|
||||
export { EntityDTOContainerOfPayerDTO } from './models/entity-dtocontainer-of-payer-dto';
|
||||
export { PayerDTO } from './models/payer-dto';
|
||||
export { PayerType } from './models/payer-type';
|
||||
export { PayerStatus } from './models/payer-status';
|
||||
export { EntityDTOBaseOfPayerDTOAndIPayer } from './models/entity-dtobase-of-payer-dtoand-ipayer';
|
||||
export { EntityDTOContainerOfPaymentDTO } from './models/entity-dtocontainer-of-payment-dto';
|
||||
export { PaymentDTO } from './models/payment-dto';
|
||||
export { EntityDTOBaseOfPaymentDTOAndIReadOnlyPayment } from './models/entity-dtobase-of-payment-dtoand-iread-only-payment';
|
||||
export { ValidationStatus } from './models/validation-status';
|
||||
export { PackagingInstructions } from './models/packaging-instructions';
|
||||
export { EntityDTOBaseOfOrderDTOAndIOrder } from './models/entity-dtobase-of-order-dtoand-iorder';
|
||||
export { EntityDTOContainerOfOrderItemSubsetDTO } from './models/entity-dtocontainer-of-order-item-subset-dto';
|
||||
export { QuantityDTO } from './models/quantity-dto';
|
||||
export { EntityDTOContainerOfShopItemDTO } from './models/entity-dtocontainer-of-shop-item-dto';
|
||||
export { ShopItemDTO } from './models/shop-item-dto';
|
||||
export { EntityDTOContainerOfItemDTO } from './models/entity-dtocontainer-of-item-dto';
|
||||
export { ItemDTO } from './models/item-dto';
|
||||
export { ItemType } from './models/item-type';
|
||||
export { EntityDTOBaseOfItemDTOAndIItem } from './models/entity-dtobase-of-item-dtoand-iitem';
|
||||
export { LifecycleStatus } from './models/lifecycle-status';
|
||||
export { Price } from './models/price';
|
||||
export { ShippingTarget } from './models/shipping-target';
|
||||
export { EntityDTOBaseOfShopItemDTOAndIShopItem } from './models/entity-dtobase-of-shop-item-dtoand-ishop-item';
|
||||
export { EntityDTOBaseOfOrderItemDTOAndIOrderItem } from './models/entity-dtobase-of-order-item-dtoand-iorder-item';
|
||||
export { EntityDTOContainerOfSupplierDTO } from './models/entity-dtocontainer-of-supplier-dto';
|
||||
export { SupplierDTO } from './models/supplier-dto';
|
||||
export { SupplierType } from './models/supplier-type';
|
||||
export { EntityDTOBaseOfSupplierDTOAndISupplier } from './models/entity-dtobase-of-supplier-dtoand-isupplier';
|
||||
export { EntityDTOContainerOfPackageDTO } from './models/entity-dtocontainer-of-package-dto';
|
||||
export { PackageDTO } from './models/package-dto';
|
||||
export { EntityDTOContainerOfUserDTO } from './models/entity-dtocontainer-of-user-dto';
|
||||
export { UserDTO } from './models/user-dto';
|
||||
export { EntityDTOBaseOfUserDTOAndIUser } from './models/entity-dtobase-of-user-dtoand-iuser';
|
||||
export { AddresseeDTO } from './models/addressee-dto';
|
||||
export { PersonNamesDTO } from './models/person-names-dto';
|
||||
export { EntityDTOBaseOfPackageDTOAndIPackage } from './models/entity-dtobase-of-package-dtoand-ipackage';
|
||||
export { EntityDTOBaseOfOrderItemSubsetDTOAndIOrderItemStatus } from './models/entity-dtobase-of-order-item-subset-dtoand-iorder-item-status';
|
||||
export { ReorderValues } from './models/reorder-values';
|
||||
export { AvailabilityDTO } from './models/availability-dto';
|
||||
export { AvailabilityType } from './models/availability-type';
|
||||
export { EntityDTOContainerOfShopItemDTO2 } from './models/entity-dtocontainer-of-shop-item-dto2';
|
||||
export { ShopItemDTO2 } from './models/shop-item-dto2';
|
||||
export { EntityDTOContainerOfItemDTO2 } from './models/entity-dtocontainer-of-item-dto2';
|
||||
export { ItemDTO2 } from './models/item-dto2';
|
||||
export { ContributorHelperDTO } from './models/contributor-helper-dto';
|
||||
export { EntityDTOContainerOfContributorDTO } from './models/entity-dtocontainer-of-contributor-dto';
|
||||
export { ContributorDTO } from './models/contributor-dto';
|
||||
export { EntityDTOContainerOfTenantDTO } from './models/entity-dtocontainer-of-tenant-dto';
|
||||
export { TenantDTO } from './models/tenant-dto';
|
||||
export { EntityDTOBaseOfTenantDTOAndITenant } from './models/entity-dtobase-of-tenant-dtoand-itenant';
|
||||
export { EntityDTOBaseOfContributorDTOAndIContributor } from './models/entity-dtobase-of-contributor-dtoand-icontributor';
|
||||
export { EntityDTOContainerOfCompanyDTO } from './models/entity-dtocontainer-of-company-dto';
|
||||
export { CompanyDTO } from './models/company-dto';
|
||||
export { EntityDTOBaseOfCompanyDTOAndICompany } from './models/entity-dtobase-of-company-dtoand-icompany';
|
||||
export { EntityDTOContainerOfCategoryDTO } from './models/entity-dtocontainer-of-category-dto';
|
||||
export { CategoryDTO } from './models/category-dto';
|
||||
export { EntityDTOContainerOfFileDTO } from './models/entity-dtocontainer-of-file-dto';
|
||||
export { FileDTO } from './models/file-dto';
|
||||
export { EntityDTOBaseOfFileDTOAndIFile } from './models/entity-dtobase-of-file-dtoand-ifile';
|
||||
export { EntityDTOContainerOfTextDTO } from './models/entity-dtocontainer-of-text-dto';
|
||||
export { TextDTO } from './models/text-dto';
|
||||
export { EntityDTOBaseOfTextDTOAndIText } from './models/entity-dtobase-of-text-dtoand-itext';
|
||||
export { EntityDTOContainerOfComponentsDTO } from './models/entity-dtocontainer-of-components-dto';
|
||||
export { ComponentsDTO } from './models/components-dto';
|
||||
export { ComponentItemDTO } from './models/component-item-dto';
|
||||
export { ComponentItemDisplayType } from './models/component-item-display-type';
|
||||
export { SetType } from './models/set-type';
|
||||
export { EntityDTOBaseOfComponentsDTOAndIComponents } from './models/entity-dtobase-of-components-dtoand-icomponents';
|
||||
export { ItemLabelDTO } from './models/item-label-dto';
|
||||
export { FoodDTO } from './models/food-dto';
|
||||
export { FoodLabel } from './models/food-label';
|
||||
export { AllergeneType } from './models/allergene-type';
|
||||
export { DeclarableFoodAdditives } from './models/declarable-food-additives';
|
||||
export { NutritionFactsDTO } from './models/nutrition-facts-dto';
|
||||
export { Rezeptmasz } from './models/rezeptmasz';
|
||||
export { NutritionFactDTO } from './models/nutrition-fact-dto';
|
||||
export { NutritionFactType } from './models/nutrition-fact-type';
|
||||
export { EntityDTOBaseOfItemDTOAndIItem2 } from './models/entity-dtobase-of-item-dtoand-iitem-2';
|
||||
export { ImageDTO } from './models/image-dto';
|
||||
export { UrlDTO } from './models/url-dto';
|
||||
export { ShippingDTO } from './models/shipping-dto';
|
||||
export { EntityDTOBaseOfShopItemDTOAndIShopItem2 } from './models/entity-dtobase-of-shop-item-dtoand-ishop-item-2';
|
||||
export { ResponseArgsOfIEnumerableOfKeyValueDTOOfStringAndString } from './models/response-args-of-ienumerable-of-key-value-dtoof-string-and-string';
|
||||
export { ResponseArgsOfSupplierOrderResult } from './models/response-args-of-supplier-order-result';
|
||||
export { SupplierOrderResult } from './models/supplier-order-result';
|
||||
export { AvailabilityDTO2 } from './models/availability-dto2';
|
||||
export { RangeDTO } from './models/range-dto';
|
||||
export { AvailableFor } from './models/available-for';
|
||||
export { ResponseArgsOfIEnumerableOfOrderDTO } from './models/response-args-of-ienumerable-of-order-dto';
|
||||
export { ResponseArgsOfOrderDTO } from './models/response-args-of-order-dto';
|
||||
export { ListResponseArgsOfOrderListItemDTO } from './models/list-response-args-of-order-list-item-dto';
|
||||
export { ResponseArgsOfIEnumerableOfOrderListItemDTO } from './models/response-args-of-ienumerable-of-order-list-item-dto';
|
||||
export { OrderListItemDTO } from './models/order-list-item-dto';
|
||||
export { ResponseArgsOfIEnumerableOfOrderItemSubsetTaskDTO } from './models/response-args-of-ienumerable-of-order-item-subset-task-dto';
|
||||
export { OrderItemSubsetTaskDTO } from './models/order-item-subset-task-dto';
|
||||
export { EntityDTOContainerOfOrderItemSubsetTransitionDTO } from './models/entity-dtocontainer-of-order-item-subset-transition-dto';
|
||||
export { OrderItemSubsetTransitionDTO } from './models/order-item-subset-transition-dto';
|
||||
export { EntityDTOBaseOfOrderItemSubsetTransitionDTOAndIOrderItemStatusTransition } from './models/entity-dtobase-of-order-item-subset-transition-dtoand-iorder-item-status-transition';
|
||||
export { EntityDTOBaseOfOrderItemSubsetTaskDTOAndIOrderItemStatusTask } from './models/entity-dtobase-of-order-item-subset-task-dtoand-iorder-item-status-task';
|
||||
export { ResponseArgsOfBoolean } from './models/response-args-of-boolean';
|
||||
export { ResponseArgsOfOrderItemDTO } from './models/response-args-of-order-item-dto';
|
||||
export { ResponseArgsOfIEnumerableOfOrderItemDTO } from './models/response-args-of-ienumerable-of-order-item-dto';
|
||||
export { ResponseArgsOfIEnumerableOfHistoryDTO } from './models/response-args-of-ienumerable-of-history-dto';
|
||||
export { HistoryDTO } from './models/history-dto';
|
||||
export { DiffDTO } from './models/diff-dto';
|
||||
export { ResponseArgsOfOrderItemSubsetDTO } from './models/response-args-of-order-item-subset-dto';
|
||||
export { StatusValues } from './models/status-values';
|
||||
export { ResponseArgsOfIEnumerableOfValueTupleOfOrderItemSubsetDTOAndOrderItemSubsetDTO } from './models/response-args-of-ienumerable-of-value-tuple-of-order-item-subset-dtoand-order-item-subset-dto';
|
||||
export { ChangeStockStatusCodeValues } from './models/change-stock-status-code-values';
|
||||
export { ResponseArgsOfIEnumerableOfEntityDTOContainerOfReceiptDTO } from './models/response-args-of-ienumerable-of-entity-dtocontainer-of-receipt-dto';
|
||||
export { EntityDTOContainerOfReceiptDTO } from './models/entity-dtocontainer-of-receipt-dto';
|
||||
export { ReceiptDTO } from './models/receipt-dto';
|
||||
export { ReceiptType } from './models/receipt-type';
|
||||
export { ReceiptDeliveryType } from './models/receipt-delivery-type';
|
||||
export { PayerDTO2 } from './models/payer-dto2';
|
||||
export { PaymentInfoDTO } from './models/payment-info-dto';
|
||||
export { EntityDTOContainerOfReceiptItemDTO } from './models/entity-dtocontainer-of-receipt-item-dto';
|
||||
export { ReceiptItemDTO } from './models/receipt-item-dto';
|
||||
export { EntityReferenceTypeDTO } from './models/entity-reference-type-dto';
|
||||
export { EntityDTOBaseOfReceiptItemDTOAndIReceiptItem } from './models/entity-dtobase-of-receipt-item-dtoand-ireceipt-item';
|
||||
export { ShippingAddressDTO2 } from './models/shipping-address-dto2';
|
||||
export { EntityDTOBaseOfReceiptDTOAndIReceipt } from './models/entity-dtobase-of-receipt-dtoand-ireceipt';
|
||||
export { ResponseArgsOfIEnumerableOfOrderItemSubsetDTO } from './models/response-args-of-ienumerable-of-order-item-subset-dto';
|
||||
export { ListResponseArgsOfOrderItemSubsetTaskListItemDTO } from './models/list-response-args-of-order-item-subset-task-list-item-dto';
|
||||
export { ResponseArgsOfIEnumerableOfOrderItemSubsetTaskListItemDTO } from './models/response-args-of-ienumerable-of-order-item-subset-task-list-item-dto';
|
||||
export { OrderItemSubsetTaskListItemDTO } from './models/order-item-subset-task-list-item-dto';
|
||||
export { OrderItemStatusValuesDTO } from './models/order-item-status-values-dto';
|
||||
export { ResponseArgsOfPayerDTO } from './models/response-args-of-payer-dto';
|
||||
export { ResponseArgsOfShippingAddressDTO } from './models/response-args-of-shipping-address-dto';
|
||||
export { ResponseArgsOfIEnumerableOfReceiptDTO } from './models/response-args-of-ienumerable-of-receipt-dto';
|
||||
export { GenerateCollectiveReceiptsArgs } from './models/generate-collective-receipts-args';
|
||||
export { ResponseArgsOfIEnumerableOfString } from './models/response-args-of-ienumerable-of-string';
|
||||
export { DateRange } from './models/date-range';
|
||||
export { ResponseArgsOfReceiptDTO } from './models/response-args-of-receipt-dto';
|
||||
export { ListResponseArgsOfReceiptListItemDTO } from './models/list-response-args-of-receipt-list-item-dto';
|
||||
export { ResponseArgsOfIEnumerableOfReceiptListItemDTO } from './models/response-args-of-ienumerable-of-receipt-list-item-dto';
|
||||
export { ReceiptListItemDTO } from './models/receipt-list-item-dto';
|
||||
export { ListResponseArgsOfReceiptItemListItemDTO } from './models/list-response-args-of-receipt-item-list-item-dto';
|
||||
export { ResponseArgsOfIEnumerableOfReceiptItemListItemDTO } from './models/response-args-of-ienumerable-of-receipt-item-list-item-dto';
|
||||
export { ReceiptItemListItemDTO } from './models/receipt-item-list-item-dto';
|
||||
export { ResponseArgsOfIEnumerableOfValueTupleOfLongAndReceiptTypeAndEntityDTOContainerOfReceiptDTO } from './models/response-args-of-ienumerable-of-value-tuple-of-long-and-receipt-type-and-entity-dtocontainer-of-receipt-dto';
|
||||
export { ValueTupleOfLongAndReceiptTypeAndEntityDTOContainerOfReceiptDTO } from './models/value-tuple-of-long-and-receipt-type-and-entity-dtocontainer-of-receipt-dto';
|
||||
export { ReceiptOrderItemSubsetReferenceValues } from './models/receipt-order-item-subset-reference-values';
|
||||
export { ResponseArgsOfIEnumerableOfStockStatusCodeDTO } from './models/response-args-of-ienumerable-of-stock-status-code-dto';
|
||||
export { StockStatusCodeDTO } from './models/stock-status-code-dto';
|
||||
export { StockStatusCodeTextDTO } from './models/stock-status-code-text-dto';
|
||||
export { EntityDTOBaseOfStockStatusCodeDTOAndIStockStatusCode } from './models/entity-dtobase-of-stock-status-code-dtoand-istock-status-code';
|
||||
export { ListResponseArgsOfSupplierDTO } from './models/list-response-args-of-supplier-dto';
|
||||
export { ResponseArgsOfIEnumerableOfSupplierDTO } from './models/response-args-of-ienumerable-of-supplier-dto';
|
||||
export { ResponseArgsOfSupplierDTO } from './models/response-args-of-supplier-dto';
|
||||
export { ListResponseArgsOfVATDTO } from './models/list-response-args-of-vatdto';
|
||||
export { ResponseArgsOfIEnumerableOfVATDTO } from './models/response-args-of-ienumerable-of-vatdto';
|
||||
export { VATDTO } from './models/vatdto';
|
||||
export { EntityDTOContainerOfCountryDTO } from './models/entity-dtocontainer-of-country-dto';
|
||||
export { CountryDTO } from './models/country-dto';
|
||||
export { EntityDTOBaseOfCountryDTOAndICountry } from './models/entity-dtobase-of-country-dtoand-icountry';
|
||||
export { EntityDTOBaseOfVATDTOAndIVAT } from './models/entity-dtobase-of-vatdtoand-ivat';
|
||||
export { ResponseArgsOfVATDTO } from './models/response-args-of-vatdto';
|
||||
69
generated/swagger/oms-api/src/models/address-dto.ts
Normal file
69
generated/swagger/oms-api/src/models/address-dto.ts
Normal file
@@ -0,0 +1,69 @@
|
||||
/* tslint:disable */
|
||||
import { TouchedBase } from './touched-base';
|
||||
import { GeoLocation } from './geo-location';
|
||||
export interface AddressDTO extends TouchedBase {
|
||||
/**
|
||||
* Apartment
|
||||
*/
|
||||
apartment?: string;
|
||||
|
||||
/**
|
||||
* c/o, zu Händen
|
||||
*/
|
||||
careOf?: string;
|
||||
|
||||
/**
|
||||
* Ort
|
||||
*/
|
||||
city?: string;
|
||||
|
||||
/**
|
||||
* Land (ISO3166 A 3)
|
||||
*/
|
||||
country?: string;
|
||||
|
||||
/**
|
||||
* Stadtteil, District
|
||||
*/
|
||||
district?: string;
|
||||
|
||||
/**
|
||||
* Orts-Koordinaten
|
||||
*/
|
||||
geoLocation?: GeoLocation;
|
||||
|
||||
/**
|
||||
* Adresszusatz
|
||||
*/
|
||||
info?: string;
|
||||
|
||||
/**
|
||||
* Postfach
|
||||
*/
|
||||
po?: string;
|
||||
|
||||
/**
|
||||
* Region
|
||||
*/
|
||||
region?: string;
|
||||
|
||||
/**
|
||||
* Bundesland, Bundesstaat, Kanton, ...
|
||||
*/
|
||||
state?: string;
|
||||
|
||||
/**
|
||||
* Straße
|
||||
*/
|
||||
street?: string;
|
||||
|
||||
/**
|
||||
* Hausnummer
|
||||
*/
|
||||
streetNumber?: string;
|
||||
|
||||
/**
|
||||
* PLZ
|
||||
*/
|
||||
zipCode?: string;
|
||||
}
|
||||
6
generated/swagger/oms-api/src/models/address-type.ts
Normal file
6
generated/swagger/oms-api/src/models/address-type.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
/* tslint:disable */
|
||||
|
||||
/**
|
||||
* Adress Typ
|
||||
*/
|
||||
export type AddressType = 0 | 1 | 2 | 4 | 8;
|
||||
32
generated/swagger/oms-api/src/models/addressee-dto.ts
Normal file
32
generated/swagger/oms-api/src/models/addressee-dto.ts
Normal file
@@ -0,0 +1,32 @@
|
||||
/* tslint:disable */
|
||||
import { TouchedBase } from './touched-base';
|
||||
import { AddressDTO } from './address-dto';
|
||||
import { CommunicationDetailsDTO } from './communication-details-dto';
|
||||
import { OrganisationDTO } from './organisation-dto';
|
||||
import { PersonNamesDTO } from './person-names-dto';
|
||||
export interface AddresseeDTO extends TouchedBase {
|
||||
/**
|
||||
* Adresse
|
||||
*/
|
||||
address?: AddressDTO;
|
||||
|
||||
/**
|
||||
* Kontaktdaten
|
||||
*/
|
||||
communicationDetails?: CommunicationDetailsDTO;
|
||||
|
||||
/**
|
||||
* Korrespondenzsprache
|
||||
*/
|
||||
locale?: string;
|
||||
|
||||
/**
|
||||
* Organisation / Firma
|
||||
*/
|
||||
organisation?: OrganisationDTO;
|
||||
|
||||
/**
|
||||
* Anrede / Namen
|
||||
*/
|
||||
person?: PersonNamesDTO;
|
||||
}
|
||||
@@ -0,0 +1,52 @@
|
||||
/* tslint:disable */
|
||||
import { EntityReferenceDTO } from './entity-reference-dto';
|
||||
import { AddressDTO } from './address-dto';
|
||||
import { CommunicationDetailsDTO } from './communication-details-dto';
|
||||
import { Gender } from './gender';
|
||||
import { OrganisationDTO } from './organisation-dto';
|
||||
export interface AddresseeWithReferenceDTO extends EntityReferenceDTO {
|
||||
/**
|
||||
* Adresse
|
||||
*/
|
||||
address?: AddressDTO;
|
||||
|
||||
/**
|
||||
* Kommuninkations-Kontaktdaten
|
||||
*/
|
||||
communicationDetails?: CommunicationDetailsDTO;
|
||||
|
||||
/**
|
||||
* Vorname
|
||||
*/
|
||||
firstName?: string;
|
||||
|
||||
/**
|
||||
* Anrede
|
||||
*
|
||||
* NotSet = 0, Wert nicht gesetzt
|
||||
* Neutrum = 1, Divers
|
||||
* Male = 2, Herr
|
||||
* Female = 4, Frau
|
||||
*/
|
||||
gender?: Gender;
|
||||
|
||||
/**
|
||||
* Nachname
|
||||
*/
|
||||
lastName?: string;
|
||||
|
||||
/**
|
||||
* Lokalisierung / (Korrespondenz-) Sprache
|
||||
*/
|
||||
locale?: string;
|
||||
|
||||
/**
|
||||
* Organisation/Firma
|
||||
*/
|
||||
organisation?: OrganisationDTO;
|
||||
|
||||
/**
|
||||
* Akademischer Titel
|
||||
*/
|
||||
title?: string;
|
||||
}
|
||||
48
generated/swagger/oms-api/src/models/allergene-type.ts
Normal file
48
generated/swagger/oms-api/src/models/allergene-type.ts
Normal file
@@ -0,0 +1,48 @@
|
||||
/* tslint:disable */
|
||||
|
||||
/**
|
||||
* Richtlinie 2003/89/EG (Allergenkennzeichnungsrichtlinie)
|
||||
* https://de.wikipedia.org/wiki/Richtlinie_2003/89/EG_(Allergenkennzeichnungsrichtlinie)
|
||||
*/
|
||||
export type AllergeneType =
|
||||
| 0
|
||||
| 1
|
||||
| 2
|
||||
| 4
|
||||
| 6
|
||||
| 8
|
||||
| 16
|
||||
| 32
|
||||
| 64
|
||||
| 128
|
||||
| 256
|
||||
| 512
|
||||
| 1024
|
||||
| 1536
|
||||
| 2048
|
||||
| 6144
|
||||
| 10240
|
||||
| 18432
|
||||
| 34816
|
||||
| 67584
|
||||
| 133120
|
||||
| 264192
|
||||
| 526336
|
||||
| 1048576
|
||||
| 3145728
|
||||
| 5242880
|
||||
| 9437184
|
||||
| 17825792
|
||||
| 34603008
|
||||
| 68157440
|
||||
| 135266304
|
||||
| 268435456
|
||||
| 805306368
|
||||
| 1342177280
|
||||
| 2415919104
|
||||
| 4563402752
|
||||
| 8858370048
|
||||
| 17448304640
|
||||
| 34628173824
|
||||
| 68987912192
|
||||
| 137438953472;
|
||||
26
generated/swagger/oms-api/src/models/autocomplete-dto.ts
Normal file
26
generated/swagger/oms-api/src/models/autocomplete-dto.ts
Normal file
@@ -0,0 +1,26 @@
|
||||
/* tslint:disable */
|
||||
|
||||
/**
|
||||
* Auocomplete-Ergebnis
|
||||
*/
|
||||
export interface AutocompleteDTO {
|
||||
/**
|
||||
* Anzeige / Bezeichner
|
||||
*/
|
||||
display?: string;
|
||||
|
||||
/**
|
||||
* Id
|
||||
*/
|
||||
id?: string;
|
||||
|
||||
/**
|
||||
* Abfragewert
|
||||
*/
|
||||
query?: string;
|
||||
|
||||
/**
|
||||
* Art (z.B. Titel, Autor, Verlag, ...)
|
||||
*/
|
||||
type?: string;
|
||||
}
|
||||
@@ -0,0 +1,37 @@
|
||||
/* tslint:disable */
|
||||
import { OrderByDTO } from './order-by-dto';
|
||||
|
||||
/**
|
||||
* Suchabfrage
|
||||
*/
|
||||
export interface AutocompleteTokenDTO {
|
||||
/**
|
||||
* Filter
|
||||
*/
|
||||
filter?: { [key: string]: string };
|
||||
|
||||
/**
|
||||
* Fuzzy (0 = off, > 0 = on)
|
||||
*/
|
||||
fuzzy?: number;
|
||||
|
||||
/**
|
||||
* Eingabe
|
||||
*/
|
||||
input?: string;
|
||||
|
||||
/**
|
||||
* Sortierung nach
|
||||
*/
|
||||
orderBy?: Array<OrderByDTO>;
|
||||
|
||||
/**
|
||||
* Menge angezigter Treffer
|
||||
*/
|
||||
take?: number;
|
||||
|
||||
/**
|
||||
* Typ (z.B. qs, author, title, publisher, customer, order, orderitem, ...)
|
||||
*/
|
||||
type?: string;
|
||||
}
|
||||
99
generated/swagger/oms-api/src/models/availability-dto.ts
Normal file
99
generated/swagger/oms-api/src/models/availability-dto.ts
Normal file
@@ -0,0 +1,99 @@
|
||||
/* tslint:disable */
|
||||
import { TouchedBase } from './touched-base';
|
||||
import { AvailabilityType } from './availability-type';
|
||||
import { DateRangeDTO } from './date-range-dto';
|
||||
import { EntityDTOContainerOfLogisticianDTO } from './entity-dtocontainer-of-logistician-dto';
|
||||
import { PriceDTO } from './price-dto';
|
||||
import { EntityDTOContainerOfShopItemDTO2 } from './entity-dtocontainer-of-shop-item-dto2';
|
||||
import { EntityDTOContainerOfSupplierDTO } from './entity-dtocontainer-of-supplier-dto';
|
||||
export interface AvailabilityDTO extends TouchedBase {
|
||||
/**
|
||||
* Art der Verfügbarkeit
|
||||
*/
|
||||
availabilityType?: AvailabilityType;
|
||||
|
||||
/**
|
||||
* Voraussichtlicher Zustellungszeitraum
|
||||
*/
|
||||
estimatedDelivery?: DateRangeDTO;
|
||||
|
||||
/**
|
||||
* vsl. Lieferdatum
|
||||
*/
|
||||
estimatedShippingDate?: string;
|
||||
|
||||
/**
|
||||
* Auf Lager
|
||||
*/
|
||||
inStock?: number;
|
||||
|
||||
/**
|
||||
* Artikel wird vorgemerkt
|
||||
*/
|
||||
isPrebooked?: boolean;
|
||||
|
||||
/**
|
||||
* Letzte Verfügbarkeitsanfrage
|
||||
*/
|
||||
lastRequest?: string;
|
||||
|
||||
/**
|
||||
* Logistiker / Versender
|
||||
*/
|
||||
logistician?: EntityDTOContainerOfLogisticianDTO;
|
||||
|
||||
/**
|
||||
* Verkaufspreis (VK)
|
||||
*/
|
||||
price?: PriceDTO;
|
||||
|
||||
/**
|
||||
* Eindeutige Referenz zur Zuordnung
|
||||
*/
|
||||
requestReference?: string;
|
||||
|
||||
/**
|
||||
* Artikel / Produkt
|
||||
*/
|
||||
shopItem?: EntityDTOContainerOfShopItemDTO2;
|
||||
|
||||
/**
|
||||
* Stock Status Code
|
||||
*/
|
||||
ssc?: string;
|
||||
|
||||
/**
|
||||
* Stock Status Code - Beschreibung
|
||||
*/
|
||||
sscText?: string;
|
||||
|
||||
/**
|
||||
* Lieferant
|
||||
*/
|
||||
supplier?: EntityDTOContainerOfSupplierDTO;
|
||||
|
||||
/**
|
||||
* Zusätzliche Information des Lieferanten
|
||||
*/
|
||||
supplierInfo?: string;
|
||||
|
||||
/**
|
||||
* Artikel- /Produktnummer des Lieferanten
|
||||
*/
|
||||
supplierProductNumber?: string;
|
||||
|
||||
/**
|
||||
* Verfügbarkeitsstatus des Lieferanten
|
||||
*/
|
||||
supplierSSC?: string;
|
||||
|
||||
/**
|
||||
* Beschreibung des Verfügbarkeitsstatus des Lieferanten
|
||||
*/
|
||||
supplierSSCText?: string;
|
||||
|
||||
/**
|
||||
* Bezugsweg
|
||||
*/
|
||||
supplyChannel?: string;
|
||||
}
|
||||
150
generated/swagger/oms-api/src/models/availability-dto2.ts
Normal file
150
generated/swagger/oms-api/src/models/availability-dto2.ts
Normal file
@@ -0,0 +1,150 @@
|
||||
/* tslint:disable */
|
||||
import { AvailableFor } from './available-for';
|
||||
import { RangeDTO } from './range-dto';
|
||||
import { PriceDTO } from './price-dto';
|
||||
import { AvailabilityType } from './availability-type';
|
||||
|
||||
/**
|
||||
* Verfügbarkeit
|
||||
*/
|
||||
export interface AvailabilityDTO2 {
|
||||
/**
|
||||
* Alternatives Voraussichtliches Lieferdatum
|
||||
*/
|
||||
altAt?: string;
|
||||
|
||||
/**
|
||||
* Voraussichtliches Lieferdatum - von
|
||||
*/
|
||||
at?: string;
|
||||
|
||||
/**
|
||||
* Verfügbar als/für
|
||||
*/
|
||||
availableFor?: AvailableFor;
|
||||
|
||||
/**
|
||||
* EAN /ISBN13
|
||||
*/
|
||||
ean?: string;
|
||||
|
||||
/**
|
||||
* vsl. Zustellung
|
||||
*/
|
||||
estimatedDelivery?: RangeDTO;
|
||||
|
||||
/**
|
||||
* Erstverkaufstag (EVT)
|
||||
*/
|
||||
firstDayOfSale?: string;
|
||||
|
||||
/**
|
||||
* Vorgemerkt
|
||||
*/
|
||||
isPrebooked?: boolean;
|
||||
|
||||
/**
|
||||
* Produkt / Artikel PK
|
||||
*/
|
||||
itemId?: number;
|
||||
|
||||
/**
|
||||
* Logistiker
|
||||
*/
|
||||
logistician?: string;
|
||||
|
||||
/**
|
||||
* Logistiker PK
|
||||
*/
|
||||
logisticianId?: number;
|
||||
|
||||
/**
|
||||
* Spätester Bestellzeitpunkt
|
||||
*/
|
||||
orderDeadline?: string;
|
||||
|
||||
/**
|
||||
* Bestell-Referenz
|
||||
*/
|
||||
orderReference?: string;
|
||||
|
||||
/**
|
||||
* Rang
|
||||
*/
|
||||
preferred?: number;
|
||||
|
||||
/**
|
||||
* Preis (VK)
|
||||
*/
|
||||
price?: PriceDTO;
|
||||
|
||||
/**
|
||||
* Preisbindung
|
||||
*/
|
||||
priceMaintained?: boolean;
|
||||
|
||||
/**
|
||||
* Verfügbare Menge
|
||||
*/
|
||||
qty?: number;
|
||||
|
||||
/**
|
||||
* Beschreibung des StatusCode
|
||||
*/
|
||||
requestMessage?: string;
|
||||
|
||||
/**
|
||||
* Eindeutige Refrenz zur Zuordnung
|
||||
*/
|
||||
requestReference?: string;
|
||||
|
||||
/**
|
||||
* StatusCode der Verfügbarkeitsanfrage
|
||||
*/
|
||||
requestStatusCode?: string;
|
||||
|
||||
/**
|
||||
* Zeitstempel der Anfrage
|
||||
*/
|
||||
requested?: string;
|
||||
|
||||
/**
|
||||
* Shop PK
|
||||
*/
|
||||
shop?: number;
|
||||
|
||||
/**
|
||||
* Stock Status Code / Meldeschlüssel
|
||||
*/
|
||||
ssc?: string;
|
||||
|
||||
/**
|
||||
* Stock Status Code / Beschreibung
|
||||
*/
|
||||
sscText?: string;
|
||||
|
||||
/**
|
||||
* Verfügbarkeitsstatus
|
||||
*/
|
||||
status: AvailabilityType;
|
||||
|
||||
/**
|
||||
* Lieferant
|
||||
*/
|
||||
supplier?: string;
|
||||
|
||||
/**
|
||||
* Lieferant PK
|
||||
*/
|
||||
supplierId?: number;
|
||||
|
||||
/**
|
||||
* Produkt / Artikel PK des Lieferanten
|
||||
*/
|
||||
supplierProductNumber?: string;
|
||||
|
||||
/**
|
||||
* Voraussichtliches Lieferdatum - bis
|
||||
*/
|
||||
to?: string;
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
/* tslint:disable */
|
||||
|
||||
/**
|
||||
* Art der Verfügbarkeit
|
||||
*/
|
||||
export type AvailabilityType = 0 | 1 | 2 | 32 | 256 | 512 | 1024 | 2048 | 4096 | 8192 | 16384;
|
||||
6
generated/swagger/oms-api/src/models/available-for.ts
Normal file
6
generated/swagger/oms-api/src/models/available-for.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
/* tslint:disable */
|
||||
|
||||
/**
|
||||
* Verfügbar als
|
||||
*/
|
||||
export type AvailableFor = 0 | 1 | 2 | 4 | 8 | 16 | 32;
|
||||
6
generated/swagger/oms-api/src/models/avoirdupois.ts
Normal file
6
generated/swagger/oms-api/src/models/avoirdupois.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
/* tslint:disable */
|
||||
|
||||
/**
|
||||
* Handelsgewichte / Avoirdupois
|
||||
*/
|
||||
export type Avoirdupois = 0 | 1 | 2 | 4 | 8 | 16 | 32 | 64 | 128 | 256 | 512 | 1024 | 2048 | 4096;
|
||||
73
generated/swagger/oms-api/src/models/branch-dto.ts
Normal file
73
generated/swagger/oms-api/src/models/branch-dto.ts
Normal file
@@ -0,0 +1,73 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBaseOfBranchDTOAndIBranch } from './entity-dtobase-of-branch-dtoand-ibranch';
|
||||
import { AddressDTO } from './address-dto';
|
||||
import { BranchType } from './branch-type';
|
||||
import { EntityDTOContainerOfLabelDTO } from './entity-dtocontainer-of-label-dto';
|
||||
import { EntityDTOContainerOfBranchDTO } from './entity-dtocontainer-of-branch-dto';
|
||||
export interface BranchDTO extends EntityDTOBaseOfBranchDTOAndIBranch {
|
||||
/**
|
||||
* Addressdaten
|
||||
*/
|
||||
address?: AddressDTO;
|
||||
|
||||
/**
|
||||
* Filial-/Abteilungsnnummer
|
||||
*/
|
||||
branchNumber?: string;
|
||||
|
||||
/**
|
||||
* Art der Filiale/Abteilung
|
||||
*
|
||||
* NotSet = 0,
|
||||
* Store = 1,
|
||||
* WebStore = 2,
|
||||
* CallCenter = 4,
|
||||
* Headquarter = 8
|
||||
*/
|
||||
branchType?: BranchType;
|
||||
|
||||
/**
|
||||
* Standard
|
||||
*/
|
||||
isDefault?: string;
|
||||
|
||||
/**
|
||||
* Ist die Filiale aktiv
|
||||
*/
|
||||
isOnline?: boolean;
|
||||
|
||||
/**
|
||||
* Aus dieser Filiale kann bestellt werden
|
||||
*/
|
||||
isOrderingEnabled?: boolean;
|
||||
|
||||
/**
|
||||
* In diese Filiale kann bestellt werden
|
||||
*/
|
||||
isShippingEnabled?: boolean;
|
||||
|
||||
/**
|
||||
* Eindeutiger Schlüssel/Kürzel (bezogen auf das Label)
|
||||
*/
|
||||
key?: string;
|
||||
|
||||
/**
|
||||
* Label, welche die Fialiale/Abteilung angehört
|
||||
*/
|
||||
label?: EntityDTOContainerOfLabelDTO;
|
||||
|
||||
/**
|
||||
* Name der Filiale/Abteilung
|
||||
*/
|
||||
name?: string;
|
||||
|
||||
/**
|
||||
* Übergeordnete Filiale/Abteilung
|
||||
*/
|
||||
parent?: EntityDTOContainerOfBranchDTO;
|
||||
|
||||
/**
|
||||
* Kurzname
|
||||
*/
|
||||
shortName?: string;
|
||||
}
|
||||
2
generated/swagger/oms-api/src/models/branch-type.ts
Normal file
2
generated/swagger/oms-api/src/models/branch-type.ts
Normal file
@@ -0,0 +1,2 @@
|
||||
/* tslint:disable */
|
||||
export type BranchType = 0 | 1 | 2 | 4 | 8 | 16;
|
||||
36
generated/swagger/oms-api/src/models/buyer-dto.ts
Normal file
36
generated/swagger/oms-api/src/models/buyer-dto.ts
Normal file
@@ -0,0 +1,36 @@
|
||||
/* tslint:disable */
|
||||
import { AddresseeWithReferenceDTO } from './addressee-with-reference-dto';
|
||||
import { BuyerStatus } from './buyer-status';
|
||||
import { BuyerType } from './buyer-type';
|
||||
export interface BuyerDTO extends AddresseeWithReferenceDTO {
|
||||
/**
|
||||
* Auftraggeber-Nummer
|
||||
*/
|
||||
buyerNumber?: string;
|
||||
|
||||
/**
|
||||
* Kundenstatus
|
||||
*/
|
||||
buyerStatus?: BuyerStatus;
|
||||
|
||||
/**
|
||||
* Kundentyp
|
||||
*
|
||||
* ContactCustomer = 1, Kontakt-Kunde
|
||||
* BranchCustomer = 2, Filial-Kunde
|
||||
* Staff = 4, Mitarbeiter
|
||||
* B2C = 8, B2C Kunde (Anlage: Anrede, Vorname, Nachname und Adresse notwendig)
|
||||
* B2B = 16, B2B Kunde, ehemals. Qualifizierter Kunde mit Firmenadresse (Anlage: Firmenname und Adresse)
|
||||
*/
|
||||
buyerType?: BuyerType;
|
||||
|
||||
/**
|
||||
* Geburtsdatum
|
||||
*/
|
||||
dateOfBirth?: string;
|
||||
|
||||
/**
|
||||
* Einmalkunde
|
||||
*/
|
||||
isTemporaryAccount?: boolean;
|
||||
}
|
||||
6
generated/swagger/oms-api/src/models/buyer-status.ts
Normal file
6
generated/swagger/oms-api/src/models/buyer-status.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
/* tslint:disable */
|
||||
|
||||
/**
|
||||
* Auftraggeberstatus
|
||||
*/
|
||||
export type BuyerStatus = 0 | 1 | 2 | 4 | 8 | 16;
|
||||
6
generated/swagger/oms-api/src/models/buyer-type.ts
Normal file
6
generated/swagger/oms-api/src/models/buyer-type.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
/* tslint:disable */
|
||||
|
||||
/**
|
||||
* Auftraggebertyp
|
||||
*/
|
||||
export type BuyerType = 0 | 1 | 2 | 4 | 8 | 16;
|
||||
45
generated/swagger/oms-api/src/models/category-dto.ts
Normal file
45
generated/swagger/oms-api/src/models/category-dto.ts
Normal file
@@ -0,0 +1,45 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBase } from './entity-dtobase';
|
||||
import { EntityDTOContainerOfCategoryDTO } from './entity-dtocontainer-of-category-dto';
|
||||
import { EntityDTOContainerOfTenantDTO } from './entity-dtocontainer-of-tenant-dto';
|
||||
export interface CategoryDTO extends EntityDTOBase {
|
||||
/**
|
||||
* Schlüssel
|
||||
*/
|
||||
key?: string;
|
||||
|
||||
/**
|
||||
* Name/Bezeichnung der Kategorie
|
||||
*/
|
||||
name?: string;
|
||||
|
||||
/**
|
||||
* Übergeordnete Kategorie
|
||||
*/
|
||||
parent?: EntityDTOContainerOfCategoryDTO;
|
||||
|
||||
/**
|
||||
* Sortierung
|
||||
*/
|
||||
sort?: number;
|
||||
|
||||
/**
|
||||
* Start
|
||||
*/
|
||||
start?: string;
|
||||
|
||||
/**
|
||||
* Stop
|
||||
*/
|
||||
stop?: string;
|
||||
|
||||
/**
|
||||
* Mandant
|
||||
*/
|
||||
tenant?: EntityDTOContainerOfTenantDTO;
|
||||
|
||||
/**
|
||||
* Art, z.B. Warengruppe
|
||||
*/
|
||||
type?: string;
|
||||
}
|
||||
@@ -0,0 +1,22 @@
|
||||
/* tslint:disable */
|
||||
export interface ChangeStockStatusCodeValues {
|
||||
/**
|
||||
* PK OrderItemSubset
|
||||
*/
|
||||
id: number;
|
||||
|
||||
/**
|
||||
* Teilmenge
|
||||
*/
|
||||
quantity?: number;
|
||||
|
||||
/**
|
||||
* Bemerkung zum Lieferhindernis
|
||||
*/
|
||||
shippingDelayComment?: string;
|
||||
|
||||
/**
|
||||
* SSC (Meldeschlüssel)
|
||||
*/
|
||||
ssc?: string;
|
||||
}
|
||||
@@ -0,0 +1,23 @@
|
||||
/* tslint:disable */
|
||||
import { TouchedBase } from './touched-base';
|
||||
export interface CommunicationDetailsDTO extends TouchedBase {
|
||||
/**
|
||||
* E-Mail Adresse
|
||||
*/
|
||||
email?: string;
|
||||
|
||||
/**
|
||||
* Faxnummer
|
||||
*/
|
||||
fax?: string;
|
||||
|
||||
/**
|
||||
* Mobilnummer
|
||||
*/
|
||||
mobile?: string;
|
||||
|
||||
/**
|
||||
* Telefonnummer
|
||||
*/
|
||||
phone?: string;
|
||||
}
|
||||
65
generated/swagger/oms-api/src/models/company-dto.ts
Normal file
65
generated/swagger/oms-api/src/models/company-dto.ts
Normal file
@@ -0,0 +1,65 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBaseOfCompanyDTOAndICompany } from './entity-dtobase-of-company-dtoand-icompany';
|
||||
import { AddressDTO } from './address-dto';
|
||||
import { EntityDTOContainerOfCompanyDTO } from './entity-dtocontainer-of-company-dto';
|
||||
export interface CompanyDTO extends EntityDTOBaseOfCompanyDTOAndICompany {
|
||||
/**
|
||||
* Adresse
|
||||
*/
|
||||
address?: AddressDTO;
|
||||
|
||||
/**
|
||||
* Firmen-Nr
|
||||
*/
|
||||
companyNumber?: string;
|
||||
|
||||
/**
|
||||
* Kostenstelle
|
||||
*/
|
||||
costUnit?: string;
|
||||
|
||||
/**
|
||||
* Abteilung/Bereich
|
||||
*/
|
||||
department?: string;
|
||||
|
||||
/**
|
||||
* GLN
|
||||
*/
|
||||
gln?: string;
|
||||
|
||||
/**
|
||||
* Rechtsform
|
||||
*/
|
||||
legalForm?: string;
|
||||
|
||||
/**
|
||||
* Lokalisierung / (Korrespondenz-) Sprache
|
||||
*/
|
||||
locale?: string;
|
||||
|
||||
/**
|
||||
* Name der Organisation/Firma
|
||||
*/
|
||||
name?: string;
|
||||
|
||||
/**
|
||||
* Namens-Zusatz der Organisation/Firma
|
||||
*/
|
||||
nameSuffix?: string;
|
||||
|
||||
/**
|
||||
* Übergeordnete Firma
|
||||
*/
|
||||
parent?: EntityDTOContainerOfCompanyDTO;
|
||||
|
||||
/**
|
||||
* Branche
|
||||
*/
|
||||
sector?: string;
|
||||
|
||||
/**
|
||||
* Umsatzsteuer Id
|
||||
*/
|
||||
vatId?: string;
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
/* tslint:disable */
|
||||
|
||||
/**
|
||||
* Attribut zur Darstellung
|
||||
*/
|
||||
export type ComponentItemDisplayType = 0 | 1 | 2;
|
||||
67
generated/swagger/oms-api/src/models/component-item-dto.ts
Normal file
67
generated/swagger/oms-api/src/models/component-item-dto.ts
Normal file
@@ -0,0 +1,67 @@
|
||||
/* tslint:disable */
|
||||
import { TouchedBase } from './touched-base';
|
||||
import { EntityDTOContainerOfCategoryDTO } from './entity-dtocontainer-of-category-dto';
|
||||
import { ComponentItemDisplayType } from './component-item-display-type';
|
||||
import { EntityDTOContainerOfItemDTO2 } from './entity-dtocontainer-of-item-dto2';
|
||||
import { QuantityUnitType } from './quantity-unit-type';
|
||||
export interface ComponentItemDTO extends TouchedBase {
|
||||
/**
|
||||
* Kategorie des Set-Artikels (nicht Warengruppe)
|
||||
*/
|
||||
category?: EntityDTOContainerOfCategoryDTO;
|
||||
|
||||
/**
|
||||
* Beschreibung des Set-Artikels (intern)
|
||||
*/
|
||||
description?: string;
|
||||
|
||||
/**
|
||||
* Art der Anzeige
|
||||
*/
|
||||
displayType?: ComponentItemDisplayType;
|
||||
|
||||
/**
|
||||
* Artikel
|
||||
*/
|
||||
item?: EntityDTOContainerOfItemDTO2;
|
||||
|
||||
/**
|
||||
* Name des Set-Artikels (intern)
|
||||
*/
|
||||
name?: string;
|
||||
|
||||
/**
|
||||
* Menge (max.)
|
||||
*/
|
||||
quantityMax?: number;
|
||||
|
||||
/**
|
||||
* Menge (min.)
|
||||
*/
|
||||
quantityMin?: number;
|
||||
|
||||
/**
|
||||
* Mengenart (z.B. Stück, Länge, Gewicht, Fläche, Volumen, Zeit)
|
||||
*/
|
||||
quantityUnitType?: QuantityUnitType;
|
||||
|
||||
/**
|
||||
* Nicht optional / optional
|
||||
*/
|
||||
required?: boolean;
|
||||
|
||||
/**
|
||||
* Beginn
|
||||
*/
|
||||
start?: string;
|
||||
|
||||
/**
|
||||
* Ende
|
||||
*/
|
||||
stop?: string;
|
||||
|
||||
/**
|
||||
* Maßeinheit
|
||||
*/
|
||||
unit?: string;
|
||||
}
|
||||
41
generated/swagger/oms-api/src/models/components-dto.ts
Normal file
41
generated/swagger/oms-api/src/models/components-dto.ts
Normal file
@@ -0,0 +1,41 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBaseOfComponentsDTOAndIComponents } from './entity-dtobase-of-components-dtoand-icomponents';
|
||||
import { ComponentItemDTO } from './component-item-dto';
|
||||
import { QuantityUnitType } from './quantity-unit-type';
|
||||
import { SetType } from './set-type';
|
||||
export interface ComponentsDTO extends EntityDTOBaseOfComponentsDTOAndIComponents {
|
||||
/**
|
||||
* Artikel / Produkte
|
||||
*/
|
||||
items?: Array<ComponentItemDTO>;
|
||||
|
||||
/**
|
||||
* Gesamtmenge aller Komponenten(max.)
|
||||
*/
|
||||
overallQuantityMax?: number;
|
||||
|
||||
/**
|
||||
* Gesamtmenge aller Komponenten (min.)
|
||||
*/
|
||||
overallQuantityMin?: number;
|
||||
|
||||
/**
|
||||
* Mengenart (z.B. Stück, Länge, Gewicht, Fläche, Volumen, Zeit)
|
||||
*/
|
||||
quantityUnitType?: QuantityUnitType;
|
||||
|
||||
/**
|
||||
* Referenzmenge
|
||||
*/
|
||||
referenceQuantity?: number;
|
||||
|
||||
/**
|
||||
* Feste oder auswählbare Komponenten
|
||||
*/
|
||||
type?: SetType;
|
||||
|
||||
/**
|
||||
* Maßeinheit
|
||||
*/
|
||||
unit?: string;
|
||||
}
|
||||
26
generated/swagger/oms-api/src/models/contributor-dto.ts
Normal file
26
generated/swagger/oms-api/src/models/contributor-dto.ts
Normal file
@@ -0,0 +1,26 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBaseOfContributorDTOAndIContributor } from './entity-dtobase-of-contributor-dtoand-icontributor';
|
||||
import { OrganisationNamesDTO } from './organisation-names-dto';
|
||||
import { PersonNamesDTO } from './person-names-dto';
|
||||
import { EntityDTOContainerOfTenantDTO } from './entity-dtocontainer-of-tenant-dto';
|
||||
export interface ContributorDTO extends EntityDTOBaseOfContributorDTOAndIContributor {
|
||||
/**
|
||||
* Anzeigename
|
||||
*/
|
||||
friendlyName?: string;
|
||||
|
||||
/**
|
||||
* Organisation / Firma
|
||||
*/
|
||||
organisation?: OrganisationNamesDTO;
|
||||
|
||||
/**
|
||||
* Person
|
||||
*/
|
||||
person?: PersonNamesDTO;
|
||||
|
||||
/**
|
||||
* Mandant
|
||||
*/
|
||||
tenant?: EntityDTOContainerOfTenantDTO;
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
/* tslint:disable */
|
||||
import { TouchedBase } from './touched-base';
|
||||
import { EntityDTOContainerOfContributorDTO } from './entity-dtocontainer-of-contributor-dto';
|
||||
export interface ContributorHelperDTO extends TouchedBase {
|
||||
contributor?: EntityDTOContainerOfContributorDTO;
|
||||
type?: string;
|
||||
}
|
||||
23
generated/swagger/oms-api/src/models/country-dto.ts
Normal file
23
generated/swagger/oms-api/src/models/country-dto.ts
Normal file
@@ -0,0 +1,23 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBaseOfCountryDTOAndICountry } from './entity-dtobase-of-country-dtoand-icountry';
|
||||
export interface CountryDTO extends EntityDTOBaseOfCountryDTOAndICountry {
|
||||
/**
|
||||
* Standard
|
||||
*/
|
||||
isDefault?: string;
|
||||
|
||||
/**
|
||||
* ISO Code 3166 A 3
|
||||
*/
|
||||
isO3166_A_3?: string;
|
||||
|
||||
/**
|
||||
* Name
|
||||
*/
|
||||
name?: string;
|
||||
|
||||
/**
|
||||
* Reihenfolge
|
||||
*/
|
||||
sort?: number;
|
||||
}
|
||||
6
generated/swagger/oms-api/src/models/cruda.ts
Normal file
6
generated/swagger/oms-api/src/models/cruda.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
/* tslint:disable */
|
||||
|
||||
/**
|
||||
* CRUDA (Create, Read, Update, Delete, Archive)
|
||||
*/
|
||||
export type CRUDA = 0 | 1 | 2 | 4 | 8 | 16;
|
||||
13
generated/swagger/oms-api/src/models/date-range-dto.ts
Normal file
13
generated/swagger/oms-api/src/models/date-range-dto.ts
Normal file
@@ -0,0 +1,13 @@
|
||||
/* tslint:disable */
|
||||
import { TouchedBase } from './touched-base';
|
||||
export interface DateRangeDTO extends TouchedBase {
|
||||
/**
|
||||
* Begin
|
||||
*/
|
||||
start?: string;
|
||||
|
||||
/**
|
||||
* Ende
|
||||
*/
|
||||
stop?: string;
|
||||
}
|
||||
16
generated/swagger/oms-api/src/models/date-range.ts
Normal file
16
generated/swagger/oms-api/src/models/date-range.ts
Normal file
@@ -0,0 +1,16 @@
|
||||
/* tslint:disable */
|
||||
|
||||
/**
|
||||
* Zeitraum
|
||||
*/
|
||||
export interface DateRange {
|
||||
/**
|
||||
* Beginn
|
||||
*/
|
||||
start: string;
|
||||
|
||||
/**
|
||||
* Ende
|
||||
*/
|
||||
stop: string;
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
/* tslint:disable */
|
||||
import { OrderItemListItemDTO } from './order-item-list-item-dto';
|
||||
import { OrderItemType } from './order-item-type';
|
||||
export interface DBHOrderItemListItemDTO extends OrderItemListItemDTO {
|
||||
billingZipCode?: string;
|
||||
externalRepositories?: string;
|
||||
fetchOnDeliveryNote?: boolean;
|
||||
invoiceId?: number;
|
||||
logisticianId?: number;
|
||||
logisticianName?: string;
|
||||
orderItemType?: OrderItemType;
|
||||
orderedAtSupplier?: string;
|
||||
payerId?: number;
|
||||
paymentReferenceNumber?: string;
|
||||
shippingNoteId?: number;
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
/* tslint:disable */
|
||||
|
||||
/**
|
||||
* Deklarationspflichtige Zusatzstoffe in Lebensmitteln
|
||||
*/
|
||||
export type DeclarableFoodAdditives =
|
||||
| 0
|
||||
| 1
|
||||
| 2
|
||||
| 4
|
||||
| 8
|
||||
| 16
|
||||
| 32
|
||||
| 64
|
||||
| 128
|
||||
| 256
|
||||
| 512
|
||||
| 1024
|
||||
| 2048
|
||||
| 4096
|
||||
| 8192
|
||||
| 16384
|
||||
| 32768
|
||||
| 65536;
|
||||
@@ -0,0 +1,6 @@
|
||||
/* tslint:disable */
|
||||
|
||||
/**
|
||||
* Art des Inhalts
|
||||
*/
|
||||
export type DialogContentType = 0 | 1 | 2 | 4 | 8 | 16 | 32 | 64 | 128;
|
||||
59
generated/swagger/oms-api/src/models/dialog-of-string.ts
Normal file
59
generated/swagger/oms-api/src/models/dialog-of-string.ts
Normal file
@@ -0,0 +1,59 @@
|
||||
/* tslint:disable */
|
||||
import { KeyValueDTOOfStringAndString } from './key-value-dtoof-string-and-string';
|
||||
import { DialogContentType } from './dialog-content-type';
|
||||
import { DialogSettings } from './dialog-settings';
|
||||
|
||||
/**
|
||||
* Dialog / Meldung
|
||||
*/
|
||||
export interface DialogOfString {
|
||||
/**
|
||||
* Aktionen
|
||||
*/
|
||||
actions?: Array<KeyValueDTOOfStringAndString>;
|
||||
|
||||
/**
|
||||
* null/0 = none, 1 = one, -1 = any, Actions.Count = all
|
||||
*/
|
||||
actionsRequired?: number;
|
||||
|
||||
/**
|
||||
* Bereich (z.B. inline, toaster, status/embedded, dialog)
|
||||
*/
|
||||
area?: string;
|
||||
|
||||
/**
|
||||
* Inhalt
|
||||
*/
|
||||
content?: string;
|
||||
|
||||
/**
|
||||
* Art des Inhalts
|
||||
*/
|
||||
contentType: DialogContentType;
|
||||
|
||||
/**
|
||||
* Beschreibung / Info
|
||||
*/
|
||||
description?: string;
|
||||
|
||||
/**
|
||||
* Zeit in ms, nachder der Dialog ausgeblendet wird
|
||||
*/
|
||||
displayTimeout?: number;
|
||||
|
||||
/**
|
||||
* Dialog-Einstellungen
|
||||
*/
|
||||
settings: DialogSettings;
|
||||
|
||||
/**
|
||||
* Untertitel
|
||||
*/
|
||||
subtitle?: string;
|
||||
|
||||
/**
|
||||
* Überschrift / Titel
|
||||
*/
|
||||
title?: string;
|
||||
}
|
||||
2
generated/swagger/oms-api/src/models/dialog-settings.ts
Normal file
2
generated/swagger/oms-api/src/models/dialog-settings.ts
Normal file
@@ -0,0 +1,2 @@
|
||||
/* tslint:disable */
|
||||
export type DialogSettings = 0 | 1 | 2 | 4;
|
||||
26
generated/swagger/oms-api/src/models/diff-dto.ts
Normal file
26
generated/swagger/oms-api/src/models/diff-dto.ts
Normal file
@@ -0,0 +1,26 @@
|
||||
/* tslint:disable */
|
||||
|
||||
/**
|
||||
* Diff
|
||||
*/
|
||||
export interface DiffDTO {
|
||||
/**
|
||||
* Name / Bezeichner
|
||||
*/
|
||||
caption?: string;
|
||||
|
||||
/**
|
||||
* Vorheriger Wert
|
||||
*/
|
||||
previousValue?: string;
|
||||
|
||||
/**
|
||||
* Property
|
||||
*/
|
||||
property?: string;
|
||||
|
||||
/**
|
||||
* Aktueller Wert
|
||||
*/
|
||||
value?: string;
|
||||
}
|
||||
@@ -0,0 +1,66 @@
|
||||
/* tslint:disable */
|
||||
import { AddressDTO } from './address-dto';
|
||||
import { CommunicationDetailsDTO } from './communication-details-dto';
|
||||
import { ExternalReferenceDTO } from './external-reference-dto';
|
||||
import { Gender } from './gender';
|
||||
import { OrganisationDTO } from './organisation-dto';
|
||||
|
||||
/**
|
||||
* Anschrift / Kontakt
|
||||
*/
|
||||
export interface DisplayAddresseeDTO {
|
||||
/**
|
||||
* Adresse
|
||||
*/
|
||||
address?: AddressDTO;
|
||||
|
||||
/**
|
||||
* Kontakt-Kommunikationsdetails
|
||||
*/
|
||||
communicationDetails?: CommunicationDetailsDTO;
|
||||
|
||||
/**
|
||||
* Externe Datensatzreferenz
|
||||
*/
|
||||
externalReference?: ExternalReferenceDTO;
|
||||
|
||||
/**
|
||||
* Vorname
|
||||
*/
|
||||
firstName?: string;
|
||||
|
||||
/**
|
||||
* Anrede
|
||||
*
|
||||
* NotSet = 0, Wert nicht gesetzt
|
||||
* Neutrum = 1, Divers
|
||||
* Male = 2, Herr
|
||||
* Female = 4, Frau
|
||||
*/
|
||||
gender: Gender;
|
||||
|
||||
/**
|
||||
* Nachname
|
||||
*/
|
||||
lastName?: string;
|
||||
|
||||
/**
|
||||
* Lokalisierung / (Korrespondenz-) Sprache
|
||||
*/
|
||||
locale?: string;
|
||||
|
||||
/**
|
||||
* Nummer / Code
|
||||
*/
|
||||
number?: string;
|
||||
|
||||
/**
|
||||
* Organisation/Firma
|
||||
*/
|
||||
organisation?: OrganisationDTO;
|
||||
|
||||
/**
|
||||
* Akademischer Titel
|
||||
*/
|
||||
title?: string;
|
||||
}
|
||||
35
generated/swagger/oms-api/src/models/display-branch-dto.ts
Normal file
35
generated/swagger/oms-api/src/models/display-branch-dto.ts
Normal file
@@ -0,0 +1,35 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBaseOfDisplayBranchDTOAndIBranch } from './entity-dtobase-of-display-branch-dtoand-ibranch';
|
||||
import { AddressDTO } from './address-dto';
|
||||
import { CommunicationDetailsDTO } from './communication-details-dto';
|
||||
export interface DisplayBranchDTO extends EntityDTOBaseOfDisplayBranchDTOAndIBranch {
|
||||
/**
|
||||
* Adresse
|
||||
*/
|
||||
address?: AddressDTO;
|
||||
|
||||
/**
|
||||
* Filialenummer
|
||||
*/
|
||||
branchNumber?: string;
|
||||
|
||||
/**
|
||||
* Externe Kontaktdaten
|
||||
*/
|
||||
communicationDetails?: CommunicationDetailsDTO;
|
||||
|
||||
/**
|
||||
* Kürzel
|
||||
*/
|
||||
key?: string;
|
||||
|
||||
/**
|
||||
* Name / Bezeichner
|
||||
*/
|
||||
name?: string;
|
||||
|
||||
/**
|
||||
* Web
|
||||
*/
|
||||
web?: string;
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBaseOfDisplayLogisticianDTOAndILogistician } from './entity-dtobase-of-display-logistician-dtoand-ilogistician';
|
||||
export interface DisplayLogisticianDTO extends EntityDTOBaseOfDisplayLogisticianDTOAndILogistician {
|
||||
/**
|
||||
* GLN
|
||||
*/
|
||||
gln?: string;
|
||||
|
||||
/**
|
||||
* Eindeutige Nummer
|
||||
*/
|
||||
logisticianNumber?: string;
|
||||
|
||||
/**
|
||||
* Name / Bezeichner
|
||||
*/
|
||||
name?: string;
|
||||
}
|
||||
157
generated/swagger/oms-api/src/models/display-order-dto.ts
Normal file
157
generated/swagger/oms-api/src/models/display-order-dto.ts
Normal file
@@ -0,0 +1,157 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBaseOfDisplayOrderDTOAndIOrder } from './entity-dtobase-of-display-order-dtoand-iorder';
|
||||
import { KeyValueDTOOfStringAndString } from './key-value-dtoof-string-and-string';
|
||||
import { DisplayAddresseeDTO } from './display-addressee-dto';
|
||||
import { BuyerType } from './buyer-type';
|
||||
import { EnvironmentChannel } from './environment-channel';
|
||||
import { DisplayOrderItemDTO } from './display-order-item-dto';
|
||||
import { LinkedRecordDTO } from './linked-record-dto';
|
||||
import { DisplayLogisticianDTO } from './display-logistician-dto';
|
||||
import { NotificationChannel } from './notification-channel';
|
||||
import { DisplayBranchDTO } from './display-branch-dto';
|
||||
import { OrderType } from './order-type';
|
||||
import { DisplayOrderPaymentDTO } from './display-order-payment-dto';
|
||||
import { TermsOfDeliveryDTO } from './terms-of-delivery-dto';
|
||||
export interface DisplayOrderDTO extends EntityDTOBaseOfDisplayOrderDTOAndIOrder {
|
||||
/**
|
||||
* Mögliche Aktionen
|
||||
*/
|
||||
actions?: Array<KeyValueDTOOfStringAndString>;
|
||||
|
||||
/**
|
||||
* Auftraggeber
|
||||
*/
|
||||
buyer?: DisplayAddresseeDTO;
|
||||
|
||||
/**
|
||||
* Bemerkung des Auftraggebers
|
||||
*/
|
||||
buyerComment?: string;
|
||||
|
||||
/**
|
||||
* Gastkonto
|
||||
*/
|
||||
buyerIsGuestAccount?: boolean;
|
||||
|
||||
/**
|
||||
* Auftraggebernummer
|
||||
*/
|
||||
buyerNumber?: string;
|
||||
|
||||
/**
|
||||
* Auftraggebertyp
|
||||
*/
|
||||
buyerType?: BuyerType;
|
||||
|
||||
/**
|
||||
* Bestellkanal
|
||||
*/
|
||||
clientChannel?: EnvironmentChannel;
|
||||
|
||||
/**
|
||||
* Zeitstempel, wenn die Bestellung einen finalen Zustand erreicht hat
|
||||
*/
|
||||
completedDate?: string;
|
||||
|
||||
/**
|
||||
* Zusätzliche Markierungen
|
||||
*/
|
||||
features?: { [key: string]: string };
|
||||
|
||||
/**
|
||||
* Bestellposten
|
||||
*/
|
||||
items?: Array<DisplayOrderItemDTO>;
|
||||
|
||||
/**
|
||||
* Anzahl der Bestellposten (readonly)
|
||||
*/
|
||||
itemsCount?: number;
|
||||
|
||||
/**
|
||||
* Verknüpfte Datensätze (readonly)
|
||||
*/
|
||||
linkedRecords?: Array<LinkedRecordDTO>;
|
||||
|
||||
/**
|
||||
* Logistiker (wenn Versand)
|
||||
*/
|
||||
logistician?: DisplayLogisticianDTO;
|
||||
|
||||
/**
|
||||
* Benachrichtigungskanäle
|
||||
*/
|
||||
notificationChannels?: NotificationChannel;
|
||||
|
||||
/**
|
||||
* Filiale/Webshop in der die Bestellung ausgelöst wurde
|
||||
*/
|
||||
orderBranch?: DisplayBranchDTO;
|
||||
|
||||
/**
|
||||
* Datum des Bestelleingangs
|
||||
*/
|
||||
orderDate?: string;
|
||||
|
||||
/**
|
||||
* Eindeutige Bestellnummer
|
||||
*/
|
||||
orderNumber?: string;
|
||||
|
||||
/**
|
||||
* Art der Bestellung
|
||||
*
|
||||
* NotSet = 0,
|
||||
* Branch = 1, Filialbestellung
|
||||
* Mail = 2, Versandbestellung
|
||||
* Download = 4, Download-Bestellung
|
||||
* BranchAndDownload = Branch | Download, Gemischt: Filialbestellung und Download-Bestellung
|
||||
* MailAndDownload = Mail | Download Gemischt: Versandbestellung und Download-Bestellung
|
||||
*/
|
||||
orderType: OrderType;
|
||||
|
||||
/**
|
||||
* Bestellwert (readonly)
|
||||
*/
|
||||
orderValue?: number;
|
||||
|
||||
/**
|
||||
* Währung des Bestellwerts (readonly)
|
||||
*/
|
||||
orderValueCurrency?: string;
|
||||
|
||||
/**
|
||||
* Regulierer/Rechnungsadresse (Rechnungsempfänger)
|
||||
*/
|
||||
payer?: DisplayAddresseeDTO;
|
||||
|
||||
/**
|
||||
* Gastkonto
|
||||
*/
|
||||
payerIsGuestAccount?: boolean;
|
||||
|
||||
/**
|
||||
* Regulierernummer
|
||||
*/
|
||||
payerNumber?: string;
|
||||
|
||||
/**
|
||||
* Zahlung
|
||||
*/
|
||||
payment?: DisplayOrderPaymentDTO;
|
||||
|
||||
/**
|
||||
* Lieferadresse (wenn Versandbestellung)
|
||||
*/
|
||||
shippingAddress?: DisplayAddresseeDTO;
|
||||
|
||||
/**
|
||||
* Zielfiliale (wenn Fililalbestellung)
|
||||
*/
|
||||
targetBranch?: DisplayBranchDTO;
|
||||
|
||||
/**
|
||||
* Lieferbedingungen
|
||||
*/
|
||||
termsOfDelivery?: TermsOfDeliveryDTO;
|
||||
}
|
||||
@@ -0,0 +1,74 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBaseOfDisplayOrderItemDTOAndIOrderItem } from './entity-dtobase-of-display-order-item-dtoand-iorder-item';
|
||||
import { DisplayOrderDTO } from './display-order-dto';
|
||||
import { PriceDTO } from './price-dto';
|
||||
import { ProductDTO } from './product-dto';
|
||||
import { PromotionDTO } from './promotion-dto';
|
||||
import { QuantityUnitType } from './quantity-unit-type';
|
||||
import { DisplayOrderItemSubsetDTO } from './display-order-item-subset-dto';
|
||||
export interface DisplayOrderItemDTO extends EntityDTOBaseOfDisplayOrderItemDTOAndIOrderItem {
|
||||
/**
|
||||
* Bemerkung des Auftraggebers
|
||||
*/
|
||||
buyerComment?: string;
|
||||
|
||||
/**
|
||||
* Beschreibung
|
||||
*/
|
||||
description?: string;
|
||||
|
||||
/**
|
||||
* Zusätzliche Markierungen (z.B. Abo, ...)
|
||||
*/
|
||||
features?: { [key: string]: string };
|
||||
|
||||
/**
|
||||
* Bestellung
|
||||
*/
|
||||
order?: DisplayOrderDTO;
|
||||
|
||||
/**
|
||||
* Datum des Bestelleingangs (dieses Bestellpostens)
|
||||
*/
|
||||
orderDate?: string;
|
||||
|
||||
/**
|
||||
* Bestellposten-Nummer
|
||||
*/
|
||||
orderItemNumber?: string;
|
||||
|
||||
/**
|
||||
* Verkaufspreis (VK)
|
||||
*/
|
||||
price?: PriceDTO;
|
||||
|
||||
/**
|
||||
* Produkt
|
||||
*/
|
||||
product?: ProductDTO;
|
||||
|
||||
/**
|
||||
* Werbeaktion
|
||||
*/
|
||||
promotion?: PromotionDTO;
|
||||
|
||||
/**
|
||||
* Menge / Stückzahl
|
||||
*/
|
||||
quantity?: number;
|
||||
|
||||
/**
|
||||
* Mengeneinheit
|
||||
*/
|
||||
quantityUnit?: string;
|
||||
|
||||
/**
|
||||
* Art der Menge
|
||||
*/
|
||||
quantityUnitType: QuantityUnitType;
|
||||
|
||||
/**
|
||||
* Untergeordnete Artikel (z.B. Set-Artikel, Artikel mit unterschiedlichen MwSt-Sätzen (MwSt-Bundle), ...)
|
||||
*/
|
||||
subsetItems?: Array<DisplayOrderItemSubsetDTO>;
|
||||
}
|
||||
@@ -0,0 +1,102 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBaseOfDisplayOrderItemSubsetDTOAndIOrderItemStatus } from './entity-dtobase-of-display-order-item-subset-dtoand-iorder-item-status';
|
||||
import { DateRangeDTO } from './date-range-dto';
|
||||
import { DisplayOrderItemDTO } from './display-order-item-dto';
|
||||
import { OrderItemProcessingStatusValue } from './order-item-processing-status-value';
|
||||
export interface DisplayOrderItemSubsetDTO extends EntityDTOBaseOfDisplayOrderItemSubsetDTOAndIOrderItemStatus {
|
||||
/**
|
||||
* Abholfachnummer
|
||||
*/
|
||||
compartmentCode?: string;
|
||||
|
||||
/**
|
||||
* Abholfach-Zusatz
|
||||
*/
|
||||
compartmentInfo?: string;
|
||||
|
||||
/**
|
||||
* Im Abholfach ab
|
||||
*/
|
||||
compartmentStart?: string;
|
||||
|
||||
/**
|
||||
* In Abholfach bis
|
||||
*/
|
||||
compartmentStop?: string;
|
||||
|
||||
/**
|
||||
* Beschreibung
|
||||
*/
|
||||
description?: string;
|
||||
|
||||
/**
|
||||
* Voraussichtlicher Zustellzeitraum
|
||||
*/
|
||||
estimatedDelivery?: DateRangeDTO;
|
||||
|
||||
/**
|
||||
* Voraussichtliches Lieferdatum
|
||||
*/
|
||||
estimatedShippingDate?: string;
|
||||
|
||||
/**
|
||||
* Bestellposten
|
||||
*/
|
||||
orderItem?: DisplayOrderItemDTO;
|
||||
|
||||
/**
|
||||
* Eindeutige Nummer der Bestellposten-Teilmenge
|
||||
*/
|
||||
orderItemSubsetNumber?: string;
|
||||
|
||||
/**
|
||||
* Requested pick up date / Gewünschtes Abholdatum
|
||||
*/
|
||||
preferredPickUpDate?: string;
|
||||
|
||||
/**
|
||||
* Verarbeitungsstatus
|
||||
*/
|
||||
processingStatus: OrderItemProcessingStatusValue;
|
||||
|
||||
/**
|
||||
* Letzte Änderung des Verarbeitungsstatus
|
||||
*/
|
||||
processingStatusDate?: string;
|
||||
|
||||
/**
|
||||
* Menge/Stückzahl
|
||||
*/
|
||||
quantity?: number;
|
||||
specialComment?: string;
|
||||
|
||||
/**
|
||||
* Verfügbarkeitsstatus
|
||||
*/
|
||||
ssc?: string;
|
||||
|
||||
/**
|
||||
* Beschreibungstext des Verfügbarkeitsstatus
|
||||
*/
|
||||
sscText?: string;
|
||||
|
||||
/**
|
||||
* Lieferantennummer /-kürzel
|
||||
*/
|
||||
supplierLabel?: string;
|
||||
|
||||
/**
|
||||
* Name / Bezeichner des Lieferanten
|
||||
*/
|
||||
supplierName?: string;
|
||||
|
||||
/**
|
||||
* Bezugsweg
|
||||
*/
|
||||
supplyChannel?: string;
|
||||
|
||||
/**
|
||||
* Nummer der Lieferung (z.B. Paketverfolgungs-Nummer)
|
||||
*/
|
||||
trackingNumber?: string;
|
||||
}
|
||||
@@ -0,0 +1,81 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBaseOfDisplayOrderPaymentDTOAndIReadOnlyPayment } from './entity-dtobase-of-display-order-payment-dtoand-iread-only-payment';
|
||||
import { PaymentType } from './payment-type';
|
||||
export interface DisplayOrderPaymentDTO extends EntityDTOBaseOfDisplayOrderPaymentDTOAndIReadOnlyPayment {
|
||||
/**
|
||||
* Storniert am
|
||||
*/
|
||||
cancelled?: string;
|
||||
|
||||
/**
|
||||
* Erfolgreich abgeschlossen
|
||||
*/
|
||||
completed?: string;
|
||||
|
||||
/**
|
||||
* Währung
|
||||
*/
|
||||
currency?: string;
|
||||
|
||||
/**
|
||||
* Zahlungsziel / Fälligkeit
|
||||
*/
|
||||
dateOfPayment?: string;
|
||||
|
||||
/**
|
||||
* Zahlung ist durchzuführen
|
||||
*/
|
||||
paymentActionRequired: boolean;
|
||||
|
||||
/**
|
||||
* Bemerkung zur Bezahlung
|
||||
*/
|
||||
paymentComment?: string;
|
||||
|
||||
/**
|
||||
* Zahlungsnummer
|
||||
*/
|
||||
paymentNumber?: string;
|
||||
|
||||
/**
|
||||
* Zahlungsart
|
||||
*
|
||||
* NotSet = 0,
|
||||
* WhenCollecting = 1, Bei Abholung
|
||||
* Free = 2, Kostenfrei
|
||||
* Cash = 4, Barzahlung
|
||||
* DirectDebit = 8, Einzugsermächtigung
|
||||
* DebitAdviceMandate = 16, Abbuchungsauftrag, dauerhafte Einzugsermächtigung
|
||||
* DebitCard = 32, Debit Karte(EC-Karte)
|
||||
* CreditCard = 64, Kreditkarte(Master, Amex, ...)
|
||||
* Invoice = 128, Rechnung
|
||||
* PrePayment = 256, Vorauszahlung
|
||||
* Voucher = 512, Gutschein
|
||||
* CollectiveInvoice = 1024, Sammelrechnung
|
||||
* PayPal = 2048, PayPal
|
||||
* InstantTransfer = 4096, Sofortüberweisung, Giropay, DIRECTeBanking, ...
|
||||
* PayOnDelivery = 8192, Nachnahme
|
||||
* BonusCard = 16384, Kundenkarte
|
||||
*/
|
||||
paymentType: PaymentType;
|
||||
|
||||
/**
|
||||
* Versandkosten
|
||||
*/
|
||||
shipping?: number;
|
||||
|
||||
/**
|
||||
* Netto
|
||||
*/
|
||||
subtotal?: number;
|
||||
|
||||
/**
|
||||
* MwSt.
|
||||
*/
|
||||
tax?: number;
|
||||
|
||||
/**
|
||||
* Brutto
|
||||
*/
|
||||
total: number;
|
||||
}
|
||||
45
generated/swagger/oms-api/src/models/entity-dto.ts
Normal file
45
generated/swagger/oms-api/src/models/entity-dto.ts
Normal file
@@ -0,0 +1,45 @@
|
||||
/* tslint:disable */
|
||||
import { TouchedBase } from './touched-base';
|
||||
import { CRUDA } from './cruda';
|
||||
import { EntityStatus } from './entity-status';
|
||||
export interface EntityDTO extends TouchedBase {
|
||||
/**
|
||||
* Zuletzt geändert am
|
||||
*/
|
||||
changed?: string;
|
||||
|
||||
/**
|
||||
* Erstellt am
|
||||
*/
|
||||
created?: string;
|
||||
|
||||
/**
|
||||
* Can Create|Read|Update|Delete|Archive
|
||||
*/
|
||||
cruda?: CRUDA;
|
||||
|
||||
/**
|
||||
* PK
|
||||
*/
|
||||
id?: number;
|
||||
|
||||
/**
|
||||
* Public visible PK
|
||||
*/
|
||||
pId?: string;
|
||||
|
||||
/**
|
||||
* Status (Online, Offline, Deleted)
|
||||
*/
|
||||
status?: EntityStatus;
|
||||
|
||||
/**
|
||||
* PK
|
||||
*/
|
||||
uId?: string;
|
||||
|
||||
/**
|
||||
* Version
|
||||
*/
|
||||
version?: number;
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBase } from './entity-dtobase';
|
||||
export interface EntityDTOBaseOfBranchDTOAndIBranch extends EntityDTOBase {}
|
||||
@@ -0,0 +1,3 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBase } from './entity-dtobase';
|
||||
export interface EntityDTOBaseOfCompanyDTOAndICompany extends EntityDTOBase {}
|
||||
@@ -0,0 +1,3 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBase } from './entity-dtobase';
|
||||
export interface EntityDTOBaseOfComponentsDTOAndIComponents extends EntityDTOBase {}
|
||||
@@ -0,0 +1,3 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBase } from './entity-dtobase';
|
||||
export interface EntityDTOBaseOfContributorDTOAndIContributor extends EntityDTOBase {}
|
||||
@@ -0,0 +1,3 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBase } from './entity-dtobase';
|
||||
export interface EntityDTOBaseOfCountryDTOAndICountry extends EntityDTOBase {}
|
||||
@@ -0,0 +1,3 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBase } from './entity-dtobase';
|
||||
export interface EntityDTOBaseOfDisplayBranchDTOAndIBranch extends EntityDTOBase {}
|
||||
@@ -0,0 +1,3 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBase } from './entity-dtobase';
|
||||
export interface EntityDTOBaseOfDisplayLogisticianDTOAndILogistician extends EntityDTOBase {}
|
||||
@@ -0,0 +1,3 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBase } from './entity-dtobase';
|
||||
export interface EntityDTOBaseOfDisplayOrderDTOAndIOrder extends EntityDTOBase {}
|
||||
@@ -0,0 +1,3 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBase } from './entity-dtobase';
|
||||
export interface EntityDTOBaseOfDisplayOrderItemDTOAndIOrderItem extends EntityDTOBase {}
|
||||
@@ -0,0 +1,3 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBase } from './entity-dtobase';
|
||||
export interface EntityDTOBaseOfDisplayOrderItemSubsetDTOAndIOrderItemStatus extends EntityDTOBase {}
|
||||
@@ -0,0 +1,3 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBase } from './entity-dtobase';
|
||||
export interface EntityDTOBaseOfDisplayOrderPaymentDTOAndIReadOnlyPayment extends EntityDTOBase {}
|
||||
@@ -0,0 +1,3 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBase } from './entity-dtobase';
|
||||
export interface EntityDTOBaseOfFileDTOAndIFile extends EntityDTOBase {}
|
||||
@@ -0,0 +1,3 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBase } from './entity-dtobase';
|
||||
export interface EntityDTOBaseOfItemDTOAndIItem2 extends EntityDTOBase {}
|
||||
@@ -0,0 +1,3 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBase } from './entity-dtobase';
|
||||
export interface EntityDTOBaseOfItemDTOAndIItem extends EntityDTOBase {}
|
||||
@@ -0,0 +1,3 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBase } from './entity-dtobase';
|
||||
export interface EntityDTOBaseOfLabelDTOAndILabel extends EntityDTOBase {}
|
||||
@@ -0,0 +1,3 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBase } from './entity-dtobase';
|
||||
export interface EntityDTOBaseOfLogisticianDTOAndILogistician extends EntityDTOBase {}
|
||||
@@ -0,0 +1,3 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBase } from './entity-dtobase';
|
||||
export interface EntityDTOBaseOfOrderDTOAndIOrder extends EntityDTOBase {}
|
||||
@@ -0,0 +1,3 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBase } from './entity-dtobase';
|
||||
export interface EntityDTOBaseOfOrderItemDTOAndIOrderItem extends EntityDTOBase {}
|
||||
@@ -0,0 +1,3 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBase } from './entity-dtobase';
|
||||
export interface EntityDTOBaseOfOrderItemSubsetDTOAndIOrderItemStatus extends EntityDTOBase {}
|
||||
@@ -0,0 +1,3 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBase } from './entity-dtobase';
|
||||
export interface EntityDTOBaseOfOrderItemSubsetTaskDTOAndIOrderItemStatusTask extends EntityDTOBase {}
|
||||
@@ -0,0 +1,3 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBase } from './entity-dtobase';
|
||||
export interface EntityDTOBaseOfOrderItemSubsetTransitionDTOAndIOrderItemStatusTransition extends EntityDTOBase {}
|
||||
@@ -0,0 +1,3 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBase } from './entity-dtobase';
|
||||
export interface EntityDTOBaseOfPackageDTOAndIPackage extends EntityDTOBase {}
|
||||
@@ -0,0 +1,3 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBase } from './entity-dtobase';
|
||||
export interface EntityDTOBaseOfPayerDTOAndIPayer extends EntityDTOBase {}
|
||||
@@ -0,0 +1,3 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBase } from './entity-dtobase';
|
||||
export interface EntityDTOBaseOfPaymentDTOAndIReadOnlyPayment extends EntityDTOBase {}
|
||||
@@ -0,0 +1,3 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBase } from './entity-dtobase';
|
||||
export interface EntityDTOBaseOfReceiptDTOAndIReceipt extends EntityDTOBase {}
|
||||
@@ -0,0 +1,3 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBase } from './entity-dtobase';
|
||||
export interface EntityDTOBaseOfReceiptItemDTOAndIReceiptItem extends EntityDTOBase {}
|
||||
@@ -0,0 +1,3 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBase } from './entity-dtobase';
|
||||
export interface EntityDTOBaseOfShippingAddressDTOAndIShippingAddress extends EntityDTOBase {}
|
||||
@@ -0,0 +1,3 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBase } from './entity-dtobase';
|
||||
export interface EntityDTOBaseOfShopItemDTOAndIShopItem2 extends EntityDTOBase {}
|
||||
@@ -0,0 +1,3 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBase } from './entity-dtobase';
|
||||
export interface EntityDTOBaseOfShopItemDTOAndIShopItem extends EntityDTOBase {}
|
||||
@@ -0,0 +1,3 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBase } from './entity-dtobase';
|
||||
export interface EntityDTOBaseOfStockStatusCodeDTOAndIStockStatusCode extends EntityDTOBase {}
|
||||
@@ -0,0 +1,3 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBase } from './entity-dtobase';
|
||||
export interface EntityDTOBaseOfSupplierDTOAndISupplier extends EntityDTOBase {}
|
||||
@@ -0,0 +1,3 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBase } from './entity-dtobase';
|
||||
export interface EntityDTOBaseOfTenantDTOAndITenant extends EntityDTOBase {}
|
||||
@@ -0,0 +1,3 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBase } from './entity-dtobase';
|
||||
export interface EntityDTOBaseOfTextDTOAndIText extends EntityDTOBase {}
|
||||
@@ -0,0 +1,3 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBase } from './entity-dtobase';
|
||||
export interface EntityDTOBaseOfUserDTOAndIUser extends EntityDTOBase {}
|
||||
@@ -0,0 +1,3 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOBase } from './entity-dtobase';
|
||||
export interface EntityDTOBaseOfVATDTOAndIVAT extends EntityDTOBase {}
|
||||
3
generated/swagger/oms-api/src/models/entity-dtobase.ts
Normal file
3
generated/swagger/oms-api/src/models/entity-dtobase.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTO } from './entity-dto';
|
||||
export interface EntityDTOBase extends EntityDTO {}
|
||||
@@ -0,0 +1,9 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOReferenceContainer } from './entity-dtoreference-container';
|
||||
import { BranchDTO } from './branch-dto';
|
||||
export interface EntityDTOContainerOfBranchDTO extends EntityDTOReferenceContainer {
|
||||
/**
|
||||
* Data
|
||||
*/
|
||||
data?: BranchDTO;
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOReferenceContainer } from './entity-dtoreference-container';
|
||||
import { CategoryDTO } from './category-dto';
|
||||
export interface EntityDTOContainerOfCategoryDTO extends EntityDTOReferenceContainer {
|
||||
/**
|
||||
* Data
|
||||
*/
|
||||
data?: CategoryDTO;
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOReferenceContainer } from './entity-dtoreference-container';
|
||||
import { CompanyDTO } from './company-dto';
|
||||
export interface EntityDTOContainerOfCompanyDTO extends EntityDTOReferenceContainer {
|
||||
/**
|
||||
* Data
|
||||
*/
|
||||
data?: CompanyDTO;
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOReferenceContainer } from './entity-dtoreference-container';
|
||||
import { ComponentsDTO } from './components-dto';
|
||||
export interface EntityDTOContainerOfComponentsDTO extends EntityDTOReferenceContainer {
|
||||
/**
|
||||
* Data
|
||||
*/
|
||||
data?: ComponentsDTO;
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOReferenceContainer } from './entity-dtoreference-container';
|
||||
import { ContributorDTO } from './contributor-dto';
|
||||
export interface EntityDTOContainerOfContributorDTO extends EntityDTOReferenceContainer {
|
||||
/**
|
||||
* Data
|
||||
*/
|
||||
data?: ContributorDTO;
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOReferenceContainer } from './entity-dtoreference-container';
|
||||
import { CountryDTO } from './country-dto';
|
||||
export interface EntityDTOContainerOfCountryDTO extends EntityDTOReferenceContainer {
|
||||
/**
|
||||
* Data
|
||||
*/
|
||||
data?: CountryDTO;
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOReferenceContainer } from './entity-dtoreference-container';
|
||||
import { FileDTO } from './file-dto';
|
||||
export interface EntityDTOContainerOfFileDTO extends EntityDTOReferenceContainer {
|
||||
/**
|
||||
* Data
|
||||
*/
|
||||
data?: FileDTO;
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOReferenceContainer } from './entity-dtoreference-container';
|
||||
import { ItemDTO } from './item-dto';
|
||||
export interface EntityDTOContainerOfItemDTO extends EntityDTOReferenceContainer {
|
||||
/**
|
||||
* Data
|
||||
*/
|
||||
data?: ItemDTO;
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOReferenceContainer } from './entity-dtoreference-container';
|
||||
import { ItemDTO2 } from './item-dto2';
|
||||
export interface EntityDTOContainerOfItemDTO2 extends EntityDTOReferenceContainer {
|
||||
/**
|
||||
* Data
|
||||
*/
|
||||
data?: ItemDTO2;
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOReferenceContainer } from './entity-dtoreference-container';
|
||||
import { LabelDTO } from './label-dto';
|
||||
export interface EntityDTOContainerOfLabelDTO extends EntityDTOReferenceContainer {
|
||||
/**
|
||||
* Data
|
||||
*/
|
||||
data?: LabelDTO;
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOReferenceContainer } from './entity-dtoreference-container';
|
||||
import { LogisticianDTO } from './logistician-dto';
|
||||
export interface EntityDTOContainerOfLogisticianDTO extends EntityDTOReferenceContainer {
|
||||
/**
|
||||
* Data
|
||||
*/
|
||||
data?: LogisticianDTO;
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOReferenceContainer } from './entity-dtoreference-container';
|
||||
import { OrderDTO } from './order-dto';
|
||||
export interface EntityDTOContainerOfOrderDTO extends EntityDTOReferenceContainer {
|
||||
/**
|
||||
* Data
|
||||
*/
|
||||
data?: OrderDTO;
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOReferenceContainer } from './entity-dtoreference-container';
|
||||
import { OrderItemDTO } from './order-item-dto';
|
||||
export interface EntityDTOContainerOfOrderItemDTO extends EntityDTOReferenceContainer {
|
||||
/**
|
||||
* Data
|
||||
*/
|
||||
data?: OrderItemDTO;
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOReferenceContainer } from './entity-dtoreference-container';
|
||||
import { OrderItemSubsetDTO } from './order-item-subset-dto';
|
||||
export interface EntityDTOContainerOfOrderItemSubsetDTO extends EntityDTOReferenceContainer {
|
||||
/**
|
||||
* Data
|
||||
*/
|
||||
data?: OrderItemSubsetDTO;
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOReferenceContainer } from './entity-dtoreference-container';
|
||||
import { OrderItemSubsetTransitionDTO } from './order-item-subset-transition-dto';
|
||||
export interface EntityDTOContainerOfOrderItemSubsetTransitionDTO extends EntityDTOReferenceContainer {
|
||||
/**
|
||||
* Data
|
||||
*/
|
||||
data?: OrderItemSubsetTransitionDTO;
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOReferenceContainer } from './entity-dtoreference-container';
|
||||
import { PackageDTO } from './package-dto';
|
||||
export interface EntityDTOContainerOfPackageDTO extends EntityDTOReferenceContainer {
|
||||
/**
|
||||
* Data
|
||||
*/
|
||||
data?: PackageDTO;
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
/* tslint:disable */
|
||||
import { EntityDTOReferenceContainer } from './entity-dtoreference-container';
|
||||
import { PayerDTO } from './payer-dto';
|
||||
export interface EntityDTOContainerOfPayerDTO extends EntityDTOReferenceContainer {
|
||||
/**
|
||||
* Data
|
||||
*/
|
||||
data?: PayerDTO;
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user