diff --git a/extensions/flow-generate-invoice/shopify.extension.toml b/extensions/flow-generate-invoice/shopify.extension.toml index 36b82bf..7a40779 100644 --- a/extensions/flow-generate-invoice/shopify.extension.toml +++ b/extensions/flow-generate-invoice/shopify.extension.toml @@ -6,11 +6,11 @@ name = "Generate invoice" type = "flow_action" handle = "flow-generate-invoice" description = "Generates an Austria-compliant PDF invoice for the given order and uploads it to Shopify Files." -runtime_url = "https://example.com/api/flow/generate-invoice" +runtime_url = "https://invoice-app.linumiq.com/api/flow/generate-invoice" - [extensions.settings] + [settings] - [[extensions.settings.fields]] + [[settings.fields]] type = "single_line_text_field" key = "order_id" name = "Order ID" diff --git a/extensions/flow-send-invoice-email/shopify.extension.toml b/extensions/flow-send-invoice-email/shopify.extension.toml index b37e9fc..4a3ffd2 100644 --- a/extensions/flow-send-invoice-email/shopify.extension.toml +++ b/extensions/flow-send-invoice-email/shopify.extension.toml @@ -6,18 +6,18 @@ name = "Send invoice email" type = "flow_action" handle = "flow-send-invoice-email" description = "Sends the generated PDF invoice via email to the order's customer (or an override address)." -runtime_url = "https://example.com/api/flow/send-invoice-email" +runtime_url = "https://invoice-app.linumiq.com/api/flow/send-invoice-email" - [extensions.settings] + [settings] - [[extensions.settings.fields]] + [[settings.fields]] type = "single_line_text_field" key = "order_id" name = "Order ID" description = "The order's GID (use Liquid: {{order.id}} when configuring the workflow)." required = true - [[extensions.settings.fields]] + [[settings.fields]] type = "single_line_text_field" key = "recipient_email_override" name = "Recipient email (optional)"