Skip to content

Commit 3896158

Browse files
committed
mv internal
1 parent bca0dca commit 3896158

12 files changed

Lines changed: 10 additions & 10 deletions

File tree

src/objects/Card/CardFields.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import {
1616
ScryfallSecurityStampLike,
1717
} from "./values";
1818
import { ScryfallCardFace } from "./CardFace";
19-
import { Uuid, Uri, Integer, Decimal, IsoDate } from "../../internal/values";
19+
import { Uuid, Uri, Integer, Decimal, IsoDate } from "../../internal";
2020
import { SetTypeLike } from "../Set/values";
2121
import { ScryfallRelatedCard } from "./RelatedCard";
2222

src/objects/Card/RelatedCard.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { ScryfallObject } from "../Object";
2-
import { Uri, Uuid } from "../../internal/values";
2+
import { Uri, Uuid } from "../../internal";
33

44
export type ScryfallRelatedCard = ScryfallObject.Object<ScryfallObject.ObjectType.RelatedCard> & {
55
/**

src/objects/Catalog/Catalog.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { ScryfallObject } from "../Object";
2-
import { Uri, Integer } from "../../internal/values";
2+
import { Uri, Integer } from "../../internal";
33

44
export type ScryfallCatalog = ScryfallObject.Object<ScryfallObject.ObjectType.Catalog> & {
55
/** A link to the current catalog on Scryfall’s API */

src/objects/Error/Error.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { ScryfallObject } from "../Object";
2-
import { Integer } from "../../internal/values";
2+
import { Integer } from "../../internal";
33

44
export type ScryfallError = ScryfallObject.Object<ScryfallObject.ObjectType.Error> & {
55
/**

src/objects/List/List.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { ScryfallObject } from "../Object";
2-
import { Integer, Uri } from "../../internal/values";
2+
import { Integer, Uri } from "../../internal";
33
import { ScryfallCard } from "../Card";
44
import { ScryfallMigration } from "../Migration";
55
import { ScryfallRuling } from "../Ruling";

src/objects/Migration/Migration.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { ScryfallObject } from "../Object";
2-
import { Uri, Uuid, IsoDate } from "../../internal/values";
2+
import { Uri, Uuid, IsoDate } from "../../internal";
33

44
export enum ScryfallMigrationStrategy {
55
Merge = "merge",

src/objects/Ruling/Ruling.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { ScryfallObject } from "../Object";
2-
import { IsoDate, Uuid } from "../../internal/values";
2+
import { IsoDate, Uuid } from "../../internal";
33

44
export type ScryfallRuling = ScryfallObject.Object<ScryfallObject.ObjectType.Ruling> & {
55
/**

src/objects/Set/Set.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { ScryfallObject } from "../Object";
2-
import { Uuid, Integer, Uri, IsoDate } from "../../internal/values";
2+
import { Uuid, Integer, Uri, IsoDate } from "../../internal";
33
import { SetTypeLike } from "./values";
44

55
export type ScryfallSet = ScryfallObject.Object<ScryfallObject.ObjectType.Set> & {

0 commit comments

Comments
 (0)