@dakkitor/api-contracts 1.1.150 → 1.1.152

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.
@@ -447,12 +447,6 @@ exports.BatchDeleteJobResponseSchema = zod_1.z
447
447
  */
448
448
  exports.FilterJobSchema = pagination_query_schema_1.PaginationQuerySchema.extend({
449
449
  tradeId: zod_1.z.string().uuid().optional().nullable().describe('Filter by trade'),
450
- createdAt: common_schemas_1.DateRangeSchema.optional()
451
- .nullable()
452
- .describe('Filter by created date range'),
453
- updatedAt: common_schemas_1.DateRangeSchema.optional()
454
- .nullable()
455
- .describe('Filter by updated date range'),
456
450
  qualificationFilters: zod_1.z
457
451
  .array(curated_workers_contract_1.QualificationFilterSchema)
458
452
  .optional()
@@ -480,6 +474,12 @@ exports.FilterJobSchema = pagination_query_schema_1.PaginationQuerySchema.extend
480
474
  sortOrder: common_schemas_1.SortOrderSchema.optional()
481
475
  .nullable()
482
476
  .describe('The order to sort the results by'),
477
+ createdAt: common_schemas_1.DateRangeSchema.optional()
478
+ .nullable()
479
+ .describe('Filter by created date range'),
480
+ updatedAt: common_schemas_1.DateRangeSchema.optional()
481
+ .nullable()
482
+ .describe('Filter by updated date range'),
483
483
  });
484
484
  exports.PaginatedJobResponseSchema = (0, pagination_schema_1.createPaginatedResponseSchema)(exports.JobSchema)
485
485
  .describe('Jobs retrieved successfully')