@trackunit/filters-asset-filter-definitions 0.0.121 → 0.0.122
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
|
@@ -150,17 +150,7 @@ export declare const digitalKeyMode: {
|
|
|
150
150
|
readonly UNSUPPORTED: "UNSUPPORTED";
|
|
151
151
|
};
|
|
152
152
|
export type DigitalKeyMode = (typeof digitalKeyMode)[keyof typeof digitalKeyMode];
|
|
153
|
-
export declare const
|
|
154
|
-
readonly COMPLETE: "COMPLETE";
|
|
155
|
-
readonly PARTIAL: "PARTIAL";
|
|
156
|
-
};
|
|
157
|
-
export type MetadataCompleteness = (typeof metadataCompleteness)[keyof typeof metadataCompleteness];
|
|
158
|
-
export declare const onboardingStatus: {
|
|
159
|
-
readonly ONBOARDED: "ONBOARDED";
|
|
160
|
-
readonly PENDING: "PENDING";
|
|
161
|
-
};
|
|
162
|
-
export type OnboardingStatus = (typeof onboardingStatus)[keyof typeof onboardingStatus];
|
|
163
|
-
export declare const rentalStatus: {
|
|
153
|
+
export declare const legacyRentalStatus: {
|
|
164
154
|
readonly Available: "Available";
|
|
165
155
|
readonly InRepair: "InRepair";
|
|
166
156
|
readonly NotOnContract: "NotOnContract";
|
|
@@ -172,7 +162,17 @@ export declare const rentalStatus: {
|
|
|
172
162
|
readonly Returned: "Returned";
|
|
173
163
|
readonly Transfer: "Transfer";
|
|
174
164
|
};
|
|
175
|
-
export type
|
|
165
|
+
export type LegacyRentalStatus = (typeof legacyRentalStatus)[keyof typeof legacyRentalStatus];
|
|
166
|
+
export declare const metadataCompleteness: {
|
|
167
|
+
readonly COMPLETE: "COMPLETE";
|
|
168
|
+
readonly PARTIAL: "PARTIAL";
|
|
169
|
+
};
|
|
170
|
+
export type MetadataCompleteness = (typeof metadataCompleteness)[keyof typeof metadataCompleteness];
|
|
171
|
+
export declare const onboardingStatus: {
|
|
172
|
+
readonly ONBOARDED: "ONBOARDED";
|
|
173
|
+
readonly PENDING: "PENDING";
|
|
174
|
+
};
|
|
175
|
+
export type OnboardingStatus = (typeof onboardingStatus)[keyof typeof onboardingStatus];
|
|
176
176
|
export declare const servicePlanStatus: {
|
|
177
177
|
readonly COMPLETE: "COMPLETE";
|
|
178
178
|
readonly DRAFT: "DRAFT";
|
|
@@ -254,7 +254,7 @@ export type AssetFiltersInput = {
|
|
|
254
254
|
/** List of rental customer names */
|
|
255
255
|
rentalCustomerName?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
|
256
256
|
/** List of rental statuses */
|
|
257
|
-
rentalStatus?: InputMaybe<Array<
|
|
257
|
+
rentalStatus?: InputMaybe<Array<LegacyRentalStatus>>;
|
|
258
258
|
/** A string that could match a property of an asset within your fleet */
|
|
259
259
|
searchQuery?: InputMaybe<Scalars["String"]["input"]>;
|
|
260
260
|
/** List of serial numbers */
|