@kl1/contracts 1.1.36 → 1.1.37

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/index.mjs CHANGED
@@ -5811,7 +5811,8 @@ var userContract = initContract26().router(
5811
5811
  page: z76.coerce.number().optional(),
5812
5812
  pageSize: z76.coerce.number().optional(),
5813
5813
  // Don't add default 10. In some places, we need to fetch all users.
5814
- keyword: z76.string().optional()
5814
+ keyword: z76.string().optional(),
5815
+ withPresenceStatus: z76.string().transform((val) => val === "true").optional()
5815
5816
  }).optional(),
5816
5817
  responses: {
5817
5818
  200: WithPagination(UserSchema),