Skip to content

Commit

Permalink
Merge branch 'bfritscher-preset-id-to-name'
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonbosco committed Jan 26, 2024
2 parents 2d80b28 + af512c7 commit 7d48680
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion dist/typesense.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions lib/Typesense/Preset.d.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import ApiCall from "./ApiCall";
import { PresetCreateSchema } from "./Presets";
export interface PresetSchema extends PresetCreateSchema {
id: string;
name: string;
}
export interface PresetDeleteSchema {
id: string;
name: string;
}
export default class Preset {
private presetId;
Expand Down
4 changes: 2 additions & 2 deletions src/Typesense/Preset.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ import ApiCall from "./ApiCall";
import Presets, { PresetCreateSchema } from "./Presets";

export interface PresetSchema extends PresetCreateSchema {
id: string;
name: string;
}

export interface PresetDeleteSchema {
id: string;
name: string;
}

export default class Preset {
Expand Down

0 comments on commit 7d48680

Please sign in to comment.