Skip to content

Commit

Permalink
feat: move augment files for better organization
Browse files Browse the repository at this point in the history
  • Loading branch information
zikeji committed Sep 15, 2024
1 parent 6ad6c41 commit 2435dd6
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/helpers/SkyBlockCollections.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { ResourcesSkyblockCollectionsResponse } from "../types/AugmentedTypes";
import type { SkyBlockProfile } from "../types/SkyBlock/Profile";
import type { SkyBlockProfile } from "../types/Augmented/SkyBlock/Profile";

/**
* Interface describing the accumulated information of all members on a profile.
Expand Down
2 changes: 1 addition & 1 deletion src/helpers/SkyBlockSkills.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { ResourcesSkyblockSkillsResponse } from "../types/AugmentedTypes";
import type { SkyBlockProfileMember } from "../types/SkyBlock/ProfileMember";
import type { SkyBlockProfileMember } from "../types/Augmented/SkyBlock/ProfileMember";

export interface SkyBlockSkillsInfo {
FARMING: SkyBlockSkillInfo;
Expand Down
2 changes: 1 addition & 1 deletion src/helpers/TransformSkyBlockItemData.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { MinecraftInventoryData } from "../types/AugmentedTypes";
import type { SkyBlockProfileMember } from "../types/SkyBlock/ProfileMember";
import type { SkyBlockProfileMember } from "../types/Augmented/SkyBlock/ProfileMember";
import { NBTInventory, transformItemData } from "./TransformItemData";

/**
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { Components } from "../api";
import type { Components } from "../../api";
import type { SkyBlockProfileMember } from "./ProfileMember";

/** fix the typing of the members on a SkyBlock profile */
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { Components } from "../api";
import type { MinecraftInventoryData } from "../AugmentedTypes";
import type { Components } from "../../api";
import type { MinecraftInventoryData } from "../../AugmentedTypes";

export type SkyBlockProfileMember = NonNullable<
Components.Schemas.SkyBlockProfile["members"]
Expand Down
2 changes: 1 addition & 1 deletion src/types/AugmentedTypes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*/

import type { Paths } from "./api";
import type { SkyBlockProfile } from "./SkyBlock/Profile";
import type { SkyBlockProfile } from "./Augmented/SkyBlock/Profile";

export type BoostersResponse = Paths.V2Boosters.Get.Responses.$200 &
Record<string, unknown>;
Expand Down

0 comments on commit 2435dd6

Please sign in to comment.