@or-sdk/library-types-v2 6.0.15 → 6.0.17

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/esm/index.js CHANGED
@@ -11181,7 +11181,8 @@ var GetPackagesListResponse = ListView.extend({
11181
11181
  total: z.number()
11182
11182
  })
11183
11183
  ).array(),
11184
- total: z.number(),
11184
+ total: z.number().describe("Total number of items in non filtered the list"),
11185
+ itemsTotal: z.number().describe("Total number of items of filtered list"),
11185
11186
  items: PackageReleaseModelResponse.array().describe(
11186
11187
  "Latest versions of every package id"
11187
11188
  )
@@ -11243,6 +11244,9 @@ var GetPackagesParamsFilter = z.object({
11243
11244
  categories: z.object({
11244
11245
  name: InAndNotInFunc({
11245
11246
  type: z.string().trim().toLowerCase()
11247
+ }),
11248
+ id: InAndNotInFunc({
11249
+ type: z.string().trim().toLowerCase()
11246
11250
  })
11247
11251
  }).optional(),
11248
11252
  id: InAndNotInFunc({