Refactor ChangeSetRedis_Hash interface to use 'key' instead of 'field' for inserts and updates

This commit is contained in:
Stela Augustinova
2025-12-15 14:29:45 +01:00
parent 37b5183be2
commit 5d92c0e85e
2 changed files with 3 additions and 2 deletions

View File

@@ -13,8 +13,8 @@ export interface ChangeSetRedis_JSON {
export interface ChangeSetRedis_Hash {
key: string;
type: 'hash';
inserts: { field: string; value: string, ttl: number }[];
updates: { field: string; value: string, ttl: number }[];
inserts: { key: string; value: string, ttl: number }[];
updates: { key: string; value: string, ttl: number }[];
deletes: string[];
}

View File

@@ -25,3 +25,4 @@ export * from './CustomGridDisplay';
export * from './ScriptDrivedDeployer';
export * from './chartDefinitions';
export * from './chartProcessor';
export * from './ChangeSetRedis';