Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions src/API/AddTracking.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import AddTrackersResponse, { TAddTrackersResponse } from "./../Types/APIResponses/AddTrackers.js";
import { TTracker } from "./../Types/Objects/Tracker.js";
import PayPal from "../PayPal.js";
import Tracker from "../Types/Objects/Tracker.js";
import LinkDescription, { TLinkDescription } from "../Types/Objects/LinkDescription.js";
import TrackerIdentifier from "../Types/Objects/TrackerIdentifier.js";
import { default as PayPalError } from "../Types/Objects/Error.js";
import TrackerUpdateOrCancelError from "../Errors/AddTracking/TrackerUpdateOrCancelError.js";
import AddTrackersResponse, { TAddTrackersResponse } from "@Types/APIResponses/AddTrackers.js";
import { TTracker } from "@Types/Objects/Tracker.js";
import PayPal from "@/PayPal.js";
import Tracker from "@Types/Objects/Tracker.js";
import LinkDescription, { TLinkDescription } from "@Types/Objects/LinkDescription.js";
import TrackerIdentifier from "@Types/Objects/TrackerIdentifier.js";
import { default as PayPalError } from "@Types/Objects/Error.js";
import TrackerUpdateOrCancelError from "@Errors/AddTracking/TrackerUpdateOrCancelError.js";

class AddTracking {
protected PayPal: PayPal;
Expand Down
4 changes: 2 additions & 2 deletions src/API/Authentication.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import PayPal from "../PayPal.js";
import { Integer } from "../Types/Types.js";
import PayPal from "@/PayPal.js";
import { Integer } from "@Types/Types.js";

class Authentication {
protected PayPal: PayPal;
Expand Down
16 changes: 7 additions & 9 deletions src/API/Disputes.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
import PayPal from "../PayPal";
import ListDisputesResponse, { TListDisputesResponse } from "../Types/APIResponses/ListDisputes";
import PartialUpdateDisputeResponse, {
TPartialUpdateDisputeResponse,
} from "../Types/APIResponses/PartialUpdateDispute";
import { DisputeState } from "../Types/Enums/DisputeState";
import Patch from "../Types/Objects/Patch";
import { TPatchRequest } from "../Types/Objects/PatchRequest";
import { Integer } from "../Types/Types";
import PayPal from "@/PayPal";
import ListDisputesResponse, { TListDisputesResponse } from "@Types/APIResponses/ListDisputes";
import PartialUpdateDisputeResponse, { TPartialUpdateDisputeResponse } from "@Types/APIResponses/PartialUpdateDispute";
import { DisputeState } from "@Types/Enums/DisputeState";
import Patch from "@Types/Objects/Patch";
import { TPatchRequest } from "@Types/Objects/PatchRequest";
import { Integer } from "@Types/Types";

class Disputes {
protected PayPal: PayPal;
Expand Down
38 changes: 19 additions & 19 deletions src/API/Invoicing.ts
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
import PayPal from "../PayPal.js";
import PayPal from "@/PayPal.js";
import GenerateInvoiceNumberResponse, {
TGenerateInvoiceNumberResponse,
} from "../Types/APIResponses/GenerateInvoiceNumber.js";
import ListInvoicesResponse, { TListInvoicesResponse } from "../Types/APIResponses/ListInvoices.js";
import ListTemplatesResponse, { TListTemplatesResponse } from "../Types/APIResponses/ListTemplates.js";
import SearchForInvoicesResponse, { TSearchForInvoicesResponse } from "../Types/APIResponses/SearchForInvoices.js";
import { GenerateQrCodeAction } from "../Types/Enums/GenerateQrCodeAction.js";
import { InvoiceStatus } from "../Types/Enums/InvoiceStatus.js";
import AddressPortable from "../Types/Objects/AddressPortable.js";
import { TAmountRange } from "../Types/Objects/AmountRange.js";
import { TDateRange } from "../Types/Objects/DateRange.js";
import EmailAddress, { TEmailAddress } from "../Types/Objects/EmailAddress.js";
import Field from "../Types/Objects/Field.js";
import Invoice, { TInvoice } from "../Types/Objects/Invoice.js";
import LinkDescription from "../Types/Objects/LinkDescription.js";
import PaymentDetail, { TPaymentDetail } from "../Types/Objects/PaymentDetail.js";
import PhoneDetail from "../Types/Objects/PhoneDetail.js";
import RefundDetail, { TRefundDetail } from "../Types/Objects/RefundDetail.js";
import Template, { TTemplate } from "../Types/Objects/Template.js";
import { Integer } from "../Types/Types.js";
} from "@Types/APIResponses/GenerateInvoiceNumber.js";
import ListInvoicesResponse, { TListInvoicesResponse } from "@Types/APIResponses/ListInvoices.js";
import ListTemplatesResponse, { TListTemplatesResponse } from "@Types/APIResponses/ListTemplates.js";
import SearchForInvoicesResponse, { TSearchForInvoicesResponse } from "@Types/APIResponses/SearchForInvoices.js";
import { GenerateQrCodeAction } from "@Types/Enums/GenerateQrCodeAction.js";
import { InvoiceStatus } from "@Types/Enums/InvoiceStatus.js";
import AddressPortable from "@Types/Objects/AddressPortable.js";
import { TAmountRange } from "@Types/Objects/AmountRange.js";
import { TDateRange } from "@Types/Objects/DateRange.js";
import EmailAddress, { TEmailAddress } from "@Types/Objects/EmailAddress.js";
import Field from "@Types/Objects/Field.js";
import Invoice, { TInvoice } from "@Types/Objects/Invoice.js";
import LinkDescription from "@Types/Objects/LinkDescription.js";
import PaymentDetail, { TPaymentDetail } from "@Types/Objects/PaymentDetail.js";
import PhoneDetail from "@Types/Objects/PhoneDetail.js";
import RefundDetail, { TRefundDetail } from "@Types/Objects/RefundDetail.js";
import Template, { TTemplate } from "@Types/Objects/Template.js";
import { Integer } from "@Types/Types.js";

class Invoicing {
protected PayPal: PayPal;
Expand Down
18 changes: 9 additions & 9 deletions src/API/Products.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import { TProduct } from "./../Types/Objects/Product.js";
import ListProductsResponse, { TListProductsResponse } from "./../Types/APIResponses/ListProducts.js";
import PayPal from "../PayPal.js";
import LinkDescription from "../Types/Objects/LinkDescription.js";
import ProductCollectionElement from "../Types/Objects/ProductCollectionElement.js";
import Product from "../Types/Objects/Product.js";
import PatchRequest, { TPatchRequest } from "../Types/Objects/PatchRequest.js";
import ProductUpdateError from "../Errors/Products/ProductUpdateError.js";
import { Integer } from "../Types/Types.js";
import { TProduct } from "@Types/Objects/Product.js";
import ListProductsResponse, { TListProductsResponse } from "@Types/APIResponses/ListProducts.js";
import PayPal from "@/PayPal.js";
import LinkDescription from "@Types/Objects/LinkDescription.js";
import ProductCollectionElement from "@Types/Objects/ProductCollectionElement.js";
import Product from "@Types/Objects/Product.js";
import PatchRequest, { TPatchRequest } from "@Types/Objects/PatchRequest.js";
import ProductUpdateError from "@Errors/Products/ProductUpdateError.js";
import { Integer } from "@Types/Types.js";

class Products {
protected PayPal: PayPal;
Expand Down
2 changes: 1 addition & 1 deletion src/Errors/AddTracking/TrackerUpdateOrCancelError.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import APIError from "../APIError.js";
import APIError from "@Errors/APIError.js";

class TrackerUpdateOrCancelError extends APIError {
declare data: unknown;
Expand Down
2 changes: 1 addition & 1 deletion src/Errors/Invoicing/InvoiceSendError.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { AxiosResponse } from "axios";
import APIError from "../APIError.js";
import APIError from "@Errors/APIError.js";

class InvoiceSendError extends APIError {
declare data: AxiosResponse<unknown, any>;
Expand Down
2 changes: 1 addition & 1 deletion src/Errors/Products/ProductUpdateError.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import APIError from "../APIError";
import APIError from "@Errors/APIError.js";

class ProductUpdateError extends APIError {
declare data: unknown;
Expand Down
12 changes: 6 additions & 6 deletions src/Types/APIResponses/AddTrackers.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { TLinkDescription } from "./../Objects/LinkDescription.js";
import { TError } from "./../Objects/Error.js";
import Error from "../Objects/Error.js";
import LinkDescription from "../Objects/LinkDescription.js";
import TrackerIdentifier, { TTrackerIdentifier } from "../Objects/TrackerIdentifier.js";
import Types, { ITypes, Static } from "../Types.js";
import { TLinkDescription } from "@Types/Objects/LinkDescription.js";
import { TError } from "@Types/Objects/Error.js";
import Error from "@Types/Objects/Error.js";
import LinkDescription from "@Types/Objects/LinkDescription.js";
import TrackerIdentifier, { TTrackerIdentifier } from "@Types/Objects/TrackerIdentifier.js";
import Types, { ITypes, Static } from "@Types/Types.js";

export type TAddTrackersResponse = {
readonly errors: TError[];
Expand Down
2 changes: 1 addition & 1 deletion src/Types/APIResponses/GenerateInvoiceNumber.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import Types, { ITypes, Static } from "../Types.js";
import Types, { ITypes, Static } from "@Types/Types.js";

export type TGenerateInvoiceNumberResponse = {
readonly invoice_number: string;
Expand Down
6 changes: 3 additions & 3 deletions src/Types/APIResponses/ListDisputes.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import DisputeInfo, { TDisputeInfo } from "../Objects/DisputeInfo";
import LinkDescription, { TLinkDescription } from "../Objects/LinkDescription";
import Types, { ITypes, Static } from "../Types";
import DisputeInfo, { TDisputeInfo } from "@Types/Objects/DisputeInfo";
import LinkDescription, { TLinkDescription } from "@Types/Objects/LinkDescription";
import Types, { ITypes, Static } from "@Types/Types";

export type TListDisputesResponse = {
readonly items: TDisputeInfo[];
Expand Down
6 changes: 3 additions & 3 deletions src/Types/APIResponses/ListInvoices.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Invoice, { TInvoice } from "../Objects/Invoice.js";
import LinkDescription, { TLinkDescription } from "../Objects/LinkDescription.js";
import Types, { ITypes, Integer, Static } from "../Types.js";
import Invoice, { TInvoice } from "@Types/Objects/Invoice.js";
import LinkDescription, { TLinkDescription } from "@Types/Objects/LinkDescription.js";
import Types, { ITypes, Integer, Static } from "@Types/Types.js";

export type TListInvoicesResponse<N extends number, U extends number> = {
readonly items: TInvoice[];
Expand Down
8 changes: 4 additions & 4 deletions src/Types/APIResponses/ListProducts.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { TLinkDescription } from "./../Objects/LinkDescription.js";
import LinkDescription from "../Objects/LinkDescription.js";
import ProductCollectionElement, { TProductCollectionElement } from "../Objects/ProductCollectionElement.js";
import Types, { ITypes, Integer, Static } from "../Types.js";
import { TLinkDescription } from "@Types/Objects/LinkDescription.js";
import LinkDescription from "@Types/Objects/LinkDescription.js";
import ProductCollectionElement, { TProductCollectionElement } from "@Types/Objects/ProductCollectionElement.js";
import Types, { ITypes, Integer, Static } from "@Types/Types.js";

export type TListProductsResponse<N extends number, U extends number> = {
readonly links: TLinkDescription[];
Expand Down
10 changes: 5 additions & 5 deletions src/Types/APIResponses/ListTemplates.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import AddressPortable, { TAddressPortable } from "../Objects/AddressPortable.js";
import LinkDescription, { TLinkDescription } from "../Objects/LinkDescription.js";
import PhoneDetail, { TPhoneDetail } from "../Objects/PhoneDetail.js";
import Template, { TTemplate } from "../Objects/Template.js";
import Types, { ITypes, Static } from "../Types.js";
import AddressPortable, { TAddressPortable } from "@Types/Objects/AddressPortable.js";
import LinkDescription, { TLinkDescription } from "@Types/Objects/LinkDescription.js";
import PhoneDetail, { TPhoneDetail } from "@Types/Objects/PhoneDetail.js";
import Template, { TTemplate } from "@Types/Objects/Template.js";
import Types, { ITypes, Static } from "@Types/Types.js";

export type TListTemplatesResponse = {
readonly addresses: TAddressPortable[];
Expand Down
4 changes: 2 additions & 2 deletions src/Types/APIResponses/PartialUpdateDispute.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import LinkDescription, { TLinkDescription } from "../Objects/LinkDescription";
import Types, { ITypes, Static } from "../Types";
import LinkDescription, { TLinkDescription } from "@Types/Objects/LinkDescription";
import Types, { ITypes, Static } from "@Types/Types";

export type TPartialUpdateDisputeResponse = {
readonly links: TLinkDescription[];
Expand Down
6 changes: 3 additions & 3 deletions src/Types/APIResponses/SearchForInvoices.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Invoice, { TInvoice } from "../Objects/Invoice.js";
import LinkDescription, { TLinkDescription } from "../Objects/LinkDescription.js";
import Types, { ITypes, Integer, Static } from "../Types.js";
import Invoice, { TInvoice } from "@Types/Objects/Invoice.js";
import LinkDescription, { TLinkDescription } from "@Types/Objects/LinkDescription.js";
import Types, { ITypes, Integer, Static } from "@Types/Types.js";

export type TSearchForInvoicesResponse<N extends number, U extends number> = {
readonly items: TInvoice[];
Expand Down
2 changes: 1 addition & 1 deletion src/Types/Objects/202Response.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import Types, { ITypes, Static } from "../Types.js";
import Types, { ITypes, Static } from "@Types/Types.js";
import LinkDescription, { TLinkDescription } from "./LinkDescription.js";

export type TAcceptedResponse = {
Expand Down
6 changes: 3 additions & 3 deletions src/Types/Objects/AcceptClaim.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { AcceptClaimReason } from "../Enums/AcceptClaimReason.js";
import { AcceptClaimType } from "../Enums/AcceptClaimType.js";
import Types, { ITypes, Static } from "../Types.js";
import { AcceptClaimReason } from "@Types/Enums/AcceptClaimReason.js";
import { AcceptClaimType } from "@Types/Enums/AcceptClaimType.js";
import Types, { ITypes, Static } from "@Types/Types.js";
import AddressPortable, { TAddressPortable } from "./AddressPortable.js";
import Money, { TMoney } from "./Money.js";
import ResponseAcceptClaimType, { TResponseAcceptClaimType } from "./ResponseAcceptClaimType.js";
Expand Down
2 changes: 1 addition & 1 deletion src/Types/Objects/AcceptOffer.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import Types, { ITypes, Static } from "../Types.js";
import Types, { ITypes, Static } from "@Types/Types.js";

export type TAcceptOffer = {
note?: string;
Expand Down
4 changes: 2 additions & 2 deletions src/Types/Objects/AcknowledgeReturnItem.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Types, { ITypes, Static } from "../Types.js";
import Types, { ITypes, Static } from "@Types/Types.js";
import AcknowledgementType, { TAcknowledgementType } from "./AcknowledgementType.js";
import { AcknowledgementType as AcknowledgementTypeEnum } from "../Enums/AcknowledgementType.js";
import { AcknowledgementType as AcknowledgementTypeEnum } from "@Types/Enums/AcknowledgementType.js";
import AcknowledgeReturnItemEvidence, { TAcknowledgeReturnItemEvidence } from "./AcknowledgeReturnItemEvidence.js";

export type TAcknowledgeReturnItem = {
Expand Down
4 changes: 2 additions & 2 deletions src/Types/Objects/AcknowledgeReturnItemEvidence.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { EvidenceType } from "../Enums/EvidenceType.js";
import Types, { ITypes, Static } from "../Types.js";
import { EvidenceType } from "@Types/Enums/EvidenceType.js";
import Types, { ITypes, Static } from "@Types/Types.js";
import Document, { TDocument } from "./Document.js";

export type TAcknowledgeReturnItemEvidence = {
Expand Down
4 changes: 2 additions & 2 deletions src/Types/Objects/AcknowledgementType.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import Types, { ITypes, Static } from "../Types.js";
import { AcknowledgementType as AcknowledgementTypeEnum } from "../Enums/AcknowledgementType.js";
import Types, { ITypes, Static } from "@Types/Types.js";
import { AcknowledgementType as AcknowledgementTypeEnum } from "@Types/Enums/AcknowledgementType.js";

export type TAcknowledgementType = {
acknowledgement_type?: keyof typeof AcknowledgementTypeEnum;
Expand Down
4 changes: 2 additions & 2 deletions src/Types/Objects/ActionInfo.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Action } from "../Enums/Action";
import Types, { ITypes, Static } from "../Types";
import { Action } from "@Types/Enums/Action";
import Types, { ITypes, Static } from "@Types/Types";

export type TActionInfo = {
action?: keyof typeof Action;
Expand Down
2 changes: 1 addition & 1 deletion src/Types/Objects/AddressDetails.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import Types, { ITypes, Static } from "../Types.js";
import Types, { ITypes, Static } from "@Types/Types.js";

export type TAddressDetails = {
street_number?: string;
Expand Down
2 changes: 1 addition & 1 deletion src/Types/Objects/AddressPortable.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import Types, { ITypes, Static } from "../Types.js";
import Types, { ITypes, Static } from "@Types/Types.js";
import AddressDetails, { TAddressDetails } from "./AddressDetails.js";

export type TAddressPortable = {
Expand Down
4 changes: 2 additions & 2 deletions src/Types/Objects/Adjudicate.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { AdjudicationOutcome } from "../Enums/AdjudicationOutcome";
import Types, { ITypes, Static } from "../Types";
import { AdjudicationOutcome } from "@Types/Enums/AdjudicationOutcome";
import Types, { ITypes, Static } from "@Types/Types";

export type TAdjudicate = {
adjudication_outcome?: keyof typeof AdjudicationOutcome;
Expand Down
8 changes: 4 additions & 4 deletions src/Types/Objects/Adjudication.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { AdjudicationReason } from "../Enums/AdjudicationReason";
import { AdjudicationType } from "../Enums/AdjudicationType";
import { DisputeLifeCycleStage } from "../Enums/DisputeLifeCycleStage";
import Types, { ITypes, Static } from "../Types";
import { AdjudicationReason } from "@Types/Enums/AdjudicationReason";
import { AdjudicationType } from "@Types/Enums/AdjudicationType";
import { DisputeLifeCycleStage } from "@Types/Enums/DisputeLifeCycleStage";
import Types, { ITypes, Static } from "@Types/Types";

export type TAdjudication = {
adjudication_time: string;
Expand Down
2 changes: 1 addition & 1 deletion src/Types/Objects/AggregatedDiscount.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import Types, { ITypes, Static } from "../Types.js";
import Types, { ITypes, Static } from "@Types/Types.js";
import Discount, { TDiscount } from "./Discount.js";
import Money, { TMoney } from "./Money.js";

Expand Down
2 changes: 1 addition & 1 deletion src/Types/Objects/AllowedResponseOptions.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import Types, { ITypes, Static } from "../Types";
import Types, { ITypes, Static } from "@Types/Types";
import AcceptClaim, { TAcceptClaim } from "./AcceptClaim";
import AcknowledgeReturnItem, { TAcknowledgeReturnItem } from "./AcknowledgeReturnItem";
import MakeOffer, { TMakeOffer } from "./MakeOffer";
Expand Down
2 changes: 1 addition & 1 deletion src/Types/Objects/AmountRange.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import Types, { ITypes, Static } from "../Types.js";
import Types, { ITypes, Static } from "@Types/Types.js";
import Money, { TMoney } from "./Money.js";

export type TAmountRange = {
Expand Down
2 changes: 1 addition & 1 deletion src/Types/Objects/AmountSummaryDetail.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import Types, { ITypes, Static } from "../Types.js";
import Types, { ITypes, Static } from "@Types/Types.js";
import AmountWithBreakdown, { TAmountWithBreakdown } from "./AmountWithBreakdown.js";

export type TAmountSummaryDetail = {
Expand Down
2 changes: 1 addition & 1 deletion src/Types/Objects/AmountWithBreakdown.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import Types, { ITypes, Static } from "../Types.js";
import Types, { ITypes, Static } from "@Types/Types.js";
import AggregatedDiscount, { TAggregatedDiscount } from "./AggregatedDiscount.js";
import CustomAmount, { TCustomAmount } from "./CustomAmount.js";
import Money, { TMoney } from "./Money.js";
Expand Down
2 changes: 1 addition & 1 deletion src/Types/Objects/BatchTrackerCollection.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import Types, { ITypes, Static } from "../Types.js";
import Types, { ITypes, Static } from "@Types/Types.js";
import LinkDescription, { TLinkDescription } from "./LinkDescription.js";
import TrackerIdentifier, { TTrackerIdentifier } from "./TrackerIdentifier.js";
import Error, { TError } from "./Error.js";
Expand Down
2 changes: 1 addition & 1 deletion src/Types/Objects/BillingInfo.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import Types, { ITypes, Static } from "../Types.js";
import Types, { ITypes, Static } from "@Types/Types.js";
import PhoneDetail, { TPhoneDetail } from "./PhoneDetail.js";

export type TBillingInfo = {
Expand Down
2 changes: 1 addition & 1 deletion src/Types/Objects/BusinessName.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import Types, { ITypes, Static } from "../Types.js";
import Types, { ITypes, Static } from "@Types/Types.js";

export type TBusinessName = {
business_name?: string;
Expand Down
2 changes: 1 addition & 1 deletion src/Types/Objects/Configuration.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import Types, { ITypes, Static } from "../Types.js";
import Types, { ITypes, Static } from "@Types/Types.js";
import PartialPayment, { TPartialPayment } from "./PartialPayment.js";

export type TConfiguration = {
Expand Down
2 changes: 1 addition & 1 deletion src/Types/Objects/ContactInformation.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import Types, { ITypes, Static } from "../Types.js";
import Types, { ITypes, Static } from "@Types/Types.js";
import AddressPortable, { TAddressPortable } from "./AddressPortable.js";
import Name, { TName } from "./Name.js";

Expand Down
4 changes: 2 additions & 2 deletions src/Types/Objects/Cryptocurrency.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { AssetSymbol } from "../Enums/AssetSymbol";
import Types, { ITypes, Static } from "../Types";
import { AssetSymbol } from "@Types/Enums/AssetSymbol";
import Types, { ITypes, Static } from "@Types/Types";

export type TCryptocurrency = {
asset_symbol: keyof typeof AssetSymbol;
Expand Down
2 changes: 1 addition & 1 deletion src/Types/Objects/CustomAmount.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import Types, { ITypes, Static } from "../Types.js";
import Types, { ITypes, Static } from "@Types/Types.js";
import Money, { TMoney } from "./Money.js";

export type TCustomAmount = {
Expand Down
2 changes: 1 addition & 1 deletion src/Types/Objects/DateNoTime.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import Types, { ITypes, Static } from "../Types.js";
import Types, { ITypes, Static } from "@Types/Types.js";

export type TDateNoTime = {
date_no_time?: string;
Expand Down
2 changes: 1 addition & 1 deletion src/Types/Objects/DateRange.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import Types, { ITypes, Static } from "../Types.js";
import Types, { ITypes, Static } from "@Types/Types.js";

export type TDateRange = {
end: string;
Expand Down
2 changes: 1 addition & 1 deletion src/Types/Objects/Discount.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import Types, { ITypes, Static } from "../Types.js";
import Types, { ITypes, Static } from "@Types/Types.js";
import Money, { TMoney } from "./Money.js";

export type TDiscount = {
Expand Down
Loading