Files
khadhroony-bobobot/kb_app/frontend/ts/bindings/KbDemoPipeline2BackfillPayload.ts
2026-05-02 11:27:10 +02:00

28 lines
609 B
TypeScript

// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
import type { KbDemoPipeline2CatalogPayload } from "./KbDemoPipeline2CatalogPayload";
/**
* Shared backfill response payload.
*/
export type KbDemoPipeline2BackfillPayload = {
/**
* 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: KbDemoPipeline2CatalogPayload, };