@aws-sdk/client-elementalinference 3.1106.0 → 3.1108.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/README.md +7 -0
- package/dist-cjs/index.js +136 -3
- package/dist-es/ElementalInference.js +4 -0
- package/dist-es/commands/SearchFixturesCommand.js +4 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/index.js +1 -1
- package/dist-es/models/enums.js +7 -0
- package/dist-es/models/errors.js +26 -0
- package/dist-es/pagination/SearchFixturesPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/schemas/schemas_0.js +82 -3
- package/dist-types/ElementalInference.d.ts +14 -0
- package/dist-types/ElementalInferenceClient.d.ts +3 -2
- package/dist-types/commands/AssociateFeedCommand.d.ts +3 -0
- package/dist-types/commands/CreateFeedCommand.d.ts +6 -0
- package/dist-types/commands/GetFeedCommand.d.ts +3 -0
- package/dist-types/commands/SearchFixturesCommand.d.ts +116 -0
- package/dist-types/commands/UpdateFeedCommand.d.ts +6 -0
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/index.d.ts +1 -1
- package/dist-types/models/enums.d.ts +23 -0
- package/dist-types/models/errors.d.ts +26 -0
- package/dist-types/models/models_0.d.ts +135 -1
- package/dist-types/pagination/SearchFixturesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +9 -0
- package/dist-types/ts3.4/ElementalInference.d.ts +24 -0
- package/dist-types/ts3.4/ElementalInferenceClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/SearchFixturesCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/index.d.ts +1 -1
- package/dist-types/ts3.4/models/enums.d.ts +9 -0
- package/dist-types/ts3.4/models/errors.d.ts +12 -0
- package/dist-types/ts3.4/models/models_0.d.ts +34 -0
- package/dist-types/ts3.4/pagination/SearchFixturesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +9 -0
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -265,6 +265,13 @@ ListTagsForResource
|
|
|
265
265
|
</details>
|
|
266
266
|
<details>
|
|
267
267
|
<summary>
|
|
268
|
+
SearchFixtures
|
|
269
|
+
</summary>
|
|
270
|
+
|
|
271
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/elementalinference/command/SearchFixturesCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-elementalinference/Interface/SearchFixturesCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-elementalinference/Interface/SearchFixturesCommandOutput/)
|
|
272
|
+
</details>
|
|
273
|
+
<details>
|
|
274
|
+
<summary>
|
|
268
275
|
TagResource
|
|
269
276
|
</summary>
|
|
270
277
|
|
package/dist-cjs/index.js
CHANGED
|
@@ -69,7 +69,7 @@ const commonParams = {
|
|
|
69
69
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
70
70
|
};
|
|
71
71
|
|
|
72
|
-
var version = "3.
|
|
72
|
+
var version = "3.1107.0";
|
|
73
73
|
var packageInfo = {
|
|
74
74
|
version: version};
|
|
75
75
|
|
|
@@ -225,12 +225,39 @@ class ValidationException extends ElementalInferenceServiceException {
|
|
|
225
225
|
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
226
226
|
}
|
|
227
227
|
}
|
|
228
|
+
class GatewayTimedOutException extends ElementalInferenceServiceException {
|
|
229
|
+
name = "GatewayTimedOutException";
|
|
230
|
+
$fault = "server";
|
|
231
|
+
$retryable = {};
|
|
232
|
+
constructor(opts) {
|
|
233
|
+
super({
|
|
234
|
+
name: "GatewayTimedOutException",
|
|
235
|
+
$fault: "server",
|
|
236
|
+
...opts,
|
|
237
|
+
});
|
|
238
|
+
Object.setPrototypeOf(this, GatewayTimedOutException.prototype);
|
|
239
|
+
}
|
|
240
|
+
}
|
|
241
|
+
class ServiceUnavailableException extends ElementalInferenceServiceException {
|
|
242
|
+
name = "ServiceUnavailableException";
|
|
243
|
+
$fault = "server";
|
|
244
|
+
$retryable = {};
|
|
245
|
+
constructor(opts) {
|
|
246
|
+
super({
|
|
247
|
+
name: "ServiceUnavailableException",
|
|
248
|
+
$fault: "server",
|
|
249
|
+
...opts,
|
|
250
|
+
});
|
|
251
|
+
Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
|
|
252
|
+
}
|
|
253
|
+
}
|
|
228
254
|
|
|
229
255
|
const _ADE = "AccessDeniedException";
|
|
230
256
|
const _AF = "AssociateFeed";
|
|
231
257
|
const _AFR = "AssociateFeedRequest";
|
|
232
258
|
const _AFRs = "AssociateFeedResponse";
|
|
233
259
|
const _AR = "AspectRatio";
|
|
260
|
+
const _C = "Competitor";
|
|
234
261
|
const _CC = "ClippingConfig";
|
|
235
262
|
const _CCr = "CroppingConfig";
|
|
236
263
|
const _CD = "CreateDictionary";
|
|
@@ -240,6 +267,7 @@ const _CE = "ConflictException";
|
|
|
240
267
|
const _CF = "CreateFeed";
|
|
241
268
|
const _CFR = "CreateFeedRequest";
|
|
242
269
|
const _CFRr = "CreateFeedResponse";
|
|
270
|
+
const _CL = "CompetitorList";
|
|
243
271
|
const _CO = "CreateOutput";
|
|
244
272
|
const _COL = "CreateOutputList";
|
|
245
273
|
const _DD = "DeleteDictionary";
|
|
@@ -252,6 +280,7 @@ const _DFRi = "DisassociateFeedRequest";
|
|
|
252
280
|
const _DFRis = "DisassociateFeedResponse";
|
|
253
281
|
const _DFi = "DisassociateFeed";
|
|
254
282
|
const _DS = "DictionarySummary";
|
|
283
|
+
const _DSC = "DataSourceConfiguration";
|
|
255
284
|
const _DSL = "DictionarySummaryList";
|
|
256
285
|
const _EDE = "ExportDictionaryEntries";
|
|
257
286
|
const _EDER = "ExportDictionaryEntriesRequest";
|
|
@@ -259,6 +288,8 @@ const _EDERx = "ExportDictionaryEntriesResponse";
|
|
|
259
288
|
const _FA = "FeedAssociation";
|
|
260
289
|
const _FS = "FeedSummary";
|
|
261
290
|
const _FSL = "FeedSummaryList";
|
|
291
|
+
const _FSLi = "FixtureSummaryList";
|
|
292
|
+
const _FSi = "FixtureSummary";
|
|
262
293
|
const _GD = "GetDictionary";
|
|
263
294
|
const _GDR = "GetDictionaryRequest";
|
|
264
295
|
const _GDRe = "GetDictionaryResponse";
|
|
@@ -267,6 +298,7 @@ const _GFR = "GetFeedRequest";
|
|
|
267
298
|
const _GFRe = "GetFeedResponse";
|
|
268
299
|
const _GO = "GetOutput";
|
|
269
300
|
const _GOL = "GetOutputList";
|
|
301
|
+
const _GTOE = "GatewayTimedOutException";
|
|
270
302
|
const _ISEE = "InternalServerErrorException";
|
|
271
303
|
const _LD = "ListDictionaries";
|
|
272
304
|
const _LDR = "ListDictionariesRequest";
|
|
@@ -280,7 +312,13 @@ const _LTFRRi = "ListTagsForResourceResponse";
|
|
|
280
312
|
const _OC = "OutputConfig";
|
|
281
313
|
const _RNFE = "ResourceNotFoundException";
|
|
282
314
|
const _SC = "SubtitlingConfig";
|
|
315
|
+
const _SF = "SearchFilter";
|
|
316
|
+
const _SFL = "SearchFilterList";
|
|
317
|
+
const _SFR = "SearchFixturesRequest";
|
|
318
|
+
const _SFRe = "SearchFixturesResponse";
|
|
319
|
+
const _SFe = "SearchFixtures";
|
|
283
320
|
const _SQEE = "ServiceQuotaExceededException";
|
|
321
|
+
const _SUE = "ServiceUnavailableException";
|
|
284
322
|
const _TG = "TemplateGroup";
|
|
285
323
|
const _TGL = "TemplateGroupList";
|
|
286
324
|
const _TMRE = "TooManyRequestException";
|
|
@@ -305,21 +343,29 @@ const _as = "association";
|
|
|
305
343
|
const _c = "client";
|
|
306
344
|
const _cM = "callbackMetadata";
|
|
307
345
|
const _cl = "clipping";
|
|
346
|
+
const _co = "competitors";
|
|
308
347
|
const _cr = "cropping";
|
|
309
348
|
const _d = "description";
|
|
310
349
|
const _dE = "dataEndpoints";
|
|
311
350
|
const _dR = "dryRun";
|
|
351
|
+
const _dSC = "dataSourceConfiguration";
|
|
312
352
|
const _di = "dictionaries";
|
|
313
353
|
const _dic = "dictionary";
|
|
314
354
|
const _e = "error";
|
|
355
|
+
const _eD = "endDate";
|
|
315
356
|
const _en = "entries";
|
|
316
357
|
const _f = "feeds";
|
|
317
358
|
const _fA = "fromAssociation";
|
|
359
|
+
const _fG = "fixtureGroup";
|
|
360
|
+
const _fI = "fixtureId";
|
|
361
|
+
const _fi = "filters";
|
|
362
|
+
const _fix = "fixtures";
|
|
318
363
|
const _h = "height";
|
|
319
364
|
const _hE = "httpError";
|
|
320
365
|
const _hQ = "httpQuery";
|
|
321
366
|
const _ht = "http";
|
|
322
367
|
const _i = "id";
|
|
368
|
+
const _iH = "isHome";
|
|
323
369
|
const _l = "language";
|
|
324
370
|
const _m = "message";
|
|
325
371
|
const _mR = "maxResults";
|
|
@@ -331,13 +377,17 @@ const _pF = "profanityFilter";
|
|
|
331
377
|
const _r = "references";
|
|
332
378
|
const _rA = "resourceArn";
|
|
333
379
|
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.elementalinference";
|
|
380
|
+
const _sD = "startDate";
|
|
381
|
+
const _sS = "scheduledStart";
|
|
334
382
|
const _se = "server";
|
|
383
|
+
const _sp = "sport";
|
|
335
384
|
const _st = "status";
|
|
336
385
|
const _su = "subtitling";
|
|
337
386
|
const _t = "tags";
|
|
338
387
|
const _tG = "templateGroups";
|
|
339
388
|
const _tK = "tagKeys";
|
|
340
389
|
const _tU = "templateUris";
|
|
390
|
+
const _v = "values";
|
|
341
391
|
const _w = "width";
|
|
342
392
|
const n0 = "com.amazonaws.elementalinference";
|
|
343
393
|
const _s_registry = TypeRegistry.for(_s);
|
|
@@ -356,6 +406,12 @@ var ConflictException$ = [-3, n0, _CE,
|
|
|
356
406
|
[0], 1
|
|
357
407
|
];
|
|
358
408
|
n0_registry.registerError(ConflictException$, ConflictException);
|
|
409
|
+
var GatewayTimedOutException$ = [-3, n0, _GTOE,
|
|
410
|
+
{ [_e]: _se, [_hE]: 504 },
|
|
411
|
+
[_m],
|
|
412
|
+
[0], 1
|
|
413
|
+
];
|
|
414
|
+
n0_registry.registerError(GatewayTimedOutException$, GatewayTimedOutException);
|
|
359
415
|
var InternalServerErrorException$ = [-3, n0, _ISEE,
|
|
360
416
|
{ [_e]: _se, [_hE]: 500 },
|
|
361
417
|
[_m],
|
|
@@ -374,6 +430,12 @@ var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
|
374
430
|
[0], 1
|
|
375
431
|
];
|
|
376
432
|
n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
433
|
+
var ServiceUnavailableException$ = [-3, n0, _SUE,
|
|
434
|
+
{ [_e]: _se, [_hE]: 503 },
|
|
435
|
+
[_m],
|
|
436
|
+
[0], 1
|
|
437
|
+
];
|
|
438
|
+
n0_registry.registerError(ServiceUnavailableException$, ServiceUnavailableException);
|
|
377
439
|
var TooManyRequestException$ = [-3, n0, _TMRE,
|
|
378
440
|
{ [_e]: _c, [_hE]: 429 },
|
|
379
441
|
[_m],
|
|
@@ -407,8 +469,13 @@ var AssociateFeedResponse$ = [3, n0, _AFRs,
|
|
|
407
469
|
];
|
|
408
470
|
var ClippingConfig$ = [3, n0, _CC,
|
|
409
471
|
0,
|
|
410
|
-
[_cM],
|
|
411
|
-
[0]
|
|
472
|
+
[_cM, _dSC],
|
|
473
|
+
[0, () => DataSourceConfiguration$]
|
|
474
|
+
];
|
|
475
|
+
var Competitor$ = [3, n0, _C,
|
|
476
|
+
0,
|
|
477
|
+
[_n, _iH],
|
|
478
|
+
[0, 2]
|
|
412
479
|
];
|
|
413
480
|
var CreateDictionaryRequest$ = [3, n0, _CDR,
|
|
414
481
|
0,
|
|
@@ -440,6 +507,11 @@ var CroppingConfig$ = [3, n0, _CCr,
|
|
|
440
507
|
[_tG],
|
|
441
508
|
[() => TemplateGroupList]
|
|
442
509
|
];
|
|
510
|
+
var DataSourceConfiguration$ = [3, n0, _DSC,
|
|
511
|
+
0,
|
|
512
|
+
[_fI],
|
|
513
|
+
[0], 1
|
|
514
|
+
];
|
|
443
515
|
var DeleteDictionaryRequest$ = [3, n0, _DDR,
|
|
444
516
|
0,
|
|
445
517
|
[_i],
|
|
@@ -495,6 +567,11 @@ var FeedSummary$ = [3, n0, _FS,
|
|
|
495
567
|
[_a, _i, _n, _st, _as],
|
|
496
568
|
[0, 0, 0, 0, () => FeedAssociation$], 4
|
|
497
569
|
];
|
|
570
|
+
var FixtureSummary$ = [3, n0, _FSi,
|
|
571
|
+
0,
|
|
572
|
+
[_fI, _n, _st, _co, _fG, _sS],
|
|
573
|
+
[0, 0, 0, () => CompetitorList, 0, 5], 4
|
|
574
|
+
];
|
|
498
575
|
var GetDictionaryRequest$ = [3, n0, _GDR,
|
|
499
576
|
0,
|
|
500
577
|
[_i],
|
|
@@ -550,6 +627,21 @@ var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
|
550
627
|
[_t],
|
|
551
628
|
[128 | 0]
|
|
552
629
|
];
|
|
630
|
+
var SearchFilter$ = [3, n0, _SF,
|
|
631
|
+
0,
|
|
632
|
+
[_n, _v],
|
|
633
|
+
[0, 64 | 0], 2
|
|
634
|
+
];
|
|
635
|
+
var SearchFixturesRequest$ = [3, n0, _SFR,
|
|
636
|
+
0,
|
|
637
|
+
[_sp, _sD, _eD, _fi, _mR, _nT],
|
|
638
|
+
[0, 0, 0, () => SearchFilterList, 1, 0], 2
|
|
639
|
+
];
|
|
640
|
+
var SearchFixturesResponse$ = [3, n0, _SFRe,
|
|
641
|
+
0,
|
|
642
|
+
[_fix, _nT],
|
|
643
|
+
[() => FixtureSummaryList, 0], 1
|
|
644
|
+
];
|
|
553
645
|
var SubtitlingConfig$ = [3, n0, _SC,
|
|
554
646
|
0,
|
|
555
647
|
[_l, _aR, _dic, _pF],
|
|
@@ -596,6 +688,9 @@ var UpdateOutput$ = [3, n0, _UO,
|
|
|
596
688
|
[0, () => OutputConfig$, 0, 0, 2], 3
|
|
597
689
|
];
|
|
598
690
|
var __Unit = "unit";
|
|
691
|
+
var CompetitorList = [1, n0, _CL,
|
|
692
|
+
0, () => Competitor$
|
|
693
|
+
];
|
|
599
694
|
var CreateOutputList = [1, n0, _COL,
|
|
600
695
|
0, () => CreateOutput$
|
|
601
696
|
];
|
|
@@ -605,9 +700,15 @@ var DictionarySummaryList = [1, n0, _DSL,
|
|
|
605
700
|
var FeedSummaryList = [1, n0, _FSL,
|
|
606
701
|
0, () => FeedSummary$
|
|
607
702
|
];
|
|
703
|
+
var FixtureSummaryList = [1, n0, _FSLi,
|
|
704
|
+
0, () => FixtureSummary$
|
|
705
|
+
];
|
|
608
706
|
var GetOutputList = [1, n0, _GOL,
|
|
609
707
|
0, () => GetOutput$
|
|
610
708
|
];
|
|
709
|
+
var SearchFilterList = [1, n0, _SFL,
|
|
710
|
+
0, () => SearchFilter$
|
|
711
|
+
];
|
|
611
712
|
var TemplateGroupList = [1, n0, _TGL,
|
|
612
713
|
0, () => TemplateGroup$
|
|
613
714
|
];
|
|
@@ -655,6 +756,9 @@ var ListFeeds$ = [9, n0, _LF,
|
|
|
655
756
|
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
656
757
|
{ [_ht]: ["GET", "/v1/tags/{resourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
657
758
|
];
|
|
759
|
+
var SearchFixtures$ = [9, n0, _SFe,
|
|
760
|
+
{ [_ht]: ["POST", "/v1/fixtures", 200] }, () => SearchFixturesRequest$, () => SearchFixturesResponse$
|
|
761
|
+
];
|
|
658
762
|
var TagResource$ = [9, n0, _TR,
|
|
659
763
|
{ [_ht]: ["POST", "/v1/tags/{resourceArn}", 204] }, () => TagResourceRequest$, () => __Unit
|
|
660
764
|
];
|
|
@@ -854,6 +958,9 @@ class ListFeedsCommand extends command(_ep0, _mw0, "ListFeeds", ListFeeds$) {
|
|
|
854
958
|
class ListTagsForResourceCommand extends command(_ep0, _mw0, "ListTagsForResource", ListTagsForResource$) {
|
|
855
959
|
}
|
|
856
960
|
|
|
961
|
+
class SearchFixturesCommand extends command(_ep0, _mw0, "SearchFixtures", SearchFixtures$) {
|
|
962
|
+
}
|
|
963
|
+
|
|
857
964
|
class TagResourceCommand extends command(_ep0, _mw0, "TagResource", TagResource$) {
|
|
858
965
|
}
|
|
859
966
|
|
|
@@ -870,6 +977,8 @@ const paginateListDictionaries = createPaginator(ElementalInferenceClient, ListD
|
|
|
870
977
|
|
|
871
978
|
const paginateListFeeds = createPaginator(ElementalInferenceClient, ListFeedsCommand, "nextToken", "nextToken", "maxResults");
|
|
872
979
|
|
|
980
|
+
const paginateSearchFixtures = createPaginator(ElementalInferenceClient, SearchFixturesCommand, "nextToken", "nextToken", "maxResults");
|
|
981
|
+
|
|
873
982
|
const checkState = async (client, input) => {
|
|
874
983
|
let reason;
|
|
875
984
|
try {
|
|
@@ -931,6 +1040,7 @@ const commands = {
|
|
|
931
1040
|
ListDictionariesCommand,
|
|
932
1041
|
ListFeedsCommand,
|
|
933
1042
|
ListTagsForResourceCommand,
|
|
1043
|
+
SearchFixturesCommand,
|
|
934
1044
|
TagResourceCommand,
|
|
935
1045
|
UntagResourceCommand,
|
|
936
1046
|
UpdateDictionaryCommand,
|
|
@@ -939,6 +1049,7 @@ const commands = {
|
|
|
939
1049
|
const paginators = {
|
|
940
1050
|
paginateListDictionaries,
|
|
941
1051
|
paginateListFeeds,
|
|
1052
|
+
paginateSearchFixtures,
|
|
942
1053
|
};
|
|
943
1054
|
const waiters = {
|
|
944
1055
|
waitUntilFeedDeleted,
|
|
@@ -991,6 +1102,13 @@ const FeedStatus = {
|
|
|
991
1102
|
DELETING: "DELETING",
|
|
992
1103
|
UPDATING: "UPDATING",
|
|
993
1104
|
};
|
|
1105
|
+
const DataSourceSport = {
|
|
1106
|
+
AMERICAN_FOOTBALL: "american-football",
|
|
1107
|
+
BASKETBALL: "basketball",
|
|
1108
|
+
};
|
|
1109
|
+
const FilterName = {
|
|
1110
|
+
COMPETITOR: "COMPETITOR",
|
|
1111
|
+
};
|
|
994
1112
|
|
|
995
1113
|
exports.AccessDeniedException = AccessDeniedException;
|
|
996
1114
|
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
@@ -1000,6 +1118,7 @@ exports.AssociateFeedCommand = AssociateFeedCommand;
|
|
|
1000
1118
|
exports.AssociateFeedRequest$ = AssociateFeedRequest$;
|
|
1001
1119
|
exports.AssociateFeedResponse$ = AssociateFeedResponse$;
|
|
1002
1120
|
exports.ClippingConfig$ = ClippingConfig$;
|
|
1121
|
+
exports.Competitor$ = Competitor$;
|
|
1003
1122
|
exports.ConflictException = ConflictException;
|
|
1004
1123
|
exports.ConflictException$ = ConflictException$;
|
|
1005
1124
|
exports.CreateDictionary$ = CreateDictionary$;
|
|
@@ -1012,6 +1131,8 @@ exports.CreateFeedRequest$ = CreateFeedRequest$;
|
|
|
1012
1131
|
exports.CreateFeedResponse$ = CreateFeedResponse$;
|
|
1013
1132
|
exports.CreateOutput$ = CreateOutput$;
|
|
1014
1133
|
exports.CroppingConfig$ = CroppingConfig$;
|
|
1134
|
+
exports.DataSourceConfiguration$ = DataSourceConfiguration$;
|
|
1135
|
+
exports.DataSourceSport = DataSourceSport;
|
|
1015
1136
|
exports.DeleteDictionary$ = DeleteDictionary$;
|
|
1016
1137
|
exports.DeleteDictionaryCommand = DeleteDictionaryCommand;
|
|
1017
1138
|
exports.DeleteDictionaryRequest$ = DeleteDictionaryRequest$;
|
|
@@ -1038,6 +1159,10 @@ exports.ExportDictionaryEntriesResponse$ = ExportDictionaryEntriesResponse$;
|
|
|
1038
1159
|
exports.FeedAssociation$ = FeedAssociation$;
|
|
1039
1160
|
exports.FeedStatus = FeedStatus;
|
|
1040
1161
|
exports.FeedSummary$ = FeedSummary$;
|
|
1162
|
+
exports.FilterName = FilterName;
|
|
1163
|
+
exports.FixtureSummary$ = FixtureSummary$;
|
|
1164
|
+
exports.GatewayTimedOutException = GatewayTimedOutException;
|
|
1165
|
+
exports.GatewayTimedOutException$ = GatewayTimedOutException$;
|
|
1041
1166
|
exports.GetDictionary$ = GetDictionary$;
|
|
1042
1167
|
exports.GetDictionaryCommand = GetDictionaryCommand;
|
|
1043
1168
|
exports.GetDictionaryRequest$ = GetDictionaryRequest$;
|
|
@@ -1066,8 +1191,15 @@ exports.OutputStatus = OutputStatus;
|
|
|
1066
1191
|
exports.ProfanityFilterMode = ProfanityFilterMode;
|
|
1067
1192
|
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1068
1193
|
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1194
|
+
exports.SearchFilter$ = SearchFilter$;
|
|
1195
|
+
exports.SearchFixtures$ = SearchFixtures$;
|
|
1196
|
+
exports.SearchFixturesCommand = SearchFixturesCommand;
|
|
1197
|
+
exports.SearchFixturesRequest$ = SearchFixturesRequest$;
|
|
1198
|
+
exports.SearchFixturesResponse$ = SearchFixturesResponse$;
|
|
1069
1199
|
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
1070
1200
|
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
1201
|
+
exports.ServiceUnavailableException = ServiceUnavailableException;
|
|
1202
|
+
exports.ServiceUnavailableException$ = ServiceUnavailableException$;
|
|
1071
1203
|
exports.SubtitlingConfig$ = SubtitlingConfig$;
|
|
1072
1204
|
exports.TagResource$ = TagResource$;
|
|
1073
1205
|
exports.TagResourceCommand = TagResourceCommand;
|
|
@@ -1093,5 +1225,6 @@ exports.ValidationException$ = ValidationException$;
|
|
|
1093
1225
|
exports.errorTypeRegistries = errorTypeRegistries;
|
|
1094
1226
|
exports.paginateListDictionaries = paginateListDictionaries;
|
|
1095
1227
|
exports.paginateListFeeds = paginateListFeeds;
|
|
1228
|
+
exports.paginateSearchFixtures = paginateSearchFixtures;
|
|
1096
1229
|
exports.waitForFeedDeleted = waitForFeedDeleted;
|
|
1097
1230
|
exports.waitUntilFeedDeleted = waitUntilFeedDeleted;
|
|
@@ -11,6 +11,7 @@ import { GetFeedCommand } from "./commands/GetFeedCommand";
|
|
|
11
11
|
import { ListDictionariesCommand, } from "./commands/ListDictionariesCommand";
|
|
12
12
|
import { ListFeedsCommand } from "./commands/ListFeedsCommand";
|
|
13
13
|
import { ListTagsForResourceCommand, } from "./commands/ListTagsForResourceCommand";
|
|
14
|
+
import { SearchFixturesCommand, } from "./commands/SearchFixturesCommand";
|
|
14
15
|
import { TagResourceCommand, } from "./commands/TagResourceCommand";
|
|
15
16
|
import { UntagResourceCommand, } from "./commands/UntagResourceCommand";
|
|
16
17
|
import { UpdateDictionaryCommand, } from "./commands/UpdateDictionaryCommand";
|
|
@@ -18,6 +19,7 @@ import { UpdateFeedCommand, } from "./commands/UpdateFeedCommand";
|
|
|
18
19
|
import { ElementalInferenceClient } from "./ElementalInferenceClient";
|
|
19
20
|
import { paginateListDictionaries } from "./pagination/ListDictionariesPaginator";
|
|
20
21
|
import { paginateListFeeds } from "./pagination/ListFeedsPaginator";
|
|
22
|
+
import { paginateSearchFixtures } from "./pagination/SearchFixturesPaginator";
|
|
21
23
|
import { waitUntilFeedDeleted } from "./waiters/waitForFeedDeleted";
|
|
22
24
|
const commands = {
|
|
23
25
|
AssociateFeedCommand,
|
|
@@ -32,6 +34,7 @@ const commands = {
|
|
|
32
34
|
ListDictionariesCommand,
|
|
33
35
|
ListFeedsCommand,
|
|
34
36
|
ListTagsForResourceCommand,
|
|
37
|
+
SearchFixturesCommand,
|
|
35
38
|
TagResourceCommand,
|
|
36
39
|
UntagResourceCommand,
|
|
37
40
|
UpdateDictionaryCommand,
|
|
@@ -40,6 +43,7 @@ const commands = {
|
|
|
40
43
|
const paginators = {
|
|
41
44
|
paginateListDictionaries,
|
|
42
45
|
paginateListFeeds,
|
|
46
|
+
paginateSearchFixtures,
|
|
43
47
|
};
|
|
44
48
|
const waiters = {
|
|
45
49
|
waitUntilFeedDeleted,
|
|
@@ -10,6 +10,7 @@ export * from "./GetFeedCommand";
|
|
|
10
10
|
export * from "./ListDictionariesCommand";
|
|
11
11
|
export * from "./ListFeedsCommand";
|
|
12
12
|
export * from "./ListTagsForResourceCommand";
|
|
13
|
+
export * from "./SearchFixturesCommand";
|
|
13
14
|
export * from "./TagResourceCommand";
|
|
14
15
|
export * from "./UntagResourceCommand";
|
|
15
16
|
export * from "./UpdateDictionaryCommand";
|
package/dist-es/index.js
CHANGED
|
@@ -2,9 +2,9 @@ export * from "./ElementalInferenceClient";
|
|
|
2
2
|
export * from "./ElementalInference";
|
|
3
3
|
export * from "./commands";
|
|
4
4
|
export { Command as $Command } from "@smithy/core/client";
|
|
5
|
-
export * from "./schemas/schemas_0";
|
|
6
5
|
export * from "./pagination";
|
|
7
6
|
export * from "./waiters";
|
|
7
|
+
export * from "./schemas/schemas_0";
|
|
8
8
|
export * from "./models/enums";
|
|
9
9
|
export * from "./models/errors";
|
|
10
10
|
export * from "./models/models_0";
|
package/dist-es/models/enums.js
CHANGED
|
@@ -42,3 +42,10 @@ export const FeedStatus = {
|
|
|
42
42
|
DELETING: "DELETING",
|
|
43
43
|
UPDATING: "UPDATING",
|
|
44
44
|
};
|
|
45
|
+
export const DataSourceSport = {
|
|
46
|
+
AMERICAN_FOOTBALL: "american-football",
|
|
47
|
+
BASKETBALL: "basketball",
|
|
48
|
+
};
|
|
49
|
+
export const FilterName = {
|
|
50
|
+
COMPETITOR: "COMPETITOR",
|
|
51
|
+
};
|
package/dist-es/models/errors.js
CHANGED
|
@@ -86,3 +86,29 @@ export class ValidationException extends __BaseException {
|
|
|
86
86
|
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
87
87
|
}
|
|
88
88
|
}
|
|
89
|
+
export class GatewayTimedOutException extends __BaseException {
|
|
90
|
+
name = "GatewayTimedOutException";
|
|
91
|
+
$fault = "server";
|
|
92
|
+
$retryable = {};
|
|
93
|
+
constructor(opts) {
|
|
94
|
+
super({
|
|
95
|
+
name: "GatewayTimedOutException",
|
|
96
|
+
$fault: "server",
|
|
97
|
+
...opts,
|
|
98
|
+
});
|
|
99
|
+
Object.setPrototypeOf(this, GatewayTimedOutException.prototype);
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
export class ServiceUnavailableException extends __BaseException {
|
|
103
|
+
name = "ServiceUnavailableException";
|
|
104
|
+
$fault = "server";
|
|
105
|
+
$retryable = {};
|
|
106
|
+
constructor(opts) {
|
|
107
|
+
super({
|
|
108
|
+
name: "ServiceUnavailableException",
|
|
109
|
+
$fault: "server",
|
|
110
|
+
...opts,
|
|
111
|
+
});
|
|
112
|
+
Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
|
|
113
|
+
}
|
|
114
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { SearchFixturesCommand, } from "../commands/SearchFixturesCommand";
|
|
3
|
+
import { ElementalInferenceClient } from "../ElementalInferenceClient";
|
|
4
|
+
export const paginateSearchFixtures = createPaginator(ElementalInferenceClient, SearchFixturesCommand, "nextToken", "nextToken", "maxResults");
|