@numen-crypto/contract 0.15.2 → 0.15.3

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.cjs CHANGED
@@ -728,6 +728,7 @@ exports.BrowsePartnersCommand = void 0;
728
728
  );
729
729
  BrowsePartnersCommand2.QuerySchema = zod.z.object({
730
730
  root: UuidSchema.optional(),
731
+ scope: zod.z.enum(["direct", "all"]).default("direct"),
731
732
  page: zod.z.coerce.number().int().min(1).default(1),
732
733
  pageSize: zod.z.coerce.number().int().min(1).max(500).default(48),
733
734
  search: zod.z.string().max(254).optional()