@aws-sdk/client-wisdom 3.987.0 → 3.988.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/index.js +60 -1569
- package/dist-cjs/models/WisdomServiceException.js +12 -0
- package/dist-cjs/models/errors.js +113 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +1253 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +69 -63
- package/dist-types/schemas/schemas_0.d.ts +15 -8
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +10 -8
- package/package.json +13 -13
|
@@ -6,6 +6,7 @@ import { fromBase64, toBase64 } from "@smithy/util-base64";
|
|
|
6
6
|
import { fromUtf8, toUtf8 } from "@smithy/util-utf8";
|
|
7
7
|
import { defaultWisdomHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider";
|
|
8
8
|
import { defaultEndpointResolver } from "./endpoint/endpointResolver";
|
|
9
|
+
import { errorTypeRegistries } from "./schemas/schemas_0";
|
|
9
10
|
export const getRuntimeConfig = (config) => {
|
|
10
11
|
return {
|
|
11
12
|
apiVersion: "2020-10-19",
|
|
@@ -26,6 +27,7 @@ export const getRuntimeConfig = (config) => {
|
|
|
26
27
|
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
27
28
|
protocolSettings: config?.protocolSettings ?? {
|
|
28
29
|
defaultNamespace: "com.amazonaws.wisdom",
|
|
30
|
+
errorTypeRegistries,
|
|
29
31
|
version: "2020-10-19",
|
|
30
32
|
serviceTarget: "WisdomService",
|
|
31
33
|
},
|
|
@@ -310,7 +310,7 @@ const _rOLOU = "removeOverrideLinkOutUri";
|
|
|
310
310
|
const _rS = "relevanceScore";
|
|
311
311
|
const _rSK = "removeShortcutKey";
|
|
312
312
|
const _re = "results";
|
|
313
|
-
const _s = "
|
|
313
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.wisdom";
|
|
314
314
|
const _sA = "sessionArn";
|
|
315
315
|
const _sC = "sourceConfiguration";
|
|
316
316
|
const _sE = "searchExpression";
|
|
@@ -319,8 +319,8 @@ const _sK = "shortcutKey";
|
|
|
319
319
|
const _sS = "sessionSummaries";
|
|
320
320
|
const _sSEC = "serverSideEncryptionConfiguration";
|
|
321
321
|
const _se = "session";
|
|
322
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.wisdom";
|
|
323
322
|
const _so = "source";
|
|
323
|
+
const _st = "status";
|
|
324
324
|
const _t = "tags";
|
|
325
325
|
const _tIA = "topicIntegrationArn";
|
|
326
326
|
const _tK = "tagKeys";
|
|
@@ -339,6 +339,62 @@ const n0 = "com.amazonaws.wisdom";
|
|
|
339
339
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
340
340
|
import { AccessDeniedException, ConflictException, PreconditionFailedException, RequestTimeoutException, ResourceNotFoundException, ServiceQuotaExceededException, TooManyTagsException, ValidationException, } from "../models/errors";
|
|
341
341
|
import { WisdomServiceException } from "../models/WisdomServiceException";
|
|
342
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
343
|
+
export var WisdomServiceException$ = [-3, _s, "WisdomServiceException", 0, [], []];
|
|
344
|
+
_s_registry.registerError(WisdomServiceException$, WisdomServiceException);
|
|
345
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
346
|
+
export var AccessDeniedException$ = [-3, n0, _ADE,
|
|
347
|
+
{ [_e]: _c, [_hE]: 403 },
|
|
348
|
+
[_m],
|
|
349
|
+
[0]
|
|
350
|
+
];
|
|
351
|
+
n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
|
|
352
|
+
export var ConflictException$ = [-3, n0, _CE,
|
|
353
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
354
|
+
[_m],
|
|
355
|
+
[0]
|
|
356
|
+
];
|
|
357
|
+
n0_registry.registerError(ConflictException$, ConflictException);
|
|
358
|
+
export var PreconditionFailedException$ = [-3, n0, _PFE,
|
|
359
|
+
{ [_e]: _c, [_hE]: 412 },
|
|
360
|
+
[_m],
|
|
361
|
+
[0]
|
|
362
|
+
];
|
|
363
|
+
n0_registry.registerError(PreconditionFailedException$, PreconditionFailedException);
|
|
364
|
+
export var RequestTimeoutException$ = [-3, n0, _RTE,
|
|
365
|
+
{ [_e]: _c, [_hE]: 408 },
|
|
366
|
+
[_m],
|
|
367
|
+
[0]
|
|
368
|
+
];
|
|
369
|
+
n0_registry.registerError(RequestTimeoutException$, RequestTimeoutException);
|
|
370
|
+
export var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
371
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
372
|
+
[_m, _rN],
|
|
373
|
+
[0, 0]
|
|
374
|
+
];
|
|
375
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
376
|
+
export var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
377
|
+
{ [_e]: _c, [_hE]: 402 },
|
|
378
|
+
[_m],
|
|
379
|
+
[0]
|
|
380
|
+
];
|
|
381
|
+
n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
382
|
+
export var TooManyTagsException$ = [-3, n0, _TMTE,
|
|
383
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
384
|
+
[_m, _rN],
|
|
385
|
+
[0, 0]
|
|
386
|
+
];
|
|
387
|
+
n0_registry.registerError(TooManyTagsException$, TooManyTagsException);
|
|
388
|
+
export var ValidationException$ = [-3, n0, _VE,
|
|
389
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
390
|
+
[_m],
|
|
391
|
+
[0]
|
|
392
|
+
];
|
|
393
|
+
n0_registry.registerError(ValidationException$, ValidationException);
|
|
394
|
+
export const errorTypeRegistries = [
|
|
395
|
+
_s_registry,
|
|
396
|
+
n0_registry,
|
|
397
|
+
];
|
|
342
398
|
var Channel = [0, n0, _C, 8, 0];
|
|
343
399
|
var GroupingCriteria = [0, n0, _GC, 8, 0];
|
|
344
400
|
var GroupingValue = [0, n0, _GV, 8, 0];
|
|
@@ -346,12 +402,6 @@ var QueryText = [0, n0, _QT, 8, 0];
|
|
|
346
402
|
var QuickResponseContent = [0, n0, _QRC, 8, 0];
|
|
347
403
|
var SensitiveString = [0, n0, _SS, 8, 0];
|
|
348
404
|
var Url = [0, n0, _U, 8, 0];
|
|
349
|
-
export var AccessDeniedException$ = [-3, n0, _ADE,
|
|
350
|
-
{ [_e]: _c, [_hE]: 403 },
|
|
351
|
-
[_m],
|
|
352
|
-
[0]
|
|
353
|
-
];
|
|
354
|
-
TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
355
405
|
export var AppIntegrationsConfiguration$ = [3, n0, _AIC,
|
|
356
406
|
0,
|
|
357
407
|
[_aIA, _oF],
|
|
@@ -369,7 +419,7 @@ export var AssistantAssociationSummary$ = [3, n0, _AAS,
|
|
|
369
419
|
];
|
|
370
420
|
export var AssistantData$ = [3, n0, _AD,
|
|
371
421
|
0,
|
|
372
|
-
[_aI, _aA, _n, _ty,
|
|
422
|
+
[_aI, _aA, _n, _ty, _st, _d, _t, _sSEC, _iC],
|
|
373
423
|
[0, 0, 0, 0, 0, 0, 128 | 0, () => ServerSideEncryptionConfiguration$, () => AssistantIntegrationConfiguration$], 5
|
|
374
424
|
];
|
|
375
425
|
export var AssistantIntegrationConfiguration$ = [3, n0, _AICs,
|
|
@@ -379,15 +429,9 @@ export var AssistantIntegrationConfiguration$ = [3, n0, _AICs,
|
|
|
379
429
|
];
|
|
380
430
|
export var AssistantSummary$ = [3, n0, _AS,
|
|
381
431
|
0,
|
|
382
|
-
[_aI, _aA, _n, _ty,
|
|
432
|
+
[_aI, _aA, _n, _ty, _st, _d, _t, _sSEC, _iC],
|
|
383
433
|
[0, 0, 0, 0, 0, 0, 128 | 0, () => ServerSideEncryptionConfiguration$, () => AssistantIntegrationConfiguration$], 5
|
|
384
434
|
];
|
|
385
|
-
export var ConflictException$ = [-3, n0, _CE,
|
|
386
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
387
|
-
[_m],
|
|
388
|
-
[0]
|
|
389
|
-
];
|
|
390
|
-
TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
391
435
|
export var ConnectConfiguration$ = [3, n0, _CC,
|
|
392
436
|
0,
|
|
393
437
|
[_iI],
|
|
@@ -395,7 +439,7 @@ export var ConnectConfiguration$ = [3, n0, _CC,
|
|
|
395
439
|
];
|
|
396
440
|
export var ContentData$ = [3, n0, _CD,
|
|
397
441
|
0,
|
|
398
|
-
[_cA, _cI, _kBA, _kBI, _n, _rI, _ti, _cT,
|
|
442
|
+
[_cA, _cI, _kBA, _kBI, _n, _rI, _ti, _cT, _st, _me, _u, _uE, _t, _lOU],
|
|
399
443
|
[0, 0, 0, 0, 0, 0, 0, 0, 0, 128 | 0, [() => Url, 0], 7, 128 | 0, 0], 12
|
|
400
444
|
];
|
|
401
445
|
export var ContentReference$ = [3, n0, _CR,
|
|
@@ -405,7 +449,7 @@ export var ContentReference$ = [3, n0, _CR,
|
|
|
405
449
|
];
|
|
406
450
|
export var ContentSummary$ = [3, n0, _CS,
|
|
407
451
|
0,
|
|
408
|
-
[_cA, _cI, _kBA, _kBI, _n, _rI, _ti, _cT,
|
|
452
|
+
[_cA, _cI, _kBA, _kBI, _n, _rI, _ti, _cT, _st, _me, _t],
|
|
409
453
|
[0, 0, 0, 0, 0, 0, 0, 0, 0, 128 | 0, 128 | 0], 10
|
|
410
454
|
];
|
|
411
455
|
export var CreateAssistantAssociationRequest$ = [3, n0, _CAAR,
|
|
@@ -650,12 +694,12 @@ export var Highlight$ = [3, n0, _H,
|
|
|
650
694
|
];
|
|
651
695
|
export var ImportJobData$ = [3, n0, _IJD,
|
|
652
696
|
0,
|
|
653
|
-
[_iJI, _kBI, _uI, _kBA, _iJT,
|
|
697
|
+
[_iJI, _kBI, _uI, _kBA, _iJT, _st, _u, _uE, _cTr, _lMT, _fRR, _me, _eSC],
|
|
654
698
|
[0, 0, 0, 0, 0, 0, [() => Url, 0], 7, 7, 7, [() => Url, 0], 128 | 0, () => ExternalSourceConfiguration$], 10
|
|
655
699
|
];
|
|
656
700
|
export var ImportJobSummary$ = [3, n0, _IJS,
|
|
657
701
|
0,
|
|
658
|
-
[_iJI, _kBI, _uI, _kBA, _iJT,
|
|
702
|
+
[_iJI, _kBI, _uI, _kBA, _iJT, _st, _cTr, _lMT, _me, _eSC],
|
|
659
703
|
[0, 0, 0, 0, 0, 0, 7, 7, 128 | 0, () => ExternalSourceConfiguration$], 8
|
|
660
704
|
];
|
|
661
705
|
export var KnowledgeBaseAssociationData$ = [3, n0, _KBAD,
|
|
@@ -665,12 +709,12 @@ export var KnowledgeBaseAssociationData$ = [3, n0, _KBAD,
|
|
|
665
709
|
];
|
|
666
710
|
export var KnowledgeBaseData$ = [3, n0, _KBD,
|
|
667
711
|
0,
|
|
668
|
-
[_kBI, _kBA, _n, _kBT,
|
|
712
|
+
[_kBI, _kBA, _n, _kBT, _st, _lCMT, _sC, _rC, _sSEC, _d, _t],
|
|
669
713
|
[0, 0, 0, 0, 0, 7, () => SourceConfiguration$, () => RenderingConfiguration$, () => ServerSideEncryptionConfiguration$, 0, 128 | 0], 5
|
|
670
714
|
];
|
|
671
715
|
export var KnowledgeBaseSummary$ = [3, n0, _KBS,
|
|
672
716
|
0,
|
|
673
|
-
[_kBI, _kBA, _n, _kBT,
|
|
717
|
+
[_kBI, _kBA, _n, _kBT, _st, _sC, _rC, _sSEC, _d, _t],
|
|
674
718
|
[0, 0, 0, 0, 0, () => SourceConfiguration$, () => RenderingConfiguration$, () => ServerSideEncryptionConfiguration$, 0, 128 | 0], 5
|
|
675
719
|
];
|
|
676
720
|
export var ListAssistantAssociationsRequest$ = [3, n0, _LAAR,
|
|
@@ -758,12 +802,6 @@ export var NotifyRecommendationsReceivedResponse$ = [3, n0, _NRRRo,
|
|
|
758
802
|
[_rIec, _er],
|
|
759
803
|
[64 | 0, () => NotifyRecommendationsReceivedErrorList]
|
|
760
804
|
];
|
|
761
|
-
export var PreconditionFailedException$ = [-3, n0, _PFE,
|
|
762
|
-
{ [_e]: _c, [_hE]: 412 },
|
|
763
|
-
[_m],
|
|
764
|
-
[0]
|
|
765
|
-
];
|
|
766
|
-
TypeRegistry.for(n0).registerError(PreconditionFailedException$, PreconditionFailedException);
|
|
767
805
|
export var QueryAssistantRequest$ = [3, n0, _QAR,
|
|
768
806
|
0,
|
|
769
807
|
[_aI, _qT, _nT, _mR],
|
|
@@ -786,7 +824,7 @@ export var QuickResponseContents$ = [3, n0, _QRCu,
|
|
|
786
824
|
];
|
|
787
825
|
export var QuickResponseData$ = [3, n0, _QRD,
|
|
788
826
|
0,
|
|
789
|
-
[_qRA, _qRI, _kBA, _kBI, _n, _cT,
|
|
827
|
+
[_qRA, _qRI, _kBA, _kBI, _n, _cT, _st, _cTr, _lMT, _cont, _d, _gC, _sK, _lMB, _iA, _ch, _l, _t],
|
|
790
828
|
[0, 0, 0, 0, 0, 0, 0, 7, 7, [() => QuickResponseContents$, 0], 0, [() => GroupingConfiguration$, 0], 0, 0, 2, [() => Channels, 0], 0, 128 | 0], 9
|
|
791
829
|
];
|
|
792
830
|
export var QuickResponseFilterField$ = [3, n0, _QRFF,
|
|
@@ -811,12 +849,12 @@ export var QuickResponseSearchExpression$ = [3, n0, _QRSE,
|
|
|
811
849
|
];
|
|
812
850
|
export var QuickResponseSearchResultData$ = [3, n0, _QRSRD,
|
|
813
851
|
0,
|
|
814
|
-
[_qRA, _qRI, _kBA, _kBI, _n, _cT,
|
|
852
|
+
[_qRA, _qRI, _kBA, _kBI, _n, _cT, _st, _cont, _cTr, _lMT, _iA, _d, _gC, _sK, _lMB, _ch, _l, _aNI, _aIt, _t],
|
|
815
853
|
[0, 0, 0, 0, 0, 0, 0, [() => QuickResponseContents$, 0], 7, 7, 2, 0, [() => GroupingConfiguration$, 0], 0, 0, [() => Channels, 0], 0, [() => ContactAttributeKeys, 0], [() => ContactAttributeKeys, 0], 128 | 0], 11
|
|
816
854
|
];
|
|
817
855
|
export var QuickResponseSummary$ = [3, n0, _QRS,
|
|
818
856
|
0,
|
|
819
|
-
[_qRA, _qRI, _kBA, _kBI, _n, _cT,
|
|
857
|
+
[_qRA, _qRI, _kBA, _kBI, _n, _cT, _st, _cTr, _lMT, _d, _lMB, _iA, _ch, _t],
|
|
820
858
|
[0, 0, 0, 0, 0, 0, 0, 7, 7, 0, 0, 2, [() => Channels, 0], 128 | 0], 9
|
|
821
859
|
];
|
|
822
860
|
export var RecommendationData$ = [3, n0, _RD,
|
|
@@ -844,18 +882,6 @@ export var RenderingConfiguration$ = [3, n0, _RC,
|
|
|
844
882
|
[_tU],
|
|
845
883
|
[0]
|
|
846
884
|
];
|
|
847
|
-
export var RequestTimeoutException$ = [-3, n0, _RTE,
|
|
848
|
-
{ [_e]: _c, [_hE]: 408 },
|
|
849
|
-
[_m],
|
|
850
|
-
[0]
|
|
851
|
-
];
|
|
852
|
-
TypeRegistry.for(n0).registerError(RequestTimeoutException$, RequestTimeoutException);
|
|
853
|
-
export var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
854
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
855
|
-
[_m, _rN],
|
|
856
|
-
[0, 0]
|
|
857
|
-
];
|
|
858
|
-
TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
859
885
|
export var ResultData$ = [3, n0, _RDe,
|
|
860
886
|
0,
|
|
861
887
|
[_rIes, _do, _rS],
|
|
@@ -901,12 +927,6 @@ export var ServerSideEncryptionConfiguration$ = [3, n0, _SSEC,
|
|
|
901
927
|
[_kKI],
|
|
902
928
|
[0]
|
|
903
929
|
];
|
|
904
|
-
export var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
905
|
-
{ [_e]: _c, [_hE]: 402 },
|
|
906
|
-
[_m],
|
|
907
|
-
[0]
|
|
908
|
-
];
|
|
909
|
-
TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
910
930
|
export var SessionData$ = [3, n0, _SD,
|
|
911
931
|
0,
|
|
912
932
|
[_sA, _sI, _n, _d, _t, _iC],
|
|
@@ -952,12 +972,6 @@ export var TagResourceResponse$ = [3, n0, _TRRa,
|
|
|
952
972
|
[],
|
|
953
973
|
[]
|
|
954
974
|
];
|
|
955
|
-
export var TooManyTagsException$ = [-3, n0, _TMTE,
|
|
956
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
957
|
-
[_m, _rN],
|
|
958
|
-
[0, 0]
|
|
959
|
-
];
|
|
960
|
-
TypeRegistry.for(n0).registerError(TooManyTagsException$, TooManyTagsException);
|
|
961
975
|
export var UntagResourceRequest$ = [3, n0, _URR,
|
|
962
976
|
0,
|
|
963
977
|
[_rA, _tK],
|
|
@@ -998,14 +1012,6 @@ export var UpdateQuickResponseResponse$ = [3, n0, _UQRRp,
|
|
|
998
1012
|
[_qR],
|
|
999
1013
|
[[() => QuickResponseData$, 0]]
|
|
1000
1014
|
];
|
|
1001
|
-
export var ValidationException$ = [-3, n0, _VE,
|
|
1002
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1003
|
-
[_m],
|
|
1004
|
-
[0]
|
|
1005
|
-
];
|
|
1006
|
-
TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
1007
|
-
export var WisdomServiceException$ = [-3, _sm, "WisdomServiceException", 0, [], []];
|
|
1008
|
-
TypeRegistry.for(_sm).registerError(WisdomServiceException$, WisdomServiceException);
|
|
1009
1015
|
var AssistantAssociationSummaryList = [1, n0, _AASL,
|
|
1010
1016
|
0, () => AssistantAssociationSummary$
|
|
1011
1017
|
];
|
|
@@ -1,12 +1,26 @@
|
|
|
1
|
+
import { TypeRegistry } from "@smithy/core/schema";
|
|
1
2
|
import type { StaticErrorSchema, StaticOperationSchema, StaticStructureSchema, StaticUnionSchema } from "@smithy/types";
|
|
3
|
+
export declare var WisdomServiceException$: StaticErrorSchema;
|
|
2
4
|
export declare var AccessDeniedException$: StaticErrorSchema;
|
|
5
|
+
export declare var ConflictException$: StaticErrorSchema;
|
|
6
|
+
export declare var PreconditionFailedException$: StaticErrorSchema;
|
|
7
|
+
export declare var RequestTimeoutException$: StaticErrorSchema;
|
|
8
|
+
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
9
|
+
export declare var ServiceQuotaExceededException$: StaticErrorSchema;
|
|
10
|
+
export declare var TooManyTagsException$: StaticErrorSchema;
|
|
11
|
+
export declare var ValidationException$: StaticErrorSchema;
|
|
12
|
+
/**
|
|
13
|
+
* TypeRegistry instances containing modeled errors.
|
|
14
|
+
* @internal
|
|
15
|
+
*
|
|
16
|
+
*/
|
|
17
|
+
export declare const errorTypeRegistries: TypeRegistry[];
|
|
3
18
|
export declare var AppIntegrationsConfiguration$: StaticStructureSchema;
|
|
4
19
|
export declare var AssistantAssociationData$: StaticStructureSchema;
|
|
5
20
|
export declare var AssistantAssociationSummary$: StaticStructureSchema;
|
|
6
21
|
export declare var AssistantData$: StaticStructureSchema;
|
|
7
22
|
export declare var AssistantIntegrationConfiguration$: StaticStructureSchema;
|
|
8
23
|
export declare var AssistantSummary$: StaticStructureSchema;
|
|
9
|
-
export declare var ConflictException$: StaticErrorSchema;
|
|
10
24
|
export declare var ConnectConfiguration$: StaticStructureSchema;
|
|
11
25
|
export declare var ContentData$: StaticStructureSchema;
|
|
12
26
|
export declare var ContentReference$: StaticStructureSchema;
|
|
@@ -81,7 +95,6 @@ export declare var ListTagsForResourceResponse$: StaticStructureSchema;
|
|
|
81
95
|
export declare var NotifyRecommendationsReceivedError$: StaticStructureSchema;
|
|
82
96
|
export declare var NotifyRecommendationsReceivedRequest$: StaticStructureSchema;
|
|
83
97
|
export declare var NotifyRecommendationsReceivedResponse$: StaticStructureSchema;
|
|
84
|
-
export declare var PreconditionFailedException$: StaticErrorSchema;
|
|
85
98
|
export declare var QueryAssistantRequest$: StaticStructureSchema;
|
|
86
99
|
export declare var QueryAssistantResponse$: StaticStructureSchema;
|
|
87
100
|
export declare var QueryRecommendationTriggerData$: StaticStructureSchema;
|
|
@@ -98,8 +111,6 @@ export declare var RecommendationTrigger$: StaticStructureSchema;
|
|
|
98
111
|
export declare var RemoveKnowledgeBaseTemplateUriRequest$: StaticStructureSchema;
|
|
99
112
|
export declare var RemoveKnowledgeBaseTemplateUriResponse$: StaticStructureSchema;
|
|
100
113
|
export declare var RenderingConfiguration$: StaticStructureSchema;
|
|
101
|
-
export declare var RequestTimeoutException$: StaticErrorSchema;
|
|
102
|
-
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
103
114
|
export declare var ResultData$: StaticStructureSchema;
|
|
104
115
|
export declare var SearchContentRequest$: StaticStructureSchema;
|
|
105
116
|
export declare var SearchContentResponse$: StaticStructureSchema;
|
|
@@ -109,7 +120,6 @@ export declare var SearchQuickResponsesResponse$: StaticStructureSchema;
|
|
|
109
120
|
export declare var SearchSessionsRequest$: StaticStructureSchema;
|
|
110
121
|
export declare var SearchSessionsResponse$: StaticStructureSchema;
|
|
111
122
|
export declare var ServerSideEncryptionConfiguration$: StaticStructureSchema;
|
|
112
|
-
export declare var ServiceQuotaExceededException$: StaticErrorSchema;
|
|
113
123
|
export declare var SessionData$: StaticStructureSchema;
|
|
114
124
|
export declare var SessionIntegrationConfiguration$: StaticStructureSchema;
|
|
115
125
|
export declare var SessionSummary$: StaticStructureSchema;
|
|
@@ -119,7 +129,6 @@ export declare var StartImportJobRequest$: StaticStructureSchema;
|
|
|
119
129
|
export declare var StartImportJobResponse$: StaticStructureSchema;
|
|
120
130
|
export declare var TagResourceRequest$: StaticStructureSchema;
|
|
121
131
|
export declare var TagResourceResponse$: StaticStructureSchema;
|
|
122
|
-
export declare var TooManyTagsException$: StaticErrorSchema;
|
|
123
132
|
export declare var UntagResourceRequest$: StaticStructureSchema;
|
|
124
133
|
export declare var UntagResourceResponse$: StaticStructureSchema;
|
|
125
134
|
export declare var UpdateContentRequest$: StaticStructureSchema;
|
|
@@ -128,8 +137,6 @@ export declare var UpdateKnowledgeBaseTemplateUriRequest$: StaticStructureSchema
|
|
|
128
137
|
export declare var UpdateKnowledgeBaseTemplateUriResponse$: StaticStructureSchema;
|
|
129
138
|
export declare var UpdateQuickResponseRequest$: StaticStructureSchema;
|
|
130
139
|
export declare var UpdateQuickResponseResponse$: StaticStructureSchema;
|
|
131
|
-
export declare var ValidationException$: StaticErrorSchema;
|
|
132
|
-
export declare var WisdomServiceException$: StaticErrorSchema;
|
|
133
140
|
export declare var AssistantAssociationInputData$: StaticUnionSchema;
|
|
134
141
|
export declare var AssistantAssociationOutputData$: StaticUnionSchema;
|
|
135
142
|
export declare var Configuration$: StaticUnionSchema;
|
|
@@ -1,17 +1,26 @@
|
|
|
1
|
+
import { TypeRegistry } from "@smithy/core/schema";
|
|
1
2
|
import {
|
|
2
3
|
StaticErrorSchema,
|
|
3
4
|
StaticOperationSchema,
|
|
4
5
|
StaticStructureSchema,
|
|
5
6
|
StaticUnionSchema,
|
|
6
7
|
} from "@smithy/types";
|
|
8
|
+
export declare var WisdomServiceException$: StaticErrorSchema;
|
|
7
9
|
export declare var AccessDeniedException$: StaticErrorSchema;
|
|
10
|
+
export declare var ConflictException$: StaticErrorSchema;
|
|
11
|
+
export declare var PreconditionFailedException$: StaticErrorSchema;
|
|
12
|
+
export declare var RequestTimeoutException$: StaticErrorSchema;
|
|
13
|
+
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
14
|
+
export declare var ServiceQuotaExceededException$: StaticErrorSchema;
|
|
15
|
+
export declare var TooManyTagsException$: StaticErrorSchema;
|
|
16
|
+
export declare var ValidationException$: StaticErrorSchema;
|
|
17
|
+
export declare const errorTypeRegistries: TypeRegistry[];
|
|
8
18
|
export declare var AppIntegrationsConfiguration$: StaticStructureSchema;
|
|
9
19
|
export declare var AssistantAssociationData$: StaticStructureSchema;
|
|
10
20
|
export declare var AssistantAssociationSummary$: StaticStructureSchema;
|
|
11
21
|
export declare var AssistantData$: StaticStructureSchema;
|
|
12
22
|
export declare var AssistantIntegrationConfiguration$: StaticStructureSchema;
|
|
13
23
|
export declare var AssistantSummary$: StaticStructureSchema;
|
|
14
|
-
export declare var ConflictException$: StaticErrorSchema;
|
|
15
24
|
export declare var ConnectConfiguration$: StaticStructureSchema;
|
|
16
25
|
export declare var ContentData$: StaticStructureSchema;
|
|
17
26
|
export declare var ContentReference$: StaticStructureSchema;
|
|
@@ -86,7 +95,6 @@ export declare var ListTagsForResourceResponse$: StaticStructureSchema;
|
|
|
86
95
|
export declare var NotifyRecommendationsReceivedError$: StaticStructureSchema;
|
|
87
96
|
export declare var NotifyRecommendationsReceivedRequest$: StaticStructureSchema;
|
|
88
97
|
export declare var NotifyRecommendationsReceivedResponse$: StaticStructureSchema;
|
|
89
|
-
export declare var PreconditionFailedException$: StaticErrorSchema;
|
|
90
98
|
export declare var QueryAssistantRequest$: StaticStructureSchema;
|
|
91
99
|
export declare var QueryAssistantResponse$: StaticStructureSchema;
|
|
92
100
|
export declare var QueryRecommendationTriggerData$: StaticStructureSchema;
|
|
@@ -103,8 +111,6 @@ export declare var RecommendationTrigger$: StaticStructureSchema;
|
|
|
103
111
|
export declare var RemoveKnowledgeBaseTemplateUriRequest$: StaticStructureSchema;
|
|
104
112
|
export declare var RemoveKnowledgeBaseTemplateUriResponse$: StaticStructureSchema;
|
|
105
113
|
export declare var RenderingConfiguration$: StaticStructureSchema;
|
|
106
|
-
export declare var RequestTimeoutException$: StaticErrorSchema;
|
|
107
|
-
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
108
114
|
export declare var ResultData$: StaticStructureSchema;
|
|
109
115
|
export declare var SearchContentRequest$: StaticStructureSchema;
|
|
110
116
|
export declare var SearchContentResponse$: StaticStructureSchema;
|
|
@@ -114,7 +120,6 @@ export declare var SearchQuickResponsesResponse$: StaticStructureSchema;
|
|
|
114
120
|
export declare var SearchSessionsRequest$: StaticStructureSchema;
|
|
115
121
|
export declare var SearchSessionsResponse$: StaticStructureSchema;
|
|
116
122
|
export declare var ServerSideEncryptionConfiguration$: StaticStructureSchema;
|
|
117
|
-
export declare var ServiceQuotaExceededException$: StaticErrorSchema;
|
|
118
123
|
export declare var SessionData$: StaticStructureSchema;
|
|
119
124
|
export declare var SessionIntegrationConfiguration$: StaticStructureSchema;
|
|
120
125
|
export declare var SessionSummary$: StaticStructureSchema;
|
|
@@ -124,7 +129,6 @@ export declare var StartImportJobRequest$: StaticStructureSchema;
|
|
|
124
129
|
export declare var StartImportJobResponse$: StaticStructureSchema;
|
|
125
130
|
export declare var TagResourceRequest$: StaticStructureSchema;
|
|
126
131
|
export declare var TagResourceResponse$: StaticStructureSchema;
|
|
127
|
-
export declare var TooManyTagsException$: StaticErrorSchema;
|
|
128
132
|
export declare var UntagResourceRequest$: StaticStructureSchema;
|
|
129
133
|
export declare var UntagResourceResponse$: StaticStructureSchema;
|
|
130
134
|
export declare var UpdateContentRequest$: StaticStructureSchema;
|
|
@@ -133,8 +137,6 @@ export declare var UpdateKnowledgeBaseTemplateUriRequest$: StaticStructureSchema
|
|
|
133
137
|
export declare var UpdateKnowledgeBaseTemplateUriResponse$: StaticStructureSchema;
|
|
134
138
|
export declare var UpdateQuickResponseRequest$: StaticStructureSchema;
|
|
135
139
|
export declare var UpdateQuickResponseResponse$: StaticStructureSchema;
|
|
136
|
-
export declare var ValidationException$: StaticErrorSchema;
|
|
137
|
-
export declare var WisdomServiceException$: StaticErrorSchema;
|
|
138
140
|
export declare var AssistantAssociationInputData$: StaticUnionSchema;
|
|
139
141
|
export declare var AssistantAssociationOutputData$: StaticUnionSchema;
|
|
140
142
|
export declare var Configuration$: StaticUnionSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-wisdom",
|
|
3
3
|
"description": "AWS SDK for JavaScript Wisdom Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.988.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-wisdom",
|
|
@@ -21,38 +21,38 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.973.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
24
|
+
"@aws-sdk/core": "^3.973.8",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.7",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "^3.972.3",
|
|
27
27
|
"@aws-sdk/middleware-logger": "^3.972.3",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "^3.972.3",
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.8",
|
|
30
30
|
"@aws-sdk/region-config-resolver": "^3.972.3",
|
|
31
31
|
"@aws-sdk/types": "^3.973.1",
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.988.0",
|
|
33
33
|
"@aws-sdk/util-user-agent-browser": "^3.972.3",
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.972.
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.972.6",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.6",
|
|
36
|
-
"@smithy/core": "^3.
|
|
36
|
+
"@smithy/core": "^3.23.0",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.9",
|
|
38
38
|
"@smithy/hash-node": "^4.2.8",
|
|
39
39
|
"@smithy/invalid-dependency": "^4.2.8",
|
|
40
40
|
"@smithy/middleware-content-length": "^4.2.8",
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
42
|
-
"@smithy/middleware-retry": "^4.4.
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.4.14",
|
|
42
|
+
"@smithy/middleware-retry": "^4.4.31",
|
|
43
43
|
"@smithy/middleware-serde": "^4.2.9",
|
|
44
44
|
"@smithy/middleware-stack": "^4.2.8",
|
|
45
45
|
"@smithy/node-config-provider": "^4.3.8",
|
|
46
|
-
"@smithy/node-http-handler": "^4.4.
|
|
46
|
+
"@smithy/node-http-handler": "^4.4.10",
|
|
47
47
|
"@smithy/protocol-http": "^5.3.8",
|
|
48
|
-
"@smithy/smithy-client": "^4.11.
|
|
48
|
+
"@smithy/smithy-client": "^4.11.3",
|
|
49
49
|
"@smithy/types": "^4.12.0",
|
|
50
50
|
"@smithy/url-parser": "^4.2.8",
|
|
51
51
|
"@smithy/util-base64": "^4.3.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.30",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.33",
|
|
56
56
|
"@smithy/util-endpoints": "^3.2.8",
|
|
57
57
|
"@smithy/util-middleware": "^4.2.8",
|
|
58
58
|
"@smithy/util-retry": "^4.2.8",
|