@gymspace/sdk 1.2.8 → 1.2.9
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.mts +36 -3
- package/dist/index.d.ts +36 -3
- package/dist/index.js +8 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +8 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/models/check-ins.ts +6 -4
- package/src/models/dashboard.ts +26 -1
- package/src/resources/admin-subscription-management.ts +1 -1
- package/src/resources/dashboard.ts +11 -1
package/dist/index.mjs
CHANGED
|
@@ -613,6 +613,14 @@ var DashboardResource = class extends BaseResource {
|
|
|
613
613
|
...params
|
|
614
614
|
});
|
|
615
615
|
}
|
|
616
|
+
/**
|
|
617
|
+
* Get detailed list of check-ins within date range
|
|
618
|
+
* @param params Optional date range parameters (defaults to current day)
|
|
619
|
+
* @returns Detailed list of check-ins with client and registeredBy information
|
|
620
|
+
*/
|
|
621
|
+
async getCheckInsList(params) {
|
|
622
|
+
return this.client.get("/dashboard/check-ins/list", params);
|
|
623
|
+
}
|
|
616
624
|
};
|
|
617
625
|
|
|
618
626
|
// src/resources/evaluations.ts
|