@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.mjs
CHANGED
|
@@ -7950,6 +7950,27 @@ let AddressAdapter = class AddressAdapter {
|
|
|
7950
7950
|
};
|
|
7951
7951
|
AddressAdapter = __decorate([adapter], AddressAdapter);
|
|
7952
7952
|
|
|
7953
|
+
//#endregion
|
|
7954
|
+
//#region src/util/buildListQuery.ts
|
|
7955
|
+
function buildListQuery_default(params, language = "nl") {
|
|
7956
|
+
const query = QueryString.builder().append("language", language).append("offset", params.offset).append("limit", params.limit);
|
|
7957
|
+
if (params.search) query.append("search", params.search);
|
|
7958
|
+
if (params.filters) {
|
|
7959
|
+
for (const [key, value] of Object.entries(params.filters)) if (Array.isArray(value)) query.appendArray(`${key}[]`, value.map(serialize));
|
|
7960
|
+
else if (value !== null && value !== void 0) {
|
|
7961
|
+
const serialized = serialize(value);
|
|
7962
|
+
if (serialized !== null) query.append(key, serialized);
|
|
7963
|
+
}
|
|
7964
|
+
}
|
|
7965
|
+
return query;
|
|
7966
|
+
}
|
|
7967
|
+
function serialize(value) {
|
|
7968
|
+
if (DateTime.isDateTime(value)) return value.toISO();
|
|
7969
|
+
if (value === null || value === void 0) return null;
|
|
7970
|
+
if (typeof value === "string" || typeof value === "number" || typeof value === "boolean") return value;
|
|
7971
|
+
return String(value);
|
|
7972
|
+
}
|
|
7973
|
+
|
|
7953
7974
|
//#endregion
|
|
7954
7975
|
//#region src/util/emptyNull.ts
|
|
7955
7976
|
function emptyNull_default(value) {
|
|
@@ -8790,8 +8811,8 @@ var AdminMerchantSubscriptionService = class extends BaseService {
|
|
|
8790
8811
|
//#endregion
|
|
8791
8812
|
//#region src/service/AdminMerchantsService.ts
|
|
8792
8813
|
var AdminMerchantsService = class extends BaseService {
|
|
8793
|
-
async get(
|
|
8794
|
-
return await this.request("/admin/merchants").method("get").queryString(
|
|
8814
|
+
async get(params) {
|
|
8815
|
+
return await this.request("/admin/merchants").method("get").queryString(buildListQuery_default(params)).bearerToken().runPaginatedAdapter(MerchantAdapter.parseMerchant);
|
|
8795
8816
|
}
|
|
8796
8817
|
};
|
|
8797
8818
|
|
|
@@ -8900,8 +8921,8 @@ var MerchantsService = class extends BaseService {
|
|
|
8900
8921
|
//#endregion
|
|
8901
8922
|
//#region src/service/MerchantContractService.ts
|
|
8902
8923
|
var MerchantContractService = class extends BaseService {
|
|
8903
|
-
async get(merchantId,
|
|
8904
|
-
return await this.request(`/merchants/${merchantId}/contracts`).method("get").bearerToken().queryString(
|
|
8924
|
+
async get(merchantId, params) {
|
|
8925
|
+
return await this.request(`/merchants/${merchantId}/contracts`).method("get").bearerToken().queryString(buildListQuery_default(params)).runPaginatedAdapter(MerchantAdapter.parseContract);
|
|
8905
8926
|
}
|
|
8906
8927
|
async getSingle(merchantId, contractId) {
|
|
8907
8928
|
return await this.request(`/merchants/${merchantId}/contracts/${contractId}`).method("get").bearerToken().queryString(QueryString.builder().append("language", "nl")).runAdapter(MerchantAdapter.parseContract);
|
|
@@ -8933,16 +8954,16 @@ var MerchantBuyerService = class extends BaseService {
|
|
|
8933
8954
|
async getOrder(merchantId, buyerId, orderId) {
|
|
8934
8955
|
return await this.request(`/merchants/${merchantId}/buyers/${buyerId}/orders/${orderId}`).method("get").bearerToken().queryString(QueryString.builder().append("language", "nl")).runAdapter(OrderAdapter.parseOrder);
|
|
8935
8956
|
}
|
|
8936
|
-
async getOrders(merchantId, buyerId,
|
|
8937
|
-
return await this.request(`/merchants/${merchantId}/buyers/${buyerId}/orders`).method("get").bearerToken().queryString(
|
|
8957
|
+
async getOrders(merchantId, buyerId, params) {
|
|
8958
|
+
return await this.request(`/merchants/${merchantId}/buyers/${buyerId}/orders`).method("get").bearerToken().queryString(buildListQuery_default(params)).runPaginatedAdapter(OrderAdapter.parseOrder);
|
|
8938
8959
|
}
|
|
8939
8960
|
};
|
|
8940
8961
|
|
|
8941
8962
|
//#endregion
|
|
8942
8963
|
//#region src/service/MerchantBuyersService.ts
|
|
8943
8964
|
var MerchantBuyersService = class extends BaseService {
|
|
8944
|
-
async get(merchantId,
|
|
8945
|
-
return await this.request(`/merchants/${merchantId}/buyers`).method("get").queryString(
|
|
8965
|
+
async get(merchantId, params) {
|
|
8966
|
+
return await this.request(`/merchants/${merchantId}/buyers`).method("get").queryString(buildListQuery_default(params)).bearerToken().runPaginatedAdapter(BuyerAdapter.parseBuyer);
|
|
8946
8967
|
}
|
|
8947
8968
|
};
|
|
8948
8969
|
|
|
@@ -8979,10 +9000,8 @@ var MerchantDiscountCodeService = class extends BaseService {
|
|
|
8979
9000
|
//#endregion
|
|
8980
9001
|
//#region src/service/MerchantDiscountCodesService.ts
|
|
8981
9002
|
var MerchantDiscountCodesService = class extends BaseService {
|
|
8982
|
-
async get(merchantId,
|
|
8983
|
-
|
|
8984
|
-
if (eventId !== null) qs.append("event_id", eventId);
|
|
8985
|
-
return await this.request(`/merchants/${merchantId}/discount-codes`).method("get").bearerToken().queryString(qs).runPaginatedAdapter(DiscountCodeAdapter.parseDiscountCode);
|
|
9003
|
+
async get(merchantId, params) {
|
|
9004
|
+
return await this.request(`/merchants/${merchantId}/discount-codes`).method("get").bearerToken().queryString(buildListQuery_default(params)).runPaginatedAdapter(DiscountCodeAdapter.parseDiscountCode);
|
|
8986
9005
|
}
|
|
8987
9006
|
async post(merchantId, code, type, validFrom, validUntil, percentage, amountCents, maxUses, eventId) {
|
|
8988
9007
|
return await this.request(`/merchants/${merchantId}/discount-codes`).method("post").bearerToken().queryString(QueryString.builder().append("language", "nl")).body({
|
|
@@ -9015,8 +9034,8 @@ var MerchantEventAppTeamService = class extends BaseService {
|
|
|
9015
9034
|
//#endregion
|
|
9016
9035
|
//#region src/service/MerchantEventAppTeamsService.ts
|
|
9017
9036
|
var MerchantEventAppTeamsService = class extends BaseService {
|
|
9018
|
-
async get(merchantId, eventId,
|
|
9019
|
-
return await this.request(`/merchants/${merchantId}/events/${eventId}/app-teams`).method("get").bearerToken().queryString(
|
|
9037
|
+
async get(merchantId, eventId, params) {
|
|
9038
|
+
return await this.request(`/merchants/${merchantId}/events/${eventId}/app-teams`).method("get").bearerToken().queryString(buildListQuery_default(params)).runPaginatedAdapter(EventAdapter.parseAppTeam);
|
|
9020
9039
|
}
|
|
9021
9040
|
async post(merchantId, eventId, name) {
|
|
9022
9041
|
return await this.request(`/merchants/${merchantId}/events/${eventId}/app-teams`).method("post").bearerToken().queryString(QueryString.builder().append("language", "nl")).body({ name }).runAdapter(EventAdapter.parseAppTeam);
|
|
@@ -9065,8 +9084,8 @@ var MerchantEventProductService = class extends BaseService {
|
|
|
9065
9084
|
//#endregion
|
|
9066
9085
|
//#region src/service/MerchantEventProductsService.ts
|
|
9067
9086
|
var MerchantEventProductsService = class extends BaseService {
|
|
9068
|
-
async get(merchantId, eventId,
|
|
9069
|
-
return await this.request(`/merchants/${merchantId}/events/${eventId}/products`).method("get").bearerToken().queryString(
|
|
9087
|
+
async get(merchantId, eventId, params) {
|
|
9088
|
+
return await this.request(`/merchants/${merchantId}/events/${eventId}/products`).method("get").bearerToken().queryString(buildListQuery_default(params)).runPaginatedAdapter(ProductAdapter.parseProduct);
|
|
9070
9089
|
}
|
|
9071
9090
|
async getSelectOptions(merchantId, eventId, searchQuery = null, ids = null) {
|
|
9072
9091
|
return await this.request(`/merchants/${merchantId}/events/${eventId}/products/select-options`).method("get").bearerToken().queryString(QueryString.builder().append("language", "nl").appendArray("ids[]", ids).append("searchQuery", searchQuery)).runArrayAdapter(FluxAdapter.parseFluxFormSelectEntry);
|
|
@@ -9246,6 +9265,9 @@ var MerchantEventTimeSlotsService = class extends BaseService {
|
|
|
9246
9265
|
async list(merchantId, eventId, offset, limit) {
|
|
9247
9266
|
return await this.request(`/merchants/${merchantId}/events/${eventId}/time-slots`).method("get").queryString(QueryString.builder().append("language", "nl").append("offset", offset).append("limit", limit)).bearerToken().runPaginatedAdapter(EventAdapter.parseTimeSlot);
|
|
9248
9267
|
}
|
|
9268
|
+
async getSelectOptions(merchantId, eventId, searchQuery = null, ids = null) {
|
|
9269
|
+
return await this.request(`/merchants/${merchantId}/events/${eventId}/time-slots/select-options`).method("get").queryString(QueryString.builder().append("language", "nl").appendArray("ids[]", ids).append("searchQuery", searchQuery)).bearerToken().runArrayAdapter(FluxAdapter.parseFluxFormSelectEntry);
|
|
9270
|
+
}
|
|
9249
9271
|
async create(merchantId, eventId, fromTime, toTime, label = null) {
|
|
9250
9272
|
return await this.request(`/merchants/${merchantId}/events/${eventId}/time-slots`).method("post").bearerToken().queryString(QueryString.builder().append("language", "nl")).body({
|
|
9251
9273
|
from_time: fromTime.toISO(),
|
|
@@ -9303,8 +9325,8 @@ var MerchantEventShopService = class extends BaseService {
|
|
|
9303
9325
|
//#endregion
|
|
9304
9326
|
//#region src/service/MerchantEventShopsService.ts
|
|
9305
9327
|
var MerchantEventShopsService = class extends BaseService {
|
|
9306
|
-
async get(merchantId, eventId,
|
|
9307
|
-
return await this.request(`/merchants/${merchantId}/events/${eventId}/shops`).method("get").queryString(
|
|
9328
|
+
async get(merchantId, eventId, params) {
|
|
9329
|
+
return await this.request(`/merchants/${merchantId}/events/${eventId}/shops`).method("get").queryString(buildListQuery_default(params)).bearerToken().runPaginatedAdapter(EventAdapter.parseShop);
|
|
9308
9330
|
}
|
|
9309
9331
|
async post(merchantId, eventId, name, startsOn, endsOn) {
|
|
9310
9332
|
return await this.request(`/merchants/${merchantId}/events/${eventId}/shops`).method("post").bearerToken().queryString(QueryString.builder().append("language", "nl")).body({
|
|
@@ -9321,8 +9343,8 @@ var MerchantEventShopsService = class extends BaseService {
|
|
|
9321
9343
|
//#endregion
|
|
9322
9344
|
//#region src/service/MerchantEventStockPoolsService.ts
|
|
9323
9345
|
var MerchantEventStockPoolsService = class extends BaseService {
|
|
9324
|
-
async get(merchantId, eventId,
|
|
9325
|
-
return await this.request(`/merchants/${merchantId}/events/${eventId}/stock-pools`).method("get").queryString(
|
|
9346
|
+
async get(merchantId, eventId, params) {
|
|
9347
|
+
return await this.request(`/merchants/${merchantId}/events/${eventId}/stock-pools`).method("get").queryString(buildListQuery_default(params)).bearerToken().runPaginatedAdapter(EventAdapter.parseStockPool);
|
|
9326
9348
|
}
|
|
9327
9349
|
async getOverview(merchantId, eventId) {
|
|
9328
9350
|
return await this.request(`/merchants/${merchantId}/events/${eventId}/stock-pools/overview`).method("get").queryString(QueryString.builder().append("language", "nl")).bearerToken().runAdapter(EventAdapter.parseStockOverview);
|
|
@@ -9370,8 +9392,8 @@ var MerchantEventTicketTemplateService = class extends BaseService {
|
|
|
9370
9392
|
//#endregion
|
|
9371
9393
|
//#region src/service/MerchantEventTicketTemplatesService.ts
|
|
9372
9394
|
var MerchantEventTicketTemplatesService = class extends BaseService {
|
|
9373
|
-
async get(merchantId, eventId,
|
|
9374
|
-
return await this.request(`/merchants/${merchantId}/events/${eventId}/ticket-templates`).method("get").queryString(
|
|
9395
|
+
async get(merchantId, eventId, params) {
|
|
9396
|
+
return await this.request(`/merchants/${merchantId}/events/${eventId}/ticket-templates`).method("get").queryString(buildListQuery_default(params)).bearerToken().runPaginatedAdapter(EventAdapter.parseTicketTemplate);
|
|
9375
9397
|
}
|
|
9376
9398
|
async getSelectOptions(merchantId, eventId, searchQuery = null, ids = null) {
|
|
9377
9399
|
return await this.request(`/merchants/${merchantId}/events/${eventId}/ticket-templates/select-options`).method("get").queryString(QueryString.builder().append("language", "nl").appendArray("ids[]", ids).append("searchQuery", searchQuery)).bearerToken().runArrayAdapter(FluxAdapter.parseFluxFormSelectEntry);
|
|
@@ -9412,8 +9434,8 @@ var MerchantEmailTemplateService = class extends BaseService {
|
|
|
9412
9434
|
//#endregion
|
|
9413
9435
|
//#region src/service/MerchantEmailTemplatesService.ts
|
|
9414
9436
|
var MerchantEmailTemplatesService = class extends BaseService {
|
|
9415
|
-
async get(merchantId,
|
|
9416
|
-
return await this.request(`/merchants/${merchantId}/email-templates`).method("get").bearerToken().queryString(
|
|
9437
|
+
async get(merchantId, params) {
|
|
9438
|
+
return await this.request(`/merchants/${merchantId}/email-templates`).method("get").bearerToken().queryString(buildListQuery_default(params)).runPaginatedAdapter(EmailTemplateAdapter.parseEmailTemplate);
|
|
9417
9439
|
}
|
|
9418
9440
|
async post(merchantId, type, subject, content, language = null) {
|
|
9419
9441
|
return await this.request(`/merchants/${merchantId}/email-templates`).method("post").bearerToken().body({
|
|
@@ -9449,8 +9471,8 @@ var MerchantEventEmailTemplateService = class extends BaseService {
|
|
|
9449
9471
|
//#endregion
|
|
9450
9472
|
//#region src/service/MerchantEventEmailTemplatesService.ts
|
|
9451
9473
|
var MerchantEventEmailTemplatesService = class extends BaseService {
|
|
9452
|
-
async get(merchantId, eventId,
|
|
9453
|
-
return await this.request(`/merchants/${merchantId}/events/${eventId}/email-templates`).method("get").bearerToken().queryString(
|
|
9474
|
+
async get(merchantId, eventId, params) {
|
|
9475
|
+
return await this.request(`/merchants/${merchantId}/events/${eventId}/email-templates`).method("get").bearerToken().queryString(buildListQuery_default(params)).runPaginatedAdapter(EmailTemplateAdapter.parseEmailTemplate);
|
|
9454
9476
|
}
|
|
9455
9477
|
async post(merchantId, eventId, type, subject, content, language = null) {
|
|
9456
9478
|
return await this.request(`/merchants/${merchantId}/events/${eventId}/email-templates`).method("post").bearerToken().body({
|
|
@@ -9465,8 +9487,11 @@ var MerchantEventEmailTemplatesService = class extends BaseService {
|
|
|
9465
9487
|
//#endregion
|
|
9466
9488
|
//#region src/service/MerchantEventsService.ts
|
|
9467
9489
|
var MerchantEventsService = class extends BaseService {
|
|
9468
|
-
async get(merchantId,
|
|
9469
|
-
return await this.request(`/merchants/${merchantId}/events`).method("get").bearerToken().queryString(
|
|
9490
|
+
async get(merchantId, params) {
|
|
9491
|
+
return await this.request(`/merchants/${merchantId}/events`).method("get").bearerToken().queryString(buildListQuery_default(params)).runPaginatedAdapter(EventAdapter.parseEvent);
|
|
9492
|
+
}
|
|
9493
|
+
async getSelectOptions(merchantId, searchQuery = null, ids = null) {
|
|
9494
|
+
return await this.request(`/merchants/${merchantId}/events/select-options`).method("get").queryString(QueryString.builder().append("language", "nl").appendArray("ids[]", ids).append("searchQuery", searchQuery)).bearerToken().runArrayAdapter(FluxAdapter.parseFluxFormSelectEntry);
|
|
9470
9495
|
}
|
|
9471
9496
|
async post(merchantId, name, description, startsOn, endsOn, minimumAge) {
|
|
9472
9497
|
return await this.request(`/merchants/${merchantId}/events`).method("post").bearerToken().queryString(QueryString.builder().append("language", "nl")).body({
|
|
@@ -9493,8 +9518,8 @@ var MerchantFinanceInvoiceService = class extends BaseService {
|
|
|
9493
9518
|
//#endregion
|
|
9494
9519
|
//#region src/service/MerchantFinanceInvoicesService.ts
|
|
9495
9520
|
var MerchantFinanceInvoicesService = class extends BaseService {
|
|
9496
|
-
async get(merchantId,
|
|
9497
|
-
return await this.request(`/merchants/${merchantId}/finance/invoices`).method("get").bearerToken().queryString(
|
|
9521
|
+
async get(merchantId, params) {
|
|
9522
|
+
return await this.request(`/merchants/${merchantId}/finance/invoices`).method("get").bearerToken().queryString(buildListQuery_default(params)).runPaginatedAdapter(FinanceAdapter.parseInvoice);
|
|
9498
9523
|
}
|
|
9499
9524
|
};
|
|
9500
9525
|
|
|
@@ -9548,10 +9573,8 @@ var MerchantOrderService = class extends BaseService {
|
|
|
9548
9573
|
//#endregion
|
|
9549
9574
|
//#region src/service/MerchantOrdersService.ts
|
|
9550
9575
|
var MerchantOrdersService = class extends BaseService {
|
|
9551
|
-
async get(merchantId,
|
|
9552
|
-
|
|
9553
|
-
if (filter) Object.entries(filter).forEach(([key, value]) => query.append(key, value));
|
|
9554
|
-
return await this.request(`/merchants/${merchantId}/orders`).method("get").queryString(query).bearerToken().runPaginatedAdapter(OrderAdapter.parseOrder);
|
|
9576
|
+
async get(merchantId, params) {
|
|
9577
|
+
return await this.request(`/merchants/${merchantId}/orders`).method("get").queryString(buildListQuery_default(params)).bearerToken().runPaginatedAdapter(OrderAdapter.parseOrder);
|
|
9555
9578
|
}
|
|
9556
9579
|
};
|
|
9557
9580
|
|
|
@@ -9572,8 +9595,8 @@ var MerchantShopService = class extends BaseService {
|
|
|
9572
9595
|
//#endregion
|
|
9573
9596
|
//#region src/service/MerchantShopsService.ts
|
|
9574
9597
|
var MerchantShopsService = class extends BaseService {
|
|
9575
|
-
async get(merchantId,
|
|
9576
|
-
return await this.request(`/merchants/${merchantId}/shops`).method("get").queryString(
|
|
9598
|
+
async get(merchantId, params) {
|
|
9599
|
+
return await this.request(`/merchants/${merchantId}/shops`).method("get").queryString(buildListQuery_default(params)).bearerToken().runPaginatedAdapter(EventAdapter.parseShop);
|
|
9577
9600
|
}
|
|
9578
9601
|
};
|
|
9579
9602
|
|
|
@@ -9970,10 +9993,8 @@ var MerchantTicketService = class extends BaseService {
|
|
|
9970
9993
|
//#endregion
|
|
9971
9994
|
//#region src/service/MerchantTicketsService.ts
|
|
9972
9995
|
var MerchantTicketsService = class extends BaseService {
|
|
9973
|
-
async get(merchantId,
|
|
9974
|
-
|
|
9975
|
-
if (filter) Object.entries(filter).forEach(([key, value]) => query.append(key, value));
|
|
9976
|
-
return await this.request(`/merchants/${merchantId}/tickets`).method("get").queryString(query).bearerToken().runPaginatedAdapter(TicketAdapter.parseTicket);
|
|
9996
|
+
async get(merchantId, params) {
|
|
9997
|
+
return await this.request(`/merchants/${merchantId}/tickets`).method("get").queryString(buildListQuery_default(params)).bearerToken().runPaginatedAdapter(TicketAdapter.parseTicket);
|
|
9977
9998
|
}
|
|
9978
9999
|
};
|
|
9979
10000
|
|
|
@@ -9997,8 +10018,8 @@ var MerchantUserService = class extends BaseService {
|
|
|
9997
10018
|
//#endregion
|
|
9998
10019
|
//#region src/service/MerchantUsersService.ts
|
|
9999
10020
|
var MerchantUsersService = class extends BaseService {
|
|
10000
|
-
async get(merchantId,
|
|
10001
|
-
return await this.request(`/merchants/${merchantId}/users`).method("get").queryString(
|
|
10021
|
+
async get(merchantId, params) {
|
|
10022
|
+
return await this.request(`/merchants/${merchantId}/users`).method("get").queryString(buildListQuery_default(params)).bearerToken().runPaginatedAdapter(MerchantAdapter.parseMerchantUser);
|
|
10002
10023
|
}
|
|
10003
10024
|
async postInvite(merchantId, firstName, lastName, email, claims) {
|
|
10004
10025
|
return await this.request(`/merchants/${merchantId}/users/invite`).method("post").queryString(QueryString.builder().append("language", "nl")).bearerToken().body({
|
|
@@ -10521,5 +10542,5 @@ var UiSelectOptionsService = class extends BaseService {
|
|
|
10521
10542
|
};
|
|
10522
10543
|
|
|
10523
10544
|
//#endregion
|
|
10524
|
-
export { AddressAdapter, AddressDto, AdminMerchantService, AdminMerchantSubscriptionService, AdminMerchantsService, AdminService, AiChatAdapter, AiChatConversationDto, AiChatMessageDto, AiChatToolCallDto, AiUsageAdapter, AiUsageDto, AiUsageFeatureStatusDto, AiUsagePeriodDto, AppTeamDto, AuthAdapter, AuthService, BuyerAdapter, BuyerDto, CashFlowAdapter, CashFlowDiscountDto, CashFlowDto, CashFlowPaymentDto, CashFlowPlatformCostDto, CashFlowRefundDto, CashFlowTimelineEventDto, CommonAdapter, ContentCalendarAdapter, ContentCalendarItemCreatorDto, ContentCalendarItemDto, ContractDto, CostDto, DateTimeAdapter, DiscountCodeAdapter, DiscountCodeDto, EMAIL_TEMPLATE_EDITOR_CONTEXTS, EmailTemplateAdapter, EmailTemplateDto, EventAdapter, EventAvailabilityDto, EventCountersDto, EventDto, EventStatisticsAppTeamDto, EventStatisticsAttendanceDto, EventStatisticsBuyersAdapter, EventStatisticsBuyersOverviewDto, EventStatisticsFinancialDto, EventStatisticsKpisDto, EventStatisticsOperationsAdapter, EventStatisticsOperationsOverviewDto, EventStatisticsOverviewAdapter, EventStatisticsStatusDto, EventStatisticsSwapsDto, FileSystemAdapter, FinanceAdapter, FinanceOverviewDto, FluxAdapter, InsightDto, InsightSignalDto, InsightsResponseDto, InvitationDto, InvitationService, InvoiceDto, InvoiceLineDto, 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, OrderAdapter, OrderDto, OrderLineDto, OrderPaymentProviderDto, OrderProductDto, PaymentAdapter, PaymentMethodDto, PaymentProviderDto, PictureDto, ProductAdapter, ProductDto, PublicOrderService, PublicPayAdapter, PublicPaymentMethodDto, PublicShopAdapter, PublicShopCartProductDto, PublicShopDesignDto, PublicShopDto, PublicShopElementButtonDto, PublicShopElementDividerDto, PublicShopElementDto, PublicShopElementHeadingDto, PublicShopElementInformationDto, PublicShopElementNoticeDto, PublicShopElementProductDto, PublicShopElementTextDto, PublicShopEventDto, PublicShopMerchantDto, PublicShopProductDto, PublicShopReservationDto, PublicShopReservationProductDetailsDto, PublicShopReservationProductDto, PublicShopService, PublicShopTimeSlotDto, RefundAdapter, RefundDto, RefundInitiatorDto, RefundTicketRefDto, RefundabilityDto, RenderedMailDto, ReservationAdapter, ReservationDto, ReservationItemDto, ReservationProductDto, ReservationService, ServiceAdapter, ServiceInfoDto, ServicesService, ShopDesignDto, ShopDto, ShopElementButtonDto, ShopElementDividerDto, ShopElementDto, ShopElementHeadingDto, ShopElementInformationDto, ShopElementNoticeDto, ShopElementProductDto, ShopElementTextDto, ShortlinkAdapter, ShortlinkDto, StatisticsAdapter, StatisticsBuyersAcquisitionSourceDto, StatisticsBuyersAdapter, StatisticsBuyersAgeGenderMatrixDto, StatisticsBuyersCohortRetentionDto, StatisticsBuyersDeviceConversionDto, StatisticsBuyersGeographicDistributionDto, StatisticsBuyersOverviewDto, StatisticsBuyersRankedDto, StatisticsBuyersSpendBucketsDto, StatisticsChartAdapter, StatisticsChartDto, StatisticsEventsAdapter, StatisticsEventsOverviewDto, StatisticsEventsSalesCurveDto, StatisticsEventsSalesCurveEventDto, StatisticsEventsSellOutTimingDto, StatisticsEventsSellOutTimingEventDto, StatisticsEventsTimeToEventDto, StatisticsGrowthAdapter, StatisticsGrowthCmgrDto, StatisticsGrowthOverviewDto, StatisticsInsightsAdapter, StatisticsMarketingAdapter, StatisticsMarketingCampaignDto, StatisticsMarketingOverviewDto, StatisticsMarketingReferrerDto, StatisticsMarketingShortlinkRoiDto, StatisticsMarketingSourceBreakdownDto, StatisticsMarketingSourceFunnelDto, StatisticsMarketingSourceMediumMatrixDto, StatisticsOperationsAdapter, StatisticsOperationsAppTeamDto, StatisticsOperationsNoShowRateDto, StatisticsOperationsNoShowRateEventDto, StatisticsOperationsOverviewDto, StatisticsOperationsScanTimeDistributionDto, StatisticsOperationsStewardDto, StatisticsOperationsStockUtilizationDto, StatisticsOverviewAdapter, StatisticsOverviewBestRevenueMonthDto, StatisticsOverviewCancellationFunnelDto, StatisticsOverviewEventPerformanceDto, StatisticsOverviewEventPerformanceEventDto, StatisticsOverviewEventPerformanceSummaryDto, StatisticsOverviewKPIsDto, StatisticsOverviewKPIsTotalEventsHostedDto, StatisticsOverviewKPIsTotalRevenueDto, StatisticsOverviewKPIsTotalTicketsSoldDto, StatisticsOverviewReservationConversionRateDto, StatisticsOverviewTopShopDto, StatisticsPieChartDto, StatisticsRefundsAdapter, StatisticsRefundsAmountDistributionDto, StatisticsRefundsOverviewDto, StatisticsRefundsTopEventDto, StatisticsRefundsVelocityDto, StatisticsSalesAdapter, StatisticsSalesDiscountEfficacyDto, StatisticsSalesFailedTransactionReasonDto, StatisticsSalesLifetimeTotalsDto, StatisticsSalesOrderValueDistributionDto, StatisticsSalesPurchaseBehaviorDto, StatisticsSalesRepeatPurchaseVelocityDto, StatisticsSalesTransactionSuccessRateDto, StatisticsTrendDto, StatusResponseDto, StockOverviewDto, StockOverviewItemDto, StockPoolDto, SubscriptionAdapter, SubscriptionPlanDto, TicketAdapter, TicketDto, TicketTemplateDto, TimeSlotDto, TotpStateDto, TransactionDto, UiSelectOptionsService, UserDto, UserTokenDto, VatNumberDto, emptyNull_default as emptyNull, jsonBlob_default as jsonBlob, optional_default as optional, optionalArray_default as optionalArray, parseEmailTemplate, serializeBlocks };
|
|
10545
|
+
export { AddressAdapter, AddressDto, AdminMerchantService, AdminMerchantSubscriptionService, AdminMerchantsService, AdminService, AiChatAdapter, AiChatConversationDto, AiChatMessageDto, AiChatToolCallDto, AiUsageAdapter, AiUsageDto, AiUsageFeatureStatusDto, AiUsagePeriodDto, AppTeamDto, AuthAdapter, AuthService, BuyerAdapter, BuyerDto, CashFlowAdapter, CashFlowDiscountDto, CashFlowDto, CashFlowPaymentDto, CashFlowPlatformCostDto, CashFlowRefundDto, CashFlowTimelineEventDto, CommonAdapter, ContentCalendarAdapter, ContentCalendarItemCreatorDto, ContentCalendarItemDto, ContractDto, CostDto, DateTimeAdapter, DiscountCodeAdapter, DiscountCodeDto, EMAIL_TEMPLATE_EDITOR_CONTEXTS, EmailTemplateAdapter, EmailTemplateDto, EventAdapter, EventAvailabilityDto, EventCountersDto, EventDto, EventStatisticsAppTeamDto, EventStatisticsAttendanceDto, EventStatisticsBuyersAdapter, EventStatisticsBuyersOverviewDto, EventStatisticsFinancialDto, EventStatisticsKpisDto, EventStatisticsOperationsAdapter, EventStatisticsOperationsOverviewDto, EventStatisticsOverviewAdapter, EventStatisticsStatusDto, EventStatisticsSwapsDto, FileSystemAdapter, FinanceAdapter, FinanceOverviewDto, FluxAdapter, InsightDto, InsightSignalDto, InsightsResponseDto, InvitationDto, InvitationService, InvoiceDto, InvoiceLineDto, 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, OrderAdapter, OrderDto, OrderLineDto, OrderPaymentProviderDto, OrderProductDto, PaymentAdapter, PaymentMethodDto, PaymentProviderDto, PictureDto, ProductAdapter, ProductDto, PublicOrderService, PublicPayAdapter, PublicPaymentMethodDto, PublicShopAdapter, PublicShopCartProductDto, PublicShopDesignDto, PublicShopDto, PublicShopElementButtonDto, PublicShopElementDividerDto, PublicShopElementDto, PublicShopElementHeadingDto, PublicShopElementInformationDto, PublicShopElementNoticeDto, PublicShopElementProductDto, PublicShopElementTextDto, PublicShopEventDto, PublicShopMerchantDto, PublicShopProductDto, PublicShopReservationDto, PublicShopReservationProductDetailsDto, PublicShopReservationProductDto, PublicShopService, PublicShopTimeSlotDto, RefundAdapter, RefundDto, RefundInitiatorDto, RefundTicketRefDto, RefundabilityDto, RenderedMailDto, ReservationAdapter, ReservationDto, ReservationItemDto, ReservationProductDto, ReservationService, ServiceAdapter, ServiceInfoDto, ServicesService, ShopDesignDto, ShopDto, ShopElementButtonDto, ShopElementDividerDto, ShopElementDto, ShopElementHeadingDto, ShopElementInformationDto, ShopElementNoticeDto, ShopElementProductDto, ShopElementTextDto, ShortlinkAdapter, ShortlinkDto, StatisticsAdapter, StatisticsBuyersAcquisitionSourceDto, StatisticsBuyersAdapter, StatisticsBuyersAgeGenderMatrixDto, StatisticsBuyersCohortRetentionDto, StatisticsBuyersDeviceConversionDto, StatisticsBuyersGeographicDistributionDto, StatisticsBuyersOverviewDto, StatisticsBuyersRankedDto, StatisticsBuyersSpendBucketsDto, StatisticsChartAdapter, StatisticsChartDto, StatisticsEventsAdapter, StatisticsEventsOverviewDto, StatisticsEventsSalesCurveDto, StatisticsEventsSalesCurveEventDto, StatisticsEventsSellOutTimingDto, StatisticsEventsSellOutTimingEventDto, StatisticsEventsTimeToEventDto, StatisticsGrowthAdapter, StatisticsGrowthCmgrDto, StatisticsGrowthOverviewDto, StatisticsInsightsAdapter, StatisticsMarketingAdapter, StatisticsMarketingCampaignDto, StatisticsMarketingOverviewDto, StatisticsMarketingReferrerDto, StatisticsMarketingShortlinkRoiDto, StatisticsMarketingSourceBreakdownDto, StatisticsMarketingSourceFunnelDto, StatisticsMarketingSourceMediumMatrixDto, StatisticsOperationsAdapter, StatisticsOperationsAppTeamDto, StatisticsOperationsNoShowRateDto, StatisticsOperationsNoShowRateEventDto, StatisticsOperationsOverviewDto, StatisticsOperationsScanTimeDistributionDto, StatisticsOperationsStewardDto, StatisticsOperationsStockUtilizationDto, StatisticsOverviewAdapter, StatisticsOverviewBestRevenueMonthDto, StatisticsOverviewCancellationFunnelDto, StatisticsOverviewEventPerformanceDto, StatisticsOverviewEventPerformanceEventDto, StatisticsOverviewEventPerformanceSummaryDto, StatisticsOverviewKPIsDto, StatisticsOverviewKPIsTotalEventsHostedDto, StatisticsOverviewKPIsTotalRevenueDto, StatisticsOverviewKPIsTotalTicketsSoldDto, StatisticsOverviewReservationConversionRateDto, StatisticsOverviewTopShopDto, StatisticsPieChartDto, StatisticsRefundsAdapter, StatisticsRefundsAmountDistributionDto, StatisticsRefundsOverviewDto, StatisticsRefundsTopEventDto, StatisticsRefundsVelocityDto, StatisticsSalesAdapter, StatisticsSalesDiscountEfficacyDto, StatisticsSalesFailedTransactionReasonDto, StatisticsSalesLifetimeTotalsDto, StatisticsSalesOrderValueDistributionDto, StatisticsSalesPurchaseBehaviorDto, StatisticsSalesRepeatPurchaseVelocityDto, StatisticsSalesTransactionSuccessRateDto, StatisticsTrendDto, StatusResponseDto, StockOverviewDto, StockOverviewItemDto, StockPoolDto, SubscriptionAdapter, SubscriptionPlanDto, TicketAdapter, TicketDto, TicketTemplateDto, TimeSlotDto, TotpStateDto, TransactionDto, UiSelectOptionsService, UserDto, UserTokenDto, VatNumberDto, buildListQuery_default as buildListQuery, emptyNull_default as emptyNull, jsonBlob_default as jsonBlob, optional_default as optional, optionalArray_default as optionalArray, parseEmailTemplate, serializeBlocks };
|
|
10525
10546
|
//# sourceMappingURL=index.mjs.map
|