@trackunit/filters-graphql-hook 0.0.140 → 0.0.143
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/package.json
CHANGED
|
@@ -215,6 +215,19 @@ export declare const onboardingStatus: {
|
|
|
215
215
|
readonly PENDING: "PENDING";
|
|
216
216
|
};
|
|
217
217
|
export type OnboardingStatus = (typeof onboardingStatus)[keyof typeof onboardingStatus];
|
|
218
|
+
export declare const rentalStatus: {
|
|
219
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
220
|
+
readonly IN_REPAIR: "IN_REPAIR";
|
|
221
|
+
readonly NOT_ON_CONTRACT: "NOT_ON_CONTRACT";
|
|
222
|
+
readonly OFF_RENT: "OFF_RENT";
|
|
223
|
+
readonly ON_RENT: "ON_RENT";
|
|
224
|
+
readonly OTHER: "OTHER";
|
|
225
|
+
readonly PICK_UP_READY: "PICK_UP_READY";
|
|
226
|
+
readonly RESERVED: "RESERVED";
|
|
227
|
+
readonly RETURNED: "RETURNED";
|
|
228
|
+
readonly TRANSFER: "TRANSFER";
|
|
229
|
+
};
|
|
230
|
+
export type RentalStatus = (typeof rentalStatus)[keyof typeof rentalStatus];
|
|
218
231
|
export declare const servicePlanStatus: {
|
|
219
232
|
readonly COMPLETE: "COMPLETE";
|
|
220
233
|
readonly DRAFT: "DRAFT";
|
|
@@ -298,10 +311,14 @@ export type AssetFiltersInput = {
|
|
|
298
311
|
partnerId?: InputMaybe<Scalars["ID"]["input"]>;
|
|
299
312
|
/** List of production years */
|
|
300
313
|
productionYears?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
|
314
|
+
/** List of rental contract ids */
|
|
315
|
+
rentalContracts?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
|
301
316
|
/** List of rental customer names */
|
|
302
317
|
rentalCustomerName?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
|
303
|
-
/** List of rental statuses */
|
|
318
|
+
/** List of legacy rental statuses */
|
|
304
319
|
rentalStatus?: InputMaybe<Array<LegacyRentalStatus>>;
|
|
320
|
+
/** List of rental statuses */
|
|
321
|
+
rentalStatuses?: InputMaybe<Array<RentalStatus>>;
|
|
305
322
|
/** A string that could match a property of an asset within your fleet */
|
|
306
323
|
searchQuery?: InputMaybe<Scalars["String"]["input"]>;
|
|
307
324
|
/** List of serial numbers */
|