Hey Bill - A bit late to this, but let me know if you didn't get the query you need. I'm routinely pulling down GA4 data from BiqQuery for using the ASC events and I can hook you up with whatever query you need.
If you are just looking to leverage the ASC event data, you might be better served by just writing queries directly around that. Pulling all of the ASC event data is a bit of a long query, but you can easily get all of the information that you need. For example:
WITH events AS
(
SELECT event_name,
(SELECT value.string_value FROM UNNEST(event_params) WHERE key = 'event_owner') AS event_owner,
(SELECT value.string_value FROM UNNEST(event_params) WHERE key = 'event_action') AS event_action,
(SELECT value.string_value FROM UNNEST(event_params) WHERE key = 'item_id') AS item_id,
(SELECT value.string_value FROM UNNEST(event_params) WHERE key = 'item_number') AS item_number,
(SELECT value.int_value FROM UNNEST(event_params) WHERE key = 'item_year') AS item_year,
(SELECT value.string_value FROM UNNEST(event_params) WHERE key = 'item_make') AS item_make,
(SELECT value.string_value FROM UNNEST(event_params) WHERE key = 'item_model') AS item_model,
(SELECT value.string_value FROM UNNEST(event_params) WHERE key = 'item_variant') AS item_variant,
(SELECT value.string_value FROM UNNEST(event_params) WHERE key = 'item_condition') AS item_condition,
(SELECT value.string_value FROM UNNEST(event_params) WHERE key = 'item_color') AS item_color,
(SELECT value.string_value FROM UNNEST(event_params) WHERE key = 'item_fuel_type') AS item_fuel_type,
(SELECT value.string_value FROM UNNEST(event_params) WHERE key = 'page_type') AS page_type,
(SELECT value.string_value FROM UNNEST(event_params) WHERE key = 'page_location') AS url,
(SELECT value.string_value FROM UNNEST(event_params) WHERE key = 'department') AS department
.........
FROM
`YOUR DATASET ID`
WHERE event_date BETWEEN 'XX' AND 'XX' AND event_name LIKE 'asc_%'
This is part of a CTE that will UNNEST some of the various ASC parameters for any ASC event.
We've built a lot of tooling around ASC and BigQuery, so just let me know if you need any help with anything.