@merkl/api 0.21.33 → 0.21.34
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/database/api/.generated/drizzle/schema.d.ts +7 -7
- package/dist/database/api/.generated/drizzle/schema.js +1 -1
- package/dist/database/api/.generated/drizzle/schema.ts +1 -1
- package/dist/database/api/.generated/edge.js +5 -4
- package/dist/database/api/.generated/index-browser.js +2 -1
- package/dist/database/api/.generated/index.d.ts +2 -1
- package/dist/database/api/.generated/index.js +5 -4
- package/dist/database/api/.generated/package.json +1 -1
- package/dist/database/api/.generated/schema.prisma +1 -0
- package/dist/database/api/.generated/wasm.js +2 -1
- package/dist/src/eden/index.d.ts +105 -3
- package/dist/src/index.d.ts +41 -1
- package/dist/src/modules/v4/opportunity/opportunity.controller.d.ts +44 -2
- package/dist/src/modules/v4/opportunity/opportunity.controller.js +5 -3
- package/dist/src/modules/v4/opportunity/opportunity.model.d.ts +5 -0
- package/dist/src/modules/v4/opportunity/opportunity.model.js +4 -0
- package/dist/src/modules/v4/router.d.ts +41 -1
- package/dist/tsconfig.package.tsbuildinfo +1 -1
- package/package.json +1 -1
@@ -604,7 +604,8 @@ exports.OpportunityManualOverride = exports.$Enums.OpportunityManualOverride = {
|
|
604
604
|
explorerAddress: 'explorerAddress',
|
605
605
|
action: 'action',
|
606
606
|
description: 'description',
|
607
|
-
howToSteps: 'howToSteps'
|
607
|
+
howToSteps: 'howToSteps',
|
608
|
+
mainProtocolId: 'mainProtocolId'
|
608
609
|
};
|
609
610
|
|
610
611
|
exports.AprType = exports.$Enums.AprType = {
|
@@ -236,7 +236,8 @@ export const OpportunityManualOverride: {
|
|
236
236
|
explorerAddress: 'explorerAddress',
|
237
237
|
action: 'action',
|
238
238
|
description: 'description',
|
239
|
-
howToSteps: 'howToSteps'
|
239
|
+
howToSteps: 'howToSteps',
|
240
|
+
mainProtocolId: 'mainProtocolId'
|
240
241
|
};
|
241
242
|
|
242
243
|
export type OpportunityManualOverride = (typeof OpportunityManualOverride)[keyof typeof OpportunityManualOverride]
|