mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-24 15:15: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 {
|
export interface ChangeSetRedis_Hash {
|
||||||
key: string;
|
key: string;
|
||||||
type: 'hash';
|
type: 'hash';
|
||||||
inserts: { field: string; value: string, ttl: number }[];
|
inserts: { key: string; value: string, ttl: number }[];
|
||||||
updates: { field: string; value: string, ttl: number }[];
|
updates: { key: string; value: string, ttl: number }[];
|
||||||
deletes: string[];
|
deletes: string[];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -25,3 +25,4 @@ export * from './CustomGridDisplay';
|
|||||||
export * from './ScriptDrivedDeployer';
|
export * from './ScriptDrivedDeployer';
|
||||||
export * from './chartDefinitions';
|
export * from './chartDefinitions';
|
||||||
export * from './chartProcessor';
|
export * from './chartProcessor';
|
||||||
|
export * from './ChangeSetRedis';
|
||||||
|
|||||||
Reference in New Issue
Block a user