Files
khadhroony-bobobot/kb_demo_app/frontend/ts/bindings/DemoPipeline2BackfillPayload.ts
2026-05-10 00:33:01 +02:00

28 lines
601 B
TypeScript

// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
import type { DemoPipeline2CatalogPayload } from "./DemoPipeline2CatalogPayload";
/**
* Shared backfill response payload.
*/
export type DemoPipeline2BackfillPayload = {
/**
* Object key used by the backfill.
*/
objectKey: string,
/**
* Mode: `tokenMint` or `poolAddress`.
*/
mode: string,
/**
* HTTP role used.
*/
httpRole: string,
/**
* Pretty JSON summary.
*/
summaryJson: string,
/**
* Refreshed local catalog after backfill.
*/
catalog: DemoPipeline2CatalogPayload, };