Compare commits

...

3 Commits

Author SHA1 Message Date
imeepos bcb3cfb0a8 Merge branch 'vite' of ssh://gitea.bowongai.com:222/bowong/bw-mini-app into vite 2025-10-04 23:17:21 +08:00
imeepos 5f8e9dd245 fix: add prompt 2025-10-04 23:16:59 +08:00
imeepos 2411635e58 fix: add prompt 2025-10-04 23:16:03 +08:00
2 changed files with 2 additions and 0 deletions

View File

@ -77,6 +77,7 @@ export default function Create() {
metadata: { metadata: {
cb_url: cbUrl, cb_url: cbUrl,
imageUrls: [image1, image2 || image1], imageUrls: [image1, image2 || image1],
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; // 其他元数据
}; };
} }