@passly-nl/data 1.4.3 → 1.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +37 -23
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +109 -55
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/adapter/EventAdapter.ts +9 -1
- package/src/adapter/OrderAdapter.ts +3 -2
- package/src/adapter/ProductAdapter.ts +2 -1
- package/src/adapter/PublicShopAdapter.ts +8 -1
- package/src/adapter/ReservationAdapter.ts +4 -2
- package/src/dto/event/ShopElementButtonDto.ts +3 -2
- package/src/dto/event/ShopElementDividerDto.ts +3 -2
- package/src/dto/event/ShopElementDto.ts +12 -2
- package/src/dto/event/ShopElementHeadingDto.ts +3 -3
- package/src/dto/event/ShopElementInformationDto.ts +3 -2
- package/src/dto/event/ShopElementNoticeDto.ts +3 -3
- package/src/dto/event/ShopElementProductDto.ts +3 -2
- package/src/dto/event/ShopElementTextDto.ts +3 -2
- package/src/dto/order/OrderProductDto.ts +12 -1
- package/src/dto/product/ProductDto.ts +11 -1
- package/src/dto/publicShop/PublicShopElementButtonDto.ts +3 -2
- package/src/dto/publicShop/PublicShopElementDividerDto.ts +3 -2
- package/src/dto/publicShop/PublicShopElementDto.ts +12 -2
- package/src/dto/publicShop/PublicShopElementHeadingDto.ts +3 -3
- package/src/dto/publicShop/PublicShopElementInformationDto.ts +3 -2
- package/src/dto/publicShop/PublicShopElementNoticeDto.ts +3 -3
- package/src/dto/publicShop/PublicShopElementProductDto.ts +3 -2
- package/src/dto/publicShop/PublicShopElementTextDto.ts +3 -2
- package/src/dto/reservation/ReservationProductDto.ts +23 -2
- package/src/service/MerchantEventProductService.ts +3 -2
- package/src/service/MerchantEventProductsService.ts +5 -2
- package/src/service/PublicShopService.ts +17 -2
- package/src/types/event.ts +4 -0
- package/src/types/product.ts +2 -1
package/dist/index.d.mts
CHANGED
|
@@ -179,6 +179,7 @@ type NoticeType = "primary" | "danger" | "info" | "success" | "warning";
|
|
|
179
179
|
//#region src/types/event.d.ts
|
|
180
180
|
type EventStatus = "active" | "concluded" | "happening" | "in_sale" | "pending";
|
|
181
181
|
type EventStatisticsStatus = "active" | "concluded" | "upcoming";
|
|
182
|
+
type ShopElementPage = "main" | "add_ons";
|
|
182
183
|
type ShopElementType = "button" | "divider" | "heading" | "information" | "notice" | "product" | "text";
|
|
183
184
|
type ShopAddressMode = "full" | "city" | "postal_code_number";
|
|
184
185
|
type ShopFieldRequirement = "disabled" | "enabled" | "required";
|
|
@@ -227,7 +228,7 @@ type PaymentProviderType = "mollie" | "manual";
|
|
|
227
228
|
type TransactionStatus = "canceled" | "expired" | "failed" | "paid" | "pending" | "setup";
|
|
228
229
|
//#endregion
|
|
229
230
|
//#region src/types/product.d.ts
|
|
230
|
-
type ProductType = "ticket";
|
|
231
|
+
type ProductType = "add_on" | "ticket";
|
|
231
232
|
type ProductAvailability = "available" | "paused" | "upcoming" | "ended" | "sold_out";
|
|
232
233
|
//#endregion
|
|
233
234
|
//#region src/types/publicShop.d.ts
|
|
@@ -722,9 +723,11 @@ declare abstract class ShopElementDto {
|
|
|
722
723
|
#private;
|
|
723
724
|
get id(): string;
|
|
724
725
|
set id(value: string);
|
|
726
|
+
get page(): ShopElementPage;
|
|
727
|
+
set page(value: ShopElementPage);
|
|
725
728
|
get type(): ShopElementType;
|
|
726
729
|
set type(value: ShopElementType);
|
|
727
|
-
protected constructor(id: string, type: ShopElementType);
|
|
730
|
+
protected constructor(id: string, type: ShopElementType, page: ShopElementPage);
|
|
728
731
|
}
|
|
729
732
|
//#endregion
|
|
730
733
|
//#region src/dto/event/ShopElementButtonDto.d.ts
|
|
@@ -736,7 +739,7 @@ declare class ShopElementButtonDto extends ShopElementDto {
|
|
|
736
739
|
set text(value: string);
|
|
737
740
|
get url(): string;
|
|
738
741
|
set url(value: string);
|
|
739
|
-
constructor(id: string, icon: FluxIconName | null, text: string, url: string);
|
|
742
|
+
constructor(id: string, page: ShopElementPage, icon: FluxIconName | null, text: string, url: string);
|
|
740
743
|
}
|
|
741
744
|
//#endregion
|
|
742
745
|
//#region src/dto/event/ShopElementDividerDto.d.ts
|
|
@@ -746,7 +749,7 @@ declare class ShopElementDividerDto extends ShopElementDto {
|
|
|
746
749
|
set icon(value: FluxIconName | null);
|
|
747
750
|
get text(): string | null;
|
|
748
751
|
set text(value: string | null);
|
|
749
|
-
constructor(id: string, icon: FluxIconName | null, text: string | null);
|
|
752
|
+
constructor(id: string, page: ShopElementPage, icon: FluxIconName | null, text: string | null);
|
|
750
753
|
}
|
|
751
754
|
//#endregion
|
|
752
755
|
//#region src/dto/event/ShopElementHeadingDto.d.ts
|
|
@@ -756,12 +759,12 @@ declare class ShopElementHeadingDto extends ShopElementDto {
|
|
|
756
759
|
set headingLevel(value: HeadingLevel);
|
|
757
760
|
get title(): string;
|
|
758
761
|
set title(value: string);
|
|
759
|
-
constructor(id: string, headingLevel: HeadingLevel, title: string);
|
|
762
|
+
constructor(id: string, page: ShopElementPage, headingLevel: HeadingLevel, title: string);
|
|
760
763
|
}
|
|
761
764
|
//#endregion
|
|
762
765
|
//#region src/dto/event/ShopElementInformationDto.d.ts
|
|
763
766
|
declare class ShopElementInformationDto extends ShopElementDto {
|
|
764
|
-
constructor(id: string);
|
|
767
|
+
constructor(id: string, page: ShopElementPage);
|
|
765
768
|
}
|
|
766
769
|
//#endregion
|
|
767
770
|
//#region src/dto/event/ShopElementNoticeDto.d.ts
|
|
@@ -775,7 +778,7 @@ declare class ShopElementNoticeDto extends ShopElementDto {
|
|
|
775
778
|
set title(value: string | null);
|
|
776
779
|
get text(): string;
|
|
777
780
|
set text(value: string);
|
|
778
|
-
constructor(id: string, icon: FluxIconName, noticeType: NoticeType, title: string | null, text: string);
|
|
781
|
+
constructor(id: string, page: ShopElementPage, icon: FluxIconName, noticeType: NoticeType, title: string | null, text: string);
|
|
779
782
|
}
|
|
780
783
|
//#endregion
|
|
781
784
|
//#region src/dto/event/ShopElementProductDto.d.ts
|
|
@@ -783,7 +786,7 @@ declare class ShopElementProductDto extends ShopElementDto {
|
|
|
783
786
|
#private;
|
|
784
787
|
get product(): ProductDto;
|
|
785
788
|
set product(value: ProductDto);
|
|
786
|
-
constructor(id: string, product: ProductDto);
|
|
789
|
+
constructor(id: string, page: ShopElementPage, product: ProductDto);
|
|
787
790
|
}
|
|
788
791
|
//#endregion
|
|
789
792
|
//#region src/dto/event/ShopElementTextDto.d.ts
|
|
@@ -791,7 +794,7 @@ declare class ShopElementTextDto extends ShopElementDto {
|
|
|
791
794
|
#private;
|
|
792
795
|
get text(): string;
|
|
793
796
|
set text(value: string);
|
|
794
|
-
constructor(id: string, text: string);
|
|
797
|
+
constructor(id: string, page: ShopElementPage, text: string);
|
|
795
798
|
}
|
|
796
799
|
//#endregion
|
|
797
800
|
//#region src/dto/event/StockOverviewDto.d.ts
|
|
@@ -1367,7 +1370,9 @@ declare class OrderProductDto {
|
|
|
1367
1370
|
set description(value: string);
|
|
1368
1371
|
get image(): PictureDto | null;
|
|
1369
1372
|
set image(value: PictureDto | null);
|
|
1370
|
-
|
|
1373
|
+
get type(): ProductType;
|
|
1374
|
+
set type(value: ProductType);
|
|
1375
|
+
constructor(id: string, name: string, description: string, image: PictureDto | null, type: ProductType);
|
|
1371
1376
|
}
|
|
1372
1377
|
//#endregion
|
|
1373
1378
|
//#region src/dto/payment/CostDto.d.ts
|
|
@@ -1455,6 +1460,8 @@ declare class ProductDto {
|
|
|
1455
1460
|
set isActive(value: boolean);
|
|
1456
1461
|
get isPersonalizationRequired(): boolean;
|
|
1457
1462
|
set isPersonalizationRequired(value: boolean);
|
|
1463
|
+
get isScannable(): boolean;
|
|
1464
|
+
set isScannable(value: boolean);
|
|
1458
1465
|
get isSwappable(): boolean;
|
|
1459
1466
|
set isSwappable(value: boolean);
|
|
1460
1467
|
get isTimeslotted(): boolean;
|
|
@@ -1483,7 +1490,7 @@ declare class ProductDto {
|
|
|
1483
1490
|
set availability(value: ProductAvailability);
|
|
1484
1491
|
get sold(): number;
|
|
1485
1492
|
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);
|
|
1493
|
+
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, isScannable?: boolean);
|
|
1487
1494
|
}
|
|
1488
1495
|
//#endregion
|
|
1489
1496
|
//#region src/dto/publicPay/PublicPaymentMethodDto.d.ts
|
|
@@ -1561,9 +1568,11 @@ declare abstract class PublicShopElementDto {
|
|
|
1561
1568
|
#private;
|
|
1562
1569
|
get id(): string;
|
|
1563
1570
|
set id(value: string);
|
|
1571
|
+
get page(): ShopElementPage;
|
|
1572
|
+
set page(value: ShopElementPage);
|
|
1564
1573
|
get type(): PublicShopElementType;
|
|
1565
1574
|
set type(value: PublicShopElementType);
|
|
1566
|
-
protected constructor(id: string, type: PublicShopElementType);
|
|
1575
|
+
protected constructor(id: string, type: PublicShopElementType, page: ShopElementPage);
|
|
1567
1576
|
}
|
|
1568
1577
|
//#endregion
|
|
1569
1578
|
//#region src/dto/publicShop/PublicShopElementButtonDto.d.ts
|
|
@@ -1575,7 +1584,7 @@ declare class PublicShopElementButtonDto extends PublicShopElementDto {
|
|
|
1575
1584
|
set text(value: string);
|
|
1576
1585
|
get url(): string;
|
|
1577
1586
|
set url(value: string);
|
|
1578
|
-
constructor(id: string, icon: FluxIconName | null, text: string, url: string);
|
|
1587
|
+
constructor(id: string, page: ShopElementPage, icon: FluxIconName | null, text: string, url: string);
|
|
1579
1588
|
}
|
|
1580
1589
|
//#endregion
|
|
1581
1590
|
//#region src/dto/publicShop/PublicShopElementDividerDto.d.ts
|
|
@@ -1585,7 +1594,7 @@ declare class PublicShopElementDividerDto extends PublicShopElementDto {
|
|
|
1585
1594
|
set icon(value: FluxIconName | null);
|
|
1586
1595
|
get text(): string | null;
|
|
1587
1596
|
set text(value: string | null);
|
|
1588
|
-
constructor(id: string, icon: FluxIconName | null, text: string | null);
|
|
1597
|
+
constructor(id: string, page: ShopElementPage, icon: FluxIconName | null, text: string | null);
|
|
1589
1598
|
}
|
|
1590
1599
|
//#endregion
|
|
1591
1600
|
//#region src/dto/publicShop/PublicShopElementHeadingDto.d.ts
|
|
@@ -1595,12 +1604,12 @@ declare class PublicShopElementHeadingDto extends PublicShopElementDto {
|
|
|
1595
1604
|
set headingLevel(value: HeadingLevel);
|
|
1596
1605
|
get title(): string;
|
|
1597
1606
|
set title(value: string);
|
|
1598
|
-
constructor(id: string, headingLevel: HeadingLevel, title: string);
|
|
1607
|
+
constructor(id: string, page: ShopElementPage, headingLevel: HeadingLevel, title: string);
|
|
1599
1608
|
}
|
|
1600
1609
|
//#endregion
|
|
1601
1610
|
//#region src/dto/publicShop/PublicShopElementInformationDto.d.ts
|
|
1602
1611
|
declare class PublicShopElementInformationDto extends PublicShopElementDto {
|
|
1603
|
-
constructor(id: string);
|
|
1612
|
+
constructor(id: string, page: ShopElementPage);
|
|
1604
1613
|
}
|
|
1605
1614
|
//#endregion
|
|
1606
1615
|
//#region src/dto/publicShop/PublicShopElementNoticeDto.d.ts
|
|
@@ -1614,7 +1623,7 @@ declare class PublicShopElementNoticeDto extends PublicShopElementDto {
|
|
|
1614
1623
|
set title(value: string | null);
|
|
1615
1624
|
get text(): string;
|
|
1616
1625
|
set text(value: string);
|
|
1617
|
-
constructor(id: string, icon: FluxIconName, noticeType: NoticeType, title: string | null, text: string);
|
|
1626
|
+
constructor(id: string, page: ShopElementPage, icon: FluxIconName, noticeType: NoticeType, title: string | null, text: string);
|
|
1618
1627
|
}
|
|
1619
1628
|
//#endregion
|
|
1620
1629
|
//#region src/dto/publicShop/PublicShopElementProductDto.d.ts
|
|
@@ -1622,7 +1631,7 @@ declare class PublicShopElementProductDto extends PublicShopElementDto {
|
|
|
1622
1631
|
#private;
|
|
1623
1632
|
get product(): PublicShopProductDto;
|
|
1624
1633
|
set product(value: PublicShopProductDto);
|
|
1625
|
-
constructor(id: string, product: PublicShopProductDto);
|
|
1634
|
+
constructor(id: string, page: ShopElementPage, product: PublicShopProductDto);
|
|
1626
1635
|
}
|
|
1627
1636
|
//#endregion
|
|
1628
1637
|
//#region src/dto/publicShop/PublicShopElementTextDto.d.ts
|
|
@@ -1630,7 +1639,7 @@ declare class PublicShopElementTextDto extends PublicShopElementDto {
|
|
|
1630
1639
|
#private;
|
|
1631
1640
|
get text(): string;
|
|
1632
1641
|
set text(value: string);
|
|
1633
|
-
constructor(id: string, text: string);
|
|
1642
|
+
constructor(id: string, page: ShopElementPage, text: string);
|
|
1634
1643
|
}
|
|
1635
1644
|
//#endregion
|
|
1636
1645
|
//#region src/dto/publicShop/PublicShopEventDto.d.ts
|
|
@@ -1868,7 +1877,11 @@ declare class ReservationProductDto {
|
|
|
1868
1877
|
set description(value: string);
|
|
1869
1878
|
get image(): PictureDto | null;
|
|
1870
1879
|
set image(value: PictureDto | null);
|
|
1871
|
-
|
|
1880
|
+
get price(): CostDto;
|
|
1881
|
+
set price(value: CostDto);
|
|
1882
|
+
get type(): ProductType;
|
|
1883
|
+
set type(value: ProductType);
|
|
1884
|
+
constructor(id: string, name: string, description: string, image: PictureDto | null, price: CostDto, type: ProductType);
|
|
1872
1885
|
}
|
|
1873
1886
|
//#endregion
|
|
1874
1887
|
//#region src/dto/service/ServiceInfoDto.d.ts
|
|
@@ -3310,7 +3323,7 @@ declare class MerchantEventProductService extends BaseService {
|
|
|
3310
3323
|
get(merchantId: string, eventId: string, productId: string): Promise<BaseResponse<ProductDto>>;
|
|
3311
3324
|
postImage(merchantId: string, eventId: string, productId: string, picture: File): Promise<BaseResponse<object>>;
|
|
3312
3325
|
patchGeneral(merchantId: string, eventId: string, productId: string, name: string, description: string | 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>>;
|
|
3326
|
+
patchSales(merchantId: string, eventId: string, productId: string, price: number, maxQuantity: number, isSwappable: boolean, ticketsReleasedOn: DateTime | null, showWhenUnavailable: boolean, saleStartsOn: DateTime | null, saleEndsOn: DateTime | null, isScannable?: boolean | null): Promise<BaseResponse<ProductDto>>;
|
|
3314
3327
|
patchValidity(merchantId: string, eventId: string, productId: string, timeSlotIds: string[]): Promise<BaseResponse<ProductDto>>;
|
|
3315
3328
|
patchPause(merchantId: string, eventId: string, productId: string): Promise<BaseResponse<never>>;
|
|
3316
3329
|
patchResume(merchantId: string, eventId: string, productId: string): Promise<BaseResponse<never>>;
|
|
@@ -3321,7 +3334,7 @@ declare class MerchantEventProductService extends BaseService {
|
|
|
3321
3334
|
declare class MerchantEventProductsService extends BaseService {
|
|
3322
3335
|
get(merchantId: string, eventId: string, params: ListParams): Promise<BaseResponse<Paginated<ProductDto>>>;
|
|
3323
3336
|
getSelectOptions(merchantId: string, eventId: string, searchQuery?: string | null, ids?: string[] | null): Promise<BaseResponse<FluxFormSelectEntry[]>>;
|
|
3324
|
-
post(merchantId: string, eventId: string, name: string, description: string, price: number, maxQuantity: number, stock: number | null, stockPoolId: string | null, ticketsReleasedOn?: DateTime | null, timeSlotIds?: string[] | null): Promise<BaseResponse<ProductDto>>;
|
|
3337
|
+
post(merchantId: string, eventId: string, name: string, description: string, price: number, maxQuantity: number, stock: number | null, stockPoolId: string | null, ticketsReleasedOn?: DateTime | null, timeSlotIds?: string[] | null, type?: ProductType, isScannable?: boolean | null): Promise<BaseResponse<ProductDto>>;
|
|
3325
3338
|
}
|
|
3326
3339
|
//#endregion
|
|
3327
3340
|
//#region src/service/MerchantEventService.d.ts
|
|
@@ -3755,6 +3768,7 @@ declare class PublicOrderService extends BaseService {
|
|
|
3755
3768
|
declare class PublicShopService extends BaseService {
|
|
3756
3769
|
get(shopId: string): Promise<BaseResponse<PublicShopDto>>;
|
|
3757
3770
|
buy(shopId: string, reservationId: string, firstName: string, lastName: string, email: string, phoneNumber: string, dateOfBirth: DateTime | null, gender: Gender | null, addressCity: string | null, addressCountry: string | null, addressNumber: string | null, addressPostalCode: string | null, addressStreet: string | null, attribution?: MarketingAttributionDto | null): Promise<BaseResponse<OrderDto>>;
|
|
3771
|
+
putReservationProducts(shopId: string, reservationId: string, products: PublicShopCartProductDto[]): Promise<BaseResponse<ReservationDto>>;
|
|
3758
3772
|
reserve(shopId: string, products: PublicShopCartProductDto[], attribution?: MarketingAttributionDto | null): Promise<BaseResponse<PublicShopReservationDto>>;
|
|
3759
3773
|
}
|
|
3760
3774
|
//#endregion
|
|
@@ -3809,5 +3823,5 @@ declare function export_default$3<T, U>(value: U, adapter: (value: U) => T): T;
|
|
|
3809
3823
|
//#region src/util/optionalArray.d.ts
|
|
3810
3824
|
declare function export_default$4<T>(value: object[], adapter: (value: object) => T): T[] | null;
|
|
3811
3825
|
//#endregion
|
|
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 };
|
|
3826
|
+
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, type ShopElementPage, 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 };
|
|
3813
3827
|
//# sourceMappingURL=index.d.mts.map
|