🚀New lib version v0.2.0 [CI SKIP]
All checks were successful
continuous-integration/drone Build is passing
All checks were successful
continuous-integration/drone Build is passing
This commit is contained in:
84
dist/services/GroupContactService.js
vendored
Normal file
84
dist/services/GroupContactService.js
vendored
Normal file
@@ -0,0 +1,84 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.GroupContactService = void 0;
|
||||
const request_1 = require("../core/request");
|
||||
class GroupContactService {
|
||||
/**
|
||||
* Get all
|
||||
* Lists all contacts. <br> This includes the contact's associated groups.
|
||||
* @returns ResponseGroupContact
|
||||
* @throws ApiError
|
||||
*/
|
||||
static async groupContactControllerGetAll() {
|
||||
const result = await request_1.request({
|
||||
method: 'GET',
|
||||
path: `/api/contacts`,
|
||||
});
|
||||
return result.body;
|
||||
}
|
||||
/**
|
||||
* Post
|
||||
* Create a new contact.
|
||||
* @param requestBody CreateGroupContact
|
||||
* @returns ResponseGroupContact
|
||||
* @throws ApiError
|
||||
*/
|
||||
static async groupContactControllerPost(requestBody) {
|
||||
const result = await request_1.request({
|
||||
method: 'POST',
|
||||
path: `/api/contacts`,
|
||||
body: requestBody,
|
||||
});
|
||||
return result.body;
|
||||
}
|
||||
/**
|
||||
* Get one
|
||||
* Lists all information about the contact whose id got provided. <br> This includes the contact's associated groups.
|
||||
* @param id
|
||||
* @returns ResponseGroupContact
|
||||
* @throws ApiError
|
||||
*/
|
||||
static async groupContactControllerGetOne(id) {
|
||||
const result = await request_1.request({
|
||||
method: 'GET',
|
||||
path: `/api/contacts/${id}`,
|
||||
});
|
||||
return result.body;
|
||||
}
|
||||
/**
|
||||
* Put
|
||||
* Update the contact whose id you provided. <br> Please remember that ids can't be changed.
|
||||
* @param id
|
||||
* @param requestBody UpdateGroupContact
|
||||
* @returns ResponseGroupContact
|
||||
* @throws ApiError
|
||||
*/
|
||||
static async groupContactControllerPut(id, requestBody) {
|
||||
const result = await request_1.request({
|
||||
method: 'PUT',
|
||||
path: `/api/contacts/${id}`,
|
||||
body: requestBody,
|
||||
});
|
||||
return result.body;
|
||||
}
|
||||
/**
|
||||
* Remove
|
||||
* 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
|
||||
* @returns ResponseGroupContact
|
||||
* @returns ResponseEmpty
|
||||
* @throws ApiError
|
||||
*/
|
||||
static async groupContactControllerRemove(id, force) {
|
||||
const result = await request_1.request({
|
||||
method: 'DELETE',
|
||||
path: `/api/contacts/${id}`,
|
||||
query: {
|
||||
'force': force,
|
||||
},
|
||||
});
|
||||
return result.body;
|
||||
}
|
||||
}
|
||||
exports.GroupContactService = GroupContactService;
|
||||
Reference in New Issue
Block a user