Some checks failed
CI / Lint, Unit & Integration Tests (push) Has been cancelled
Multi-pin pickup selection (study §3.4) — previously a standalone unused endpoint + TODO comments: - app/services/pickup-locations.server.ts: pure filterPickupLocationIds + I/O resolvePickupLocations (active + has a PICKUP slot template + ProductRule allowedLocationIds + inventory exclusion). - resolveAvailabilityRequest returns pickupLocations[] on method=PICKUP and defaults the active location to the first eligible pickup point. - apps.scheduling.locations.tsx refactored onto the shared resolver (was a second copy of the logic). - Storefront widget: pickup-location chooser (name + address, optional multi-pin Google map) when >1 eligible point and none block-configured; picking one re-requests availability for that location. New styles + widget.choose_pickup_location locale (en + fr). - Checkout extension Checkout.jsx: same chooser before the date list. - tests/unit/pickup-locations.test.ts (5 cases); suite 161 green. checkout-datetime follow-up fixes from the 808a3b7 review: - typescript devDep ^7.0.2 -> ^5.6.3 (there is no typescript@7 on npm). - Deleted dead shopify.d.ts (Preact-global shim, unused after the React rewrite) and dropped it from tsconfig include. Also stages the CLI-written `uid` lines in the checkout-datetime and payment-customization extension tomls. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
36 lines
1.3 KiB
TOML
36 lines
1.3 KiB
TOML
api_version = "2025-10"
|
|
|
|
[[extensions]]
|
|
type = "ui_extension"
|
|
name = "t:name"
|
|
handle = "checkout-datetime"
|
|
|
|
uid = "14165501-9e99-cb7d-e2bf-2e25f3028ca218bc5e8a"
|
|
description = "Native delivery date & time picker in checkout (Plus), plus confirmation blocks on the Thank you and Order status pages (all plans)."
|
|
|
|
# The picker calls this app's own backend (checkout.scheduling.* routes,
|
|
# session-token auth). A checkout extension runs on a different origin than
|
|
# the app, so it needs the app's absolute URL — set this to the value of
|
|
# `application_url` in shopify.app.toml.
|
|
[extensions.settings]
|
|
[[extensions.settings.fields]]
|
|
key = "app_url"
|
|
type = "single_line_text_field"
|
|
name = "App backend URL"
|
|
description = "https://<your-app-domain> — same as application_url in shopify.app.toml."
|
|
|
|
# --- Plus: native picker inside checkout -------------------------------------
|
|
[[extensions.targeting]]
|
|
module = "./src/Checkout.jsx"
|
|
target = "purchase.checkout.block.render"
|
|
|
|
# --- All plans: confirmation on the Thank you page -------------------------
|
|
[[extensions.targeting]]
|
|
module = "./src/ThankYou.jsx"
|
|
target = "purchase.thank-you.block.render"
|
|
|
|
# --- All plans: confirmation on the Order status page ---------------------
|
|
[[extensions.targeting]]
|
|
module = "./src/OrderStatus.jsx"
|
|
target = "customer-account.order-status.block.render"
|