@passly-nl/data 1.3.6 → 1.4.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +27 -6
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +100 -13
- package/dist/index.mjs.map +1 -1
- package/package.json +8 -8
- package/src/adapter/EventAdapter.ts +2 -1
- package/src/adapter/ProductAdapter.ts +6 -1
- package/src/adapter/PublicShopAdapter.ts +4 -1
- package/src/dto/event/AppTeamDto.ts +11 -1
- package/src/dto/product/ProductDto.ts +52 -2
- package/src/dto/publicShop/PublicShopProductDto.ts +33 -2
- package/src/service/MerchantEventAppTeamService.ts +2 -1
- package/src/service/MerchantEventAppTeamsService.ts +3 -2
- package/src/service/MerchantEventProductService.ts +5 -2
- package/src/service/MerchantEventStockPoolsService.ts +23 -0
- package/src/types/product.ts +7 -0
- package/src/util/buildListQuery.ts +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -228,6 +228,7 @@ type TransactionStatus = "canceled" | "expired" | "failed" | "paid" | "pending"
|
|
|
228
228
|
//#endregion
|
|
229
229
|
//#region src/types/product.d.ts
|
|
230
230
|
type ProductType = "ticket";
|
|
231
|
+
type ProductAvailability = "available" | "paused" | "upcoming" | "ended" | "sold_out";
|
|
231
232
|
//#endregion
|
|
232
233
|
//#region src/types/publicShop.d.ts
|
|
233
234
|
type PublicShopElementType = "button" | "divider" | "heading" | "information" | "notice" | "product" | "text";
|
|
@@ -603,7 +604,9 @@ declare class AppTeamDto {
|
|
|
603
604
|
set event(value: EventDto);
|
|
604
605
|
get merchant(): MerchantDto;
|
|
605
606
|
set merchant(value: MerchantDto);
|
|
606
|
-
|
|
607
|
+
get productIds(): string[];
|
|
608
|
+
set productIds(value: string[]);
|
|
609
|
+
constructor(id: string, name: string, secret: string, checkinCount: number, checkoutCount: number, creator: UserDto, event: EventDto, merchant: MerchantDto, productIds: string[]);
|
|
607
610
|
}
|
|
608
611
|
//#endregion
|
|
609
612
|
//#region src/dto/event/EventAvailabilityDto.d.ts
|
|
@@ -1466,7 +1469,17 @@ declare class ProductDto {
|
|
|
1466
1469
|
set images(value: PictureDto[]);
|
|
1467
1470
|
get ticketsReleasedOn(): DateTime | null;
|
|
1468
1471
|
set ticketsReleasedOn(value: DateTime | null);
|
|
1469
|
-
|
|
1472
|
+
get showWhenUnavailable(): boolean;
|
|
1473
|
+
set showWhenUnavailable(value: boolean);
|
|
1474
|
+
get saleStartsOn(): DateTime | null;
|
|
1475
|
+
set saleStartsOn(value: DateTime | null);
|
|
1476
|
+
get saleEndsOn(): DateTime | null;
|
|
1477
|
+
set saleEndsOn(value: DateTime | null);
|
|
1478
|
+
get availability(): ProductAvailability;
|
|
1479
|
+
set availability(value: ProductAvailability);
|
|
1480
|
+
get sold(): number;
|
|
1481
|
+
set sold(value: number);
|
|
1482
|
+
constructor(id: string, type: ProductType, name: string, description: string, price: CostDto, maxQuantity: number, isActive: boolean, isPersonalizationRequired: boolean, isSwappable: boolean, isTimeslotted: boolean, timeSlots: TimeSlotDto[], remainingStock: number, stock: StockPoolDto, hasSales: boolean, image: PictureDto, images: PictureDto[], ticketsReleasedOn: DateTime | null, showWhenUnavailable: boolean, saleStartsOn: DateTime | null, saleEndsOn: DateTime | null, availability: ProductAvailability, sold: number);
|
|
1470
1483
|
}
|
|
1471
1484
|
//#endregion
|
|
1472
1485
|
//#region src/dto/publicPay/PublicPaymentMethodDto.d.ts
|
|
@@ -1671,7 +1684,13 @@ declare class PublicShopProductDto {
|
|
|
1671
1684
|
set image(value: PictureDto | null);
|
|
1672
1685
|
get images(): PictureDto[];
|
|
1673
1686
|
set images(value: PictureDto[]);
|
|
1674
|
-
|
|
1687
|
+
get availability(): ProductAvailability;
|
|
1688
|
+
set availability(value: ProductAvailability);
|
|
1689
|
+
get saleStartsOn(): DateTime | null;
|
|
1690
|
+
set saleStartsOn(value: DateTime | null);
|
|
1691
|
+
get saleEndsOn(): DateTime | null;
|
|
1692
|
+
set saleEndsOn(value: DateTime | null);
|
|
1693
|
+
constructor(id: string, type: ProductType, name: string, description: string, price: CostDto, maxQuantity: number, isActive: boolean, isTimeslotted: boolean, timeSlots: PublicShopTimeSlotDto[], image: PictureDto | null, images: PictureDto[], availability: ProductAvailability, saleStartsOn: DateTime | null, saleEndsOn: DateTime | null);
|
|
1675
1694
|
}
|
|
1676
1695
|
//#endregion
|
|
1677
1696
|
//#region src/dto/publicShop/PublicShopReservationDto.d.ts
|
|
@@ -3275,7 +3294,7 @@ declare class MerchantEventAppTeamService extends BaseService {
|
|
|
3275
3294
|
//#region src/service/MerchantEventAppTeamsService.d.ts
|
|
3276
3295
|
declare class MerchantEventAppTeamsService extends BaseService {
|
|
3277
3296
|
get(merchantId: string, eventId: string, params: ListParams): Promise<BaseResponse<Paginated<AppTeamDto>>>;
|
|
3278
|
-
post(merchantId: string, eventId: string, name: string): Promise<BaseResponse<AppTeamDto>>;
|
|
3297
|
+
post(merchantId: string, eventId: string, name: string, productIds?: string[]): Promise<BaseResponse<AppTeamDto>>;
|
|
3279
3298
|
}
|
|
3280
3299
|
//#endregion
|
|
3281
3300
|
//#region src/service/MerchantEventProductService.d.ts
|
|
@@ -3283,7 +3302,7 @@ declare class MerchantEventProductService extends BaseService {
|
|
|
3283
3302
|
get(merchantId: string, eventId: string, productId: string): Promise<BaseResponse<ProductDto>>;
|
|
3284
3303
|
postImage(merchantId: string, eventId: string, productId: string, picture: File): Promise<BaseResponse<object>>;
|
|
3285
3304
|
patchGeneral(merchantId: string, eventId: string, productId: string, name: string, description: string | null): Promise<BaseResponse<ProductDto>>;
|
|
3286
|
-
patchSales(merchantId: string, eventId: string, productId: string, price: number, maxQuantity: number, isSwappable: boolean, ticketsReleasedOn: DateTime | null): Promise<BaseResponse<ProductDto>>;
|
|
3305
|
+
patchSales(merchantId: string, eventId: string, productId: string, price: number, maxQuantity: number, isSwappable: boolean, ticketsReleasedOn: DateTime | null, showWhenUnavailable: boolean, saleStartsOn: DateTime | null, saleEndsOn: DateTime | null): Promise<BaseResponse<ProductDto>>;
|
|
3287
3306
|
patchValidity(merchantId: string, eventId: string, productId: string, timeSlotIds: string[]): Promise<BaseResponse<ProductDto>>;
|
|
3288
3307
|
patchPause(merchantId: string, eventId: string, productId: string): Promise<BaseResponse<never>>;
|
|
3289
3308
|
patchResume(merchantId: string, eventId: string, productId: string): Promise<BaseResponse<never>>;
|
|
@@ -3387,6 +3406,8 @@ declare class MerchantEventStockPoolsService extends BaseService {
|
|
|
3387
3406
|
get(merchantId: string, eventId: string, params: ListParams): Promise<BaseResponse<Paginated<StockPoolDto>>>;
|
|
3388
3407
|
getOverview(merchantId: string, eventId: string): Promise<BaseResponse<StockOverviewDto>>;
|
|
3389
3408
|
getSelectOptions(merchantId: string, eventId: string, searchQuery?: string | null, ids?: string[] | null): Promise<BaseResponse<FluxFormSelectEntry[]>>;
|
|
3409
|
+
getSingle(merchantId: string, eventId: string, stockPoolId: string): Promise<BaseResponse<StockPoolDto>>;
|
|
3410
|
+
patch(merchantId: string, eventId: string, stockPoolId: string, stock: number): Promise<BaseResponse<StockPoolDto>>;
|
|
3390
3411
|
post(merchantId: string, eventId: string, name: string, stock: number): Promise<BaseResponse<StockPoolDto>>;
|
|
3391
3412
|
}
|
|
3392
3413
|
//#endregion
|
|
@@ -3778,5 +3799,5 @@ declare function export_default$3<T, U>(value: U, adapter: (value: U) => T): T;
|
|
|
3778
3799
|
//#region src/util/optionalArray.d.ts
|
|
3779
3800
|
declare function export_default$4<T>(value: object[], adapter: (value: object) => T): T[] | null;
|
|
3780
3801
|
//#endregion
|
|
3781
|
-
export { AddressAdapter, AddressDto, AdminMerchantService, AdminMerchantSubscriptionService, AdminMerchantsService, AdminService, AiChatAdapter, AiChatConversationDto, AiChatMessageCompletedMessageDto, AiChatMessageDto, AiChatMessageRole, AiChatToolCallDto, AiGenerationStatus, AiUsageAdapter, AiUsageDto, AiUsageFeatureStatusDto, AiUsageOperation, AiUsagePeriodDto, AppTeamDto, AuthAdapter, AuthService, BrowserType, BuyerAdapter, BuyerDto, CashFlowAdapter, CashFlowDiscountDto, CashFlowDto, CashFlowEventType, CashFlowPaymentDto, CashFlowPlatformCostDto, CashFlowRefundDto, CashFlowTimelineEventDto, Claim, CommonAdapter, ContentCalendarAdapter, ContentCalendarGenerationCompletedMessageDto, ContentCalendarItemChannel, ContentCalendarItemCreatorDto, ContentCalendarItemDto, ContentCalendarItemPayload, ContentCalendarItemSource, ContentCalendarItemStatus, ContractDto, CostDto, DailyRevenueChart, DailyRevenueChartEntry, DateTimeAdapter, DiscountCodeAdapter, DiscountCodeDto, DiscountCodeEvent, DiscountCodeType, EMAIL_TEMPLATE_EDITOR_CONTEXTS, EmailTemplateAdapter, EmailTemplateDto, EmailTemplateEditorBlock, EmailTemplateEditorButtonBlock, EmailTemplateEditorCondition, EmailTemplateEditorContext, EmailTemplateEditorDividerBlock, EmailTemplateEditorH1Block, EmailTemplateEditorHeaderBlock, EmailTemplateEditorIfBlock, EmailTemplateEditorLogoBlock, EmailTemplateEditorParagraphBlock, EmailTemplateEditorSpacerBlock, EmailTemplateEditorVariable, EmailTemplateLanguage, EmailTemplateType, EventAdapter, EventAvailabilityDto, EventCountersDto, EventDto, EventStatisticsAppTeamDto, EventStatisticsAttendanceDto, EventStatisticsBuyersAdapter, EventStatisticsBuyersOverviewDto, EventStatisticsFinancialDto, EventStatisticsKpisDto, EventStatisticsOperationsAdapter, EventStatisticsOperationsOverviewDto, EventStatisticsOverviewAdapter, EventStatisticsStatus, EventStatisticsStatusDto, EventStatisticsSwapsDto, EventStatus, Feature, FeatureGroup, FileSystemAdapter, FilterValue, FilterValueSingle, Filters, FinanceAdapter, FinanceOverviewDto, FluxAdapter, Gender, Granularity, HeadingLevel, InsightCardCompletedMessageDto, InsightCardType, InsightDto, InsightLanguage, InsightSignalDto, InsightSignalKind, InsightStatus, InsightsResponseDto, InvitationDto, InvitationService, InvoiceDto, InvoiceLineDto, InvoiceLineType, ListParams, MarketingAttributionAdapter, MarketingAttributionDto, MeService, MerchantAdapter, MerchantAiChatService, MerchantAiSettingsService, MerchantAiUsageService, MerchantBuyerService, MerchantBuyersService, MerchantContractService, MerchantDashboardAdapter, MerchantDashboardKeyMetricsDto, MerchantDashboardService, MerchantDashboardUpcomingEventDto, MerchantDiscountCodeService, MerchantDiscountCodesService, MerchantDto, MerchantEmailTemplateService, MerchantEmailTemplatesService, MerchantEventAppTeamService, MerchantEventAppTeamsService, MerchantEventContentCalendarService, MerchantEventEmailTemplateService, MerchantEventEmailTemplatesService, MerchantEventProductService, MerchantEventProductsService, MerchantEventService, MerchantEventShopService, MerchantEventShopsService, MerchantEventStatisticsBuyersService, MerchantEventStatisticsOperationsService, MerchantEventStatisticsOverviewService, MerchantEventStatisticsSalesService, MerchantEventStockPoolsService, MerchantEventTicketTemplateService, MerchantEventTicketTemplatesService, MerchantEventTimeSlotService, MerchantEventTimeSlotsService, MerchantEventsService, MerchantFinanceInvoiceService, MerchantFinanceInvoicesService, MerchantFinanceService, MerchantOrderService, MerchantOrdersService, MerchantService, MerchantShopService, MerchantShopsService, MerchantStatisticsBuyersService, MerchantStatisticsEventsService, MerchantStatisticsGrowthService, MerchantStatisticsInsightsService, MerchantStatisticsMarketingService, MerchantStatisticsOperationsService, MerchantStatisticsOverviewService, MerchantStatisticsRefundsService, MerchantStatisticsSalesService, MerchantStatisticsService, MerchantSubscriptionDto, MerchantTicketService, MerchantTicketsService, MerchantUserDto, MerchantUserService, MerchantUsersService, MerchantsService, MilestoneDto, MilestoneType, NoticeType, OperatingSystemType, OrderAdapter, OrderDto, OrderLineDto, OrderOrigin, OrderPaymentProviderDto, OrderProductDto, OrderRefundStatus, OrderType, PaymentAdapter, PaymentMethodDto, PaymentProviderDto, PaymentProviderType, PictureDto, ProductAdapter, ProductDto, ProductType, PublicOrderService, PublicPayAdapter, PublicPaymentMethodDto, PublicShopAdapter, PublicShopCartProductDto, PublicShopDesignDto, PublicShopDto, PublicShopElementButtonDto, PublicShopElementDividerDto, PublicShopElementDto, PublicShopElementHeadingDto, PublicShopElementInformationDto, PublicShopElementNoticeDto, PublicShopElementProductDto, PublicShopElementTextDto, PublicShopElementType, PublicShopEventDto, PublicShopMerchantDto, PublicShopProductDto, PublicShopReservationDto, PublicShopReservationProductDetailsDto, PublicShopReservationProductDto, PublicShopService, PublicShopTimeSlotDto, RefundAdapter, RefundDto, RefundInitiatorDto, RefundReason, RefundStatus, RefundTicketRefDto, RefundabilityDto, RefundabilityReason, RenderedMailDto, ReservationAdapter, ReservationDto, ReservationItemDto, ReservationProductDto, ReservationService, ScanStatus, ServiceAdapter, ServiceInfoDto, ServicesService, ShopAddressMode, ShopDesignDto, ShopDto, ShopElementButtonDto, ShopElementDividerDto, ShopElementDto, ShopElementHeadingDto, ShopElementInformationDto, ShopElementNoticeDto, ShopElementProductDto, ShopElementTextDto, ShopElementType, ShopFieldRequirement, ShopStatus, ShortlinkAdapter, ShortlinkDto, StatisticsAdapter, StatisticsBuyersAcquisitionSourceDto, StatisticsBuyersAdapter, StatisticsBuyersAgeGenderMatrixDto, StatisticsBuyersCohortRetentionDto, StatisticsBuyersDeviceConversionDto, StatisticsBuyersGeographicDistributionDto, StatisticsBuyersOverviewDto, StatisticsBuyersRankedDto, StatisticsBuyersSpendBucket, StatisticsBuyersSpendBucketsDto, StatisticsChartAdapter, StatisticsChartDataPoint, StatisticsChartDto, StatisticsChartSeries, StatisticsChartSeriesKind, StatisticsChartValueType, StatisticsEventsAdapter, StatisticsEventsOverviewDto, StatisticsEventsSalesCurveDto, StatisticsEventsSalesCurveEventDto, StatisticsEventsSellOutTimingDto, StatisticsEventsSellOutTimingEventDto, StatisticsEventsTimeToEventBucket, StatisticsEventsTimeToEventDto, StatisticsGrowthAdapter, StatisticsGrowthCmgrDto, StatisticsGrowthOverviewDto, StatisticsInsightsAdapter, StatisticsMarketingAdapter, StatisticsMarketingCampaignDto, StatisticsMarketingOverviewDto, StatisticsMarketingReferrerDto, StatisticsMarketingShortlinkRoiDto, StatisticsMarketingSourceBreakdownDto, StatisticsMarketingSourceFunnelDto, StatisticsMarketingSourceMediumMatrixDto, StatisticsOperationsAdapter, StatisticsOperationsAppTeamDto, StatisticsOperationsNoShowRateDto, StatisticsOperationsNoShowRateEventDto, StatisticsOperationsOverviewDto, StatisticsOperationsScanTimeBucket, StatisticsOperationsScanTimeDistributionDto, StatisticsOperationsStewardDto, StatisticsOperationsStockUtilizationDto, StatisticsOverviewAdapter, StatisticsOverviewBestRevenueMonthDto, StatisticsOverviewCancellationFunnelDto, StatisticsOverviewEventPerformanceDto, StatisticsOverviewEventPerformanceEventDto, StatisticsOverviewEventPerformanceSummaryDto, StatisticsOverviewKPIsDto, StatisticsOverviewKPIsTotalEventsHostedDto, StatisticsOverviewKPIsTotalRevenueDto, StatisticsOverviewKPIsTotalTicketsSoldDto, StatisticsOverviewReservationConversionRateDto, StatisticsOverviewTopShopDto, StatisticsPieChartDto, StatisticsPieSlice, StatisticsRefundsAdapter, StatisticsRefundsAmountDistributionDto, StatisticsRefundsOverviewDto, StatisticsRefundsTopEventDto, StatisticsRefundsVelocityBucket, StatisticsRefundsVelocityDto, StatisticsSalesAdapter, StatisticsSalesDiscountEfficacyDto, StatisticsSalesFailedTransactionReasonDto, StatisticsSalesLifetimeTotalsDto, StatisticsSalesOrderValueBucket, StatisticsSalesOrderValueDistributionDto, StatisticsSalesPurchaseBehaviorDto, StatisticsSalesRepeatPurchaseVelocityBucket, StatisticsSalesRepeatPurchaseVelocityDto, StatisticsSalesTransactionSuccessRateDto, StatisticsTrendDto, StatusResponseDto, StockOverviewDto, StockOverviewItemDto, StockPoolDto, SubscriptionAdapter, SubscriptionPlanDto, SubscriptionType, TicketAdapter, TicketDto, TicketTemplateDto, TicketTemplateType, TicketValidity, TimeSlotDto, TotpStateDto, TransactionDto, TransactionStatus, UiSelectOptionsService, UserDto, UserTokenDto, UserTokenType, VatNumberDto, export_default as buildListQuery, export_default$1 as emptyNull, export_default$2 as jsonBlob, export_default$3 as optional, export_default$4 as optionalArray, parseEmailTemplate, serializeBlocks };
|
|
3802
|
+
export { AddressAdapter, AddressDto, AdminMerchantService, AdminMerchantSubscriptionService, AdminMerchantsService, AdminService, AiChatAdapter, AiChatConversationDto, type AiChatMessageCompletedMessageDto, AiChatMessageDto, AiChatMessageRole, AiChatToolCallDto, type AiGenerationStatus, AiUsageAdapter, AiUsageDto, AiUsageFeatureStatusDto, type AiUsageOperation, AiUsagePeriodDto, AppTeamDto, AuthAdapter, AuthService, type BrowserType, BuyerAdapter, BuyerDto, CashFlowAdapter, CashFlowDiscountDto, CashFlowDto, type CashFlowEventType, CashFlowPaymentDto, CashFlowPlatformCostDto, CashFlowRefundDto, CashFlowTimelineEventDto, type Claim, CommonAdapter, ContentCalendarAdapter, type ContentCalendarGenerationCompletedMessageDto, type ContentCalendarItemChannel, ContentCalendarItemCreatorDto, ContentCalendarItemDto, ContentCalendarItemPayload, type ContentCalendarItemSource, type ContentCalendarItemStatus, ContractDto, CostDto, type DailyRevenueChart, type DailyRevenueChartEntry, DateTimeAdapter, DiscountCodeAdapter, DiscountCodeDto, type DiscountCodeEvent, type DiscountCodeType, EMAIL_TEMPLATE_EDITOR_CONTEXTS, EmailTemplateAdapter, EmailTemplateDto, type EmailTemplateEditorBlock, type EmailTemplateEditorButtonBlock, type EmailTemplateEditorCondition, type EmailTemplateEditorContext, type EmailTemplateEditorDividerBlock, type EmailTemplateEditorH1Block, type EmailTemplateEditorHeaderBlock, type EmailTemplateEditorIfBlock, type EmailTemplateEditorLogoBlock, type EmailTemplateEditorParagraphBlock, type EmailTemplateEditorSpacerBlock, type EmailTemplateEditorVariable, type EmailTemplateLanguage, type EmailTemplateType, EventAdapter, EventAvailabilityDto, EventCountersDto, EventDto, EventStatisticsAppTeamDto, EventStatisticsAttendanceDto, EventStatisticsBuyersAdapter, EventStatisticsBuyersOverviewDto, EventStatisticsFinancialDto, EventStatisticsKpisDto, EventStatisticsOperationsAdapter, EventStatisticsOperationsOverviewDto, EventStatisticsOverviewAdapter, type EventStatisticsStatus, EventStatisticsStatusDto, EventStatisticsSwapsDto, type EventStatus, type Feature, type FeatureGroup, FileSystemAdapter, type FilterValue, type FilterValueSingle, type Filters, FinanceAdapter, FinanceOverviewDto, FluxAdapter, type Gender, type Granularity, type HeadingLevel, type InsightCardCompletedMessageDto, type InsightCardType, InsightDto, type InsightLanguage, InsightSignalDto, type InsightSignalKind, type InsightStatus, InsightsResponseDto, InvitationDto, InvitationService, InvoiceDto, InvoiceLineDto, type InvoiceLineType, type ListParams, MarketingAttributionAdapter, MarketingAttributionDto, MeService, MerchantAdapter, MerchantAiChatService, MerchantAiSettingsService, MerchantAiUsageService, MerchantBuyerService, MerchantBuyersService, MerchantContractService, MerchantDashboardAdapter, MerchantDashboardKeyMetricsDto, MerchantDashboardService, MerchantDashboardUpcomingEventDto, MerchantDiscountCodeService, MerchantDiscountCodesService, MerchantDto, MerchantEmailTemplateService, MerchantEmailTemplatesService, MerchantEventAppTeamService, MerchantEventAppTeamsService, MerchantEventContentCalendarService, MerchantEventEmailTemplateService, MerchantEventEmailTemplatesService, MerchantEventProductService, MerchantEventProductsService, MerchantEventService, MerchantEventShopService, MerchantEventShopsService, MerchantEventStatisticsBuyersService, MerchantEventStatisticsOperationsService, MerchantEventStatisticsOverviewService, MerchantEventStatisticsSalesService, MerchantEventStockPoolsService, MerchantEventTicketTemplateService, MerchantEventTicketTemplatesService, MerchantEventTimeSlotService, MerchantEventTimeSlotsService, MerchantEventsService, MerchantFinanceInvoiceService, MerchantFinanceInvoicesService, MerchantFinanceService, MerchantOrderService, MerchantOrdersService, MerchantService, MerchantShopService, MerchantShopsService, MerchantStatisticsBuyersService, MerchantStatisticsEventsService, MerchantStatisticsGrowthService, MerchantStatisticsInsightsService, MerchantStatisticsMarketingService, MerchantStatisticsOperationsService, MerchantStatisticsOverviewService, MerchantStatisticsRefundsService, MerchantStatisticsSalesService, MerchantStatisticsService, MerchantSubscriptionDto, MerchantTicketService, MerchantTicketsService, MerchantUserDto, MerchantUserService, MerchantUsersService, MerchantsService, MilestoneDto, type MilestoneType, type NoticeType, type OperatingSystemType, OrderAdapter, OrderDto, OrderLineDto, type OrderOrigin, OrderPaymentProviderDto, OrderProductDto, type OrderRefundStatus, type OrderType, PaymentAdapter, PaymentMethodDto, PaymentProviderDto, type PaymentProviderType, PictureDto, ProductAdapter, type ProductAvailability, ProductDto, type ProductType, PublicOrderService, PublicPayAdapter, PublicPaymentMethodDto, PublicShopAdapter, PublicShopCartProductDto, PublicShopDesignDto, PublicShopDto, PublicShopElementButtonDto, PublicShopElementDividerDto, PublicShopElementDto, PublicShopElementHeadingDto, PublicShopElementInformationDto, PublicShopElementNoticeDto, PublicShopElementProductDto, PublicShopElementTextDto, type PublicShopElementType, PublicShopEventDto, PublicShopMerchantDto, PublicShopProductDto, PublicShopReservationDto, PublicShopReservationProductDetailsDto, PublicShopReservationProductDto, PublicShopService, PublicShopTimeSlotDto, RefundAdapter, RefundDto, RefundInitiatorDto, type RefundReason, type RefundStatus, RefundTicketRefDto, RefundabilityDto, type RefundabilityReason, RenderedMailDto, ReservationAdapter, ReservationDto, ReservationItemDto, ReservationProductDto, ReservationService, type ScanStatus, ServiceAdapter, ServiceInfoDto, ServicesService, type ShopAddressMode, ShopDesignDto, ShopDto, ShopElementButtonDto, ShopElementDividerDto, ShopElementDto, ShopElementHeadingDto, ShopElementInformationDto, ShopElementNoticeDto, ShopElementProductDto, ShopElementTextDto, type ShopElementType, type ShopFieldRequirement, type ShopStatus, ShortlinkAdapter, ShortlinkDto, StatisticsAdapter, StatisticsBuyersAcquisitionSourceDto, StatisticsBuyersAdapter, StatisticsBuyersAgeGenderMatrixDto, StatisticsBuyersCohortRetentionDto, StatisticsBuyersDeviceConversionDto, StatisticsBuyersGeographicDistributionDto, StatisticsBuyersOverviewDto, StatisticsBuyersRankedDto, StatisticsBuyersSpendBucket, StatisticsBuyersSpendBucketsDto, StatisticsChartAdapter, type StatisticsChartDataPoint, StatisticsChartDto, type StatisticsChartSeries, type StatisticsChartSeriesKind, type StatisticsChartValueType, StatisticsEventsAdapter, StatisticsEventsOverviewDto, StatisticsEventsSalesCurveDto, StatisticsEventsSalesCurveEventDto, StatisticsEventsSellOutTimingDto, StatisticsEventsSellOutTimingEventDto, StatisticsEventsTimeToEventBucket, StatisticsEventsTimeToEventDto, StatisticsGrowthAdapter, StatisticsGrowthCmgrDto, StatisticsGrowthOverviewDto, StatisticsInsightsAdapter, StatisticsMarketingAdapter, StatisticsMarketingCampaignDto, StatisticsMarketingOverviewDto, StatisticsMarketingReferrerDto, StatisticsMarketingShortlinkRoiDto, StatisticsMarketingSourceBreakdownDto, StatisticsMarketingSourceFunnelDto, StatisticsMarketingSourceMediumMatrixDto, StatisticsOperationsAdapter, StatisticsOperationsAppTeamDto, StatisticsOperationsNoShowRateDto, StatisticsOperationsNoShowRateEventDto, StatisticsOperationsOverviewDto, StatisticsOperationsScanTimeBucket, StatisticsOperationsScanTimeDistributionDto, StatisticsOperationsStewardDto, StatisticsOperationsStockUtilizationDto, StatisticsOverviewAdapter, StatisticsOverviewBestRevenueMonthDto, StatisticsOverviewCancellationFunnelDto, StatisticsOverviewEventPerformanceDto, StatisticsOverviewEventPerformanceEventDto, StatisticsOverviewEventPerformanceSummaryDto, StatisticsOverviewKPIsDto, StatisticsOverviewKPIsTotalEventsHostedDto, StatisticsOverviewKPIsTotalRevenueDto, StatisticsOverviewKPIsTotalTicketsSoldDto, StatisticsOverviewReservationConversionRateDto, StatisticsOverviewTopShopDto, StatisticsPieChartDto, type StatisticsPieSlice, StatisticsRefundsAdapter, StatisticsRefundsAmountDistributionDto, StatisticsRefundsOverviewDto, StatisticsRefundsTopEventDto, StatisticsRefundsVelocityBucket, StatisticsRefundsVelocityDto, StatisticsSalesAdapter, StatisticsSalesDiscountEfficacyDto, StatisticsSalesFailedTransactionReasonDto, StatisticsSalesLifetimeTotalsDto, StatisticsSalesOrderValueBucket, StatisticsSalesOrderValueDistributionDto, StatisticsSalesPurchaseBehaviorDto, StatisticsSalesRepeatPurchaseVelocityBucket, StatisticsSalesRepeatPurchaseVelocityDto, StatisticsSalesTransactionSuccessRateDto, StatisticsTrendDto, StatusResponseDto, StockOverviewDto, StockOverviewItemDto, StockPoolDto, SubscriptionAdapter, SubscriptionPlanDto, type SubscriptionType, TicketAdapter, TicketDto, TicketTemplateDto, type TicketTemplateType, type TicketValidity, TimeSlotDto, TotpStateDto, TransactionDto, type TransactionStatus, UiSelectOptionsService, UserDto, UserTokenDto, type UserTokenType, VatNumberDto, export_default as buildListQuery, export_default$1 as emptyNull, export_default$2 as jsonBlob, export_default$3 as optional, export_default$4 as optionalArray, parseEmailTemplate, serializeBlocks };
|
|
3782
3803
|
//# sourceMappingURL=index.d.mts.map
|