Skip to content

Commit

Permalink
Update adapter key path part to properly have / properly (#530)
Browse files Browse the repository at this point in the history
update again
  • Loading branch information
xinlili-statsig authored Nov 19, 2024
1 parent 74a9406 commit ccfd105
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/interfaces/IDataAdapter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ export type AdapterResponse = {
const STATSIG_PREFIX = 'statsig';

export enum DataAdapterKeyPath {
V1Rulesets = 'v1/download_config_specs',
V2Rulesets = 'v2/download_config_specs',
V1IDLists = 'v1/get_id_lists',
V1Rulesets = '/v1/download_config_specs',
V2Rulesets = '/v2/download_config_specs',
V1IDLists = '/v1/get_id_lists',
IDList = 'id_list',
}

Expand Down

0 comments on commit ccfd105

Please sign in to comment.