File tree Expand file tree Collapse file tree 5 files changed +6
-5
lines changed
Expand file tree Collapse file tree 5 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 11import { assertPathLike , assertString } from "@/assertions/literal" ;
22import {
33 Application ,
4- BaseApplication ,
54 Collection ,
65 SimpleApplicationStatus ,
76 SquareCloudAPI ,
87 SquareCloudAPIError ,
98 User ,
109} from "@/index" ;
10+ import { BaseApplication } from "@/structures/application/base" ;
1111import { RESTPostAPIApplicationUploadResult } from "@squarecloud/api-types/v2" ;
1212import FormData from "form-data" ;
1313import { readFile } from "fs/promises" ;
Original file line number Diff line number Diff line change 11import { assertApplication } from "@/assertions/application" ;
2- import { ApplicationStatus , BaseApplication , SquareCloudAPI } from "@/index" ;
2+ import { ApplicationStatus , SquareCloudAPI } from "@/index" ;
33import {
44 ApplicationBackupManager ,
55 ApplicationCacheManager ,
66 ApplicationDeploysManager ,
77 ApplicationFilesManager ,
88} from "@/managers" ;
99import { APIApplication , ApplicationLanguage } from "@squarecloud/api-types/v2" ;
10+ import { BaseApplication } from "./base" ;
1011import { WebsiteApplication } from "./website" ;
1112
1213/**
Original file line number Diff line number Diff line change 11export * from "./application/application" ;
22export * from "./application/website" ;
3- export * from "./application/base" ;
43export * from "./collection" ;
54export * from "./error" ;
65export * from "./status" ;
Original file line number Diff line number Diff line change 11import { assertUserInfo } from "@/assertions/user" ;
22import { UserPlan } from "@/types/user" ;
33import { APIUserInfo } from "@squarecloud/api-types/v2" ;
4- import { BaseApplication , Collection , SquareCloudAPI } from ".." ;
4+ import { Collection , SquareCloudAPI } from ".." ;
5+ import { BaseApplication } from "./application/base" ;
56
67/**
78 * Represents a Square Cloud user
Original file line number Diff line number Diff line change 11{
2- "target" : " es2020 " ,
2+ "target" : " node18 " ,
33 "format" : [" cjs" , " esm" ],
44 "outDir" : " lib" ,
55 "splitting" : false ,
You can’t perform that action at this time.
0 commit comments