@passly-nl/data 1.2.2 → 1.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +664 -69
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +1982 -343
- package/dist/index.mjs.map +1 -1
- package/package.json +6 -8
- package/src/adapter/StatisticsBuyersAdapter.ts +50 -1
- package/src/adapter/StatisticsChartAdapter.ts +56 -0
- package/src/adapter/StatisticsEventsAdapter.ts +41 -2
- package/src/adapter/StatisticsGrowthAdapter.ts +9 -1
- package/src/adapter/StatisticsMarketingAdapter.ts +78 -0
- package/src/adapter/StatisticsOperationsAdapter.ts +45 -12
- package/src/adapter/StatisticsOverviewAdapter.ts +33 -2
- package/src/adapter/StatisticsRefundsAdapter.ts +43 -0
- package/src/adapter/StatisticsSalesAdapter.ts +36 -1
- package/src/adapter/index.ts +3 -1
- package/src/dto/eventStatistics/index.ts +0 -1
- package/src/dto/statistics/StatisticsBuyersAcquisitionSourceDto.ts +28 -0
- package/src/dto/statistics/StatisticsBuyersAgeGenderMatrixDto.ts +38 -0
- package/src/dto/statistics/StatisticsBuyersCohortRetentionDto.ts +48 -0
- package/src/dto/statistics/StatisticsBuyersDeviceConversionDto.ts +48 -0
- package/src/dto/statistics/StatisticsBuyersGeographicDistributionDto.ts +49 -0
- package/src/dto/statistics/StatisticsBuyersSpendBucketsDto.ts +36 -0
- package/src/dto/statistics/StatisticsChartDto.ts +43 -0
- package/src/dto/statistics/StatisticsEventsSalesCurveDto.ts +19 -0
- package/src/dto/statistics/StatisticsEventsSalesCurveEventDto.ts +59 -0
- package/src/dto/statistics/StatisticsEventsSellOutTimingDto.ts +39 -0
- package/src/dto/statistics/StatisticsEventsSellOutTimingEventDto.ts +38 -0
- package/src/dto/statistics/StatisticsEventsTimeToEventDto.ts +36 -0
- package/src/dto/statistics/StatisticsGrowthCmgrDto.ts +38 -0
- package/src/dto/statistics/StatisticsMarketingCampaignDto.ts +69 -0
- package/src/dto/statistics/StatisticsMarketingOverviewDto.ts +79 -0
- package/src/dto/statistics/StatisticsMarketingReferrerDto.ts +39 -0
- package/src/dto/statistics/StatisticsMarketingShortlinkRoiDto.ts +109 -0
- package/src/dto/statistics/StatisticsMarketingSourceBreakdownDto.ts +49 -0
- package/src/dto/statistics/StatisticsMarketingSourceFunnelDto.ts +48 -0
- package/src/dto/statistics/StatisticsMarketingSourceMediumMatrixDto.ts +39 -0
- package/src/dto/statistics/StatisticsOperationsNoShowRateDto.ts +59 -0
- package/src/dto/statistics/StatisticsOperationsNoShowRateEventDto.ts +58 -0
- package/src/dto/statistics/StatisticsOperationsScanTimeDistributionDto.ts +36 -0
- package/src/dto/statistics/{StatisticsOperationsTaskAssigneeDto.ts → StatisticsOperationsStewardDto.ts} +28 -8
- package/src/dto/statistics/StatisticsOperationsStockUtilizationDto.ts +100 -0
- package/src/dto/statistics/StatisticsOverviewCancellationFunnelDto.ts +58 -0
- package/src/dto/statistics/StatisticsOverviewReservationConversionRateDto.ts +78 -0
- package/src/dto/statistics/StatisticsOverviewTopShopDto.ts +49 -0
- package/src/dto/statistics/StatisticsPieChartDto.ts +29 -0
- package/src/dto/statistics/StatisticsRefundsAmountDistributionDto.ts +38 -0
- package/src/dto/statistics/StatisticsRefundsOverviewDto.ts +59 -0
- package/src/dto/statistics/StatisticsRefundsTopEventDto.ts +70 -0
- package/src/dto/statistics/StatisticsRefundsVelocityDto.ts +45 -0
- package/src/dto/statistics/StatisticsSalesDiscountEfficacyDto.ts +99 -0
- package/src/dto/statistics/StatisticsSalesFailedTransactionReasonDto.ts +29 -0
- package/src/dto/statistics/StatisticsSalesOrderValueDistributionDto.ts +38 -0
- package/src/dto/statistics/StatisticsSalesRepeatPurchaseVelocityDto.ts +35 -0
- package/src/dto/statistics/index.ts +37 -2
- package/src/service/MerchantEventStatisticsBuyersService.ts +4 -5
- package/src/service/MerchantEventStatisticsOperationsService.ts +4 -5
- package/src/service/MerchantEventStatisticsSalesService.ts +10 -11
- package/src/service/MerchantStatisticsBuyersService.ts +64 -5
- package/src/service/MerchantStatisticsEventsService.ts +48 -9
- package/src/service/MerchantStatisticsGrowthService.ts +25 -5
- package/src/service/MerchantStatisticsMarketingService.ts +96 -0
- package/src/service/MerchantStatisticsOperationsService.ts +39 -10
- package/src/service/MerchantStatisticsOverviewService.ts +34 -5
- package/src/service/MerchantStatisticsRefundsService.ts +76 -0
- package/src/service/MerchantStatisticsSalesService.ts +78 -9
- package/src/service/MerchantStatisticsService.ts +0 -11
- package/src/service/index.ts +2 -0
- package/src/types/index.ts +1 -0
- package/src/types/statistics.ts +32 -0
- package/src/adapter/EventStatisticsSalesAdapter.ts +0 -21
- package/src/dto/eventStatistics/EventStatisticsSalesFlowChartDto.ts +0 -66
- package/src/dto/statistics/StatisticsOperationsTasksOverviewDto.ts +0 -69
package/dist/index.d.mts
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { BaseResponse, BaseService, BlobResponse, ForeignData, Paginated } from "@basmilius/http-client";
|
|
2
2
|
import { DateTime } from "luxon";
|
|
3
3
|
import { FluxFormSelectEntry, FluxFormSelectGroup, FluxFormSelectOption, FluxIconName } from "@flux-ui/types";
|
|
4
|
-
import { ApexOptions } from "apexcharts";
|
|
5
4
|
|
|
6
5
|
//#region src/dto/address/AddressDto.d.ts
|
|
7
6
|
declare class AddressDto {
|
|
@@ -225,6 +224,28 @@ type PublicShopElementType = "button" | "divider" | "heading" | "information" |
|
|
|
225
224
|
type RefundReason = "fraud" | "duplicate" | "customer_request" | "event_canceled" | "other";
|
|
226
225
|
type RefundStatus = "pending" | "processing" | "completed" | "failed";
|
|
227
226
|
//#endregion
|
|
227
|
+
//#region src/types/statistics.d.ts
|
|
228
|
+
type StatisticsChartValueType = "count" | "integer" | "currency" | "percentage" | "duration";
|
|
229
|
+
type StatisticsChartSeriesKind = "line" | "area" | "bar";
|
|
230
|
+
type StatisticsChartDataPoint = {
|
|
231
|
+
readonly value: number;
|
|
232
|
+
readonly formatted?: string;
|
|
233
|
+
};
|
|
234
|
+
interface StatisticsChartSeries {
|
|
235
|
+
readonly name: string | null;
|
|
236
|
+
readonly valueType: StatisticsChartValueType;
|
|
237
|
+
readonly data: readonly (number | null | StatisticsChartDataPoint)[];
|
|
238
|
+
readonly type: StatisticsChartSeriesKind | null;
|
|
239
|
+
readonly axisIndex: number | null;
|
|
240
|
+
readonly zIndex: number | null;
|
|
241
|
+
readonly currency: string | null;
|
|
242
|
+
}
|
|
243
|
+
interface StatisticsPieSlice {
|
|
244
|
+
readonly label: string;
|
|
245
|
+
readonly value: number;
|
|
246
|
+
readonly formatted: string | null;
|
|
247
|
+
}
|
|
248
|
+
//#endregion
|
|
228
249
|
//#region src/types/subscription.d.ts
|
|
229
250
|
type SubscriptionType = "ai";
|
|
230
251
|
//#endregion
|
|
@@ -941,26 +962,6 @@ declare class EventStatisticsOperationsOverviewDto {
|
|
|
941
962
|
constructor(totalScans: number, checkins: number, checkouts: number, attendanceRate: number, appTeams: number);
|
|
942
963
|
}
|
|
943
964
|
//#endregion
|
|
944
|
-
//#region src/dto/eventStatistics/EventStatisticsSalesFlowChartDto.d.ts
|
|
945
|
-
declare class EventStatisticsSalesFlowChartSeriesDto {
|
|
946
|
-
#private;
|
|
947
|
-
get name(): string;
|
|
948
|
-
set name(value: string);
|
|
949
|
-
get data(): number[];
|
|
950
|
-
set data(value: number[]);
|
|
951
|
-
get zIndex(): number;
|
|
952
|
-
set zIndex(value: number);
|
|
953
|
-
constructor(name: string, data: number[], zIndex: number);
|
|
954
|
-
}
|
|
955
|
-
declare class EventStatisticsSalesFlowChartDto {
|
|
956
|
-
#private;
|
|
957
|
-
get series(): EventStatisticsSalesFlowChartSeriesDto[];
|
|
958
|
-
set series(value: EventStatisticsSalesFlowChartSeriesDto[]);
|
|
959
|
-
get categories(): DateTime[];
|
|
960
|
-
set categories(value: DateTime[]);
|
|
961
|
-
constructor(series: EventStatisticsSalesFlowChartSeriesDto[], categories: DateTime[]);
|
|
962
|
-
}
|
|
963
|
-
//#endregion
|
|
964
965
|
//#region src/dto/eventStatistics/EventStatisticsStatusDto.d.ts
|
|
965
966
|
declare class EventStatisticsStatusDto {
|
|
966
967
|
#private;
|
|
@@ -1922,6 +1923,70 @@ declare class MilestoneDto {
|
|
|
1922
1923
|
constructor(id: string, type: MilestoneType, threshold: number | null, value: number | null, referenceClass: string | null, referenceId: string | null, achievedOn: DateTime);
|
|
1923
1924
|
}
|
|
1924
1925
|
//#endregion
|
|
1926
|
+
//#region src/dto/statistics/StatisticsBuyersAcquisitionSourceDto.d.ts
|
|
1927
|
+
declare class StatisticsBuyersAcquisitionSourceDto {
|
|
1928
|
+
#private;
|
|
1929
|
+
get source(): string;
|
|
1930
|
+
set source(value: string);
|
|
1931
|
+
get buyers(): number;
|
|
1932
|
+
set buyers(value: number);
|
|
1933
|
+
constructor(source: string, buyers: number);
|
|
1934
|
+
}
|
|
1935
|
+
//#endregion
|
|
1936
|
+
//#region src/dto/statistics/StatisticsBuyersAgeGenderMatrixDto.d.ts
|
|
1937
|
+
declare class StatisticsBuyersAgeGenderMatrixDto {
|
|
1938
|
+
#private;
|
|
1939
|
+
get ageGroups(): readonly string[];
|
|
1940
|
+
set ageGroups(value: readonly string[]);
|
|
1941
|
+
get genders(): readonly string[];
|
|
1942
|
+
set genders(value: readonly string[]);
|
|
1943
|
+
get cells(): readonly (readonly number[])[];
|
|
1944
|
+
set cells(value: readonly (readonly number[])[]);
|
|
1945
|
+
constructor(ageGroups: readonly string[], genders: readonly string[], cells: readonly (readonly number[])[]);
|
|
1946
|
+
}
|
|
1947
|
+
//#endregion
|
|
1948
|
+
//#region src/dto/statistics/StatisticsBuyersCohortRetentionDto.d.ts
|
|
1949
|
+
declare class StatisticsBuyersCohortRetentionDto {
|
|
1950
|
+
#private;
|
|
1951
|
+
get cohorts(): readonly string[];
|
|
1952
|
+
set cohorts(value: readonly string[]);
|
|
1953
|
+
get buckets(): readonly string[];
|
|
1954
|
+
set buckets(value: readonly string[]);
|
|
1955
|
+
get cohortSizes(): readonly number[];
|
|
1956
|
+
set cohortSizes(value: readonly number[]);
|
|
1957
|
+
get cells(): readonly (readonly (number | null)[])[];
|
|
1958
|
+
set cells(value: readonly (readonly (number | null)[])[]);
|
|
1959
|
+
constructor(cohorts: readonly string[], buckets: readonly string[], cohortSizes: readonly number[], cells: readonly (readonly (number | null)[])[]);
|
|
1960
|
+
}
|
|
1961
|
+
//#endregion
|
|
1962
|
+
//#region src/dto/statistics/StatisticsBuyersDeviceConversionDto.d.ts
|
|
1963
|
+
declare class StatisticsBuyersDeviceConversionDto {
|
|
1964
|
+
#private;
|
|
1965
|
+
get operatingSystem(): string;
|
|
1966
|
+
set operatingSystem(value: string);
|
|
1967
|
+
get visits(): number;
|
|
1968
|
+
set visits(value: number);
|
|
1969
|
+
get orders(): number;
|
|
1970
|
+
set orders(value: number);
|
|
1971
|
+
get conversionRate(): number;
|
|
1972
|
+
set conversionRate(value: number);
|
|
1973
|
+
constructor(operatingSystem: string, visits: number, orders: number, conversionRate: number);
|
|
1974
|
+
}
|
|
1975
|
+
//#endregion
|
|
1976
|
+
//#region src/dto/statistics/StatisticsBuyersGeographicDistributionDto.d.ts
|
|
1977
|
+
declare class StatisticsBuyersGeographicDistributionDto {
|
|
1978
|
+
#private;
|
|
1979
|
+
get country(): string;
|
|
1980
|
+
set country(value: string);
|
|
1981
|
+
get buyers(): number;
|
|
1982
|
+
set buyers(value: number);
|
|
1983
|
+
get orders(): number;
|
|
1984
|
+
set orders(value: number);
|
|
1985
|
+
get revenue(): CostDto;
|
|
1986
|
+
set revenue(value: CostDto);
|
|
1987
|
+
constructor(country: string, buyers: number, orders: number, revenue: CostDto);
|
|
1988
|
+
}
|
|
1989
|
+
//#endregion
|
|
1925
1990
|
//#region src/dto/statistics/StatisticsBuyersOverviewDto.d.ts
|
|
1926
1991
|
declare class StatisticsBuyersOverviewDto {
|
|
1927
1992
|
#private;
|
|
@@ -1958,6 +2023,29 @@ declare class StatisticsBuyersRankedDto {
|
|
|
1958
2023
|
constructor(ranking: number, buyer: BuyerDto, orderCount: number, totalSpend: CostDto, eventsAttended: number, averageOrderValue: CostDto);
|
|
1959
2024
|
}
|
|
1960
2025
|
//#endregion
|
|
2026
|
+
//#region src/dto/statistics/StatisticsBuyersSpendBucketsDto.d.ts
|
|
2027
|
+
type StatisticsBuyersSpendBucket = "no_purchase" | "under_50" | "50_250" | "250_1000" | "1000_5000" | "whales";
|
|
2028
|
+
declare class StatisticsBuyersSpendBucketsDto {
|
|
2029
|
+
#private;
|
|
2030
|
+
get buckets(): Record<StatisticsBuyersSpendBucket, number>;
|
|
2031
|
+
set buckets(value: Record<StatisticsBuyersSpendBucket, number>);
|
|
2032
|
+
get totalBuyers(): number;
|
|
2033
|
+
set totalBuyers(value: number);
|
|
2034
|
+
constructor(buckets: Record<StatisticsBuyersSpendBucket, number>, totalBuyers: number);
|
|
2035
|
+
}
|
|
2036
|
+
//#endregion
|
|
2037
|
+
//#region src/dto/statistics/StatisticsChartDto.d.ts
|
|
2038
|
+
declare class StatisticsChartDto {
|
|
2039
|
+
#private;
|
|
2040
|
+
get series(): readonly StatisticsChartSeries[];
|
|
2041
|
+
set series(value: readonly StatisticsChartSeries[]);
|
|
2042
|
+
get labels(): readonly string[];
|
|
2043
|
+
set labels(value: readonly string[]);
|
|
2044
|
+
get granularity(): Granularity | null;
|
|
2045
|
+
set granularity(value: Granularity | null);
|
|
2046
|
+
constructor(series: readonly StatisticsChartSeries[], labels: readonly string[], granularity: Granularity | null);
|
|
2047
|
+
}
|
|
2048
|
+
//#endregion
|
|
1961
2049
|
//#region src/dto/statistics/StatisticsEventsOverviewDto.d.ts
|
|
1962
2050
|
declare class StatisticsEventsOverviewDto {
|
|
1963
2051
|
#private;
|
|
@@ -1974,6 +2062,77 @@ declare class StatisticsEventsOverviewDto {
|
|
|
1974
2062
|
constructor(totalEvents: number, activeEvents: number, averageRevenuePerEvent: CostDto, averageTicketsPerEvent: number, averageSellThroughRate: number);
|
|
1975
2063
|
}
|
|
1976
2064
|
//#endregion
|
|
2065
|
+
//#region src/dto/statistics/StatisticsEventsSalesCurveDto.d.ts
|
|
2066
|
+
declare class StatisticsEventsSalesCurveDto {
|
|
2067
|
+
#private;
|
|
2068
|
+
get events(): readonly StatisticsEventsSalesCurveEventDto[];
|
|
2069
|
+
set events(value: readonly StatisticsEventsSalesCurveEventDto[]);
|
|
2070
|
+
constructor(events: readonly StatisticsEventsSalesCurveEventDto[]);
|
|
2071
|
+
}
|
|
2072
|
+
//#endregion
|
|
2073
|
+
//#region src/dto/statistics/StatisticsEventsSalesCurveEventDto.d.ts
|
|
2074
|
+
declare class StatisticsEventsSalesCurveEventDto {
|
|
2075
|
+
#private;
|
|
2076
|
+
get id(): string;
|
|
2077
|
+
set id(value: string);
|
|
2078
|
+
get name(): string;
|
|
2079
|
+
set name(value: string);
|
|
2080
|
+
get startsOn(): DateTime;
|
|
2081
|
+
set startsOn(value: DateTime);
|
|
2082
|
+
get daysBeforeStart(): readonly number[];
|
|
2083
|
+
set daysBeforeStart(value: readonly number[]);
|
|
2084
|
+
get cumulativeTickets(): readonly number[];
|
|
2085
|
+
set cumulativeTickets(value: readonly number[]);
|
|
2086
|
+
constructor(id: string, name: string, startsOn: DateTime, daysBeforeStart: readonly number[], cumulativeTickets: readonly number[]);
|
|
2087
|
+
}
|
|
2088
|
+
//#endregion
|
|
2089
|
+
//#region src/dto/statistics/StatisticsEventsSellOutTimingDto.d.ts
|
|
2090
|
+
declare class StatisticsEventsSellOutTimingDto {
|
|
2091
|
+
#private;
|
|
2092
|
+
get eventsSoldOut(): number;
|
|
2093
|
+
set eventsSoldOut(value: number);
|
|
2094
|
+
get averageDaysToSellOut(): number;
|
|
2095
|
+
set averageDaysToSellOut(value: number);
|
|
2096
|
+
get events(): readonly StatisticsEventsSellOutTimingEventDto[];
|
|
2097
|
+
set events(value: readonly StatisticsEventsSellOutTimingEventDto[]);
|
|
2098
|
+
constructor(eventsSoldOut: number, averageDaysToSellOut: number, events: readonly StatisticsEventsSellOutTimingEventDto[]);
|
|
2099
|
+
}
|
|
2100
|
+
//#endregion
|
|
2101
|
+
//#region src/dto/statistics/StatisticsEventsSellOutTimingEventDto.d.ts
|
|
2102
|
+
declare class StatisticsEventsSellOutTimingEventDto {
|
|
2103
|
+
#private;
|
|
2104
|
+
get id(): string;
|
|
2105
|
+
set id(value: string);
|
|
2106
|
+
get name(): string;
|
|
2107
|
+
set name(value: string);
|
|
2108
|
+
get daysToSellOut(): number;
|
|
2109
|
+
set daysToSellOut(value: number);
|
|
2110
|
+
constructor(id: string, name: string, daysToSellOut: number);
|
|
2111
|
+
}
|
|
2112
|
+
//#endregion
|
|
2113
|
+
//#region src/dto/statistics/StatisticsEventsTimeToEventDto.d.ts
|
|
2114
|
+
type StatisticsEventsTimeToEventBucket = "same_day" | "within_1_week" | "within_1_month" | "within_3_months" | "within_6_months" | "over_6_months";
|
|
2115
|
+
declare class StatisticsEventsTimeToEventDto {
|
|
2116
|
+
#private;
|
|
2117
|
+
get buckets(): Record<StatisticsEventsTimeToEventBucket, number>;
|
|
2118
|
+
set buckets(value: Record<StatisticsEventsTimeToEventBucket, number>);
|
|
2119
|
+
get averageDays(): number;
|
|
2120
|
+
set averageDays(value: number);
|
|
2121
|
+
constructor(buckets: Record<StatisticsEventsTimeToEventBucket, number>, averageDays: number);
|
|
2122
|
+
}
|
|
2123
|
+
//#endregion
|
|
2124
|
+
//#region src/dto/statistics/StatisticsGrowthCmgrDto.d.ts
|
|
2125
|
+
declare class StatisticsGrowthCmgrDto {
|
|
2126
|
+
#private;
|
|
2127
|
+
get revenueCmgr(): number;
|
|
2128
|
+
set revenueCmgr(value: number);
|
|
2129
|
+
get ticketsCmgr(): number;
|
|
2130
|
+
set ticketsCmgr(value: number);
|
|
2131
|
+
get monthsObserved(): number;
|
|
2132
|
+
set monthsObserved(value: number);
|
|
2133
|
+
constructor(revenueCmgr: number, ticketsCmgr: number, monthsObserved: number);
|
|
2134
|
+
}
|
|
2135
|
+
//#endregion
|
|
1977
2136
|
//#region src/dto/statistics/StatisticsGrowthOverviewDto.d.ts
|
|
1978
2137
|
declare class StatisticsGrowthOverviewDto {
|
|
1979
2138
|
#private;
|
|
@@ -1990,6 +2149,122 @@ declare class StatisticsGrowthOverviewDto {
|
|
|
1990
2149
|
constructor(revenue: StatisticsTrendDto<CostDto>, tickets: StatisticsTrendDto<number>, buyers: StatisticsTrendDto<number>, events: StatisticsTrendDto<number>, averageEventSize: StatisticsTrendDto<number>);
|
|
1991
2150
|
}
|
|
1992
2151
|
//#endregion
|
|
2152
|
+
//#region src/dto/statistics/StatisticsMarketingCampaignDto.d.ts
|
|
2153
|
+
declare class StatisticsMarketingCampaignDto {
|
|
2154
|
+
#private;
|
|
2155
|
+
get campaign(): string;
|
|
2156
|
+
set campaign(value: string);
|
|
2157
|
+
get source(): string;
|
|
2158
|
+
set source(value: string);
|
|
2159
|
+
get medium(): string;
|
|
2160
|
+
set medium(value: string);
|
|
2161
|
+
get orders(): number;
|
|
2162
|
+
set orders(value: number);
|
|
2163
|
+
get tickets(): number;
|
|
2164
|
+
set tickets(value: number);
|
|
2165
|
+
get revenue(): CostDto;
|
|
2166
|
+
set revenue(value: CostDto);
|
|
2167
|
+
constructor(campaign: string, source: string, medium: string, orders: number, tickets: number, revenue: CostDto);
|
|
2168
|
+
}
|
|
2169
|
+
//#endregion
|
|
2170
|
+
//#region src/dto/statistics/StatisticsMarketingOverviewDto.d.ts
|
|
2171
|
+
declare class StatisticsMarketingOverviewDto {
|
|
2172
|
+
#private;
|
|
2173
|
+
get attributedOrders(): number;
|
|
2174
|
+
set attributedOrders(value: number);
|
|
2175
|
+
get directOrders(): number;
|
|
2176
|
+
set directOrders(value: number);
|
|
2177
|
+
get attributionRate(): number;
|
|
2178
|
+
set attributionRate(value: number);
|
|
2179
|
+
get attributedRevenue(): CostDto;
|
|
2180
|
+
set attributedRevenue(value: CostDto);
|
|
2181
|
+
get directRevenue(): CostDto;
|
|
2182
|
+
set directRevenue(value: CostDto);
|
|
2183
|
+
get paidAdOrders(): number;
|
|
2184
|
+
set paidAdOrders(value: number);
|
|
2185
|
+
get paidAdRevenue(): CostDto;
|
|
2186
|
+
set paidAdRevenue(value: CostDto);
|
|
2187
|
+
constructor(attributedOrders: number, directOrders: number, attributionRate: number, attributedRevenue: CostDto, directRevenue: CostDto, paidAdOrders: number, paidAdRevenue: CostDto);
|
|
2188
|
+
}
|
|
2189
|
+
//#endregion
|
|
2190
|
+
//#region src/dto/statistics/StatisticsMarketingReferrerDto.d.ts
|
|
2191
|
+
declare class StatisticsMarketingReferrerDto {
|
|
2192
|
+
#private;
|
|
2193
|
+
get host(): string;
|
|
2194
|
+
set host(value: string);
|
|
2195
|
+
get orders(): number;
|
|
2196
|
+
set orders(value: number);
|
|
2197
|
+
get revenue(): CostDto;
|
|
2198
|
+
set revenue(value: CostDto);
|
|
2199
|
+
constructor(host: string, orders: number, revenue: CostDto);
|
|
2200
|
+
}
|
|
2201
|
+
//#endregion
|
|
2202
|
+
//#region src/dto/statistics/StatisticsMarketingShortlinkRoiDto.d.ts
|
|
2203
|
+
declare class StatisticsMarketingShortlinkRoiDto {
|
|
2204
|
+
#private;
|
|
2205
|
+
get identifier(): string;
|
|
2206
|
+
set identifier(value: string);
|
|
2207
|
+
get hits(): number;
|
|
2208
|
+
set hits(value: number);
|
|
2209
|
+
get orders(): number;
|
|
2210
|
+
set orders(value: number);
|
|
2211
|
+
get revenue(): CostDto;
|
|
2212
|
+
set revenue(value: CostDto);
|
|
2213
|
+
get conversionRate(): number;
|
|
2214
|
+
set conversionRate(value: number);
|
|
2215
|
+
get shopId(): string | null;
|
|
2216
|
+
set shopId(value: string | null);
|
|
2217
|
+
get shopName(): string | null;
|
|
2218
|
+
set shopName(value: string | null);
|
|
2219
|
+
get eventId(): string | null;
|
|
2220
|
+
set eventId(value: string | null);
|
|
2221
|
+
get eventName(): string | null;
|
|
2222
|
+
set eventName(value: string | null);
|
|
2223
|
+
get targetUrl(): string | null;
|
|
2224
|
+
set targetUrl(value: string | null);
|
|
2225
|
+
constructor(identifier: string, hits: number, orders: number, revenue: CostDto, conversionRate: number, shopId: string | null, shopName: string | null, eventId: string | null, eventName: string | null, targetUrl: string | null);
|
|
2226
|
+
}
|
|
2227
|
+
//#endregion
|
|
2228
|
+
//#region src/dto/statistics/StatisticsMarketingSourceBreakdownDto.d.ts
|
|
2229
|
+
declare class StatisticsMarketingSourceBreakdownDto {
|
|
2230
|
+
#private;
|
|
2231
|
+
get source(): string;
|
|
2232
|
+
set source(value: string);
|
|
2233
|
+
get orders(): number;
|
|
2234
|
+
set orders(value: number);
|
|
2235
|
+
get tickets(): number;
|
|
2236
|
+
set tickets(value: number);
|
|
2237
|
+
get revenue(): CostDto;
|
|
2238
|
+
set revenue(value: CostDto);
|
|
2239
|
+
constructor(source: string, orders: number, tickets: number, revenue: CostDto);
|
|
2240
|
+
}
|
|
2241
|
+
//#endregion
|
|
2242
|
+
//#region src/dto/statistics/StatisticsMarketingSourceFunnelDto.d.ts
|
|
2243
|
+
declare class StatisticsMarketingSourceFunnelDto {
|
|
2244
|
+
#private;
|
|
2245
|
+
get source(): string;
|
|
2246
|
+
set source(value: string);
|
|
2247
|
+
get reservations(): number;
|
|
2248
|
+
set reservations(value: number);
|
|
2249
|
+
get orders(): number;
|
|
2250
|
+
set orders(value: number);
|
|
2251
|
+
get conversionRate(): number;
|
|
2252
|
+
set conversionRate(value: number);
|
|
2253
|
+
constructor(source: string, reservations: number, orders: number, conversionRate: number);
|
|
2254
|
+
}
|
|
2255
|
+
//#endregion
|
|
2256
|
+
//#region src/dto/statistics/StatisticsMarketingSourceMediumMatrixDto.d.ts
|
|
2257
|
+
declare class StatisticsMarketingSourceMediumMatrixDto {
|
|
2258
|
+
#private;
|
|
2259
|
+
get sources(): readonly string[];
|
|
2260
|
+
set sources(value: readonly string[]);
|
|
2261
|
+
get mediums(): readonly string[];
|
|
2262
|
+
set mediums(value: readonly string[]);
|
|
2263
|
+
get cells(): readonly (readonly CostDto[])[];
|
|
2264
|
+
set cells(value: readonly (readonly CostDto[])[]);
|
|
2265
|
+
constructor(sources: readonly string[], mediums: readonly string[], cells: readonly (readonly CostDto[])[]);
|
|
2266
|
+
}
|
|
2267
|
+
//#endregion
|
|
1993
2268
|
//#region src/dto/statistics/StatisticsOperationsAppTeamDto.d.ts
|
|
1994
2269
|
declare class StatisticsOperationsAppTeamDto {
|
|
1995
2270
|
#private;
|
|
@@ -2010,6 +2285,38 @@ declare class StatisticsOperationsAppTeamDto {
|
|
|
2010
2285
|
constructor(id: string, name: string, eventId: string, eventName: string, scans: number, checkins: number, checkouts: number);
|
|
2011
2286
|
}
|
|
2012
2287
|
//#endregion
|
|
2288
|
+
//#region src/dto/statistics/StatisticsOperationsNoShowRateDto.d.ts
|
|
2289
|
+
declare class StatisticsOperationsNoShowRateDto {
|
|
2290
|
+
#private;
|
|
2291
|
+
get validTickets(): number;
|
|
2292
|
+
set validTickets(value: number);
|
|
2293
|
+
get checkedIn(): number;
|
|
2294
|
+
set checkedIn(value: number);
|
|
2295
|
+
get noShows(): number;
|
|
2296
|
+
set noShows(value: number);
|
|
2297
|
+
get noShowRate(): number;
|
|
2298
|
+
set noShowRate(value: number);
|
|
2299
|
+
get events(): readonly StatisticsOperationsNoShowRateEventDto[];
|
|
2300
|
+
set events(value: readonly StatisticsOperationsNoShowRateEventDto[]);
|
|
2301
|
+
constructor(validTickets: number, checkedIn: number, noShows: number, noShowRate: number, events: readonly StatisticsOperationsNoShowRateEventDto[]);
|
|
2302
|
+
}
|
|
2303
|
+
//#endregion
|
|
2304
|
+
//#region src/dto/statistics/StatisticsOperationsNoShowRateEventDto.d.ts
|
|
2305
|
+
declare class StatisticsOperationsNoShowRateEventDto {
|
|
2306
|
+
#private;
|
|
2307
|
+
get id(): string;
|
|
2308
|
+
set id(value: string);
|
|
2309
|
+
get name(): string;
|
|
2310
|
+
set name(value: string);
|
|
2311
|
+
get noShowRate(): number;
|
|
2312
|
+
set noShowRate(value: number);
|
|
2313
|
+
get noShows(): number;
|
|
2314
|
+
set noShows(value: number);
|
|
2315
|
+
get ticketsSold(): number;
|
|
2316
|
+
set ticketsSold(value: number);
|
|
2317
|
+
constructor(id: string, name: string, noShowRate: number, noShows: number, ticketsSold: number);
|
|
2318
|
+
}
|
|
2319
|
+
//#endregion
|
|
2013
2320
|
//#region src/dto/statistics/StatisticsOperationsOverviewDto.d.ts
|
|
2014
2321
|
declare class StatisticsOperationsOverviewDto {
|
|
2015
2322
|
#private;
|
|
@@ -2026,8 +2333,19 @@ declare class StatisticsOperationsOverviewDto {
|
|
|
2026
2333
|
constructor(totalScans: number, checkins: number, checkouts: number, attendanceRate: number, liveEvents: number);
|
|
2027
2334
|
}
|
|
2028
2335
|
//#endregion
|
|
2029
|
-
//#region src/dto/statistics/
|
|
2030
|
-
|
|
2336
|
+
//#region src/dto/statistics/StatisticsOperationsScanTimeDistributionDto.d.ts
|
|
2337
|
+
type StatisticsOperationsScanTimeBucket = "over_2h_early" | "1h_to_2h_early" | "within_1h_early" | "within_1h_late" | "1h_to_2h_late" | "over_2h_late";
|
|
2338
|
+
declare class StatisticsOperationsScanTimeDistributionDto {
|
|
2339
|
+
#private;
|
|
2340
|
+
get buckets(): Record<StatisticsOperationsScanTimeBucket, number>;
|
|
2341
|
+
set buckets(value: Record<StatisticsOperationsScanTimeBucket, number>);
|
|
2342
|
+
get medianMinutesRelative(): number;
|
|
2343
|
+
set medianMinutesRelative(value: number);
|
|
2344
|
+
constructor(buckets: Record<StatisticsOperationsScanTimeBucket, number>, medianMinutesRelative: number);
|
|
2345
|
+
}
|
|
2346
|
+
//#endregion
|
|
2347
|
+
//#region src/dto/statistics/StatisticsOperationsStewardDto.d.ts
|
|
2348
|
+
declare class StatisticsOperationsStewardDto {
|
|
2031
2349
|
#private;
|
|
2032
2350
|
get id(): string;
|
|
2033
2351
|
set id(value: string);
|
|
@@ -2035,27 +2353,37 @@ declare class StatisticsOperationsTaskAssigneeDto {
|
|
|
2035
2353
|
set fullName(value: string);
|
|
2036
2354
|
get initials(): string;
|
|
2037
2355
|
set initials(value: string);
|
|
2038
|
-
get
|
|
2039
|
-
set
|
|
2040
|
-
|
|
2356
|
+
get scans(): number;
|
|
2357
|
+
set scans(value: number);
|
|
2358
|
+
get checkins(): number;
|
|
2359
|
+
set checkins(value: number);
|
|
2360
|
+
get checkouts(): number;
|
|
2361
|
+
set checkouts(value: number);
|
|
2362
|
+
constructor(id: string, fullName: string, initials: string, scans: number, checkins: number, checkouts: number);
|
|
2041
2363
|
}
|
|
2042
2364
|
//#endregion
|
|
2043
|
-
//#region src/dto/statistics/
|
|
2044
|
-
declare class
|
|
2365
|
+
//#region src/dto/statistics/StatisticsOperationsStockUtilizationDto.d.ts
|
|
2366
|
+
declare class StatisticsOperationsStockUtilizationDto {
|
|
2045
2367
|
#private;
|
|
2046
|
-
get
|
|
2047
|
-
set
|
|
2048
|
-
get
|
|
2049
|
-
set
|
|
2050
|
-
get
|
|
2051
|
-
set
|
|
2052
|
-
get
|
|
2053
|
-
set
|
|
2054
|
-
get
|
|
2055
|
-
set
|
|
2056
|
-
get
|
|
2057
|
-
set
|
|
2058
|
-
|
|
2368
|
+
get productId(): string;
|
|
2369
|
+
set productId(value: string);
|
|
2370
|
+
get productName(): string;
|
|
2371
|
+
set productName(value: string);
|
|
2372
|
+
get productPrice(): CostDto;
|
|
2373
|
+
set productPrice(value: CostDto);
|
|
2374
|
+
get eventId(): string;
|
|
2375
|
+
set eventId(value: string);
|
|
2376
|
+
get eventName(): string;
|
|
2377
|
+
set eventName(value: string);
|
|
2378
|
+
get eventStartsOn(): DateTime;
|
|
2379
|
+
set eventStartsOn(value: DateTime);
|
|
2380
|
+
get stock(): number;
|
|
2381
|
+
set stock(value: number);
|
|
2382
|
+
get sold(): number;
|
|
2383
|
+
set sold(value: number);
|
|
2384
|
+
get utilizationRate(): number;
|
|
2385
|
+
set utilizationRate(value: number);
|
|
2386
|
+
constructor(productId: string, productName: string, productPrice: CostDto, eventId: string, eventName: string, eventStartsOn: DateTime, stock: number, sold: number, utilizationRate: number);
|
|
2059
2387
|
}
|
|
2060
2388
|
//#endregion
|
|
2061
2389
|
//#region src/dto/statistics/StatisticsOverviewBestRevenueMonthDto.d.ts
|
|
@@ -2072,6 +2400,22 @@ declare class StatisticsOverviewBestRevenueMonthDto {
|
|
|
2072
2400
|
constructor(period: DateTime, revenue: CostDto, orders: number, tickets: number);
|
|
2073
2401
|
}
|
|
2074
2402
|
//#endregion
|
|
2403
|
+
//#region src/dto/statistics/StatisticsOverviewCancellationFunnelDto.d.ts
|
|
2404
|
+
declare class StatisticsOverviewCancellationFunnelDto {
|
|
2405
|
+
#private;
|
|
2406
|
+
get paidOrders(): number;
|
|
2407
|
+
set paidOrders(value: number);
|
|
2408
|
+
get ordersWithRefund(): number;
|
|
2409
|
+
set ordersWithRefund(value: number);
|
|
2410
|
+
get ordersFullyRefunded(): number;
|
|
2411
|
+
set ordersFullyRefunded(value: number);
|
|
2412
|
+
get partialRefundRate(): number;
|
|
2413
|
+
set partialRefundRate(value: number);
|
|
2414
|
+
get fullRefundRate(): number;
|
|
2415
|
+
set fullRefundRate(value: number);
|
|
2416
|
+
constructor(paidOrders: number, ordersWithRefund: number, ordersFullyRefunded: number, partialRefundRate: number, fullRefundRate: number);
|
|
2417
|
+
}
|
|
2418
|
+
//#endregion
|
|
2075
2419
|
//#region src/dto/statistics/StatisticsOverviewEventPerformanceDto.d.ts
|
|
2076
2420
|
declare class StatisticsOverviewEventPerformanceDto {
|
|
2077
2421
|
#private;
|
|
@@ -2194,6 +2538,143 @@ declare class StatisticsOverviewKPIsTotalTicketsSoldDto {
|
|
|
2194
2538
|
constructor(lifetime: number, trend: StatisticsTrendDto<number>);
|
|
2195
2539
|
}
|
|
2196
2540
|
//#endregion
|
|
2541
|
+
//#region src/dto/statistics/StatisticsOverviewReservationConversionRateDto.d.ts
|
|
2542
|
+
declare class StatisticsOverviewReservationConversionRateDto {
|
|
2543
|
+
#private;
|
|
2544
|
+
get current(): number;
|
|
2545
|
+
set current(value: number);
|
|
2546
|
+
get previous(): number;
|
|
2547
|
+
set previous(value: number);
|
|
2548
|
+
get growthRate(): number;
|
|
2549
|
+
set growthRate(value: number);
|
|
2550
|
+
get reservationsCurrent(): number;
|
|
2551
|
+
set reservationsCurrent(value: number);
|
|
2552
|
+
get reservationsPrevious(): number;
|
|
2553
|
+
set reservationsPrevious(value: number);
|
|
2554
|
+
get ordersCurrent(): number;
|
|
2555
|
+
set ordersCurrent(value: number);
|
|
2556
|
+
get ordersPrevious(): number;
|
|
2557
|
+
set ordersPrevious(value: number);
|
|
2558
|
+
constructor(current: number, previous: number, growthRate: number, reservationsCurrent: number, reservationsPrevious: number, ordersCurrent: number, ordersPrevious: number);
|
|
2559
|
+
}
|
|
2560
|
+
//#endregion
|
|
2561
|
+
//#region src/dto/statistics/StatisticsOverviewTopShopDto.d.ts
|
|
2562
|
+
declare class StatisticsOverviewTopShopDto {
|
|
2563
|
+
#private;
|
|
2564
|
+
get shop(): ShopDto;
|
|
2565
|
+
set shop(value: ShopDto);
|
|
2566
|
+
get revenue(): CostDto;
|
|
2567
|
+
set revenue(value: CostDto);
|
|
2568
|
+
get orders(): number;
|
|
2569
|
+
set orders(value: number);
|
|
2570
|
+
get tickets(): number;
|
|
2571
|
+
set tickets(value: number);
|
|
2572
|
+
constructor(shop: ShopDto, revenue: CostDto, orders: number, tickets: number);
|
|
2573
|
+
}
|
|
2574
|
+
//#endregion
|
|
2575
|
+
//#region src/dto/statistics/StatisticsPieChartDto.d.ts
|
|
2576
|
+
declare class StatisticsPieChartDto {
|
|
2577
|
+
#private;
|
|
2578
|
+
get slices(): readonly StatisticsPieSlice[];
|
|
2579
|
+
set slices(value: readonly StatisticsPieSlice[]);
|
|
2580
|
+
get valueType(): StatisticsChartValueType;
|
|
2581
|
+
set valueType(value: StatisticsChartValueType);
|
|
2582
|
+
constructor(slices: readonly StatisticsPieSlice[], valueType: StatisticsChartValueType);
|
|
2583
|
+
}
|
|
2584
|
+
//#endregion
|
|
2585
|
+
//#region src/dto/statistics/StatisticsRefundsAmountDistributionDto.d.ts
|
|
2586
|
+
declare class StatisticsRefundsAmountDistributionDto {
|
|
2587
|
+
#private;
|
|
2588
|
+
get full(): number;
|
|
2589
|
+
set full(value: number);
|
|
2590
|
+
get partial(): number;
|
|
2591
|
+
set partial(value: number);
|
|
2592
|
+
get averagePartialRatio(): number;
|
|
2593
|
+
set averagePartialRatio(value: number);
|
|
2594
|
+
constructor(full: number, partial: number, averagePartialRatio: number);
|
|
2595
|
+
}
|
|
2596
|
+
//#endregion
|
|
2597
|
+
//#region src/dto/statistics/StatisticsRefundsOverviewDto.d.ts
|
|
2598
|
+
declare class StatisticsRefundsOverviewDto {
|
|
2599
|
+
#private;
|
|
2600
|
+
get refundRate(): StatisticsTrendDto<number>;
|
|
2601
|
+
set refundRate(value: StatisticsTrendDto<number>);
|
|
2602
|
+
get refundCount(): StatisticsTrendDto<number>;
|
|
2603
|
+
set refundCount(value: StatisticsTrendDto<number>);
|
|
2604
|
+
get refundAmount(): StatisticsTrendDto<CostDto>;
|
|
2605
|
+
set refundAmount(value: StatisticsTrendDto<CostDto>);
|
|
2606
|
+
get averageRefundAmount(): CostDto;
|
|
2607
|
+
set averageRefundAmount(value: CostDto);
|
|
2608
|
+
get averageCompletionTimeSeconds(): number;
|
|
2609
|
+
set averageCompletionTimeSeconds(value: number);
|
|
2610
|
+
constructor(refundRate: StatisticsTrendDto<number>, refundCount: StatisticsTrendDto<number>, refundAmount: StatisticsTrendDto<CostDto>, averageRefundAmount: CostDto, averageCompletionTimeSeconds: number);
|
|
2611
|
+
}
|
|
2612
|
+
//#endregion
|
|
2613
|
+
//#region src/dto/statistics/StatisticsRefundsTopEventDto.d.ts
|
|
2614
|
+
declare class StatisticsRefundsTopEventDto {
|
|
2615
|
+
#private;
|
|
2616
|
+
get eventId(): string;
|
|
2617
|
+
set eventId(value: string);
|
|
2618
|
+
get eventName(): string;
|
|
2619
|
+
set eventName(value: string);
|
|
2620
|
+
get eventStartsOn(): DateTime;
|
|
2621
|
+
set eventStartsOn(value: DateTime);
|
|
2622
|
+
get refundCount(): number;
|
|
2623
|
+
set refundCount(value: number);
|
|
2624
|
+
get refundAmount(): CostDto;
|
|
2625
|
+
set refundAmount(value: CostDto);
|
|
2626
|
+
get refundRate(): number;
|
|
2627
|
+
set refundRate(value: number);
|
|
2628
|
+
constructor(eventId: string, eventName: string, eventStartsOn: DateTime, refundCount: number, refundAmount: CostDto, refundRate: number);
|
|
2629
|
+
}
|
|
2630
|
+
//#endregion
|
|
2631
|
+
//#region src/dto/statistics/StatisticsRefundsVelocityDto.d.ts
|
|
2632
|
+
type StatisticsRefundsVelocityBucket = "within_1_day" | "within_7_days" | "within_30_days" | "within_90_days" | "over_90_days";
|
|
2633
|
+
declare class StatisticsRefundsVelocityDto {
|
|
2634
|
+
#private;
|
|
2635
|
+
get averageDaysOrderToRefund(): number;
|
|
2636
|
+
set averageDaysOrderToRefund(value: number);
|
|
2637
|
+
get averageSecondsRequestToCompletion(): number;
|
|
2638
|
+
set averageSecondsRequestToCompletion(value: number);
|
|
2639
|
+
get buckets(): Record<StatisticsRefundsVelocityBucket, number>;
|
|
2640
|
+
set buckets(value: Record<StatisticsRefundsVelocityBucket, number>);
|
|
2641
|
+
constructor(averageDaysOrderToRefund: number, averageSecondsRequestToCompletion: number, buckets: Record<StatisticsRefundsVelocityBucket, number>);
|
|
2642
|
+
}
|
|
2643
|
+
//#endregion
|
|
2644
|
+
//#region src/dto/statistics/StatisticsSalesDiscountEfficacyDto.d.ts
|
|
2645
|
+
declare class StatisticsSalesDiscountEfficacyDto {
|
|
2646
|
+
#private;
|
|
2647
|
+
get ordersWithDiscount(): number;
|
|
2648
|
+
set ordersWithDiscount(value: number);
|
|
2649
|
+
get ordersWithoutDiscount(): number;
|
|
2650
|
+
set ordersWithoutDiscount(value: number);
|
|
2651
|
+
get discountUsageRate(): number;
|
|
2652
|
+
set discountUsageRate(value: number);
|
|
2653
|
+
get revenueWithDiscount(): CostDto;
|
|
2654
|
+
set revenueWithDiscount(value: CostDto);
|
|
2655
|
+
get revenueWithoutDiscount(): CostDto;
|
|
2656
|
+
set revenueWithoutDiscount(value: CostDto);
|
|
2657
|
+
get totalDiscountAmount(): CostDto;
|
|
2658
|
+
set totalDiscountAmount(value: CostDto);
|
|
2659
|
+
get averageDiscountPerOrder(): CostDto;
|
|
2660
|
+
set averageDiscountPerOrder(value: CostDto);
|
|
2661
|
+
get averageOrderValueWithDiscount(): CostDto;
|
|
2662
|
+
set averageOrderValueWithDiscount(value: CostDto);
|
|
2663
|
+
get averageOrderValueWithoutDiscount(): CostDto;
|
|
2664
|
+
set averageOrderValueWithoutDiscount(value: CostDto);
|
|
2665
|
+
constructor(ordersWithDiscount: number, ordersWithoutDiscount: number, discountUsageRate: number, revenueWithDiscount: CostDto, revenueWithoutDiscount: CostDto, totalDiscountAmount: CostDto, averageDiscountPerOrder: CostDto, averageOrderValueWithDiscount: CostDto, averageOrderValueWithoutDiscount: CostDto);
|
|
2666
|
+
}
|
|
2667
|
+
//#endregion
|
|
2668
|
+
//#region src/dto/statistics/StatisticsSalesFailedTransactionReasonDto.d.ts
|
|
2669
|
+
declare class StatisticsSalesFailedTransactionReasonDto {
|
|
2670
|
+
#private;
|
|
2671
|
+
get status(): TransactionStatus;
|
|
2672
|
+
set status(value: TransactionStatus);
|
|
2673
|
+
get count(): number;
|
|
2674
|
+
set count(value: number);
|
|
2675
|
+
constructor(status: TransactionStatus, count: number);
|
|
2676
|
+
}
|
|
2677
|
+
//#endregion
|
|
2197
2678
|
//#region src/dto/statistics/StatisticsSalesLifetimeTotalsDto.d.ts
|
|
2198
2679
|
declare class StatisticsSalesLifetimeTotalsDto {
|
|
2199
2680
|
#private;
|
|
@@ -2210,6 +2691,17 @@ declare class StatisticsSalesLifetimeTotalsDto {
|
|
|
2210
2691
|
constructor(totalRevenue: CostDto, totalPlatformCost: CostDto, netRevenue: CostDto, averageOrderValue: CostDto, averageRevenuePerTicket: CostDto);
|
|
2211
2692
|
}
|
|
2212
2693
|
//#endregion
|
|
2694
|
+
//#region src/dto/statistics/StatisticsSalesOrderValueDistributionDto.d.ts
|
|
2695
|
+
type StatisticsSalesOrderValueBucket = "under_25" | "25_50" | "50_100" | "100_250" | "250_500" | "500_1000" | "over_1000";
|
|
2696
|
+
declare class StatisticsSalesOrderValueDistributionDto {
|
|
2697
|
+
#private;
|
|
2698
|
+
get buckets(): Record<StatisticsSalesOrderValueBucket, number>;
|
|
2699
|
+
set buckets(value: Record<StatisticsSalesOrderValueBucket, number>);
|
|
2700
|
+
get median(): CostDto;
|
|
2701
|
+
set median(value: CostDto);
|
|
2702
|
+
constructor(buckets: Record<StatisticsSalesOrderValueBucket, number>, median: CostDto);
|
|
2703
|
+
}
|
|
2704
|
+
//#endregion
|
|
2213
2705
|
//#region src/dto/statistics/StatisticsSalesPurchaseBehaviorDto.d.ts
|
|
2214
2706
|
declare class StatisticsSalesPurchaseBehaviorDto {
|
|
2215
2707
|
#private;
|
|
@@ -2224,6 +2716,17 @@ declare class StatisticsSalesPurchaseBehaviorDto {
|
|
|
2224
2716
|
constructor(averageTimeToPurchase: number, cartAbandonmentRate: number, peakBuyingCount: number, peakBuyingTime: DateTime);
|
|
2225
2717
|
}
|
|
2226
2718
|
//#endregion
|
|
2719
|
+
//#region src/dto/statistics/StatisticsSalesRepeatPurchaseVelocityDto.d.ts
|
|
2720
|
+
type StatisticsSalesRepeatPurchaseVelocityBucket = "within_7_days" | "within_30_days" | "within_90_days" | "within_365_days" | "over_365_days";
|
|
2721
|
+
declare class StatisticsSalesRepeatPurchaseVelocityDto {
|
|
2722
|
+
#private;
|
|
2723
|
+
get averageDaysBetweenOrders(): number;
|
|
2724
|
+
set averageDaysBetweenOrders(value: number);
|
|
2725
|
+
get buckets(): Record<StatisticsSalesRepeatPurchaseVelocityBucket, number>;
|
|
2726
|
+
set buckets(value: Record<StatisticsSalesRepeatPurchaseVelocityBucket, number>);
|
|
2727
|
+
constructor(averageDaysBetweenOrders: number, buckets: Record<StatisticsSalesRepeatPurchaseVelocityBucket, number>);
|
|
2728
|
+
}
|
|
2729
|
+
//#endregion
|
|
2227
2730
|
//#region src/dto/statistics/StatisticsSalesTransactionSuccessRateDto.d.ts
|
|
2228
2731
|
declare class StatisticsSalesTransactionSuccessRateDto {
|
|
2229
2732
|
#private;
|
|
@@ -2417,12 +2920,6 @@ declare class EventStatisticsOverviewAdapter {
|
|
|
2417
2920
|
static parseStatus(data: ForeignData): EventStatisticsStatusDto;
|
|
2418
2921
|
}
|
|
2419
2922
|
//#endregion
|
|
2420
|
-
//#region src/adapter/EventStatisticsSalesAdapter.d.ts
|
|
2421
|
-
declare class EventStatisticsSalesAdapter {
|
|
2422
|
-
static parseSalesFlowChart(data: ForeignData): EventStatisticsSalesFlowChartDto;
|
|
2423
|
-
static parseSalesFlowChartSeries(data: ForeignData): EventStatisticsSalesFlowChartSeriesDto;
|
|
2424
|
-
}
|
|
2425
|
-
//#endregion
|
|
2426
2923
|
//#region src/adapter/FileSystemAdapter.d.ts
|
|
2427
2924
|
declare class FileSystemAdapter {
|
|
2428
2925
|
static parsePicture(data: ForeignData): PictureDto;
|
|
@@ -2535,18 +3032,39 @@ declare class StatisticsAdapter {
|
|
|
2535
3032
|
declare class StatisticsBuyersAdapter {
|
|
2536
3033
|
static parseOverview(data: ForeignData): StatisticsBuyersOverviewDto;
|
|
2537
3034
|
static parseRanked(data: ForeignData): StatisticsBuyersRankedDto;
|
|
3035
|
+
static parseGeographicDistribution(data: ForeignData): StatisticsBuyersGeographicDistributionDto;
|
|
3036
|
+
static parseCohortRetention(data: ForeignData): StatisticsBuyersCohortRetentionDto;
|
|
3037
|
+
static parseSpendBuckets(data: ForeignData): StatisticsBuyersSpendBucketsDto;
|
|
3038
|
+
static parseAcquisitionSource(data: ForeignData): StatisticsBuyersAcquisitionSourceDto;
|
|
3039
|
+
static parseAgeGenderMatrix(data: ForeignData): StatisticsBuyersAgeGenderMatrixDto;
|
|
3040
|
+
static parseDeviceConversion(data: ForeignData): StatisticsBuyersDeviceConversionDto;
|
|
3041
|
+
}
|
|
3042
|
+
//#endregion
|
|
3043
|
+
//#region src/adapter/StatisticsChartAdapter.d.ts
|
|
3044
|
+
declare class StatisticsChartAdapter {
|
|
3045
|
+
static parseChart(data: ForeignData): StatisticsChartDto;
|
|
3046
|
+
static parseSeries(data: ForeignData): StatisticsChartSeries;
|
|
3047
|
+
static parseDataPoint(data: number | null | ForeignData): number | null | StatisticsChartDataPoint;
|
|
3048
|
+
static parsePie(data: ForeignData): StatisticsPieChartDto;
|
|
3049
|
+
static parsePieSlice(data: ForeignData): StatisticsPieSlice;
|
|
2538
3050
|
}
|
|
2539
3051
|
//#endregion
|
|
2540
3052
|
//#region src/adapter/StatisticsEventsAdapter.d.ts
|
|
2541
3053
|
declare class StatisticsEventsAdapter {
|
|
2542
3054
|
static parseOverview(data: ForeignData): StatisticsEventsOverviewDto;
|
|
2543
3055
|
static parsePerformance(data: ForeignData): StatisticsOverviewEventPerformanceDto;
|
|
3056
|
+
static parseTimeToEvent(data: ForeignData): StatisticsEventsTimeToEventDto;
|
|
3057
|
+
static parseSalesCurve(data: ForeignData): StatisticsEventsSalesCurveDto;
|
|
3058
|
+
static parseSalesCurveEvent(data: ForeignData): StatisticsEventsSalesCurveEventDto;
|
|
3059
|
+
static parseSellOutTiming(data: ForeignData): StatisticsEventsSellOutTimingDto;
|
|
3060
|
+
static parseSellOutTimingEvent(data: ForeignData): StatisticsEventsSellOutTimingEventDto;
|
|
2544
3061
|
}
|
|
2545
3062
|
//#endregion
|
|
2546
3063
|
//#region src/adapter/StatisticsGrowthAdapter.d.ts
|
|
2547
3064
|
declare class StatisticsGrowthAdapter {
|
|
2548
3065
|
static parseOverview(data: ForeignData): StatisticsGrowthOverviewDto;
|
|
2549
3066
|
static parseMilestone(data: ForeignData): MilestoneDto;
|
|
3067
|
+
static parseCmgr(data: ForeignData): StatisticsGrowthCmgrDto;
|
|
2550
3068
|
private static parseFiniteNumber;
|
|
2551
3069
|
}
|
|
2552
3070
|
//#endregion
|
|
@@ -2557,12 +3075,26 @@ declare class StatisticsInsightsAdapter {
|
|
|
2557
3075
|
static parseSignal(data: ForeignData): InsightSignalDto;
|
|
2558
3076
|
}
|
|
2559
3077
|
//#endregion
|
|
3078
|
+
//#region src/adapter/StatisticsMarketingAdapter.d.ts
|
|
3079
|
+
declare class StatisticsMarketingAdapter {
|
|
3080
|
+
static parseOverview(data: ForeignData): StatisticsMarketingOverviewDto;
|
|
3081
|
+
static parseSourceBreakdown(data: ForeignData): StatisticsMarketingSourceBreakdownDto;
|
|
3082
|
+
static parseTopCampaigns(data: ForeignData): StatisticsMarketingCampaignDto;
|
|
3083
|
+
static parseSourceMediumMatrix(data: ForeignData): StatisticsMarketingSourceMediumMatrixDto;
|
|
3084
|
+
static parseTopReferrers(data: ForeignData): StatisticsMarketingReferrerDto;
|
|
3085
|
+
static parseSourceFunnel(data: ForeignData): StatisticsMarketingSourceFunnelDto;
|
|
3086
|
+
static parseShortlinkRoi(data: ForeignData): StatisticsMarketingShortlinkRoiDto;
|
|
3087
|
+
}
|
|
3088
|
+
//#endregion
|
|
2560
3089
|
//#region src/adapter/StatisticsOperationsAdapter.d.ts
|
|
2561
3090
|
declare class StatisticsOperationsAdapter {
|
|
2562
3091
|
static parseOverview(data: ForeignData): StatisticsOperationsOverviewDto;
|
|
2563
3092
|
static parseAppTeam(data: ForeignData): StatisticsOperationsAppTeamDto;
|
|
2564
|
-
static
|
|
2565
|
-
static
|
|
3093
|
+
static parseNoShowRate(data: ForeignData): StatisticsOperationsNoShowRateDto;
|
|
3094
|
+
static parseNoShowRateEvent(data: ForeignData): StatisticsOperationsNoShowRateEventDto;
|
|
3095
|
+
static parseScanTimeDistribution(data: ForeignData): StatisticsOperationsScanTimeDistributionDto;
|
|
3096
|
+
static parseSteward(data: ForeignData): StatisticsOperationsStewardDto;
|
|
3097
|
+
static parseStockUtilization(data: ForeignData): StatisticsOperationsStockUtilizationDto;
|
|
2566
3098
|
}
|
|
2567
3099
|
//#endregion
|
|
2568
3100
|
//#region src/adapter/StatisticsOverviewAdapter.d.ts
|
|
@@ -2575,6 +3107,17 @@ declare class StatisticsOverviewAdapter {
|
|
|
2575
3107
|
static parseKPIsTotalEventsHosted(data: ForeignData): StatisticsOverviewKPIsTotalEventsHostedDto;
|
|
2576
3108
|
static parseKPIsTotalRevenue(data: ForeignData): StatisticsOverviewKPIsTotalRevenueDto;
|
|
2577
3109
|
static parseKPIsTotalTicketsSold(data: ForeignData): StatisticsOverviewKPIsTotalTicketsSoldDto;
|
|
3110
|
+
static parseTopShop(data: ForeignData): StatisticsOverviewTopShopDto;
|
|
3111
|
+
static parseCancellationFunnel(data: ForeignData): StatisticsOverviewCancellationFunnelDto;
|
|
3112
|
+
static parseReservationConversionRate(data: ForeignData): StatisticsOverviewReservationConversionRateDto;
|
|
3113
|
+
}
|
|
3114
|
+
//#endregion
|
|
3115
|
+
//#region src/adapter/StatisticsRefundsAdapter.d.ts
|
|
3116
|
+
declare class StatisticsRefundsAdapter {
|
|
3117
|
+
static parseOverview(data: ForeignData): StatisticsRefundsOverviewDto;
|
|
3118
|
+
static parseTopEvents(data: ForeignData): StatisticsRefundsTopEventDto;
|
|
3119
|
+
static parseVelocity(data: ForeignData): StatisticsRefundsVelocityDto;
|
|
3120
|
+
static parseAmountDistribution(data: ForeignData): StatisticsRefundsAmountDistributionDto;
|
|
2578
3121
|
}
|
|
2579
3122
|
//#endregion
|
|
2580
3123
|
//#region src/adapter/StatisticsSalesAdapter.d.ts
|
|
@@ -2582,6 +3125,10 @@ declare class StatisticsSalesAdapter {
|
|
|
2582
3125
|
static parseLifetimeTotals(data: ForeignData): StatisticsSalesLifetimeTotalsDto;
|
|
2583
3126
|
static parsePurchaseBehavior(data: ForeignData): StatisticsSalesPurchaseBehaviorDto;
|
|
2584
3127
|
static parseTransactionSuccessRate(data: ForeignData): StatisticsSalesTransactionSuccessRateDto;
|
|
3128
|
+
static parseDiscountEfficacy(data: ForeignData): StatisticsSalesDiscountEfficacyDto;
|
|
3129
|
+
static parseOrderValueDistribution(data: ForeignData): StatisticsSalesOrderValueDistributionDto;
|
|
3130
|
+
static parseFailedTransactionReason(data: ForeignData): StatisticsSalesFailedTransactionReasonDto;
|
|
3131
|
+
static parseRepeatPurchaseVelocity(data: ForeignData): StatisticsSalesRepeatPurchaseVelocityDto;
|
|
2585
3132
|
}
|
|
2586
3133
|
//#endregion
|
|
2587
3134
|
//#region src/adapter/SubscriptionAdapter.d.ts
|
|
@@ -2740,7 +3287,7 @@ declare class MerchantEventService extends BaseService {
|
|
|
2740
3287
|
//#region src/service/MerchantEventStatisticsBuyersService.d.ts
|
|
2741
3288
|
declare class MerchantEventStatisticsBuyersService extends BaseService {
|
|
2742
3289
|
getOverview(merchantId: string, eventId: string): Promise<BaseResponse<EventStatisticsBuyersOverviewDto>>;
|
|
2743
|
-
getAcquisitionChart(merchantId: string, eventId: string): Promise<BaseResponse<
|
|
3290
|
+
getAcquisitionChart(merchantId: string, eventId: string): Promise<BaseResponse<StatisticsChartDto>>;
|
|
2744
3291
|
getAgeDistribution(merchantId: string, eventId: string): Promise<BaseResponse<Record<string, number>>>;
|
|
2745
3292
|
getGenderDistribution(merchantId: string, eventId: string): Promise<BaseResponse<Record<string, number>>>;
|
|
2746
3293
|
getLanguageDistribution(merchantId: string, eventId: string): Promise<BaseResponse<Record<string, number>>>;
|
|
@@ -2754,7 +3301,7 @@ declare class MerchantEventStatisticsOperationsService extends BaseService {
|
|
|
2754
3301
|
getOverview(merchantId: string, eventId: string): Promise<BaseResponse<EventStatisticsOperationsOverviewDto>>;
|
|
2755
3302
|
getAppTeams(merchantId: string, eventId: string): Promise<BaseResponse<EventStatisticsAppTeamDto[]>>;
|
|
2756
3303
|
getAttendance(merchantId: string, eventId: string): Promise<BaseResponse<EventStatisticsAttendanceDto>>;
|
|
2757
|
-
getScansTrend(merchantId: string, eventId: string): Promise<BaseResponse<
|
|
3304
|
+
getScansTrend(merchantId: string, eventId: string): Promise<BaseResponse<StatisticsChartDto>>;
|
|
2758
3305
|
getSwaps(merchantId: string, eventId: string): Promise<BaseResponse<EventStatisticsSwapsDto>>;
|
|
2759
3306
|
}
|
|
2760
3307
|
//#endregion
|
|
@@ -2768,12 +3315,12 @@ declare class MerchantEventStatisticsOverviewService extends BaseService {
|
|
|
2768
3315
|
//#region src/service/MerchantEventStatisticsSalesService.d.ts
|
|
2769
3316
|
declare class MerchantEventStatisticsSalesService extends BaseService {
|
|
2770
3317
|
getLifetimeTotals(merchantId: string, eventId: string): Promise<BaseResponse<StatisticsSalesLifetimeTotalsDto>>;
|
|
2771
|
-
getSalesFlowChart(merchantId: string, eventId: string): Promise<BaseResponse<
|
|
2772
|
-
getRevenueTrend(merchantId: string, eventId: string): Promise<BaseResponse<
|
|
2773
|
-
getPaymentMethodsChart(merchantId: string, eventId: string): Promise<BaseResponse<
|
|
3318
|
+
getSalesFlowChart(merchantId: string, eventId: string): Promise<BaseResponse<StatisticsChartDto>>;
|
|
3319
|
+
getRevenueTrend(merchantId: string, eventId: string): Promise<BaseResponse<StatisticsChartDto>>;
|
|
3320
|
+
getPaymentMethodsChart(merchantId: string, eventId: string): Promise<BaseResponse<StatisticsPieChartDto>>;
|
|
2774
3321
|
getPurchaseBehavior(merchantId: string, eventId: string): Promise<BaseResponse<StatisticsSalesPurchaseBehaviorDto>>;
|
|
2775
3322
|
getTransactionSuccessRate(merchantId: string, eventId: string): Promise<BaseResponse<StatisticsSalesTransactionSuccessRateDto>>;
|
|
2776
|
-
getSalesByDayOfWeek(merchantId: string, eventId: string): Promise<BaseResponse<
|
|
3323
|
+
getSalesByDayOfWeek(merchantId: string, eventId: string): Promise<BaseResponse<StatisticsChartDto>>;
|
|
2777
3324
|
}
|
|
2778
3325
|
//#endregion
|
|
2779
3326
|
//#region src/service/MerchantEventTimeSlotService.d.ts
|
|
@@ -2915,13 +3462,12 @@ declare class MerchantShopsService extends BaseService {
|
|
|
2915
3462
|
//#endregion
|
|
2916
3463
|
//#region src/service/MerchantStatisticsService.d.ts
|
|
2917
3464
|
declare class MerchantStatisticsService extends BaseService {
|
|
2918
|
-
getRevenueTrend(merchantId: string): Promise<BaseResponse<ApexOptions>>;
|
|
2919
3465
|
getStatus(merchantId: string): Promise<BaseResponse<boolean>>;
|
|
2920
3466
|
}
|
|
2921
3467
|
//#endregion
|
|
2922
3468
|
//#region src/service/MerchantStatisticsBuyersService.d.ts
|
|
2923
3469
|
declare class MerchantStatisticsBuyersService extends BaseService {
|
|
2924
|
-
getAcquisition(merchantId: string, from: DateTime, to: DateTime): Promise<BaseResponse<
|
|
3470
|
+
getAcquisition(merchantId: string, from: DateTime, to: DateTime): Promise<BaseResponse<StatisticsChartDto>>;
|
|
2925
3471
|
getAgeDistribution(merchantId: string, from: DateTime, to: DateTime): Promise<BaseResponse<Record<string, number>>>;
|
|
2926
3472
|
getBrowserDistribution(merchantId: string, from: DateTime, to: DateTime): Promise<BaseResponse<Record<string, number>>>;
|
|
2927
3473
|
getGenderDistribution(merchantId: string, from: DateTime, to: DateTime): Promise<BaseResponse<Record<string, number>>>;
|
|
@@ -2929,22 +3475,34 @@ declare class MerchantStatisticsBuyersService extends BaseService {
|
|
|
2929
3475
|
getOsDistribution(merchantId: string, from: DateTime, to: DateTime): Promise<BaseResponse<Record<string, number>>>;
|
|
2930
3476
|
getOverview(merchantId: string): Promise<BaseResponse<StatisticsBuyersOverviewDto>>;
|
|
2931
3477
|
getTopBuyers(merchantId: string, from: DateTime, to: DateTime): Promise<BaseResponse<StatisticsBuyersRankedDto[]>>;
|
|
3478
|
+
getGeographicDistribution(merchantId: string, from: DateTime, to: DateTime): Promise<BaseResponse<StatisticsBuyersGeographicDistributionDto[]>>;
|
|
3479
|
+
getCohortRetention(merchantId: string): Promise<BaseResponse<StatisticsBuyersCohortRetentionDto>>;
|
|
3480
|
+
getSpendBuckets(merchantId: string): Promise<BaseResponse<StatisticsBuyersSpendBucketsDto>>;
|
|
3481
|
+
getAcquisitionSourceSplit(merchantId: string, from: DateTime, to: DateTime): Promise<BaseResponse<StatisticsBuyersAcquisitionSourceDto[]>>;
|
|
3482
|
+
getAgeGenderMatrix(merchantId: string, from: DateTime, to: DateTime): Promise<BaseResponse<StatisticsBuyersAgeGenderMatrixDto>>;
|
|
3483
|
+
getDeviceConversion(merchantId: string, from: DateTime, to: DateTime): Promise<BaseResponse<StatisticsBuyersDeviceConversionDto[]>>;
|
|
2932
3484
|
}
|
|
2933
3485
|
//#endregion
|
|
2934
3486
|
//#region src/service/MerchantStatisticsEventsService.d.ts
|
|
2935
3487
|
declare class MerchantStatisticsEventsService extends BaseService {
|
|
2936
3488
|
getOverview(merchantId: string): Promise<BaseResponse<StatisticsEventsOverviewDto>>;
|
|
2937
3489
|
getPerformance(merchantId: string, from: DateTime, to: DateTime): Promise<BaseResponse<StatisticsOverviewEventPerformanceDto>>;
|
|
2938
|
-
getSellThroughTrend(merchantId: string, from: DateTime, to: DateTime): Promise<BaseResponse<
|
|
2939
|
-
getSalesVelocity(merchantId: string, from: DateTime, to: DateTime): Promise<BaseResponse<
|
|
2940
|
-
getPublicationStatus(merchantId: string, from: DateTime, to: DateTime): Promise<BaseResponse<
|
|
3490
|
+
getSellThroughTrend(merchantId: string, from: DateTime, to: DateTime): Promise<BaseResponse<StatisticsChartDto>>;
|
|
3491
|
+
getSalesVelocity(merchantId: string, from: DateTime, to: DateTime): Promise<BaseResponse<StatisticsChartDto>>;
|
|
3492
|
+
getPublicationStatus(merchantId: string, from: DateTime, to: DateTime): Promise<BaseResponse<StatisticsPieChartDto>>;
|
|
3493
|
+
getTimeToEventDistribution(merchantId: string, from: DateTime, to: DateTime): Promise<BaseResponse<StatisticsEventsTimeToEventDto>>;
|
|
3494
|
+
getSalesCurvePerEvent(merchantId: string, from: DateTime, to: DateTime): Promise<BaseResponse<StatisticsEventsSalesCurveDto>>;
|
|
3495
|
+
getSellOutTiming(merchantId: string, from: DateTime, to: DateTime): Promise<BaseResponse<StatisticsEventsSellOutTimingDto>>;
|
|
3496
|
+
getDayOfWeekDistribution(merchantId: string, from: DateTime, to: DateTime): Promise<BaseResponse<StatisticsChartDto>>;
|
|
2941
3497
|
}
|
|
2942
3498
|
//#endregion
|
|
2943
3499
|
//#region src/service/MerchantStatisticsGrowthService.d.ts
|
|
2944
3500
|
declare class MerchantStatisticsGrowthService extends BaseService {
|
|
2945
3501
|
getOverview(merchantId: string, from: DateTime, to: DateTime): Promise<BaseResponse<StatisticsGrowthOverviewDto>>;
|
|
2946
|
-
getYearOverYear(merchantId: string, from: DateTime, to: DateTime): Promise<BaseResponse<
|
|
3502
|
+
getYearOverYear(merchantId: string, from: DateTime, to: DateTime): Promise<BaseResponse<StatisticsChartDto>>;
|
|
2947
3503
|
getMilestones(merchantId: string): Promise<BaseResponse<MilestoneDto[]>>;
|
|
3504
|
+
getForecast(merchantId: string): Promise<BaseResponse<StatisticsChartDto>>;
|
|
3505
|
+
getCompoundMonthlyGrowthRate(merchantId: string): Promise<BaseResponse<StatisticsGrowthCmgrDto>>;
|
|
2948
3506
|
}
|
|
2949
3507
|
//#endregion
|
|
2950
3508
|
//#region src/service/MerchantStatisticsInsightsService.d.ts
|
|
@@ -2952,13 +3510,29 @@ declare class MerchantStatisticsInsightsService extends BaseService {
|
|
|
2952
3510
|
getInsights(merchantId: string): Promise<BaseResponse<InsightsResponseDto>>;
|
|
2953
3511
|
}
|
|
2954
3512
|
//#endregion
|
|
3513
|
+
//#region src/service/MerchantStatisticsMarketingService.d.ts
|
|
3514
|
+
declare class MerchantStatisticsMarketingService extends BaseService {
|
|
3515
|
+
getOverview(merchantId: string, from: DateTime, to: DateTime): Promise<BaseResponse<StatisticsMarketingOverviewDto>>;
|
|
3516
|
+
getSourceBreakdown(merchantId: string, from: DateTime, to: DateTime): Promise<BaseResponse<StatisticsMarketingSourceBreakdownDto[]>>;
|
|
3517
|
+
getTopCampaigns(merchantId: string, from: DateTime, to: DateTime): Promise<BaseResponse<StatisticsMarketingCampaignDto[]>>;
|
|
3518
|
+
getSourceMediumMatrix(merchantId: string, from: DateTime, to: DateTime): Promise<BaseResponse<StatisticsMarketingSourceMediumMatrixDto>>;
|
|
3519
|
+
getPaidAdAttribution(merchantId: string, from: DateTime, to: DateTime): Promise<BaseResponse<StatisticsPieChartDto>>;
|
|
3520
|
+
getTopReferrers(merchantId: string, from: DateTime, to: DateTime): Promise<BaseResponse<StatisticsMarketingReferrerDto[]>>;
|
|
3521
|
+
getSourceFunnel(merchantId: string, from: DateTime, to: DateTime): Promise<BaseResponse<StatisticsMarketingSourceFunnelDto[]>>;
|
|
3522
|
+
getShortlinkRoi(merchantId: string, from: DateTime, to: DateTime): Promise<BaseResponse<StatisticsMarketingShortlinkRoiDto[]>>;
|
|
3523
|
+
getAttributionCoverageTrend(merchantId: string, from: DateTime, to: DateTime): Promise<BaseResponse<StatisticsChartDto>>;
|
|
3524
|
+
}
|
|
3525
|
+
//#endregion
|
|
2955
3526
|
//#region src/service/MerchantStatisticsOperationsService.d.ts
|
|
2956
3527
|
declare class MerchantStatisticsOperationsService extends BaseService {
|
|
2957
3528
|
getOverview(merchantId: string, from: DateTime, to: DateTime): Promise<BaseResponse<StatisticsOperationsOverviewDto>>;
|
|
2958
|
-
getScansTrend(merchantId: string, from: DateTime, to: DateTime): Promise<BaseResponse<
|
|
2959
|
-
getCheckinRatePerEvent(merchantId: string, from: DateTime, to: DateTime): Promise<BaseResponse<
|
|
3529
|
+
getScansTrend(merchantId: string, from: DateTime, to: DateTime): Promise<BaseResponse<StatisticsChartDto>>;
|
|
3530
|
+
getCheckinRatePerEvent(merchantId: string, from: DateTime, to: DateTime): Promise<BaseResponse<StatisticsChartDto>>;
|
|
2960
3531
|
getAppTeams(merchantId: string, from: DateTime, to: DateTime): Promise<BaseResponse<StatisticsOperationsAppTeamDto[]>>;
|
|
2961
|
-
|
|
3532
|
+
getNoShowRate(merchantId: string, from: DateTime, to: DateTime): Promise<BaseResponse<StatisticsOperationsNoShowRateDto>>;
|
|
3533
|
+
getScanTimeDistribution(merchantId: string, from: DateTime, to: DateTime): Promise<BaseResponse<StatisticsOperationsScanTimeDistributionDto>>;
|
|
3534
|
+
getStewardLeaderboard(merchantId: string, from: DateTime, to: DateTime): Promise<BaseResponse<StatisticsOperationsStewardDto[]>>;
|
|
3535
|
+
getStockUtilization(merchantId: string, from: DateTime, to: DateTime): Promise<BaseResponse<StatisticsOperationsStockUtilizationDto[]>>;
|
|
2962
3536
|
}
|
|
2963
3537
|
//#endregion
|
|
2964
3538
|
//#region src/service/MerchantStatisticsOverviewService.d.ts
|
|
@@ -2966,18 +3540,39 @@ declare class MerchantStatisticsOverviewService extends BaseService {
|
|
|
2966
3540
|
getBestRevenueMonth(merchantId: string): Promise<BaseResponse<StatisticsOverviewBestRevenueMonthDto>>;
|
|
2967
3541
|
getEventPerformance(merchantId: string): Promise<BaseResponse<StatisticsOverviewEventPerformanceDto>>;
|
|
2968
3542
|
getKeyPerformanceIndicators(merchantId: string): Promise<BaseResponse<StatisticsOverviewKPIsDto>>;
|
|
2969
|
-
getRevenueAnalysis(merchantId: string): Promise<BaseResponse<
|
|
3543
|
+
getRevenueAnalysis(merchantId: string): Promise<BaseResponse<StatisticsChartDto>>;
|
|
2970
3544
|
getRevenueMonthComparison(merchantId: string): Promise<BaseResponse<StatisticsTrendDto<CostDto>>>;
|
|
3545
|
+
getTopShops(merchantId: string): Promise<BaseResponse<StatisticsOverviewTopShopDto[]>>;
|
|
3546
|
+
getCancellationFunnel(merchantId: string): Promise<BaseResponse<StatisticsOverviewCancellationFunnelDto>>;
|
|
3547
|
+
getReservationConversionRate(merchantId: string): Promise<BaseResponse<StatisticsOverviewReservationConversionRateDto>>;
|
|
3548
|
+
}
|
|
3549
|
+
//#endregion
|
|
3550
|
+
//#region src/service/MerchantStatisticsRefundsService.d.ts
|
|
3551
|
+
declare class MerchantStatisticsRefundsService extends BaseService {
|
|
3552
|
+
getOverview(merchantId: string, from: DateTime, to: DateTime): Promise<BaseResponse<StatisticsRefundsOverviewDto>>;
|
|
3553
|
+
getRefundRateTrend(merchantId: string, from: DateTime, to: DateTime): Promise<BaseResponse<StatisticsChartDto>>;
|
|
3554
|
+
getReasonsDistribution(merchantId: string, from: DateTime, to: DateTime): Promise<BaseResponse<StatisticsPieChartDto>>;
|
|
3555
|
+
getTopEvents(merchantId: string, from: DateTime, to: DateTime): Promise<BaseResponse<StatisticsRefundsTopEventDto[]>>;
|
|
3556
|
+
getVelocity(merchantId: string, from: DateTime, to: DateTime): Promise<BaseResponse<StatisticsRefundsVelocityDto>>;
|
|
3557
|
+
getAmountDistribution(merchantId: string, from: DateTime, to: DateTime): Promise<BaseResponse<StatisticsRefundsAmountDistributionDto>>;
|
|
3558
|
+
getNetRevenueTrend(merchantId: string, from: DateTime, to: DateTime): Promise<BaseResponse<StatisticsChartDto>>;
|
|
2971
3559
|
}
|
|
2972
3560
|
//#endregion
|
|
2973
3561
|
//#region src/service/MerchantStatisticsSalesService.d.ts
|
|
2974
3562
|
declare class MerchantStatisticsSalesService extends BaseService {
|
|
2975
3563
|
getLifetimeTotals(merchantId: string): Promise<BaseResponse<StatisticsSalesLifetimeTotalsDto>>;
|
|
2976
|
-
getPaymentMethodsChart(merchantId: string, from: DateTime, to: DateTime): Promise<BaseResponse<
|
|
3564
|
+
getPaymentMethodsChart(merchantId: string, from: DateTime, to: DateTime): Promise<BaseResponse<StatisticsPieChartDto>>;
|
|
2977
3565
|
getPurchaseBehavior(merchantId: string, from: DateTime, to: DateTime): Promise<BaseResponse<StatisticsSalesPurchaseBehaviorDto>>;
|
|
2978
|
-
getRevenueTrend(merchantId: string, from: DateTime, to: DateTime): Promise<BaseResponse<
|
|
2979
|
-
getSalesByDayOfWeek(merchantId: string, from: DateTime, to: DateTime): Promise<BaseResponse<
|
|
3566
|
+
getRevenueTrend(merchantId: string, from: DateTime, to: DateTime): Promise<BaseResponse<StatisticsChartDto>>;
|
|
3567
|
+
getSalesByDayOfWeek(merchantId: string, from: DateTime, to: DateTime): Promise<BaseResponse<StatisticsChartDto>>;
|
|
2980
3568
|
getTransactionSuccessRate(merchantId: string, from: DateTime, to: DateTime): Promise<BaseResponse<StatisticsSalesTransactionSuccessRateDto>>;
|
|
3569
|
+
getDiscountEfficacy(merchantId: string, from: DateTime, to: DateTime): Promise<BaseResponse<StatisticsSalesDiscountEfficacyDto>>;
|
|
3570
|
+
getCartAbandonmentTrend(merchantId: string, from: DateTime, to: DateTime): Promise<BaseResponse<StatisticsChartDto>>;
|
|
3571
|
+
getOrderValueDistribution(merchantId: string, from: DateTime, to: DateTime): Promise<BaseResponse<StatisticsSalesOrderValueDistributionDto>>;
|
|
3572
|
+
getFailedTransactionReasons(merchantId: string, from: DateTime, to: DateTime): Promise<BaseResponse<StatisticsSalesFailedTransactionReasonDto[]>>;
|
|
3573
|
+
getOrderOriginDistribution(merchantId: string, from: DateTime, to: DateTime): Promise<BaseResponse<StatisticsPieChartDto>>;
|
|
3574
|
+
getRepeatPurchaseVelocity(merchantId: string, from: DateTime, to: DateTime): Promise<BaseResponse<StatisticsSalesRepeatPurchaseVelocityDto>>;
|
|
3575
|
+
getAverageTicketPriceTrend(merchantId: string, from: DateTime, to: DateTime): Promise<BaseResponse<StatisticsChartDto>>;
|
|
2981
3576
|
}
|
|
2982
3577
|
//#endregion
|
|
2983
3578
|
//#region src/service/MerchantAiChatService.d.ts
|
|
@@ -3150,5 +3745,5 @@ declare function export_default$2<T, U>(value: U, adapter: (value: U) => T): T;
|
|
|
3150
3745
|
//#region src/util/optionalArray.d.ts
|
|
3151
3746
|
declare function export_default$3<T>(value: object[], adapter: (value: object) => T): T[] | null;
|
|
3152
3747
|
//#endregion
|
|
3153
|
-
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,
|
|
3748
|
+
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, 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 emptyNull, export_default$1 as jsonBlob, export_default$2 as optional, export_default$3 as optionalArray, parseEmailTemplate, serializeBlocks };
|
|
3154
3749
|
//# sourceMappingURL=index.d.mts.map
|