@aws-sdk/client-mediapackagev2 3.1038.0 → 3.1040.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.
@@ -3,6 +3,7 @@ import {
3
3
  AdMarkerHls,
4
4
  CmafEncryptionMethod,
5
5
  ContainerType,
6
+ CustomAdType,
6
7
  DashCompactness,
7
8
  DashDrmSignaling,
8
9
  DashPeriodTrigger,
@@ -19,8 +20,11 @@ import {
19
20
  PresetSpeke20Audio,
20
21
  PresetSpeke20Video,
21
22
  ScteFilter,
23
+ ScteInManifests,
22
24
  ScteInSegments,
23
25
  TsEncryptionMethod,
26
+ UriPathType,
27
+ UriSeparator,
24
28
  } from "./enums";
25
29
  export interface CancelHarvestJobRequest {
26
30
  ChannelGroupName: string | undefined;
@@ -174,6 +178,7 @@ export interface DashProgramInformation {
174
178
  }
175
179
  export interface ScteDash {
176
180
  AdMarkerDash?: AdMarkerDash | undefined;
181
+ ScteInManifests?: ScteInManifests | undefined;
177
182
  }
178
183
  export interface DashTtmlConfiguration {
179
184
  TtmlProfile: DashTtmlProfile | undefined;
@@ -203,12 +208,14 @@ export interface CreateDashManifestConfiguration {
203
208
  DvbSettings?: DashDvbSettings | undefined;
204
209
  Compactness?: DashCompactness | undefined;
205
210
  SubtitleConfiguration?: DashSubtitleConfiguration | undefined;
211
+ UriPathType?: UriPathType | undefined;
206
212
  }
207
213
  export interface ForceEndpointErrorConfiguration {
208
214
  EndpointErrorConditions?: EndpointErrorCondition[] | undefined;
209
215
  }
210
216
  export interface ScteHls {
211
217
  AdMarkerHls?: AdMarkerHls | undefined;
218
+ ScteInManifests?: ScteInManifests | undefined;
212
219
  }
213
220
  export interface StartTag {
214
221
  TimeOffset: number | undefined;
@@ -223,6 +230,7 @@ export interface CreateHlsManifestConfiguration {
223
230
  ProgramDateTimeIntervalSeconds?: number | undefined;
224
231
  FilterConfiguration?: FilterConfiguration | undefined;
225
232
  UrlEncodeChildManifest?: boolean | undefined;
233
+ UriPathType?: UriPathType | undefined;
226
234
  }
227
235
  export interface CreateLowLatencyHlsManifestConfiguration {
228
236
  ManifestName: string | undefined;
@@ -233,6 +241,7 @@ export interface CreateLowLatencyHlsManifestConfiguration {
233
241
  ProgramDateTimeIntervalSeconds?: number | undefined;
234
242
  FilterConfiguration?: FilterConfiguration | undefined;
235
243
  UrlEncodeChildManifest?: boolean | undefined;
244
+ UriPathType?: UriPathType | undefined;
236
245
  }
237
246
  export interface CreateMssManifestConfiguration {
238
247
  ManifestName: string | undefined;
@@ -267,6 +276,7 @@ export interface Encryption {
267
276
  export interface Scte {
268
277
  ScteFilter?: ScteFilter[] | undefined;
269
278
  ScteInSegments?: ScteInSegments | undefined;
279
+ CustomAdTypes?: CustomAdType[] | undefined;
270
280
  }
271
281
  export interface Segment {
272
282
  SegmentDurationSeconds?: number | undefined;
@@ -293,6 +303,7 @@ export interface CreateOriginEndpointRequest {
293
303
  DashManifests?: CreateDashManifestConfiguration[] | undefined;
294
304
  MssManifests?: CreateMssManifestConfiguration[] | undefined;
295
305
  ForceEndpointErrorConfiguration?: ForceEndpointErrorConfiguration | undefined;
306
+ UriSeparator?: UriSeparator | undefined;
296
307
  Tags?: Record<string, string> | undefined;
297
308
  }
298
309
  export interface GetDashManifestConfiguration {
@@ -314,6 +325,7 @@ export interface GetDashManifestConfiguration {
314
325
  DvbSettings?: DashDvbSettings | undefined;
315
326
  Compactness?: DashCompactness | undefined;
316
327
  SubtitleConfiguration?: DashSubtitleConfiguration | undefined;
328
+ UriPathType?: UriPathType | undefined;
317
329
  }
318
330
  export interface GetHlsManifestConfiguration {
319
331
  ManifestName: string | undefined;
@@ -325,6 +337,7 @@ export interface GetHlsManifestConfiguration {
325
337
  FilterConfiguration?: FilterConfiguration | undefined;
326
338
  StartTag?: StartTag | undefined;
327
339
  UrlEncodeChildManifest?: boolean | undefined;
340
+ UriPathType?: UriPathType | undefined;
328
341
  }
329
342
  export interface GetLowLatencyHlsManifestConfiguration {
330
343
  ManifestName: string | undefined;
@@ -336,6 +349,7 @@ export interface GetLowLatencyHlsManifestConfiguration {
336
349
  FilterConfiguration?: FilterConfiguration | undefined;
337
350
  StartTag?: StartTag | undefined;
338
351
  UrlEncodeChildManifest?: boolean | undefined;
352
+ UriPathType?: UriPathType | undefined;
339
353
  }
340
354
  export interface GetMssManifestConfiguration {
341
355
  ManifestName: string | undefined;
@@ -360,6 +374,7 @@ export interface CreateOriginEndpointResponse {
360
374
  DashManifests?: GetDashManifestConfiguration[] | undefined;
361
375
  MssManifests?: GetMssManifestConfiguration[] | undefined;
362
376
  ForceEndpointErrorConfiguration?: ForceEndpointErrorConfiguration | undefined;
377
+ UriSeparator?: UriSeparator | undefined;
363
378
  ETag?: string | undefined;
364
379
  Tags?: Record<string, string> | undefined;
365
380
  }
@@ -391,6 +406,7 @@ export interface GetOriginEndpointResponse {
391
406
  DashManifests?: GetDashManifestConfiguration[] | undefined;
392
407
  MssManifests?: GetMssManifestConfiguration[] | undefined;
393
408
  ForceEndpointErrorConfiguration?: ForceEndpointErrorConfiguration | undefined;
409
+ UriSeparator?: UriSeparator | undefined;
394
410
  ETag?: string | undefined;
395
411
  Tags?: Record<string, string> | undefined;
396
412
  }
@@ -432,6 +448,7 @@ export interface OriginEndpointListConfiguration {
432
448
  DashManifests?: ListDashManifestConfiguration[] | undefined;
433
449
  MssManifests?: ListMssManifestConfiguration[] | undefined;
434
450
  ForceEndpointErrorConfiguration?: ForceEndpointErrorConfiguration | undefined;
451
+ UriSeparator?: UriSeparator | undefined;
435
452
  }
436
453
  export interface ListOriginEndpointsResponse {
437
454
  Items?: OriginEndpointListConfiguration[] | undefined;
@@ -490,6 +507,7 @@ export interface UpdateOriginEndpointRequest {
490
507
  DashManifests?: CreateDashManifestConfiguration[] | undefined;
491
508
  MssManifests?: CreateMssManifestConfiguration[] | undefined;
492
509
  ForceEndpointErrorConfiguration?: ForceEndpointErrorConfiguration | undefined;
510
+ UriSeparator?: UriSeparator | undefined;
493
511
  ETag?: string | undefined;
494
512
  }
495
513
  export interface UpdateOriginEndpointResponse {
@@ -507,6 +525,7 @@ export interface UpdateOriginEndpointResponse {
507
525
  LowLatencyHlsManifests?: GetLowLatencyHlsManifestConfiguration[] | undefined;
508
526
  MssManifests?: GetMssManifestConfiguration[] | undefined;
509
527
  ForceEndpointErrorConfiguration?: ForceEndpointErrorConfiguration | undefined;
528
+ UriSeparator?: UriSeparator | undefined;
510
529
  ETag?: string | undefined;
511
530
  Tags?: Record<string, string> | undefined;
512
531
  DashManifests?: GetDashManifestConfiguration[] | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-mediapackagev2",
3
3
  "description": "AWS SDK for JavaScript Mediapackagev2 Client for Node.js, Browser and React Native",
4
- "version": "3.1038.0",
4
+ "version": "3.1040.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-mediapackagev2",
@@ -21,17 +21,17 @@
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.974.6",
25
- "@aws-sdk/credential-provider-node": "^3.972.37",
24
+ "@aws-sdk/core": "^3.974.7",
25
+ "@aws-sdk/credential-provider-node": "^3.972.38",
26
26
  "@aws-sdk/middleware-host-header": "^3.972.10",
27
27
  "@aws-sdk/middleware-logger": "^3.972.10",
28
28
  "@aws-sdk/middleware-recursion-detection": "^3.972.11",
29
- "@aws-sdk/middleware-user-agent": "^3.972.36",
29
+ "@aws-sdk/middleware-user-agent": "^3.972.37",
30
30
  "@aws-sdk/region-config-resolver": "^3.972.13",
31
31
  "@aws-sdk/types": "^3.973.8",
32
32
  "@aws-sdk/util-endpoints": "^3.996.8",
33
33
  "@aws-sdk/util-user-agent-browser": "^3.972.10",
34
- "@aws-sdk/util-user-agent-node": "^3.973.22",
34
+ "@aws-sdk/util-user-agent-node": "^3.973.23",
35
35
  "@smithy/config-resolver": "^4.4.17",
36
36
  "@smithy/core": "^3.23.17",
37
37
  "@smithy/fetch-http-handler": "^5.3.17",
@@ -39,7 +39,7 @@
39
39
  "@smithy/invalid-dependency": "^4.2.14",
40
40
  "@smithy/middleware-content-length": "^4.2.14",
41
41
  "@smithy/middleware-endpoint": "^4.4.32",
42
- "@smithy/middleware-retry": "^4.5.6",
42
+ "@smithy/middleware-retry": "^4.5.7",
43
43
  "@smithy/middleware-serde": "^4.2.20",
44
44
  "@smithy/middleware-stack": "^4.2.14",
45
45
  "@smithy/node-config-provider": "^4.3.14",
@@ -55,7 +55,7 @@
55
55
  "@smithy/util-defaults-mode-node": "^4.2.54",
56
56
  "@smithy/util-endpoints": "^3.4.2",
57
57
  "@smithy/util-middleware": "^4.2.14",
58
- "@smithy/util-retry": "^4.3.5",
58
+ "@smithy/util-retry": "^4.3.6",
59
59
  "@smithy/util-utf8": "^4.2.2",
60
60
  "@smithy/util-waiter": "^4.3.0",
61
61
  "tslib": "^2.6.2"