-
-
Notifications
You must be signed in to change notification settings - Fork 725
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: rebrand cache to delta (#8986)
The cache is too generic, we will be using delta from now on.
- Loading branch information
Showing
12 changed files
with
89 additions
and
89 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
...t-feature-toggle-cache-read-model-type.ts → ...t-feature-toggle-delta-read-model-type.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
import type { IFeatureToggleQuery } from '../../../types'; | ||
import type { FeatureConfigurationClient } from '../../feature-toggle/types/feature-toggle-strategies-store-type'; | ||
|
||
export interface FeatureConfigurationCacheClient | ||
export interface FeatureConfigurationDeltaClient | ||
extends FeatureConfigurationClient { | ||
description: string; | ||
impressionData: false; | ||
} | ||
|
||
export interface IClientFeatureToggleCacheReadModel { | ||
export interface IClientFeatureToggleDeltaReadModel { | ||
getAll( | ||
featureQuery: IFeatureToggleQuery, | ||
): Promise<FeatureConfigurationCacheClient[]>; | ||
): Promise<FeatureConfigurationDeltaClient[]>; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...cache/client-feature-toggle-cache.test.ts → ...delta/client-feature-toggle-delta.test.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.