feat: publish admin sticker releases (TASK-WP5-05)
Dada P0-A isolated Windows CI / validate-and-package (push) Failing after 30s

This commit is contained in:
suyx
2026-08-03 19:43:10 +08:00
parent f1bebab611
commit c92a91a127
21 changed files with 1755 additions and 18 deletions
+8
View File
@@ -0,0 +1,8 @@
export class StickerReleaseError extends Error {
readonly httpStatus: number;
constructor(readonly reason: string, httpStatus = 400) {
super(reason);
this.httpStatus = httpStatus;
}
}