hvp-shared 9.0.0 → 9.1.0
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.
|
@@ -212,6 +212,17 @@ export interface ListDocumentsQuery {
|
|
|
212
212
|
search?: string;
|
|
213
213
|
requiredForOnboarding?: boolean;
|
|
214
214
|
requiresAcknowledgment?: boolean;
|
|
215
|
+
/**
|
|
216
|
+
* If true, the response includes `obsolete` documents. Default: false (the
|
|
217
|
+
* server hides obsolete docs unless the caller asks for them). Ignored when
|
|
218
|
+
* `status` is set explicitly. Writer-only flag.
|
|
219
|
+
*/
|
|
220
|
+
includeObsolete?: boolean;
|
|
221
|
+
/**
|
|
222
|
+
* If true, the response includes `archived` documents. Default: false.
|
|
223
|
+
* Ignored when `status` is set explicitly. Writer-only flag.
|
|
224
|
+
*/
|
|
225
|
+
includeArchived?: boolean;
|
|
215
226
|
limit?: number;
|
|
216
227
|
skip?: number;
|
|
217
228
|
}
|