@scoreboardmax/api-types 1.0.13 → 1.0.14

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 +11 -0
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -560,6 +560,17 @@ export interface FootballSettingsRequest extends FootballSettings {
560
560
  }
561
561
  export interface FootballSettingsResponse extends FootballSettings {
562
562
  }
563
+ export interface MagicLinkResponse {
564
+ object: string;
565
+ magicLinkId: string;
566
+ type: MagicLinkType;
567
+ url: string;
568
+ uri: string;
569
+ dateCreated: string;
570
+ dateExpires?: string;
571
+ dateLastUsed?: string;
572
+ token?: string;
573
+ }
563
574
  export interface MagicLinkScoreboardGuestRequest {
564
575
  scoreboardId: string;
565
576
  expiresInHours: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@scoreboardmax/api-types",
3
- "version": "1.0.13",
3
+ "version": "1.0.14",
4
4
  "description": "TypeScript definitions for ScoreboardMax API",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.mjs",