@semantha/product-sdk 10.4.0 → 10.5.0
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/requirements/api/index.d.mts +71 -38
- package/dist/requirements/api/index.d.ts +71 -38
- package/dist/requirements/api/index.js +1 -1
- package/dist/requirements/api/index.js.map +1 -1
- package/dist/requirements/api/index.mjs +1 -1
- package/dist/requirements/api/index.mjs.map +1 -1
- package/dist/requirements/model/index.d.mts +80 -66
- package/dist/requirements/model/index.d.ts +80 -66
- package/dist/requirements/model/index.js +1 -1
- package/dist/requirements/model/index.mjs +1 -1
- package/dist/structure-navigator/index.js +1 -1
- package/dist/structure-navigator/index.mjs +1 -1
- package/package.json +1 -1
|
@@ -1,68 +1,3 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @author semantha
|
|
3
|
-
*
|
|
4
|
-
* This is a generated file do not change manually!
|
|
5
|
-
*/
|
|
6
|
-
interface AnalysisStats {
|
|
7
|
-
countIdenticalMatches?: number;
|
|
8
|
-
countTotalResults?: number;
|
|
9
|
-
countGoodMatches?: number;
|
|
10
|
-
countSimilarMatches?: number;
|
|
11
|
-
countNoMatches?: number;
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
/**
|
|
15
|
-
* @author semantha
|
|
16
|
-
*
|
|
17
|
-
* This is a generated file do not change manually!
|
|
18
|
-
*/
|
|
19
|
-
interface AnalysisReport {
|
|
20
|
-
id?: string;
|
|
21
|
-
name?: string;
|
|
22
|
-
created?: number;
|
|
23
|
-
type?: AnalysisReportTypeEnum;
|
|
24
|
-
stats?: AnalysisStats;
|
|
25
|
-
tags?: string;
|
|
26
|
-
documentClassIds?: string[];
|
|
27
|
-
projectId?: string;
|
|
28
|
-
space?: string;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
/**
|
|
32
|
-
* @author semantha
|
|
33
|
-
*
|
|
34
|
-
* This is a generated file do not change manually!
|
|
35
|
-
*/
|
|
36
|
-
interface AnalysesReport {
|
|
37
|
-
analysisReports?: AnalysisReport[];
|
|
38
|
-
statsSummary?: AnalysisStats;
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
/**
|
|
42
|
-
* @author semantha
|
|
43
|
-
*
|
|
44
|
-
* This is a generated file do not change manually!
|
|
45
|
-
*/
|
|
46
|
-
interface Analysis {
|
|
47
|
-
id?: string;
|
|
48
|
-
name?: string;
|
|
49
|
-
strategy?: string;
|
|
50
|
-
maxReferences?: number;
|
|
51
|
-
similarityThreshold?: number;
|
|
52
|
-
created?: number;
|
|
53
|
-
tags?: string;
|
|
54
|
-
documentClassIds?: string[];
|
|
55
|
-
status?: AnalysisStatusEnum;
|
|
56
|
-
progressState?: number;
|
|
57
|
-
goodMatchesThreshold?: number;
|
|
58
|
-
matchAllReferences?: boolean;
|
|
59
|
-
showDocumentScore?: boolean;
|
|
60
|
-
minDocumentScore?: number;
|
|
61
|
-
source?: AnalysisSourceEnum;
|
|
62
|
-
type?: AnalysisTypeEnum;
|
|
63
|
-
stats?: AnalysisStats;
|
|
64
|
-
}
|
|
65
|
-
|
|
66
1
|
/**
|
|
67
2
|
* @author semantha
|
|
68
3
|
*
|
|
@@ -345,6 +280,85 @@ interface AnalysisInput {
|
|
|
345
280
|
documentClassId?: string;
|
|
346
281
|
}
|
|
347
282
|
|
|
283
|
+
/**
|
|
284
|
+
* @author semantha
|
|
285
|
+
*
|
|
286
|
+
* This is a generated file do not change manually!
|
|
287
|
+
*/
|
|
288
|
+
interface AiTaskInput {
|
|
289
|
+
content: AnalysisInput[];
|
|
290
|
+
promptId: string;
|
|
291
|
+
name: string;
|
|
292
|
+
args?: {
|
|
293
|
+
[key: string]: string;
|
|
294
|
+
};
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
/**
|
|
298
|
+
* @author semantha
|
|
299
|
+
*
|
|
300
|
+
* This is a generated file do not change manually!
|
|
301
|
+
*/
|
|
302
|
+
interface AnalysisStats {
|
|
303
|
+
countIdenticalMatches?: number;
|
|
304
|
+
countTotalResults?: number;
|
|
305
|
+
countGoodMatches?: number;
|
|
306
|
+
countSimilarMatches?: number;
|
|
307
|
+
countNoMatches?: number;
|
|
308
|
+
}
|
|
309
|
+
|
|
310
|
+
/**
|
|
311
|
+
* @author semantha
|
|
312
|
+
*
|
|
313
|
+
* This is a generated file do not change manually!
|
|
314
|
+
*/
|
|
315
|
+
interface AnalysisReport {
|
|
316
|
+
id?: string;
|
|
317
|
+
name?: string;
|
|
318
|
+
created?: number;
|
|
319
|
+
type?: AnalysisReportTypeEnum;
|
|
320
|
+
stats?: AnalysisStats;
|
|
321
|
+
tags?: string;
|
|
322
|
+
documentClassIds?: string[];
|
|
323
|
+
projectId?: string;
|
|
324
|
+
space?: string;
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
/**
|
|
328
|
+
* @author semantha
|
|
329
|
+
*
|
|
330
|
+
* This is a generated file do not change manually!
|
|
331
|
+
*/
|
|
332
|
+
interface AnalysesReport {
|
|
333
|
+
analysisReports?: AnalysisReport[];
|
|
334
|
+
statsSummary?: AnalysisStats;
|
|
335
|
+
}
|
|
336
|
+
|
|
337
|
+
/**
|
|
338
|
+
* @author semantha
|
|
339
|
+
*
|
|
340
|
+
* This is a generated file do not change manually!
|
|
341
|
+
*/
|
|
342
|
+
interface Analysis {
|
|
343
|
+
id?: string;
|
|
344
|
+
name?: string;
|
|
345
|
+
strategy?: string;
|
|
346
|
+
maxReferences?: number;
|
|
347
|
+
similarityThreshold?: number;
|
|
348
|
+
created?: number;
|
|
349
|
+
tags?: string;
|
|
350
|
+
documentClassIds?: string[];
|
|
351
|
+
status?: AnalysisStatusEnum;
|
|
352
|
+
progressState?: number;
|
|
353
|
+
goodMatchesThreshold?: number;
|
|
354
|
+
matchAllReferences?: boolean;
|
|
355
|
+
showDocumentScore?: boolean;
|
|
356
|
+
minDocumentScore?: number;
|
|
357
|
+
source?: AnalysisSourceEnum;
|
|
358
|
+
type?: AnalysisTypeEnum;
|
|
359
|
+
stats?: AnalysisStats;
|
|
360
|
+
}
|
|
361
|
+
|
|
348
362
|
/**
|
|
349
363
|
* @author semantha
|
|
350
364
|
*
|
|
@@ -733,4 +747,4 @@ interface PromptResult {
|
|
|
733
747
|
customAttributes?: Attribute[];
|
|
734
748
|
}
|
|
735
749
|
|
|
736
|
-
export { type AnalysesReport, type Analysis, type AnalysisCreation, type AnalysisInput, type AnalysisReport, type AnalysisReportTypeEnum, AnalysisReportTypeEnumValues, type AnalysisResult, type AnalysisResultComment, type AnalysisResultOverview, type AnalysisResultsResponseContainer, type AnalysisResultsStats, type AnalysisResultsStatsResponseContainer, type AnalysisSourceEnum, AnalysisSourceEnumValues, type AnalysisStats, type AnalysisStatusEnum, AnalysisStatusEnumValues, type AnalysisTypeEnum, AnalysisTypeEnumValues, type AnnotationCell, type AnnotationPage, type Attachment, type Attribute, type Char, type Classification, type ClassificationStats, type CurrentUser, type Distance, type Document, type DocumentNamedEntity, type DocumentTable, type Entity, type Evaluation, type EvaluationOverview, type ExcelTemplateColumnConfig, type ExcelTemplateColumnConfigHeaderTypeEnum, ExcelTemplateColumnConfigHeaderTypeEnumValues, type ExcelTemplateDetails, type ExtendedReference, type Features, type FormDataContentDisposition, type FormatInformation, type Link, type MetaInfoPage, type ModeEnum, ModeEnumValues, type Page, type PageContent, type Paragraph, type PromptResult, type Rect, type Reference, type ResponseMetaInfo, type Row, type Sentence, type StatusStats, type TableCell, isAnalysisReportTypeEnumValue, isAnalysisSourceEnumValue, isAnalysisStatusEnumValue, isAnalysisTypeEnumValue, isExcelTemplateColumnConfigHeaderTypeEnumValue, isModeEnumValue };
|
|
750
|
+
export { type AiTaskInput, type AnalysesReport, type Analysis, type AnalysisCreation, type AnalysisInput, type AnalysisReport, type AnalysisReportTypeEnum, AnalysisReportTypeEnumValues, type AnalysisResult, type AnalysisResultComment, type AnalysisResultOverview, type AnalysisResultsResponseContainer, type AnalysisResultsStats, type AnalysisResultsStatsResponseContainer, type AnalysisSourceEnum, AnalysisSourceEnumValues, type AnalysisStats, type AnalysisStatusEnum, AnalysisStatusEnumValues, type AnalysisTypeEnum, AnalysisTypeEnumValues, type AnnotationCell, type AnnotationPage, type Attachment, type Attribute, type Char, type Classification, type ClassificationStats, type CurrentUser, type Distance, type Document, type DocumentNamedEntity, type DocumentTable, type Entity, type Evaluation, type EvaluationOverview, type ExcelTemplateColumnConfig, type ExcelTemplateColumnConfigHeaderTypeEnum, ExcelTemplateColumnConfigHeaderTypeEnumValues, type ExcelTemplateDetails, type ExtendedReference, type Features, type FormDataContentDisposition, type FormatInformation, type Link, type MetaInfoPage, type ModeEnum, ModeEnumValues, type Page, type PageContent, type Paragraph, type PromptResult, type Rect, type Reference, type ResponseMetaInfo, type Row, type Sentence, type StatusStats, type TableCell, isAnalysisReportTypeEnumValue, isAnalysisSourceEnumValue, isAnalysisStatusEnumValue, isAnalysisTypeEnumValue, isExcelTemplateColumnConfigHeaderTypeEnumValue, isModeEnumValue };
|
|
@@ -1,68 +1,3 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @author semantha
|
|
3
|
-
*
|
|
4
|
-
* This is a generated file do not change manually!
|
|
5
|
-
*/
|
|
6
|
-
interface AnalysisStats {
|
|
7
|
-
countIdenticalMatches?: number;
|
|
8
|
-
countTotalResults?: number;
|
|
9
|
-
countGoodMatches?: number;
|
|
10
|
-
countSimilarMatches?: number;
|
|
11
|
-
countNoMatches?: number;
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
/**
|
|
15
|
-
* @author semantha
|
|
16
|
-
*
|
|
17
|
-
* This is a generated file do not change manually!
|
|
18
|
-
*/
|
|
19
|
-
interface AnalysisReport {
|
|
20
|
-
id?: string;
|
|
21
|
-
name?: string;
|
|
22
|
-
created?: number;
|
|
23
|
-
type?: AnalysisReportTypeEnum;
|
|
24
|
-
stats?: AnalysisStats;
|
|
25
|
-
tags?: string;
|
|
26
|
-
documentClassIds?: string[];
|
|
27
|
-
projectId?: string;
|
|
28
|
-
space?: string;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
/**
|
|
32
|
-
* @author semantha
|
|
33
|
-
*
|
|
34
|
-
* This is a generated file do not change manually!
|
|
35
|
-
*/
|
|
36
|
-
interface AnalysesReport {
|
|
37
|
-
analysisReports?: AnalysisReport[];
|
|
38
|
-
statsSummary?: AnalysisStats;
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
/**
|
|
42
|
-
* @author semantha
|
|
43
|
-
*
|
|
44
|
-
* This is a generated file do not change manually!
|
|
45
|
-
*/
|
|
46
|
-
interface Analysis {
|
|
47
|
-
id?: string;
|
|
48
|
-
name?: string;
|
|
49
|
-
strategy?: string;
|
|
50
|
-
maxReferences?: number;
|
|
51
|
-
similarityThreshold?: number;
|
|
52
|
-
created?: number;
|
|
53
|
-
tags?: string;
|
|
54
|
-
documentClassIds?: string[];
|
|
55
|
-
status?: AnalysisStatusEnum;
|
|
56
|
-
progressState?: number;
|
|
57
|
-
goodMatchesThreshold?: number;
|
|
58
|
-
matchAllReferences?: boolean;
|
|
59
|
-
showDocumentScore?: boolean;
|
|
60
|
-
minDocumentScore?: number;
|
|
61
|
-
source?: AnalysisSourceEnum;
|
|
62
|
-
type?: AnalysisTypeEnum;
|
|
63
|
-
stats?: AnalysisStats;
|
|
64
|
-
}
|
|
65
|
-
|
|
66
1
|
/**
|
|
67
2
|
* @author semantha
|
|
68
3
|
*
|
|
@@ -345,6 +280,85 @@ interface AnalysisInput {
|
|
|
345
280
|
documentClassId?: string;
|
|
346
281
|
}
|
|
347
282
|
|
|
283
|
+
/**
|
|
284
|
+
* @author semantha
|
|
285
|
+
*
|
|
286
|
+
* This is a generated file do not change manually!
|
|
287
|
+
*/
|
|
288
|
+
interface AiTaskInput {
|
|
289
|
+
content: AnalysisInput[];
|
|
290
|
+
promptId: string;
|
|
291
|
+
name: string;
|
|
292
|
+
args?: {
|
|
293
|
+
[key: string]: string;
|
|
294
|
+
};
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
/**
|
|
298
|
+
* @author semantha
|
|
299
|
+
*
|
|
300
|
+
* This is a generated file do not change manually!
|
|
301
|
+
*/
|
|
302
|
+
interface AnalysisStats {
|
|
303
|
+
countIdenticalMatches?: number;
|
|
304
|
+
countTotalResults?: number;
|
|
305
|
+
countGoodMatches?: number;
|
|
306
|
+
countSimilarMatches?: number;
|
|
307
|
+
countNoMatches?: number;
|
|
308
|
+
}
|
|
309
|
+
|
|
310
|
+
/**
|
|
311
|
+
* @author semantha
|
|
312
|
+
*
|
|
313
|
+
* This is a generated file do not change manually!
|
|
314
|
+
*/
|
|
315
|
+
interface AnalysisReport {
|
|
316
|
+
id?: string;
|
|
317
|
+
name?: string;
|
|
318
|
+
created?: number;
|
|
319
|
+
type?: AnalysisReportTypeEnum;
|
|
320
|
+
stats?: AnalysisStats;
|
|
321
|
+
tags?: string;
|
|
322
|
+
documentClassIds?: string[];
|
|
323
|
+
projectId?: string;
|
|
324
|
+
space?: string;
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
/**
|
|
328
|
+
* @author semantha
|
|
329
|
+
*
|
|
330
|
+
* This is a generated file do not change manually!
|
|
331
|
+
*/
|
|
332
|
+
interface AnalysesReport {
|
|
333
|
+
analysisReports?: AnalysisReport[];
|
|
334
|
+
statsSummary?: AnalysisStats;
|
|
335
|
+
}
|
|
336
|
+
|
|
337
|
+
/**
|
|
338
|
+
* @author semantha
|
|
339
|
+
*
|
|
340
|
+
* This is a generated file do not change manually!
|
|
341
|
+
*/
|
|
342
|
+
interface Analysis {
|
|
343
|
+
id?: string;
|
|
344
|
+
name?: string;
|
|
345
|
+
strategy?: string;
|
|
346
|
+
maxReferences?: number;
|
|
347
|
+
similarityThreshold?: number;
|
|
348
|
+
created?: number;
|
|
349
|
+
tags?: string;
|
|
350
|
+
documentClassIds?: string[];
|
|
351
|
+
status?: AnalysisStatusEnum;
|
|
352
|
+
progressState?: number;
|
|
353
|
+
goodMatchesThreshold?: number;
|
|
354
|
+
matchAllReferences?: boolean;
|
|
355
|
+
showDocumentScore?: boolean;
|
|
356
|
+
minDocumentScore?: number;
|
|
357
|
+
source?: AnalysisSourceEnum;
|
|
358
|
+
type?: AnalysisTypeEnum;
|
|
359
|
+
stats?: AnalysisStats;
|
|
360
|
+
}
|
|
361
|
+
|
|
348
362
|
/**
|
|
349
363
|
* @author semantha
|
|
350
364
|
*
|
|
@@ -733,4 +747,4 @@ interface PromptResult {
|
|
|
733
747
|
customAttributes?: Attribute[];
|
|
734
748
|
}
|
|
735
749
|
|
|
736
|
-
export { type AnalysesReport, type Analysis, type AnalysisCreation, type AnalysisInput, type AnalysisReport, type AnalysisReportTypeEnum, AnalysisReportTypeEnumValues, type AnalysisResult, type AnalysisResultComment, type AnalysisResultOverview, type AnalysisResultsResponseContainer, type AnalysisResultsStats, type AnalysisResultsStatsResponseContainer, type AnalysisSourceEnum, AnalysisSourceEnumValues, type AnalysisStats, type AnalysisStatusEnum, AnalysisStatusEnumValues, type AnalysisTypeEnum, AnalysisTypeEnumValues, type AnnotationCell, type AnnotationPage, type Attachment, type Attribute, type Char, type Classification, type ClassificationStats, type CurrentUser, type Distance, type Document, type DocumentNamedEntity, type DocumentTable, type Entity, type Evaluation, type EvaluationOverview, type ExcelTemplateColumnConfig, type ExcelTemplateColumnConfigHeaderTypeEnum, ExcelTemplateColumnConfigHeaderTypeEnumValues, type ExcelTemplateDetails, type ExtendedReference, type Features, type FormDataContentDisposition, type FormatInformation, type Link, type MetaInfoPage, type ModeEnum, ModeEnumValues, type Page, type PageContent, type Paragraph, type PromptResult, type Rect, type Reference, type ResponseMetaInfo, type Row, type Sentence, type StatusStats, type TableCell, isAnalysisReportTypeEnumValue, isAnalysisSourceEnumValue, isAnalysisStatusEnumValue, isAnalysisTypeEnumValue, isExcelTemplateColumnConfigHeaderTypeEnumValue, isModeEnumValue };
|
|
750
|
+
export { type AiTaskInput, type AnalysesReport, type Analysis, type AnalysisCreation, type AnalysisInput, type AnalysisReport, type AnalysisReportTypeEnum, AnalysisReportTypeEnumValues, type AnalysisResult, type AnalysisResultComment, type AnalysisResultOverview, type AnalysisResultsResponseContainer, type AnalysisResultsStats, type AnalysisResultsStatsResponseContainer, type AnalysisSourceEnum, AnalysisSourceEnumValues, type AnalysisStats, type AnalysisStatusEnum, AnalysisStatusEnumValues, type AnalysisTypeEnum, AnalysisTypeEnumValues, type AnnotationCell, type AnnotationPage, type Attachment, type Attribute, type Char, type Classification, type ClassificationStats, type CurrentUser, type Distance, type Document, type DocumentNamedEntity, type DocumentTable, type Entity, type Evaluation, type EvaluationOverview, type ExcelTemplateColumnConfig, type ExcelTemplateColumnConfigHeaderTypeEnum, ExcelTemplateColumnConfigHeaderTypeEnumValues, type ExcelTemplateDetails, type ExtendedReference, type Features, type FormDataContentDisposition, type FormatInformation, type Link, type MetaInfoPage, type ModeEnum, ModeEnumValues, type Page, type PageContent, type Paragraph, type PromptResult, type Rect, type Reference, type ResponseMetaInfo, type Row, type Sentence, type StatusStats, type TableCell, isAnalysisReportTypeEnumValue, isAnalysisSourceEnumValue, isAnalysisStatusEnumValue, isAnalysisTypeEnumValue, isExcelTemplateColumnConfigHeaderTypeEnumValue, isModeEnumValue };
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
'use strict';var o=["EXCEL","PDF","POLARION","STRUCTURE_NAVIGATOR"];function u(e){return o.includes(e)}var r=["EXCEL","PDF","POLARION","STRUCTURE_NAVIGATOR"];function x(e){return r.includes(e)}var t=["INITIALIZING","QUEUED","IN_PROGRESS","FINISHED","UPDATING_RESULTS","ERROR","UNKNOWN","CANCELLED","EMPTY","LIMIT_EXCEEDED"];function
|
|
1
|
+
'use strict';var o=["EXCEL","PDF","POLARION","STRUCTURE_NAVIGATOR"];function u(e){return o.includes(e)}var r=["EXCEL","PDF","POLARION","STRUCTURE_NAVIGATOR"];function x(e){return r.includes(e)}var t=["INITIALIZING","QUEUED","IN_PROGRESS","FINISHED","UPDATING_RESULTS","ERROR","UNKNOWN","CANCELLED","EMPTY","LIMIT_EXCEEDED"];function a(e){return t.includes(e)}var n=["SIMILARITY","PROMPT"];function E(e){return n.includes(e)}var p=["DEFAULT_COLUMN","PLACEHOLDER_COLUMN","EDITABLE_PLACEHOLDER_COLUMN"];function y(e){return p.includes(e)}var m=["fingerprint","keyword","document","document_fingerprint","fingerprint_keyword","auto"];function T(e){return m.includes(e)}exports.AnalysisReportTypeEnumValues=o;exports.AnalysisSourceEnumValues=r;exports.AnalysisStatusEnumValues=t;exports.AnalysisTypeEnumValues=n;exports.ExcelTemplateColumnConfigHeaderTypeEnumValues=p;exports.ModeEnumValues=m;exports.isAnalysisReportTypeEnumValue=u;exports.isAnalysisSourceEnumValue=x;exports.isAnalysisStatusEnumValue=a;exports.isAnalysisTypeEnumValue=E;exports.isExcelTemplateColumnConfigHeaderTypeEnumValue=y;exports.isModeEnumValue=T;//# sourceMappingURL=index.js.map
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
var o=["EXCEL","PDF","POLARION","STRUCTURE_NAVIGATOR"];function u(e){return o.includes(e)}var r=["EXCEL","PDF","POLARION","STRUCTURE_NAVIGATOR"];function x(e){return r.includes(e)}var t=["INITIALIZING","QUEUED","IN_PROGRESS","FINISHED","UPDATING_RESULTS","ERROR","UNKNOWN","CANCELLED","EMPTY","LIMIT_EXCEEDED"];function
|
|
1
|
+
var o=["EXCEL","PDF","POLARION","STRUCTURE_NAVIGATOR"];function u(e){return o.includes(e)}var r=["EXCEL","PDF","POLARION","STRUCTURE_NAVIGATOR"];function x(e){return r.includes(e)}var t=["INITIALIZING","QUEUED","IN_PROGRESS","FINISHED","UPDATING_RESULTS","ERROR","UNKNOWN","CANCELLED","EMPTY","LIMIT_EXCEEDED"];function a(e){return t.includes(e)}var n=["SIMILARITY","PROMPT"];function E(e){return n.includes(e)}var p=["DEFAULT_COLUMN","PLACEHOLDER_COLUMN","EDITABLE_PLACEHOLDER_COLUMN"];function y(e){return p.includes(e)}var m=["fingerprint","keyword","document","document_fingerprint","fingerprint_keyword","auto"];function T(e){return m.includes(e)}export{o as AnalysisReportTypeEnumValues,r as AnalysisSourceEnumValues,t as AnalysisStatusEnumValues,n as AnalysisTypeEnumValues,p as ExcelTemplateColumnConfigHeaderTypeEnumValues,m as ModeEnumValues,u as isAnalysisReportTypeEnumValue,x as isAnalysisSourceEnumValue,a as isAnalysisStatusEnumValue,E as isAnalysisTypeEnumValue,y as isExcelTemplateColumnConfigHeaderTypeEnumValue,T as isModeEnumValue};//# sourceMappingURL=index.mjs.map
|
|
2
2
|
//# sourceMappingURL=index.mjs.map
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
'use strict';var chunkJ6MTVURL_js=require('../chunk-J6MTVURL.js')
|
|
1
|
+
'use strict';var chunkJ6MTVURL_js=require('../chunk-J6MTVURL.js'),chunkKFGKXHFV_js=require('../chunk-KFGKXHFV.js');require('../chunk-WFUCUDFC.js');Object.defineProperty(exports,"BinaryEndpoint",{enumerable:true,get:function(){return chunkJ6MTVURL_js.a}});Object.defineProperty(exports,"ConfigurationEndpoint",{enumerable:true,get:function(){return chunkJ6MTVURL_js.b}});Object.defineProperty(exports,"ConfigurationsEndpoint",{enumerable:true,get:function(){return chunkJ6MTVURL_js.c}});Object.defineProperty(exports,"DocumentstructureEndpoint",{enumerable:true,get:function(){return chunkJ6MTVURL_js.f}});Object.defineProperty(exports,"DocumentstructuresEndpoint",{enumerable:true,get:function(){return chunkJ6MTVURL_js.g}});Object.defineProperty(exports,"DomainEndpoint",{enumerable:true,get:function(){return chunkJ6MTVURL_js.h}});Object.defineProperty(exports,"DomainsEndpoint",{enumerable:true,get:function(){return chunkJ6MTVURL_js.i}});Object.defineProperty(exports,"EventsEndpoint",{enumerable:true,get:function(){return chunkJ6MTVURL_js.d}});Object.defineProperty(exports,"ScreenshotsEndpoint",{enumerable:true,get:function(){return chunkJ6MTVURL_js.e}});Object.defineProperty(exports,"StructureNavigatorAPI",{enumerable:true,get:function(){return chunkJ6MTVURL_js.k}});Object.defineProperty(exports,"StructurenavigatorEndpoint",{enumerable:true,get:function(){return chunkJ6MTVURL_js.j}});Object.defineProperty(exports,"BulkDocumentStructureStatusEnumValues",{enumerable:true,get:function(){return chunkKFGKXHFV_js.a}});Object.defineProperty(exports,"DocumentStructureOverviewStatusEnumValues",{enumerable:true,get:function(){return chunkKFGKXHFV_js.c}});Object.defineProperty(exports,"DocumentStructureStatusEnumValues",{enumerable:true,get:function(){return chunkKFGKXHFV_js.e}});Object.defineProperty(exports,"EventTypeEnumValues",{enumerable:true,get:function(){return chunkKFGKXHFV_js.g}});Object.defineProperty(exports,"isBulkDocumentStructureStatusEnumValue",{enumerable:true,get:function(){return chunkKFGKXHFV_js.b}});Object.defineProperty(exports,"isDocumentStructureOverviewStatusEnumValue",{enumerable:true,get:function(){return chunkKFGKXHFV_js.d}});Object.defineProperty(exports,"isDocumentStructureStatusEnumValue",{enumerable:true,get:function(){return chunkKFGKXHFV_js.f}});Object.defineProperty(exports,"isEventTypeEnumValue",{enumerable:true,get:function(){return chunkKFGKXHFV_js.h}});//# sourceMappingURL=index.js.map
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export{a as BinaryEndpoint,b as ConfigurationEndpoint,c as ConfigurationsEndpoint,f as DocumentstructureEndpoint,g as DocumentstructuresEndpoint,h as DomainEndpoint,i as DomainsEndpoint,d as EventsEndpoint,e as ScreenshotsEndpoint,k as StructureNavigatorAPI,j as StructurenavigatorEndpoint}from'../chunk-CS7BBFY4.mjs';
|
|
1
|
+
export{a as BinaryEndpoint,b as ConfigurationEndpoint,c as ConfigurationsEndpoint,f as DocumentstructureEndpoint,g as DocumentstructuresEndpoint,h as DomainEndpoint,i as DomainsEndpoint,d as EventsEndpoint,e as ScreenshotsEndpoint,k as StructureNavigatorAPI,j as StructurenavigatorEndpoint}from'../chunk-CS7BBFY4.mjs';export{a as BulkDocumentStructureStatusEnumValues,c as DocumentStructureOverviewStatusEnumValues,e as DocumentStructureStatusEnumValues,g as EventTypeEnumValues,b as isBulkDocumentStructureStatusEnumValue,d as isDocumentStructureOverviewStatusEnumValue,f as isDocumentStructureStatusEnumValue,h as isEventTypeEnumValue}from'../chunk-OFG4XO3Z.mjs';import'../chunk-OHHE5EHF.mjs';//# sourceMappingURL=index.mjs.map
|
|
2
2
|
//# sourceMappingURL=index.mjs.map
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@semantha/product-sdk",
|
|
3
3
|
"description": "SDK for semantha products",
|
|
4
|
-
"version": "10.
|
|
4
|
+
"version": "10.5.0",
|
|
5
5
|
"packageManager": "pnpm@9.1.1+sha512.14e915759c11f77eac07faba4d019c193ec8637229e62ec99eefb7cf3c3b75c64447882b7c485142451ee3a6b408059cdfb7b7fa0341b975f12d0f7629c71195",
|
|
6
6
|
"files": [
|
|
7
7
|
"./dist"
|