@turtleclub/hooks 0.5.0-beta.69 → 0.5.0-beta.70
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 +5 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +5 -2
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/src/v2/opportunities/schema.ts +3 -0
package/dist/index.cjs
CHANGED
|
@@ -1300,7 +1300,9 @@ var opportunitySchema = import_zod8.z.object({
|
|
|
1300
1300
|
var opportunityFiltersSchema = import_zod8.z.object({
|
|
1301
1301
|
tokenId: import_zod8.z.string().uuid().optional(),
|
|
1302
1302
|
chain: import_zod8.z.string().optional(),
|
|
1303
|
-
productId: import_zod8.z.string().uuid().optional()
|
|
1303
|
+
productId: import_zod8.z.string().uuid().optional(),
|
|
1304
|
+
tags: import_zod8.z.string().optional(),
|
|
1305
|
+
withMainStream: import_zod8.z.boolean().optional()
|
|
1304
1306
|
});
|
|
1305
1307
|
var opportunitiesResponseSchema = import_zod8.z.object({
|
|
1306
1308
|
opportunities: import_zod8.z.array(opportunitySchema),
|
|
@@ -1362,7 +1364,8 @@ var getOpportunitiesPaginatedInputSchema = import_zod8.z.object({
|
|
|
1362
1364
|
// Chain IDs (comma-separated)
|
|
1363
1365
|
chainIds: import_zod8.z.string().optional(),
|
|
1364
1366
|
// Search
|
|
1365
|
-
search: import_zod8.z.string().optional()
|
|
1367
|
+
search: import_zod8.z.string().optional(),
|
|
1368
|
+
withMainStream: import_zod8.z.boolean().optional()
|
|
1366
1369
|
});
|
|
1367
1370
|
var paginationMetadataSchema2 = import_zod8.z.object({
|
|
1368
1371
|
page: import_zod8.z.number(),
|