@trackunit/filters-asset-filter-definitions 1.15.6 → 1.15.8
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/index.cjs.js +363 -19
- package/index.esm.js +358 -20
- package/package.json +5 -5
- package/src/defaultFilters/defaults/RentalContractCustomerParentExternalReferenceFilter.d.ts +21 -0
- package/src/defaultFilters/defaults/RentalContractCustomerParentNameFilter.d.ts +21 -0
- package/src/defaultFilters/defaults/index.d.ts +2 -0
- package/src/generated/graphql-api/gql.d.ts +2 -2
- package/src/generated/graphql-api/graphql.d.ts +46 -0
- package/src/generated/graphql-api/mock.d.ts +6 -0
- package/src/translation.d.ts +2 -2
package/index.esm.js
CHANGED
|
@@ -123,6 +123,8 @@ var defaultTranslations = {
|
|
|
123
123
|
"assetFilters.regions.WHOLE_WORLD": "Whole world",
|
|
124
124
|
"assetFilters.rentalActiveContractItemOffRentDatesDateRangeFilter.label": "Off rent date",
|
|
125
125
|
"assetFilters.rentalActiveContractItemOnRentDatesDateRangeFilter.label": "On rent date",
|
|
126
|
+
"assetFilters.rentalContractCustomerParentExternalReferenceFilter.label": "Customer parent external reference",
|
|
127
|
+
"assetFilters.rentalContractCustomerParentNameFilter.label": "Customer parent name",
|
|
126
128
|
"assetFilters.rentalContractOrderNumberFilter.label": "Order number",
|
|
127
129
|
"assetFilters.rentalContractReferenceCodeDescriptionFilter.label": "Reference code description",
|
|
128
130
|
"assetFilters.rentalContractReferenceCodeDescriptionFilter.searchPlaceholder": "Search by reference code description...",
|
|
@@ -350,7 +352,7 @@ const GET_ACCESS_MANAGEMENT_MODE_DESIRED_SUMMARY = gql `
|
|
|
350
352
|
}
|
|
351
353
|
}
|
|
352
354
|
`;
|
|
353
|
-
const FETCH_LIMIT$
|
|
355
|
+
const FETCH_LIMIT$d = 1000;
|
|
354
356
|
/**
|
|
355
357
|
Renders the Access Management Mode Filter view with the provided props.
|
|
356
358
|
|
|
@@ -364,7 +366,7 @@ const AccessManagementModeFilterView = ({ filterDefinition, filterState, filterB
|
|
|
364
366
|
const { data, loading } = useQuery(GET_ACCESS_MANAGEMENT_MODE_DESIRED_SUMMARY, {
|
|
365
367
|
fetchPolicy: "cache-first",
|
|
366
368
|
variables: {
|
|
367
|
-
limit: FETCH_LIMIT$
|
|
369
|
+
limit: FETCH_LIMIT$d,
|
|
368
370
|
filters: {
|
|
369
371
|
...activeFilters,
|
|
370
372
|
accessManagementDesiredModes: null, // Omit the filters own values so list shows options correctly
|
|
@@ -2386,6 +2388,168 @@ const GetFleetRentalContractReferenceCodesSummaryDocument = {
|
|
|
2386
2388
|
},
|
|
2387
2389
|
],
|
|
2388
2390
|
};
|
|
2391
|
+
const GetFleetRentalCustomerParentExternalReferenceSummaryDocument = {
|
|
2392
|
+
kind: "Document",
|
|
2393
|
+
definitions: [
|
|
2394
|
+
{
|
|
2395
|
+
kind: "OperationDefinition",
|
|
2396
|
+
operation: "query",
|
|
2397
|
+
name: { kind: "Name", value: "GetFleetRentalCustomerParentExternalReferenceSummary" },
|
|
2398
|
+
variableDefinitions: [
|
|
2399
|
+
{
|
|
2400
|
+
kind: "VariableDefinition",
|
|
2401
|
+
variable: { kind: "Variable", name: { kind: "Name", value: "filters" } },
|
|
2402
|
+
type: { kind: "NamedType", name: { kind: "Name", value: "AssetFiltersInput" } },
|
|
2403
|
+
},
|
|
2404
|
+
{
|
|
2405
|
+
kind: "VariableDefinition",
|
|
2406
|
+
variable: { kind: "Variable", name: { kind: "Name", value: "limit" } },
|
|
2407
|
+
type: { kind: "NonNullType", type: { kind: "NamedType", name: { kind: "Name", value: "Int" } } },
|
|
2408
|
+
},
|
|
2409
|
+
{
|
|
2410
|
+
kind: "VariableDefinition",
|
|
2411
|
+
variable: { kind: "Variable", name: { kind: "Name", value: "search" } },
|
|
2412
|
+
type: { kind: "NamedType", name: { kind: "Name", value: "String" } },
|
|
2413
|
+
},
|
|
2414
|
+
],
|
|
2415
|
+
selectionSet: {
|
|
2416
|
+
kind: "SelectionSet",
|
|
2417
|
+
selections: [
|
|
2418
|
+
{
|
|
2419
|
+
kind: "Field",
|
|
2420
|
+
name: { kind: "Name", value: "assetSummary" },
|
|
2421
|
+
arguments: [
|
|
2422
|
+
{
|
|
2423
|
+
kind: "Argument",
|
|
2424
|
+
name: { kind: "Name", value: "filters" },
|
|
2425
|
+
value: { kind: "Variable", name: { kind: "Name", value: "filters" } },
|
|
2426
|
+
},
|
|
2427
|
+
],
|
|
2428
|
+
selectionSet: {
|
|
2429
|
+
kind: "SelectionSet",
|
|
2430
|
+
selections: [
|
|
2431
|
+
{
|
|
2432
|
+
kind: "Field",
|
|
2433
|
+
name: { kind: "Name", value: "rentalContractCustomerParentExternalReferences" },
|
|
2434
|
+
arguments: [
|
|
2435
|
+
{
|
|
2436
|
+
kind: "Argument",
|
|
2437
|
+
name: { kind: "Name", value: "limit" },
|
|
2438
|
+
value: { kind: "Variable", name: { kind: "Name", value: "limit" } },
|
|
2439
|
+
},
|
|
2440
|
+
{
|
|
2441
|
+
kind: "Argument",
|
|
2442
|
+
name: { kind: "Name", value: "filter" },
|
|
2443
|
+
value: { kind: "Variable", name: { kind: "Name", value: "search" } },
|
|
2444
|
+
},
|
|
2445
|
+
],
|
|
2446
|
+
selectionSet: {
|
|
2447
|
+
kind: "SelectionSet",
|
|
2448
|
+
selections: [
|
|
2449
|
+
{ kind: "Field", name: { kind: "Name", value: "total" } },
|
|
2450
|
+
{
|
|
2451
|
+
kind: "Field",
|
|
2452
|
+
name: { kind: "Name", value: "summary" },
|
|
2453
|
+
selectionSet: {
|
|
2454
|
+
kind: "SelectionSet",
|
|
2455
|
+
selections: [
|
|
2456
|
+
{ kind: "Field", name: { kind: "Name", value: "key" } },
|
|
2457
|
+
{ kind: "Field", name: { kind: "Name", value: "count" } },
|
|
2458
|
+
],
|
|
2459
|
+
},
|
|
2460
|
+
},
|
|
2461
|
+
],
|
|
2462
|
+
},
|
|
2463
|
+
},
|
|
2464
|
+
],
|
|
2465
|
+
},
|
|
2466
|
+
},
|
|
2467
|
+
],
|
|
2468
|
+
},
|
|
2469
|
+
},
|
|
2470
|
+
],
|
|
2471
|
+
};
|
|
2472
|
+
const GetFleetRentalCustomerParentNameSummaryDocument = {
|
|
2473
|
+
kind: "Document",
|
|
2474
|
+
definitions: [
|
|
2475
|
+
{
|
|
2476
|
+
kind: "OperationDefinition",
|
|
2477
|
+
operation: "query",
|
|
2478
|
+
name: { kind: "Name", value: "GetFleetRentalCustomerParentNameSummary" },
|
|
2479
|
+
variableDefinitions: [
|
|
2480
|
+
{
|
|
2481
|
+
kind: "VariableDefinition",
|
|
2482
|
+
variable: { kind: "Variable", name: { kind: "Name", value: "filters" } },
|
|
2483
|
+
type: { kind: "NamedType", name: { kind: "Name", value: "AssetFiltersInput" } },
|
|
2484
|
+
},
|
|
2485
|
+
{
|
|
2486
|
+
kind: "VariableDefinition",
|
|
2487
|
+
variable: { kind: "Variable", name: { kind: "Name", value: "limit" } },
|
|
2488
|
+
type: { kind: "NonNullType", type: { kind: "NamedType", name: { kind: "Name", value: "Int" } } },
|
|
2489
|
+
},
|
|
2490
|
+
{
|
|
2491
|
+
kind: "VariableDefinition",
|
|
2492
|
+
variable: { kind: "Variable", name: { kind: "Name", value: "search" } },
|
|
2493
|
+
type: { kind: "NamedType", name: { kind: "Name", value: "String" } },
|
|
2494
|
+
},
|
|
2495
|
+
],
|
|
2496
|
+
selectionSet: {
|
|
2497
|
+
kind: "SelectionSet",
|
|
2498
|
+
selections: [
|
|
2499
|
+
{
|
|
2500
|
+
kind: "Field",
|
|
2501
|
+
name: { kind: "Name", value: "assetSummary" },
|
|
2502
|
+
arguments: [
|
|
2503
|
+
{
|
|
2504
|
+
kind: "Argument",
|
|
2505
|
+
name: { kind: "Name", value: "filters" },
|
|
2506
|
+
value: { kind: "Variable", name: { kind: "Name", value: "filters" } },
|
|
2507
|
+
},
|
|
2508
|
+
],
|
|
2509
|
+
selectionSet: {
|
|
2510
|
+
kind: "SelectionSet",
|
|
2511
|
+
selections: [
|
|
2512
|
+
{
|
|
2513
|
+
kind: "Field",
|
|
2514
|
+
name: { kind: "Name", value: "rentalContractCustomerParentNames" },
|
|
2515
|
+
arguments: [
|
|
2516
|
+
{
|
|
2517
|
+
kind: "Argument",
|
|
2518
|
+
name: { kind: "Name", value: "limit" },
|
|
2519
|
+
value: { kind: "Variable", name: { kind: "Name", value: "limit" } },
|
|
2520
|
+
},
|
|
2521
|
+
{
|
|
2522
|
+
kind: "Argument",
|
|
2523
|
+
name: { kind: "Name", value: "filter" },
|
|
2524
|
+
value: { kind: "Variable", name: { kind: "Name", value: "search" } },
|
|
2525
|
+
},
|
|
2526
|
+
],
|
|
2527
|
+
selectionSet: {
|
|
2528
|
+
kind: "SelectionSet",
|
|
2529
|
+
selections: [
|
|
2530
|
+
{ kind: "Field", name: { kind: "Name", value: "total" } },
|
|
2531
|
+
{
|
|
2532
|
+
kind: "Field",
|
|
2533
|
+
name: { kind: "Name", value: "summary" },
|
|
2534
|
+
selectionSet: {
|
|
2535
|
+
kind: "SelectionSet",
|
|
2536
|
+
selections: [
|
|
2537
|
+
{ kind: "Field", name: { kind: "Name", value: "key" } },
|
|
2538
|
+
{ kind: "Field", name: { kind: "Name", value: "count" } },
|
|
2539
|
+
],
|
|
2540
|
+
},
|
|
2541
|
+
},
|
|
2542
|
+
],
|
|
2543
|
+
},
|
|
2544
|
+
},
|
|
2545
|
+
],
|
|
2546
|
+
},
|
|
2547
|
+
},
|
|
2548
|
+
],
|
|
2549
|
+
},
|
|
2550
|
+
},
|
|
2551
|
+
],
|
|
2552
|
+
};
|
|
2389
2553
|
const GetAccessManagementModeDesiredSummaryDocument = {
|
|
2390
2554
|
kind: "Document",
|
|
2391
2555
|
definitions: [
|
|
@@ -2866,7 +3030,7 @@ const useAssetTypeFilter = ({ showTypes } = { showTypes: ALL_TYPES }) => {
|
|
|
2866
3030
|
return result;
|
|
2867
3031
|
};
|
|
2868
3032
|
|
|
2869
|
-
const FETCH_LIMIT$
|
|
3033
|
+
const FETCH_LIMIT$c = 1000;
|
|
2870
3034
|
/**
|
|
2871
3035
|
* React component for rendering the brand filter.
|
|
2872
3036
|
*
|
|
@@ -2882,7 +3046,7 @@ const BrandFilterView = (props) => {
|
|
|
2882
3046
|
const { data, loading } = useQuery(GetFleetBrandsSummaryDocument, {
|
|
2883
3047
|
fetchPolicy: "cache-first",
|
|
2884
3048
|
variables: {
|
|
2885
|
-
limit: FETCH_LIMIT$
|
|
3049
|
+
limit: FETCH_LIMIT$c,
|
|
2886
3050
|
search: debouncedSearch.trim(),
|
|
2887
3051
|
filters: {
|
|
2888
3052
|
...activeFilters,
|
|
@@ -2899,7 +3063,7 @@ const BrandFilterView = (props) => {
|
|
|
2899
3063
|
return result;
|
|
2900
3064
|
}, [data?.assetSummary?.brands?.summary, getMachineTypeTranslation]);
|
|
2901
3065
|
useEffect(() => {
|
|
2902
|
-
setShowRequestMoreUseSearch(options.length === FETCH_LIMIT$
|
|
3066
|
+
setShowRequestMoreUseSearch(options.length === FETCH_LIMIT$c);
|
|
2903
3067
|
}, [options]);
|
|
2904
3068
|
return (jsx(DefaultCheckboxFilter, { ...props, customSearch: { value: searchText, onChange: setSearchText, onClear: () => setSearchText("") }, loading: loading, options: options, showRequestMoreUseSearch: showRequestMoreUseSearch }));
|
|
2905
3069
|
};
|
|
@@ -2998,7 +3162,7 @@ const useCriticalityFilter = () => {
|
|
|
2998
3162
|
return result;
|
|
2999
3163
|
};
|
|
3000
3164
|
|
|
3001
|
-
const FETCH_LIMIT$
|
|
3165
|
+
const FETCH_LIMIT$b = 1000;
|
|
3002
3166
|
/**
|
|
3003
3167
|
* Custom hook to fetch customer summary data based on active filters and search text.
|
|
3004
3168
|
*
|
|
@@ -3013,7 +3177,7 @@ const useCustomerData = (filterValues, customerId) => {
|
|
|
3013
3177
|
const { data, loading } = useQuery(GetCustomerIdSummaryDocument, {
|
|
3014
3178
|
fetchPolicy: "cache-first",
|
|
3015
3179
|
variables: {
|
|
3016
|
-
limit: FETCH_LIMIT$
|
|
3180
|
+
limit: FETCH_LIMIT$b,
|
|
3017
3181
|
search: debouncedSearch,
|
|
3018
3182
|
filters: {
|
|
3019
3183
|
...activeFilters,
|
|
@@ -3425,7 +3589,7 @@ const useFollowedFilter = () => {
|
|
|
3425
3589
|
return result;
|
|
3426
3590
|
};
|
|
3427
3591
|
|
|
3428
|
-
const FETCH_LIMIT$
|
|
3592
|
+
const FETCH_LIMIT$a = 1000;
|
|
3429
3593
|
/**
|
|
3430
3594
|
* The GroupIdsFilterView component is a filter view for group IDs.
|
|
3431
3595
|
* It utilizes a checkbox filter with a search feature to display and manage group selections.
|
|
@@ -3441,7 +3605,7 @@ const GroupIdsFilterView = (props) => {
|
|
|
3441
3605
|
const { data, loading } = useQuery(GetFleetGroupSummaryDocument, {
|
|
3442
3606
|
fetchPolicy: "cache-first",
|
|
3443
3607
|
variables: {
|
|
3444
|
-
limit: FETCH_LIMIT$
|
|
3608
|
+
limit: FETCH_LIMIT$a,
|
|
3445
3609
|
search: debouncedSearch,
|
|
3446
3610
|
filters: {
|
|
3447
3611
|
...activeFilters,
|
|
@@ -3465,7 +3629,7 @@ const GroupIdsFilterView = (props) => {
|
|
|
3465
3629
|
return result;
|
|
3466
3630
|
}, [data?.assetSummary?.groups, props.hasCount]);
|
|
3467
3631
|
useEffect(() => {
|
|
3468
|
-
setShowRequestMoreUseSearch(options.length === FETCH_LIMIT$
|
|
3632
|
+
setShowRequestMoreUseSearch(options.length === FETCH_LIMIT$a);
|
|
3469
3633
|
}, [options]);
|
|
3470
3634
|
return (jsx(DefaultCheckboxFilter, { ...props, customSearch: { value: searchText, onChange: setSearchText, onClear: () => setSearchText("") }, loading: loading, options: options, showRequestMoreUseSearch: showRequestMoreUseSearch }));
|
|
3471
3635
|
};
|
|
@@ -3926,7 +4090,7 @@ const useMetadataCompletenessFilter = ({ isDefault } = {}) => {
|
|
|
3926
4090
|
return result;
|
|
3927
4091
|
};
|
|
3928
4092
|
|
|
3929
|
-
const FETCH_LIMIT$
|
|
4093
|
+
const FETCH_LIMIT$9 = 1000;
|
|
3930
4094
|
/**
|
|
3931
4095
|
* Renders a custom model filter component, allowing filtering of active assets by models.
|
|
3932
4096
|
* It also provides search functionality and controls for managing filtered results.
|
|
@@ -3943,7 +4107,7 @@ const ModelsFilterView = (props) => {
|
|
|
3943
4107
|
const { data, loading } = useQuery(GetFleetModelsSummaryDocument, {
|
|
3944
4108
|
fetchPolicy: "cache-first",
|
|
3945
4109
|
variables: {
|
|
3946
|
-
limit: FETCH_LIMIT$
|
|
4110
|
+
limit: FETCH_LIMIT$9,
|
|
3947
4111
|
search: debouncedSearch,
|
|
3948
4112
|
filters: {
|
|
3949
4113
|
...activeFilters,
|
|
@@ -3960,7 +4124,7 @@ const ModelsFilterView = (props) => {
|
|
|
3960
4124
|
return result;
|
|
3961
4125
|
}, [data?.assetSummary?.models?.summary, getMachineTypeTranslation]);
|
|
3962
4126
|
useEffect(() => {
|
|
3963
|
-
setShowRequestMoreUseSearch(options.length === FETCH_LIMIT$
|
|
4127
|
+
setShowRequestMoreUseSearch(options.length === FETCH_LIMIT$9);
|
|
3964
4128
|
}, [options]);
|
|
3965
4129
|
return (jsx(DefaultCheckboxFilter, { ...props, customSearch: { value: searchText, onChange: setSearchText, onClear: () => setSearchText("") }, loading: loading, options: options, showRequestMoreUseSearch: showRequestMoreUseSearch }));
|
|
3966
4130
|
};
|
|
@@ -3985,7 +4149,7 @@ const useModelsFilter = () => {
|
|
|
3985
4149
|
return result;
|
|
3986
4150
|
};
|
|
3987
4151
|
|
|
3988
|
-
const FETCH_LIMIT$
|
|
4152
|
+
const FETCH_LIMIT$8 = 1000;
|
|
3989
4153
|
/**
|
|
3990
4154
|
* Component for rendering the Owner Account IDs filter view within the filter bar.
|
|
3991
4155
|
*
|
|
@@ -4000,7 +4164,7 @@ const OwnerAccountIdsFilterView = (props) => {
|
|
|
4000
4164
|
const { data, loading } = useQuery(GetFleetOwnerAccountSummaryDocument, {
|
|
4001
4165
|
fetchPolicy: "cache-first",
|
|
4002
4166
|
variables: {
|
|
4003
|
-
limit: FETCH_LIMIT$
|
|
4167
|
+
limit: FETCH_LIMIT$8,
|
|
4004
4168
|
search: debouncedSearch,
|
|
4005
4169
|
filters: {
|
|
4006
4170
|
...activeFilters,
|
|
@@ -4017,7 +4181,7 @@ const OwnerAccountIdsFilterView = (props) => {
|
|
|
4017
4181
|
return result;
|
|
4018
4182
|
}, [data?.assetSummary?.ownerAccounts?.summary]);
|
|
4019
4183
|
useEffect(() => {
|
|
4020
|
-
setShowRequestMoreUseSearch(options.length === FETCH_LIMIT$
|
|
4184
|
+
setShowRequestMoreUseSearch(options.length === FETCH_LIMIT$8);
|
|
4021
4185
|
}, [options]);
|
|
4022
4186
|
return (jsx(DefaultCheckboxFilter, { ...props, customSearch: { value: searchText, onChange: setSearchText, onClear: () => setSearchText("") }, loading: loading, options: options, showRequestMoreUseSearch: showRequestMoreUseSearch }));
|
|
4023
4187
|
};
|
|
@@ -4133,7 +4297,7 @@ const usePeriodFilter = () => {
|
|
|
4133
4297
|
return result;
|
|
4134
4298
|
};
|
|
4135
4299
|
|
|
4136
|
-
const FETCH_LIMIT$
|
|
4300
|
+
const FETCH_LIMIT$7 = 1000;
|
|
4137
4301
|
/**
|
|
4138
4302
|
* Production Year Filter View component.
|
|
4139
4303
|
*
|
|
@@ -4154,7 +4318,7 @@ const ProductionYearFilterView = ({ filterDefinition, filterState, filterBarActi
|
|
|
4154
4318
|
const debouncedSearch = useDebounce(searchText, { delay: 500 });
|
|
4155
4319
|
const { data, loading } = useQuery(GetFleetProductionYearsSummaryDocument, {
|
|
4156
4320
|
variables: {
|
|
4157
|
-
limit: FETCH_LIMIT$
|
|
4321
|
+
limit: FETCH_LIMIT$7,
|
|
4158
4322
|
search: debouncedSearch,
|
|
4159
4323
|
filters: {
|
|
4160
4324
|
...activeFilters,
|
|
@@ -4171,7 +4335,7 @@ const ProductionYearFilterView = ({ filterDefinition, filterState, filterBarActi
|
|
|
4171
4335
|
return result;
|
|
4172
4336
|
}, [data?.assetSummary?.productionYears?.summary, t]);
|
|
4173
4337
|
useEffect(() => {
|
|
4174
|
-
setShowRequestMoreUseSearch(options.length === FETCH_LIMIT$
|
|
4338
|
+
setShowRequestMoreUseSearch(options.length === FETCH_LIMIT$7);
|
|
4175
4339
|
}, [options]);
|
|
4176
4340
|
return (jsx(DefaultCheckboxFilter, { ...props, customSearch: { value: searchText, onChange: setSearchText, onClear: () => setSearchText("") }, filterBarActions: filterBarActions, filterDefinition: filterDefinition, filterState: filterState, loading: loading, options: options, showRequestMoreUseSearch: showRequestMoreUseSearch }));
|
|
4177
4341
|
};
|
|
@@ -4258,6 +4422,142 @@ const useRentalActiveContractItemOnRentDatesDateRangeFilter = ({ showInFilterBar
|
|
|
4258
4422
|
return result;
|
|
4259
4423
|
};
|
|
4260
4424
|
|
|
4425
|
+
const FETCH_LIMIT$6 = 1000;
|
|
4426
|
+
/**
|
|
4427
|
+
* Rental contract customer parent external reference filter view component.
|
|
4428
|
+
*
|
|
4429
|
+
* This component provides an interface to select rental contract customer parent external references.
|
|
4430
|
+
* It fetches data from a GraphQL query and integrates with the filter bar's filtering logic.
|
|
4431
|
+
*
|
|
4432
|
+
* @param {FilterViewProps<Array<string>>} props - The props for the component.
|
|
4433
|
+
* @returns {Element} The rendered component.
|
|
4434
|
+
*/
|
|
4435
|
+
const RentalContractCustomerParentExternalReferenceFilterView = (props) => {
|
|
4436
|
+
const [t] = useTranslation();
|
|
4437
|
+
const activeFilters = useActiveAssetFilters(props.filterState.values);
|
|
4438
|
+
const [showRequestMoreUseSearch, setShowRequestMoreUseSearch] = useState(false);
|
|
4439
|
+
const [searchText, setSearchText] = useState("");
|
|
4440
|
+
const debouncedSearch = useDebounce(searchText, { delay: 500 });
|
|
4441
|
+
const { data, loading } = useQuery(GetFleetRentalCustomerParentExternalReferenceSummaryDocument, {
|
|
4442
|
+
fetchPolicy: "cache-first",
|
|
4443
|
+
context: {
|
|
4444
|
+
headers: {
|
|
4445
|
+
"TU-PREVIEW": "dragonfruit-monty,KOREAN-BELL",
|
|
4446
|
+
},
|
|
4447
|
+
},
|
|
4448
|
+
variables: {
|
|
4449
|
+
limit: FETCH_LIMIT$6,
|
|
4450
|
+
search: debouncedSearch,
|
|
4451
|
+
filters: {
|
|
4452
|
+
...activeFilters,
|
|
4453
|
+
rentalActiveContractFilters: {
|
|
4454
|
+
...activeFilters.rentalActiveContractFilters,
|
|
4455
|
+
customerParentExternalReferences: null,
|
|
4456
|
+
},
|
|
4457
|
+
},
|
|
4458
|
+
},
|
|
4459
|
+
});
|
|
4460
|
+
const options = useMemo(() => {
|
|
4461
|
+
return (data?.assetSummary?.rentalContractCustomerParentExternalReferences?.summary.map(edge => ({
|
|
4462
|
+
key: edge.key || "unknown",
|
|
4463
|
+
count: edge.count,
|
|
4464
|
+
label: (edge.key && edge.key !== "UNDEFINED") ? edge.key : t(`machine.types.Unknown`),
|
|
4465
|
+
})) ?? []);
|
|
4466
|
+
}, [data, t]);
|
|
4467
|
+
useEffect(() => {
|
|
4468
|
+
setShowRequestMoreUseSearch(options.length === FETCH_LIMIT$6);
|
|
4469
|
+
}, [options]);
|
|
4470
|
+
return (jsx(DefaultCheckboxFilter, { ...props, customSearch: { value: searchText, onChange: setSearchText, onClear: () => setSearchText("") }, loading: loading, options: options, showRequestMoreUseSearch: showRequestMoreUseSearch }));
|
|
4471
|
+
};
|
|
4472
|
+
/**
|
|
4473
|
+
* Rental contract customer parent external reference filter definition
|
|
4474
|
+
*
|
|
4475
|
+
* @returns {StringArrayFilterDefinition} Rental contract customer parent external reference filter definition
|
|
4476
|
+
*/
|
|
4477
|
+
const useRentalContractCustomerParentExternalReferenceFilter = (props) => {
|
|
4478
|
+
const [t] = useTranslation();
|
|
4479
|
+
const result = useMemo(() => {
|
|
4480
|
+
return {
|
|
4481
|
+
filterKey: "rentalContractCustomerParentExternalReference",
|
|
4482
|
+
type: "stringArray",
|
|
4483
|
+
group: "CUSTOMERS",
|
|
4484
|
+
title: t("assetFilters.rentalContractCustomerParentExternalReferenceFilter.label"),
|
|
4485
|
+
showInFilterBar: props?.showInFilterBar ? props.showInFilterBar : () => true,
|
|
4486
|
+
valueAsText: values => values.map(value => value),
|
|
4487
|
+
component: properties => jsx(RentalContractCustomerParentExternalReferenceFilterView, { ...properties }),
|
|
4488
|
+
};
|
|
4489
|
+
}, [props?.showInFilterBar, t]);
|
|
4490
|
+
return result;
|
|
4491
|
+
};
|
|
4492
|
+
|
|
4493
|
+
const FETCH_LIMIT$5 = 1000;
|
|
4494
|
+
/**
|
|
4495
|
+
* Rental contract customer parent name filter view component.
|
|
4496
|
+
*
|
|
4497
|
+
* This component provides an interface to select rental contract customer parent names.
|
|
4498
|
+
* It fetches data from a GraphQL query and integrates with the filter bar's filtering logic.
|
|
4499
|
+
*
|
|
4500
|
+
* @param {FilterViewProps<Array<string>>} props - The props for the component.
|
|
4501
|
+
* @returns {Element} The rendered component.
|
|
4502
|
+
*/
|
|
4503
|
+
const RentalContractCustomerParentNameFilterView = (props) => {
|
|
4504
|
+
const [t] = useTranslation();
|
|
4505
|
+
const activeFilters = useActiveAssetFilters(props.filterState.values);
|
|
4506
|
+
const [showRequestMoreUseSearch, setShowRequestMoreUseSearch] = useState(false);
|
|
4507
|
+
const [searchText, setSearchText] = useState("");
|
|
4508
|
+
const debouncedSearch = useDebounce(searchText, { delay: 500 });
|
|
4509
|
+
const { data, loading } = useQuery(GetFleetRentalCustomerParentNameSummaryDocument, {
|
|
4510
|
+
fetchPolicy: "cache-first",
|
|
4511
|
+
context: {
|
|
4512
|
+
headers: {
|
|
4513
|
+
"TU-PREVIEW": "dragonfruit-monty,KOREAN-BELL",
|
|
4514
|
+
},
|
|
4515
|
+
},
|
|
4516
|
+
variables: {
|
|
4517
|
+
limit: FETCH_LIMIT$5,
|
|
4518
|
+
search: debouncedSearch,
|
|
4519
|
+
filters: {
|
|
4520
|
+
...activeFilters,
|
|
4521
|
+
rentalActiveContractFilters: {
|
|
4522
|
+
...activeFilters.rentalActiveContractFilters,
|
|
4523
|
+
customerParentNames: null,
|
|
4524
|
+
},
|
|
4525
|
+
},
|
|
4526
|
+
},
|
|
4527
|
+
});
|
|
4528
|
+
const options = useMemo(() => {
|
|
4529
|
+
return (data?.assetSummary?.rentalContractCustomerParentNames?.summary.map(edge => ({
|
|
4530
|
+
key: edge.key || "unknown",
|
|
4531
|
+
count: edge.count,
|
|
4532
|
+
label: (edge.key && edge.key !== "UNDEFINED") ? edge.key : t(`machine.types.Unknown`),
|
|
4533
|
+
})) ?? []);
|
|
4534
|
+
}, [data, t]);
|
|
4535
|
+
useEffect(() => {
|
|
4536
|
+
setShowRequestMoreUseSearch(options.length === FETCH_LIMIT$5);
|
|
4537
|
+
}, [options]);
|
|
4538
|
+
return (jsx(DefaultCheckboxFilter, { ...props, customSearch: { value: searchText, onChange: setSearchText, onClear: () => setSearchText("") }, loading: loading, options: options, showRequestMoreUseSearch: showRequestMoreUseSearch }));
|
|
4539
|
+
};
|
|
4540
|
+
/**
|
|
4541
|
+
* Rental contract customer parent name filter definition
|
|
4542
|
+
*
|
|
4543
|
+
* @returns {StringArrayFilterDefinition} Rental contract customer parent name filter definition
|
|
4544
|
+
*/
|
|
4545
|
+
const useRentalContractCustomerParentNameFilter = (props) => {
|
|
4546
|
+
const [t] = useTranslation();
|
|
4547
|
+
const result = useMemo(() => {
|
|
4548
|
+
return {
|
|
4549
|
+
filterKey: "rentalContractCustomerParentName",
|
|
4550
|
+
type: "stringArray",
|
|
4551
|
+
group: "CUSTOMERS",
|
|
4552
|
+
title: t("assetFilters.rentalContractCustomerParentNameFilter.label"),
|
|
4553
|
+
showInFilterBar: props?.showInFilterBar ? props.showInFilterBar : () => true,
|
|
4554
|
+
valueAsText: values => values.map(value => value),
|
|
4555
|
+
component: properties => jsx(RentalContractCustomerParentNameFilterView, { ...properties }),
|
|
4556
|
+
};
|
|
4557
|
+
}, [props?.showInFilterBar, t]);
|
|
4558
|
+
return result;
|
|
4559
|
+
};
|
|
4560
|
+
|
|
4261
4561
|
const FETCH_LIMIT$4 = 1000;
|
|
4262
4562
|
/**
|
|
4263
4563
|
* Rental contract order numbers filter view component.
|
|
@@ -5624,6 +5924,44 @@ const mockForGetFleetRentalContractReferenceCodesSummaryQuery = (variables, data
|
|
|
5624
5924
|
},
|
|
5625
5925
|
}, data || {}));
|
|
5626
5926
|
};
|
|
5927
|
+
const mockForGetFleetRentalCustomerParentExternalReferenceSummaryQuery = (variables, data) => {
|
|
5928
|
+
return queryFor(GetFleetRentalCustomerParentExternalReferenceSummaryDocument, variables, mergeDeep({
|
|
5929
|
+
__typename: "Query",
|
|
5930
|
+
assetSummary: {
|
|
5931
|
+
__typename: "AssetSummary",
|
|
5932
|
+
rentalContractCustomerParentExternalReferences: {
|
|
5933
|
+
__typename: "MetadataSummary",
|
|
5934
|
+
total: 6273236744536064,
|
|
5935
|
+
summary: [
|
|
5936
|
+
{
|
|
5937
|
+
__typename: "Summary",
|
|
5938
|
+
key: "subito",
|
|
5939
|
+
count: 6273236744536064,
|
|
5940
|
+
},
|
|
5941
|
+
],
|
|
5942
|
+
},
|
|
5943
|
+
},
|
|
5944
|
+
}, data || {}));
|
|
5945
|
+
};
|
|
5946
|
+
const mockForGetFleetRentalCustomerParentNameSummaryQuery = (variables, data) => {
|
|
5947
|
+
return queryFor(GetFleetRentalCustomerParentNameSummaryDocument, variables, mergeDeep({
|
|
5948
|
+
__typename: "Query",
|
|
5949
|
+
assetSummary: {
|
|
5950
|
+
__typename: "AssetSummary",
|
|
5951
|
+
rentalContractCustomerParentNames: {
|
|
5952
|
+
__typename: "MetadataSummary",
|
|
5953
|
+
total: 6273236744536064,
|
|
5954
|
+
summary: [
|
|
5955
|
+
{
|
|
5956
|
+
__typename: "Summary",
|
|
5957
|
+
key: "subito",
|
|
5958
|
+
count: 6273236744536064,
|
|
5959
|
+
},
|
|
5960
|
+
],
|
|
5961
|
+
},
|
|
5962
|
+
},
|
|
5963
|
+
}, data || {}));
|
|
5964
|
+
};
|
|
5627
5965
|
const mockForGetAccessManagementModeDesiredSummaryQuery = (variables, data) => {
|
|
5628
5966
|
return queryFor(GetAccessManagementModeDesiredSummaryDocument, variables, mergeDeep({
|
|
5629
5967
|
__typename: "Query",
|
|
@@ -5837,4 +6175,4 @@ const useDefaultAssetFilterBarDefinition = () => {
|
|
|
5837
6175
|
*/
|
|
5838
6176
|
setupLibraryTranslations();
|
|
5839
6177
|
|
|
5840
|
-
export { ALL_TYPES, AccessManagementMode, ActiveFilterFiltersView, ActivityFiltersView, AreaView, AssetActivityState, AssetIdsFiltersView, AssetLastSeen, AssetTypesFilterView, BrandFilterView, ClearItemButton, CriticalityFiltersView, CustomerIdsFilterView, DayPeriod, FollowedFiltersView, GetFleetGroupSummaryDocument, GroupIdsFilterView, HourIntervalFilterView, InsightsAfterTreatmentDieselExhaustFluidTankLevelFilterView, InsightsBatteryChargerStateFilterView, InsightsBatteryPotentialFilterView, InsightsBatteryStateOfChargePercentFilterView, InsightsFuelLevelFilterView, LastSeenFiltersView, MetadataCompletenessFilterView, ModelsFilterView, OwnerAccountIdsFilterView, PartnerFilterView, PeriodFilterView, ProductionYearFilterView, RentalContractOrderNumberFilterView, RentalContractReferenceCodeDescriptionFilterView, RentalContractReferenceCodeFilterView, SERVICE_PLAN_STATUSES_TO_SHOW, SearchFilterInline, ServicePanStatusesFiltersView, SiteDepotOwnershipIdsFilterView, SiteIdsFilterView, SiteStatus, SiteStatusFilterView, SiteTypeSFS, SiteTypesFilterView, TelematicsConnectedFiltersView, TypesFilterView, areaFilterInternalGeoJsonGeometrySchema, areaFilterInternalSchema, assetTypeConst, mapActivityToLabelId, mapMetadataCompletenessToLabelId, metadataCompleteness, metadataCompletenessOptions, mockForDeviceHealthIssueCategorySummariesQuery, mockForDeviceHealthIssueStatusSummariesQuery, mockForDeviceHealthIssueTypeSummariesQuery, mockForGetAccessManagementModeDesiredSummaryQuery, mockForGetAssetTelematicsDeviceConnectionSummaryQuery, mockForGetCustomFieldSummaryQuery, mockForGetCustomerIdSummaryQuery, mockForGetFleetActivitySummaryQuery, mockForGetFleetAssetTypesSummaryQuery, mockForGetFleetBrandsSummaryQuery, mockForGetFleetCriticalitySummaryQuery, mockForGetFleetGroupSummaryQuery, mockForGetFleetModelsSummaryQuery, mockForGetFleetOwnerAccountSummaryQuery, mockForGetFleetProductionYearsSummaryQuery, mockForGetFleetRentalContractOrderNumberSummaryQuery, mockForGetFleetRentalContractReferenceCodesSummaryQuery, mockForGetFleetServicePlanAssignmentsSummaryQuery, mockForGetFleetServicePlanStatusesSummaryQuery, mockForGetFleetServiceProvidersSummaryQuery, mockForGetFleetSiteTypeSummaryQuery, mockForGetFleetTypesSummaryQuery, mockForGetMetadataCompletenessSummaryQuery, mockForGetPlaceAutocompletePredictionsQuery, mockForGetPlaceDetailsQuery, mockForGetServicePlanNamesSummaryQuery, mockForGetSiteDepotOwnershipIdSummaryQuery, mockForGetSiteIdSummaryQuery, placePredictionSchema, placeSchema, sortSiteTypeSummary, useAccessManagementModeFilter, useActiveFilterFilter, useActivityFilter, useAreaFilter, useAssetIdsFilter, useAssetTypeFilter, useBrandFilter, useCriticalityFilter, useCustomerIdsFilter, useDefaultAssetFilterBarDefinition, useDeviceHealthIssueCategoryFilter, useDeviceHealthIssueStatusFilter, useDeviceHealthIssueTypeFilter, useFollowedFilter, useGroupIdsFilter, useHourIntervalFilter, useInsightsAfterTreatmentDieselExhaustFluidTankLevelFilter, useInsightsBatteryChargerStateFilter, useInsightsBatteryPotentialFilter, useInsightsBatteryStateOfChargePercentFilter, useInsightsFuelLevelFilter, useLastSeenFilter, useMetadataCompletenessFilter, useModelsFilter, useOwnerAccountIdsFilter, usePartnerFilter, usePeriodFilter, usePlacesSearch, useProductionYearFilter, useRentalActiveContractItemOffRentDatesDateRangeFilter, useRentalActiveContractItemOnRentDatesDateRangeFilter, useRentalContractOrderNumberFilter, useRentalContractReferenceCodeDescriptionFilter, useRentalContractReferenceCodeFilter, useSearchFilter, useServicePlanStatusFilter, useSiteDepotOwnershipIdsFilter, useSiteIdsFilter, useSiteStatusFilter, useSiteTypeFilter, useTelematicsConnectedFilter, useTypesFilter };
|
|
6178
|
+
export { ALL_TYPES, AccessManagementMode, ActiveFilterFiltersView, ActivityFiltersView, AreaView, AssetActivityState, AssetIdsFiltersView, AssetLastSeen, AssetTypesFilterView, BrandFilterView, ClearItemButton, CriticalityFiltersView, CustomerIdsFilterView, DayPeriod, FollowedFiltersView, GetFleetGroupSummaryDocument, GroupIdsFilterView, HourIntervalFilterView, InsightsAfterTreatmentDieselExhaustFluidTankLevelFilterView, InsightsBatteryChargerStateFilterView, InsightsBatteryPotentialFilterView, InsightsBatteryStateOfChargePercentFilterView, InsightsFuelLevelFilterView, LastSeenFiltersView, MetadataCompletenessFilterView, ModelsFilterView, OwnerAccountIdsFilterView, PartnerFilterView, PeriodFilterView, ProductionYearFilterView, RentalContractCustomerParentExternalReferenceFilterView, RentalContractCustomerParentNameFilterView, RentalContractOrderNumberFilterView, RentalContractReferenceCodeDescriptionFilterView, RentalContractReferenceCodeFilterView, SERVICE_PLAN_STATUSES_TO_SHOW, SearchFilterInline, ServicePanStatusesFiltersView, SiteDepotOwnershipIdsFilterView, SiteIdsFilterView, SiteStatus, SiteStatusFilterView, SiteTypeSFS, SiteTypesFilterView, TelematicsConnectedFiltersView, TypesFilterView, areaFilterInternalGeoJsonGeometrySchema, areaFilterInternalSchema, assetTypeConst, mapActivityToLabelId, mapMetadataCompletenessToLabelId, metadataCompleteness, metadataCompletenessOptions, mockForDeviceHealthIssueCategorySummariesQuery, mockForDeviceHealthIssueStatusSummariesQuery, mockForDeviceHealthIssueTypeSummariesQuery, mockForGetAccessManagementModeDesiredSummaryQuery, mockForGetAssetTelematicsDeviceConnectionSummaryQuery, mockForGetCustomFieldSummaryQuery, mockForGetCustomerIdSummaryQuery, mockForGetFleetActivitySummaryQuery, mockForGetFleetAssetTypesSummaryQuery, mockForGetFleetBrandsSummaryQuery, mockForGetFleetCriticalitySummaryQuery, mockForGetFleetGroupSummaryQuery, mockForGetFleetModelsSummaryQuery, mockForGetFleetOwnerAccountSummaryQuery, mockForGetFleetProductionYearsSummaryQuery, mockForGetFleetRentalContractOrderNumberSummaryQuery, mockForGetFleetRentalContractReferenceCodesSummaryQuery, mockForGetFleetRentalCustomerParentExternalReferenceSummaryQuery, mockForGetFleetRentalCustomerParentNameSummaryQuery, mockForGetFleetServicePlanAssignmentsSummaryQuery, mockForGetFleetServicePlanStatusesSummaryQuery, mockForGetFleetServiceProvidersSummaryQuery, mockForGetFleetSiteTypeSummaryQuery, mockForGetFleetTypesSummaryQuery, mockForGetMetadataCompletenessSummaryQuery, mockForGetPlaceAutocompletePredictionsQuery, mockForGetPlaceDetailsQuery, mockForGetServicePlanNamesSummaryQuery, mockForGetSiteDepotOwnershipIdSummaryQuery, mockForGetSiteIdSummaryQuery, placePredictionSchema, placeSchema, sortSiteTypeSummary, useAccessManagementModeFilter, useActiveFilterFilter, useActivityFilter, useAreaFilter, useAssetIdsFilter, useAssetTypeFilter, useBrandFilter, useCriticalityFilter, useCustomerIdsFilter, useDefaultAssetFilterBarDefinition, useDeviceHealthIssueCategoryFilter, useDeviceHealthIssueStatusFilter, useDeviceHealthIssueTypeFilter, useFollowedFilter, useGroupIdsFilter, useHourIntervalFilter, useInsightsAfterTreatmentDieselExhaustFluidTankLevelFilter, useInsightsBatteryChargerStateFilter, useInsightsBatteryPotentialFilter, useInsightsBatteryStateOfChargePercentFilter, useInsightsFuelLevelFilter, useLastSeenFilter, useMetadataCompletenessFilter, useModelsFilter, useOwnerAccountIdsFilter, usePartnerFilter, usePeriodFilter, usePlacesSearch, useProductionYearFilter, useRentalActiveContractItemOffRentDatesDateRangeFilter, useRentalActiveContractItemOnRentDatesDateRangeFilter, useRentalContractCustomerParentExternalReferenceFilter, useRentalContractCustomerParentNameFilter, useRentalContractOrderNumberFilter, useRentalContractReferenceCodeDescriptionFilter, useRentalContractReferenceCodeFilter, useSearchFilter, useServicePlanStatusFilter, useSiteDepotOwnershipIdsFilter, useSiteIdsFilter, useSiteStatusFilter, useSiteTypeFilter, useTelematicsConnectedFilter, useTypesFilter };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trackunit/filters-asset-filter-definitions",
|
|
3
|
-
"version": "1.15.
|
|
3
|
+
"version": "1.15.8",
|
|
4
4
|
"repository": "https://github.com/Trackunit/manager",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"engines": {
|
|
@@ -15,12 +15,12 @@
|
|
|
15
15
|
"zod": "^3.23.8",
|
|
16
16
|
"string-ts": "^2.0.0",
|
|
17
17
|
"tailwind-merge": "^2.0.0",
|
|
18
|
-
"@trackunit/iris-app-build-utilities": "1.
|
|
19
|
-
"@trackunit/filters-filter-bar": "1.11.
|
|
18
|
+
"@trackunit/iris-app-build-utilities": "1.11.0",
|
|
19
|
+
"@trackunit/filters-filter-bar": "1.11.5",
|
|
20
20
|
"@trackunit/react-core-hooks": "1.10.3",
|
|
21
|
-
"@trackunit/react-filter-components": "1.10.
|
|
21
|
+
"@trackunit/react-filter-components": "1.10.5",
|
|
22
22
|
"@trackunit/react-form-components": "1.11.4",
|
|
23
|
-
"@trackunit/filters-graphql-hook": "1.14.
|
|
23
|
+
"@trackunit/filters-graphql-hook": "1.14.7",
|
|
24
24
|
"@trackunit/utilization-indicator": "1.10.4",
|
|
25
25
|
"@trackunit/geo-json-utils": "1.10.3",
|
|
26
26
|
"@trackunit/react-components": "1.14.4",
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { FilterViewProps, StringArrayFilterDefinition } from "@trackunit/filters-filter-bar";
|
|
2
|
+
/**
|
|
3
|
+
* Rental contract customer parent external reference filter view component.
|
|
4
|
+
*
|
|
5
|
+
* This component provides an interface to select rental contract customer parent external references.
|
|
6
|
+
* It fetches data from a GraphQL query and integrates with the filter bar's filtering logic.
|
|
7
|
+
*
|
|
8
|
+
* @param {FilterViewProps<Array<string>>} props - The props for the component.
|
|
9
|
+
* @returns {Element} The rendered component.
|
|
10
|
+
*/
|
|
11
|
+
export declare const RentalContractCustomerParentExternalReferenceFilterView: (props: FilterViewProps<Array<string>>) => import("react/jsx-runtime").JSX.Element;
|
|
12
|
+
interface FilterProps {
|
|
13
|
+
showInFilterBar?: () => boolean;
|
|
14
|
+
}
|
|
15
|
+
/**
|
|
16
|
+
* Rental contract customer parent external reference filter definition
|
|
17
|
+
*
|
|
18
|
+
* @returns {StringArrayFilterDefinition} Rental contract customer parent external reference filter definition
|
|
19
|
+
*/
|
|
20
|
+
export declare const useRentalContractCustomerParentExternalReferenceFilter: (props?: FilterProps) => StringArrayFilterDefinition;
|
|
21
|
+
export {};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { FilterViewProps, StringArrayFilterDefinition } from "@trackunit/filters-filter-bar";
|
|
2
|
+
/**
|
|
3
|
+
* Rental contract customer parent name filter view component.
|
|
4
|
+
*
|
|
5
|
+
* This component provides an interface to select rental contract customer parent names.
|
|
6
|
+
* It fetches data from a GraphQL query and integrates with the filter bar's filtering logic.
|
|
7
|
+
*
|
|
8
|
+
* @param {FilterViewProps<Array<string>>} props - The props for the component.
|
|
9
|
+
* @returns {Element} The rendered component.
|
|
10
|
+
*/
|
|
11
|
+
export declare const RentalContractCustomerParentNameFilterView: (props: FilterViewProps<Array<string>>) => import("react/jsx-runtime").JSX.Element;
|
|
12
|
+
interface FilterProps {
|
|
13
|
+
showInFilterBar?: () => boolean;
|
|
14
|
+
}
|
|
15
|
+
/**
|
|
16
|
+
* Rental contract customer parent name filter definition
|
|
17
|
+
*
|
|
18
|
+
* @returns {StringArrayFilterDefinition} Rental contract customer parent name filter definition
|
|
19
|
+
*/
|
|
20
|
+
export declare const useRentalContractCustomerParentNameFilter: (props?: FilterProps) => StringArrayFilterDefinition;
|
|
21
|
+
export {};
|
|
@@ -30,6 +30,8 @@ export * from "./ProductionYearFilter";
|
|
|
30
30
|
export * from "./refetchQueries";
|
|
31
31
|
export * from "./RentalActiveContractItemOffRentDatesDateRangeFilter";
|
|
32
32
|
export * from "./RentalActiveContractItemOnRentDatesDateRangeFilter";
|
|
33
|
+
export * from "./RentalContractCustomerParentExternalReferenceFilter";
|
|
34
|
+
export * from "./RentalContractCustomerParentNameFilter";
|
|
33
35
|
export * from "./RentalContractOrderNumberFilter";
|
|
34
36
|
export * from "./RentalContractReferenceCodeDescriptionFilter";
|
|
35
37
|
export * from "./RentalContractReferenceCodeFilter";
|