@passly-nl/data 1.3.3 → 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 +50 -31
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +74 -45
- package/dist/index.mjs.map +1 -1
- package/package.json +6 -12
- package/src/adapter/OrderAdapter.ts +1 -0
- package/src/dto/aiUsage/AiUsagePeriodDto.ts +4 -4
- package/src/dto/order/OrderDto.ts +12 -2
- 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/types/order.ts +5 -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,11 +203,23 @@ 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
|
|
209
220
|
//#region src/types/order.d.ts
|
|
210
221
|
type OrderOrigin = "local" | "ticketswap";
|
|
222
|
+
type OrderRefundStatus = "not_refunded" | "partially_refunded" | "fully_refunded";
|
|
211
223
|
type OrderType = "default" | "guest";
|
|
212
224
|
//#endregion
|
|
213
225
|
//#region src/types/payment.d.ts
|
|
@@ -335,9 +347,9 @@ declare class AiUsagePeriodDto {
|
|
|
335
347
|
set percentage(value: number);
|
|
336
348
|
get lastEventOn(): DateTime | null;
|
|
337
349
|
set lastEventOn(value: DateTime | null);
|
|
338
|
-
get features(): AiUsageFeatureStatusDto[];
|
|
339
|
-
set features(value: AiUsageFeatureStatusDto[]);
|
|
340
|
-
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);
|
|
341
353
|
}
|
|
342
354
|
//#endregion
|
|
343
355
|
//#region src/dto/auth/TotpStateDto.d.ts
|
|
@@ -1284,6 +1296,8 @@ declare class OrderDto {
|
|
|
1284
1296
|
set platformCost(value: CostDto);
|
|
1285
1297
|
get refundedTotal(): CostDto;
|
|
1286
1298
|
set refundedTotal(value: CostDto);
|
|
1299
|
+
get refundStatus(): OrderRefundStatus;
|
|
1300
|
+
set refundStatus(value: OrderRefundStatus);
|
|
1287
1301
|
get subTotal(): CostDto;
|
|
1288
1302
|
set subTotal(value: CostDto);
|
|
1289
1303
|
get total(): CostDto;
|
|
@@ -1302,7 +1316,7 @@ declare class OrderDto {
|
|
|
1302
1316
|
set transaction(value: TransactionDto | null);
|
|
1303
1317
|
get attribution(): MarketingAttributionDto | null;
|
|
1304
1318
|
set attribution(value: MarketingAttributionDto | null);
|
|
1305
|
-
constructor(id: string, code: string, origin: OrderOrigin, type: OrderType, createdOn: DateTime, discountAmount: CostDto | null, discountCodeApplied: string | null, paymentProvider: OrderPaymentProviderDto | null, platformCost: CostDto, refundedTotal: CostDto, subTotal: CostDto, total: CostDto, url: string, buyer: BuyerDto | null, event: EventDto | null, lines: OrderLineDto[] | null, shop: PublicShopDto | null, transaction: TransactionDto | null, attribution: MarketingAttributionDto | null);
|
|
1319
|
+
constructor(id: string, code: string, origin: OrderOrigin, type: OrderType, createdOn: DateTime, discountAmount: CostDto | null, discountCodeApplied: string | null, paymentProvider: OrderPaymentProviderDto | null, platformCost: CostDto, refundedTotal: CostDto, refundStatus: OrderRefundStatus, subTotal: CostDto, total: CostDto, url: string, buyer: BuyerDto | null, event: EventDto | null, lines: OrderLineDto[] | null, shop: PublicShopDto | null, transaction: TransactionDto | null, attribution: MarketingAttributionDto | null);
|
|
1306
1320
|
}
|
|
1307
1321
|
//#endregion
|
|
1308
1322
|
//#region src/dto/order/OrderLineDto.d.ts
|
|
@@ -1907,11 +1921,11 @@ declare class InsightsResponseDto {
|
|
|
1907
1921
|
set insightsEnabled(value: boolean);
|
|
1908
1922
|
get language(): InsightLanguage;
|
|
1909
1923
|
set language(value: InsightLanguage);
|
|
1910
|
-
get cards(): InsightDto[];
|
|
1911
|
-
set cards(value: InsightDto[]);
|
|
1924
|
+
get cards(): InsightDto[] | null;
|
|
1925
|
+
set cards(value: InsightDto[] | null);
|
|
1912
1926
|
get lastGeneratedOn(): string | null;
|
|
1913
1927
|
set lastGeneratedOn(value: string | null);
|
|
1914
|
-
constructor(insightsEnabled: boolean, language: InsightLanguage, cards: InsightDto[], lastGeneratedOn: string | null);
|
|
1928
|
+
constructor(insightsEnabled: boolean, language: InsightLanguage, cards: InsightDto[] | null, lastGeneratedOn: string | null);
|
|
1915
1929
|
}
|
|
1916
1930
|
//#endregion
|
|
1917
1931
|
//#region src/dto/statistics/MilestoneDto.d.ts
|
|
@@ -3171,7 +3185,7 @@ declare class AdminMerchantSubscriptionService extends BaseService {
|
|
|
3171
3185
|
//#endregion
|
|
3172
3186
|
//#region src/service/AdminMerchantsService.d.ts
|
|
3173
3187
|
declare class AdminMerchantsService extends BaseService {
|
|
3174
|
-
get(
|
|
3188
|
+
get(params: ListParams): Promise<BaseResponse<Paginated<MerchantDto>>>;
|
|
3175
3189
|
}
|
|
3176
3190
|
//#endregion
|
|
3177
3191
|
//#region src/service/AdminService.d.ts
|
|
@@ -3214,7 +3228,7 @@ declare class MerchantsService extends BaseService {
|
|
|
3214
3228
|
//#endregion
|
|
3215
3229
|
//#region src/service/MerchantContractService.d.ts
|
|
3216
3230
|
declare class MerchantContractService extends BaseService {
|
|
3217
|
-
get(merchantId: string,
|
|
3231
|
+
get(merchantId: string, params: ListParams): Promise<BaseResponse<Paginated<ContractDto>>>;
|
|
3218
3232
|
getSingle(merchantId: string, contractId: string): Promise<BaseResponse<ContractDto>>;
|
|
3219
3233
|
post(merchantId: string, startsOn: DateTime, endsOn: DateTime, feeCents: number, remark: string): Promise<BaseResponse<ContractDto>>;
|
|
3220
3234
|
put(merchantId: string, contractId: string, startsOn: DateTime, endsOn: DateTime, feeCents: number, remark: string): Promise<BaseResponse<ContractDto>>;
|
|
@@ -3224,12 +3238,12 @@ declare class MerchantContractService extends BaseService {
|
|
|
3224
3238
|
declare class MerchantBuyerService extends BaseService {
|
|
3225
3239
|
get(merchantId: string, buyerId: string): Promise<BaseResponse<BuyerDto>>;
|
|
3226
3240
|
getOrder(merchantId: string, buyerId: string, orderId: string): Promise<BaseResponse<OrderDto>>;
|
|
3227
|
-
getOrders(merchantId: string, buyerId: string,
|
|
3241
|
+
getOrders(merchantId: string, buyerId: string, params: ListParams): Promise<BaseResponse<Paginated<OrderDto>>>;
|
|
3228
3242
|
}
|
|
3229
3243
|
//#endregion
|
|
3230
3244
|
//#region src/service/MerchantBuyersService.d.ts
|
|
3231
3245
|
declare class MerchantBuyersService extends BaseService {
|
|
3232
|
-
get(merchantId: string,
|
|
3246
|
+
get(merchantId: string, params: ListParams): Promise<BaseResponse<Paginated<BuyerDto>>>;
|
|
3233
3247
|
}
|
|
3234
3248
|
//#endregion
|
|
3235
3249
|
//#region src/service/MerchantDashboardService.d.ts
|
|
@@ -3247,7 +3261,7 @@ declare class MerchantDiscountCodeService extends BaseService {
|
|
|
3247
3261
|
//#endregion
|
|
3248
3262
|
//#region src/service/MerchantDiscountCodesService.d.ts
|
|
3249
3263
|
declare class MerchantDiscountCodesService extends BaseService {
|
|
3250
|
-
get(merchantId: string,
|
|
3264
|
+
get(merchantId: string, params: ListParams): Promise<BaseResponse<Paginated<DiscountCodeDto>>>;
|
|
3251
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>>;
|
|
3252
3266
|
}
|
|
3253
3267
|
//#endregion
|
|
@@ -3260,7 +3274,7 @@ declare class MerchantEventAppTeamService extends BaseService {
|
|
|
3260
3274
|
//#endregion
|
|
3261
3275
|
//#region src/service/MerchantEventAppTeamsService.d.ts
|
|
3262
3276
|
declare class MerchantEventAppTeamsService extends BaseService {
|
|
3263
|
-
get(merchantId: string, eventId: string,
|
|
3277
|
+
get(merchantId: string, eventId: string, params: ListParams): Promise<BaseResponse<Paginated<AppTeamDto>>>;
|
|
3264
3278
|
post(merchantId: string, eventId: string, name: string): Promise<BaseResponse<AppTeamDto>>;
|
|
3265
3279
|
}
|
|
3266
3280
|
//#endregion
|
|
@@ -3278,7 +3292,7 @@ declare class MerchantEventProductService extends BaseService {
|
|
|
3278
3292
|
//#endregion
|
|
3279
3293
|
//#region src/service/MerchantEventProductsService.d.ts
|
|
3280
3294
|
declare class MerchantEventProductsService extends BaseService {
|
|
3281
|
-
get(merchantId: string, eventId: string,
|
|
3295
|
+
get(merchantId: string, eventId: string, params: ListParams): Promise<BaseResponse<Paginated<ProductDto>>>;
|
|
3282
3296
|
getSelectOptions(merchantId: string, eventId: string, searchQuery?: string | null, ids?: string[] | null): Promise<BaseResponse<FluxFormSelectEntry[]>>;
|
|
3283
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>>;
|
|
3284
3298
|
}
|
|
@@ -3345,6 +3359,7 @@ declare class MerchantEventTimeSlotService extends BaseService {
|
|
|
3345
3359
|
//#region src/service/MerchantEventTimeSlotsService.d.ts
|
|
3346
3360
|
declare class MerchantEventTimeSlotsService extends BaseService {
|
|
3347
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[]>>;
|
|
3348
3363
|
create(merchantId: string, eventId: string, fromTime: DateTime, toTime: DateTime, label?: string | null): Promise<BaseResponse<TimeSlotDto>>;
|
|
3349
3364
|
}
|
|
3350
3365
|
//#endregion
|
|
@@ -3362,14 +3377,14 @@ declare class MerchantEventShopService extends BaseService {
|
|
|
3362
3377
|
//#endregion
|
|
3363
3378
|
//#region src/service/MerchantEventShopsService.d.ts
|
|
3364
3379
|
declare class MerchantEventShopsService extends BaseService {
|
|
3365
|
-
get(merchantId: string, eventId: string,
|
|
3380
|
+
get(merchantId: string, eventId: string, params: ListParams): Promise<BaseResponse<Paginated<ShopDto>>>;
|
|
3366
3381
|
post(merchantId: string, eventId: string, name: string, startsOn: DateTime, endsOn: DateTime): Promise<BaseResponse<ShopDto>>;
|
|
3367
3382
|
delete(merchantId: string, eventId: string, shopId: string): Promise<BaseResponse<StatusResponseDto>>;
|
|
3368
3383
|
}
|
|
3369
3384
|
//#endregion
|
|
3370
3385
|
//#region src/service/MerchantEventStockPoolsService.d.ts
|
|
3371
3386
|
declare class MerchantEventStockPoolsService extends BaseService {
|
|
3372
|
-
get(merchantId: string, eventId: string,
|
|
3387
|
+
get(merchantId: string, eventId: string, params: ListParams): Promise<BaseResponse<Paginated<StockPoolDto>>>;
|
|
3373
3388
|
getOverview(merchantId: string, eventId: string): Promise<BaseResponse<StockOverviewDto>>;
|
|
3374
3389
|
getSelectOptions(merchantId: string, eventId: string, searchQuery?: string | null, ids?: string[] | null): Promise<BaseResponse<FluxFormSelectEntry[]>>;
|
|
3375
3390
|
post(merchantId: string, eventId: string, name: string, stock: number): Promise<BaseResponse<StockPoolDto>>;
|
|
@@ -3387,7 +3402,7 @@ declare class MerchantEventTicketTemplateService extends BaseService {
|
|
|
3387
3402
|
//#endregion
|
|
3388
3403
|
//#region src/service/MerchantEventTicketTemplatesService.d.ts
|
|
3389
3404
|
declare class MerchantEventTicketTemplatesService extends BaseService {
|
|
3390
|
-
get(merchantId: string, eventId: string,
|
|
3405
|
+
get(merchantId: string, eventId: string, params: ListParams): Promise<BaseResponse<Paginated<TicketTemplateDto>>>;
|
|
3391
3406
|
getSelectOptions(merchantId: string, eventId: string, searchQuery?: string | null, ids?: string[] | null): Promise<BaseResponse<FluxFormSelectEntry[]>>;
|
|
3392
3407
|
post(merchantId: string, eventId: string, name: string, productId: string | null, variant: TicketTemplateType, visual: File): Promise<BaseResponse<TicketTemplateDto>>;
|
|
3393
3408
|
}
|
|
@@ -3402,7 +3417,7 @@ declare class MerchantEmailTemplateService extends BaseService {
|
|
|
3402
3417
|
//#endregion
|
|
3403
3418
|
//#region src/service/MerchantEmailTemplatesService.d.ts
|
|
3404
3419
|
declare class MerchantEmailTemplatesService extends BaseService {
|
|
3405
|
-
get(merchantId: string,
|
|
3420
|
+
get(merchantId: string, params: ListParams): Promise<BaseResponse<Paginated<EmailTemplateDto>>>;
|
|
3406
3421
|
post(merchantId: string, type: EmailTemplateType, subject: string, content: string, language?: EmailTemplateLanguage | null): Promise<BaseResponse<EmailTemplateDto>>;
|
|
3407
3422
|
}
|
|
3408
3423
|
//#endregion
|
|
@@ -3416,13 +3431,14 @@ declare class MerchantEventEmailTemplateService extends BaseService {
|
|
|
3416
3431
|
//#endregion
|
|
3417
3432
|
//#region src/service/MerchantEventEmailTemplatesService.d.ts
|
|
3418
3433
|
declare class MerchantEventEmailTemplatesService extends BaseService {
|
|
3419
|
-
get(merchantId: string, eventId: string,
|
|
3434
|
+
get(merchantId: string, eventId: string, params: ListParams): Promise<BaseResponse<Paginated<EmailTemplateDto>>>;
|
|
3420
3435
|
post(merchantId: string, eventId: string, type: EmailTemplateType, subject: string, content: string, language?: EmailTemplateLanguage | null): Promise<BaseResponse<EmailTemplateDto>>;
|
|
3421
3436
|
}
|
|
3422
3437
|
//#endregion
|
|
3423
3438
|
//#region src/service/MerchantEventsService.d.ts
|
|
3424
3439
|
declare class MerchantEventsService extends BaseService {
|
|
3425
|
-
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[]>>;
|
|
3426
3442
|
post(merchantId: string, name: string, description: string, startsOn: DateTime, endsOn: DateTime, minimumAge: number): Promise<BaseResponse<EventDto>>;
|
|
3427
3443
|
}
|
|
3428
3444
|
//#endregion
|
|
@@ -3434,7 +3450,7 @@ declare class MerchantFinanceInvoiceService extends BaseService {
|
|
|
3434
3450
|
//#endregion
|
|
3435
3451
|
//#region src/service/MerchantFinanceInvoicesService.d.ts
|
|
3436
3452
|
declare class MerchantFinanceInvoicesService extends BaseService {
|
|
3437
|
-
get(merchantId: string,
|
|
3453
|
+
get(merchantId: string, params: ListParams): Promise<BaseResponse<Paginated<InvoiceDto>>>;
|
|
3438
3454
|
}
|
|
3439
3455
|
//#endregion
|
|
3440
3456
|
//#region src/service/MerchantFinanceService.d.ts
|
|
@@ -3458,7 +3474,7 @@ declare class MerchantOrderService extends BaseService {
|
|
|
3458
3474
|
//#endregion
|
|
3459
3475
|
//#region src/service/MerchantOrdersService.d.ts
|
|
3460
3476
|
declare class MerchantOrdersService extends BaseService {
|
|
3461
|
-
get(merchantId: string,
|
|
3477
|
+
get(merchantId: string, params: ListParams): Promise<BaseResponse<Paginated<OrderDto>>>;
|
|
3462
3478
|
}
|
|
3463
3479
|
//#endregion
|
|
3464
3480
|
//#region src/service/MerchantShopService.d.ts
|
|
@@ -3470,7 +3486,7 @@ declare class MerchantShopService extends BaseService {
|
|
|
3470
3486
|
//#endregion
|
|
3471
3487
|
//#region src/service/MerchantShopsService.d.ts
|
|
3472
3488
|
declare class MerchantShopsService extends BaseService {
|
|
3473
|
-
get(merchantId: string,
|
|
3489
|
+
get(merchantId: string, params: ListParams): Promise<BaseResponse<Paginated<ShopDto>>>;
|
|
3474
3490
|
}
|
|
3475
3491
|
//#endregion
|
|
3476
3492
|
//#region src/service/MerchantStatisticsService.d.ts
|
|
@@ -3665,7 +3681,7 @@ declare class MerchantTicketService extends BaseService {
|
|
|
3665
3681
|
//#endregion
|
|
3666
3682
|
//#region src/service/MerchantTicketsService.d.ts
|
|
3667
3683
|
declare class MerchantTicketsService extends BaseService {
|
|
3668
|
-
get(merchantId: string,
|
|
3684
|
+
get(merchantId: string, params: ListParams): Promise<BaseResponse<Paginated<TicketDto>>>;
|
|
3669
3685
|
}
|
|
3670
3686
|
//#endregion
|
|
3671
3687
|
//#region src/service/MerchantUserService.d.ts
|
|
@@ -3677,7 +3693,7 @@ declare class MerchantUserService extends BaseService {
|
|
|
3677
3693
|
//#endregion
|
|
3678
3694
|
//#region src/service/MerchantUsersService.d.ts
|
|
3679
3695
|
declare class MerchantUsersService extends BaseService {
|
|
3680
|
-
get(merchantId: string,
|
|
3696
|
+
get(merchantId: string, params: ListParams): Promise<BaseResponse<Paginated<MerchantUserDto>>>;
|
|
3681
3697
|
postInvite(merchantId: string, firstName: string, lastName: string, email: string, claims: Claim[]): Promise<BaseResponse<InvitationDto>>;
|
|
3682
3698
|
}
|
|
3683
3699
|
//#endregion
|
|
@@ -3747,17 +3763,20 @@ declare class UiSelectOptionsService extends BaseService {
|
|
|
3747
3763
|
getLanguages(): Promise<BaseResponse<FluxFormSelectOption[]>>;
|
|
3748
3764
|
}
|
|
3749
3765
|
//#endregion
|
|
3766
|
+
//#region src/util/buildListQuery.d.ts
|
|
3767
|
+
declare function export_default(params: ListParams, language?: string): QueryString;
|
|
3768
|
+
//#endregion
|
|
3750
3769
|
//#region src/util/emptyNull.d.ts
|
|
3751
|
-
declare function export_default<T>(value: T): T | null;
|
|
3770
|
+
declare function export_default$1<T>(value: T): T | null;
|
|
3752
3771
|
//#endregion
|
|
3753
3772
|
//#region src/util/jsonBlob.d.ts
|
|
3754
|
-
declare function export_default$
|
|
3773
|
+
declare function export_default$2<T>(json: T): Blob;
|
|
3755
3774
|
//#endregion
|
|
3756
3775
|
//#region src/util/optional.d.ts
|
|
3757
|
-
declare function export_default$
|
|
3776
|
+
declare function export_default$3<T, U>(value: U, adapter: (value: U) => T): T;
|
|
3758
3777
|
//#endregion
|
|
3759
3778
|
//#region src/util/optionalArray.d.ts
|
|
3760
|
-
declare function export_default$
|
|
3779
|
+
declare function export_default$4<T>(value: object[], adapter: (value: object) => T): T[] | null;
|
|
3761
3780
|
//#endregion
|
|
3762
|
-
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, 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 };
|
|
3763
3782
|
//# sourceMappingURL=index.d.mts.map
|