@matchi/api 0.20260428.1 → 0.20260429.1

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.
@@ -198,8 +198,22 @@ type activityOccasion = {
198
198
  };
199
199
 
200
200
  type levelRange = {
201
+ /**
202
+ * Minimum skill level (1-10), rounded to the nearest integer. Prefer minDecimal for new clients.
203
+ */
201
204
  min?: number;
205
+ /**
206
+ * Maximum skill level (1-10), rounded to the nearest integer. Prefer maxDecimal for new clients.
207
+ */
202
208
  max?: number;
209
+ /**
210
+ * Minimum skill level (1.0-10.0) with one decimal of precision, encoded as a numeric string (e.g. "5.5").
211
+ */
212
+ minDecimal?: string;
213
+ /**
214
+ * Maximum skill level (1.0-10.0) with one decimal of precision, encoded as a numeric string (e.g. "5.5").
215
+ */
216
+ maxDecimal?: string;
203
217
  };
204
218
 
205
219
  type activity = {
@@ -1817,7 +1831,7 @@ declare class AnonymousService {
1817
1831
  * @param hideFullyBooked
1818
1832
  * @param exposeOccasions
1819
1833
  * @param facilityIds
1820
- * @param level
1834
+ * @param level Skill level filter (1.0-10.0). Accepts integers and one-decimal-place values (e.g. "5" or "5.5"). Forwarded raw to webapp as a query string.
1821
1835
  * @param locationSearch
1822
1836
  * @param categorySearch
1823
1837
  * @param querySearch
@@ -1829,7 +1843,7 @@ declare class AnonymousService {
1829
1843
  * @returns activitiesResponse A list of activities
1830
1844
  * @throws ApiError
1831
1845
  */
1832
- static listActivities(hideFullyBooked?: boolean, exposeOccasions?: boolean, facilityIds?: Array<number>, level?: number, locationSearch?: string, categorySearch?: string, querySearch?: string, resourceTypes?: Array<string>, startDate?: string, endDate?: string, offset?: number, limit?: number): CancelablePromise<activitiesResponse>;
1846
+ static listActivities(hideFullyBooked?: boolean, exposeOccasions?: boolean, facilityIds?: Array<number>, level?: string, locationSearch?: string, categorySearch?: string, querySearch?: string, resourceTypes?: Array<string>, startDate?: string, endDate?: string, offset?: number, limit?: number): CancelablePromise<activitiesResponse>;
1833
1847
  /**
1834
1848
  * Get details of an activity by ID
1835
1849
  * @param activityId ID of the activity
@@ -198,8 +198,22 @@ type activityOccasion = {
198
198
  };
199
199
 
200
200
  type levelRange = {
201
+ /**
202
+ * Minimum skill level (1-10), rounded to the nearest integer. Prefer minDecimal for new clients.
203
+ */
201
204
  min?: number;
205
+ /**
206
+ * Maximum skill level (1-10), rounded to the nearest integer. Prefer maxDecimal for new clients.
207
+ */
202
208
  max?: number;
209
+ /**
210
+ * Minimum skill level (1.0-10.0) with one decimal of precision, encoded as a numeric string (e.g. "5.5").
211
+ */
212
+ minDecimal?: string;
213
+ /**
214
+ * Maximum skill level (1.0-10.0) with one decimal of precision, encoded as a numeric string (e.g. "5.5").
215
+ */
216
+ maxDecimal?: string;
203
217
  };
204
218
 
205
219
  type activity = {
@@ -1817,7 +1831,7 @@ declare class AnonymousService {
1817
1831
  * @param hideFullyBooked
1818
1832
  * @param exposeOccasions
1819
1833
  * @param facilityIds
1820
- * @param level
1834
+ * @param level Skill level filter (1.0-10.0). Accepts integers and one-decimal-place values (e.g. "5" or "5.5"). Forwarded raw to webapp as a query string.
1821
1835
  * @param locationSearch
1822
1836
  * @param categorySearch
1823
1837
  * @param querySearch
@@ -1829,7 +1843,7 @@ declare class AnonymousService {
1829
1843
  * @returns activitiesResponse A list of activities
1830
1844
  * @throws ApiError
1831
1845
  */
1832
- static listActivities(hideFullyBooked?: boolean, exposeOccasions?: boolean, facilityIds?: Array<number>, level?: number, locationSearch?: string, categorySearch?: string, querySearch?: string, resourceTypes?: Array<string>, startDate?: string, endDate?: string, offset?: number, limit?: number): CancelablePromise<activitiesResponse>;
1846
+ static listActivities(hideFullyBooked?: boolean, exposeOccasions?: boolean, facilityIds?: Array<number>, level?: string, locationSearch?: string, categorySearch?: string, querySearch?: string, resourceTypes?: Array<string>, startDate?: string, endDate?: string, offset?: number, limit?: number): CancelablePromise<activitiesResponse>;
1833
1847
  /**
1834
1848
  * Get details of an activity by ID
1835
1849
  * @param activityId ID of the activity
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@matchi/api",
3
- "version": "0.20260428.1",
3
+ "version": "0.20260429.1",
4
4
  "main": "dist/main/index.js",
5
5
  "module": "dist/main/index.mjs",
6
6
  "devDependencies": {