fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
31 lines (30 loc) • 708 B
TypeScript
import type { NumInGroup } from './SpecGroups.ts';
export type Ref = {
id: number;
added: string;
presence?: string;
addedEP?: string;
updated?: string;
updatedEP?: string;
deprecated?: string;
deprecatedEP?: string;
description?: string;
};
export interface ISpecComponents {
id: number;
name: string;
category: string;
abbrName: string;
description: string;
added: string;
fieldRef?: Ref[];
groupRef?: Ref[];
componentRef?: Ref[];
numInGroup?: NumInGroup;
addedEP?: string;
updated?: string;
updatedEP?: string;
deprecated?: string;
deprecatedEP?: string;
}
export declare const COMPONENTS: ISpecComponents[];