@trackunit/filters-asset-filter-definitions 0.0.160 → 0.0.164
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
|
@@ -193,6 +193,19 @@ export declare const onboardingStatus: {
|
|
|
193
193
|
readonly PENDING: "PENDING";
|
|
194
194
|
};
|
|
195
195
|
export type OnboardingStatus = (typeof onboardingStatus)[keyof typeof onboardingStatus];
|
|
196
|
+
export declare const rentalStatus: {
|
|
197
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
198
|
+
readonly IN_REPAIR: "IN_REPAIR";
|
|
199
|
+
readonly NOT_ON_CONTRACT: "NOT_ON_CONTRACT";
|
|
200
|
+
readonly OFF_RENT: "OFF_RENT";
|
|
201
|
+
readonly ON_RENT: "ON_RENT";
|
|
202
|
+
readonly OTHER: "OTHER";
|
|
203
|
+
readonly PICK_UP_READY: "PICK_UP_READY";
|
|
204
|
+
readonly RESERVED: "RESERVED";
|
|
205
|
+
readonly RETURNED: "RETURNED";
|
|
206
|
+
readonly TRANSFER: "TRANSFER";
|
|
207
|
+
};
|
|
208
|
+
export type RentalStatus = (typeof rentalStatus)[keyof typeof rentalStatus];
|
|
196
209
|
export declare const servicePlanStatus: {
|
|
197
210
|
readonly COMPLETE: "COMPLETE";
|
|
198
211
|
readonly DRAFT: "DRAFT";
|
|
@@ -271,10 +284,14 @@ export type AssetFiltersInput = {
|
|
|
271
284
|
partnerId?: InputMaybe<Scalars["ID"]["input"]>;
|
|
272
285
|
/** List of production years */
|
|
273
286
|
productionYears?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
|
287
|
+
/** List of rental contract ids */
|
|
288
|
+
rentalContracts?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
|
274
289
|
/** List of rental customer names */
|
|
275
290
|
rentalCustomerName?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
|
276
|
-
/** List of rental statuses */
|
|
291
|
+
/** List of legacy rental statuses */
|
|
277
292
|
rentalStatus?: InputMaybe<Array<LegacyRentalStatus>>;
|
|
293
|
+
/** List of rental statuses */
|
|
294
|
+
rentalStatuses?: InputMaybe<Array<RentalStatus>>;
|
|
278
295
|
/** A string that could match a property of an asset within your fleet */
|
|
279
296
|
searchQuery?: InputMaybe<Scalars["String"]["input"]>;
|
|
280
297
|
/** List of serial numbers */
|