@kuflow/kuflow-rest
Version:
REST SDK for KuFlow.
418 lines (402 loc) • 14.1 kB
text/typescript
/**
* The MIT License
* Copyright © 2021-present KuFlow S.L.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
import * as coreClient from '@azure/core-client'
import type { KuFlowRestClientGenerated } from '../kuFlowRestClientGenerated'
import type {
JsonPatchOperation,
ProcessItemAppendProcessItemTaskLogOptionalParams,
ProcessItemAppendProcessItemTaskLogResponse,
ProcessItemAssignProcessItemTaskOptionalParams,
ProcessItemAssignProcessItemTaskResponse,
ProcessItemClaimProcessItemTaskOptionalParams,
ProcessItemClaimProcessItemTaskResponse,
ProcessItemCompleteProcessItemTaskOptionalParams,
ProcessItemCompleteProcessItemTaskResponse,
ProcessItemCreateParams,
ProcessItemCreateProcessItemOptionalParams,
ProcessItemCreateProcessItemResponse,
ProcessItemDownloadProcessItemTaskDataWebformsAsDocumentOptionalParams,
ProcessItemDownloadProcessItemTaskDataWebformsAsDocumentResponse,
ProcessItemFindProcessItemsOptionalParams,
ProcessItemFindProcessItemsResponse,
ProcessItemPatchProcessItemTaskDataOptionalParams,
ProcessItemPatchProcessItemTaskDataResponse,
ProcessItemRetrieveProcessItemOptionalParams,
ProcessItemRetrieveProcessItemResponse,
ProcessItemTaskAppendLogParams,
ProcessItemTaskAssignParams,
ProcessItemTaskDataUpdateParams,
ProcessItemUpdateProcessItemTaskDataOptionalParams,
ProcessItemUpdateProcessItemTaskDataResponse,
} from '../models'
import * as Mappers from '../models/mappers'
import * as Parameters from '../models/parameters'
import type { ProcessItemOperations } from '../operationsInterfaces'
/** Class containing ProcessItemOperations operations. */
export class ProcessItemOperationsImpl implements ProcessItemOperations {
private readonly client: KuFlowRestClientGenerated
/**
* Initialize a new instance of the class ProcessItemOperations class.
* @param client Reference to the service client
*/
constructor(client: KuFlowRestClientGenerated) {
this.client = client
}
/**
* List all Process Items that have been created and the credentials has access.
*
* Available sort query values: id, createdAt, lastModifiedAt, claimedAt, completedAt, cancelledAt
*
* @param options The options parameters.
*/
async findProcessItems(
options?: ProcessItemFindProcessItemsOptionalParams,
): Promise<ProcessItemFindProcessItemsResponse> {
return await this.client.sendOperationRequest({ options }, findProcessItemsOperationSpec)
}
/**
* Create a Process Item and optionally fill its value.
*
* If you want to add document type elements, you can pass a reference to an existing document type
* element
* indicating its 'uri'. This will copy that document into the element. In case you want to add a new
* document,
* please use the corresponding API method.
*
* If you want the method to be idempotent, please specify the `id` field in the request body.
*
* @param processItemCreateParams Process Item to be created
* @param options The options parameters.
*/
async createProcessItem(
processItemCreateParams: ProcessItemCreateParams,
options?: ProcessItemCreateProcessItemOptionalParams,
): Promise<ProcessItemCreateProcessItemResponse> {
return await this.client.sendOperationRequest({ processItemCreateParams, options }, createProcessItemOperationSpec)
}
/**
* Allow to get a process item by ID.
* @param id The resource ID.
* @param options The options parameters.
*/
async retrieveProcessItem(
id: string,
options?: ProcessItemRetrieveProcessItemOptionalParams,
): Promise<ProcessItemRetrieveProcessItemResponse> {
return await this.client.sendOperationRequest({ id, options }, retrieveProcessItemOperationSpec)
}
/**
* Allow to claim a task.
* @param id The resource ID.
* @param options The options parameters.
*/
async claimProcessItemTask(
id: string,
options?: ProcessItemClaimProcessItemTaskOptionalParams,
): Promise<ProcessItemClaimProcessItemTaskResponse> {
return await this.client.sendOperationRequest({ id, options }, claimProcessItemTaskOperationSpec)
}
/**
* Allow to assign a process item task to a user or application. Only one option will be necessary.
* @param id The resource ID.
* @param processItemTaskAssignParams Params to change the process item task owner.
* @param options The options parameters.
*/
async assignProcessItemTask(
id: string,
processItemTaskAssignParams: ProcessItemTaskAssignParams,
options?: ProcessItemAssignProcessItemTaskOptionalParams,
): Promise<ProcessItemAssignProcessItemTaskResponse> {
return await this.client.sendOperationRequest(
{ id, processItemTaskAssignParams, options },
assignProcessItemTaskOperationSpec,
)
}
/**
* Allow to complete a claimed task by the principal.
* @param id The resource ID.
* @param options The options parameters.
*/
async completeProcessItemTask(
id: string,
options?: ProcessItemCompleteProcessItemTaskOptionalParams,
): Promise<ProcessItemCompleteProcessItemTaskResponse> {
return await this.client.sendOperationRequest({ id, options }, completeProcessItemTaskOperationSpec)
}
/**
* A log entry is added to the task. If the number of log entries is reached, the oldest log entry is
* removed.
*
* @param id The resource ID.
* @param processItemTaskAppendLogParams Log to be created.
* @param options The options parameters.
*/
async appendProcessItemTaskLog(
id: string,
processItemTaskAppendLogParams: ProcessItemTaskAppendLogParams,
options?: ProcessItemAppendProcessItemTaskLogOptionalParams,
): Promise<ProcessItemAppendProcessItemTaskLogResponse> {
return await this.client.sendOperationRequest(
{ id, processItemTaskAppendLogParams, options },
appendProcessItemTaskLogOperationSpec,
)
}
/**
* Allow to save a JSON data validating that the data follow the related schema. If the data is
* invalid, then
* the json form is marked as invalid.
*
* @param id The resource ID.
* @param processItemTaskDataUpdateParams Params used to update the JSON value.
* @param options The options parameters.
*/
async updateProcessItemTaskData(
id: string,
processItemTaskDataUpdateParams: ProcessItemTaskDataUpdateParams,
options?: ProcessItemUpdateProcessItemTaskDataOptionalParams,
): Promise<ProcessItemUpdateProcessItemTaskDataResponse> {
return await this.client.sendOperationRequest(
{ id, processItemTaskDataUpdateParams, options },
updateProcessItemTaskDataOperationSpec,
)
}
/**
* Allow to patch a JSON data validating that the data follow the related schema. If the data is
* invalid, then
* the json is marked as invalid.
*
* @param id The resource ID.
* @param jsonPatch Params to save the JSON value.
* @param options The options parameters.
*/
async patchProcessItemTaskData(
id: string,
jsonPatch: JsonPatchOperation[],
options?: ProcessItemPatchProcessItemTaskDataOptionalParams,
): Promise<ProcessItemPatchProcessItemTaskDataResponse> {
return await this.client.sendOperationRequest({ id, jsonPatch, options }, patchProcessItemTaskDataOperationSpec)
}
/**
* Given a task, generate a PDF from a Form type element with the data filled in, if any. If there are
* multiple form values, they are packed into a ZIP.
*
* Important!: To use this feature, please contact to kuflow@kuflow.com
*
* @param id The resource ID.
* @param propertyPath JSON pointer to the property with the error. See:
* https://datatracker.ietf.org/doc/html/rfc6901
*
* ie: /user/name or /users/1/name
*
* @param options The options parameters.
*/
async downloadProcessItemTaskDataWebformsAsDocument(
id: string,
propertyPath: string,
options?: ProcessItemDownloadProcessItemTaskDataWebformsAsDocumentOptionalParams,
): Promise<ProcessItemDownloadProcessItemTaskDataWebformsAsDocumentResponse> {
return await this.client.sendOperationRequest(
{ id, propertyPath, options },
downloadProcessItemTaskDataWebformsAsDocumentOperationSpec,
)
}
}
// Operation Specifications
const serializer = coreClient.createSerializer(Mappers, /* isXml */ false)
const findProcessItemsOperationSpec: coreClient.OperationSpec = {
path: '/process-items',
httpMethod: 'GET',
responses: {
200: {
bodyMapper: Mappers.ProcessItemPage,
},
default: {
bodyMapper: Mappers.DefaultError,
},
},
queryParameters: [
Parameters.size,
Parameters.page,
Parameters.sort,
Parameters.tenantId,
Parameters.processId,
Parameters.typeParam1,
Parameters.taskState,
Parameters.processItemDefinitionCode,
],
urlParameters: [Parameters.$host],
headerParameters: [Parameters.accept],
serializer,
}
const createProcessItemOperationSpec: coreClient.OperationSpec = {
path: '/process-items',
httpMethod: 'POST',
responses: {
200: {
bodyMapper: Mappers.ProcessItem,
},
201: {
bodyMapper: Mappers.ProcessItem,
},
default: {
bodyMapper: Mappers.DefaultError,
},
},
requestBody: Parameters.processItemCreateParams,
urlParameters: [Parameters.$host],
headerParameters: [Parameters.contentType, Parameters.accept],
mediaType: 'json',
serializer,
}
const retrieveProcessItemOperationSpec: coreClient.OperationSpec = {
path: '/process-items/{id}',
httpMethod: 'GET',
responses: {
200: {
bodyMapper: Mappers.ProcessItem,
},
default: {
bodyMapper: Mappers.DefaultError,
},
},
urlParameters: [Parameters.$host, Parameters.id],
headerParameters: [Parameters.accept],
serializer,
}
const claimProcessItemTaskOperationSpec: coreClient.OperationSpec = {
path: '/process-items/{id}/task/~actions/claim',
httpMethod: 'POST',
responses: {
200: {
bodyMapper: Mappers.ProcessItem,
},
default: {
bodyMapper: Mappers.DefaultError,
},
},
urlParameters: [Parameters.$host, Parameters.id],
headerParameters: [Parameters.accept],
serializer,
}
const assignProcessItemTaskOperationSpec: coreClient.OperationSpec = {
path: '/process-items/{id}/task/~actions/assign',
httpMethod: 'POST',
responses: {
200: {
bodyMapper: Mappers.ProcessItem,
},
default: {
bodyMapper: Mappers.DefaultError,
},
},
requestBody: Parameters.processItemTaskAssignParams,
urlParameters: [Parameters.$host, Parameters.id],
headerParameters: [Parameters.contentType, Parameters.accept],
mediaType: 'json',
serializer,
}
const completeProcessItemTaskOperationSpec: coreClient.OperationSpec = {
path: '/process-items/{id}/task/~actions/complete',
httpMethod: 'POST',
responses: {
200: {
bodyMapper: Mappers.ProcessItem,
},
default: {
bodyMapper: Mappers.DefaultError,
},
},
urlParameters: [Parameters.$host, Parameters.id],
headerParameters: [Parameters.accept],
serializer,
}
const appendProcessItemTaskLogOperationSpec: coreClient.OperationSpec = {
path: '/process-items/{id}/task/~actions/append-log',
httpMethod: 'POST',
responses: {
200: {
bodyMapper: Mappers.ProcessItem,
},
default: {
bodyMapper: Mappers.DefaultError,
},
},
requestBody: Parameters.processItemTaskAppendLogParams,
urlParameters: [Parameters.$host, Parameters.id],
headerParameters: [Parameters.contentType, Parameters.accept],
mediaType: 'json',
serializer,
}
const updateProcessItemTaskDataOperationSpec: coreClient.OperationSpec = {
path: '/process-items/{id}/task/data',
httpMethod: 'PUT',
responses: {
200: {
bodyMapper: Mappers.ProcessItem,
},
default: {
bodyMapper: Mappers.DefaultError,
},
},
requestBody: Parameters.processItemTaskDataUpdateParams,
urlParameters: [Parameters.$host, Parameters.id],
headerParameters: [Parameters.contentType, Parameters.accept],
mediaType: 'json',
serializer,
}
const patchProcessItemTaskDataOperationSpec: coreClient.OperationSpec = {
path: '/process-items/{id}/task/data',
httpMethod: 'PATCH',
responses: {
200: {
bodyMapper: Mappers.ProcessItem,
},
default: {
bodyMapper: Mappers.DefaultError,
},
},
requestBody: Parameters.jsonPatch,
urlParameters: [Parameters.$host, Parameters.id],
headerParameters: [Parameters.accept, Parameters.contentType2],
mediaType: 'json',
serializer,
}
const downloadProcessItemTaskDataWebformsAsDocumentOperationSpec: coreClient.OperationSpec = {
path: '/process-items/{id}/task/data/~actions/download-webforms-as-document',
httpMethod: 'GET',
responses: {
200: {
bodyMapper: {
type: { name: 'Stream' },
serializedName: 'parsedResponse',
},
},
default: {
bodyMapper: Mappers.DefaultError,
},
},
queryParameters: [Parameters.propertyPath],
urlParameters: [Parameters.$host, Parameters.id],
headerParameters: [Parameters.accept3],
serializer,
}