@scoreboardmax/api-types 1.0.27 → 1.0.28
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +8 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -885,6 +885,14 @@ export interface ScoreboardListResponse {
|
|
|
885
885
|
pageNext: string | null;
|
|
886
886
|
data: ScoreboardResponse[];
|
|
887
887
|
}
|
|
888
|
+
export interface ScoreboardQrPdfRequest {
|
|
889
|
+
target: string;
|
|
890
|
+
use: "control" | "embed" | "display" | "direct";
|
|
891
|
+
datePrinted: string;
|
|
892
|
+
}
|
|
893
|
+
export interface ScoreboardQrPdfResponse {
|
|
894
|
+
url: string;
|
|
895
|
+
}
|
|
888
896
|
export interface ScoreboardRequest {
|
|
889
897
|
name: string | null;
|
|
890
898
|
type: ScoreboardType;
|