@passly-nl/data 1.3.4 → 1.3.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +46 -30
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +64 -43
- package/dist/index.mjs.map +1 -1
- package/package.json +6 -12
- package/src/dto/aiUsage/AiUsagePeriodDto.ts +4 -4
- package/src/dto/statistics/InsightsResponseDto.ts +4 -4
- package/src/service/AdminMerchantsService.ts +5 -6
- package/src/service/MerchantBuyerService.ts +4 -5
- package/src/service/MerchantBuyersService.ts +5 -6
- package/src/service/MerchantContractService.ts +4 -5
- package/src/service/MerchantDiscountCodesService.ts +4 -12
- package/src/service/MerchantEmailTemplatesService.ts +5 -6
- package/src/service/MerchantEventAppTeamsService.ts +4 -5
- package/src/service/MerchantEventEmailTemplatesService.ts +5 -6
- package/src/service/MerchantEventProductsService.ts +4 -5
- package/src/service/MerchantEventShopsService.ts +4 -5
- package/src/service/MerchantEventStockPoolsService.ts +4 -5
- package/src/service/MerchantEventTicketTemplatesService.ts +4 -7
- package/src/service/MerchantEventTimeSlotsService.ts +14 -1
- package/src/service/MerchantEventsService.ts +17 -5
- package/src/service/MerchantFinanceInvoicesService.ts +5 -6
- package/src/service/MerchantOrdersService.ts +5 -15
- package/src/service/MerchantShopsService.ts +5 -6
- package/src/service/MerchantTicketsService.ts +5 -15
- package/src/service/MerchantUsersService.ts +4 -6
- package/src/service/PublicShopService.ts +1 -1
- package/src/types/index.ts +1 -0
- package/src/types/list.ts +12 -0
- package/src/util/buildListQuery.ts +48 -0
- package/src/util/index.ts +1 -0
package/dist/index.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { BaseResponse, BaseService, BlobResponse, ForeignData, Paginated } from "@basmilius/http-client";
|
|
1
|
+
import { BaseResponse, BaseService, BlobResponse, ForeignData, Paginated, QueryString } from "@basmilius/http-client";
|
|
2
2
|
import { DateTime } from "luxon";
|
|
3
3
|
import { FluxFormSelectEntry, FluxFormSelectGroup, FluxFormSelectOption, FluxIconName } from "@flux-ui/types";
|
|
4
4
|
|
|
@@ -203,6 +203,17 @@ type InsightStatus = "pending" | "generating" | "ready" | "failed" | "insufficie
|
|
|
203
203
|
type InsightSignalKind = "positive" | "negative" | "neutral";
|
|
204
204
|
type InsightLanguage = "en" | "nl";
|
|
205
205
|
//#endregion
|
|
206
|
+
//#region src/types/list.d.ts
|
|
207
|
+
type FilterValueSingle = string | number | boolean | DateTime | null;
|
|
208
|
+
type FilterValue = FilterValueSingle | FilterValueSingle[];
|
|
209
|
+
type Filters = Record<string, FilterValue>;
|
|
210
|
+
type ListParams = {
|
|
211
|
+
readonly offset: number;
|
|
212
|
+
readonly limit: number;
|
|
213
|
+
readonly filters?: Filters;
|
|
214
|
+
readonly search?: string;
|
|
215
|
+
};
|
|
216
|
+
//#endregion
|
|
206
217
|
//#region src/types/milestone.d.ts
|
|
207
218
|
type MilestoneType = "first_sale" | "tickets_sold_threshold" | "revenue_threshold" | "first_sold_out_event" | "best_revenue_month" | "events_hosted_threshold";
|
|
208
219
|
//#endregion
|
|
@@ -336,9 +347,9 @@ declare class AiUsagePeriodDto {
|
|
|
336
347
|
set percentage(value: number);
|
|
337
348
|
get lastEventOn(): DateTime | null;
|
|
338
349
|
set lastEventOn(value: DateTime | null);
|
|
339
|
-
get features(): AiUsageFeatureStatusDto[];
|
|
340
|
-
set features(value: AiUsageFeatureStatusDto[]);
|
|
341
|
-
constructor(periodStart: DateTime | null, periodEnd: DateTime | null, tokensUsed: number, limitTokens: number | null, percentage: number, lastEventOn: DateTime | null, features: AiUsageFeatureStatusDto[]);
|
|
350
|
+
get features(): AiUsageFeatureStatusDto[] | null;
|
|
351
|
+
set features(value: AiUsageFeatureStatusDto[] | null);
|
|
352
|
+
constructor(periodStart: DateTime | null, periodEnd: DateTime | null, tokensUsed: number, limitTokens: number | null, percentage: number, lastEventOn: DateTime | null, features: AiUsageFeatureStatusDto[] | null);
|
|
342
353
|
}
|
|
343
354
|
//#endregion
|
|
344
355
|
//#region src/dto/auth/TotpStateDto.d.ts
|
|
@@ -1910,11 +1921,11 @@ declare class InsightsResponseDto {
|
|
|
1910
1921
|
set insightsEnabled(value: boolean);
|
|
1911
1922
|
get language(): InsightLanguage;
|
|
1912
1923
|
set language(value: InsightLanguage);
|
|
1913
|
-
get cards(): InsightDto[];
|
|
1914
|
-
set cards(value: InsightDto[]);
|
|
1924
|
+
get cards(): InsightDto[] | null;
|
|
1925
|
+
set cards(value: InsightDto[] | null);
|
|
1915
1926
|
get lastGeneratedOn(): string | null;
|
|
1916
1927
|
set lastGeneratedOn(value: string | null);
|
|
1917
|
-
constructor(insightsEnabled: boolean, language: InsightLanguage, cards: InsightDto[], lastGeneratedOn: string | null);
|
|
1928
|
+
constructor(insightsEnabled: boolean, language: InsightLanguage, cards: InsightDto[] | null, lastGeneratedOn: string | null);
|
|
1918
1929
|
}
|
|
1919
1930
|
//#endregion
|
|
1920
1931
|
//#region src/dto/statistics/MilestoneDto.d.ts
|
|
@@ -3174,7 +3185,7 @@ declare class AdminMerchantSubscriptionService extends BaseService {
|
|
|
3174
3185
|
//#endregion
|
|
3175
3186
|
//#region src/service/AdminMerchantsService.d.ts
|
|
3176
3187
|
declare class AdminMerchantsService extends BaseService {
|
|
3177
|
-
get(
|
|
3188
|
+
get(params: ListParams): Promise<BaseResponse<Paginated<MerchantDto>>>;
|
|
3178
3189
|
}
|
|
3179
3190
|
//#endregion
|
|
3180
3191
|
//#region src/service/AdminService.d.ts
|
|
@@ -3217,7 +3228,7 @@ declare class MerchantsService extends BaseService {
|
|
|
3217
3228
|
//#endregion
|
|
3218
3229
|
//#region src/service/MerchantContractService.d.ts
|
|
3219
3230
|
declare class MerchantContractService extends BaseService {
|
|
3220
|
-
get(merchantId: string,
|
|
3231
|
+
get(merchantId: string, params: ListParams): Promise<BaseResponse<Paginated<ContractDto>>>;
|
|
3221
3232
|
getSingle(merchantId: string, contractId: string): Promise<BaseResponse<ContractDto>>;
|
|
3222
3233
|
post(merchantId: string, startsOn: DateTime, endsOn: DateTime, feeCents: number, remark: string): Promise<BaseResponse<ContractDto>>;
|
|
3223
3234
|
put(merchantId: string, contractId: string, startsOn: DateTime, endsOn: DateTime, feeCents: number, remark: string): Promise<BaseResponse<ContractDto>>;
|
|
@@ -3227,12 +3238,12 @@ declare class MerchantContractService extends BaseService {
|
|
|
3227
3238
|
declare class MerchantBuyerService extends BaseService {
|
|
3228
3239
|
get(merchantId: string, buyerId: string): Promise<BaseResponse<BuyerDto>>;
|
|
3229
3240
|
getOrder(merchantId: string, buyerId: string, orderId: string): Promise<BaseResponse<OrderDto>>;
|
|
3230
|
-
getOrders(merchantId: string, buyerId: string,
|
|
3241
|
+
getOrders(merchantId: string, buyerId: string, params: ListParams): Promise<BaseResponse<Paginated<OrderDto>>>;
|
|
3231
3242
|
}
|
|
3232
3243
|
//#endregion
|
|
3233
3244
|
//#region src/service/MerchantBuyersService.d.ts
|
|
3234
3245
|
declare class MerchantBuyersService extends BaseService {
|
|
3235
|
-
get(merchantId: string,
|
|
3246
|
+
get(merchantId: string, params: ListParams): Promise<BaseResponse<Paginated<BuyerDto>>>;
|
|
3236
3247
|
}
|
|
3237
3248
|
//#endregion
|
|
3238
3249
|
//#region src/service/MerchantDashboardService.d.ts
|
|
@@ -3250,7 +3261,7 @@ declare class MerchantDiscountCodeService extends BaseService {
|
|
|
3250
3261
|
//#endregion
|
|
3251
3262
|
//#region src/service/MerchantDiscountCodesService.d.ts
|
|
3252
3263
|
declare class MerchantDiscountCodesService extends BaseService {
|
|
3253
|
-
get(merchantId: string,
|
|
3264
|
+
get(merchantId: string, params: ListParams): Promise<BaseResponse<Paginated<DiscountCodeDto>>>;
|
|
3254
3265
|
post(merchantId: string, code: string, type: DiscountCodeType, validFrom: DateTime, validUntil: DateTime, percentage: number | null, amountCents: number | null, maxUses: number | null, eventId: string | null): Promise<BaseResponse<DiscountCodeDto>>;
|
|
3255
3266
|
}
|
|
3256
3267
|
//#endregion
|
|
@@ -3263,7 +3274,7 @@ declare class MerchantEventAppTeamService extends BaseService {
|
|
|
3263
3274
|
//#endregion
|
|
3264
3275
|
//#region src/service/MerchantEventAppTeamsService.d.ts
|
|
3265
3276
|
declare class MerchantEventAppTeamsService extends BaseService {
|
|
3266
|
-
get(merchantId: string, eventId: string,
|
|
3277
|
+
get(merchantId: string, eventId: string, params: ListParams): Promise<BaseResponse<Paginated<AppTeamDto>>>;
|
|
3267
3278
|
post(merchantId: string, eventId: string, name: string): Promise<BaseResponse<AppTeamDto>>;
|
|
3268
3279
|
}
|
|
3269
3280
|
//#endregion
|
|
@@ -3281,7 +3292,7 @@ declare class MerchantEventProductService extends BaseService {
|
|
|
3281
3292
|
//#endregion
|
|
3282
3293
|
//#region src/service/MerchantEventProductsService.d.ts
|
|
3283
3294
|
declare class MerchantEventProductsService extends BaseService {
|
|
3284
|
-
get(merchantId: string, eventId: string,
|
|
3295
|
+
get(merchantId: string, eventId: string, params: ListParams): Promise<BaseResponse<Paginated<ProductDto>>>;
|
|
3285
3296
|
getSelectOptions(merchantId: string, eventId: string, searchQuery?: string | null, ids?: string[] | null): Promise<BaseResponse<FluxFormSelectEntry[]>>;
|
|
3286
3297
|
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>>;
|
|
3287
3298
|
}
|
|
@@ -3348,6 +3359,7 @@ declare class MerchantEventTimeSlotService extends BaseService {
|
|
|
3348
3359
|
//#region src/service/MerchantEventTimeSlotsService.d.ts
|
|
3349
3360
|
declare class MerchantEventTimeSlotsService extends BaseService {
|
|
3350
3361
|
list(merchantId: string, eventId: string, offset: number, limit: number): Promise<BaseResponse<Paginated<TimeSlotDto>>>;
|
|
3362
|
+
getSelectOptions(merchantId: string, eventId: string, searchQuery?: string | null, ids?: string[] | null): Promise<BaseResponse<FluxFormSelectEntry[]>>;
|
|
3351
3363
|
create(merchantId: string, eventId: string, fromTime: DateTime, toTime: DateTime, label?: string | null): Promise<BaseResponse<TimeSlotDto>>;
|
|
3352
3364
|
}
|
|
3353
3365
|
//#endregion
|
|
@@ -3365,14 +3377,14 @@ declare class MerchantEventShopService extends BaseService {
|
|
|
3365
3377
|
//#endregion
|
|
3366
3378
|
//#region src/service/MerchantEventShopsService.d.ts
|
|
3367
3379
|
declare class MerchantEventShopsService extends BaseService {
|
|
3368
|
-
get(merchantId: string, eventId: string,
|
|
3380
|
+
get(merchantId: string, eventId: string, params: ListParams): Promise<BaseResponse<Paginated<ShopDto>>>;
|
|
3369
3381
|
post(merchantId: string, eventId: string, name: string, startsOn: DateTime, endsOn: DateTime): Promise<BaseResponse<ShopDto>>;
|
|
3370
3382
|
delete(merchantId: string, eventId: string, shopId: string): Promise<BaseResponse<StatusResponseDto>>;
|
|
3371
3383
|
}
|
|
3372
3384
|
//#endregion
|
|
3373
3385
|
//#region src/service/MerchantEventStockPoolsService.d.ts
|
|
3374
3386
|
declare class MerchantEventStockPoolsService extends BaseService {
|
|
3375
|
-
get(merchantId: string, eventId: string,
|
|
3387
|
+
get(merchantId: string, eventId: string, params: ListParams): Promise<BaseResponse<Paginated<StockPoolDto>>>;
|
|
3376
3388
|
getOverview(merchantId: string, eventId: string): Promise<BaseResponse<StockOverviewDto>>;
|
|
3377
3389
|
getSelectOptions(merchantId: string, eventId: string, searchQuery?: string | null, ids?: string[] | null): Promise<BaseResponse<FluxFormSelectEntry[]>>;
|
|
3378
3390
|
post(merchantId: string, eventId: string, name: string, stock: number): Promise<BaseResponse<StockPoolDto>>;
|
|
@@ -3390,7 +3402,7 @@ declare class MerchantEventTicketTemplateService extends BaseService {
|
|
|
3390
3402
|
//#endregion
|
|
3391
3403
|
//#region src/service/MerchantEventTicketTemplatesService.d.ts
|
|
3392
3404
|
declare class MerchantEventTicketTemplatesService extends BaseService {
|
|
3393
|
-
get(merchantId: string, eventId: string,
|
|
3405
|
+
get(merchantId: string, eventId: string, params: ListParams): Promise<BaseResponse<Paginated<TicketTemplateDto>>>;
|
|
3394
3406
|
getSelectOptions(merchantId: string, eventId: string, searchQuery?: string | null, ids?: string[] | null): Promise<BaseResponse<FluxFormSelectEntry[]>>;
|
|
3395
3407
|
post(merchantId: string, eventId: string, name: string, productId: string | null, variant: TicketTemplateType, visual: File): Promise<BaseResponse<TicketTemplateDto>>;
|
|
3396
3408
|
}
|
|
@@ -3405,7 +3417,7 @@ declare class MerchantEmailTemplateService extends BaseService {
|
|
|
3405
3417
|
//#endregion
|
|
3406
3418
|
//#region src/service/MerchantEmailTemplatesService.d.ts
|
|
3407
3419
|
declare class MerchantEmailTemplatesService extends BaseService {
|
|
3408
|
-
get(merchantId: string,
|
|
3420
|
+
get(merchantId: string, params: ListParams): Promise<BaseResponse<Paginated<EmailTemplateDto>>>;
|
|
3409
3421
|
post(merchantId: string, type: EmailTemplateType, subject: string, content: string, language?: EmailTemplateLanguage | null): Promise<BaseResponse<EmailTemplateDto>>;
|
|
3410
3422
|
}
|
|
3411
3423
|
//#endregion
|
|
@@ -3419,13 +3431,14 @@ declare class MerchantEventEmailTemplateService extends BaseService {
|
|
|
3419
3431
|
//#endregion
|
|
3420
3432
|
//#region src/service/MerchantEventEmailTemplatesService.d.ts
|
|
3421
3433
|
declare class MerchantEventEmailTemplatesService extends BaseService {
|
|
3422
|
-
get(merchantId: string, eventId: string,
|
|
3434
|
+
get(merchantId: string, eventId: string, params: ListParams): Promise<BaseResponse<Paginated<EmailTemplateDto>>>;
|
|
3423
3435
|
post(merchantId: string, eventId: string, type: EmailTemplateType, subject: string, content: string, language?: EmailTemplateLanguage | null): Promise<BaseResponse<EmailTemplateDto>>;
|
|
3424
3436
|
}
|
|
3425
3437
|
//#endregion
|
|
3426
3438
|
//#region src/service/MerchantEventsService.d.ts
|
|
3427
3439
|
declare class MerchantEventsService extends BaseService {
|
|
3428
|
-
get(merchantId: string,
|
|
3440
|
+
get(merchantId: string, params: ListParams): Promise<BaseResponse<Paginated<EventDto>>>;
|
|
3441
|
+
getSelectOptions(merchantId: string, searchQuery?: string | null, ids?: string[] | null): Promise<BaseResponse<FluxFormSelectEntry[]>>;
|
|
3429
3442
|
post(merchantId: string, name: string, description: string, startsOn: DateTime, endsOn: DateTime, minimumAge: number): Promise<BaseResponse<EventDto>>;
|
|
3430
3443
|
}
|
|
3431
3444
|
//#endregion
|
|
@@ -3437,7 +3450,7 @@ declare class MerchantFinanceInvoiceService extends BaseService {
|
|
|
3437
3450
|
//#endregion
|
|
3438
3451
|
//#region src/service/MerchantFinanceInvoicesService.d.ts
|
|
3439
3452
|
declare class MerchantFinanceInvoicesService extends BaseService {
|
|
3440
|
-
get(merchantId: string,
|
|
3453
|
+
get(merchantId: string, params: ListParams): Promise<BaseResponse<Paginated<InvoiceDto>>>;
|
|
3441
3454
|
}
|
|
3442
3455
|
//#endregion
|
|
3443
3456
|
//#region src/service/MerchantFinanceService.d.ts
|
|
@@ -3461,7 +3474,7 @@ declare class MerchantOrderService extends BaseService {
|
|
|
3461
3474
|
//#endregion
|
|
3462
3475
|
//#region src/service/MerchantOrdersService.d.ts
|
|
3463
3476
|
declare class MerchantOrdersService extends BaseService {
|
|
3464
|
-
get(merchantId: string,
|
|
3477
|
+
get(merchantId: string, params: ListParams): Promise<BaseResponse<Paginated<OrderDto>>>;
|
|
3465
3478
|
}
|
|
3466
3479
|
//#endregion
|
|
3467
3480
|
//#region src/service/MerchantShopService.d.ts
|
|
@@ -3473,7 +3486,7 @@ declare class MerchantShopService extends BaseService {
|
|
|
3473
3486
|
//#endregion
|
|
3474
3487
|
//#region src/service/MerchantShopsService.d.ts
|
|
3475
3488
|
declare class MerchantShopsService extends BaseService {
|
|
3476
|
-
get(merchantId: string,
|
|
3489
|
+
get(merchantId: string, params: ListParams): Promise<BaseResponse<Paginated<ShopDto>>>;
|
|
3477
3490
|
}
|
|
3478
3491
|
//#endregion
|
|
3479
3492
|
//#region src/service/MerchantStatisticsService.d.ts
|
|
@@ -3668,7 +3681,7 @@ declare class MerchantTicketService extends BaseService {
|
|
|
3668
3681
|
//#endregion
|
|
3669
3682
|
//#region src/service/MerchantTicketsService.d.ts
|
|
3670
3683
|
declare class MerchantTicketsService extends BaseService {
|
|
3671
|
-
get(merchantId: string,
|
|
3684
|
+
get(merchantId: string, params: ListParams): Promise<BaseResponse<Paginated<TicketDto>>>;
|
|
3672
3685
|
}
|
|
3673
3686
|
//#endregion
|
|
3674
3687
|
//#region src/service/MerchantUserService.d.ts
|
|
@@ -3680,7 +3693,7 @@ declare class MerchantUserService extends BaseService {
|
|
|
3680
3693
|
//#endregion
|
|
3681
3694
|
//#region src/service/MerchantUsersService.d.ts
|
|
3682
3695
|
declare class MerchantUsersService extends BaseService {
|
|
3683
|
-
get(merchantId: string,
|
|
3696
|
+
get(merchantId: string, params: ListParams): Promise<BaseResponse<Paginated<MerchantUserDto>>>;
|
|
3684
3697
|
postInvite(merchantId: string, firstName: string, lastName: string, email: string, claims: Claim[]): Promise<BaseResponse<InvitationDto>>;
|
|
3685
3698
|
}
|
|
3686
3699
|
//#endregion
|
|
@@ -3750,17 +3763,20 @@ declare class UiSelectOptionsService extends BaseService {
|
|
|
3750
3763
|
getLanguages(): Promise<BaseResponse<FluxFormSelectOption[]>>;
|
|
3751
3764
|
}
|
|
3752
3765
|
//#endregion
|
|
3766
|
+
//#region src/util/buildListQuery.d.ts
|
|
3767
|
+
declare function export_default(params: ListParams, language?: string): QueryString;
|
|
3768
|
+
//#endregion
|
|
3753
3769
|
//#region src/util/emptyNull.d.ts
|
|
3754
|
-
declare function export_default<T>(value: T): T | null;
|
|
3770
|
+
declare function export_default$1<T>(value: T): T | null;
|
|
3755
3771
|
//#endregion
|
|
3756
3772
|
//#region src/util/jsonBlob.d.ts
|
|
3757
|
-
declare function export_default$
|
|
3773
|
+
declare function export_default$2<T>(json: T): Blob;
|
|
3758
3774
|
//#endregion
|
|
3759
3775
|
//#region src/util/optional.d.ts
|
|
3760
|
-
declare function export_default$
|
|
3776
|
+
declare function export_default$3<T, U>(value: U, adapter: (value: U) => T): T;
|
|
3761
3777
|
//#endregion
|
|
3762
3778
|
//#region src/util/optionalArray.d.ts
|
|
3763
|
-
declare function export_default$
|
|
3779
|
+
declare function export_default$4<T>(value: object[], adapter: (value: object) => T): T[] | null;
|
|
3764
3780
|
//#endregion
|
|
3765
|
-
export { AddressAdapter, AddressDto, AdminMerchantService, AdminMerchantSubscriptionService, AdminMerchantsService, AdminService, AiChatAdapter, AiChatConversationDto, AiChatMessageCompletedMessageDto, AiChatMessageDto, AiChatMessageRole, AiChatToolCallDto, AiGenerationStatus, AiUsageAdapter, AiUsageDto, AiUsageFeatureStatusDto, AiUsageOperation, AiUsagePeriodDto, AppTeamDto, AuthAdapter, AuthService, BrowserType, BuyerAdapter, BuyerDto, CashFlowAdapter, CashFlowDiscountDto, CashFlowDto, CashFlowEventType, CashFlowPaymentDto, CashFlowPlatformCostDto, CashFlowRefundDto, CashFlowTimelineEventDto, Claim, CommonAdapter, ContentCalendarAdapter, ContentCalendarGenerationCompletedMessageDto, ContentCalendarItemChannel, ContentCalendarItemCreatorDto, ContentCalendarItemDto, ContentCalendarItemPayload, ContentCalendarItemSource, ContentCalendarItemStatus, ContractDto, CostDto, DailyRevenueChart, DailyRevenueChartEntry, DateTimeAdapter, DiscountCodeAdapter, DiscountCodeDto, DiscountCodeEvent, DiscountCodeType, EMAIL_TEMPLATE_EDITOR_CONTEXTS, EmailTemplateAdapter, EmailTemplateDto, EmailTemplateEditorBlock, EmailTemplateEditorButtonBlock, EmailTemplateEditorCondition, EmailTemplateEditorContext, EmailTemplateEditorDividerBlock, EmailTemplateEditorH1Block, EmailTemplateEditorHeaderBlock, EmailTemplateEditorIfBlock, EmailTemplateEditorLogoBlock, EmailTemplateEditorParagraphBlock, EmailTemplateEditorSpacerBlock, EmailTemplateEditorVariable, EmailTemplateLanguage, EmailTemplateType, EventAdapter, EventAvailabilityDto, EventCountersDto, EventDto, EventStatisticsAppTeamDto, EventStatisticsAttendanceDto, EventStatisticsBuyersAdapter, EventStatisticsBuyersOverviewDto, EventStatisticsFinancialDto, EventStatisticsKpisDto, EventStatisticsOperationsAdapter, EventStatisticsOperationsOverviewDto, EventStatisticsOverviewAdapter, EventStatisticsStatus, EventStatisticsStatusDto, EventStatisticsSwapsDto, EventStatus, Feature, FeatureGroup, FileSystemAdapter, FinanceAdapter, FinanceOverviewDto, FluxAdapter, Gender, Granularity, HeadingLevel, InsightCardCompletedMessageDto, InsightCardType, InsightDto, InsightLanguage, InsightSignalDto, InsightSignalKind, InsightStatus, InsightsResponseDto, InvitationDto, InvitationService, InvoiceDto, InvoiceLineDto, InvoiceLineType, MarketingAttributionAdapter, MarketingAttributionDto, MeService, MerchantAdapter, MerchantAiChatService, MerchantAiSettingsService, MerchantAiUsageService, MerchantBuyerService, MerchantBuyersService, MerchantContractService, MerchantDashboardAdapter, MerchantDashboardKeyMetricsDto, MerchantDashboardService, MerchantDashboardUpcomingEventDto, MerchantDiscountCodeService, MerchantDiscountCodesService, MerchantDto, MerchantEmailTemplateService, MerchantEmailTemplatesService, MerchantEventAppTeamService, MerchantEventAppTeamsService, MerchantEventContentCalendarService, MerchantEventEmailTemplateService, MerchantEventEmailTemplatesService, MerchantEventProductService, MerchantEventProductsService, MerchantEventService, MerchantEventShopService, MerchantEventShopsService, MerchantEventStatisticsBuyersService, MerchantEventStatisticsOperationsService, MerchantEventStatisticsOverviewService, MerchantEventStatisticsSalesService, MerchantEventStockPoolsService, MerchantEventTicketTemplateService, MerchantEventTicketTemplatesService, MerchantEventTimeSlotService, MerchantEventTimeSlotsService, MerchantEventsService, MerchantFinanceInvoiceService, MerchantFinanceInvoicesService, MerchantFinanceService, MerchantOrderService, MerchantOrdersService, MerchantService, MerchantShopService, MerchantShopsService, MerchantStatisticsBuyersService, MerchantStatisticsEventsService, MerchantStatisticsGrowthService, MerchantStatisticsInsightsService, MerchantStatisticsMarketingService, MerchantStatisticsOperationsService, MerchantStatisticsOverviewService, MerchantStatisticsRefundsService, MerchantStatisticsSalesService, MerchantStatisticsService, MerchantSubscriptionDto, MerchantTicketService, MerchantTicketsService, MerchantUserDto, MerchantUserService, MerchantUsersService, MerchantsService, MilestoneDto, MilestoneType, NoticeType, OperatingSystemType, OrderAdapter, OrderDto, OrderLineDto, OrderOrigin, OrderPaymentProviderDto, OrderProductDto, OrderRefundStatus, OrderType, PaymentAdapter, PaymentMethodDto, PaymentProviderDto, PaymentProviderType, PictureDto, ProductAdapter, ProductDto, ProductType, PublicOrderService, PublicPayAdapter, PublicPaymentMethodDto, PublicShopAdapter, PublicShopCartProductDto, PublicShopDesignDto, PublicShopDto, PublicShopElementButtonDto, PublicShopElementDividerDto, PublicShopElementDto, PublicShopElementHeadingDto, PublicShopElementInformationDto, PublicShopElementNoticeDto, PublicShopElementProductDto, PublicShopElementTextDto, PublicShopElementType, PublicShopEventDto, PublicShopMerchantDto, PublicShopProductDto, PublicShopReservationDto, PublicShopReservationProductDetailsDto, PublicShopReservationProductDto, PublicShopService, PublicShopTimeSlotDto, RefundAdapter, RefundDto, RefundInitiatorDto, RefundReason, RefundStatus, RefundTicketRefDto, RefundabilityDto, RefundabilityReason, RenderedMailDto, ReservationAdapter, ReservationDto, ReservationItemDto, ReservationProductDto, ReservationService, ScanStatus, ServiceAdapter, ServiceInfoDto, ServicesService, ShopAddressMode, ShopDesignDto, ShopDto, ShopElementButtonDto, ShopElementDividerDto, ShopElementDto, ShopElementHeadingDto, ShopElementInformationDto, ShopElementNoticeDto, ShopElementProductDto, ShopElementTextDto, ShopElementType, ShopFieldRequirement, ShopStatus, ShortlinkAdapter, ShortlinkDto, StatisticsAdapter, StatisticsBuyersAcquisitionSourceDto, StatisticsBuyersAdapter, StatisticsBuyersAgeGenderMatrixDto, StatisticsBuyersCohortRetentionDto, StatisticsBuyersDeviceConversionDto, StatisticsBuyersGeographicDistributionDto, StatisticsBuyersOverviewDto, StatisticsBuyersRankedDto, StatisticsBuyersSpendBucket, StatisticsBuyersSpendBucketsDto, StatisticsChartAdapter, StatisticsChartDataPoint, StatisticsChartDto, StatisticsChartSeries, StatisticsChartSeriesKind, StatisticsChartValueType, StatisticsEventsAdapter, StatisticsEventsOverviewDto, StatisticsEventsSalesCurveDto, StatisticsEventsSalesCurveEventDto, StatisticsEventsSellOutTimingDto, StatisticsEventsSellOutTimingEventDto, StatisticsEventsTimeToEventBucket, StatisticsEventsTimeToEventDto, StatisticsGrowthAdapter, StatisticsGrowthCmgrDto, StatisticsGrowthOverviewDto, StatisticsInsightsAdapter, StatisticsMarketingAdapter, StatisticsMarketingCampaignDto, StatisticsMarketingOverviewDto, StatisticsMarketingReferrerDto, StatisticsMarketingShortlinkRoiDto, StatisticsMarketingSourceBreakdownDto, StatisticsMarketingSourceFunnelDto, StatisticsMarketingSourceMediumMatrixDto, StatisticsOperationsAdapter, StatisticsOperationsAppTeamDto, StatisticsOperationsNoShowRateDto, StatisticsOperationsNoShowRateEventDto, StatisticsOperationsOverviewDto, StatisticsOperationsScanTimeBucket, StatisticsOperationsScanTimeDistributionDto, StatisticsOperationsStewardDto, StatisticsOperationsStockUtilizationDto, StatisticsOverviewAdapter, StatisticsOverviewBestRevenueMonthDto, StatisticsOverviewCancellationFunnelDto, StatisticsOverviewEventPerformanceDto, StatisticsOverviewEventPerformanceEventDto, StatisticsOverviewEventPerformanceSummaryDto, StatisticsOverviewKPIsDto, StatisticsOverviewKPIsTotalEventsHostedDto, StatisticsOverviewKPIsTotalRevenueDto, StatisticsOverviewKPIsTotalTicketsSoldDto, StatisticsOverviewReservationConversionRateDto, StatisticsOverviewTopShopDto, StatisticsPieChartDto, StatisticsPieSlice, StatisticsRefundsAdapter, StatisticsRefundsAmountDistributionDto, StatisticsRefundsOverviewDto, StatisticsRefundsTopEventDto, StatisticsRefundsVelocityBucket, StatisticsRefundsVelocityDto, StatisticsSalesAdapter, StatisticsSalesDiscountEfficacyDto, StatisticsSalesFailedTransactionReasonDto, StatisticsSalesLifetimeTotalsDto, StatisticsSalesOrderValueBucket, StatisticsSalesOrderValueDistributionDto, StatisticsSalesPurchaseBehaviorDto, StatisticsSalesRepeatPurchaseVelocityBucket, StatisticsSalesRepeatPurchaseVelocityDto, StatisticsSalesTransactionSuccessRateDto, StatisticsTrendDto, StatusResponseDto, StockOverviewDto, StockOverviewItemDto, StockPoolDto, SubscriptionAdapter, SubscriptionPlanDto, SubscriptionType, TicketAdapter, TicketDto, TicketTemplateDto, TicketTemplateType, TicketValidity, TimeSlotDto, TotpStateDto, TransactionDto, TransactionStatus, UiSelectOptionsService, UserDto, UserTokenDto, UserTokenType, VatNumberDto, export_default as
|
|
3781
|
+
export { AddressAdapter, AddressDto, AdminMerchantService, AdminMerchantSubscriptionService, AdminMerchantsService, AdminService, AiChatAdapter, AiChatConversationDto, AiChatMessageCompletedMessageDto, AiChatMessageDto, AiChatMessageRole, AiChatToolCallDto, AiGenerationStatus, AiUsageAdapter, AiUsageDto, AiUsageFeatureStatusDto, AiUsageOperation, AiUsagePeriodDto, AppTeamDto, AuthAdapter, AuthService, BrowserType, BuyerAdapter, BuyerDto, CashFlowAdapter, CashFlowDiscountDto, CashFlowDto, CashFlowEventType, CashFlowPaymentDto, CashFlowPlatformCostDto, CashFlowRefundDto, CashFlowTimelineEventDto, Claim, CommonAdapter, ContentCalendarAdapter, ContentCalendarGenerationCompletedMessageDto, ContentCalendarItemChannel, ContentCalendarItemCreatorDto, ContentCalendarItemDto, ContentCalendarItemPayload, ContentCalendarItemSource, ContentCalendarItemStatus, ContractDto, CostDto, DailyRevenueChart, DailyRevenueChartEntry, DateTimeAdapter, DiscountCodeAdapter, DiscountCodeDto, DiscountCodeEvent, DiscountCodeType, EMAIL_TEMPLATE_EDITOR_CONTEXTS, EmailTemplateAdapter, EmailTemplateDto, EmailTemplateEditorBlock, EmailTemplateEditorButtonBlock, EmailTemplateEditorCondition, EmailTemplateEditorContext, EmailTemplateEditorDividerBlock, EmailTemplateEditorH1Block, EmailTemplateEditorHeaderBlock, EmailTemplateEditorIfBlock, EmailTemplateEditorLogoBlock, EmailTemplateEditorParagraphBlock, EmailTemplateEditorSpacerBlock, EmailTemplateEditorVariable, EmailTemplateLanguage, EmailTemplateType, EventAdapter, EventAvailabilityDto, EventCountersDto, EventDto, EventStatisticsAppTeamDto, EventStatisticsAttendanceDto, EventStatisticsBuyersAdapter, EventStatisticsBuyersOverviewDto, EventStatisticsFinancialDto, EventStatisticsKpisDto, EventStatisticsOperationsAdapter, EventStatisticsOperationsOverviewDto, EventStatisticsOverviewAdapter, EventStatisticsStatus, EventStatisticsStatusDto, EventStatisticsSwapsDto, EventStatus, Feature, FeatureGroup, FileSystemAdapter, FilterValue, FilterValueSingle, Filters, FinanceAdapter, FinanceOverviewDto, FluxAdapter, Gender, Granularity, HeadingLevel, InsightCardCompletedMessageDto, InsightCardType, InsightDto, InsightLanguage, InsightSignalDto, InsightSignalKind, InsightStatus, InsightsResponseDto, InvitationDto, InvitationService, InvoiceDto, InvoiceLineDto, InvoiceLineType, ListParams, MarketingAttributionAdapter, MarketingAttributionDto, MeService, MerchantAdapter, MerchantAiChatService, MerchantAiSettingsService, MerchantAiUsageService, MerchantBuyerService, MerchantBuyersService, MerchantContractService, MerchantDashboardAdapter, MerchantDashboardKeyMetricsDto, MerchantDashboardService, MerchantDashboardUpcomingEventDto, MerchantDiscountCodeService, MerchantDiscountCodesService, MerchantDto, MerchantEmailTemplateService, MerchantEmailTemplatesService, MerchantEventAppTeamService, MerchantEventAppTeamsService, MerchantEventContentCalendarService, MerchantEventEmailTemplateService, MerchantEventEmailTemplatesService, MerchantEventProductService, MerchantEventProductsService, MerchantEventService, MerchantEventShopService, MerchantEventShopsService, MerchantEventStatisticsBuyersService, MerchantEventStatisticsOperationsService, MerchantEventStatisticsOverviewService, MerchantEventStatisticsSalesService, MerchantEventStockPoolsService, MerchantEventTicketTemplateService, MerchantEventTicketTemplatesService, MerchantEventTimeSlotService, MerchantEventTimeSlotsService, MerchantEventsService, MerchantFinanceInvoiceService, MerchantFinanceInvoicesService, MerchantFinanceService, MerchantOrderService, MerchantOrdersService, MerchantService, MerchantShopService, MerchantShopsService, MerchantStatisticsBuyersService, MerchantStatisticsEventsService, MerchantStatisticsGrowthService, MerchantStatisticsInsightsService, MerchantStatisticsMarketingService, MerchantStatisticsOperationsService, MerchantStatisticsOverviewService, MerchantStatisticsRefundsService, MerchantStatisticsSalesService, MerchantStatisticsService, MerchantSubscriptionDto, MerchantTicketService, MerchantTicketsService, MerchantUserDto, MerchantUserService, MerchantUsersService, MerchantsService, MilestoneDto, MilestoneType, NoticeType, OperatingSystemType, OrderAdapter, OrderDto, OrderLineDto, OrderOrigin, OrderPaymentProviderDto, OrderProductDto, OrderRefundStatus, OrderType, PaymentAdapter, PaymentMethodDto, PaymentProviderDto, PaymentProviderType, PictureDto, ProductAdapter, ProductDto, ProductType, PublicOrderService, PublicPayAdapter, PublicPaymentMethodDto, PublicShopAdapter, PublicShopCartProductDto, PublicShopDesignDto, PublicShopDto, PublicShopElementButtonDto, PublicShopElementDividerDto, PublicShopElementDto, PublicShopElementHeadingDto, PublicShopElementInformationDto, PublicShopElementNoticeDto, PublicShopElementProductDto, PublicShopElementTextDto, PublicShopElementType, PublicShopEventDto, PublicShopMerchantDto, PublicShopProductDto, PublicShopReservationDto, PublicShopReservationProductDetailsDto, PublicShopReservationProductDto, PublicShopService, PublicShopTimeSlotDto, RefundAdapter, RefundDto, RefundInitiatorDto, RefundReason, RefundStatus, RefundTicketRefDto, RefundabilityDto, RefundabilityReason, RenderedMailDto, ReservationAdapter, ReservationDto, ReservationItemDto, ReservationProductDto, ReservationService, ScanStatus, ServiceAdapter, ServiceInfoDto, ServicesService, ShopAddressMode, ShopDesignDto, ShopDto, ShopElementButtonDto, ShopElementDividerDto, ShopElementDto, ShopElementHeadingDto, ShopElementInformationDto, ShopElementNoticeDto, ShopElementProductDto, ShopElementTextDto, ShopElementType, ShopFieldRequirement, ShopStatus, ShortlinkAdapter, ShortlinkDto, StatisticsAdapter, StatisticsBuyersAcquisitionSourceDto, StatisticsBuyersAdapter, StatisticsBuyersAgeGenderMatrixDto, StatisticsBuyersCohortRetentionDto, StatisticsBuyersDeviceConversionDto, StatisticsBuyersGeographicDistributionDto, StatisticsBuyersOverviewDto, StatisticsBuyersRankedDto, StatisticsBuyersSpendBucket, StatisticsBuyersSpendBucketsDto, StatisticsChartAdapter, StatisticsChartDataPoint, StatisticsChartDto, StatisticsChartSeries, StatisticsChartSeriesKind, StatisticsChartValueType, StatisticsEventsAdapter, StatisticsEventsOverviewDto, StatisticsEventsSalesCurveDto, StatisticsEventsSalesCurveEventDto, StatisticsEventsSellOutTimingDto, StatisticsEventsSellOutTimingEventDto, StatisticsEventsTimeToEventBucket, StatisticsEventsTimeToEventDto, StatisticsGrowthAdapter, StatisticsGrowthCmgrDto, StatisticsGrowthOverviewDto, StatisticsInsightsAdapter, StatisticsMarketingAdapter, StatisticsMarketingCampaignDto, StatisticsMarketingOverviewDto, StatisticsMarketingReferrerDto, StatisticsMarketingShortlinkRoiDto, StatisticsMarketingSourceBreakdownDto, StatisticsMarketingSourceFunnelDto, StatisticsMarketingSourceMediumMatrixDto, StatisticsOperationsAdapter, StatisticsOperationsAppTeamDto, StatisticsOperationsNoShowRateDto, StatisticsOperationsNoShowRateEventDto, StatisticsOperationsOverviewDto, StatisticsOperationsScanTimeBucket, StatisticsOperationsScanTimeDistributionDto, StatisticsOperationsStewardDto, StatisticsOperationsStockUtilizationDto, StatisticsOverviewAdapter, StatisticsOverviewBestRevenueMonthDto, StatisticsOverviewCancellationFunnelDto, StatisticsOverviewEventPerformanceDto, StatisticsOverviewEventPerformanceEventDto, StatisticsOverviewEventPerformanceSummaryDto, StatisticsOverviewKPIsDto, StatisticsOverviewKPIsTotalEventsHostedDto, StatisticsOverviewKPIsTotalRevenueDto, StatisticsOverviewKPIsTotalTicketsSoldDto, StatisticsOverviewReservationConversionRateDto, StatisticsOverviewTopShopDto, StatisticsPieChartDto, StatisticsPieSlice, StatisticsRefundsAdapter, StatisticsRefundsAmountDistributionDto, StatisticsRefundsOverviewDto, StatisticsRefundsTopEventDto, StatisticsRefundsVelocityBucket, StatisticsRefundsVelocityDto, StatisticsSalesAdapter, StatisticsSalesDiscountEfficacyDto, StatisticsSalesFailedTransactionReasonDto, StatisticsSalesLifetimeTotalsDto, StatisticsSalesOrderValueBucket, StatisticsSalesOrderValueDistributionDto, StatisticsSalesPurchaseBehaviorDto, StatisticsSalesRepeatPurchaseVelocityBucket, StatisticsSalesRepeatPurchaseVelocityDto, StatisticsSalesTransactionSuccessRateDto, StatisticsTrendDto, StatusResponseDto, StockOverviewDto, StockOverviewItemDto, StockPoolDto, SubscriptionAdapter, SubscriptionPlanDto, SubscriptionType, TicketAdapter, TicketDto, TicketTemplateDto, TicketTemplateType, TicketValidity, TimeSlotDto, TotpStateDto, TransactionDto, TransactionStatus, UiSelectOptionsService, UserDto, UserTokenDto, UserTokenType, VatNumberDto, export_default as buildListQuery, export_default$1 as emptyNull, export_default$2 as jsonBlob, export_default$3 as optional, export_default$4 as optionalArray, parseEmailTemplate, serializeBlocks };
|
|
3766
3782
|
//# sourceMappingURL=index.d.mts.map
|