Add SCUM trade catalog projections
This commit is contained in:
@@ -51,6 +51,20 @@ export interface GameClientBridgeQueryTemplateDeclarationResponse {
|
||||
sqlRef?: string;
|
||||
maxRows: number;
|
||||
timeoutSeconds: number;
|
||||
pollIntervalSeconds?: number;
|
||||
projections?: GameClientBridgeQueryProjectionDeclarationResponse[];
|
||||
}
|
||||
|
||||
export interface GameClientBridgeQueryProjectionDeclarationResponse {
|
||||
collection: string;
|
||||
rowPath: "rows";
|
||||
matchField?: string;
|
||||
matchValue?: string;
|
||||
upsertKeys: string[];
|
||||
fieldMappings?: Record<string, string>;
|
||||
fixedValues?: Record<string, string>;
|
||||
observedAtField?: string;
|
||||
mergeExisting?: boolean;
|
||||
}
|
||||
|
||||
export interface GameClientBridgeDataPackDeclarationResponse { key: string; databaseUserVersion: number; logParserRefs: string[]; configMapRefs: string[]; }
|
||||
|
||||
Reference in New Issue
Block a user