@epilot/entity-client 4.35.0 → 4.36.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.
- package/dist/openapi.d.ts +3 -2
- package/dist/openapi.json +2 -1
- package/package.json +1 -1
package/dist/openapi.d.ts
CHANGED
|
@@ -3370,6 +3370,7 @@ declare namespace Components {
|
|
|
3370
3370
|
*
|
|
3371
3371
|
*/
|
|
3372
3372
|
EntitySearchIncludeDeletedParam;
|
|
3373
|
+
highlight?: any;
|
|
3373
3374
|
}
|
|
3374
3375
|
export interface EntitySearchResults {
|
|
3375
3376
|
/**
|
|
@@ -9554,12 +9555,12 @@ declare namespace Paths {
|
|
|
9554
9555
|
/**
|
|
9555
9556
|
* The maximum number of jobs to return (defaults to 20)
|
|
9556
9557
|
*/
|
|
9557
|
-
export type
|
|
9558
|
+
export type Size = number;
|
|
9558
9559
|
export type Status = /* The status of the bulk job */ Components.Schemas.TaxonomyBulkJobStatus;
|
|
9559
9560
|
}
|
|
9560
9561
|
export interface QueryParameters {
|
|
9561
9562
|
status?: Parameters.Status;
|
|
9562
|
-
|
|
9563
|
+
size?: /* The maximum number of jobs to return (defaults to 20) */ Parameters.Size;
|
|
9563
9564
|
}
|
|
9564
9565
|
namespace Responses {
|
|
9565
9566
|
export type $200 = /**
|
package/dist/openapi.json
CHANGED