@thecorporation/agent 26.3.17 → 26.3.18
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/extension/corp.ts +3 -0
- package/package.json +1 -1
package/extension/corp.ts
CHANGED
|
@@ -632,6 +632,9 @@ const issueSafe = {
|
|
|
632
632
|
principal_amount_cents: Type.Integer({ description: "Investment amount in cents" }),
|
|
633
633
|
valuation_cap_cents: Type.Integer({ description: "Valuation cap in cents" }),
|
|
634
634
|
safe_type: Type.Optional(Type.String({ description: "'pre_money', 'post_money', or 'mfn'" })),
|
|
635
|
+
email: Type.Optional(Type.String({ description: "Investor email for contact linking" })),
|
|
636
|
+
meeting_id: Type.Optional(Type.String({ description: "Passed board/member approval meeting ID when governance approval is required" })),
|
|
637
|
+
resolution_id: Type.Optional(Type.String({ description: "Passed board/member approval resolution ID when governance approval is required" })),
|
|
635
638
|
}),
|
|
636
639
|
async execute(toolCallId: string, params: any, signal: any) {
|
|
637
640
|
const data = await apiCall("POST", "/v1/safe-notes", params);
|