Add SCUM trade catalog projections
This commit is contained in:
@@ -251,6 +251,19 @@ export interface GameClientBridgeQueryTemplateDeclaration {
|
||||
maxRows: number;
|
||||
timeoutSeconds: number;
|
||||
pollIntervalSeconds?: number;
|
||||
projections?: GameClientBridgeQueryProjectionDeclaration[];
|
||||
}
|
||||
|
||||
export interface GameClientBridgeQueryProjectionDeclaration {
|
||||
collection: string;
|
||||
rowPath: "rows";
|
||||
matchField?: string;
|
||||
matchValue?: string;
|
||||
upsertKeys: string[];
|
||||
fieldMappings?: Record<string, string>;
|
||||
fixedValues?: Record<string, string>;
|
||||
observedAtField?: string;
|
||||
mergeExisting?: boolean;
|
||||
}
|
||||
|
||||
export interface GameClientBridgeLogProjectionStepDeclaration {
|
||||
|
||||
Reference in New Issue
Block a user