n8n-nodes-pdf4me 1.3.7 → 1.3.9
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/nodes/Pdf4me/Descriptions.js +314 -306
- package/dist/nodes/Pdf4me/Descriptions.js.map +1 -1
- package/dist/nodes/Pdf4me/GenericFunctions.js +23 -6
- package/dist/nodes/Pdf4me/GenericFunctions.js.map +1 -1
- package/dist/nodes/Pdf4me/actions/addBarcodeToPdf.d.ts +0 -7
- package/dist/nodes/Pdf4me/actions/addBarcodeToPdf.js +393 -173
- package/dist/nodes/Pdf4me/actions/addBarcodeToPdf.js.map +1 -1
- package/dist/nodes/Pdf4me/actions/aiProcessContract.d.ts +1 -33
- package/dist/nodes/Pdf4me/actions/aiProcessContract.js +22 -239
- package/dist/nodes/Pdf4me/actions/aiProcessContract.js.map +1 -1
- package/dist/nodes/Pdf4me/actions/convertHtmlToPdf.d.ts +1 -5
- package/dist/nodes/Pdf4me/actions/convertHtmlToPdf.js +174 -448
- package/dist/nodes/Pdf4me/actions/convertHtmlToPdf.js.map +1 -1
- package/dist/nodes/Pdf4me/actions/convertToPdf.js +3 -0
- package/dist/nodes/Pdf4me/actions/convertToPdf.js.map +1 -1
- package/dist/package.json +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -100,6 +100,7 @@ const convertMarkdownToPdf = __importStar(require("./actions/convertMarkdownToPd
|
|
|
100
100
|
const convertPdfToPowerpoint = __importStar(require("./actions/convertPdfToPowerpoint"));
|
|
101
101
|
const convertPdfToExcel = __importStar(require("./actions/convertPdfToExcel"));
|
|
102
102
|
const convertVisio = __importStar(require("./actions/convertVisio"));
|
|
103
|
+
const convertWordToPdfForm = __importStar(require("./actions/convertWordToPdfForm"));
|
|
103
104
|
const uploadFile = __importStar(require("./actions/uploadFile"));
|
|
104
105
|
const parseDocument = __importStar(require("./actions/parseDocument"));
|
|
105
106
|
const linearizePdf = __importStar(require("./actions/linearizePdf"));
|
|
@@ -129,12 +130,6 @@ exports.descriptions = {
|
|
|
129
130
|
type: 'options',
|
|
130
131
|
noDataExpression: true,
|
|
131
132
|
options: [
|
|
132
|
-
{
|
|
133
|
-
name: 'Add Attachment To PDF',
|
|
134
|
-
description: 'Add file attachments to PDF documents',
|
|
135
|
-
value: GenericFunctions_1.ActionConstants.AddAttachmentToPdf,
|
|
136
|
-
action: GenericFunctions_1.ActionConstants.AddAttachmentToPdf,
|
|
137
|
-
},
|
|
138
133
|
{
|
|
139
134
|
name: 'Add Barcode To PDF',
|
|
140
135
|
description: 'Add barcodes to existing PDF documents with positioning and styling options',
|
|
@@ -142,88 +137,58 @@ exports.descriptions = {
|
|
|
142
137
|
action: GenericFunctions_1.ActionConstants.AddBarcodeToPdf,
|
|
143
138
|
},
|
|
144
139
|
{
|
|
145
|
-
name: '
|
|
146
|
-
description: '
|
|
147
|
-
value: GenericFunctions_1.ActionConstants.
|
|
148
|
-
action: GenericFunctions_1.ActionConstants.
|
|
149
|
-
},
|
|
150
|
-
{
|
|
151
|
-
name: 'Fill PDF Form',
|
|
152
|
-
description: 'Fill PDF forms with data or generate multiple documents from templates',
|
|
153
|
-
value: GenericFunctions_1.ActionConstants.FillPdfForm,
|
|
154
|
-
action: GenericFunctions_1.ActionConstants.FillPdfForm,
|
|
155
|
-
},
|
|
156
|
-
{
|
|
157
|
-
name: 'Add HTML Header Footer',
|
|
158
|
-
description: 'Add HTML-based headers and footers to PDF documents',
|
|
159
|
-
value: GenericFunctions_1.ActionConstants.AddHtmlHeaderFooter,
|
|
160
|
-
action: GenericFunctions_1.ActionConstants.AddHtmlHeaderFooter,
|
|
161
|
-
},
|
|
162
|
-
{
|
|
163
|
-
name: 'Add Image Stamp To PDF',
|
|
164
|
-
description: 'Add image stamps or watermarks to PDF documents',
|
|
165
|
-
value: GenericFunctions_1.ActionConstants.AddImageStampToPdf,
|
|
166
|
-
action: GenericFunctions_1.ActionConstants.AddImageStampToPdf,
|
|
167
|
-
},
|
|
168
|
-
{
|
|
169
|
-
name: 'Add Margin To PDF',
|
|
170
|
-
description: 'Add margins to PDF documents',
|
|
171
|
-
value: GenericFunctions_1.ActionConstants.AddMarginToPdf,
|
|
172
|
-
action: GenericFunctions_1.ActionConstants.AddMarginToPdf,
|
|
173
|
-
},
|
|
174
|
-
{
|
|
175
|
-
name: 'Add Page Number To PDF',
|
|
176
|
-
description: 'Add page numbers to PDF documents',
|
|
177
|
-
value: GenericFunctions_1.ActionConstants.AddPageNumberToPdf,
|
|
178
|
-
action: GenericFunctions_1.ActionConstants.AddPageNumberToPdf,
|
|
140
|
+
name: 'Generate Barcode',
|
|
141
|
+
description: 'Generate various types of barcodes including QR codes, Code 128, Code 39, and more',
|
|
142
|
+
value: GenericFunctions_1.ActionConstants.BarcodeGenerator,
|
|
143
|
+
action: GenericFunctions_1.ActionConstants.BarcodeGenerator,
|
|
179
144
|
},
|
|
180
145
|
{
|
|
181
|
-
name: '
|
|
182
|
-
description: '
|
|
183
|
-
value: GenericFunctions_1.ActionConstants.
|
|
184
|
-
action: GenericFunctions_1.ActionConstants.
|
|
146
|
+
name: 'Read SwissQR Code',
|
|
147
|
+
description: 'Read Swiss QR code data from PDF documents',
|
|
148
|
+
value: GenericFunctions_1.ActionConstants.ReadSwissQrCode,
|
|
149
|
+
action: GenericFunctions_1.ActionConstants.ReadSwissQrCode,
|
|
185
150
|
},
|
|
186
151
|
{
|
|
187
|
-
name: '
|
|
188
|
-
description: '
|
|
189
|
-
value: GenericFunctions_1.ActionConstants.
|
|
190
|
-
action: GenericFunctions_1.ActionConstants.
|
|
152
|
+
name: 'Read Barcode From PDF',
|
|
153
|
+
description: 'Read single or multiple Barcodes or QR Codes from your PDF file',
|
|
154
|
+
value: GenericFunctions_1.ActionConstants.ReadBarcodeFromPdf,
|
|
155
|
+
action: GenericFunctions_1.ActionConstants.ReadBarcodeFromPdf,
|
|
191
156
|
},
|
|
192
157
|
{
|
|
193
|
-
name: '
|
|
194
|
-
description: '
|
|
195
|
-
value: GenericFunctions_1.ActionConstants.
|
|
196
|
-
action: GenericFunctions_1.ActionConstants.
|
|
158
|
+
name: 'Read Barcode From Image',
|
|
159
|
+
description: 'Read barcodes from images using OCR',
|
|
160
|
+
value: GenericFunctions_1.ActionConstants.ReadBarcodeFromImage,
|
|
161
|
+
action: GenericFunctions_1.ActionConstants.ReadBarcodeFromImage,
|
|
197
162
|
},
|
|
198
163
|
{
|
|
199
|
-
name: '
|
|
200
|
-
description: '
|
|
201
|
-
value: GenericFunctions_1.ActionConstants.
|
|
202
|
-
action: GenericFunctions_1.ActionConstants.
|
|
164
|
+
name: 'Convert JSON To Excel',
|
|
165
|
+
description: 'Convert JSON data to Excel format',
|
|
166
|
+
value: GenericFunctions_1.ActionConstants.JsonToExcel,
|
|
167
|
+
action: GenericFunctions_1.ActionConstants.JsonToExcel,
|
|
203
168
|
},
|
|
204
169
|
{
|
|
205
|
-
name: '
|
|
206
|
-
description: '
|
|
207
|
-
value: GenericFunctions_1.ActionConstants.
|
|
208
|
-
action: GenericFunctions_1.ActionConstants.
|
|
170
|
+
name: 'Convert To PDF',
|
|
171
|
+
description: 'Convert various document formats to PDF',
|
|
172
|
+
value: GenericFunctions_1.ActionConstants.ConvertToPdf,
|
|
173
|
+
action: GenericFunctions_1.ActionConstants.ConvertToPdf,
|
|
209
174
|
},
|
|
210
175
|
{
|
|
211
|
-
name: '
|
|
212
|
-
description: '
|
|
213
|
-
value: GenericFunctions_1.ActionConstants.
|
|
214
|
-
action: GenericFunctions_1.ActionConstants.
|
|
176
|
+
name: 'Convert VISIO',
|
|
177
|
+
description: 'Convert VISIO files (.vsdx, .vsd) to PDF format with advanced conversion options',
|
|
178
|
+
value: GenericFunctions_1.ActionConstants.ConvertVisio,
|
|
179
|
+
action: GenericFunctions_1.ActionConstants.ConvertVisio,
|
|
215
180
|
},
|
|
216
181
|
{
|
|
217
|
-
name: '
|
|
218
|
-
description: '
|
|
219
|
-
value: GenericFunctions_1.ActionConstants.
|
|
220
|
-
action: GenericFunctions_1.ActionConstants.
|
|
182
|
+
name: 'Convert Word to PDF Form',
|
|
183
|
+
description: 'Convert Word documents to PDF forms',
|
|
184
|
+
value: GenericFunctions_1.ActionConstants.ConvertWordToPdfForm,
|
|
185
|
+
action: GenericFunctions_1.ActionConstants.ConvertWordToPdfForm,
|
|
221
186
|
},
|
|
222
187
|
{
|
|
223
|
-
name: '
|
|
224
|
-
description: '
|
|
225
|
-
value: GenericFunctions_1.ActionConstants.
|
|
226
|
-
action: GenericFunctions_1.ActionConstants.
|
|
188
|
+
name: 'Create PDF/A',
|
|
189
|
+
description: 'Convert PDF to PDF/A for long-term archiving and compliance',
|
|
190
|
+
value: GenericFunctions_1.ActionConstants.CreatePdfA,
|
|
191
|
+
action: GenericFunctions_1.ActionConstants.CreatePdfA,
|
|
227
192
|
},
|
|
228
193
|
{
|
|
229
194
|
name: 'Flatten PDF',
|
|
@@ -232,22 +197,22 @@ exports.descriptions = {
|
|
|
232
197
|
action: GenericFunctions_1.ActionConstants.FlattenPdf,
|
|
233
198
|
},
|
|
234
199
|
{
|
|
235
|
-
name: 'Convert
|
|
236
|
-
description: 'Convert
|
|
237
|
-
value: GenericFunctions_1.ActionConstants.
|
|
238
|
-
action: GenericFunctions_1.ActionConstants.
|
|
200
|
+
name: 'Convert HTML To PDF',
|
|
201
|
+
description: 'Convert HTML files to PDF documents',
|
|
202
|
+
value: GenericFunctions_1.ActionConstants.ConvertHtmlToPdf,
|
|
203
|
+
action: GenericFunctions_1.ActionConstants.ConvertHtmlToPdf,
|
|
239
204
|
},
|
|
240
205
|
{
|
|
241
|
-
name: '
|
|
242
|
-
description: '
|
|
243
|
-
value: GenericFunctions_1.ActionConstants.
|
|
244
|
-
action: GenericFunctions_1.ActionConstants.
|
|
206
|
+
name: 'Linearize PDF',
|
|
207
|
+
description: 'Optimize PDFs for web viewing with faster loading and progressive display',
|
|
208
|
+
value: GenericFunctions_1.ActionConstants.LinearizePdf,
|
|
209
|
+
action: GenericFunctions_1.ActionConstants.LinearizePdf,
|
|
245
210
|
},
|
|
246
211
|
{
|
|
247
|
-
name: '
|
|
248
|
-
description: 'Convert
|
|
249
|
-
value: GenericFunctions_1.ActionConstants.
|
|
250
|
-
action: GenericFunctions_1.ActionConstants.
|
|
212
|
+
name: 'Convert Markdown To PDF',
|
|
213
|
+
description: 'Convert Markdown files to PDF documents',
|
|
214
|
+
value: GenericFunctions_1.ActionConstants.ConvertMarkdownToPdf,
|
|
215
|
+
action: GenericFunctions_1.ActionConstants.ConvertMarkdownToPdf,
|
|
251
216
|
},
|
|
252
217
|
{
|
|
253
218
|
name: 'Convert PDF To Excel',
|
|
@@ -255,12 +220,6 @@ exports.descriptions = {
|
|
|
255
220
|
value: GenericFunctions_1.ActionConstants.ConvertPdfToExcel,
|
|
256
221
|
action: GenericFunctions_1.ActionConstants.ConvertPdfToExcel,
|
|
257
222
|
},
|
|
258
|
-
{
|
|
259
|
-
name: 'Convert PDF To Word',
|
|
260
|
-
description: 'Convert PDF documents to Word format with OCR support',
|
|
261
|
-
value: GenericFunctions_1.ActionConstants.ConvertPdfToWord,
|
|
262
|
-
action: GenericFunctions_1.ActionConstants.ConvertPdfToWord,
|
|
263
|
-
},
|
|
264
223
|
{
|
|
265
224
|
name: 'Convert PDF To PowerPoint',
|
|
266
225
|
description: 'Convert PDF documents to PowerPoint format with OCR support',
|
|
@@ -268,64 +227,16 @@ exports.descriptions = {
|
|
|
268
227
|
action: GenericFunctions_1.ActionConstants.ConvertPdfToPowerpoint,
|
|
269
228
|
},
|
|
270
229
|
{
|
|
271
|
-
name: 'Convert
|
|
272
|
-
description: 'Convert
|
|
273
|
-
value: GenericFunctions_1.ActionConstants.
|
|
274
|
-
action: GenericFunctions_1.ActionConstants.
|
|
275
|
-
},
|
|
276
|
-
{
|
|
277
|
-
name: 'Crop Image',
|
|
278
|
-
description: 'Crop images with border or rectangle cropping options',
|
|
279
|
-
value: GenericFunctions_1.ActionConstants.CropImage,
|
|
280
|
-
action: GenericFunctions_1.ActionConstants.CropImage,
|
|
281
|
-
},
|
|
282
|
-
{
|
|
283
|
-
name: 'Delete Blank Pages From PDF',
|
|
284
|
-
description: 'Remove blank pages from PDF documents based on specified criteria',
|
|
285
|
-
value: GenericFunctions_1.ActionConstants.DeleteBlankPagesFromPdf,
|
|
286
|
-
action: GenericFunctions_1.ActionConstants.DeleteBlankPagesFromPdf,
|
|
287
|
-
},
|
|
288
|
-
{
|
|
289
|
-
name: 'Delete Unwanted Pages From PDF',
|
|
290
|
-
description: 'Remove specific pages from PDF documents by page numbers',
|
|
291
|
-
value: GenericFunctions_1.ActionConstants.DeleteUnwantedPagesFromPdf,
|
|
292
|
-
action: GenericFunctions_1.ActionConstants.DeleteUnwantedPagesFromPdf,
|
|
293
|
-
},
|
|
294
|
-
{
|
|
295
|
-
name: 'Extract Pages',
|
|
296
|
-
description: 'Extract specific pages from PDF documents to create shorter versions or digital booklets',
|
|
297
|
-
value: GenericFunctions_1.ActionConstants.ExtractPages,
|
|
298
|
-
action: GenericFunctions_1.ActionConstants.ExtractPages,
|
|
299
|
-
},
|
|
300
|
-
{
|
|
301
|
-
name: 'Merge Multiple PDFs',
|
|
302
|
-
description: 'Combine multiple PDF files into a single PDF document',
|
|
303
|
-
value: GenericFunctions_1.ActionConstants.MergeMultiplePDFs,
|
|
304
|
-
action: GenericFunctions_1.ActionConstants.MergeMultiplePDFs,
|
|
305
|
-
},
|
|
306
|
-
{
|
|
307
|
-
name: 'Overlay PDFs',
|
|
308
|
-
description: 'Merge two PDF files one over another as overlay',
|
|
309
|
-
value: GenericFunctions_1.ActionConstants.OverlayPDFs,
|
|
310
|
-
action: GenericFunctions_1.ActionConstants.OverlayPDFs,
|
|
311
|
-
},
|
|
312
|
-
{
|
|
313
|
-
name: 'Rotate Document',
|
|
314
|
-
description: 'Rotate entire PDF documents by 90, 180, or 270 degrees',
|
|
315
|
-
value: GenericFunctions_1.ActionConstants.RotateDocument,
|
|
316
|
-
action: GenericFunctions_1.ActionConstants.RotateDocument,
|
|
317
|
-
},
|
|
318
|
-
{
|
|
319
|
-
name: 'Rotate Page',
|
|
320
|
-
description: 'Rotate specific pages in PDF documents by 90, 180, or 270 degrees',
|
|
321
|
-
value: GenericFunctions_1.ActionConstants.RotatePage,
|
|
322
|
-
action: GenericFunctions_1.ActionConstants.RotatePage,
|
|
230
|
+
name: 'Convert PDF To Word',
|
|
231
|
+
description: 'Convert PDF documents to Word format with OCR support',
|
|
232
|
+
value: GenericFunctions_1.ActionConstants.ConvertPdfToWord,
|
|
233
|
+
action: GenericFunctions_1.ActionConstants.ConvertPdfToWord,
|
|
323
234
|
},
|
|
324
235
|
{
|
|
325
|
-
name: '
|
|
326
|
-
description: '
|
|
327
|
-
value: GenericFunctions_1.ActionConstants.
|
|
328
|
-
action: GenericFunctions_1.ActionConstants.
|
|
236
|
+
name: 'Convert From PDF',
|
|
237
|
+
description: 'Convert PDF documents to Word, Excel, or other formats with OCR support',
|
|
238
|
+
value: GenericFunctions_1.ActionConstants.ConvertFromPDF,
|
|
239
|
+
action: GenericFunctions_1.ActionConstants.ConvertFromPDF,
|
|
329
240
|
},
|
|
330
241
|
{
|
|
331
242
|
name: 'URL to PDF',
|
|
@@ -334,136 +245,124 @@ exports.descriptions = {
|
|
|
334
245
|
action: GenericFunctions_1.ActionConstants.UrlToPdf,
|
|
335
246
|
},
|
|
336
247
|
{
|
|
337
|
-
name: 'Add
|
|
338
|
-
description: 'Add
|
|
339
|
-
value: GenericFunctions_1.ActionConstants.
|
|
340
|
-
action: GenericFunctions_1.ActionConstants.
|
|
341
|
-
},
|
|
342
|
-
{
|
|
343
|
-
name: 'Add Text Watermark To Image',
|
|
344
|
-
description: 'Add text watermarks to images with positioning and styling options',
|
|
345
|
-
value: GenericFunctions_1.ActionConstants.AddTextWatermarkToImage,
|
|
346
|
-
action: GenericFunctions_1.ActionConstants.AddTextWatermarkToImage,
|
|
347
|
-
},
|
|
348
|
-
{
|
|
349
|
-
name: 'Compress Image',
|
|
350
|
-
description: 'Compress image documents',
|
|
351
|
-
value: GenericFunctions_1.ActionConstants.CompressImage,
|
|
352
|
-
action: GenericFunctions_1.ActionConstants.CompressImage,
|
|
248
|
+
name: 'Add Attachment To PDF',
|
|
249
|
+
description: 'Add file attachments to PDF documents',
|
|
250
|
+
value: GenericFunctions_1.ActionConstants.AddAttachmentToPdf,
|
|
251
|
+
action: GenericFunctions_1.ActionConstants.AddAttachmentToPdf,
|
|
353
252
|
},
|
|
354
253
|
{
|
|
355
|
-
name: '
|
|
356
|
-
description: '
|
|
357
|
-
value: GenericFunctions_1.ActionConstants.
|
|
358
|
-
action: GenericFunctions_1.ActionConstants.
|
|
254
|
+
name: 'Add HTML Header Footer',
|
|
255
|
+
description: 'Add HTML-based headers and footers to PDF documents',
|
|
256
|
+
value: GenericFunctions_1.ActionConstants.AddHtmlHeaderFooter,
|
|
257
|
+
action: GenericFunctions_1.ActionConstants.AddHtmlHeaderFooter,
|
|
359
258
|
},
|
|
360
259
|
{
|
|
361
|
-
name: '
|
|
362
|
-
description: '
|
|
363
|
-
value: GenericFunctions_1.ActionConstants.
|
|
364
|
-
action: GenericFunctions_1.ActionConstants.
|
|
260
|
+
name: 'Add Margin To PDF',
|
|
261
|
+
description: 'Add margins to PDF documents',
|
|
262
|
+
value: GenericFunctions_1.ActionConstants.AddMarginToPdf,
|
|
263
|
+
action: GenericFunctions_1.ActionConstants.AddMarginToPdf,
|
|
365
264
|
},
|
|
366
265
|
{
|
|
367
|
-
name: '
|
|
368
|
-
description: '
|
|
369
|
-
value: GenericFunctions_1.ActionConstants.
|
|
370
|
-
action: GenericFunctions_1.ActionConstants.
|
|
266
|
+
name: 'Add Page Number To PDF',
|
|
267
|
+
description: 'Add page numbers to PDF documents',
|
|
268
|
+
value: GenericFunctions_1.ActionConstants.AddPageNumberToPdf,
|
|
269
|
+
action: GenericFunctions_1.ActionConstants.AddPageNumberToPdf,
|
|
371
270
|
},
|
|
372
271
|
{
|
|
373
|
-
name: '
|
|
374
|
-
description: '
|
|
375
|
-
value: GenericFunctions_1.ActionConstants.
|
|
376
|
-
action: GenericFunctions_1.ActionConstants.
|
|
272
|
+
name: 'Add Image Stamp To PDF',
|
|
273
|
+
description: 'Add image stamps or watermarks to PDF documents',
|
|
274
|
+
value: GenericFunctions_1.ActionConstants.AddImageStampToPdf,
|
|
275
|
+
action: GenericFunctions_1.ActionConstants.AddImageStampToPdf,
|
|
377
276
|
},
|
|
378
277
|
{
|
|
379
|
-
name: '
|
|
380
|
-
description: '
|
|
381
|
-
value: GenericFunctions_1.ActionConstants.
|
|
382
|
-
action: GenericFunctions_1.ActionConstants.
|
|
278
|
+
name: 'Sign PDF',
|
|
279
|
+
description: 'Digitally sign PDF documents',
|
|
280
|
+
value: GenericFunctions_1.ActionConstants.SignPdf,
|
|
281
|
+
action: GenericFunctions_1.ActionConstants.SignPdf,
|
|
383
282
|
},
|
|
384
283
|
{
|
|
385
|
-
name: '
|
|
386
|
-
description: '
|
|
387
|
-
value: GenericFunctions_1.ActionConstants.
|
|
388
|
-
action: GenericFunctions_1.ActionConstants.
|
|
284
|
+
name: 'Add Text Stamp To PDF',
|
|
285
|
+
description: 'Add text stamps or watermarks to PDF documents',
|
|
286
|
+
value: GenericFunctions_1.ActionConstants.AddTextStampToPdf,
|
|
287
|
+
action: GenericFunctions_1.ActionConstants.AddTextStampToPdf,
|
|
389
288
|
},
|
|
390
289
|
{
|
|
391
|
-
name: '
|
|
392
|
-
description: '
|
|
393
|
-
value: GenericFunctions_1.ActionConstants.
|
|
394
|
-
action: GenericFunctions_1.ActionConstants.
|
|
290
|
+
name: 'Classify Document',
|
|
291
|
+
description: 'Classify documents using AI to determine document type and extract relevant information',
|
|
292
|
+
value: GenericFunctions_1.ActionConstants.ClassifyDocument,
|
|
293
|
+
action: GenericFunctions_1.ActionConstants.ClassifyDocument,
|
|
395
294
|
},
|
|
396
295
|
{
|
|
397
|
-
name: '
|
|
398
|
-
description: '
|
|
399
|
-
value: GenericFunctions_1.ActionConstants.
|
|
400
|
-
action: GenericFunctions_1.ActionConstants.
|
|
296
|
+
name: 'Extract Attachment From PDF',
|
|
297
|
+
description: 'Extract file attachments from PDF documents',
|
|
298
|
+
value: GenericFunctions_1.ActionConstants.ExtractAttachmentFromPdf,
|
|
299
|
+
action: GenericFunctions_1.ActionConstants.ExtractAttachmentFromPdf,
|
|
401
300
|
},
|
|
402
301
|
{
|
|
403
|
-
name: '
|
|
404
|
-
description: '
|
|
405
|
-
value: GenericFunctions_1.ActionConstants.
|
|
406
|
-
action: GenericFunctions_1.ActionConstants.
|
|
302
|
+
name: 'Extract Form Data From PDF',
|
|
303
|
+
description: 'Extract form field data from PDF documents',
|
|
304
|
+
value: GenericFunctions_1.ActionConstants.ExtractFormDataFromPdf,
|
|
305
|
+
action: GenericFunctions_1.ActionConstants.ExtractFormDataFromPdf,
|
|
407
306
|
},
|
|
408
307
|
{
|
|
409
|
-
name: '
|
|
410
|
-
description: '
|
|
411
|
-
value: GenericFunctions_1.ActionConstants.
|
|
412
|
-
action: GenericFunctions_1.ActionConstants.
|
|
308
|
+
name: 'Extract Resources',
|
|
309
|
+
description: 'Extract text and images from PDF documents',
|
|
310
|
+
value: GenericFunctions_1.ActionConstants.ExtractResources,
|
|
311
|
+
action: GenericFunctions_1.ActionConstants.ExtractResources,
|
|
413
312
|
},
|
|
414
313
|
{
|
|
415
|
-
name: '
|
|
416
|
-
description: '
|
|
417
|
-
value: GenericFunctions_1.ActionConstants.
|
|
418
|
-
action: GenericFunctions_1.ActionConstants.
|
|
314
|
+
name: 'Extract Table From PDF',
|
|
315
|
+
description: 'Extract tables from PDF documents',
|
|
316
|
+
value: GenericFunctions_1.ActionConstants.ExtractTableFromPdf,
|
|
317
|
+
action: GenericFunctions_1.ActionConstants.ExtractTableFromPdf,
|
|
419
318
|
},
|
|
420
319
|
{
|
|
421
|
-
name: '
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
action: GenericFunctions_1.ActionConstants.
|
|
320
|
+
name: 'Extract Text By Expression',
|
|
321
|
+
description: 'Extract text from PDF using regular expressions',
|
|
322
|
+
value: GenericFunctions_1.ActionConstants.ExtractTextByExpression,
|
|
323
|
+
action: GenericFunctions_1.ActionConstants.ExtractTextByExpression,
|
|
425
324
|
},
|
|
426
325
|
{
|
|
427
|
-
name: '
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
action: GenericFunctions_1.ActionConstants.
|
|
326
|
+
name: 'Extract Text From Word',
|
|
327
|
+
description: 'Extract text content from Word documents',
|
|
328
|
+
value: GenericFunctions_1.ActionConstants.ExtractTextFromWord,
|
|
329
|
+
action: GenericFunctions_1.ActionConstants.ExtractTextFromWord,
|
|
431
330
|
},
|
|
432
331
|
{
|
|
433
|
-
name: '
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
action: GenericFunctions_1.ActionConstants.
|
|
332
|
+
name: 'Parse Document',
|
|
333
|
+
description: 'Parse documents to extract structured data using template-based parsing',
|
|
334
|
+
value: GenericFunctions_1.ActionConstants.ParseDocument,
|
|
335
|
+
action: GenericFunctions_1.ActionConstants.ParseDocument,
|
|
437
336
|
},
|
|
438
337
|
{
|
|
439
|
-
name: '
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
action: GenericFunctions_1.ActionConstants.
|
|
338
|
+
name: 'Find And Replace Text',
|
|
339
|
+
description: 'Find and replace text in PDF documents',
|
|
340
|
+
value: GenericFunctions_1.ActionConstants.FindAndReplaceText,
|
|
341
|
+
action: GenericFunctions_1.ActionConstants.FindAndReplaceText,
|
|
443
342
|
},
|
|
444
343
|
{
|
|
445
|
-
name: '
|
|
446
|
-
description: '
|
|
447
|
-
value: GenericFunctions_1.ActionConstants.
|
|
448
|
-
action: GenericFunctions_1.ActionConstants.
|
|
344
|
+
name: 'Convert PDF To Editable PDF Using OCR',
|
|
345
|
+
description: 'Convert PDF to editable PDF using OCR for scanned documents',
|
|
346
|
+
value: GenericFunctions_1.ActionConstants.ConvertPdfToEditableOcr,
|
|
347
|
+
action: GenericFunctions_1.ActionConstants.ConvertPdfToEditableOcr,
|
|
449
348
|
},
|
|
450
349
|
{
|
|
451
|
-
name: '
|
|
452
|
-
description: '
|
|
453
|
-
value: GenericFunctions_1.ActionConstants.
|
|
454
|
-
action: GenericFunctions_1.ActionConstants.
|
|
350
|
+
name: 'Add Form Fields To PDF',
|
|
351
|
+
description: 'Add interactive form fields to PDF documents',
|
|
352
|
+
value: GenericFunctions_1.ActionConstants.AddFormFieldsToPdf,
|
|
353
|
+
action: GenericFunctions_1.ActionConstants.AddFormFieldsToPdf,
|
|
455
354
|
},
|
|
456
355
|
{
|
|
457
|
-
name: '
|
|
458
|
-
description: '
|
|
459
|
-
value: GenericFunctions_1.ActionConstants.
|
|
460
|
-
action: GenericFunctions_1.ActionConstants.
|
|
356
|
+
name: 'Fill PDF Form',
|
|
357
|
+
description: 'Fill PDF forms with data or generate multiple documents from templates',
|
|
358
|
+
value: GenericFunctions_1.ActionConstants.FillPdfForm,
|
|
359
|
+
action: GenericFunctions_1.ActionConstants.FillPdfForm,
|
|
461
360
|
},
|
|
462
361
|
{
|
|
463
|
-
name: '
|
|
464
|
-
description: '
|
|
465
|
-
value: GenericFunctions_1.ActionConstants.
|
|
466
|
-
action: GenericFunctions_1.ActionConstants.
|
|
362
|
+
name: 'Create Swiss QR Bill',
|
|
363
|
+
description: 'Create Swiss QR Bills using all compliance standards for digital payment transactions',
|
|
364
|
+
value: GenericFunctions_1.ActionConstants.CreateSwissQrBill,
|
|
365
|
+
action: GenericFunctions_1.ActionConstants.CreateSwissQrBill,
|
|
467
366
|
},
|
|
468
367
|
{
|
|
469
368
|
name: 'Enable Tracking Changes In Word',
|
|
@@ -490,82 +389,112 @@ exports.descriptions = {
|
|
|
490
389
|
action: GenericFunctions_1.ActionConstants.GetTrackingChangesInWord,
|
|
491
390
|
},
|
|
492
391
|
{
|
|
493
|
-
name: '
|
|
494
|
-
description: '
|
|
495
|
-
value: GenericFunctions_1.ActionConstants.
|
|
496
|
-
action: GenericFunctions_1.ActionConstants.
|
|
392
|
+
name: 'Replace Text With Image In Word',
|
|
393
|
+
description: 'Replace specific text in Word documents with images',
|
|
394
|
+
value: GenericFunctions_1.ActionConstants.ReplaceTextWithImageInWord,
|
|
395
|
+
action: GenericFunctions_1.ActionConstants.ReplaceTextWithImageInWord,
|
|
497
396
|
},
|
|
498
397
|
{
|
|
499
|
-
name: '
|
|
500
|
-
description: '
|
|
501
|
-
value: GenericFunctions_1.ActionConstants.
|
|
502
|
-
action: GenericFunctions_1.ActionConstants.
|
|
398
|
+
name: 'Add Image Watermark To Image',
|
|
399
|
+
description: 'Add image watermark to image documents',
|
|
400
|
+
value: GenericFunctions_1.ActionConstants.AddImageWatermarkToImage,
|
|
401
|
+
action: GenericFunctions_1.ActionConstants.AddImageWatermarkToImage,
|
|
503
402
|
},
|
|
504
403
|
{
|
|
505
|
-
name: '
|
|
506
|
-
description: '
|
|
507
|
-
value: GenericFunctions_1.ActionConstants.
|
|
508
|
-
action: GenericFunctions_1.ActionConstants.
|
|
404
|
+
name: 'Add Text Watermark To Image',
|
|
405
|
+
description: 'Add text watermarks to images with positioning and styling options',
|
|
406
|
+
value: GenericFunctions_1.ActionConstants.AddTextWatermarkToImage,
|
|
407
|
+
action: GenericFunctions_1.ActionConstants.AddTextWatermarkToImage,
|
|
509
408
|
},
|
|
510
409
|
{
|
|
511
|
-
name: '
|
|
512
|
-
description: '
|
|
513
|
-
value: GenericFunctions_1.ActionConstants.
|
|
514
|
-
action: GenericFunctions_1.ActionConstants.
|
|
410
|
+
name: 'Compress Image',
|
|
411
|
+
description: 'Compress image documents',
|
|
412
|
+
value: GenericFunctions_1.ActionConstants.CompressImage,
|
|
413
|
+
action: GenericFunctions_1.ActionConstants.CompressImage,
|
|
515
414
|
},
|
|
516
415
|
{
|
|
517
|
-
name: '
|
|
518
|
-
description: '
|
|
519
|
-
value: GenericFunctions_1.ActionConstants.
|
|
520
|
-
action: GenericFunctions_1.ActionConstants.
|
|
416
|
+
name: 'Convert Image Format',
|
|
417
|
+
description: 'Convert image format (BMP, GIF, JPG, PNG, TIFF)',
|
|
418
|
+
value: GenericFunctions_1.ActionConstants.ConvertImageFormat,
|
|
419
|
+
action: GenericFunctions_1.ActionConstants.ConvertImageFormat,
|
|
521
420
|
},
|
|
522
421
|
{
|
|
523
|
-
name: '
|
|
524
|
-
description: '
|
|
525
|
-
value: GenericFunctions_1.ActionConstants.
|
|
526
|
-
action: GenericFunctions_1.ActionConstants.
|
|
422
|
+
name: 'Create Images From PDF',
|
|
423
|
+
description: 'Create images from PDF pages',
|
|
424
|
+
value: GenericFunctions_1.ActionConstants.CreateImagesFromPdf,
|
|
425
|
+
action: GenericFunctions_1.ActionConstants.CreateImagesFromPdf,
|
|
527
426
|
},
|
|
528
427
|
{
|
|
529
|
-
name: '
|
|
530
|
-
description: '
|
|
531
|
-
value: GenericFunctions_1.ActionConstants.
|
|
532
|
-
action: GenericFunctions_1.ActionConstants.
|
|
428
|
+
name: 'Crop Image',
|
|
429
|
+
description: 'Crop images with border or rectangle cropping options',
|
|
430
|
+
value: GenericFunctions_1.ActionConstants.CropImage,
|
|
431
|
+
action: GenericFunctions_1.ActionConstants.CropImage,
|
|
533
432
|
},
|
|
534
433
|
{
|
|
535
|
-
name: '
|
|
536
|
-
description: '
|
|
537
|
-
value: GenericFunctions_1.ActionConstants.
|
|
538
|
-
action: GenericFunctions_1.ActionConstants.
|
|
434
|
+
name: 'Flip Image',
|
|
435
|
+
description: 'Flip image documents horizontally, vertically, or both',
|
|
436
|
+
value: GenericFunctions_1.ActionConstants.FlipImage,
|
|
437
|
+
action: GenericFunctions_1.ActionConstants.FlipImage,
|
|
539
438
|
},
|
|
540
439
|
{
|
|
541
|
-
name: '
|
|
542
|
-
description: 'Extract
|
|
543
|
-
value: GenericFunctions_1.ActionConstants.
|
|
544
|
-
action: GenericFunctions_1.ActionConstants.
|
|
440
|
+
name: 'Get Image Metadata',
|
|
441
|
+
description: 'Extract metadata information from images including EXIF data and properties',
|
|
442
|
+
value: GenericFunctions_1.ActionConstants.GetImageMetadata,
|
|
443
|
+
action: GenericFunctions_1.ActionConstants.GetImageMetadata,
|
|
545
444
|
},
|
|
546
445
|
{
|
|
547
|
-
name: 'Extract Text
|
|
548
|
-
description: 'Extract text content from
|
|
549
|
-
value: GenericFunctions_1.ActionConstants.
|
|
550
|
-
action: GenericFunctions_1.ActionConstants.
|
|
446
|
+
name: 'Image Extract Text',
|
|
447
|
+
description: 'Extract text content from images using OCR (Optical Character Recognition)',
|
|
448
|
+
value: GenericFunctions_1.ActionConstants.ImageExtractText,
|
|
449
|
+
action: GenericFunctions_1.ActionConstants.ImageExtractText,
|
|
551
450
|
},
|
|
552
451
|
{
|
|
553
|
-
name: '
|
|
554
|
-
description: '
|
|
555
|
-
value: GenericFunctions_1.ActionConstants.
|
|
556
|
-
action: GenericFunctions_1.ActionConstants.
|
|
452
|
+
name: 'Replace Text With Image',
|
|
453
|
+
description: 'Replace specific text in PDF documents with images',
|
|
454
|
+
value: GenericFunctions_1.ActionConstants.ReplaceTextWithImage,
|
|
455
|
+
action: GenericFunctions_1.ActionConstants.ReplaceTextWithImage,
|
|
557
456
|
},
|
|
558
457
|
{
|
|
559
|
-
name: '
|
|
560
|
-
description: '
|
|
561
|
-
value: GenericFunctions_1.ActionConstants.
|
|
562
|
-
action: GenericFunctions_1.ActionConstants.
|
|
458
|
+
name: 'Resize Image',
|
|
459
|
+
description: 'Resize images by percentage or specific dimensions with aspect ratio control',
|
|
460
|
+
value: GenericFunctions_1.ActionConstants.ResizeImage,
|
|
461
|
+
action: GenericFunctions_1.ActionConstants.ResizeImage,
|
|
563
462
|
},
|
|
564
463
|
{
|
|
565
|
-
name: '
|
|
566
|
-
description: '
|
|
567
|
-
value: GenericFunctions_1.ActionConstants.
|
|
568
|
-
action: GenericFunctions_1.ActionConstants.
|
|
464
|
+
name: 'Rotate Image By EXIF Data',
|
|
465
|
+
description: 'Rotate image automatically based on EXIF orientation metadata',
|
|
466
|
+
value: GenericFunctions_1.ActionConstants.RotateImageByExifData,
|
|
467
|
+
action: GenericFunctions_1.ActionConstants.RotateImageByExifData,
|
|
468
|
+
},
|
|
469
|
+
{
|
|
470
|
+
name: 'Rotate Image',
|
|
471
|
+
description: 'Rotate images with custom angle, background color, and proportionate resize options',
|
|
472
|
+
value: GenericFunctions_1.ActionConstants.RotateImage,
|
|
473
|
+
action: GenericFunctions_1.ActionConstants.RotateImage,
|
|
474
|
+
},
|
|
475
|
+
{
|
|
476
|
+
name: 'Remove EXIF Tags From Image',
|
|
477
|
+
description: 'Remove metadata/EXIF tags from images for privacy and file size reduction',
|
|
478
|
+
value: GenericFunctions_1.ActionConstants.RemoveExifTagsFromImage,
|
|
479
|
+
action: GenericFunctions_1.ActionConstants.RemoveExifTagsFromImage,
|
|
480
|
+
},
|
|
481
|
+
{
|
|
482
|
+
name: 'Merge Multiple PDFs',
|
|
483
|
+
description: 'Combine multiple PDF files into a single PDF document',
|
|
484
|
+
value: GenericFunctions_1.ActionConstants.MergeMultiplePDFs,
|
|
485
|
+
action: GenericFunctions_1.ActionConstants.MergeMultiplePDFs,
|
|
486
|
+
},
|
|
487
|
+
{
|
|
488
|
+
name: 'Overlay PDFs',
|
|
489
|
+
description: 'Merge two PDF files one over another as overlay',
|
|
490
|
+
value: GenericFunctions_1.ActionConstants.OverlayPDFs,
|
|
491
|
+
action: GenericFunctions_1.ActionConstants.OverlayPDFs,
|
|
492
|
+
},
|
|
493
|
+
{
|
|
494
|
+
name: 'Split PDF Regular',
|
|
495
|
+
description: 'Split PDF documents by regular expression and output as ZIP',
|
|
496
|
+
value: GenericFunctions_1.ActionConstants.SplitPdfRegular,
|
|
497
|
+
action: GenericFunctions_1.ActionConstants.SplitPdfRegular,
|
|
569
498
|
},
|
|
570
499
|
{
|
|
571
500
|
name: 'Split PDF By Barcode',
|
|
@@ -586,28 +515,88 @@ exports.descriptions = {
|
|
|
586
515
|
action: GenericFunctions_1.ActionConstants.SplitPdfByText,
|
|
587
516
|
},
|
|
588
517
|
{
|
|
589
|
-
name: '
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
action: GenericFunctions_1.ActionConstants.
|
|
518
|
+
name: 'Compress PDF',
|
|
519
|
+
value: GenericFunctions_1.ActionConstants.CompressPdf,
|
|
520
|
+
description: 'Compress and optimize PDF files',
|
|
521
|
+
action: GenericFunctions_1.ActionConstants.CompressPdf,
|
|
593
522
|
},
|
|
594
523
|
{
|
|
595
|
-
name: '
|
|
596
|
-
description: '
|
|
597
|
-
value: GenericFunctions_1.ActionConstants.
|
|
598
|
-
action: GenericFunctions_1.ActionConstants.
|
|
524
|
+
name: 'Delete Blank Pages From PDF',
|
|
525
|
+
description: 'Remove blank pages from PDF documents based on specified criteria',
|
|
526
|
+
value: GenericFunctions_1.ActionConstants.DeleteBlankPagesFromPdf,
|
|
527
|
+
action: GenericFunctions_1.ActionConstants.DeleteBlankPagesFromPdf,
|
|
599
528
|
},
|
|
600
529
|
{
|
|
601
|
-
name: '
|
|
602
|
-
description: '
|
|
603
|
-
value: GenericFunctions_1.ActionConstants.
|
|
604
|
-
action: GenericFunctions_1.ActionConstants.
|
|
530
|
+
name: 'Delete Unwanted Pages From PDF',
|
|
531
|
+
description: 'Remove specific pages from PDF documents by page numbers',
|
|
532
|
+
value: GenericFunctions_1.ActionConstants.DeleteUnwantedPagesFromPdf,
|
|
533
|
+
action: GenericFunctions_1.ActionConstants.DeleteUnwantedPagesFromPdf,
|
|
605
534
|
},
|
|
606
535
|
{
|
|
607
|
-
name: '
|
|
608
|
-
description: '
|
|
609
|
-
value: GenericFunctions_1.ActionConstants.
|
|
610
|
-
action: GenericFunctions_1.ActionConstants.
|
|
536
|
+
name: 'Extract Pages',
|
|
537
|
+
description: 'Extract specific pages from PDF documents to create shorter versions or digital booklets',
|
|
538
|
+
value: GenericFunctions_1.ActionConstants.ExtractPages,
|
|
539
|
+
action: GenericFunctions_1.ActionConstants.ExtractPages,
|
|
540
|
+
},
|
|
541
|
+
{
|
|
542
|
+
name: 'Extract Pages From PDF',
|
|
543
|
+
description: 'Extract specific pages from PDF documents',
|
|
544
|
+
value: GenericFunctions_1.ActionConstants.ExtractPagesFromPdf,
|
|
545
|
+
action: GenericFunctions_1.ActionConstants.ExtractPagesFromPdf,
|
|
546
|
+
},
|
|
547
|
+
{
|
|
548
|
+
name: 'Rotate Page',
|
|
549
|
+
description: 'Rotate specific pages in PDF documents by 90, 180, or 270 degrees',
|
|
550
|
+
value: GenericFunctions_1.ActionConstants.RotatePage,
|
|
551
|
+
action: GenericFunctions_1.ActionConstants.RotatePage,
|
|
552
|
+
},
|
|
553
|
+
{
|
|
554
|
+
name: 'Rotate Document',
|
|
555
|
+
description: 'Rotate entire PDF documents by 90, 180, or 270 degrees',
|
|
556
|
+
value: GenericFunctions_1.ActionConstants.RotateDocument,
|
|
557
|
+
action: GenericFunctions_1.ActionConstants.RotateDocument,
|
|
558
|
+
},
|
|
559
|
+
{
|
|
560
|
+
name: 'Get Document From Pdf4me',
|
|
561
|
+
value: GenericFunctions_1.ActionConstants.GetDocumentFromPdf4me,
|
|
562
|
+
description: 'Split PDF documents by barcode and output as ZIP',
|
|
563
|
+
action: GenericFunctions_1.ActionConstants.GetDocumentFromPdf4me,
|
|
564
|
+
},
|
|
565
|
+
{
|
|
566
|
+
name: 'Update Hyperlinks Annotation',
|
|
567
|
+
description: 'Update hyperlinks in PDF documents',
|
|
568
|
+
value: GenericFunctions_1.ActionConstants.UpdateHyperlinksAnnotation,
|
|
569
|
+
action: GenericFunctions_1.ActionConstants.UpdateHyperlinksAnnotation,
|
|
570
|
+
},
|
|
571
|
+
{
|
|
572
|
+
name: 'Get PDF Metadata',
|
|
573
|
+
value: GenericFunctions_1.ActionConstants.GetPdfMetadata,
|
|
574
|
+
description: 'Extract metadata from PDF files',
|
|
575
|
+
action: GenericFunctions_1.ActionConstants.GetPdfMetadata,
|
|
576
|
+
},
|
|
577
|
+
{
|
|
578
|
+
name: 'Repair PDF Document',
|
|
579
|
+
value: GenericFunctions_1.ActionConstants.RepairPdfDocument,
|
|
580
|
+
description: 'Repair corrupted or damaged PDF files',
|
|
581
|
+
action: GenericFunctions_1.ActionConstants.RepairPdfDocument,
|
|
582
|
+
},
|
|
583
|
+
{
|
|
584
|
+
name: 'Protect Document',
|
|
585
|
+
description: 'Protect PDF documents with encryption, passwords, and permissions',
|
|
586
|
+
value: GenericFunctions_1.ActionConstants.ProtectDocument,
|
|
587
|
+
action: GenericFunctions_1.ActionConstants.ProtectDocument,
|
|
588
|
+
},
|
|
589
|
+
{
|
|
590
|
+
name: 'Unlock PDF',
|
|
591
|
+
description: 'Unlock PDF documents by removing encryption',
|
|
592
|
+
value: GenericFunctions_1.ActionConstants.UnlockPdf,
|
|
593
|
+
action: GenericFunctions_1.ActionConstants.UnlockPdf,
|
|
594
|
+
},
|
|
595
|
+
{
|
|
596
|
+
name: 'Disable Tracking Changes In Word',
|
|
597
|
+
description: 'Disable tracking changes in Word documents',
|
|
598
|
+
value: GenericFunctions_1.ActionConstants.DisableTrackingChangesInWord,
|
|
599
|
+
action: GenericFunctions_1.ActionConstants.DisableTrackingChangesInWord,
|
|
611
600
|
},
|
|
612
601
|
{
|
|
613
602
|
name: 'Upload File To PDF4me',
|
|
@@ -615,6 +604,24 @@ exports.descriptions = {
|
|
|
615
604
|
value: GenericFunctions_1.ActionConstants.UploadFile,
|
|
616
605
|
action: GenericFunctions_1.ActionConstants.UploadFile,
|
|
617
606
|
},
|
|
607
|
+
{
|
|
608
|
+
name: 'AI-Invoice Parser',
|
|
609
|
+
description: 'Extract structured data from invoices using AI/ML technology for automated data entry',
|
|
610
|
+
value: GenericFunctions_1.ActionConstants.AiInvoiceParser,
|
|
611
|
+
action: GenericFunctions_1.ActionConstants.AiInvoiceParser,
|
|
612
|
+
},
|
|
613
|
+
{
|
|
614
|
+
name: 'AI-Process HealthCard',
|
|
615
|
+
description: 'Extract structured data from health cards using AI/ML technology for member management',
|
|
616
|
+
value: GenericFunctions_1.ActionConstants.AiProcessHealthCard,
|
|
617
|
+
action: GenericFunctions_1.ActionConstants.AiProcessHealthCard,
|
|
618
|
+
},
|
|
619
|
+
{
|
|
620
|
+
name: 'AI-Process Contract',
|
|
621
|
+
description: 'Extract structured data from contracts using AI/ML technology for legal document analysis',
|
|
622
|
+
value: GenericFunctions_1.ActionConstants.AiProcessContract,
|
|
623
|
+
action: GenericFunctions_1.ActionConstants.AiProcessContract,
|
|
624
|
+
},
|
|
618
625
|
],
|
|
619
626
|
default: GenericFunctions_1.ActionConstants.BarcodeGenerator,
|
|
620
627
|
},
|
|
@@ -697,6 +704,7 @@ exports.descriptions = {
|
|
|
697
704
|
...convertPdfToPowerpoint.description,
|
|
698
705
|
...convertPdfToExcel.description,
|
|
699
706
|
...convertVisio.description,
|
|
707
|
+
...convertWordToPdfForm.description,
|
|
700
708
|
...uploadFile.description,
|
|
701
709
|
],
|
|
702
710
|
subtitle: '={{$parameter["operation"]}}',
|