mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-17 23:45:59 +00:00
Refactor ChangeSetRedis_Hash interface to use 'key' instead of 'field' for inserts and updates
This commit is contained in:
@@ -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[];
|
||||
}
|
||||
|
||||
|
||||
@@ -25,3 +25,4 @@ export * from './CustomGridDisplay';
|
||||
export * from './ScriptDrivedDeployer';
|
||||
export * from './chartDefinitions';
|
||||
export * from './chartProcessor';
|
||||
export * from './ChangeSetRedis';
|
||||
|
||||
Reference in New Issue
Block a user