UNPKG

tuix-jira-service-client

Version:
25 lines 771 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.SyncService = void 0; const OpenAPI_1 = require("../core/OpenAPI"); const request_1 = require("../core/request"); class SyncService { /** * @param requestBody * @returns SyncDataResponseDto The jira data has been successfully synched. * @throws ApiError */ static syncControllerSyncData(requestBody) { return (0, request_1.request)(OpenAPI_1.OpenAPI, { method: 'POST', url: '/sync', body: requestBody, mediaType: 'application/json', errors: { 401: `Unauthorized.`, }, }); } } exports.SyncService = SyncService; //# sourceMappingURL=SyncService.js.map