@aws-sdk/client-comprehend 3.218.0 → 3.223.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-cjs/endpoint/ruleset.js +1 -1
- package/dist-cjs/models/models_0.js +113 -24
- package/dist-cjs/pagination/ListEndpointsPaginator.js +36 -0
- package/dist-cjs/pagination/ListPiiEntitiesDetectionJobsPaginator.js +36 -0
- package/dist-cjs/pagination/index.js +2 -0
- package/dist-cjs/protocols/Aws_json1_1.js +210 -0
- package/dist-es/endpoint/ruleset.js +1 -1
- package/dist-es/models/models_0.js +94 -18
- package/dist-es/pagination/ListEndpointsPaginator.js +32 -0
- package/dist-es/pagination/ListPiiEntitiesDetectionJobsPaginator.js +32 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_json1_1.js +210 -0
- package/dist-types/Comprehend.d.ts +24 -2
- package/dist-types/commands/ClassifyDocumentCommand.d.ts +9 -0
- package/dist-types/commands/DetectEntitiesCommand.d.ts +15 -2
- package/dist-types/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +559 -75
- package/dist-types/pagination/ListEndpointsPaginator.d.ts +4 -0
- package/dist-types/pagination/ListPiiEntitiesDetectionJobsPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +153 -22
- package/dist-types/ts3.4/pagination/ListEndpointsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListPiiEntitiesDetectionJobsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/package.json +28 -28
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListEndpointsCommandInput, ListEndpointsCommandOutput } from "../commands/ListEndpointsCommand";
|
|
3
|
+
import { ComprehendPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListEndpoints(config: ComprehendPaginationConfiguration, input: ListEndpointsCommandInput, ...additionalArguments: any): Paginator<ListEndpointsCommandOutput>;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListPiiEntitiesDetectionJobsCommandInput, ListPiiEntitiesDetectionJobsCommandOutput } from "../commands/ListPiiEntitiesDetectionJobsCommand";
|
|
3
|
+
import { ComprehendPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListPiiEntitiesDetectionJobs(config: ComprehendPaginationConfiguration, input: ListPiiEntitiesDetectionJobsCommandInput, ...additionalArguments: any): Paginator<ListPiiEntitiesDetectionJobsCommandOutput>;
|
|
@@ -3,11 +3,13 @@ export * from "./ListDocumentClassificationJobsPaginator";
|
|
|
3
3
|
export * from "./ListDocumentClassifierSummariesPaginator";
|
|
4
4
|
export * from "./ListDocumentClassifiersPaginator";
|
|
5
5
|
export * from "./ListDominantLanguageDetectionJobsPaginator";
|
|
6
|
+
export * from "./ListEndpointsPaginator";
|
|
6
7
|
export * from "./ListEntitiesDetectionJobsPaginator";
|
|
7
8
|
export * from "./ListEntityRecognizerSummariesPaginator";
|
|
8
9
|
export * from "./ListEntityRecognizersPaginator";
|
|
9
10
|
export * from "./ListEventsDetectionJobsPaginator";
|
|
10
11
|
export * from "./ListKeyPhrasesDetectionJobsPaginator";
|
|
12
|
+
export * from "./ListPiiEntitiesDetectionJobsPaginator";
|
|
11
13
|
export * from "./ListSentimentDetectionJobsPaginator";
|
|
12
14
|
export * from "./ListTargetedSentimentDetectionJobsPaginator";
|
|
13
15
|
export * from "./ListTopicsDetectionJobsPaginator";
|
|
@@ -27,7 +27,7 @@ export declare const resolveClientEndpointParameters: <T>(
|
|
|
27
27
|
defaultSigningName: string;
|
|
28
28
|
};
|
|
29
29
|
export interface EndpointParameters extends __EndpointParameters {
|
|
30
|
-
Region
|
|
30
|
+
Region: string;
|
|
31
31
|
UseDualStack?: boolean;
|
|
32
32
|
UseFIPS?: boolean;
|
|
33
33
|
Endpoint?: string;
|
|
@@ -55,10 +55,24 @@ export declare class InternalServerException extends __BaseException {
|
|
|
55
55
|
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
56
56
|
);
|
|
57
57
|
}
|
|
58
|
+
export declare enum InvalidRequestDetailReason {
|
|
59
|
+
DOCUMENT_SIZE_EXCEEDED = "DOCUMENT_SIZE_EXCEEDED",
|
|
60
|
+
PAGE_LIMIT_EXCEEDED = "PAGE_LIMIT_EXCEEDED",
|
|
61
|
+
TEXTRACT_ACCESS_DENIED = "TEXTRACT_ACCESS_DENIED",
|
|
62
|
+
UNSUPPORTED_DOC_TYPE = "UNSUPPORTED_DOC_TYPE",
|
|
63
|
+
}
|
|
64
|
+
export interface InvalidRequestDetail {
|
|
65
|
+
Reason?: InvalidRequestDetailReason | string;
|
|
66
|
+
}
|
|
67
|
+
export declare enum InvalidRequestReason {
|
|
68
|
+
INVALID_DOCUMENT = "INVALID_DOCUMENT",
|
|
69
|
+
}
|
|
58
70
|
export declare class InvalidRequestException extends __BaseException {
|
|
59
71
|
readonly name: "InvalidRequestException";
|
|
60
72
|
readonly $fault: "client";
|
|
61
73
|
Message?: string;
|
|
74
|
+
Reason?: InvalidRequestReason | string;
|
|
75
|
+
Detail?: InvalidRequestDetail;
|
|
62
76
|
constructor(
|
|
63
77
|
opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
|
|
64
78
|
);
|
|
@@ -89,6 +103,17 @@ export interface BatchDetectEntitiesRequest {
|
|
|
89
103
|
TextList: string[] | undefined;
|
|
90
104
|
LanguageCode: LanguageCode | string | undefined;
|
|
91
105
|
}
|
|
106
|
+
export interface ChildBlock {
|
|
107
|
+
ChildBlockId?: string;
|
|
108
|
+
BeginOffset?: number;
|
|
109
|
+
EndOffset?: number;
|
|
110
|
+
}
|
|
111
|
+
export interface BlockReference {
|
|
112
|
+
BlockId?: string;
|
|
113
|
+
BeginOffset?: number;
|
|
114
|
+
EndOffset?: number;
|
|
115
|
+
ChildBlocks?: ChildBlock[];
|
|
116
|
+
}
|
|
92
117
|
export declare enum EntityType {
|
|
93
118
|
COMMERCIAL_ITEM = "COMMERCIAL_ITEM",
|
|
94
119
|
DATE = "DATE",
|
|
@@ -106,6 +131,7 @@ export interface Entity {
|
|
|
106
131
|
Text?: string;
|
|
107
132
|
BeginOffset?: number;
|
|
108
133
|
EndOffset?: number;
|
|
134
|
+
BlockReferences?: BlockReference[];
|
|
109
135
|
}
|
|
110
136
|
export interface BatchDetectEntitiesItemResult {
|
|
111
137
|
Index?: number;
|
|
@@ -265,6 +291,39 @@ export interface BatchDetectTargetedSentimentResponse {
|
|
|
265
291
|
ResultList: BatchDetectTargetedSentimentItemResult[] | undefined;
|
|
266
292
|
ErrorList: BatchItemError[] | undefined;
|
|
267
293
|
}
|
|
294
|
+
export declare enum BlockType {
|
|
295
|
+
LINE = "LINE",
|
|
296
|
+
WORD = "WORD",
|
|
297
|
+
}
|
|
298
|
+
export interface BoundingBox {
|
|
299
|
+
Height?: number;
|
|
300
|
+
Left?: number;
|
|
301
|
+
Top?: number;
|
|
302
|
+
Width?: number;
|
|
303
|
+
}
|
|
304
|
+
export interface Point {
|
|
305
|
+
X?: number;
|
|
306
|
+
Y?: number;
|
|
307
|
+
}
|
|
308
|
+
export interface Geometry {
|
|
309
|
+
BoundingBox?: BoundingBox;
|
|
310
|
+
Polygon?: Point[];
|
|
311
|
+
}
|
|
312
|
+
export declare enum RelationshipType {
|
|
313
|
+
CHILD = "CHILD",
|
|
314
|
+
}
|
|
315
|
+
export interface RelationshipsListItem {
|
|
316
|
+
Ids?: string[];
|
|
317
|
+
Type?: RelationshipType | string;
|
|
318
|
+
}
|
|
319
|
+
export interface Block {
|
|
320
|
+
Id?: string;
|
|
321
|
+
BlockType?: BlockType | string;
|
|
322
|
+
Text?: string;
|
|
323
|
+
Page?: number;
|
|
324
|
+
Geometry?: Geometry;
|
|
325
|
+
Relationships?: RelationshipsListItem[];
|
|
326
|
+
}
|
|
268
327
|
export interface ClassifierEvaluationMetrics {
|
|
269
328
|
Accuracy?: number;
|
|
270
329
|
Precision?: number;
|
|
@@ -281,21 +340,78 @@ export interface ClassifierMetadata {
|
|
|
281
340
|
NumberOfTestDocuments?: number;
|
|
282
341
|
EvaluationMetrics?: ClassifierEvaluationMetrics;
|
|
283
342
|
}
|
|
343
|
+
export declare enum DocumentReadAction {
|
|
344
|
+
TEXTRACT_ANALYZE_DOCUMENT = "TEXTRACT_ANALYZE_DOCUMENT",
|
|
345
|
+
TEXTRACT_DETECT_DOCUMENT_TEXT = "TEXTRACT_DETECT_DOCUMENT_TEXT",
|
|
346
|
+
}
|
|
347
|
+
export declare enum DocumentReadMode {
|
|
348
|
+
FORCE_DOCUMENT_READ_ACTION = "FORCE_DOCUMENT_READ_ACTION",
|
|
349
|
+
SERVICE_DEFAULT = "SERVICE_DEFAULT",
|
|
350
|
+
}
|
|
351
|
+
export declare enum DocumentReadFeatureTypes {
|
|
352
|
+
FORMS = "FORMS",
|
|
353
|
+
TABLES = "TABLES",
|
|
354
|
+
}
|
|
355
|
+
export interface DocumentReaderConfig {
|
|
356
|
+
DocumentReadAction: DocumentReadAction | string | undefined;
|
|
357
|
+
DocumentReadMode?: DocumentReadMode | string;
|
|
358
|
+
FeatureTypes?: (DocumentReadFeatureTypes | string)[];
|
|
359
|
+
}
|
|
284
360
|
export interface ClassifyDocumentRequest {
|
|
285
|
-
Text
|
|
361
|
+
Text?: string;
|
|
286
362
|
EndpointArn: string | undefined;
|
|
363
|
+
Bytes?: Uint8Array;
|
|
364
|
+
DocumentReaderConfig?: DocumentReaderConfig;
|
|
287
365
|
}
|
|
288
366
|
export interface DocumentClass {
|
|
289
367
|
Name?: string;
|
|
290
368
|
Score?: number;
|
|
369
|
+
Page?: number;
|
|
370
|
+
}
|
|
371
|
+
export interface ExtractedCharactersListItem {
|
|
372
|
+
Page?: number;
|
|
373
|
+
Count?: number;
|
|
374
|
+
}
|
|
375
|
+
export interface DocumentMetadata {
|
|
376
|
+
Pages?: number;
|
|
377
|
+
ExtractedCharacters?: ExtractedCharactersListItem[];
|
|
378
|
+
}
|
|
379
|
+
export declare enum DocumentType {
|
|
380
|
+
IMAGE = "IMAGE",
|
|
381
|
+
MS_WORD = "MS_WORD",
|
|
382
|
+
NATIVE_PDF = "NATIVE_PDF",
|
|
383
|
+
PLAIN_TEXT = "PLAIN_TEXT",
|
|
384
|
+
SCANNED_PDF = "SCANNED_PDF",
|
|
385
|
+
TEXTRACT_ANALYZE_DOCUMENT_JSON = "TEXTRACT_ANALYZE_DOCUMENT_JSON",
|
|
386
|
+
TEXTRACT_DETECT_DOCUMENT_TEXT_JSON = "TEXTRACT_DETECT_DOCUMENT_TEXT_JSON",
|
|
387
|
+
}
|
|
388
|
+
export interface DocumentTypeListItem {
|
|
389
|
+
Page?: number;
|
|
390
|
+
Type?: DocumentType | string;
|
|
391
|
+
}
|
|
392
|
+
export declare enum PageBasedErrorCode {
|
|
393
|
+
INTERNAL_SERVER_ERROR = "INTERNAL_SERVER_ERROR",
|
|
394
|
+
PAGE_CHARACTERS_EXCEEDED = "PAGE_CHARACTERS_EXCEEDED",
|
|
395
|
+
PAGE_SIZE_EXCEEDED = "PAGE_SIZE_EXCEEDED",
|
|
396
|
+
TEXTRACT_BAD_PAGE = "TEXTRACT_BAD_PAGE",
|
|
397
|
+
TEXTRACT_PROVISIONED_THROUGHPUT_EXCEEDED = "TEXTRACT_PROVISIONED_THROUGHPUT_EXCEEDED",
|
|
398
|
+
}
|
|
399
|
+
export interface ErrorsListItem {
|
|
400
|
+
Page?: number;
|
|
401
|
+
ErrorCode?: PageBasedErrorCode | string;
|
|
402
|
+
ErrorMessage?: string;
|
|
291
403
|
}
|
|
292
404
|
export interface DocumentLabel {
|
|
293
405
|
Name?: string;
|
|
294
406
|
Score?: number;
|
|
407
|
+
Page?: number;
|
|
295
408
|
}
|
|
296
409
|
export interface ClassifyDocumentResponse {
|
|
297
410
|
Classes?: DocumentClass[];
|
|
298
411
|
Labels?: DocumentLabel[];
|
|
412
|
+
DocumentMetadata?: DocumentMetadata;
|
|
413
|
+
DocumentType?: DocumentTypeListItem[];
|
|
414
|
+
Errors?: ErrorsListItem[];
|
|
299
415
|
}
|
|
300
416
|
export declare class ResourceUnavailableException extends __BaseException {
|
|
301
417
|
readonly name: "ResourceUnavailableException";
|
|
@@ -526,23 +642,6 @@ export interface DeleteResourcePolicyResponse {}
|
|
|
526
642
|
export interface DescribeDocumentClassificationJobRequest {
|
|
527
643
|
JobId: string | undefined;
|
|
528
644
|
}
|
|
529
|
-
export declare enum DocumentReadAction {
|
|
530
|
-
TEXTRACT_ANALYZE_DOCUMENT = "TEXTRACT_ANALYZE_DOCUMENT",
|
|
531
|
-
TEXTRACT_DETECT_DOCUMENT_TEXT = "TEXTRACT_DETECT_DOCUMENT_TEXT",
|
|
532
|
-
}
|
|
533
|
-
export declare enum DocumentReadMode {
|
|
534
|
-
FORCE_DOCUMENT_READ_ACTION = "FORCE_DOCUMENT_READ_ACTION",
|
|
535
|
-
SERVICE_DEFAULT = "SERVICE_DEFAULT",
|
|
536
|
-
}
|
|
537
|
-
export declare enum DocumentReadFeatureTypes {
|
|
538
|
-
FORMS = "FORMS",
|
|
539
|
-
TABLES = "TABLES",
|
|
540
|
-
}
|
|
541
|
-
export interface DocumentReaderConfig {
|
|
542
|
-
DocumentReadAction: DocumentReadAction | string | undefined;
|
|
543
|
-
DocumentReadMode?: DocumentReadMode | string;
|
|
544
|
-
FeatureTypes?: (DocumentReadFeatureTypes | string)[];
|
|
545
|
-
}
|
|
546
645
|
export interface InputDataConfig {
|
|
547
646
|
S3Uri: string | undefined;
|
|
548
647
|
InputFormat?: InputFormat | string;
|
|
@@ -892,12 +991,18 @@ export interface DetectDominantLanguageResponse {
|
|
|
892
991
|
Languages?: DominantLanguage[];
|
|
893
992
|
}
|
|
894
993
|
export interface DetectEntitiesRequest {
|
|
895
|
-
Text
|
|
994
|
+
Text?: string;
|
|
896
995
|
LanguageCode?: LanguageCode | string;
|
|
897
996
|
EndpointArn?: string;
|
|
997
|
+
Bytes?: Uint8Array;
|
|
998
|
+
DocumentReaderConfig?: DocumentReaderConfig;
|
|
898
999
|
}
|
|
899
1000
|
export interface DetectEntitiesResponse {
|
|
900
1001
|
Entities?: Entity[];
|
|
1002
|
+
DocumentMetadata?: DocumentMetadata;
|
|
1003
|
+
DocumentType?: DocumentTypeListItem[];
|
|
1004
|
+
Blocks?: Block[];
|
|
1005
|
+
Errors?: ErrorsListItem[];
|
|
901
1006
|
}
|
|
902
1007
|
export interface DetectKeyPhrasesRequest {
|
|
903
1008
|
Text: string | undefined;
|
|
@@ -1439,9 +1544,16 @@ export declare const BatchDetectDominantLanguageItemResultFilterSensitiveLog: (
|
|
|
1439
1544
|
export declare const BatchDetectDominantLanguageResponseFilterSensitiveLog: (
|
|
1440
1545
|
obj: BatchDetectDominantLanguageResponse
|
|
1441
1546
|
) => any;
|
|
1547
|
+
export declare const InvalidRequestDetailFilterSensitiveLog: (
|
|
1548
|
+
obj: InvalidRequestDetail
|
|
1549
|
+
) => any;
|
|
1442
1550
|
export declare const BatchDetectEntitiesRequestFilterSensitiveLog: (
|
|
1443
1551
|
obj: BatchDetectEntitiesRequest
|
|
1444
1552
|
) => any;
|
|
1553
|
+
export declare const ChildBlockFilterSensitiveLog: (obj: ChildBlock) => any;
|
|
1554
|
+
export declare const BlockReferenceFilterSensitiveLog: (
|
|
1555
|
+
obj: BlockReference
|
|
1556
|
+
) => any;
|
|
1445
1557
|
export declare const EntityFilterSensitiveLog: (obj: Entity) => any;
|
|
1446
1558
|
export declare const BatchDetectEntitiesItemResultFilterSensitiveLog: (
|
|
1447
1559
|
obj: BatchDetectEntitiesItemResult
|
|
@@ -1502,18 +1614,40 @@ export declare const BatchDetectTargetedSentimentItemResultFilterSensitiveLog: (
|
|
|
1502
1614
|
export declare const BatchDetectTargetedSentimentResponseFilterSensitiveLog: (
|
|
1503
1615
|
obj: BatchDetectTargetedSentimentResponse
|
|
1504
1616
|
) => any;
|
|
1617
|
+
export declare const BoundingBoxFilterSensitiveLog: (obj: BoundingBox) => any;
|
|
1618
|
+
export declare const PointFilterSensitiveLog: (obj: Point) => any;
|
|
1619
|
+
export declare const GeometryFilterSensitiveLog: (obj: Geometry) => any;
|
|
1620
|
+
export declare const RelationshipsListItemFilterSensitiveLog: (
|
|
1621
|
+
obj: RelationshipsListItem
|
|
1622
|
+
) => any;
|
|
1623
|
+
export declare const BlockFilterSensitiveLog: (obj: Block) => any;
|
|
1505
1624
|
export declare const ClassifierEvaluationMetricsFilterSensitiveLog: (
|
|
1506
1625
|
obj: ClassifierEvaluationMetrics
|
|
1507
1626
|
) => any;
|
|
1508
1627
|
export declare const ClassifierMetadataFilterSensitiveLog: (
|
|
1509
1628
|
obj: ClassifierMetadata
|
|
1510
1629
|
) => any;
|
|
1630
|
+
export declare const DocumentReaderConfigFilterSensitiveLog: (
|
|
1631
|
+
obj: DocumentReaderConfig
|
|
1632
|
+
) => any;
|
|
1511
1633
|
export declare const ClassifyDocumentRequestFilterSensitiveLog: (
|
|
1512
1634
|
obj: ClassifyDocumentRequest
|
|
1513
1635
|
) => any;
|
|
1514
1636
|
export declare const DocumentClassFilterSensitiveLog: (
|
|
1515
1637
|
obj: DocumentClass
|
|
1516
1638
|
) => any;
|
|
1639
|
+
export declare const ExtractedCharactersListItemFilterSensitiveLog: (
|
|
1640
|
+
obj: ExtractedCharactersListItem
|
|
1641
|
+
) => any;
|
|
1642
|
+
export declare const DocumentMetadataFilterSensitiveLog: (
|
|
1643
|
+
obj: DocumentMetadata
|
|
1644
|
+
) => any;
|
|
1645
|
+
export declare const DocumentTypeListItemFilterSensitiveLog: (
|
|
1646
|
+
obj: DocumentTypeListItem
|
|
1647
|
+
) => any;
|
|
1648
|
+
export declare const ErrorsListItemFilterSensitiveLog: (
|
|
1649
|
+
obj: ErrorsListItem
|
|
1650
|
+
) => any;
|
|
1517
1651
|
export declare const DocumentLabelFilterSensitiveLog: (
|
|
1518
1652
|
obj: DocumentLabel
|
|
1519
1653
|
) => any;
|
|
@@ -1595,9 +1729,6 @@ export declare const DeleteResourcePolicyResponseFilterSensitiveLog: (
|
|
|
1595
1729
|
export declare const DescribeDocumentClassificationJobRequestFilterSensitiveLog: (
|
|
1596
1730
|
obj: DescribeDocumentClassificationJobRequest
|
|
1597
1731
|
) => any;
|
|
1598
|
-
export declare const DocumentReaderConfigFilterSensitiveLog: (
|
|
1599
|
-
obj: DocumentReaderConfig
|
|
1600
|
-
) => any;
|
|
1601
1732
|
export declare const InputDataConfigFilterSensitiveLog: (
|
|
1602
1733
|
obj: InputDataConfig
|
|
1603
1734
|
) => any;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListEndpointsCommandInput,
|
|
4
|
+
ListEndpointsCommandOutput,
|
|
5
|
+
} from "../commands/ListEndpointsCommand";
|
|
6
|
+
import { ComprehendPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListEndpoints(
|
|
8
|
+
config: ComprehendPaginationConfiguration,
|
|
9
|
+
input: ListEndpointsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListEndpointsCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListPiiEntitiesDetectionJobsCommandInput,
|
|
4
|
+
ListPiiEntitiesDetectionJobsCommandOutput,
|
|
5
|
+
} from "../commands/ListPiiEntitiesDetectionJobsCommand";
|
|
6
|
+
import { ComprehendPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListPiiEntitiesDetectionJobs(
|
|
8
|
+
config: ComprehendPaginationConfiguration,
|
|
9
|
+
input: ListPiiEntitiesDetectionJobsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListPiiEntitiesDetectionJobsCommandOutput>;
|
|
@@ -3,11 +3,13 @@ export * from "./ListDocumentClassificationJobsPaginator";
|
|
|
3
3
|
export * from "./ListDocumentClassifierSummariesPaginator";
|
|
4
4
|
export * from "./ListDocumentClassifiersPaginator";
|
|
5
5
|
export * from "./ListDominantLanguageDetectionJobsPaginator";
|
|
6
|
+
export * from "./ListEndpointsPaginator";
|
|
6
7
|
export * from "./ListEntitiesDetectionJobsPaginator";
|
|
7
8
|
export * from "./ListEntityRecognizerSummariesPaginator";
|
|
8
9
|
export * from "./ListEntityRecognizersPaginator";
|
|
9
10
|
export * from "./ListEventsDetectionJobsPaginator";
|
|
10
11
|
export * from "./ListKeyPhrasesDetectionJobsPaginator";
|
|
12
|
+
export * from "./ListPiiEntitiesDetectionJobsPaginator";
|
|
11
13
|
export * from "./ListSentimentDetectionJobsPaginator";
|
|
12
14
|
export * from "./ListTargetedSentimentDetectionJobsPaginator";
|
|
13
15
|
export * from "./ListTopicsDetectionJobsPaginator";
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-comprehend",
|
|
3
3
|
"description": "AWS SDK for JavaScript Comprehend Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.223.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -19,36 +19,36 @@
|
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
21
21
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
22
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
-
"@aws-sdk/config-resolver": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
26
|
-
"@aws-sdk/hash-node": "3.
|
|
27
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
28
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
29
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
30
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
31
|
-
"@aws-sdk/middleware-logger": "3.
|
|
32
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
33
|
-
"@aws-sdk/middleware-retry": "3.
|
|
34
|
-
"@aws-sdk/middleware-serde": "3.
|
|
35
|
-
"@aws-sdk/middleware-signing": "3.
|
|
36
|
-
"@aws-sdk/middleware-stack": "3.
|
|
37
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
38
|
-
"@aws-sdk/node-config-provider": "3.
|
|
39
|
-
"@aws-sdk/node-http-handler": "3.
|
|
40
|
-
"@aws-sdk/protocol-http": "3.
|
|
41
|
-
"@aws-sdk/smithy-client": "3.
|
|
42
|
-
"@aws-sdk/types": "3.
|
|
43
|
-
"@aws-sdk/url-parser": "3.
|
|
22
|
+
"@aws-sdk/client-sts": "3.223.0",
|
|
23
|
+
"@aws-sdk/config-resolver": "3.222.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.223.0",
|
|
25
|
+
"@aws-sdk/fetch-http-handler": "3.222.0",
|
|
26
|
+
"@aws-sdk/hash-node": "3.222.0",
|
|
27
|
+
"@aws-sdk/invalid-dependency": "3.222.0",
|
|
28
|
+
"@aws-sdk/middleware-content-length": "3.222.0",
|
|
29
|
+
"@aws-sdk/middleware-endpoint": "3.222.0",
|
|
30
|
+
"@aws-sdk/middleware-host-header": "3.222.0",
|
|
31
|
+
"@aws-sdk/middleware-logger": "3.222.0",
|
|
32
|
+
"@aws-sdk/middleware-recursion-detection": "3.222.0",
|
|
33
|
+
"@aws-sdk/middleware-retry": "3.222.0",
|
|
34
|
+
"@aws-sdk/middleware-serde": "3.222.0",
|
|
35
|
+
"@aws-sdk/middleware-signing": "3.222.0",
|
|
36
|
+
"@aws-sdk/middleware-stack": "3.222.0",
|
|
37
|
+
"@aws-sdk/middleware-user-agent": "3.222.0",
|
|
38
|
+
"@aws-sdk/node-config-provider": "3.222.0",
|
|
39
|
+
"@aws-sdk/node-http-handler": "3.222.0",
|
|
40
|
+
"@aws-sdk/protocol-http": "3.222.0",
|
|
41
|
+
"@aws-sdk/smithy-client": "3.222.0",
|
|
42
|
+
"@aws-sdk/types": "3.222.0",
|
|
43
|
+
"@aws-sdk/url-parser": "3.222.0",
|
|
44
44
|
"@aws-sdk/util-base64": "3.208.0",
|
|
45
45
|
"@aws-sdk/util-body-length-browser": "3.188.0",
|
|
46
46
|
"@aws-sdk/util-body-length-node": "3.208.0",
|
|
47
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
48
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
-
"@aws-sdk/util-endpoints": "3.
|
|
50
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
51
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
47
|
+
"@aws-sdk/util-defaults-mode-browser": "3.222.0",
|
|
48
|
+
"@aws-sdk/util-defaults-mode-node": "3.222.0",
|
|
49
|
+
"@aws-sdk/util-endpoints": "3.222.0",
|
|
50
|
+
"@aws-sdk/util-user-agent-browser": "3.222.0",
|
|
51
|
+
"@aws-sdk/util-user-agent-node": "3.222.0",
|
|
52
52
|
"@aws-sdk/util-utf8-browser": "3.188.0",
|
|
53
53
|
"@aws-sdk/util-utf8-node": "3.208.0",
|
|
54
54
|
"tslib": "^2.3.1",
|