@passly-nl/data 1.4.0 → 1.4.3
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 +39 -8
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +144 -16
- package/dist/index.mjs.map +1 -1
- package/package.json +6 -6
- package/src/adapter/EventAdapter.ts +5 -2
- package/src/adapter/ProductAdapter.ts +6 -1
- package/src/adapter/PublicShopAdapter.ts +7 -2
- package/src/dto/event/AppTeamDto.ts +11 -1
- package/src/dto/event/ShopDesignDto.ts +22 -1
- package/src/dto/product/ProductDto.ts +52 -2
- package/src/dto/publicShop/PublicShopDesignDto.ts +22 -1
- 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/MerchantEventShopService.ts +28 -3
- package/src/service/MerchantEventStockPoolsService.ts +23 -0
- package/src/types/product.ts +7 -0
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
|
|
@@ -671,7 +674,11 @@ declare class ShopDesignDto {
|
|
|
671
674
|
set foregroundColor(value: string);
|
|
672
675
|
get primaryColor(): string;
|
|
673
676
|
set primaryColor(value: string);
|
|
674
|
-
|
|
677
|
+
get background(): PictureDto | null;
|
|
678
|
+
set background(value: PictureDto | null);
|
|
679
|
+
get backgroundScrim(): number;
|
|
680
|
+
set backgroundScrim(value: number);
|
|
681
|
+
constructor(backgroundColor: string, foregroundColor: string, primaryColor: string, background: PictureDto | null, backgroundScrim: number);
|
|
675
682
|
}
|
|
676
683
|
//#endregion
|
|
677
684
|
//#region src/dto/event/ShopDto.d.ts
|
|
@@ -1466,7 +1473,17 @@ declare class ProductDto {
|
|
|
1466
1473
|
set images(value: PictureDto[]);
|
|
1467
1474
|
get ticketsReleasedOn(): DateTime | null;
|
|
1468
1475
|
set ticketsReleasedOn(value: DateTime | null);
|
|
1469
|
-
|
|
1476
|
+
get showWhenUnavailable(): boolean;
|
|
1477
|
+
set showWhenUnavailable(value: boolean);
|
|
1478
|
+
get saleStartsOn(): DateTime | null;
|
|
1479
|
+
set saleStartsOn(value: DateTime | null);
|
|
1480
|
+
get saleEndsOn(): DateTime | null;
|
|
1481
|
+
set saleEndsOn(value: DateTime | null);
|
|
1482
|
+
get availability(): ProductAvailability;
|
|
1483
|
+
set availability(value: ProductAvailability);
|
|
1484
|
+
get sold(): number;
|
|
1485
|
+
set sold(value: number);
|
|
1486
|
+
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
1487
|
}
|
|
1471
1488
|
//#endregion
|
|
1472
1489
|
//#region src/dto/publicPay/PublicPaymentMethodDto.d.ts
|
|
@@ -1500,7 +1517,11 @@ declare class PublicShopDesignDto {
|
|
|
1500
1517
|
set foregroundColor(value: string);
|
|
1501
1518
|
get primaryColor(): string;
|
|
1502
1519
|
set primaryColor(value: string);
|
|
1503
|
-
|
|
1520
|
+
get background(): PictureDto | null;
|
|
1521
|
+
set background(value: PictureDto | null);
|
|
1522
|
+
get backgroundScrim(): number;
|
|
1523
|
+
set backgroundScrim(value: number);
|
|
1524
|
+
constructor(backgroundColor: string, foregroundColor: string, primaryColor: string, background: PictureDto | null, backgroundScrim: number);
|
|
1504
1525
|
}
|
|
1505
1526
|
//#endregion
|
|
1506
1527
|
//#region src/dto/publicShop/PublicShopDto.d.ts
|
|
@@ -1671,7 +1692,13 @@ declare class PublicShopProductDto {
|
|
|
1671
1692
|
set image(value: PictureDto | null);
|
|
1672
1693
|
get images(): PictureDto[];
|
|
1673
1694
|
set images(value: PictureDto[]);
|
|
1674
|
-
|
|
1695
|
+
get availability(): ProductAvailability;
|
|
1696
|
+
set availability(value: ProductAvailability);
|
|
1697
|
+
get saleStartsOn(): DateTime | null;
|
|
1698
|
+
set saleStartsOn(value: DateTime | null);
|
|
1699
|
+
get saleEndsOn(): DateTime | null;
|
|
1700
|
+
set saleEndsOn(value: DateTime | null);
|
|
1701
|
+
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
1702
|
}
|
|
1676
1703
|
//#endregion
|
|
1677
1704
|
//#region src/dto/publicShop/PublicShopReservationDto.d.ts
|
|
@@ -3275,7 +3302,7 @@ declare class MerchantEventAppTeamService extends BaseService {
|
|
|
3275
3302
|
//#region src/service/MerchantEventAppTeamsService.d.ts
|
|
3276
3303
|
declare class MerchantEventAppTeamsService extends BaseService {
|
|
3277
3304
|
get(merchantId: string, eventId: string, params: ListParams): Promise<BaseResponse<Paginated<AppTeamDto>>>;
|
|
3278
|
-
post(merchantId: string, eventId: string, name: string): Promise<BaseResponse<AppTeamDto>>;
|
|
3305
|
+
post(merchantId: string, eventId: string, name: string, productIds?: string[]): Promise<BaseResponse<AppTeamDto>>;
|
|
3279
3306
|
}
|
|
3280
3307
|
//#endregion
|
|
3281
3308
|
//#region src/service/MerchantEventProductService.d.ts
|
|
@@ -3283,7 +3310,7 @@ declare class MerchantEventProductService extends BaseService {
|
|
|
3283
3310
|
get(merchantId: string, eventId: string, productId: string): Promise<BaseResponse<ProductDto>>;
|
|
3284
3311
|
postImage(merchantId: string, eventId: string, productId: string, picture: File): Promise<BaseResponse<object>>;
|
|
3285
3312
|
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>>;
|
|
3313
|
+
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
3314
|
patchValidity(merchantId: string, eventId: string, productId: string, timeSlotIds: string[]): Promise<BaseResponse<ProductDto>>;
|
|
3288
3315
|
patchPause(merchantId: string, eventId: string, productId: string): Promise<BaseResponse<never>>;
|
|
3289
3316
|
patchResume(merchantId: string, eventId: string, productId: string): Promise<BaseResponse<never>>;
|
|
@@ -3372,7 +3399,9 @@ declare class MerchantEventShopService extends BaseService {
|
|
|
3372
3399
|
patchDesign(merchantId: string, eventId: string, shopId: string, design: ShopDesignDto): Promise<BaseResponse<ShopDesignDto>>;
|
|
3373
3400
|
patchElements(merchantId: string, eventId: string, shopId: string, elements: object[]): Promise<BaseResponse<ShopElementDto[]>>;
|
|
3374
3401
|
patchFields(merchantId: string, eventId: string, shop: ShopDto): Promise<BaseResponse<ShopDto>>;
|
|
3402
|
+
postBackground(merchantId: string, eventId: string, shopId: string, picture: File): Promise<BaseResponse<StatusResponseDto>>;
|
|
3375
3403
|
postShortlink(merchantId: string, eventId: string, shopId: string): Promise<BaseResponse<ShortlinkDto>>;
|
|
3404
|
+
deleteBackground(merchantId: string, eventId: string, shopId: string): Promise<BaseResponse<StatusResponseDto>>;
|
|
3376
3405
|
}
|
|
3377
3406
|
//#endregion
|
|
3378
3407
|
//#region src/service/MerchantEventShopsService.d.ts
|
|
@@ -3387,6 +3416,8 @@ declare class MerchantEventStockPoolsService extends BaseService {
|
|
|
3387
3416
|
get(merchantId: string, eventId: string, params: ListParams): Promise<BaseResponse<Paginated<StockPoolDto>>>;
|
|
3388
3417
|
getOverview(merchantId: string, eventId: string): Promise<BaseResponse<StockOverviewDto>>;
|
|
3389
3418
|
getSelectOptions(merchantId: string, eventId: string, searchQuery?: string | null, ids?: string[] | null): Promise<BaseResponse<FluxFormSelectEntry[]>>;
|
|
3419
|
+
getSingle(merchantId: string, eventId: string, stockPoolId: string): Promise<BaseResponse<StockPoolDto>>;
|
|
3420
|
+
patch(merchantId: string, eventId: string, stockPoolId: string, stock: number): Promise<BaseResponse<StockPoolDto>>;
|
|
3390
3421
|
post(merchantId: string, eventId: string, name: string, stock: number): Promise<BaseResponse<StockPoolDto>>;
|
|
3391
3422
|
}
|
|
3392
3423
|
//#endregion
|
|
@@ -3778,5 +3809,5 @@ declare function export_default$3<T, U>(value: U, adapter: (value: U) => T): T;
|
|
|
3778
3809
|
//#region src/util/optionalArray.d.ts
|
|
3779
3810
|
declare function export_default$4<T>(value: object[], adapter: (value: object) => T): T[] | null;
|
|
3780
3811
|
//#endregion
|
|
3781
|
-
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, 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 };
|
|
3812
|
+
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
3813
|
//# sourceMappingURL=index.d.mts.map
|