Fresh dist
All checks were successful
continuous-integration/drone Build is passing

This commit is contained in:
2023-02-02 16:14:10 +01:00
parent e996375677
commit ad90844846
43 changed files with 270 additions and 267 deletions

View File

@@ -6,7 +6,7 @@ class GroupContactService {
/**
* Get all
* Lists all contacts. <br> This includes the contact's associated groups.
* @result ResponseGroupContact
* @returns ResponseGroupContact
* @throws ApiError
*/
static async groupContactControllerGetAll() {
@@ -20,7 +20,7 @@ class GroupContactService {
* Post
* Create a new contact.
* @param requestBody CreateGroupContact
* @result ResponseGroupContact
* @returns ResponseGroupContact
* @throws ApiError
*/
static async groupContactControllerPost(requestBody) {
@@ -35,7 +35,7 @@ class GroupContactService {
* Get one
* Lists all information about the contact whose id got provided. <br> This includes the contact's associated groups.
* @param id
* @result ResponseGroupContact
* @returns ResponseGroupContact
* @throws ApiError
*/
static async groupContactControllerGetOne(id) {
@@ -50,7 +50,7 @@ class GroupContactService {
* Update the contact whose id you provided. <br> Please remember that ids can't be changed.
* @param id
* @param requestBody UpdateGroupContact
* @result ResponseGroupContact
* @returns ResponseGroupContact
* @throws ApiError
*/
static async groupContactControllerPut(id, requestBody) {
@@ -66,8 +66,8 @@ class GroupContactService {
* Delete the contact whose id you provided. <br> If no contact with this id exists it will just return 204(no content). <br> This won't delete any groups associated with the contact.
* @param id
* @param force
* @result ResponseGroupContact
* @result ResponseEmpty
* @returns ResponseGroupContact
* @returns ResponseEmpty
* @throws ApiError
*/
static async groupContactControllerRemove(id, force) {