@gen3/core 0.11.24 → 0.11.25
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/cjs/index.js +98 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/dts/features/guppy/guppySlice.d.ts +375 -1
- package/dist/dts/features/guppy/guppySlice.d.ts.map +1 -1
- package/dist/dts/features/guppy/processing.d.ts +3 -3
- package/dist/dts/features/guppy/processing.d.ts.map +1 -1
- package/dist/dts/types/index.d.ts +16 -0
- package/dist/dts/types/index.d.ts.map +1 -1
- package/dist/esm/index.js +93 -2
- package/dist/esm/index.js.map +1 -1
- package/dist/index.d.ts +396 -4
- package/package.json +2 -2
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Fetcher, SWRResponse } from 'swr';
|
|
2
|
-
import { AggregationsData, JSONObject } from '../../types';
|
|
2
|
+
import { AggregationsData, JSONObject, StatsData } from '../../types';
|
|
3
3
|
import { Accessibility } from '../../constants';
|
|
4
4
|
import { FilterSet } from '../filters';
|
|
5
5
|
import { guppyApiSliceRequest } from './guppyApi';
|
|
@@ -31,6 +31,7 @@ interface QueryAggsParams {
|
|
|
31
31
|
fields: ReadonlyArray<string>;
|
|
32
32
|
filters: FilterSet;
|
|
33
33
|
accessibility?: Accessibility;
|
|
34
|
+
filterSelf?: boolean;
|
|
34
35
|
}
|
|
35
36
|
interface QueryForSubAggsParams {
|
|
36
37
|
type: string;
|
|
@@ -53,11 +54,13 @@ interface QueryForFileCountSummaryParams {
|
|
|
53
54
|
accessibility?: Accessibility;
|
|
54
55
|
}
|
|
55
56
|
export declare const histogramQueryStrForEachField: (field: string) => string;
|
|
57
|
+
export declare const statsQueryStrForEachField: (field: string) => string;
|
|
56
58
|
export declare const nestedHistogramQueryStrForEachField: (mainField: string, numericAggAsText: boolean) => string;
|
|
57
59
|
export declare const rawDataQueryStrForEachField: (field: string) => string;
|
|
58
60
|
export declare const useGetArrayTypes: () => import("../..").JSONValue;
|
|
59
61
|
export declare const useGetIndexFields: (index: string) => any;
|
|
60
62
|
export declare const buildGetAggregationQuery: (type: string, fields: ReadonlyArray<string>, filters: FilterSet, accessibility?: Accessibility, filterSelf?: boolean) => GraphQLQuery;
|
|
63
|
+
export declare const buildGetStatsAggregationQuery: (type: string, fields: ReadonlyArray<string>, filters: FilterSet, accessibility?: Accessibility, filterSelf?: boolean) => GraphQLQuery;
|
|
61
64
|
export declare const useGetRawDataAndTotalCountsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
62
65
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
63
66
|
originalArgs?: undefined | undefined;
|
|
@@ -1378,6 +1381,377 @@ export declare const useGetRawDataAndTotalCountsQuery: <R extends Record<string,
|
|
|
1378
1381
|
reset: () => void;
|
|
1379
1382
|
}, {
|
|
1380
1383
|
lastArg: QueryAggsParams;
|
|
1384
|
+
}], useGetStatsAggregationsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
1385
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1386
|
+
originalArgs?: undefined | undefined;
|
|
1387
|
+
data?: undefined | undefined;
|
|
1388
|
+
error?: undefined | undefined;
|
|
1389
|
+
requestId?: undefined | undefined;
|
|
1390
|
+
endpointName?: string | undefined;
|
|
1391
|
+
startedTimeStamp?: undefined | undefined;
|
|
1392
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
1393
|
+
} & {
|
|
1394
|
+
currentData?: StatsData | undefined;
|
|
1395
|
+
isUninitialized: false;
|
|
1396
|
+
isLoading: false;
|
|
1397
|
+
isFetching: false;
|
|
1398
|
+
isSuccess: false;
|
|
1399
|
+
isError: false;
|
|
1400
|
+
}, "isUninitialized"> & {
|
|
1401
|
+
isUninitialized: true;
|
|
1402
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<QueryAggsParams, (query: guppyApiSliceRequest, api: import("@reduxjs/toolkit/query").BaseQueryApi) => Promise<{
|
|
1403
|
+
data: any;
|
|
1404
|
+
error?: undefined;
|
|
1405
|
+
} | {
|
|
1406
|
+
error: unknown;
|
|
1407
|
+
data?: undefined;
|
|
1408
|
+
}>, never, StatsData, "guppy", any>> & {
|
|
1409
|
+
currentData?: StatsData | undefined;
|
|
1410
|
+
isUninitialized: false;
|
|
1411
|
+
isLoading: false;
|
|
1412
|
+
isFetching: false;
|
|
1413
|
+
isSuccess: false;
|
|
1414
|
+
isError: false;
|
|
1415
|
+
}, {
|
|
1416
|
+
isLoading: true;
|
|
1417
|
+
isFetching: boolean;
|
|
1418
|
+
data: undefined;
|
|
1419
|
+
} | ({
|
|
1420
|
+
isSuccess: true;
|
|
1421
|
+
isFetching: true;
|
|
1422
|
+
error: undefined;
|
|
1423
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<QueryAggsParams, (query: guppyApiSliceRequest, api: import("@reduxjs/toolkit/query").BaseQueryApi) => Promise<{
|
|
1424
|
+
data: any;
|
|
1425
|
+
error?: undefined;
|
|
1426
|
+
} | {
|
|
1427
|
+
error: unknown;
|
|
1428
|
+
data?: undefined;
|
|
1429
|
+
}>, never, StatsData, "guppy", any>> & {
|
|
1430
|
+
currentData?: StatsData | undefined;
|
|
1431
|
+
isUninitialized: false;
|
|
1432
|
+
isLoading: false;
|
|
1433
|
+
isFetching: false;
|
|
1434
|
+
isSuccess: false;
|
|
1435
|
+
isError: false;
|
|
1436
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
1437
|
+
isSuccess: true;
|
|
1438
|
+
isFetching: false;
|
|
1439
|
+
error: undefined;
|
|
1440
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<QueryAggsParams, (query: guppyApiSliceRequest, api: import("@reduxjs/toolkit/query").BaseQueryApi) => Promise<{
|
|
1441
|
+
data: any;
|
|
1442
|
+
error?: undefined;
|
|
1443
|
+
} | {
|
|
1444
|
+
error: unknown;
|
|
1445
|
+
data?: undefined;
|
|
1446
|
+
}>, never, StatsData, "guppy", any>> & {
|
|
1447
|
+
currentData?: StatsData | undefined;
|
|
1448
|
+
isUninitialized: false;
|
|
1449
|
+
isLoading: false;
|
|
1450
|
+
isFetching: false;
|
|
1451
|
+
isSuccess: false;
|
|
1452
|
+
isError: false;
|
|
1453
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
1454
|
+
isError: true;
|
|
1455
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<QueryAggsParams, (query: guppyApiSliceRequest, api: import("@reduxjs/toolkit/query").BaseQueryApi) => Promise<{
|
|
1456
|
+
data: any;
|
|
1457
|
+
error?: undefined;
|
|
1458
|
+
} | {
|
|
1459
|
+
error: unknown;
|
|
1460
|
+
data?: undefined;
|
|
1461
|
+
}>, never, StatsData, "guppy", any>> & {
|
|
1462
|
+
currentData?: StatsData | undefined;
|
|
1463
|
+
isUninitialized: false;
|
|
1464
|
+
isLoading: false;
|
|
1465
|
+
isFetching: false;
|
|
1466
|
+
isSuccess: false;
|
|
1467
|
+
isError: false;
|
|
1468
|
+
}, "error">>)>> & {
|
|
1469
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
1470
|
+
}>(arg: typeof import("@reduxjs/toolkit/query").skipToken | QueryAggsParams, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
|
|
1471
|
+
skip?: boolean;
|
|
1472
|
+
refetchOnMountOrArgChange?: boolean | number;
|
|
1473
|
+
} & {
|
|
1474
|
+
skip?: boolean;
|
|
1475
|
+
selectFromResult?: ((state: import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
1476
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1477
|
+
originalArgs?: undefined | undefined;
|
|
1478
|
+
data?: undefined | undefined;
|
|
1479
|
+
error?: undefined | undefined;
|
|
1480
|
+
requestId?: undefined | undefined;
|
|
1481
|
+
endpointName?: string | undefined;
|
|
1482
|
+
startedTimeStamp?: undefined | undefined;
|
|
1483
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
1484
|
+
} & {
|
|
1485
|
+
currentData?: StatsData | undefined;
|
|
1486
|
+
isUninitialized: false;
|
|
1487
|
+
isLoading: false;
|
|
1488
|
+
isFetching: false;
|
|
1489
|
+
isSuccess: false;
|
|
1490
|
+
isError: false;
|
|
1491
|
+
}, "isUninitialized"> & {
|
|
1492
|
+
isUninitialized: true;
|
|
1493
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<QueryAggsParams, (query: guppyApiSliceRequest, api: import("@reduxjs/toolkit/query").BaseQueryApi) => Promise<{
|
|
1494
|
+
data: any;
|
|
1495
|
+
error?: undefined;
|
|
1496
|
+
} | {
|
|
1497
|
+
error: unknown;
|
|
1498
|
+
data?: undefined;
|
|
1499
|
+
}>, never, StatsData, "guppy", any>> & {
|
|
1500
|
+
currentData?: StatsData | undefined;
|
|
1501
|
+
isUninitialized: false;
|
|
1502
|
+
isLoading: false;
|
|
1503
|
+
isFetching: false;
|
|
1504
|
+
isSuccess: false;
|
|
1505
|
+
isError: false;
|
|
1506
|
+
}, {
|
|
1507
|
+
isLoading: true;
|
|
1508
|
+
isFetching: boolean;
|
|
1509
|
+
data: undefined;
|
|
1510
|
+
} | ({
|
|
1511
|
+
isSuccess: true;
|
|
1512
|
+
isFetching: true;
|
|
1513
|
+
error: undefined;
|
|
1514
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<QueryAggsParams, (query: guppyApiSliceRequest, api: import("@reduxjs/toolkit/query").BaseQueryApi) => Promise<{
|
|
1515
|
+
data: any;
|
|
1516
|
+
error?: undefined;
|
|
1517
|
+
} | {
|
|
1518
|
+
error: unknown;
|
|
1519
|
+
data?: undefined;
|
|
1520
|
+
}>, never, StatsData, "guppy", any>> & {
|
|
1521
|
+
currentData?: StatsData | undefined;
|
|
1522
|
+
isUninitialized: false;
|
|
1523
|
+
isLoading: false;
|
|
1524
|
+
isFetching: false;
|
|
1525
|
+
isSuccess: false;
|
|
1526
|
+
isError: false;
|
|
1527
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
1528
|
+
isSuccess: true;
|
|
1529
|
+
isFetching: false;
|
|
1530
|
+
error: undefined;
|
|
1531
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<QueryAggsParams, (query: guppyApiSliceRequest, api: import("@reduxjs/toolkit/query").BaseQueryApi) => Promise<{
|
|
1532
|
+
data: any;
|
|
1533
|
+
error?: undefined;
|
|
1534
|
+
} | {
|
|
1535
|
+
error: unknown;
|
|
1536
|
+
data?: undefined;
|
|
1537
|
+
}>, never, StatsData, "guppy", any>> & {
|
|
1538
|
+
currentData?: StatsData | undefined;
|
|
1539
|
+
isUninitialized: false;
|
|
1540
|
+
isLoading: false;
|
|
1541
|
+
isFetching: false;
|
|
1542
|
+
isSuccess: false;
|
|
1543
|
+
isError: false;
|
|
1544
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
1545
|
+
isError: true;
|
|
1546
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<QueryAggsParams, (query: guppyApiSliceRequest, api: import("@reduxjs/toolkit/query").BaseQueryApi) => Promise<{
|
|
1547
|
+
data: any;
|
|
1548
|
+
error?: undefined;
|
|
1549
|
+
} | {
|
|
1550
|
+
error: unknown;
|
|
1551
|
+
data?: undefined;
|
|
1552
|
+
}>, never, StatsData, "guppy", any>> & {
|
|
1553
|
+
currentData?: StatsData | undefined;
|
|
1554
|
+
isUninitialized: false;
|
|
1555
|
+
isLoading: false;
|
|
1556
|
+
isFetching: false;
|
|
1557
|
+
isSuccess: false;
|
|
1558
|
+
isError: false;
|
|
1559
|
+
}, "error">>)>> & {
|
|
1560
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
1561
|
+
}) => R) | undefined;
|
|
1562
|
+
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
1563
|
+
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<QueryAggsParams, (query: guppyApiSliceRequest, api: import("@reduxjs/toolkit/query").BaseQueryApi) => Promise<{
|
|
1564
|
+
data: any;
|
|
1565
|
+
error?: undefined;
|
|
1566
|
+
} | {
|
|
1567
|
+
error: unknown;
|
|
1568
|
+
data?: undefined;
|
|
1569
|
+
}>, never, StatsData, "guppy", any>>;
|
|
1570
|
+
}, useLazyGetStatsAggregationsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
1571
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1572
|
+
originalArgs?: undefined | undefined;
|
|
1573
|
+
data?: undefined | undefined;
|
|
1574
|
+
error?: undefined | undefined;
|
|
1575
|
+
requestId?: undefined | undefined;
|
|
1576
|
+
endpointName?: string | undefined;
|
|
1577
|
+
startedTimeStamp?: undefined | undefined;
|
|
1578
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
1579
|
+
} & {
|
|
1580
|
+
currentData?: StatsData | undefined;
|
|
1581
|
+
isUninitialized: false;
|
|
1582
|
+
isLoading: false;
|
|
1583
|
+
isFetching: false;
|
|
1584
|
+
isSuccess: false;
|
|
1585
|
+
isError: false;
|
|
1586
|
+
}, "isUninitialized"> & {
|
|
1587
|
+
isUninitialized: true;
|
|
1588
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<QueryAggsParams, (query: guppyApiSliceRequest, api: import("@reduxjs/toolkit/query").BaseQueryApi) => Promise<{
|
|
1589
|
+
data: any;
|
|
1590
|
+
error?: undefined;
|
|
1591
|
+
} | {
|
|
1592
|
+
error: unknown;
|
|
1593
|
+
data?: undefined;
|
|
1594
|
+
}>, never, StatsData, "guppy", any>> & {
|
|
1595
|
+
currentData?: StatsData | undefined;
|
|
1596
|
+
isUninitialized: false;
|
|
1597
|
+
isLoading: false;
|
|
1598
|
+
isFetching: false;
|
|
1599
|
+
isSuccess: false;
|
|
1600
|
+
isError: false;
|
|
1601
|
+
}, {
|
|
1602
|
+
isLoading: true;
|
|
1603
|
+
isFetching: boolean;
|
|
1604
|
+
data: undefined;
|
|
1605
|
+
} | ({
|
|
1606
|
+
isSuccess: true;
|
|
1607
|
+
isFetching: true;
|
|
1608
|
+
error: undefined;
|
|
1609
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<QueryAggsParams, (query: guppyApiSliceRequest, api: import("@reduxjs/toolkit/query").BaseQueryApi) => Promise<{
|
|
1610
|
+
data: any;
|
|
1611
|
+
error?: undefined;
|
|
1612
|
+
} | {
|
|
1613
|
+
error: unknown;
|
|
1614
|
+
data?: undefined;
|
|
1615
|
+
}>, never, StatsData, "guppy", any>> & {
|
|
1616
|
+
currentData?: StatsData | undefined;
|
|
1617
|
+
isUninitialized: false;
|
|
1618
|
+
isLoading: false;
|
|
1619
|
+
isFetching: false;
|
|
1620
|
+
isSuccess: false;
|
|
1621
|
+
isError: false;
|
|
1622
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
1623
|
+
isSuccess: true;
|
|
1624
|
+
isFetching: false;
|
|
1625
|
+
error: undefined;
|
|
1626
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<QueryAggsParams, (query: guppyApiSliceRequest, api: import("@reduxjs/toolkit/query").BaseQueryApi) => Promise<{
|
|
1627
|
+
data: any;
|
|
1628
|
+
error?: undefined;
|
|
1629
|
+
} | {
|
|
1630
|
+
error: unknown;
|
|
1631
|
+
data?: undefined;
|
|
1632
|
+
}>, never, StatsData, "guppy", any>> & {
|
|
1633
|
+
currentData?: StatsData | undefined;
|
|
1634
|
+
isUninitialized: false;
|
|
1635
|
+
isLoading: false;
|
|
1636
|
+
isFetching: false;
|
|
1637
|
+
isSuccess: false;
|
|
1638
|
+
isError: false;
|
|
1639
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
1640
|
+
isError: true;
|
|
1641
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<QueryAggsParams, (query: guppyApiSliceRequest, api: import("@reduxjs/toolkit/query").BaseQueryApi) => Promise<{
|
|
1642
|
+
data: any;
|
|
1643
|
+
error?: undefined;
|
|
1644
|
+
} | {
|
|
1645
|
+
error: unknown;
|
|
1646
|
+
data?: undefined;
|
|
1647
|
+
}>, never, StatsData, "guppy", any>> & {
|
|
1648
|
+
currentData?: StatsData | undefined;
|
|
1649
|
+
isUninitialized: false;
|
|
1650
|
+
isLoading: false;
|
|
1651
|
+
isFetching: false;
|
|
1652
|
+
isSuccess: false;
|
|
1653
|
+
isError: false;
|
|
1654
|
+
}, "error">>)>> & {
|
|
1655
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
1656
|
+
}>(options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & Omit<{
|
|
1657
|
+
skip?: boolean;
|
|
1658
|
+
selectFromResult?: ((state: import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
1659
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1660
|
+
originalArgs?: undefined | undefined;
|
|
1661
|
+
data?: undefined | undefined;
|
|
1662
|
+
error?: undefined | undefined;
|
|
1663
|
+
requestId?: undefined | undefined;
|
|
1664
|
+
endpointName?: string | undefined;
|
|
1665
|
+
startedTimeStamp?: undefined | undefined;
|
|
1666
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
1667
|
+
} & {
|
|
1668
|
+
currentData?: StatsData | undefined;
|
|
1669
|
+
isUninitialized: false;
|
|
1670
|
+
isLoading: false;
|
|
1671
|
+
isFetching: false;
|
|
1672
|
+
isSuccess: false;
|
|
1673
|
+
isError: false;
|
|
1674
|
+
}, "isUninitialized"> & {
|
|
1675
|
+
isUninitialized: true;
|
|
1676
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<QueryAggsParams, (query: guppyApiSliceRequest, api: import("@reduxjs/toolkit/query").BaseQueryApi) => Promise<{
|
|
1677
|
+
data: any;
|
|
1678
|
+
error?: undefined;
|
|
1679
|
+
} | {
|
|
1680
|
+
error: unknown;
|
|
1681
|
+
data?: undefined;
|
|
1682
|
+
}>, never, StatsData, "guppy", any>> & {
|
|
1683
|
+
currentData?: StatsData | undefined;
|
|
1684
|
+
isUninitialized: false;
|
|
1685
|
+
isLoading: false;
|
|
1686
|
+
isFetching: false;
|
|
1687
|
+
isSuccess: false;
|
|
1688
|
+
isError: false;
|
|
1689
|
+
}, {
|
|
1690
|
+
isLoading: true;
|
|
1691
|
+
isFetching: boolean;
|
|
1692
|
+
data: undefined;
|
|
1693
|
+
} | ({
|
|
1694
|
+
isSuccess: true;
|
|
1695
|
+
isFetching: true;
|
|
1696
|
+
error: undefined;
|
|
1697
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<QueryAggsParams, (query: guppyApiSliceRequest, api: import("@reduxjs/toolkit/query").BaseQueryApi) => Promise<{
|
|
1698
|
+
data: any;
|
|
1699
|
+
error?: undefined;
|
|
1700
|
+
} | {
|
|
1701
|
+
error: unknown;
|
|
1702
|
+
data?: undefined;
|
|
1703
|
+
}>, never, StatsData, "guppy", any>> & {
|
|
1704
|
+
currentData?: StatsData | undefined;
|
|
1705
|
+
isUninitialized: false;
|
|
1706
|
+
isLoading: false;
|
|
1707
|
+
isFetching: false;
|
|
1708
|
+
isSuccess: false;
|
|
1709
|
+
isError: false;
|
|
1710
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
1711
|
+
isSuccess: true;
|
|
1712
|
+
isFetching: false;
|
|
1713
|
+
error: undefined;
|
|
1714
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<QueryAggsParams, (query: guppyApiSliceRequest, api: import("@reduxjs/toolkit/query").BaseQueryApi) => Promise<{
|
|
1715
|
+
data: any;
|
|
1716
|
+
error?: undefined;
|
|
1717
|
+
} | {
|
|
1718
|
+
error: unknown;
|
|
1719
|
+
data?: undefined;
|
|
1720
|
+
}>, never, StatsData, "guppy", any>> & {
|
|
1721
|
+
currentData?: StatsData | undefined;
|
|
1722
|
+
isUninitialized: false;
|
|
1723
|
+
isLoading: false;
|
|
1724
|
+
isFetching: false;
|
|
1725
|
+
isSuccess: false;
|
|
1726
|
+
isError: false;
|
|
1727
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
1728
|
+
isError: true;
|
|
1729
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<QueryAggsParams, (query: guppyApiSliceRequest, api: import("@reduxjs/toolkit/query").BaseQueryApi) => Promise<{
|
|
1730
|
+
data: any;
|
|
1731
|
+
error?: undefined;
|
|
1732
|
+
} | {
|
|
1733
|
+
error: unknown;
|
|
1734
|
+
data?: undefined;
|
|
1735
|
+
}>, never, StatsData, "guppy", any>> & {
|
|
1736
|
+
currentData?: StatsData | undefined;
|
|
1737
|
+
isUninitialized: false;
|
|
1738
|
+
isLoading: false;
|
|
1739
|
+
isFetching: false;
|
|
1740
|
+
isSuccess: false;
|
|
1741
|
+
isError: false;
|
|
1742
|
+
}, "error">>)>> & {
|
|
1743
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
1744
|
+
}) => R) | undefined;
|
|
1745
|
+
}, "skip">) | undefined) => [(arg: QueryAggsParams, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<QueryAggsParams, (query: guppyApiSliceRequest, api: import("@reduxjs/toolkit/query").BaseQueryApi) => Promise<{
|
|
1746
|
+
data: any;
|
|
1747
|
+
error?: undefined;
|
|
1748
|
+
} | {
|
|
1749
|
+
error: unknown;
|
|
1750
|
+
data?: undefined;
|
|
1751
|
+
}>, never, StatsData, "guppy", any>>, [R][R extends any ? 0 : never] & {
|
|
1752
|
+
reset: () => void;
|
|
1753
|
+
}, {
|
|
1754
|
+
lastArg: QueryAggsParams;
|
|
1381
1755
|
}], useGetSubAggsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
1382
1756
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1383
1757
|
originalArgs?: undefined | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"guppySlice.d.ts","sourceRoot":"","sources":["../../../../src/features/guppy/guppySlice.ts"],"names":[],"mappings":"AAAA,OAAe,EAAE,OAAO,EAAE,WAAW,EAAE,MAAM,KAAK,CAAC;AACnD,OAAO,EAAE,gBAAgB,EAAE,UAAU,EAAE,MAAM,aAAa,CAAC;
|
|
1
|
+
{"version":3,"file":"guppySlice.d.ts","sourceRoot":"","sources":["../../../../src/features/guppy/guppySlice.ts"],"names":[],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GACzB,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAC/B,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAClB,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EACT,CAAC"}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { AggregationsData } from '../../types';
|
|
1
|
+
import { AggregationsData, StatsData } from '../../types';
|
|
2
2
|
/**
|
|
3
3
|
* Processes the histogram data from the given input object and returns an aggregated data object.
|
|
4
4
|
*
|
|
5
5
|
* @param {Record<string, unknown>} data - The input data object containing histogram information.
|
|
6
6
|
* @returns {AggregationsData} An object containing the processed histogram data, structured as key-value pairs.
|
|
7
7
|
*/
|
|
8
|
-
export declare const processHistogramResponse: (data: Record<string, unknown>) =>
|
|
8
|
+
export declare const processHistogramResponse: <T extends AggregationsData | StatsData>(data: Record<string, unknown>) => T;
|
|
9
9
|
/**
|
|
10
10
|
* Adjusts histogram data in the provided object by rounding counts below a specified minimum value.
|
|
11
11
|
*
|
|
@@ -16,5 +16,5 @@ export declare const processHistogramResponse: (data: Record<string, unknown>) =
|
|
|
16
16
|
* @param {number} [minValue=100] - The minimum value of histogram counts. Counts below this value are replaced with `-1`.
|
|
17
17
|
* @returns {Record<string, unknown>} - A new object containing the modified histogram data while preserving other properties.
|
|
18
18
|
*/
|
|
19
|
-
export declare const roundHistogramResponse: (origData: Record<string, unknown>, minValue?: number) => Record<string,
|
|
19
|
+
export declare const roundHistogramResponse: (origData: Record<string, unknown>, minValue?: number) => Record<string, AggregationsData>;
|
|
20
20
|
//# sourceMappingURL=processing.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"processing.d.ts","sourceRoot":"","sources":["../../../../src/features/guppy/processing.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,MAAM,aAAa,CAAC;
|
|
1
|
+
{"version":3,"file":"processing.d.ts","sourceRoot":"","sources":["../../../../src/features/guppy/processing.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAG1D;;;;;GAKG;AACH,eAAO,MAAM,wBAAwB,GACnC,CAAC,SAAS,gBAAgB,GAAG,SAAS,EAEtC,MAAM,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,KAC5B,CA2BF,CAAC;AAEF;;;;;;;;;GASG;AACH,eAAO,MAAM,sBAAsB,GACjC,UAAU,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EACjC,WAAU,MAAY,KACrB,MAAM,CAAC,MAAM,EAAE,gBAAgB,CA8BjC,CAAC"}
|
|
@@ -17,6 +17,19 @@ export interface HistogramDataAsStringKey {
|
|
|
17
17
|
count: number;
|
|
18
18
|
}
|
|
19
19
|
export type HistogramDataArray = Array<HistogramData>;
|
|
20
|
+
export interface StatValues {
|
|
21
|
+
count: number | null;
|
|
22
|
+
min: number | null;
|
|
23
|
+
max: number | null;
|
|
24
|
+
avg: number | null;
|
|
25
|
+
sum: number | null;
|
|
26
|
+
stddev: number | null;
|
|
27
|
+
median: number | null;
|
|
28
|
+
p25: number | null;
|
|
29
|
+
p50: number | null;
|
|
30
|
+
p75: number | null;
|
|
31
|
+
}
|
|
32
|
+
export type StatsValuesArray = Array<Partial<StatValues>>;
|
|
20
33
|
export declare const isHistogramData: (data: any) => data is HistogramData;
|
|
21
34
|
export declare const isHistogramDataArray: (input: any) => input is HistogramData[];
|
|
22
35
|
export interface HistogramDataCollection {
|
|
@@ -28,6 +41,8 @@ export interface GuppyAggregationData {
|
|
|
28
41
|
}
|
|
29
42
|
export declare const isGuppyAggregationData: (obj: any) => obj is GuppyAggregationData;
|
|
30
43
|
export declare const isHistogramDataAnEnum: (data: unknown) => data is HistogramData;
|
|
44
|
+
export declare const isStatsValue: (item: unknown) => item is Partial<StatValues>;
|
|
45
|
+
export declare const isStatsValuesArray: (data: unknown) => data is StatsValuesArray;
|
|
31
46
|
export declare const isHistogramDataAArray: (data: any) => data is HistogramDataArray;
|
|
32
47
|
export declare const isHistogramDataArrayAnEnum: (data: any) => boolean;
|
|
33
48
|
export declare const isHistogramDataArrayARange: (data: any) => boolean;
|
|
@@ -57,6 +72,7 @@ export declare function isHttpStatusError(error: unknown): error is HttpError;
|
|
|
57
72
|
*/
|
|
58
73
|
export declare function isFetchParseError(error: unknown): error is ParsingError;
|
|
59
74
|
export type AggregationsData = Record<string, HistogramDataArray>;
|
|
75
|
+
export type StatsData = Record<string, StatsValuesArray>;
|
|
60
76
|
/**
|
|
61
77
|
* Represents the results of a guppy aggregation query
|
|
62
78
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/types/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,mBAAmB,EAAE,MAAM,wBAAwB,CAAC;AAE7D,MAAM,MAAM,SAAS,GACjB,MAAM,GACN,MAAM,GACN,OAAO,GACP,IAAI,GACJ,SAAS,GACT,UAAU,CAAC;AAEf,MAAM,WAAW,UAAU;IACzB,CAAC,GAAG,EAAE,MAAM,GAAG,SAAS,CAAC;CAC1B;AAED,MAAM,MAAM,SAAS,GAAG,SAAS,EAAE,CAAC;AAGpC,eAAO,MAAM,oBAAoB,GAAI,KAAK,GAAG,KAAG,GAAG,IAAI,CAAC,MAAM,EAAE,MAAM,CAMrE,CAAC;AAEF,eAAO,MAAM,YAAY,GAAI,MAAM,GAAG,KAAG,IAAI,IAAI,UAEhD,CAAC;AAEF,eAAO,MAAM,WAAW,GAAI,MAAM,OAAO,KAAG,IAAI,IAAI,SAQnD,CAAC;AAEF,eAAO,MAAM,gBAAgB,GAAI,MAAM,SAAS,KAAG,IAAI,IAAI,SAE1D,CAAC;AAEF,MAAM,WAAW,aAAa;IAC5B,GAAG,EAAE,MAAM,GAAG,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IAC/B,KAAK,EAAE,MAAM,CAAC;CACf;AAED,MAAM,WAAW,wBAAwB;IACvC,GAAG,EAAE,MAAM,CAAC;IACZ,KAAK,EAAE,MAAM,CAAC;CACf;AAED,MAAM,MAAM,kBAAkB,GAAG,KAAK,CAAC,aAAa,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/types/index.ts"],"names":[],"mappings":"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"}
|