@passly-nl/data 1.4.2 → 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 +49 -25
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +155 -60
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/adapter/EventAdapter.ts +12 -2
- package/src/adapter/OrderAdapter.ts +3 -2
- package/src/adapter/ProductAdapter.ts +2 -1
- package/src/adapter/PublicShopAdapter.ts +11 -2
- package/src/adapter/ReservationAdapter.ts +4 -2
- package/src/dto/event/ShopDesignDto.ts +22 -1
- 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/PublicShopDesignDto.ts +22 -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/MerchantEventShopService.ts +28 -3
- 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
|
|
@@ -674,7 +675,11 @@ declare class ShopDesignDto {
|
|
|
674
675
|
set foregroundColor(value: string);
|
|
675
676
|
get primaryColor(): string;
|
|
676
677
|
set primaryColor(value: string);
|
|
677
|
-
|
|
678
|
+
get background(): PictureDto | null;
|
|
679
|
+
set background(value: PictureDto | null);
|
|
680
|
+
get backgroundScrim(): number;
|
|
681
|
+
set backgroundScrim(value: number);
|
|
682
|
+
constructor(backgroundColor: string, foregroundColor: string, primaryColor: string, background: PictureDto | null, backgroundScrim: number);
|
|
678
683
|
}
|
|
679
684
|
//#endregion
|
|
680
685
|
//#region src/dto/event/ShopDto.d.ts
|
|
@@ -718,9 +723,11 @@ declare abstract class ShopElementDto {
|
|
|
718
723
|
#private;
|
|
719
724
|
get id(): string;
|
|
720
725
|
set id(value: string);
|
|
726
|
+
get page(): ShopElementPage;
|
|
727
|
+
set page(value: ShopElementPage);
|
|
721
728
|
get type(): ShopElementType;
|
|
722
729
|
set type(value: ShopElementType);
|
|
723
|
-
protected constructor(id: string, type: ShopElementType);
|
|
730
|
+
protected constructor(id: string, type: ShopElementType, page: ShopElementPage);
|
|
724
731
|
}
|
|
725
732
|
//#endregion
|
|
726
733
|
//#region src/dto/event/ShopElementButtonDto.d.ts
|
|
@@ -732,7 +739,7 @@ declare class ShopElementButtonDto extends ShopElementDto {
|
|
|
732
739
|
set text(value: string);
|
|
733
740
|
get url(): string;
|
|
734
741
|
set url(value: string);
|
|
735
|
-
constructor(id: string, icon: FluxIconName | null, text: string, url: string);
|
|
742
|
+
constructor(id: string, page: ShopElementPage, icon: FluxIconName | null, text: string, url: string);
|
|
736
743
|
}
|
|
737
744
|
//#endregion
|
|
738
745
|
//#region src/dto/event/ShopElementDividerDto.d.ts
|
|
@@ -742,7 +749,7 @@ declare class ShopElementDividerDto extends ShopElementDto {
|
|
|
742
749
|
set icon(value: FluxIconName | null);
|
|
743
750
|
get text(): string | null;
|
|
744
751
|
set text(value: string | null);
|
|
745
|
-
constructor(id: string, icon: FluxIconName | null, text: string | null);
|
|
752
|
+
constructor(id: string, page: ShopElementPage, icon: FluxIconName | null, text: string | null);
|
|
746
753
|
}
|
|
747
754
|
//#endregion
|
|
748
755
|
//#region src/dto/event/ShopElementHeadingDto.d.ts
|
|
@@ -752,12 +759,12 @@ declare class ShopElementHeadingDto extends ShopElementDto {
|
|
|
752
759
|
set headingLevel(value: HeadingLevel);
|
|
753
760
|
get title(): string;
|
|
754
761
|
set title(value: string);
|
|
755
|
-
constructor(id: string, headingLevel: HeadingLevel, title: string);
|
|
762
|
+
constructor(id: string, page: ShopElementPage, headingLevel: HeadingLevel, title: string);
|
|
756
763
|
}
|
|
757
764
|
//#endregion
|
|
758
765
|
//#region src/dto/event/ShopElementInformationDto.d.ts
|
|
759
766
|
declare class ShopElementInformationDto extends ShopElementDto {
|
|
760
|
-
constructor(id: string);
|
|
767
|
+
constructor(id: string, page: ShopElementPage);
|
|
761
768
|
}
|
|
762
769
|
//#endregion
|
|
763
770
|
//#region src/dto/event/ShopElementNoticeDto.d.ts
|
|
@@ -771,7 +778,7 @@ declare class ShopElementNoticeDto extends ShopElementDto {
|
|
|
771
778
|
set title(value: string | null);
|
|
772
779
|
get text(): string;
|
|
773
780
|
set text(value: string);
|
|
774
|
-
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);
|
|
775
782
|
}
|
|
776
783
|
//#endregion
|
|
777
784
|
//#region src/dto/event/ShopElementProductDto.d.ts
|
|
@@ -779,7 +786,7 @@ declare class ShopElementProductDto extends ShopElementDto {
|
|
|
779
786
|
#private;
|
|
780
787
|
get product(): ProductDto;
|
|
781
788
|
set product(value: ProductDto);
|
|
782
|
-
constructor(id: string, product: ProductDto);
|
|
789
|
+
constructor(id: string, page: ShopElementPage, product: ProductDto);
|
|
783
790
|
}
|
|
784
791
|
//#endregion
|
|
785
792
|
//#region src/dto/event/ShopElementTextDto.d.ts
|
|
@@ -787,7 +794,7 @@ declare class ShopElementTextDto extends ShopElementDto {
|
|
|
787
794
|
#private;
|
|
788
795
|
get text(): string;
|
|
789
796
|
set text(value: string);
|
|
790
|
-
constructor(id: string, text: string);
|
|
797
|
+
constructor(id: string, page: ShopElementPage, text: string);
|
|
791
798
|
}
|
|
792
799
|
//#endregion
|
|
793
800
|
//#region src/dto/event/StockOverviewDto.d.ts
|
|
@@ -1363,7 +1370,9 @@ declare class OrderProductDto {
|
|
|
1363
1370
|
set description(value: string);
|
|
1364
1371
|
get image(): PictureDto | null;
|
|
1365
1372
|
set image(value: PictureDto | null);
|
|
1366
|
-
|
|
1373
|
+
get type(): ProductType;
|
|
1374
|
+
set type(value: ProductType);
|
|
1375
|
+
constructor(id: string, name: string, description: string, image: PictureDto | null, type: ProductType);
|
|
1367
1376
|
}
|
|
1368
1377
|
//#endregion
|
|
1369
1378
|
//#region src/dto/payment/CostDto.d.ts
|
|
@@ -1451,6 +1460,8 @@ declare class ProductDto {
|
|
|
1451
1460
|
set isActive(value: boolean);
|
|
1452
1461
|
get isPersonalizationRequired(): boolean;
|
|
1453
1462
|
set isPersonalizationRequired(value: boolean);
|
|
1463
|
+
get isScannable(): boolean;
|
|
1464
|
+
set isScannable(value: boolean);
|
|
1454
1465
|
get isSwappable(): boolean;
|
|
1455
1466
|
set isSwappable(value: boolean);
|
|
1456
1467
|
get isTimeslotted(): boolean;
|
|
@@ -1479,7 +1490,7 @@ declare class ProductDto {
|
|
|
1479
1490
|
set availability(value: ProductAvailability);
|
|
1480
1491
|
get sold(): number;
|
|
1481
1492
|
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);
|
|
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);
|
|
1483
1494
|
}
|
|
1484
1495
|
//#endregion
|
|
1485
1496
|
//#region src/dto/publicPay/PublicPaymentMethodDto.d.ts
|
|
@@ -1513,7 +1524,11 @@ declare class PublicShopDesignDto {
|
|
|
1513
1524
|
set foregroundColor(value: string);
|
|
1514
1525
|
get primaryColor(): string;
|
|
1515
1526
|
set primaryColor(value: string);
|
|
1516
|
-
|
|
1527
|
+
get background(): PictureDto | null;
|
|
1528
|
+
set background(value: PictureDto | null);
|
|
1529
|
+
get backgroundScrim(): number;
|
|
1530
|
+
set backgroundScrim(value: number);
|
|
1531
|
+
constructor(backgroundColor: string, foregroundColor: string, primaryColor: string, background: PictureDto | null, backgroundScrim: number);
|
|
1517
1532
|
}
|
|
1518
1533
|
//#endregion
|
|
1519
1534
|
//#region src/dto/publicShop/PublicShopDto.d.ts
|
|
@@ -1553,9 +1568,11 @@ declare abstract class PublicShopElementDto {
|
|
|
1553
1568
|
#private;
|
|
1554
1569
|
get id(): string;
|
|
1555
1570
|
set id(value: string);
|
|
1571
|
+
get page(): ShopElementPage;
|
|
1572
|
+
set page(value: ShopElementPage);
|
|
1556
1573
|
get type(): PublicShopElementType;
|
|
1557
1574
|
set type(value: PublicShopElementType);
|
|
1558
|
-
protected constructor(id: string, type: PublicShopElementType);
|
|
1575
|
+
protected constructor(id: string, type: PublicShopElementType, page: ShopElementPage);
|
|
1559
1576
|
}
|
|
1560
1577
|
//#endregion
|
|
1561
1578
|
//#region src/dto/publicShop/PublicShopElementButtonDto.d.ts
|
|
@@ -1567,7 +1584,7 @@ declare class PublicShopElementButtonDto extends PublicShopElementDto {
|
|
|
1567
1584
|
set text(value: string);
|
|
1568
1585
|
get url(): string;
|
|
1569
1586
|
set url(value: string);
|
|
1570
|
-
constructor(id: string, icon: FluxIconName | null, text: string, url: string);
|
|
1587
|
+
constructor(id: string, page: ShopElementPage, icon: FluxIconName | null, text: string, url: string);
|
|
1571
1588
|
}
|
|
1572
1589
|
//#endregion
|
|
1573
1590
|
//#region src/dto/publicShop/PublicShopElementDividerDto.d.ts
|
|
@@ -1577,7 +1594,7 @@ declare class PublicShopElementDividerDto extends PublicShopElementDto {
|
|
|
1577
1594
|
set icon(value: FluxIconName | null);
|
|
1578
1595
|
get text(): string | null;
|
|
1579
1596
|
set text(value: string | null);
|
|
1580
|
-
constructor(id: string, icon: FluxIconName | null, text: string | null);
|
|
1597
|
+
constructor(id: string, page: ShopElementPage, icon: FluxIconName | null, text: string | null);
|
|
1581
1598
|
}
|
|
1582
1599
|
//#endregion
|
|
1583
1600
|
//#region src/dto/publicShop/PublicShopElementHeadingDto.d.ts
|
|
@@ -1587,12 +1604,12 @@ declare class PublicShopElementHeadingDto extends PublicShopElementDto {
|
|
|
1587
1604
|
set headingLevel(value: HeadingLevel);
|
|
1588
1605
|
get title(): string;
|
|
1589
1606
|
set title(value: string);
|
|
1590
|
-
constructor(id: string, headingLevel: HeadingLevel, title: string);
|
|
1607
|
+
constructor(id: string, page: ShopElementPage, headingLevel: HeadingLevel, title: string);
|
|
1591
1608
|
}
|
|
1592
1609
|
//#endregion
|
|
1593
1610
|
//#region src/dto/publicShop/PublicShopElementInformationDto.d.ts
|
|
1594
1611
|
declare class PublicShopElementInformationDto extends PublicShopElementDto {
|
|
1595
|
-
constructor(id: string);
|
|
1612
|
+
constructor(id: string, page: ShopElementPage);
|
|
1596
1613
|
}
|
|
1597
1614
|
//#endregion
|
|
1598
1615
|
//#region src/dto/publicShop/PublicShopElementNoticeDto.d.ts
|
|
@@ -1606,7 +1623,7 @@ declare class PublicShopElementNoticeDto extends PublicShopElementDto {
|
|
|
1606
1623
|
set title(value: string | null);
|
|
1607
1624
|
get text(): string;
|
|
1608
1625
|
set text(value: string);
|
|
1609
|
-
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);
|
|
1610
1627
|
}
|
|
1611
1628
|
//#endregion
|
|
1612
1629
|
//#region src/dto/publicShop/PublicShopElementProductDto.d.ts
|
|
@@ -1614,7 +1631,7 @@ declare class PublicShopElementProductDto extends PublicShopElementDto {
|
|
|
1614
1631
|
#private;
|
|
1615
1632
|
get product(): PublicShopProductDto;
|
|
1616
1633
|
set product(value: PublicShopProductDto);
|
|
1617
|
-
constructor(id: string, product: PublicShopProductDto);
|
|
1634
|
+
constructor(id: string, page: ShopElementPage, product: PublicShopProductDto);
|
|
1618
1635
|
}
|
|
1619
1636
|
//#endregion
|
|
1620
1637
|
//#region src/dto/publicShop/PublicShopElementTextDto.d.ts
|
|
@@ -1622,7 +1639,7 @@ declare class PublicShopElementTextDto extends PublicShopElementDto {
|
|
|
1622
1639
|
#private;
|
|
1623
1640
|
get text(): string;
|
|
1624
1641
|
set text(value: string);
|
|
1625
|
-
constructor(id: string, text: string);
|
|
1642
|
+
constructor(id: string, page: ShopElementPage, text: string);
|
|
1626
1643
|
}
|
|
1627
1644
|
//#endregion
|
|
1628
1645
|
//#region src/dto/publicShop/PublicShopEventDto.d.ts
|
|
@@ -1860,7 +1877,11 @@ declare class ReservationProductDto {
|
|
|
1860
1877
|
set description(value: string);
|
|
1861
1878
|
get image(): PictureDto | null;
|
|
1862
1879
|
set image(value: PictureDto | null);
|
|
1863
|
-
|
|
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);
|
|
1864
1885
|
}
|
|
1865
1886
|
//#endregion
|
|
1866
1887
|
//#region src/dto/service/ServiceInfoDto.d.ts
|
|
@@ -3302,7 +3323,7 @@ declare class MerchantEventProductService extends BaseService {
|
|
|
3302
3323
|
get(merchantId: string, eventId: string, productId: string): Promise<BaseResponse<ProductDto>>;
|
|
3303
3324
|
postImage(merchantId: string, eventId: string, productId: string, picture: File): Promise<BaseResponse<object>>;
|
|
3304
3325
|
patchGeneral(merchantId: string, eventId: string, productId: string, name: string, description: string | 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>>;
|
|
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>>;
|
|
3306
3327
|
patchValidity(merchantId: string, eventId: string, productId: string, timeSlotIds: string[]): Promise<BaseResponse<ProductDto>>;
|
|
3307
3328
|
patchPause(merchantId: string, eventId: string, productId: string): Promise<BaseResponse<never>>;
|
|
3308
3329
|
patchResume(merchantId: string, eventId: string, productId: string): Promise<BaseResponse<never>>;
|
|
@@ -3313,7 +3334,7 @@ declare class MerchantEventProductService extends BaseService {
|
|
|
3313
3334
|
declare class MerchantEventProductsService extends BaseService {
|
|
3314
3335
|
get(merchantId: string, eventId: string, params: ListParams): Promise<BaseResponse<Paginated<ProductDto>>>;
|
|
3315
3336
|
getSelectOptions(merchantId: string, eventId: string, searchQuery?: string | null, ids?: string[] | null): Promise<BaseResponse<FluxFormSelectEntry[]>>;
|
|
3316
|
-
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>>;
|
|
3317
3338
|
}
|
|
3318
3339
|
//#endregion
|
|
3319
3340
|
//#region src/service/MerchantEventService.d.ts
|
|
@@ -3391,7 +3412,9 @@ declare class MerchantEventShopService extends BaseService {
|
|
|
3391
3412
|
patchDesign(merchantId: string, eventId: string, shopId: string, design: ShopDesignDto): Promise<BaseResponse<ShopDesignDto>>;
|
|
3392
3413
|
patchElements(merchantId: string, eventId: string, shopId: string, elements: object[]): Promise<BaseResponse<ShopElementDto[]>>;
|
|
3393
3414
|
patchFields(merchantId: string, eventId: string, shop: ShopDto): Promise<BaseResponse<ShopDto>>;
|
|
3415
|
+
postBackground(merchantId: string, eventId: string, shopId: string, picture: File): Promise<BaseResponse<StatusResponseDto>>;
|
|
3394
3416
|
postShortlink(merchantId: string, eventId: string, shopId: string): Promise<BaseResponse<ShortlinkDto>>;
|
|
3417
|
+
deleteBackground(merchantId: string, eventId: string, shopId: string): Promise<BaseResponse<StatusResponseDto>>;
|
|
3395
3418
|
}
|
|
3396
3419
|
//#endregion
|
|
3397
3420
|
//#region src/service/MerchantEventShopsService.d.ts
|
|
@@ -3745,6 +3768,7 @@ declare class PublicOrderService extends BaseService {
|
|
|
3745
3768
|
declare class PublicShopService extends BaseService {
|
|
3746
3769
|
get(shopId: string): Promise<BaseResponse<PublicShopDto>>;
|
|
3747
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>>;
|
|
3748
3772
|
reserve(shopId: string, products: PublicShopCartProductDto[], attribution?: MarketingAttributionDto | null): Promise<BaseResponse<PublicShopReservationDto>>;
|
|
3749
3773
|
}
|
|
3750
3774
|
//#endregion
|
|
@@ -3799,5 +3823,5 @@ declare function export_default$3<T, U>(value: U, adapter: (value: U) => T): T;
|
|
|
3799
3823
|
//#region src/util/optionalArray.d.ts
|
|
3800
3824
|
declare function export_default$4<T>(value: object[], adapter: (value: object) => T): T[] | null;
|
|
3801
3825
|
//#endregion
|
|
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 };
|
|
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 };
|
|
3803
3827
|
//# sourceMappingURL=index.d.mts.map
|