@scoreboardmax/api-types 1.0.22-next.16 → 1.0.22-next.18

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +10 -0
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -788,6 +788,7 @@ export interface PlayerSummaryRequest {
788
788
  number: string | null;
789
789
  position: string | null;
790
790
  imageFilename: string | null;
791
+ reference?: string;
791
792
  }
792
793
  export interface PlayerSummaryResponse {
793
794
  playerId: string | null;
@@ -799,6 +800,7 @@ export interface PlayerSummaryResponse {
799
800
  imageUrl: string | null;
800
801
  imagePreviewUrl: string | null;
801
802
  imageMediumUrl: string | null;
803
+ reference: string;
802
804
  }
803
805
  export interface PortalSessionResponse {
804
806
  redirectUrl: string;
@@ -885,6 +887,14 @@ export interface ScoreboardListResponse {
885
887
  pageNext: string | null;
886
888
  data: ScoreboardResponse[];
887
889
  }
890
+ export interface ScoreboardQrPdfRequest {
891
+ target: string;
892
+ use: "control" | "embed" | "display" | "direct";
893
+ datePrinted: string;
894
+ }
895
+ export interface ScoreboardQrPdfResponse {
896
+ url: string;
897
+ }
888
898
  export interface ScoreboardRequest {
889
899
  name: string | null;
890
900
  type: ScoreboardType;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@scoreboardmax/api-types",
3
- "version": "1.0.22-next.16",
3
+ "version": "1.0.22-next.18",
4
4
  "description": "TypeScript definitions for ScoreboardMax API",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.mjs",