@trackunit/filters-graphql-hook 0.0.34 → 0.0.35

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trackunit/filters-graphql-hook",
3
- "version": "0.0.34",
3
+ "version": "0.0.35",
4
4
  "repository": "https://github.com/Trackunit/manager",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "engines": {
@@ -172,6 +172,11 @@ export declare const metadataCompleteness: {
172
172
  readonly PARTIAL: "PARTIAL";
173
173
  };
174
174
  export type MetadataCompleteness = (typeof metadataCompleteness)[keyof typeof metadataCompleteness];
175
+ export declare const onboardingStatus: {
176
+ readonly ONBOARDED: "ONBOARDED";
177
+ readonly PENDING: "PENDING";
178
+ };
179
+ export type OnboardingStatus = (typeof onboardingStatus)[keyof typeof onboardingStatus];
175
180
  export declare const rentalStatus: {
176
181
  readonly Available: "Available";
177
182
  readonly InRepair: "InRepair";
@@ -256,6 +261,8 @@ export type AssetFiltersInput = {
256
261
  metadataCompleteness?: InputMaybe<MetadataCompleteness>;
257
262
  /** List of models */
258
263
  models?: InputMaybe<Array<Scalars["String"]["input"]>>;
264
+ /** Filter by the status of the onboarding process of the asset. */
265
+ onboardingStatus?: InputMaybe<OnboardingStatus>;
259
266
  /** List of owner account ids */
260
267
  ownerAccountIds?: InputMaybe<Array<Scalars["String"]["input"]>>;
261
268
  /** List of owner account names */