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