@trackunit/filters-asset-filter-definitions 0.0.17 → 0.0.23
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 +43 -43
- package/index.esm.js +43 -43
- package/package.json +1 -1
- package/src/defaultFilters/defaults/AssetTypeFilter.d.ts +5 -5
- package/src/generated/graphql-api/gql.d.ts +1 -1
- package/src/generated/graphql-api/graphql.d.ts +172 -172
- package/translation.cjs.js +5 -0
- package/translation.cjs10.js +5 -0
- package/translation.cjs11.js +5 -0
- package/translation.cjs12.js +5 -0
- package/translation.cjs13.js +5 -0
- package/translation.cjs14.js +5 -0
- package/translation.cjs15.js +5 -0
- package/translation.cjs16.js +5 -0
- package/translation.cjs17.js +5 -0
- package/translation.cjs2.js +5 -0
- package/translation.cjs3.js +5 -0
- package/translation.cjs4.js +5 -0
- package/translation.cjs5.js +5 -0
- package/translation.cjs6.js +5 -0
- package/translation.cjs7.js +5 -0
- package/translation.cjs8.js +5 -0
- package/translation.cjs9.js +5 -0
- package/translation.esm.js +5 -0
- package/translation.esm10.js +5 -0
- package/translation.esm11.js +5 -0
- package/translation.esm12.js +5 -0
- package/translation.esm13.js +5 -0
- package/translation.esm14.js +5 -0
- package/translation.esm15.js +5 -0
- package/translation.esm16.js +5 -0
- package/translation.esm17.js +5 -0
- package/translation.esm2.js +5 -0
- package/translation.esm3.js +5 -0
- package/translation.esm4.js +5 -0
- package/translation.esm5.js +5 -0
- package/translation.esm6.js +5 -0
- package/translation.esm7.js +5 -0
- package/translation.esm8.js +5 -0
- package/translation.esm9.js +5 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { TypedDocumentNode as DocumentNode } from "@graphql-typed-document-node/core";
|
|
2
2
|
import type { PublicIrisAppManifest } from "@trackunit/iris-app-api";
|
|
3
3
|
export type Maybe<T> = T | null;
|
|
4
|
-
export type InputMaybe<T> = Maybe<T
|
|
4
|
+
export type InputMaybe<T> = Maybe<T> | undefined;
|
|
5
5
|
export type Exact<T extends {
|
|
6
6
|
[key: string]: unknown;
|
|
7
7
|
}> = {
|
|
@@ -86,68 +86,68 @@ export type Scalars = {
|
|
|
86
86
|
};
|
|
87
87
|
};
|
|
88
88
|
export declare const assetActivityState: {
|
|
89
|
-
readonly
|
|
90
|
-
readonly
|
|
91
|
-
readonly
|
|
92
|
-
readonly
|
|
89
|
+
readonly IDLING: "IDLING";
|
|
90
|
+
readonly STOPPED: "STOPPED";
|
|
91
|
+
readonly UNKNOWN: "UNKNOWN";
|
|
92
|
+
readonly WORKING: "WORKING";
|
|
93
93
|
};
|
|
94
94
|
export type AssetActivityState = (typeof assetActivityState)[keyof typeof assetActivityState];
|
|
95
95
|
export declare const assetCriticalityState: {
|
|
96
|
-
readonly
|
|
97
|
-
readonly
|
|
98
|
-
readonly
|
|
96
|
+
readonly CRITICAL: "CRITICAL";
|
|
97
|
+
readonly LOW: "LOW";
|
|
98
|
+
readonly NONE: "NONE";
|
|
99
99
|
};
|
|
100
100
|
export type AssetCriticalityState = (typeof assetCriticalityState)[keyof typeof assetCriticalityState];
|
|
101
101
|
export declare const assetLastSeen: {
|
|
102
|
-
readonly
|
|
103
|
-
readonly
|
|
104
|
-
readonly
|
|
105
|
-
readonly
|
|
106
|
-
readonly
|
|
102
|
+
readonly LAST_7_DAYS: "LAST_7_DAYS";
|
|
103
|
+
readonly LAST_24_HOURS: "LAST_24_HOURS";
|
|
104
|
+
readonly LAST_30_DAYS: "LAST_30_DAYS";
|
|
105
|
+
readonly LAST_HOUR: "LAST_HOUR";
|
|
106
|
+
readonly OLDER_THAN_30_DAYS: "OLDER_THAN_30_DAYS";
|
|
107
107
|
};
|
|
108
108
|
export type AssetLastSeen = (typeof assetLastSeen)[keyof typeof assetLastSeen];
|
|
109
109
|
export declare const assetType: {
|
|
110
|
-
readonly
|
|
111
|
-
readonly
|
|
112
|
-
readonly
|
|
113
|
-
readonly
|
|
114
|
-
readonly
|
|
115
|
-
readonly
|
|
110
|
+
readonly ATTACHMENT: "ATTACHMENT";
|
|
111
|
+
readonly EQUIPMENT: "EQUIPMENT";
|
|
112
|
+
readonly GATEWAY: "GATEWAY";
|
|
113
|
+
readonly MACHINE: "MACHINE";
|
|
114
|
+
readonly OTHER: "OTHER";
|
|
115
|
+
readonly TOOL: "TOOL";
|
|
116
116
|
};
|
|
117
117
|
export type AssetType = (typeof assetType)[keyof typeof assetType];
|
|
118
118
|
export declare const customFieldOwnerType: {
|
|
119
|
-
readonly
|
|
120
|
-
readonly
|
|
121
|
-
readonly
|
|
119
|
+
readonly ACCOUNT: "ACCOUNT";
|
|
120
|
+
readonly IRIS_APP: "IRIS_APP";
|
|
121
|
+
readonly TRACKUNIT: "TRACKUNIT";
|
|
122
122
|
};
|
|
123
123
|
export type CustomFieldOwnerType = (typeof customFieldOwnerType)[keyof typeof customFieldOwnerType];
|
|
124
|
-
export declare const
|
|
125
|
-
readonly
|
|
126
|
-
readonly
|
|
127
|
-
readonly
|
|
128
|
-
readonly
|
|
129
|
-
readonly
|
|
130
|
-
readonly
|
|
131
|
-
readonly
|
|
132
|
-
readonly
|
|
133
|
-
};
|
|
134
|
-
export type
|
|
124
|
+
export declare const customerTypeSFS: {
|
|
125
|
+
readonly CONTRACTOR: "CONTRACTOR";
|
|
126
|
+
readonly DEALER: "DEALER";
|
|
127
|
+
readonly DISTRIBUTOR: "DISTRIBUTOR";
|
|
128
|
+
readonly NOT_ON_CUSTOMER: "NOT_ON_CUSTOMER";
|
|
129
|
+
readonly OEM: "OEM";
|
|
130
|
+
readonly OTHER: "OTHER";
|
|
131
|
+
readonly RENTAL: "RENTAL";
|
|
132
|
+
readonly SERVICE: "SERVICE";
|
|
133
|
+
};
|
|
134
|
+
export type CustomerTypeSFS = (typeof customerTypeSFS)[keyof typeof customerTypeSFS];
|
|
135
135
|
export declare const digitalKeyMode: {
|
|
136
|
-
readonly
|
|
137
|
-
readonly
|
|
138
|
-
readonly
|
|
139
|
-
readonly
|
|
140
|
-
readonly
|
|
141
|
-
readonly
|
|
142
|
-
readonly
|
|
143
|
-
readonly
|
|
144
|
-
readonly
|
|
145
|
-
readonly
|
|
136
|
+
readonly DISABLED: "DISABLED";
|
|
137
|
+
readonly LOCKED_FOR_ALL: "LOCKED_FOR_ALL";
|
|
138
|
+
readonly NEVER_INITIALIZED: "NEVER_INITIALIZED";
|
|
139
|
+
readonly UNKNOWN: "UNKNOWN";
|
|
140
|
+
readonly UNLOCKED_FOR_ALL: "UNLOCKED_FOR_ALL";
|
|
141
|
+
readonly UNLOCKED_FOR_ALL_FIXED: "UNLOCKED_FOR_ALL_FIXED";
|
|
142
|
+
readonly UNLOCKED_FOR_KEY: "UNLOCKED_FOR_KEY";
|
|
143
|
+
readonly UNLOCKED_FOR_KEY_AND_PIN: "UNLOCKED_FOR_KEY_AND_PIN";
|
|
144
|
+
readonly UNLOCKED_FOR_PIN: "UNLOCKED_FOR_PIN";
|
|
145
|
+
readonly UNSUPPORTED: "UNSUPPORTED";
|
|
146
146
|
};
|
|
147
147
|
export type DigitalKeyMode = (typeof digitalKeyMode)[keyof typeof digitalKeyMode];
|
|
148
148
|
export declare const metadataCompleteness: {
|
|
149
|
-
readonly
|
|
150
|
-
readonly
|
|
149
|
+
readonly COMPLETE: "COMPLETE";
|
|
150
|
+
readonly PARTIAL: "PARTIAL";
|
|
151
151
|
};
|
|
152
152
|
export type MetadataCompleteness = (typeof metadataCompleteness)[keyof typeof metadataCompleteness];
|
|
153
153
|
export declare const rentalStatus: {
|
|
@@ -164,32 +164,32 @@ export declare const rentalStatus: {
|
|
|
164
164
|
};
|
|
165
165
|
export type RentalStatus = (typeof rentalStatus)[keyof typeof rentalStatus];
|
|
166
166
|
export declare const servicePlanStatus: {
|
|
167
|
-
readonly
|
|
168
|
-
readonly
|
|
169
|
-
readonly
|
|
170
|
-
readonly
|
|
171
|
-
readonly
|
|
172
|
-
readonly
|
|
173
|
-
readonly
|
|
174
|
-
readonly
|
|
175
|
-
readonly
|
|
176
|
-
readonly
|
|
177
|
-
readonly
|
|
167
|
+
readonly COMPLETE: "COMPLETE";
|
|
168
|
+
readonly DRAFT: "DRAFT";
|
|
169
|
+
readonly FULLY_CONFIGURED: "FULLY_CONFIGURED";
|
|
170
|
+
readonly HAS_PLAN: "HAS_PLAN";
|
|
171
|
+
readonly HAS_SERVICE_PROVIDER: "HAS_SERVICE_PROVIDER";
|
|
172
|
+
readonly MISSING_PLAN: "MISSING_PLAN";
|
|
173
|
+
readonly MISSING_PROVIDER: "MISSING_PROVIDER";
|
|
174
|
+
readonly OVERDUE: "OVERDUE";
|
|
175
|
+
readonly PLANNED: "PLANNED";
|
|
176
|
+
readonly UNKNOWN: "UNKNOWN";
|
|
177
|
+
readonly UPCOMING: "UPCOMING";
|
|
178
178
|
};
|
|
179
179
|
export type ServicePlanStatus = (typeof servicePlanStatus)[keyof typeof servicePlanStatus];
|
|
180
|
-
export declare const
|
|
181
|
-
readonly
|
|
182
|
-
readonly
|
|
183
|
-
readonly
|
|
184
|
-
readonly
|
|
185
|
-
readonly
|
|
186
|
-
readonly
|
|
187
|
-
readonly
|
|
188
|
-
};
|
|
189
|
-
export type
|
|
180
|
+
export declare const siteTypeSFS: {
|
|
181
|
+
readonly AREA: "AREA";
|
|
182
|
+
readonly CLASSIC_POI: "CLASSIC_POI";
|
|
183
|
+
readonly CLASSIC_ZONE: "CLASSIC_ZONE";
|
|
184
|
+
readonly CONSTRUCTION_SITE: "CONSTRUCTION_SITE";
|
|
185
|
+
readonly DEPOT: "DEPOT";
|
|
186
|
+
readonly NOT_ON_SITE: "NOT_ON_SITE";
|
|
187
|
+
readonly WORK_PLACE: "WORK_PLACE";
|
|
188
|
+
};
|
|
189
|
+
export type SiteTypeSFS = (typeof siteTypeSFS)[keyof typeof siteTypeSFS];
|
|
190
190
|
export declare const systemOfMeasurement: {
|
|
191
|
-
readonly
|
|
192
|
-
readonly
|
|
191
|
+
readonly SI: "SI";
|
|
192
|
+
readonly US_CUSTOMARY: "US_CUSTOMARY";
|
|
193
193
|
};
|
|
194
194
|
export type SystemOfMeasurement = (typeof systemOfMeasurement)[keyof typeof systemOfMeasurement];
|
|
195
195
|
export type AssetFiltersInput = {
|
|
@@ -212,7 +212,7 @@ export type AssetFiltersInput = {
|
|
|
212
212
|
/** List of customerIds */
|
|
213
213
|
customerIds?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
|
214
214
|
/** List of customer types */
|
|
215
|
-
customerTypes?: InputMaybe<Array<
|
|
215
|
+
customerTypes?: InputMaybe<Array<CustomerTypeSFS>>;
|
|
216
216
|
/** Digital key mode of the asset */
|
|
217
217
|
digitalKeyModes?: InputMaybe<Array<DigitalKeyMode>>;
|
|
218
218
|
/** List of external references */
|
|
@@ -256,7 +256,7 @@ export type AssetFiltersInput = {
|
|
|
256
256
|
/** List of siteIds */
|
|
257
257
|
siteIds?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
|
258
258
|
/** List of site types */
|
|
259
|
-
siteTypes?: InputMaybe<Array<
|
|
259
|
+
siteTypes?: InputMaybe<Array<SiteTypeSFS>>;
|
|
260
260
|
/** The measurement system used for unit conversion of filters. */
|
|
261
261
|
systemOfMeasurement?: InputMaybe<SystemOfMeasurement>;
|
|
262
262
|
/** List of telematics device serial numbers */
|
|
@@ -321,13 +321,13 @@ export type CustomFieldOwnerInput = {
|
|
|
321
321
|
ownerType: CustomFieldOwnerType;
|
|
322
322
|
};
|
|
323
323
|
export type GetFleetAssetTypesSummaryQueryVariables = Exact<{
|
|
324
|
-
filters
|
|
324
|
+
filters: InputMaybe<AssetFiltersInput>;
|
|
325
325
|
}>;
|
|
326
326
|
export type GetFleetAssetTypesSummaryQuery = {
|
|
327
327
|
__typename?: "Query";
|
|
328
|
-
assetSummary
|
|
328
|
+
assetSummary: {
|
|
329
329
|
__typename?: "AssetSummary";
|
|
330
|
-
assetTypes
|
|
330
|
+
assetTypes: {
|
|
331
331
|
__typename?: "AssetTypesSummary";
|
|
332
332
|
total: number;
|
|
333
333
|
summary: {
|
|
@@ -343,57 +343,57 @@ export type GetFleetAssetTypesSummaryQuery = {
|
|
|
343
343
|
} | null;
|
|
344
344
|
};
|
|
345
345
|
export type GetFleetSiteTypeSummaryQueryVariables = Exact<{
|
|
346
|
-
filters
|
|
346
|
+
filters: InputMaybe<AssetFiltersInput>;
|
|
347
347
|
}>;
|
|
348
348
|
export type GetFleetSiteTypeSummaryQuery = {
|
|
349
349
|
__typename?: "Query";
|
|
350
|
-
assetSummary
|
|
350
|
+
assetSummary: {
|
|
351
351
|
__typename?: "AssetSummary";
|
|
352
352
|
siteTypes: {
|
|
353
353
|
__typename?: "SiteTypesSummary";
|
|
354
354
|
total: number;
|
|
355
355
|
summary: Array<{
|
|
356
356
|
__typename?: "SiteTypeSummary";
|
|
357
|
-
siteType
|
|
357
|
+
siteType: SiteTypeSFS | null;
|
|
358
358
|
count: number;
|
|
359
359
|
}>;
|
|
360
360
|
};
|
|
361
361
|
} | null;
|
|
362
362
|
};
|
|
363
363
|
export type GetMetadataCompletenessSummaryQueryVariables = Exact<{
|
|
364
|
-
filters
|
|
364
|
+
filters: InputMaybe<AssetFiltersInput>;
|
|
365
365
|
}>;
|
|
366
366
|
export type GetMetadataCompletenessSummaryQuery = {
|
|
367
367
|
__typename?: "Query";
|
|
368
|
-
assetSummary
|
|
368
|
+
assetSummary: {
|
|
369
369
|
__typename?: "AssetSummary";
|
|
370
|
-
metadataCompletenesses
|
|
370
|
+
metadataCompletenesses: {
|
|
371
371
|
__typename?: "MetadataCompletenessesSummary";
|
|
372
372
|
total: number;
|
|
373
373
|
summary: Array<{
|
|
374
374
|
__typename?: "MetadataCompletenessSummary";
|
|
375
|
-
metadataCompleteness
|
|
375
|
+
metadataCompleteness: MetadataCompleteness | null;
|
|
376
376
|
count: number;
|
|
377
377
|
}>;
|
|
378
378
|
} | null;
|
|
379
379
|
} | null;
|
|
380
380
|
};
|
|
381
381
|
export type GetFleetGroupSummaryQueryVariables = Exact<{
|
|
382
|
-
filters
|
|
383
|
-
search
|
|
382
|
+
filters: InputMaybe<AssetFiltersInput>;
|
|
383
|
+
search: InputMaybe<Scalars["String"]["input"]>;
|
|
384
384
|
limit: Scalars["Int"]["input"];
|
|
385
385
|
}>;
|
|
386
386
|
export type GetFleetGroupSummaryQuery = {
|
|
387
387
|
__typename?: "Query";
|
|
388
|
-
assetSummary
|
|
388
|
+
assetSummary: {
|
|
389
389
|
__typename?: "AssetSummary";
|
|
390
|
-
groups
|
|
390
|
+
groups: {
|
|
391
391
|
__typename?: "GroupsSummary";
|
|
392
392
|
total: number;
|
|
393
393
|
summary: Array<{
|
|
394
394
|
__typename?: "GroupSummary";
|
|
395
395
|
count: number;
|
|
396
|
-
group
|
|
396
|
+
group: {
|
|
397
397
|
__typename?: "Group";
|
|
398
398
|
id: string;
|
|
399
399
|
groupId: string;
|
|
@@ -404,39 +404,39 @@ export type GetFleetGroupSummaryQuery = {
|
|
|
404
404
|
} | null;
|
|
405
405
|
};
|
|
406
406
|
export type GetFleetOwnerAccountSummaryQueryVariables = Exact<{
|
|
407
|
-
filters
|
|
408
|
-
search
|
|
407
|
+
filters: InputMaybe<AssetFiltersInput>;
|
|
408
|
+
search: InputMaybe<Scalars["String"]["input"]>;
|
|
409
409
|
limit: Scalars["Int"]["input"];
|
|
410
410
|
}>;
|
|
411
411
|
export type GetFleetOwnerAccountSummaryQuery = {
|
|
412
412
|
__typename?: "Query";
|
|
413
|
-
assetSummary
|
|
413
|
+
assetSummary: {
|
|
414
414
|
__typename?: "AssetSummary";
|
|
415
|
-
ownerAccounts
|
|
415
|
+
ownerAccounts: {
|
|
416
416
|
__typename?: "OwnerAccountsSummary";
|
|
417
417
|
total: number;
|
|
418
418
|
summary: Array<{
|
|
419
419
|
__typename?: "OwnerAccountSummary";
|
|
420
420
|
count: number;
|
|
421
|
-
ownerAccount
|
|
421
|
+
ownerAccount: {
|
|
422
422
|
__typename?: "Account";
|
|
423
423
|
accountId: string;
|
|
424
|
-
accountName
|
|
424
|
+
accountName: string | null;
|
|
425
425
|
} | null;
|
|
426
426
|
}>;
|
|
427
427
|
} | null;
|
|
428
428
|
} | null;
|
|
429
429
|
};
|
|
430
430
|
export type GetFleetModelsSummaryQueryVariables = Exact<{
|
|
431
|
-
filters
|
|
432
|
-
search
|
|
433
|
-
limit
|
|
431
|
+
filters: InputMaybe<AssetFiltersInput>;
|
|
432
|
+
search: InputMaybe<Scalars["String"]["input"]>;
|
|
433
|
+
limit: InputMaybe<Scalars["Int"]["input"]>;
|
|
434
434
|
}>;
|
|
435
435
|
export type GetFleetModelsSummaryQuery = {
|
|
436
436
|
__typename?: "Query";
|
|
437
|
-
assetSummary
|
|
437
|
+
assetSummary: {
|
|
438
438
|
__typename?: "AssetSummary";
|
|
439
|
-
models
|
|
439
|
+
models: {
|
|
440
440
|
__typename?: "MetadataSummary";
|
|
441
441
|
total: number;
|
|
442
442
|
summary: Array<{
|
|
@@ -448,14 +448,14 @@ export type GetFleetModelsSummaryQuery = {
|
|
|
448
448
|
} | null;
|
|
449
449
|
};
|
|
450
450
|
export type GetCustomFieldSummaryQueryVariables = Exact<{
|
|
451
|
-
filters
|
|
451
|
+
filters: InputMaybe<AssetFiltersInput>;
|
|
452
452
|
definitionIds: Array<Scalars["String"]["input"]> | Scalars["String"]["input"];
|
|
453
453
|
}>;
|
|
454
454
|
export type GetCustomFieldSummaryQuery = {
|
|
455
455
|
__typename?: "Query";
|
|
456
|
-
assetSummary
|
|
456
|
+
assetSummary: {
|
|
457
457
|
__typename?: "AssetSummary";
|
|
458
|
-
customFields
|
|
458
|
+
customFields: Array<{
|
|
459
459
|
__typename?: "CustomFieldSummary";
|
|
460
460
|
definitionId: string;
|
|
461
461
|
total: number;
|
|
@@ -468,15 +468,15 @@ export type GetCustomFieldSummaryQuery = {
|
|
|
468
468
|
} | null;
|
|
469
469
|
};
|
|
470
470
|
export type GetFleetBrandsSummaryQueryVariables = Exact<{
|
|
471
|
-
filters
|
|
472
|
-
search
|
|
473
|
-
limit
|
|
471
|
+
filters: InputMaybe<AssetFiltersInput>;
|
|
472
|
+
search: InputMaybe<Scalars["String"]["input"]>;
|
|
473
|
+
limit: InputMaybe<Scalars["Int"]["input"]>;
|
|
474
474
|
}>;
|
|
475
475
|
export type GetFleetBrandsSummaryQuery = {
|
|
476
476
|
__typename?: "Query";
|
|
477
|
-
assetSummary
|
|
477
|
+
assetSummary: {
|
|
478
478
|
__typename?: "AssetSummary";
|
|
479
|
-
brands
|
|
479
|
+
brands: {
|
|
480
480
|
__typename?: "MetadataSummary";
|
|
481
481
|
total: number;
|
|
482
482
|
summary: Array<{
|
|
@@ -488,15 +488,15 @@ export type GetFleetBrandsSummaryQuery = {
|
|
|
488
488
|
} | null;
|
|
489
489
|
};
|
|
490
490
|
export type GetFleetTypesSummaryQueryVariables = Exact<{
|
|
491
|
-
filters
|
|
492
|
-
search
|
|
493
|
-
limit
|
|
491
|
+
filters: InputMaybe<AssetFiltersInput>;
|
|
492
|
+
search: InputMaybe<Scalars["String"]["input"]>;
|
|
493
|
+
limit: InputMaybe<Scalars["Int"]["input"]>;
|
|
494
494
|
}>;
|
|
495
495
|
export type GetFleetTypesSummaryQuery = {
|
|
496
496
|
__typename?: "Query";
|
|
497
|
-
assetSummary
|
|
497
|
+
assetSummary: {
|
|
498
498
|
__typename?: "AssetSummary";
|
|
499
|
-
types
|
|
499
|
+
types: {
|
|
500
500
|
__typename?: "MetadataSummary";
|
|
501
501
|
total: number;
|
|
502
502
|
summary: Array<{
|
|
@@ -508,13 +508,13 @@ export type GetFleetTypesSummaryQuery = {
|
|
|
508
508
|
} | null;
|
|
509
509
|
};
|
|
510
510
|
export type GetFleetCriticalitySummaryQueryVariables = Exact<{
|
|
511
|
-
filters
|
|
511
|
+
filters: InputMaybe<AssetFiltersInput>;
|
|
512
512
|
}>;
|
|
513
513
|
export type GetFleetCriticalitySummaryQuery = {
|
|
514
514
|
__typename?: "Query";
|
|
515
|
-
assetSummary
|
|
515
|
+
assetSummary: {
|
|
516
516
|
__typename?: "AssetSummary";
|
|
517
|
-
criticality
|
|
517
|
+
criticality: {
|
|
518
518
|
__typename?: "CriticalitySummary";
|
|
519
519
|
critical: number;
|
|
520
520
|
low: number;
|
|
@@ -523,15 +523,15 @@ export type GetFleetCriticalitySummaryQuery = {
|
|
|
523
523
|
} | null;
|
|
524
524
|
};
|
|
525
525
|
export type GetFleetProductionYearsSummaryQueryVariables = Exact<{
|
|
526
|
-
filters
|
|
527
|
-
search
|
|
528
|
-
limit
|
|
526
|
+
filters: InputMaybe<AssetFiltersInput>;
|
|
527
|
+
search: InputMaybe<Scalars["String"]["input"]>;
|
|
528
|
+
limit: InputMaybe<Scalars["Int"]["input"]>;
|
|
529
529
|
}>;
|
|
530
530
|
export type GetFleetProductionYearsSummaryQuery = {
|
|
531
531
|
__typename?: "Query";
|
|
532
|
-
assetSummary
|
|
532
|
+
assetSummary: {
|
|
533
533
|
__typename?: "AssetSummary";
|
|
534
|
-
productionYears
|
|
534
|
+
productionYears: {
|
|
535
535
|
__typename?: "MetadataSummary";
|
|
536
536
|
total: number;
|
|
537
537
|
summary: Array<{
|
|
@@ -543,13 +543,13 @@ export type GetFleetProductionYearsSummaryQuery = {
|
|
|
543
543
|
} | null;
|
|
544
544
|
};
|
|
545
545
|
export type GetServicePlanNamesSummaryQueryVariables = Exact<{
|
|
546
|
-
filters
|
|
546
|
+
filters: InputMaybe<AssetFiltersInput>;
|
|
547
547
|
}>;
|
|
548
548
|
export type GetServicePlanNamesSummaryQuery = {
|
|
549
549
|
__typename?: "Query";
|
|
550
|
-
assetSummary
|
|
550
|
+
assetSummary: {
|
|
551
551
|
__typename?: "AssetSummary";
|
|
552
|
-
servicePlanNames
|
|
552
|
+
servicePlanNames: {
|
|
553
553
|
__typename?: "MetadataSummary";
|
|
554
554
|
total: number;
|
|
555
555
|
summary: Array<{
|
|
@@ -561,13 +561,13 @@ export type GetServicePlanNamesSummaryQuery = {
|
|
|
561
561
|
} | null;
|
|
562
562
|
};
|
|
563
563
|
export type GetFleetServicePlanStatusesSummaryQueryVariables = Exact<{
|
|
564
|
-
filters
|
|
564
|
+
filters: InputMaybe<AssetFiltersInput>;
|
|
565
565
|
}>;
|
|
566
566
|
export type GetFleetServicePlanStatusesSummaryQuery = {
|
|
567
567
|
__typename?: "Query";
|
|
568
|
-
assetSummary
|
|
568
|
+
assetSummary: {
|
|
569
569
|
__typename?: "AssetSummary";
|
|
570
|
-
servicePlanStatuses
|
|
570
|
+
servicePlanStatuses: {
|
|
571
571
|
__typename?: "ServicePlanStatusSummary";
|
|
572
572
|
overdue: number;
|
|
573
573
|
upcoming: number;
|
|
@@ -576,13 +576,13 @@ export type GetFleetServicePlanStatusesSummaryQuery = {
|
|
|
576
576
|
} | null;
|
|
577
577
|
};
|
|
578
578
|
export type GetFleetServiceProvidersSummaryQueryVariables = Exact<{
|
|
579
|
-
filters
|
|
579
|
+
filters: InputMaybe<AssetFiltersInput>;
|
|
580
580
|
}>;
|
|
581
581
|
export type GetFleetServiceProvidersSummaryQuery = {
|
|
582
582
|
__typename?: "Query";
|
|
583
|
-
assetSummary
|
|
583
|
+
assetSummary: {
|
|
584
584
|
__typename?: "AssetSummary";
|
|
585
|
-
serviceProviders
|
|
585
|
+
serviceProviders: {
|
|
586
586
|
__typename?: "MetadataSummary";
|
|
587
587
|
total: number;
|
|
588
588
|
summary: Array<{
|
|
@@ -594,13 +594,13 @@ export type GetFleetServiceProvidersSummaryQuery = {
|
|
|
594
594
|
} | null;
|
|
595
595
|
};
|
|
596
596
|
export type GetFleetServicePlanAssignmentsSummaryQueryVariables = Exact<{
|
|
597
|
-
filters
|
|
597
|
+
filters: InputMaybe<AssetFiltersInput>;
|
|
598
598
|
}>;
|
|
599
599
|
export type GetFleetServicePlanAssignmentsSummaryQuery = {
|
|
600
600
|
__typename?: "Query";
|
|
601
|
-
assetSummary
|
|
601
|
+
assetSummary: {
|
|
602
602
|
__typename?: "AssetSummary";
|
|
603
|
-
servicePlanAssignments
|
|
603
|
+
servicePlanAssignments: {
|
|
604
604
|
__typename?: "ServicePlanAssignmentSummary";
|
|
605
605
|
fullyConfigured: number;
|
|
606
606
|
partiallyConfigured: number;
|
|
@@ -609,13 +609,13 @@ export type GetFleetServicePlanAssignmentsSummaryQuery = {
|
|
|
609
609
|
} | null;
|
|
610
610
|
};
|
|
611
611
|
export type GetFleetActivitySummaryQueryVariables = Exact<{
|
|
612
|
-
filters
|
|
612
|
+
filters: InputMaybe<AssetFiltersInput>;
|
|
613
613
|
}>;
|
|
614
614
|
export type GetFleetActivitySummaryQuery = {
|
|
615
615
|
__typename?: "Query";
|
|
616
|
-
assetSummary
|
|
616
|
+
assetSummary: {
|
|
617
617
|
__typename?: "AssetSummary";
|
|
618
|
-
activity
|
|
618
|
+
activity: {
|
|
619
619
|
__typename?: "ActivitySummary";
|
|
620
620
|
working: number;
|
|
621
621
|
idling: number;
|
|
@@ -625,21 +625,21 @@ export type GetFleetActivitySummaryQuery = {
|
|
|
625
625
|
} | null;
|
|
626
626
|
};
|
|
627
627
|
export type GetSiteIdSummaryQueryVariables = Exact<{
|
|
628
|
-
filters
|
|
629
|
-
search
|
|
628
|
+
filters: InputMaybe<AssetFiltersInput>;
|
|
629
|
+
search: InputMaybe<Scalars["String"]["input"]>;
|
|
630
630
|
limit: Scalars["Int"]["input"];
|
|
631
631
|
}>;
|
|
632
632
|
export type GetSiteIdSummaryQuery = {
|
|
633
633
|
__typename?: "Query";
|
|
634
|
-
assetSummary
|
|
634
|
+
assetSummary: {
|
|
635
635
|
__typename?: "AssetSummary";
|
|
636
|
-
sites
|
|
636
|
+
sites: {
|
|
637
637
|
__typename?: "SitesSummary";
|
|
638
638
|
total: number;
|
|
639
639
|
summary: Array<{
|
|
640
640
|
__typename?: "SiteSummary";
|
|
641
641
|
count: number;
|
|
642
|
-
site
|
|
642
|
+
site: {
|
|
643
643
|
__typename?: "Site";
|
|
644
644
|
siteId: string;
|
|
645
645
|
name: string;
|
|
@@ -649,21 +649,21 @@ export type GetSiteIdSummaryQuery = {
|
|
|
649
649
|
} | null;
|
|
650
650
|
};
|
|
651
651
|
export type GetCustomerIdSummaryQueryVariables = Exact<{
|
|
652
|
-
filters
|
|
653
|
-
search
|
|
652
|
+
filters: InputMaybe<AssetFiltersInput>;
|
|
653
|
+
search: InputMaybe<Scalars["String"]["input"]>;
|
|
654
654
|
limit: Scalars["Int"]["input"];
|
|
655
655
|
}>;
|
|
656
656
|
export type GetCustomerIdSummaryQuery = {
|
|
657
657
|
__typename?: "Query";
|
|
658
|
-
assetSummary
|
|
658
|
+
assetSummary: {
|
|
659
659
|
__typename?: "AssetSummary";
|
|
660
|
-
customers
|
|
660
|
+
customers: {
|
|
661
661
|
__typename?: "CustomersSummary";
|
|
662
662
|
total: number;
|
|
663
663
|
summary: Array<{
|
|
664
664
|
__typename?: "CustomerSummary";
|
|
665
665
|
count: number;
|
|
666
|
-
customer
|
|
666
|
+
customer: {
|
|
667
667
|
__typename?: "Customer";
|
|
668
668
|
id: string;
|
|
669
669
|
customerId: string;
|
|
@@ -674,73 +674,73 @@ export type GetCustomerIdSummaryQuery = {
|
|
|
674
674
|
} | null;
|
|
675
675
|
};
|
|
676
676
|
export declare const GetFleetAssetTypesSummaryDocument: DocumentNode<GetFleetAssetTypesSummaryQuery, Exact<{
|
|
677
|
-
filters
|
|
677
|
+
filters: InputMaybe<AssetFiltersInput>;
|
|
678
678
|
}>>;
|
|
679
679
|
export declare const GetFleetSiteTypeSummaryDocument: DocumentNode<GetFleetSiteTypeSummaryQuery, Exact<{
|
|
680
|
-
filters
|
|
680
|
+
filters: InputMaybe<AssetFiltersInput>;
|
|
681
681
|
}>>;
|
|
682
682
|
export declare const GetMetadataCompletenessSummaryDocument: DocumentNode<GetMetadataCompletenessSummaryQuery, Exact<{
|
|
683
|
-
filters
|
|
683
|
+
filters: InputMaybe<AssetFiltersInput>;
|
|
684
684
|
}>>;
|
|
685
685
|
export declare const GetFleetGroupSummaryDocument: DocumentNode<GetFleetGroupSummaryQuery, Exact<{
|
|
686
|
-
filters
|
|
687
|
-
search
|
|
686
|
+
filters: InputMaybe<AssetFiltersInput>;
|
|
687
|
+
search: InputMaybe<Scalars["String"]["input"]>;
|
|
688
688
|
limit: Scalars["Int"]["input"];
|
|
689
689
|
}>>;
|
|
690
690
|
export declare const GetFleetOwnerAccountSummaryDocument: DocumentNode<GetFleetOwnerAccountSummaryQuery, Exact<{
|
|
691
|
-
filters
|
|
692
|
-
search
|
|
691
|
+
filters: InputMaybe<AssetFiltersInput>;
|
|
692
|
+
search: InputMaybe<Scalars["String"]["input"]>;
|
|
693
693
|
limit: Scalars["Int"]["input"];
|
|
694
694
|
}>>;
|
|
695
695
|
export declare const GetFleetModelsSummaryDocument: DocumentNode<GetFleetModelsSummaryQuery, Exact<{
|
|
696
|
-
filters
|
|
697
|
-
search
|
|
698
|
-
limit
|
|
696
|
+
filters: InputMaybe<AssetFiltersInput>;
|
|
697
|
+
search: InputMaybe<Scalars["String"]["input"]>;
|
|
698
|
+
limit: InputMaybe<Scalars["Int"]["input"]>;
|
|
699
699
|
}>>;
|
|
700
700
|
export declare const GetCustomFieldSummaryDocument: DocumentNode<GetCustomFieldSummaryQuery, Exact<{
|
|
701
|
-
filters
|
|
701
|
+
filters: InputMaybe<AssetFiltersInput>;
|
|
702
702
|
definitionIds: Array<Scalars["String"]["input"]> | Scalars["String"]["input"];
|
|
703
703
|
}>>;
|
|
704
704
|
export declare const GetFleetBrandsSummaryDocument: DocumentNode<GetFleetBrandsSummaryQuery, Exact<{
|
|
705
|
-
filters
|
|
706
|
-
search
|
|
707
|
-
limit
|
|
705
|
+
filters: InputMaybe<AssetFiltersInput>;
|
|
706
|
+
search: InputMaybe<Scalars["String"]["input"]>;
|
|
707
|
+
limit: InputMaybe<Scalars["Int"]["input"]>;
|
|
708
708
|
}>>;
|
|
709
709
|
export declare const GetFleetTypesSummaryDocument: DocumentNode<GetFleetTypesSummaryQuery, Exact<{
|
|
710
|
-
filters
|
|
711
|
-
search
|
|
712
|
-
limit
|
|
710
|
+
filters: InputMaybe<AssetFiltersInput>;
|
|
711
|
+
search: InputMaybe<Scalars["String"]["input"]>;
|
|
712
|
+
limit: InputMaybe<Scalars["Int"]["input"]>;
|
|
713
713
|
}>>;
|
|
714
714
|
export declare const GetFleetCriticalitySummaryDocument: DocumentNode<GetFleetCriticalitySummaryQuery, Exact<{
|
|
715
|
-
filters
|
|
715
|
+
filters: InputMaybe<AssetFiltersInput>;
|
|
716
716
|
}>>;
|
|
717
717
|
export declare const GetFleetProductionYearsSummaryDocument: DocumentNode<GetFleetProductionYearsSummaryQuery, Exact<{
|
|
718
|
-
filters
|
|
719
|
-
search
|
|
720
|
-
limit
|
|
718
|
+
filters: InputMaybe<AssetFiltersInput>;
|
|
719
|
+
search: InputMaybe<Scalars["String"]["input"]>;
|
|
720
|
+
limit: InputMaybe<Scalars["Int"]["input"]>;
|
|
721
721
|
}>>;
|
|
722
722
|
export declare const GetServicePlanNamesSummaryDocument: DocumentNode<GetServicePlanNamesSummaryQuery, Exact<{
|
|
723
|
-
filters
|
|
723
|
+
filters: InputMaybe<AssetFiltersInput>;
|
|
724
724
|
}>>;
|
|
725
725
|
export declare const GetFleetServicePlanStatusesSummaryDocument: DocumentNode<GetFleetServicePlanStatusesSummaryQuery, Exact<{
|
|
726
|
-
filters
|
|
726
|
+
filters: InputMaybe<AssetFiltersInput>;
|
|
727
727
|
}>>;
|
|
728
728
|
export declare const GetFleetServiceProvidersSummaryDocument: DocumentNode<GetFleetServiceProvidersSummaryQuery, Exact<{
|
|
729
|
-
filters
|
|
729
|
+
filters: InputMaybe<AssetFiltersInput>;
|
|
730
730
|
}>>;
|
|
731
731
|
export declare const GetFleetServicePlanAssignmentsSummaryDocument: DocumentNode<GetFleetServicePlanAssignmentsSummaryQuery, Exact<{
|
|
732
|
-
filters
|
|
732
|
+
filters: InputMaybe<AssetFiltersInput>;
|
|
733
733
|
}>>;
|
|
734
734
|
export declare const GetFleetActivitySummaryDocument: DocumentNode<GetFleetActivitySummaryQuery, Exact<{
|
|
735
|
-
filters
|
|
735
|
+
filters: InputMaybe<AssetFiltersInput>;
|
|
736
736
|
}>>;
|
|
737
737
|
export declare const GetSiteIdSummaryDocument: DocumentNode<GetSiteIdSummaryQuery, Exact<{
|
|
738
|
-
filters
|
|
739
|
-
search
|
|
738
|
+
filters: InputMaybe<AssetFiltersInput>;
|
|
739
|
+
search: InputMaybe<Scalars["String"]["input"]>;
|
|
740
740
|
limit: Scalars["Int"]["input"];
|
|
741
741
|
}>>;
|
|
742
742
|
export declare const GetCustomerIdSummaryDocument: DocumentNode<GetCustomerIdSummaryQuery, Exact<{
|
|
743
|
-
filters
|
|
744
|
-
search
|
|
743
|
+
filters: InputMaybe<AssetFiltersInput>;
|
|
744
|
+
search: InputMaybe<Scalars["String"]["input"]>;
|
|
745
745
|
limit: Scalars["Int"]["input"];
|
|
746
746
|
}>>;
|