@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/dist/index.d.mts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/resources/invitations.ts +4 -0
package/dist/index.mjs
CHANGED
|
@@ -808,6 +808,9 @@ var InvitationsResource = class extends BaseResource {
|
|
|
808
808
|
async cancelInvitation(id, options) {
|
|
809
809
|
return this.client.put(`${this.basePath}/${id}/cancel`, void 0, options);
|
|
810
810
|
}
|
|
811
|
+
async resendInvitation(id, options) {
|
|
812
|
+
return this.client.post(`${this.basePath}/${id}/resend`, void 0, options);
|
|
813
|
+
}
|
|
811
814
|
};
|
|
812
815
|
|
|
813
816
|
// src/resources/assets.ts
|