This commit is contained in:
iHeyTang 2025-10-04 23:18:26 +08:00
commit 143e3756b9
2 changed files with 2 additions and 1 deletions

View File

@ -78,7 +78,7 @@ export default function Create() {
metadata: { metadata: {
cb_url: cbUrl, cb_url: cbUrl,
imageUrls: [image1, image2 || image1], imageUrls: [image1, image2 || image1],
prompt: prompt, prompt
}, },
}); });
if (checkout && checkout.url) { if (checkout && checkout.url) {

View File

@ -96,6 +96,7 @@ export interface CreateCheckoutParams {
metadata: { metadata: {
imageUrls: string[]; // 图片URL imageUrls: string[]; // 图片URL
cb_url: string; cb_url: string;
prompt?: string;
[key: string]: any; // 其他元数据 [key: string]: any; // 其他元数据
}; };
} }