@uipath/uipath-typescript 1.3.3 → 1.3.5
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/assets/index.cjs +8 -1
- package/dist/assets/index.mjs +8 -1
- package/dist/attachments/index.cjs +8 -1
- package/dist/attachments/index.mjs +8 -1
- package/dist/buckets/index.cjs +8 -1
- package/dist/buckets/index.mjs +8 -1
- package/dist/cases/index.cjs +8 -1
- package/dist/cases/index.mjs +8 -1
- package/dist/conversational-agent/index.cjs +8 -1
- package/dist/conversational-agent/index.d.ts +29 -2
- package/dist/conversational-agent/index.mjs +8 -1
- package/dist/core/index.cjs +1 -1
- package/dist/core/index.d.ts +1 -1
- package/dist/core/index.mjs +1 -1
- package/dist/document-understanding/index.cjs +257 -0
- package/dist/document-understanding/index.d.ts +1185 -0
- package/dist/document-understanding/index.mjs +255 -0
- package/dist/entities/index.cjs +277 -15
- package/dist/entities/index.d.ts +135 -0
- package/dist/entities/index.mjs +277 -15
- package/dist/feedback/index.cjs +8 -1
- package/dist/feedback/index.mjs +8 -1
- package/dist/index.cjs +578 -15
- package/dist/index.d.ts +1384 -9
- package/dist/index.mjs +580 -18
- package/dist/index.umd.js +578 -15
- package/dist/jobs/index.cjs +54 -1
- package/dist/jobs/index.d.ts +52 -0
- package/dist/jobs/index.mjs +54 -1
- package/dist/maestro-processes/index.cjs +8 -1
- package/dist/maestro-processes/index.mjs +8 -1
- package/dist/processes/index.cjs +8 -1
- package/dist/processes/index.mjs +8 -1
- package/dist/queues/index.cjs +8 -1
- package/dist/queues/index.mjs +8 -1
- package/dist/tasks/index.cjs +8 -1
- package/dist/tasks/index.mjs +8 -1
- package/package.json +12 -2
|
@@ -0,0 +1,257 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
// Auto-generated from the OpenAPI spec — do not edit manually.
|
|
4
|
+
var DocumentActionPriority;
|
|
5
|
+
(function (DocumentActionPriority) {
|
|
6
|
+
DocumentActionPriority["Low"] = "Low";
|
|
7
|
+
DocumentActionPriority["Medium"] = "Medium";
|
|
8
|
+
DocumentActionPriority["High"] = "High";
|
|
9
|
+
DocumentActionPriority["Critical"] = "Critical";
|
|
10
|
+
})(DocumentActionPriority || (DocumentActionPriority = {}));
|
|
11
|
+
var DocumentActionStatus;
|
|
12
|
+
(function (DocumentActionStatus) {
|
|
13
|
+
DocumentActionStatus["Unassigned"] = "Unassigned";
|
|
14
|
+
DocumentActionStatus["Pending"] = "Pending";
|
|
15
|
+
DocumentActionStatus["Completed"] = "Completed";
|
|
16
|
+
})(DocumentActionStatus || (DocumentActionStatus = {}));
|
|
17
|
+
var DocumentActionType;
|
|
18
|
+
(function (DocumentActionType) {
|
|
19
|
+
DocumentActionType["Validation"] = "Validation";
|
|
20
|
+
DocumentActionType["Classification"] = "Classification";
|
|
21
|
+
})(DocumentActionType || (DocumentActionType = {}));
|
|
22
|
+
|
|
23
|
+
// Auto-generated from the OpenAPI spec — do not edit manually.
|
|
24
|
+
var ProjectProperties;
|
|
25
|
+
(function (ProjectProperties) {
|
|
26
|
+
ProjectProperties["IsPredefined"] = "IsPredefined";
|
|
27
|
+
ProjectProperties["SupportsTags"] = "SupportsTags";
|
|
28
|
+
ProjectProperties["SupportsVersions"] = "SupportsVersions";
|
|
29
|
+
ProjectProperties["IsSplittingEnabled"] = "IsSplittingEnabled";
|
|
30
|
+
})(ProjectProperties || (ProjectProperties = {}));
|
|
31
|
+
var ProjectType;
|
|
32
|
+
(function (ProjectType) {
|
|
33
|
+
ProjectType["Classic"] = "Classic";
|
|
34
|
+
ProjectType["Modern"] = "Modern";
|
|
35
|
+
ProjectType["IXP"] = "IXP";
|
|
36
|
+
ProjectType["Unknown"] = "Unknown";
|
|
37
|
+
})(ProjectType || (ProjectType = {}));
|
|
38
|
+
var ResourceStatus;
|
|
39
|
+
(function (ResourceStatus) {
|
|
40
|
+
ResourceStatus["Unknown"] = "Unknown";
|
|
41
|
+
ResourceStatus["NotStarted"] = "NotStarted";
|
|
42
|
+
ResourceStatus["ExportInProgress"] = "ExportInProgress";
|
|
43
|
+
ResourceStatus["ExportCompleted"] = "ExportCompleted";
|
|
44
|
+
ResourceStatus["InProgress"] = "InProgress";
|
|
45
|
+
ResourceStatus["Suspended"] = "Suspended";
|
|
46
|
+
ResourceStatus["Resuming"] = "Resuming";
|
|
47
|
+
ResourceStatus["Available"] = "Available";
|
|
48
|
+
ResourceStatus["Error"] = "Error";
|
|
49
|
+
ResourceStatus["Deleting"] = "Deleting";
|
|
50
|
+
})(ResourceStatus || (ResourceStatus = {}));
|
|
51
|
+
var ResourceType;
|
|
52
|
+
(function (ResourceType) {
|
|
53
|
+
ResourceType["Specialized"] = "Specialized";
|
|
54
|
+
ResourceType["Generative"] = "Generative";
|
|
55
|
+
ResourceType["Custom"] = "Custom";
|
|
56
|
+
ResourceType["Unknown"] = "Unknown";
|
|
57
|
+
})(ResourceType || (ResourceType = {}));
|
|
58
|
+
|
|
59
|
+
// Auto-generated from the OpenAPI spec — do not edit manually.
|
|
60
|
+
var MarkupType;
|
|
61
|
+
(function (MarkupType) {
|
|
62
|
+
MarkupType["Unknown"] = "Unknown";
|
|
63
|
+
MarkupType["Circled"] = "Circled";
|
|
64
|
+
MarkupType["Underlined"] = "Underlined";
|
|
65
|
+
MarkupType["Strikethrough"] = "Strikethrough";
|
|
66
|
+
})(MarkupType || (MarkupType = {}));
|
|
67
|
+
var ProcessingSource;
|
|
68
|
+
(function (ProcessingSource) {
|
|
69
|
+
ProcessingSource["Unknown"] = "Unknown";
|
|
70
|
+
ProcessingSource["Ocr"] = "Ocr";
|
|
71
|
+
ProcessingSource["Pdf"] = "Pdf";
|
|
72
|
+
ProcessingSource["PlainText"] = "PlainText";
|
|
73
|
+
ProcessingSource["PdfAndOcr"] = "PdfAndOcr";
|
|
74
|
+
})(ProcessingSource || (ProcessingSource = {}));
|
|
75
|
+
var Rotation;
|
|
76
|
+
(function (Rotation) {
|
|
77
|
+
Rotation["None"] = "None";
|
|
78
|
+
Rotation["Rotated90"] = "Rotated90";
|
|
79
|
+
Rotation["Rotated180"] = "Rotated180";
|
|
80
|
+
Rotation["Rotated270"] = "Rotated270";
|
|
81
|
+
Rotation["Other"] = "Other";
|
|
82
|
+
})(Rotation || (Rotation = {}));
|
|
83
|
+
var SectionType;
|
|
84
|
+
(function (SectionType) {
|
|
85
|
+
SectionType["Vertical"] = "Vertical";
|
|
86
|
+
SectionType["Paragraph"] = "Paragraph";
|
|
87
|
+
SectionType["Header"] = "Header";
|
|
88
|
+
SectionType["Footer"] = "Footer";
|
|
89
|
+
SectionType["Table"] = "Table";
|
|
90
|
+
})(SectionType || (SectionType = {}));
|
|
91
|
+
var TextType;
|
|
92
|
+
(function (TextType) {
|
|
93
|
+
TextType["Unknown"] = "Unknown";
|
|
94
|
+
TextType["Text"] = "Text";
|
|
95
|
+
TextType["Checkbox"] = "Checkbox";
|
|
96
|
+
TextType["Handwriting"] = "Handwriting";
|
|
97
|
+
TextType["Barcode"] = "Barcode";
|
|
98
|
+
TextType["QRcode"] = "QRcode";
|
|
99
|
+
TextType["Stamp"] = "Stamp";
|
|
100
|
+
TextType["Logo"] = "Logo";
|
|
101
|
+
TextType["Circle"] = "Circle";
|
|
102
|
+
TextType["Underline"] = "Underline";
|
|
103
|
+
TextType["Cut"] = "Cut";
|
|
104
|
+
})(TextType || (TextType = {}));
|
|
105
|
+
var WordGroupType;
|
|
106
|
+
(function (WordGroupType) {
|
|
107
|
+
WordGroupType["Sentence"] = "Sentence";
|
|
108
|
+
WordGroupType["TableCell"] = "TableCell";
|
|
109
|
+
WordGroupType["TableRowEnd"] = "TableRowEnd";
|
|
110
|
+
WordGroupType["Heading"] = "Heading";
|
|
111
|
+
WordGroupType["Other"] = "Other";
|
|
112
|
+
})(WordGroupType || (WordGroupType = {}));
|
|
113
|
+
|
|
114
|
+
// Auto-generated from the OpenAPI spec — do not edit manually.
|
|
115
|
+
var ModelKind;
|
|
116
|
+
(function (ModelKind) {
|
|
117
|
+
ModelKind["Classifier"] = "Classifier";
|
|
118
|
+
ModelKind["Extractor"] = "Extractor";
|
|
119
|
+
})(ModelKind || (ModelKind = {}));
|
|
120
|
+
var ModelType;
|
|
121
|
+
(function (ModelType) {
|
|
122
|
+
ModelType["IXP"] = "IXP";
|
|
123
|
+
ModelType["Modern"] = "Modern";
|
|
124
|
+
ModelType["Predefined"] = "Predefined";
|
|
125
|
+
})(ModelType || (ModelType = {}));
|
|
126
|
+
|
|
127
|
+
// Auto-generated from the OpenAPI spec — do not edit manually.
|
|
128
|
+
var ClassifierDocumentTypeType;
|
|
129
|
+
(function (ClassifierDocumentTypeType) {
|
|
130
|
+
ClassifierDocumentTypeType["FormsAi"] = "FormsAi";
|
|
131
|
+
ClassifierDocumentTypeType["SemiStructuredAi"] = "SemiStructuredAi";
|
|
132
|
+
ClassifierDocumentTypeType["Helix"] = "Helix";
|
|
133
|
+
ClassifierDocumentTypeType["Unknown"] = "Unknown";
|
|
134
|
+
})(ClassifierDocumentTypeType || (ClassifierDocumentTypeType = {}));
|
|
135
|
+
var CreateTaskPriority;
|
|
136
|
+
(function (CreateTaskPriority) {
|
|
137
|
+
CreateTaskPriority["Low"] = "Low";
|
|
138
|
+
CreateTaskPriority["Medium"] = "Medium";
|
|
139
|
+
CreateTaskPriority["High"] = "High";
|
|
140
|
+
CreateTaskPriority["Critical"] = "Critical";
|
|
141
|
+
})(CreateTaskPriority || (CreateTaskPriority = {}));
|
|
142
|
+
var GptFieldType;
|
|
143
|
+
(function (GptFieldType) {
|
|
144
|
+
GptFieldType["Address"] = "Address";
|
|
145
|
+
GptFieldType["Boolean"] = "Boolean";
|
|
146
|
+
GptFieldType["Date"] = "Date";
|
|
147
|
+
GptFieldType["Name"] = "Name";
|
|
148
|
+
GptFieldType["Number"] = "Number";
|
|
149
|
+
GptFieldType["Text"] = "Text";
|
|
150
|
+
})(GptFieldType || (GptFieldType = {}));
|
|
151
|
+
var ValidationDisplayMode;
|
|
152
|
+
(function (ValidationDisplayMode) {
|
|
153
|
+
ValidationDisplayMode["Classic"] = "Classic";
|
|
154
|
+
ValidationDisplayMode["Compact"] = "Compact";
|
|
155
|
+
})(ValidationDisplayMode || (ValidationDisplayMode = {}));
|
|
156
|
+
|
|
157
|
+
// Auto-generated from the OpenAPI spec — do not edit manually.
|
|
158
|
+
var ResultsDataSource;
|
|
159
|
+
(function (ResultsDataSource) {
|
|
160
|
+
ResultsDataSource["Automatic"] = "Automatic";
|
|
161
|
+
ResultsDataSource["Manual"] = "Manual";
|
|
162
|
+
ResultsDataSource["ManuallyChanged"] = "ManuallyChanged";
|
|
163
|
+
ResultsDataSource["Defaulted"] = "Defaulted";
|
|
164
|
+
ResultsDataSource["External"] = "External";
|
|
165
|
+
})(ResultsDataSource || (ResultsDataSource = {}));
|
|
166
|
+
|
|
167
|
+
// Auto-generated from the OpenAPI spec — do not edit manually.
|
|
168
|
+
var ComparisonOperator;
|
|
169
|
+
(function (ComparisonOperator) {
|
|
170
|
+
ComparisonOperator["Equals"] = "Equals";
|
|
171
|
+
ComparisonOperator["NotEquals"] = "NotEquals";
|
|
172
|
+
ComparisonOperator["Greater"] = "Greater";
|
|
173
|
+
ComparisonOperator["Less"] = "Less";
|
|
174
|
+
ComparisonOperator["GreaterOrEqual"] = "GreaterOrEqual";
|
|
175
|
+
ComparisonOperator["LessOrEqual"] = "LessOrEqual";
|
|
176
|
+
})(ComparisonOperator || (ComparisonOperator = {}));
|
|
177
|
+
var Criticality;
|
|
178
|
+
(function (Criticality) {
|
|
179
|
+
Criticality["Must"] = "Must";
|
|
180
|
+
Criticality["Should"] = "Should";
|
|
181
|
+
})(Criticality || (Criticality = {}));
|
|
182
|
+
var FieldType;
|
|
183
|
+
(function (FieldType) {
|
|
184
|
+
FieldType["Text"] = "Text";
|
|
185
|
+
FieldType["Number"] = "Number";
|
|
186
|
+
FieldType["Date"] = "Date";
|
|
187
|
+
FieldType["Name"] = "Name";
|
|
188
|
+
FieldType["Address"] = "Address";
|
|
189
|
+
FieldType["Keyword"] = "Keyword";
|
|
190
|
+
FieldType["Set"] = "Set";
|
|
191
|
+
FieldType["Boolean"] = "Boolean";
|
|
192
|
+
FieldType["Table"] = "Table";
|
|
193
|
+
FieldType["Internal"] = "Internal";
|
|
194
|
+
FieldType["FieldGroup"] = "FieldGroup";
|
|
195
|
+
FieldType["MonetaryQuantity"] = "MonetaryQuantity";
|
|
196
|
+
})(FieldType || (FieldType = {}));
|
|
197
|
+
var LogicalOperator;
|
|
198
|
+
(function (LogicalOperator) {
|
|
199
|
+
LogicalOperator["AND"] = "AND";
|
|
200
|
+
LogicalOperator["OR"] = "OR";
|
|
201
|
+
})(LogicalOperator || (LogicalOperator = {}));
|
|
202
|
+
var RuleType;
|
|
203
|
+
(function (RuleType) {
|
|
204
|
+
RuleType["Mandatory"] = "Mandatory";
|
|
205
|
+
RuleType["PossibleValues"] = "PossibleValues";
|
|
206
|
+
RuleType["Regex"] = "Regex";
|
|
207
|
+
RuleType["StartsWith"] = "StartsWith";
|
|
208
|
+
RuleType["EndsWith"] = "EndsWith";
|
|
209
|
+
RuleType["FixedLength"] = "FixedLength";
|
|
210
|
+
RuleType["IsNumeric"] = "IsNumeric";
|
|
211
|
+
RuleType["IsDate"] = "IsDate";
|
|
212
|
+
RuleType["IsEmail"] = "IsEmail";
|
|
213
|
+
RuleType["Contains"] = "Contains";
|
|
214
|
+
RuleType["Expression"] = "Expression";
|
|
215
|
+
RuleType["TableExpression"] = "TableExpression";
|
|
216
|
+
RuleType["IsEmpty"] = "IsEmpty";
|
|
217
|
+
})(RuleType || (RuleType = {}));
|
|
218
|
+
|
|
219
|
+
// Auto-generated from the OpenAPI spec — do not edit manually.
|
|
220
|
+
var ActionStatus;
|
|
221
|
+
(function (ActionStatus) {
|
|
222
|
+
ActionStatus["Unassigned"] = "Unassigned";
|
|
223
|
+
ActionStatus["Pending"] = "Pending";
|
|
224
|
+
ActionStatus["Completed"] = "Completed";
|
|
225
|
+
})(ActionStatus || (ActionStatus = {}));
|
|
226
|
+
|
|
227
|
+
var index = /*#__PURE__*/Object.freeze({
|
|
228
|
+
__proto__: null,
|
|
229
|
+
get ActionStatus () { return ActionStatus; },
|
|
230
|
+
get ClassifierDocumentTypeType () { return ClassifierDocumentTypeType; },
|
|
231
|
+
get ComparisonOperator () { return ComparisonOperator; },
|
|
232
|
+
get CreateTaskPriority () { return CreateTaskPriority; },
|
|
233
|
+
get Criticality () { return Criticality; },
|
|
234
|
+
get DocumentActionPriority () { return DocumentActionPriority; },
|
|
235
|
+
get DocumentActionStatus () { return DocumentActionStatus; },
|
|
236
|
+
get DocumentActionType () { return DocumentActionType; },
|
|
237
|
+
get FieldType () { return FieldType; },
|
|
238
|
+
get GptFieldType () { return GptFieldType; },
|
|
239
|
+
get LogicalOperator () { return LogicalOperator; },
|
|
240
|
+
get MarkupType () { return MarkupType; },
|
|
241
|
+
get ModelKind () { return ModelKind; },
|
|
242
|
+
get ModelType () { return ModelType; },
|
|
243
|
+
get ProcessingSource () { return ProcessingSource; },
|
|
244
|
+
get ProjectProperties () { return ProjectProperties; },
|
|
245
|
+
get ProjectType () { return ProjectType; },
|
|
246
|
+
get ResourceStatus () { return ResourceStatus; },
|
|
247
|
+
get ResourceType () { return ResourceType; },
|
|
248
|
+
get ResultsDataSource () { return ResultsDataSource; },
|
|
249
|
+
get Rotation () { return Rotation; },
|
|
250
|
+
get RuleType () { return RuleType; },
|
|
251
|
+
get SectionType () { return SectionType; },
|
|
252
|
+
get TextType () { return TextType; },
|
|
253
|
+
get ValidationDisplayMode () { return ValidationDisplayMode; },
|
|
254
|
+
get WordGroupType () { return WordGroupType; }
|
|
255
|
+
});
|
|
256
|
+
|
|
257
|
+
exports.DuFramework = index;
|