Remove standards config fallback and implement caching

This commit is contained in:
Dominic Ferrando
2026-07-06 11:42:12 -04:00
parent 49f4f209a6
commit 756e4f86d9
10 changed files with 95 additions and 5476 deletions
+2 -1
View File
@@ -17,8 +17,9 @@ type Credentials = {
export class PrintfulError extends Error {
constructor(
message: string,
public status: number,
public upstreamStatus: number,
public payload: unknown,
public status: number = 502
) {
super(message);
this.name = "PrintfulError";