@scoreboardmax/api-types 1.0.47 → 1.0.48

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 CHANGED
@@ -119,10 +119,6 @@ export interface AppResponse {
119
119
  * App input field definition
120
120
  */
121
121
  export type InputDefinition = SelectInput | BooleanInput | ColorInput | TextInput | NumberInput | RangeInput;
122
- /**
123
- * App input field selection
124
- */
125
- export type InputSelection = Record<string, string | number | boolean>;
126
122
  /**
127
123
  * App manifest definition
128
124
  */
@@ -1729,7 +1725,7 @@ export interface TeamResponse {
1729
1725
  export interface TemplateDefinition {
1730
1726
  path: string;
1731
1727
  name: string;
1732
- sport: string;
1728
+ scoreboardType: string;
1733
1729
  useCases: TemplateUseCase[];
1734
1730
  thumbnail?: string;
1735
1731
  settings?: Record<string, InputDefinition>;
@@ -1742,7 +1738,7 @@ export interface TemplateSelection {
1742
1738
  appId: string;
1743
1739
  useCase: TemplateUseCase;
1744
1740
  version?: string;
1745
- settings?: Record<string, InputSelection>;
1741
+ settings?: Record<string, string | number | boolean | null>;
1746
1742
  }
1747
1743
  /**
1748
1744
  * Template use case categories
@@ -129,10 +129,6 @@ export interface AppResponse {
129
129
  * App input field definition
130
130
  */
131
131
  export type InputDefinition = SelectInput | BooleanInput | ColorInput | TextInput | NumberInput | RangeInput;
132
- /**
133
- * App input field selection
134
- */
135
- export type InputSelection = Record<string, string | number | boolean>;
136
132
  /**
137
133
  * App manifest definition
138
134
  */
@@ -1752,7 +1748,7 @@ export interface TeamResponse {
1752
1748
  export interface TemplateDefinition {
1753
1749
  path: string;
1754
1750
  name: string;
1755
- sport: string;
1751
+ scoreboardType: string;
1756
1752
  useCases: TemplateUseCase[];
1757
1753
  thumbnail?: string;
1758
1754
  settings?: Record<string, InputDefinition>;
@@ -1765,7 +1761,7 @@ export interface TemplateSelection {
1765
1761
  appId: string;
1766
1762
  useCase: TemplateUseCase;
1767
1763
  version?: string;
1768
- settings?: Record<string, InputSelection>;
1764
+ settings?: Record<string, string | number | boolean | null>;
1769
1765
  }
1770
1766
  /**
1771
1767
  * Template use case categories
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@scoreboardmax/api-types",
3
- "version": "1.0.47",
3
+ "version": "1.0.48",
4
4
  "description": "TypeScript definitions for ScoreboardMax API",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.mjs",