@gymspace/sdk 1.2.19 → 1.2.21

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gymspace/sdk",
3
- "version": "1.2.19",
3
+ "version": "1.2.21",
4
4
  "description": "GymSpace TypeScript SDK for API integration",
5
5
  "author": "GymSpace Team",
6
6
  "license": "MIT",
@@ -39,4 +39,8 @@ export class InvitationsResource extends BaseResource {
39
39
  async cancelInvitation(id: string, options?: RequestOptions): Promise<void> {
40
40
  return this.client.put<void>(`${this.basePath}/${id}/cancel`, undefined, options);
41
41
  }
42
+
43
+ async resendInvitation(id: string, options?: RequestOptions): Promise<void> {
44
+ return this.client.post<void>(`${this.basePath}/${id}/resend`, undefined, options);
45
+ }
42
46
  }