@passly-nl/data 1.0.0-beta.3 → 1.0.0-beta.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +1931 -0
- package/dist/index.d.mts.map +1 -0
- package/dist/index.mjs +2 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +16 -12
- package/src/adapter/AddressAdapter.ts +11 -11
- package/src/adapter/AuthAdapter.ts +27 -27
- package/src/adapter/BuyerAdapter.ts +15 -15
- package/src/adapter/CommonAdapter.ts +5 -5
- package/src/adapter/DateTimeAdapter.ts +7 -1
- package/src/adapter/EventAdapter.ts +134 -134
- package/src/adapter/FileSystemAdapter.ts +6 -6
- package/src/adapter/FinanceAdapter.ts +25 -25
- package/src/adapter/FluxAdapter.ts +9 -9
- package/src/adapter/MerchantAdapter.ts +47 -47
- package/src/adapter/MerchantDashboardAdapter.ts +18 -18
- package/src/adapter/OrderAdapter.ts +36 -36
- package/src/adapter/PaymentAdapter.ts +29 -29
- package/src/adapter/ProductAdapter.ts +17 -17
- package/src/adapter/PublicPayAdapter.ts +6 -6
- package/src/adapter/PublicShopAdapter.ts +82 -82
- package/src/adapter/ReservationAdapter.ts +18 -18
- package/src/adapter/StatisticsAdapter.ts +13 -0
- package/src/adapter/StatisticsBuyersAdapter.ts +28 -0
- package/src/adapter/StatisticsEventsAdapter.ts +16 -0
- package/src/adapter/StatisticsOverviewAdapter.ts +85 -0
- package/src/adapter/StatisticsSalesAdapter.ts +33 -0
- package/src/adapter/TicketAdapter.ts +17 -17
- package/src/adapter/index.ts +5 -0
- package/src/dto/auth/UserDto.ts +1 -1
- package/src/dto/auth/UserTokenDto.ts +2 -2
- package/src/dto/event/EventDto.ts +2 -2
- package/src/dto/event/EventStatisticsFinancialDto.ts +1 -1
- package/src/dto/event/EventStatisticsOrdersDto.ts +1 -1
- package/src/dto/event/EventStatisticsScansDto.ts +1 -1
- package/src/dto/event/ShopDto.ts +2 -2
- package/src/dto/event/ShopElementButtonDto.ts +1 -1
- package/src/dto/event/ShopElementDividerDto.ts +1 -1
- package/src/dto/event/ShopElementDto.ts +1 -1
- package/src/dto/event/ShopElementHeadingDto.ts +2 -2
- package/src/dto/event/ShopElementNoticeDto.ts +2 -2
- package/src/dto/event/ShopElementProductDto.ts +1 -1
- package/src/dto/event/ShopElementTextDto.ts +1 -1
- package/src/dto/event/StockOverviewDto.ts +1 -1
- package/src/dto/event/StockOverviewItemDto.ts +1 -1
- package/src/dto/event/TicketTemplateDto.ts +2 -2
- package/src/dto/finance/FinanceOverviewDto.ts +1 -1
- package/src/dto/finance/InvoiceDto.ts +2 -2
- package/src/dto/finance/InvoiceLineDto.ts +2 -2
- package/src/dto/index.ts +1 -0
- package/src/dto/merchant/ContractDto.ts +1 -1
- package/src/dto/merchant/InvitationDto.ts +2 -2
- package/src/dto/merchant/MerchantDashboardKeyMetricsDto.ts +1 -1
- package/src/dto/merchant/MerchantDashboardUpcomingEventDto.ts +2 -2
- package/src/dto/merchant/MerchantDto.ts +1 -1
- package/src/dto/merchant/MerchantUserDto.ts +1 -1
- package/src/dto/order/BuyerDto.ts +2 -2
- package/src/dto/order/OrderDto.ts +2 -2
- package/src/dto/order/OrderLineDto.ts +1 -1
- package/src/dto/payment/PaymentProviderDto.ts +2 -2
- package/src/dto/payment/TransactionDto.ts +2 -2
- package/src/dto/product/ProductDto.ts +2 -2
- package/src/dto/publicShop/PublicShopDto.ts +2 -2
- package/src/dto/publicShop/PublicShopElementButtonDto.ts +1 -1
- package/src/dto/publicShop/PublicShopElementDividerDto.ts +1 -1
- package/src/dto/publicShop/PublicShopElementDto.ts +1 -1
- package/src/dto/publicShop/PublicShopElementHeadingDto.ts +2 -2
- package/src/dto/publicShop/PublicShopElementNoticeDto.ts +2 -2
- package/src/dto/publicShop/PublicShopElementProductDto.ts +1 -1
- package/src/dto/publicShop/PublicShopElementTextDto.ts +1 -1
- package/src/dto/publicShop/PublicShopEventDto.ts +2 -2
- package/src/dto/publicShop/PublicShopProductDto.ts +2 -2
- package/src/dto/publicShop/PublicShopReservationDto.ts +1 -1
- package/src/dto/publicShop/PublicShopReservationProductDetailsDto.ts +1 -1
- package/src/dto/publicShop/PublicShopReservationProductDto.ts +1 -1
- package/src/dto/reservation/ReservationDto.ts +1 -1
- package/src/dto/reservation/ReservationItemDto.ts +1 -1
- package/src/dto/reservation/ReservationProductDto.ts +1 -1
- package/src/dto/statistics/StatisticsBuyersOverviewDto.ts +69 -0
- package/src/dto/statistics/StatisticsBuyersRankedDto.ts +69 -0
- package/src/dto/statistics/StatisticsEventsOverviewDto.ts +59 -0
- package/src/dto/statistics/StatisticsOverviewBestRevenueMonthDto.ts +50 -0
- package/src/dto/statistics/StatisticsOverviewEventPerformanceDto.ts +29 -0
- package/src/dto/statistics/StatisticsOverviewEventPerformanceEventDto.ts +141 -0
- package/src/dto/statistics/StatisticsOverviewEventPerformanceSummaryDto.ts +59 -0
- package/src/dto/statistics/StatisticsOverviewKPIsDto.ts +70 -0
- package/src/dto/statistics/StatisticsOverviewKPIsTotalEventsHostedDto.ts +48 -0
- package/src/dto/statistics/StatisticsOverviewKPIsTotalRevenueDto.ts +30 -0
- package/src/dto/statistics/StatisticsOverviewKPIsTotalTicketsSoldDto.ts +29 -0
- package/src/dto/statistics/StatisticsSalesLifetimeTotalsDto.ts +59 -0
- package/src/dto/statistics/StatisticsSalesPurchaseBehaviorDto.ts +49 -0
- package/src/dto/statistics/StatisticsSalesTransactionSuccessRateDto.ts +39 -0
- package/src/dto/statistics/StatisticsTrendDto.ts +38 -0
- package/src/dto/statistics/index.ts +15 -0
- package/src/dto/ticket/TicketDto.ts +2 -2
- package/src/service/AuthService.ts +6 -6
- package/src/service/InvitationService.ts +5 -5
- package/src/service/MeService.ts +10 -10
- package/src/service/MerchantBuyerService.ts +5 -5
- package/src/service/MerchantBuyersService.ts +3 -3
- package/src/service/MerchantDashboardService.ts +4 -4
- package/src/service/MerchantEventProductService.ts +5 -5
- package/src/service/MerchantEventProductsService.ts +5 -5
- package/src/service/MerchantEventService.ts +12 -12
- package/src/service/MerchantEventShopService.ts +7 -7
- package/src/service/MerchantEventShopsService.ts +5 -5
- package/src/service/MerchantEventStatisticsService.ts +8 -8
- package/src/service/MerchantEventStockPoolsService.ts +6 -6
- package/src/service/MerchantEventTicketTemplateService.ts +8 -8
- package/src/service/MerchantEventTicketTemplatesService.ts +7 -7
- package/src/service/MerchantEventsService.ts +4 -4
- package/src/service/MerchantFinanceInvoiceService.ts +3 -3
- package/src/service/MerchantFinanceInvoicesService.ts +3 -3
- package/src/service/MerchantFinanceService.ts +6 -6
- package/src/service/MerchantOrderService.ts +4 -4
- package/src/service/MerchantOrdersService.ts +3 -3
- package/src/service/MerchantService.ts +12 -12
- package/src/service/MerchantStatisticsBuyersService.ts +87 -0
- package/src/service/MerchantStatisticsEventsService.ts +15 -0
- package/src/service/MerchantStatisticsOverviewService.ts +56 -0
- package/src/service/MerchantStatisticsSalesService.ts +67 -0
- package/src/service/MerchantStatisticsService.ts +2 -2
- package/src/service/MerchantTicketService.ts +3 -3
- package/src/service/MerchantTicketsService.ts +3 -3
- package/src/service/MerchantUsersService.ts +5 -5
- package/src/service/MerchantsService.ts +3 -3
- package/src/service/PublicOrderService.ts +5 -5
- package/src/service/PublicShopService.ts +6 -6
- package/src/service/ReservationService.ts +3 -3
- package/src/service/ServicesService.ts +1 -1
- package/src/service/UiSelectOptionsService.ts +13 -3
- package/src/service/index.ts +4 -0
- package/src/types/event.ts +5 -0
- package/dist/adapter/AddressAdapter.d.ts +0 -3
- package/dist/adapter/AuthAdapter.d.ts +0 -6
- package/dist/adapter/BuyerAdapter.d.ts +0 -4
- package/dist/adapter/CommonAdapter.d.ts +0 -4
- package/dist/adapter/DateTimeAdapter.d.ts +0 -4
- package/dist/adapter/EventAdapter.d.ts +0 -22
- package/dist/adapter/FileSystemAdapter.d.ts +0 -4
- package/dist/adapter/FinanceAdapter.d.ts +0 -6
- package/dist/adapter/FluxAdapter.d.ts +0 -6
- package/dist/adapter/MerchantAdapter.d.ts +0 -8
- package/dist/adapter/MerchantDashboardAdapter.d.ts +0 -5
- package/dist/adapter/OrderAdapter.d.ts +0 -7
- package/dist/adapter/PaymentAdapter.d.ts +0 -7
- package/dist/adapter/ProductAdapter.d.ts +0 -4
- package/dist/adapter/PublicPayAdapter.d.ts +0 -4
- package/dist/adapter/PublicShopAdapter.d.ts +0 -13
- package/dist/adapter/ReservationAdapter.d.ts +0 -6
- package/dist/adapter/TicketAdapter.d.ts +0 -4
- package/dist/adapter/index.d.ts +0 -18
- package/dist/dto/address/AddressDto.d.ts +0 -20
- package/dist/dto/address/index.d.ts +0 -1
- package/dist/dto/auth/TotpStateDto.d.ts +0 -10
- package/dist/dto/auth/UserDto.d.ts +0 -23
- package/dist/dto/auth/UserTokenDto.d.ts +0 -23
- package/dist/dto/auth/index.d.ts +0 -3
- package/dist/dto/common/StatusResponseDto.d.ts +0 -8
- package/dist/dto/common/index.d.ts +0 -1
- package/dist/dto/event/EventAvailabilityDto.d.ts +0 -14
- package/dist/dto/event/EventCountersDto.d.ts +0 -10
- package/dist/dto/event/EventDto.d.ts +0 -29
- package/dist/dto/event/EventStatisticsAttendanceDto.d.ts +0 -10
- package/dist/dto/event/EventStatisticsBuyerTotalsDto.d.ts +0 -14
- package/dist/dto/event/EventStatisticsFinancialDto.d.ts +0 -9
- package/dist/dto/event/EventStatisticsOrderTotalsDto.d.ts +0 -12
- package/dist/dto/event/EventStatisticsOrdersDto.d.ts +0 -10
- package/dist/dto/event/EventStatisticsScanTotalsDto.d.ts +0 -10
- package/dist/dto/event/EventStatisticsScansDto.d.ts +0 -12
- package/dist/dto/event/EventStatisticsScansPerAppTeamDto.d.ts +0 -10
- package/dist/dto/event/EventStatisticsSwapTotalsDto.d.ts +0 -10
- package/dist/dto/event/ShopDesignDto.d.ts +0 -10
- package/dist/dto/event/ShopDto.d.ts +0 -35
- package/dist/dto/event/ShopElementButtonDto.d.ts +0 -12
- package/dist/dto/event/ShopElementDividerDto.d.ts +0 -10
- package/dist/dto/event/ShopElementDto.d.ts +0 -9
- package/dist/dto/event/ShopElementHeadingDto.d.ts +0 -10
- package/dist/dto/event/ShopElementNoticeDto.d.ts +0 -15
- package/dist/dto/event/ShopElementProductDto.d.ts +0 -7
- package/dist/dto/event/ShopElementTextDto.d.ts +0 -7
- package/dist/dto/event/StockOverviewDto.d.ts +0 -13
- package/dist/dto/event/StockOverviewItemDto.d.ts +0 -13
- package/dist/dto/event/StockPoolDto.d.ts +0 -25
- package/dist/dto/event/TicketTemplateDto.d.ts +0 -18
- package/dist/dto/event/index.d.ts +0 -25
- package/dist/dto/fileSystem/PictureDto.d.ts +0 -10
- package/dist/dto/fileSystem/index.d.ts +0 -1
- package/dist/dto/finance/FinanceOverviewDto.d.ts +0 -13
- package/dist/dto/finance/InvoiceDto.d.ts +0 -25
- package/dist/dto/finance/InvoiceLineDto.d.ts +0 -17
- package/dist/dto/finance/index.d.ts +0 -3
- package/dist/dto/index.d.ts +0 -14
- package/dist/dto/merchant/ContractDto.d.ts +0 -16
- package/dist/dto/merchant/InvitationDto.d.ts +0 -25
- package/dist/dto/merchant/MerchantDashboardKeyMetricsDto.d.ts +0 -22
- package/dist/dto/merchant/MerchantDashboardUpcomingEventDto.d.ts +0 -25
- package/dist/dto/merchant/MerchantDto.d.ts +0 -32
- package/dist/dto/merchant/MerchantUserDto.d.ts +0 -14
- package/dist/dto/merchant/VatNumberDto.d.ts +0 -19
- package/dist/dto/merchant/index.d.ts +0 -7
- package/dist/dto/order/BuyerDto.d.ts +0 -27
- package/dist/dto/order/OrderDto.d.ts +0 -37
- package/dist/dto/order/OrderLineDto.d.ts +0 -20
- package/dist/dto/order/OrderPaymentProviderDto.d.ts +0 -8
- package/dist/dto/order/OrderProductDto.d.ts +0 -12
- package/dist/dto/order/index.d.ts +0 -5
- package/dist/dto/payment/CostDto.d.ts +0 -16
- package/dist/dto/payment/PaymentMethodDto.d.ts +0 -10
- package/dist/dto/payment/PaymentProviderDto.d.ts +0 -12
- package/dist/dto/payment/TransactionDto.d.ts +0 -24
- package/dist/dto/payment/index.d.ts +0 -4
- package/dist/dto/product/ProductDto.d.ts +0 -30
- package/dist/dto/product/index.d.ts +0 -1
- package/dist/dto/publicPay/PublicPaymentMethodDto.d.ts +0 -10
- package/dist/dto/publicPay/index.d.ts +0 -1
- package/dist/dto/publicShop/PublicShopCartProductDto.d.ts +0 -10
- package/dist/dto/publicShop/PublicShopDesignDto.d.ts +0 -10
- package/dist/dto/publicShop/PublicShopDto.d.ts +0 -31
- package/dist/dto/publicShop/PublicShopElementButtonDto.d.ts +0 -12
- package/dist/dto/publicShop/PublicShopElementDividerDto.d.ts +0 -10
- package/dist/dto/publicShop/PublicShopElementDto.d.ts +0 -9
- package/dist/dto/publicShop/PublicShopElementHeadingDto.d.ts +0 -10
- package/dist/dto/publicShop/PublicShopElementNoticeDto.d.ts +0 -15
- package/dist/dto/publicShop/PublicShopElementProductDto.d.ts +0 -7
- package/dist/dto/publicShop/PublicShopElementTextDto.d.ts +0 -7
- package/dist/dto/publicShop/PublicShopEventDto.d.ts +0 -16
- package/dist/dto/publicShop/PublicShopMerchantDto.d.ts +0 -8
- package/dist/dto/publicShop/PublicShopProductDto.d.ts +0 -28
- package/dist/dto/publicShop/PublicShopReservationDto.d.ts +0 -14
- package/dist/dto/publicShop/PublicShopReservationProductDetailsDto.d.ts +0 -13
- package/dist/dto/publicShop/PublicShopReservationProductDto.d.ts +0 -9
- package/dist/dto/publicShop/PublicShopTimeSlotDto.d.ts +0 -15
- package/dist/dto/publicShop/index.d.ts +0 -17
- package/dist/dto/reservation/ReservationDto.d.ts +0 -16
- package/dist/dto/reservation/ReservationItemDto.d.ts +0 -9
- package/dist/dto/reservation/ReservationProductDto.d.ts +0 -13
- package/dist/dto/reservation/index.d.ts +0 -3
- package/dist/dto/ticket/TicketDto.d.ts +0 -31
- package/dist/dto/ticket/index.d.ts +0 -1
- package/dist/index.d.ts +0 -5
- package/dist/index.js +0 -4
- package/dist/index.js.map +0 -136
- package/dist/service/AuthService.d.ts +0 -11
- package/dist/service/InvitationService.d.ts +0 -7
- package/dist/service/MeService.d.ts +0 -12
- package/dist/service/MerchantBuyerService.d.ts +0 -7
- package/dist/service/MerchantBuyersService.d.ts +0 -5
- package/dist/service/MerchantDashboardService.d.ts +0 -6
- package/dist/service/MerchantEventProductService.d.ts +0 -10
- package/dist/service/MerchantEventProductsService.d.ts +0 -8
- package/dist/service/MerchantEventService.d.ts +0 -13
- package/dist/service/MerchantEventShopService.d.ts +0 -9
- package/dist/service/MerchantEventShopsService.d.ts +0 -8
- package/dist/service/MerchantEventStatisticsService.d.ts +0 -10
- package/dist/service/MerchantEventStockPoolsService.d.ts +0 -9
- package/dist/service/MerchantEventTicketTemplateService.d.ts +0 -11
- package/dist/service/MerchantEventTicketTemplatesService.d.ts +0 -9
- package/dist/service/MerchantEventsService.d.ts +0 -7
- package/dist/service/MerchantFinanceInvoiceService.d.ts +0 -6
- package/dist/service/MerchantFinanceInvoicesService.d.ts +0 -5
- package/dist/service/MerchantFinanceService.d.ts +0 -8
- package/dist/service/MerchantOrderService.d.ts +0 -9
- package/dist/service/MerchantOrdersService.d.ts +0 -5
- package/dist/service/MerchantService.d.ts +0 -14
- package/dist/service/MerchantStatisticsService.d.ts +0 -5
- package/dist/service/MerchantTicketService.d.ts +0 -7
- package/dist/service/MerchantTicketsService.d.ts +0 -5
- package/dist/service/MerchantUsersService.d.ts +0 -7
- package/dist/service/MerchantsService.d.ts +0 -5
- package/dist/service/PublicOrderService.d.ts +0 -7
- package/dist/service/PublicShopService.d.ts +0 -9
- package/dist/service/ReservationService.d.ts +0 -6
- package/dist/service/ServicesService.d.ts +0 -9
- package/dist/service/UiSelectOptionsService.d.ts +0 -6
- package/dist/service/index.d.ts +0 -32
- package/dist/types/auth.d.ts +0 -47
- package/dist/types/event.d.ts +0 -28
- package/dist/types/finance.d.ts +0 -14
- package/dist/types/general.d.ts +0 -19
- package/dist/types/index.d.ts +0 -9
- package/dist/types/order.d.ts +0 -7
- package/dist/types/payment.d.ts +0 -11
- package/dist/types/product.d.ts +0 -2
- package/dist/types/publicShop.d.ts +0 -7
- package/dist/types/ticket.d.ts +0 -12
- package/dist/util/emptyNull.d.ts +0 -1
- package/dist/util/index.d.ts +0 -4
- package/dist/util/jsonBlob.d.ts +0 -1
- package/dist/util/optional.d.ts +0 -4
- package/dist/util/optionalArray.d.ts +0 -1
package/src/types/event.ts
CHANGED
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import { TotpStateDto, UserDto, UserTokenDto } from "../dto";
|
|
2
|
-
export declare class AuthAdapter {
|
|
3
|
-
static parseTotpStateFromObject(state: Record<string, any>): TotpStateDto;
|
|
4
|
-
static parseUserFromObject(user: Record<string, any>): UserDto;
|
|
5
|
-
static parseUserTokenFromObject(token: Record<string, any>): UserTokenDto;
|
|
6
|
-
}
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import { EventAvailabilityDto, EventCountersDto, EventDto, EventStatisticsAttendanceDto, EventStatisticsBuyerTotalsDto, EventStatisticsFinancialDto, EventStatisticsOrdersDto, EventStatisticsOrderTotalsDto, EventStatisticsScansDto, EventStatisticsScansPerAppTeamDto, EventStatisticsScanTotalsDto, EventStatisticsSwapTotalsDto, ShopDesignDto, ShopDto, ShopElementDto, StockOverviewDto, StockOverviewItemDto, StockPoolDto, TicketTemplateDto } from "../dto";
|
|
2
|
-
export declare class EventAdapter {
|
|
3
|
-
static parseEventFromObject(event: Record<string, any>): EventDto;
|
|
4
|
-
static parseEventAvailabilityFromObject(availability: Record<string, any>): EventAvailabilityDto;
|
|
5
|
-
static parseEventCountersFromObject(counters: Record<string, any>): EventCountersDto;
|
|
6
|
-
static parseShopFromObject(shop: Record<string, any>): ShopDto;
|
|
7
|
-
static parseShopDesignFromObject(design: Record<string, any>): ShopDesignDto;
|
|
8
|
-
static parseShopElementFromObject(element: Record<string, any>): ShopElementDto;
|
|
9
|
-
static parseStockOverviewFromObject(overview: Record<string, any>): StockOverviewDto;
|
|
10
|
-
static parseStockOverviewItemFromObject(item: Record<string, any>): StockOverviewItemDto;
|
|
11
|
-
static parseStockPoolFromObject(pool: Record<string, any>): StockPoolDto;
|
|
12
|
-
static parseTicketTemplateFromObject(template: Record<string, any>): TicketTemplateDto;
|
|
13
|
-
static parseEventStatisticsAttendanceFromObject(attendance: Record<string, any>): EventStatisticsAttendanceDto;
|
|
14
|
-
static parseEventStatisticsBuyerTotalsFromObject(totals: Record<string, any>): EventStatisticsBuyerTotalsDto;
|
|
15
|
-
static parseEventStatisticsFinancialFromObject(financial: Record<string, any>): EventStatisticsFinancialDto;
|
|
16
|
-
static parseEventStatisticsOrdersFromObject(totals: Record<string, any>): EventStatisticsOrdersDto;
|
|
17
|
-
static parseEventStatisticsOrderTotalsFromObject(totals: Record<string, any>): EventStatisticsOrderTotalsDto;
|
|
18
|
-
static parseEventStatisticsScansFromObject(scans: Record<string, any>): EventStatisticsScansDto;
|
|
19
|
-
static parseEventStatisticsScansPerAppTeamFromObject(appTeam: Record<string, any>): EventStatisticsScansPerAppTeamDto;
|
|
20
|
-
static parseEventStatisticsScanTotalsFromObject(totals: Record<string, any>): EventStatisticsScanTotalsDto;
|
|
21
|
-
static parseEventStatisticsSwapTotalsFromObject(totals: Record<string, any>): EventStatisticsSwapTotalsDto;
|
|
22
|
-
}
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import { FinanceOverviewDto, InvoiceDto, InvoiceLineDto } from "../dto";
|
|
2
|
-
export declare class FinanceAdapter {
|
|
3
|
-
static parseFinanceOverviewFromObject(overview: Record<string, any>): FinanceOverviewDto;
|
|
4
|
-
static parseInvoiceFromObject(invoice: Record<string, any>): InvoiceDto;
|
|
5
|
-
static parseInvoiceLineFromObject(line: Record<string, any>): InvoiceLineDto;
|
|
6
|
-
}
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import type { FluxFormSelectEntry, FluxFormSelectGroup, FluxFormSelectOption } from "@flux-ui/types";
|
|
2
|
-
export declare class FluxAdapter {
|
|
3
|
-
static parseFluxFormSelectEntryFromObject(entry: object): FluxFormSelectEntry;
|
|
4
|
-
static parseFluxFormSelectGroupFromObject(group: object): FluxFormSelectGroup;
|
|
5
|
-
static parseFluxFormSelectOptionFromObject(option: object): FluxFormSelectOption;
|
|
6
|
-
}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { ContractDto, InvitationDto, MerchantDto, MerchantUserDto, VatNumberDto } from "../dto";
|
|
2
|
-
export declare class MerchantAdapter {
|
|
3
|
-
static parseContractFromObject(contract: Record<string, any>): ContractDto;
|
|
4
|
-
static parseInvitationFromObject(invitation: Record<string, any>): InvitationDto;
|
|
5
|
-
static parseMerchantFromObject(merchant: Record<string, any>): MerchantDto;
|
|
6
|
-
static parseMerchantUserFromObject(merchantUser: Record<string, any>): MerchantUserDto;
|
|
7
|
-
static parseVatNumberFromObject(vatNumber: Record<string, any>): VatNumberDto;
|
|
8
|
-
}
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import { MerchantDashboardKeyMetricsDto, MerchantDashboardUpcomingEventDto } from "../dto";
|
|
2
|
-
export declare class MerchantDashboardAdapter {
|
|
3
|
-
static parseKeyMetricsFromObject(keyMetrics: Record<string, any>): MerchantDashboardKeyMetricsDto;
|
|
4
|
-
static parseUpcomingEventFromObject(event: Record<string, any>): MerchantDashboardUpcomingEventDto;
|
|
5
|
-
}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { OrderDto, OrderLineDto, OrderPaymentProviderDto, OrderProductDto } from "../dto";
|
|
2
|
-
export declare class OrderAdapter {
|
|
3
|
-
static parseOrderFromObject(order: Record<string, any>): OrderDto;
|
|
4
|
-
static parseOrderLineFromObject(line: Record<string, any>): OrderLineDto;
|
|
5
|
-
static parseOrderPaymentProviderFromObject(provider: Record<string, any>): OrderPaymentProviderDto;
|
|
6
|
-
static parseOrderProductFromObject(product: Record<string, any>): OrderProductDto;
|
|
7
|
-
}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { CostDto, PaymentMethodDto, PaymentProviderDto, TransactionDto } from "../dto";
|
|
2
|
-
export declare class PaymentAdapter {
|
|
3
|
-
static parseCostFromObject(cost: Record<string, any>): CostDto;
|
|
4
|
-
static parsePaymentMethodFromObject(method: Record<string, any>): PaymentMethodDto;
|
|
5
|
-
static parsePaymentProviderFromObject(provider: Record<string, any>): PaymentProviderDto;
|
|
6
|
-
static parseTransactionFromObject(transaction: Record<string, any>): TransactionDto;
|
|
7
|
-
}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { PublicShopDesignDto, PublicShopDto, PublicShopElementDto, PublicShopEventDto, PublicShopMerchantDto, PublicShopProductDto, PublicShopReservationDto, PublicShopReservationProductDetailsDto, PublicShopReservationProductDto, PublicShopTimeSlotDto } from "../dto";
|
|
2
|
-
export declare class PublicShopAdapter {
|
|
3
|
-
static parsePublicShopFromObject(shop: Record<string, any>): PublicShopDto;
|
|
4
|
-
static parsePublicShopDesignFromObject(design: Record<string, any>): PublicShopDesignDto;
|
|
5
|
-
static parsePublicShopElementFromObject(element: Record<string, any>): PublicShopElementDto;
|
|
6
|
-
static parsePublicShopEventFromObject(event: Record<string, any>): PublicShopEventDto;
|
|
7
|
-
static parsePublicShopMerchantFromObject(merchant: Record<string, any>): PublicShopMerchantDto;
|
|
8
|
-
static parsePublicShopProductFromObject(product: Record<string, any>): PublicShopProductDto;
|
|
9
|
-
static parsePublicShopReservationFromObject(reservation: Record<string, any>): PublicShopReservationDto;
|
|
10
|
-
static parsePublicShopReservationProductFromObject(product: Record<string, any>): PublicShopReservationProductDto;
|
|
11
|
-
static parsePublicShopReservationProductDetailsFromObject(details: Record<string, any>): PublicShopReservationProductDetailsDto;
|
|
12
|
-
static parsePublicShopTimeSlotFromObject(timeSlot: Record<string, any>): PublicShopTimeSlotDto;
|
|
13
|
-
}
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import { ReservationDto, ReservationItemDto, ReservationProductDto } from "../dto";
|
|
2
|
-
export declare class ReservationAdapter {
|
|
3
|
-
static parseReservationFromObject(reservation: Record<string, any>): ReservationDto;
|
|
4
|
-
static parseReservationItemFromObject(item: Record<string, any>): ReservationItemDto;
|
|
5
|
-
static parseReservationProductFromObject(product: Record<string, any>): ReservationProductDto;
|
|
6
|
-
}
|
package/dist/adapter/index.d.ts
DELETED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
export * from "./AddressAdapter";
|
|
2
|
-
export * from "./AuthAdapter";
|
|
3
|
-
export * from "./BuyerAdapter";
|
|
4
|
-
export * from "./CommonAdapter";
|
|
5
|
-
export * from "./DateTimeAdapter";
|
|
6
|
-
export * from "./EventAdapter";
|
|
7
|
-
export * from "./FileSystemAdapter";
|
|
8
|
-
export * from "./FinanceAdapter";
|
|
9
|
-
export * from "./FluxAdapter";
|
|
10
|
-
export * from "./MerchantAdapter";
|
|
11
|
-
export * from "./MerchantDashboardAdapter";
|
|
12
|
-
export * from "./OrderAdapter";
|
|
13
|
-
export * from "./PaymentAdapter";
|
|
14
|
-
export * from "./ProductAdapter";
|
|
15
|
-
export * from "./PublicPayAdapter";
|
|
16
|
-
export * from "./PublicShopAdapter";
|
|
17
|
-
export * from "./ReservationAdapter";
|
|
18
|
-
export * from "./TicketAdapter";
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
export declare class AddressDto {
|
|
2
|
-
#private;
|
|
3
|
-
get id(): string;
|
|
4
|
-
set id(value: string);
|
|
5
|
-
get label(): string | null;
|
|
6
|
-
set label(value: string | null);
|
|
7
|
-
get street(): string;
|
|
8
|
-
set street(value: string);
|
|
9
|
-
get number(): string;
|
|
10
|
-
set number(value: string);
|
|
11
|
-
get postalCode(): string;
|
|
12
|
-
set postalCode(value: string);
|
|
13
|
-
get city(): string;
|
|
14
|
-
set city(value: string);
|
|
15
|
-
get country(): string;
|
|
16
|
-
set country(value: string);
|
|
17
|
-
get formatted(): string;
|
|
18
|
-
set formatted(value: string);
|
|
19
|
-
constructor(id: string, label: string | null, street: string, number: string, postalCode: string, city: string, country: string, formatted: string);
|
|
20
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./AddressDto";
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
export declare class TotpStateDto {
|
|
2
|
-
#private;
|
|
3
|
-
get enabled(): boolean;
|
|
4
|
-
set enabled(value: boolean);
|
|
5
|
-
get secret(): string | null;
|
|
6
|
-
set secret(value: string | null);
|
|
7
|
-
get qr(): string | null;
|
|
8
|
-
set qr(value: string | null);
|
|
9
|
-
constructor(enabled: boolean, secret: string | null, qr: string | null);
|
|
10
|
-
}
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
import type { PictureDto } from "../../dto";
|
|
2
|
-
export declare class UserDto {
|
|
3
|
-
#private;
|
|
4
|
-
get id(): string;
|
|
5
|
-
set id(value: string);
|
|
6
|
-
get email(): string;
|
|
7
|
-
set email(value: string);
|
|
8
|
-
get firstName(): string;
|
|
9
|
-
set firstName(value: string);
|
|
10
|
-
get lastName(): string;
|
|
11
|
-
set lastName(value: string);
|
|
12
|
-
get fullName(): string;
|
|
13
|
-
set fullName(value: string);
|
|
14
|
-
get initials(): string;
|
|
15
|
-
set initials(value: string);
|
|
16
|
-
get phoneNumber(): string | null;
|
|
17
|
-
set phoneNumber(value: string | null);
|
|
18
|
-
get isOnline(): boolean;
|
|
19
|
-
set isOnline(value: boolean);
|
|
20
|
-
get picture(): PictureDto | null;
|
|
21
|
-
set picture(value: PictureDto | null);
|
|
22
|
-
constructor(id: string, email: string, firstName: string, lastName: string, fullName: string, initials: string, phoneNumber: string | null, isOnline: boolean, picture: PictureDto | null);
|
|
23
|
-
}
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
import type { DateTime } from "luxon";
|
|
2
|
-
import type { UserDto } from "../../dto";
|
|
3
|
-
import type { BrowserType, OperatingSystemType, UserTokenType } from "../../types";
|
|
4
|
-
export declare class UserTokenDto {
|
|
5
|
-
#private;
|
|
6
|
-
get token(): string;
|
|
7
|
-
set token(value: string);
|
|
8
|
-
get type(): UserTokenType;
|
|
9
|
-
set type(value: UserTokenType);
|
|
10
|
-
get browser(): BrowserType | null;
|
|
11
|
-
set browser(value: BrowserType | null);
|
|
12
|
-
get operatingSystem(): OperatingSystemType | null;
|
|
13
|
-
set operatingSystem(value: OperatingSystemType | null);
|
|
14
|
-
get createdOn(): DateTime;
|
|
15
|
-
set createdOn(value: DateTime);
|
|
16
|
-
get expiresOn(): DateTime;
|
|
17
|
-
set expiresOn(value: DateTime);
|
|
18
|
-
get realtimeChannel(): string | null;
|
|
19
|
-
set realtimeChannel(value: string | null);
|
|
20
|
-
get user(): UserDto;
|
|
21
|
-
set user(value: UserDto);
|
|
22
|
-
constructor(token: string, type: UserTokenType, browser: BrowserType | null, operatingSystem: OperatingSystemType | null, createdOn: DateTime, expiresOn: DateTime, realtimeChannel: string | null, user: UserDto);
|
|
23
|
-
}
|
package/dist/dto/auth/index.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./StatusResponseDto";
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
export declare class EventAvailabilityDto {
|
|
2
|
-
#private;
|
|
3
|
-
get hasProducts(): boolean;
|
|
4
|
-
set hasProducts(value: boolean);
|
|
5
|
-
get hasShops(): boolean;
|
|
6
|
-
set hasShops(value: boolean);
|
|
7
|
-
get hasShopsWithProducts(): boolean;
|
|
8
|
-
set hasShopsWithProducts(value: boolean);
|
|
9
|
-
get isPublishable(): boolean;
|
|
10
|
-
set isPublishable(value: boolean);
|
|
11
|
-
get isPublished(): boolean;
|
|
12
|
-
set isPublished(value: boolean);
|
|
13
|
-
constructor(hasProducts: boolean, hasShops: boolean, hasShopsWithProducts: boolean, isPublishable: boolean, isPublished: boolean);
|
|
14
|
-
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
export declare class EventCountersDto {
|
|
2
|
-
#private;
|
|
3
|
-
get guests(): number;
|
|
4
|
-
set guests(value: number);
|
|
5
|
-
get orders(): number;
|
|
6
|
-
set orders(value: number);
|
|
7
|
-
get tickets(): number;
|
|
8
|
-
set tickets(value: number);
|
|
9
|
-
constructor(guests: number, orders: number, tickets: number);
|
|
10
|
-
}
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
import type { DateTime } from "luxon";
|
|
2
|
-
import type { AddressDto, PictureDto } from "../../dto";
|
|
3
|
-
import type { EventStatus } from "../../types";
|
|
4
|
-
export declare class EventDto {
|
|
5
|
-
#private;
|
|
6
|
-
get id(): string;
|
|
7
|
-
set id(value: string);
|
|
8
|
-
get name(): string;
|
|
9
|
-
set name(value: string);
|
|
10
|
-
get description(): string;
|
|
11
|
-
set description(value: string);
|
|
12
|
-
get startsOn(): DateTime;
|
|
13
|
-
set startsOn(value: DateTime);
|
|
14
|
-
get endsOn(): DateTime;
|
|
15
|
-
set endsOn(value: DateTime);
|
|
16
|
-
get minimumAge(): number;
|
|
17
|
-
set minimumAge(value: number);
|
|
18
|
-
get status(): EventStatus;
|
|
19
|
-
set status(value: EventStatus);
|
|
20
|
-
get address(): AddressDto;
|
|
21
|
-
set address(value: AddressDto);
|
|
22
|
-
get headerFile(): PictureDto | null;
|
|
23
|
-
set headerFile(value: PictureDto | null);
|
|
24
|
-
get createdOn(): DateTime;
|
|
25
|
-
set createdOn(value: DateTime);
|
|
26
|
-
get updatedOn(): DateTime;
|
|
27
|
-
set updatedOn(value: DateTime);
|
|
28
|
-
constructor(id: string, name: string, description: string, startsOn: DateTime, endsOn: DateTime, minimumAge: number, status: EventStatus, address: AddressDto, headerFile: PictureDto | null, createdOn: DateTime, updatedOn: DateTime);
|
|
29
|
-
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
export declare class EventStatisticsAttendanceDto {
|
|
2
|
-
#private;
|
|
3
|
-
get attended(): number;
|
|
4
|
-
set attended(value: number);
|
|
5
|
-
get expected(): number;
|
|
6
|
-
set expected(value: number);
|
|
7
|
-
get rate(): number;
|
|
8
|
-
set rate(value: number);
|
|
9
|
-
constructor(attended: number, expected: number, rate: number);
|
|
10
|
-
}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
export declare class EventStatisticsBuyerTotalsDto {
|
|
2
|
-
#private;
|
|
3
|
-
get acquired(): number;
|
|
4
|
-
set acquired(value: number);
|
|
5
|
-
get averageTickets(): number;
|
|
6
|
-
set averageTickets(value: number);
|
|
7
|
-
get doubting(): number;
|
|
8
|
-
set doubting(value: number);
|
|
9
|
-
get returning(): number;
|
|
10
|
-
set returning(value: number);
|
|
11
|
-
get total(): number;
|
|
12
|
-
set total(value: number);
|
|
13
|
-
constructor(acquired: number, averageTickets: number, doubting: number, returning: number, total: number);
|
|
14
|
-
}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import type { CostDto } from "../../dto";
|
|
2
|
-
export declare class EventStatisticsFinancialDto {
|
|
3
|
-
#private;
|
|
4
|
-
get platformCost(): CostDto;
|
|
5
|
-
set platformCost(value: CostDto);
|
|
6
|
-
get revenue(): CostDto;
|
|
7
|
-
set revenue(value: CostDto);
|
|
8
|
-
constructor(platformCost: CostDto, revenue: CostDto);
|
|
9
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
export declare class EventStatisticsOrderTotalsDto {
|
|
2
|
-
#private;
|
|
3
|
-
get fulfilled(): number;
|
|
4
|
-
set fulfilled(value: number);
|
|
5
|
-
get interrupted(): number;
|
|
6
|
-
set interrupted(value: number);
|
|
7
|
-
get pending(): number;
|
|
8
|
-
set pending(value: number);
|
|
9
|
-
get total(): number;
|
|
10
|
-
set total(value: number);
|
|
11
|
-
constructor(fulfilled: number, interrupted: number, pending: number, total: number);
|
|
12
|
-
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import type { ApexOptions } from "apexcharts";
|
|
2
|
-
import type { EventStatisticsOrderTotalsDto } from "../../dto";
|
|
3
|
-
export declare class EventStatisticsOrdersDto {
|
|
4
|
-
#private;
|
|
5
|
-
get chart(): ApexOptions;
|
|
6
|
-
set chart(value: ApexOptions);
|
|
7
|
-
get totals(): EventStatisticsOrderTotalsDto;
|
|
8
|
-
set totals(value: EventStatisticsOrderTotalsDto);
|
|
9
|
-
constructor(chart: ApexOptions, totals: EventStatisticsOrderTotalsDto);
|
|
10
|
-
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
export declare class EventStatisticsScanTotalsDto {
|
|
2
|
-
#private;
|
|
3
|
-
get total(): number;
|
|
4
|
-
set total(value: number);
|
|
5
|
-
get checkins(): number;
|
|
6
|
-
set checkins(value: number);
|
|
7
|
-
get checkouts(): number;
|
|
8
|
-
set checkouts(value: number);
|
|
9
|
-
constructor(total: number, checkins: number, checkouts: number);
|
|
10
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import type { ApexOptions } from "apexcharts";
|
|
2
|
-
import type { EventStatisticsScansPerAppTeamDto, EventStatisticsScanTotalsDto } from "../../dto";
|
|
3
|
-
export declare class EventStatisticsScansDto {
|
|
4
|
-
#private;
|
|
5
|
-
get appTeams(): EventStatisticsScansPerAppTeamDto[];
|
|
6
|
-
set appTeams(value: EventStatisticsScansPerAppTeamDto[]);
|
|
7
|
-
get chart(): ApexOptions;
|
|
8
|
-
set chart(value: ApexOptions);
|
|
9
|
-
get totals(): EventStatisticsScanTotalsDto;
|
|
10
|
-
set totals(value: EventStatisticsScanTotalsDto);
|
|
11
|
-
constructor(appTeams: EventStatisticsScansPerAppTeamDto[], chart: ApexOptions, totals: EventStatisticsScanTotalsDto);
|
|
12
|
-
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
export declare class EventStatisticsScansPerAppTeamDto {
|
|
2
|
-
#private;
|
|
3
|
-
get id(): string;
|
|
4
|
-
set id(value: string);
|
|
5
|
-
get name(): string;
|
|
6
|
-
set name(value: string);
|
|
7
|
-
get scans(): number;
|
|
8
|
-
set scans(value: number);
|
|
9
|
-
constructor(id: string, name: string, scans: number);
|
|
10
|
-
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
export declare class EventStatisticsSwapTotalsDto {
|
|
2
|
-
#private;
|
|
3
|
-
get swaps(): number;
|
|
4
|
-
set swaps(value: number);
|
|
5
|
-
get tickets(): number;
|
|
6
|
-
set tickets(value: number);
|
|
7
|
-
get rate(): number;
|
|
8
|
-
set rate(value: number);
|
|
9
|
-
constructor(swaps: number, tickets: number, rate: number);
|
|
10
|
-
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
export declare class ShopDesignDto {
|
|
2
|
-
#private;
|
|
3
|
-
get backgroundColor(): string;
|
|
4
|
-
set backgroundColor(value: string);
|
|
5
|
-
get foregroundColor(): string;
|
|
6
|
-
set foregroundColor(value: string);
|
|
7
|
-
get primaryColor(): string;
|
|
8
|
-
set primaryColor(value: string);
|
|
9
|
-
constructor(backgroundColor: string, foregroundColor: string, primaryColor: string);
|
|
10
|
-
}
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
import type { DateTime } from "luxon";
|
|
2
|
-
import type { EventDto, MerchantDto, ShopDesignDto } from "../../dto";
|
|
3
|
-
import type { ShopFieldRequirement, ShopStatus } from "../../types";
|
|
4
|
-
export declare class ShopDto {
|
|
5
|
-
#private;
|
|
6
|
-
get id(): string;
|
|
7
|
-
set id(value: string);
|
|
8
|
-
get name(): string;
|
|
9
|
-
set name(value: string);
|
|
10
|
-
get isPublished(): boolean;
|
|
11
|
-
set isPublished(value: boolean);
|
|
12
|
-
get password(): string;
|
|
13
|
-
set password(value: string);
|
|
14
|
-
get startsOn(): DateTime | null;
|
|
15
|
-
set startsOn(value: DateTime | null);
|
|
16
|
-
get endsOn(): DateTime | null;
|
|
17
|
-
set endsOn(value: DateTime | null);
|
|
18
|
-
get fieldAddress(): ShopFieldRequirement;
|
|
19
|
-
set fieldAddress(value: ShopFieldRequirement);
|
|
20
|
-
get fieldBirthdate(): ShopFieldRequirement;
|
|
21
|
-
set fieldBirthdate(value: ShopFieldRequirement);
|
|
22
|
-
get fieldGender(): ShopFieldRequirement;
|
|
23
|
-
set fieldGender(value: ShopFieldRequirement);
|
|
24
|
-
get fieldPhoneNumber(): ShopFieldRequirement;
|
|
25
|
-
set fieldPhoneNumber(value: ShopFieldRequirement);
|
|
26
|
-
get status(): ShopStatus;
|
|
27
|
-
set status(value: ShopStatus);
|
|
28
|
-
get design(): ShopDesignDto;
|
|
29
|
-
set design(value: ShopDesignDto);
|
|
30
|
-
get event(): EventDto;
|
|
31
|
-
set event(value: EventDto);
|
|
32
|
-
get merchant(): MerchantDto;
|
|
33
|
-
set merchant(value: MerchantDto);
|
|
34
|
-
constructor(id: string, name: string, isPublished: boolean, password: string, startsOn: DateTime | null, endsOn: DateTime | null, fieldAddress: ShopFieldRequirement, fieldBirthdate: ShopFieldRequirement, fieldGender: ShopFieldRequirement, fieldPhoneNumber: ShopFieldRequirement, status: ShopStatus, design: ShopDesignDto, event: EventDto, merchant: MerchantDto);
|
|
35
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import type { FluxIconName } from "@flux-ui/types";
|
|
2
|
-
import { ShopElementDto } from "../../dto";
|
|
3
|
-
export declare class ShopElementButtonDto extends ShopElementDto {
|
|
4
|
-
#private;
|
|
5
|
-
get icon(): FluxIconName | null;
|
|
6
|
-
set icon(value: FluxIconName | null);
|
|
7
|
-
get text(): string;
|
|
8
|
-
set text(value: string);
|
|
9
|
-
get url(): string;
|
|
10
|
-
set url(value: string);
|
|
11
|
-
constructor(id: string, icon: FluxIconName | null, text: string, url: string);
|
|
12
|
-
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import type { FluxIconName } from "@flux-ui/types";
|
|
2
|
-
import { ShopElementDto } from "../../dto";
|
|
3
|
-
export declare class ShopElementDividerDto extends ShopElementDto {
|
|
4
|
-
#private;
|
|
5
|
-
get icon(): FluxIconName | null;
|
|
6
|
-
set icon(value: FluxIconName | null);
|
|
7
|
-
get text(): string | null;
|
|
8
|
-
set text(value: string | null);
|
|
9
|
-
constructor(id: string, icon: FluxIconName | null, text: string | null);
|
|
10
|
-
}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import type { ShopElementType } from "../../types";
|
|
2
|
-
export declare abstract class ShopElementDto {
|
|
3
|
-
#private;
|
|
4
|
-
get id(): string;
|
|
5
|
-
set id(value: string);
|
|
6
|
-
get type(): ShopElementType;
|
|
7
|
-
set type(value: ShopElementType);
|
|
8
|
-
protected constructor(id: string, type: ShopElementType);
|
|
9
|
-
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { ShopElementDto } from "../../dto";
|
|
2
|
-
import type { HeadingLevel } from "../../types";
|
|
3
|
-
export declare class ShopElementHeadingDto extends ShopElementDto {
|
|
4
|
-
#private;
|
|
5
|
-
get headingLevel(): HeadingLevel;
|
|
6
|
-
set headingLevel(value: HeadingLevel);
|
|
7
|
-
get title(): string;
|
|
8
|
-
set title(value: string);
|
|
9
|
-
constructor(id: string, headingLevel: HeadingLevel, title: string);
|
|
10
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import type { FluxIconName } from "@flux-ui/types";
|
|
2
|
-
import { ShopElementDto } from "../../dto";
|
|
3
|
-
import type { NoticeType } from "../../types";
|
|
4
|
-
export declare class ShopElementNoticeDto extends ShopElementDto {
|
|
5
|
-
#private;
|
|
6
|
-
get icon(): FluxIconName;
|
|
7
|
-
set icon(value: FluxIconName);
|
|
8
|
-
get noticeType(): NoticeType;
|
|
9
|
-
set noticeType(value: NoticeType);
|
|
10
|
-
get title(): string | null;
|
|
11
|
-
set title(value: string | null);
|
|
12
|
-
get text(): string;
|
|
13
|
-
set text(value: string);
|
|
14
|
-
constructor(id: string, icon: FluxIconName, noticeType: NoticeType, title: string | null, text: string);
|
|
15
|
-
}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import type { StockOverviewItemDto } from "../../dto";
|
|
2
|
-
export declare class StockOverviewDto {
|
|
3
|
-
#private;
|
|
4
|
-
get total(): number;
|
|
5
|
-
set total(value: number);
|
|
6
|
-
get sold(): number;
|
|
7
|
-
set sold(value: number);
|
|
8
|
-
get remaining(): number;
|
|
9
|
-
set remaining(value: number);
|
|
10
|
-
get items(): StockOverviewItemDto[];
|
|
11
|
-
set items(value: StockOverviewItemDto[]);
|
|
12
|
-
constructor(total: number, sold: number, remaining: number, items: StockOverviewItemDto[]);
|
|
13
|
-
}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import type { ProductDto, StockPoolDto } from "../../dto";
|
|
2
|
-
export declare class StockOverviewItemDto {
|
|
3
|
-
#private;
|
|
4
|
-
get pool(): StockPoolDto;
|
|
5
|
-
set pool(value: StockPoolDto);
|
|
6
|
-
get product(): ProductDto;
|
|
7
|
-
set product(value: ProductDto);
|
|
8
|
-
get remaining(): number;
|
|
9
|
-
set remaining(value: number);
|
|
10
|
-
get sold(): number;
|
|
11
|
-
set sold(value: number);
|
|
12
|
-
constructor(pool: StockPoolDto, product: ProductDto, remaining: number, sold: number);
|
|
13
|
-
}
|