@matchi/api 0.20260519.1 → 0.20260519.3
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/main/index.d.mts +4 -0
- package/dist/main/index.d.ts +4 -0
- package/package.json +1 -1
package/dist/main/index.d.mts
CHANGED
|
@@ -214,6 +214,10 @@ type levelRange = {
|
|
|
214
214
|
* Maximum skill level (1.0-10.0) with one decimal of precision, encoded as a numeric string (e.g. "5.5").
|
|
215
215
|
*/
|
|
216
216
|
maxDecimal?: string;
|
|
217
|
+
/**
|
|
218
|
+
* When true, the activity accepts players of any skill level and the integer/decimal level fields are null. When false or null, the level range fields apply. Clients should render "All levels" instead of a numeric range when this flag is true.
|
|
219
|
+
*/
|
|
220
|
+
anyLevel?: boolean;
|
|
217
221
|
};
|
|
218
222
|
|
|
219
223
|
type activity = {
|
package/dist/main/index.d.ts
CHANGED
|
@@ -214,6 +214,10 @@ type levelRange = {
|
|
|
214
214
|
* Maximum skill level (1.0-10.0) with one decimal of precision, encoded as a numeric string (e.g. "5.5").
|
|
215
215
|
*/
|
|
216
216
|
maxDecimal?: string;
|
|
217
|
+
/**
|
|
218
|
+
* When true, the activity accepts players of any skill level and the integer/decimal level fields are null. When false or null, the level range fields apply. Clients should render "All levels" instead of a numeric range when this flag is true.
|
|
219
|
+
*/
|
|
220
|
+
anyLevel?: boolean;
|
|
217
221
|
};
|
|
218
222
|
|
|
219
223
|
type activity = {
|