ProtectedInternalInternal method that must be implemented by derived action classes. This is where the actual action logic should be implemented.
The action execution parameters including typed context
Promise resolving to the action result
Executes the action with the provided parameters.
The action execution parameters including context
Promise resolving to the action result
Scheduled geocoding maintenance action that handles three tasks:
Parameters
'google','geocodio', or'here'. Overrides theapiIntegrations.geocoding.defaultProviderconfig setting. When omitted, falls back to config; when neither is set, the first configured provider is chosen in priority order: geocodio → here → google.Cache Invalidation
After geocoding each record, the action loads the parent entity record and fires a synthetic BaseEntity 'save' event so that any cached RunView results containing stale lat/lng (from the RecordGeoCode JOIN) are invalidated. This ensures the server cache stays consistent.
Designed to run on a schedule (every few hours) as a safety net for records that bypass BaseEntity.Save() (bulk SQL imports, direct DB operations).