donobu
Version:
Create browser automations with an LLM agent and replay them as Playwright scripts.
22 lines • 946 B
TypeScript
/**
* This is the expected payload for a request to create a new DonobuFlow that is
* specific for SpecialFlowsApi.extractGoogleStreetviewEntityData.
*/
export type CreateGoogleSteetviewExtractionFlow = {
/**
* The name of the business/entity to verify. If this is specified, then entityLocation
* must also be specified. If this is null, then googleMapsUrl cannot also be null.
*/
readonly entityName?: string | null;
/**
* The location of the business/entity to verify. If this is specified, then entityName
* must also be specified. If this is null, then googleMapsUrl cannot also be null.
*/
readonly entityLocation?: string | null;
/**
* The Google Maps URL of the entity to verify. If this is null, then entityName
* and entityLocation cannot also be null.
*/
readonly googleMapsUrl?: string | null;
};
//# sourceMappingURL=CreateGoogleSteetviewExtractionFlow.d.ts.map