28 lines
614 B
TypeScript
28 lines
614 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`, `poolAddress` or `signature`.
|
|
*/
|
|
mode: string,
|
|
/**
|
|
* HTTP role used.
|
|
*/
|
|
httpRole: string,
|
|
/**
|
|
* Pretty JSON summary.
|
|
*/
|
|
summaryJson: string,
|
|
/**
|
|
* Refreshed local catalog after backfill.
|
|
*/
|
|
catalog: DemoPipeline2CatalogPayload, };
|