@aws-sdk/client-mediatailor 3.514.0 → 3.517.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-types/commands/CreateProgramCommand.d.ts +2 -2
- package/dist-types/commands/DescribeProgramCommand.d.ts +1 -1
- package/dist-types/commands/UpdateProgramCommand.d.ts +2 -2
- package/dist-types/models/models_0.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +1 -1
- package/package.json +12 -12
|
@@ -37,7 +37,7 @@ declare const CreateProgramCommand_base: {
|
|
|
37
37
|
* AdBreaks: [ // __listOfAdBreak
|
|
38
38
|
* { // AdBreak
|
|
39
39
|
* MessageType: "SPLICE_INSERT" || "TIME_SIGNAL",
|
|
40
|
-
* OffsetMillis: Number("long"),
|
|
40
|
+
* OffsetMillis: Number("long"), // required
|
|
41
41
|
* Slate: { // SlateSource
|
|
42
42
|
* SourceLocationName: "STRING_VALUE",
|
|
43
43
|
* VodSourceName: "STRING_VALUE",
|
|
@@ -94,7 +94,7 @@ declare const CreateProgramCommand_base: {
|
|
|
94
94
|
* // AdBreaks: [ // __listOfAdBreak
|
|
95
95
|
* // { // AdBreak
|
|
96
96
|
* // MessageType: "SPLICE_INSERT" || "TIME_SIGNAL",
|
|
97
|
-
* // OffsetMillis: Number("long"),
|
|
97
|
+
* // OffsetMillis: Number("long"), // required
|
|
98
98
|
* // Slate: { // SlateSource
|
|
99
99
|
* // SourceLocationName: "STRING_VALUE",
|
|
100
100
|
* // VodSourceName: "STRING_VALUE",
|
|
@@ -43,7 +43,7 @@ declare const DescribeProgramCommand_base: {
|
|
|
43
43
|
* // AdBreaks: [ // __listOfAdBreak
|
|
44
44
|
* // { // AdBreak
|
|
45
45
|
* // MessageType: "SPLICE_INSERT" || "TIME_SIGNAL",
|
|
46
|
-
* // OffsetMillis: Number("long"),
|
|
46
|
+
* // OffsetMillis: Number("long"), // required
|
|
47
47
|
* // Slate: { // SlateSource
|
|
48
48
|
* // SourceLocationName: "STRING_VALUE",
|
|
49
49
|
* // VodSourceName: "STRING_VALUE",
|
|
@@ -37,7 +37,7 @@ declare const UpdateProgramCommand_base: {
|
|
|
37
37
|
* AdBreaks: [ // __listOfAdBreak
|
|
38
38
|
* { // AdBreak
|
|
39
39
|
* MessageType: "SPLICE_INSERT" || "TIME_SIGNAL",
|
|
40
|
-
* OffsetMillis: Number("long"),
|
|
40
|
+
* OffsetMillis: Number("long"), // required
|
|
41
41
|
* Slate: { // SlateSource
|
|
42
42
|
* SourceLocationName: "STRING_VALUE",
|
|
43
43
|
* VodSourceName: "STRING_VALUE",
|
|
@@ -88,7 +88,7 @@ declare const UpdateProgramCommand_base: {
|
|
|
88
88
|
* // AdBreaks: [ // __listOfAdBreak
|
|
89
89
|
* // { // AdBreak
|
|
90
90
|
* // MessageType: "SPLICE_INSERT" || "TIME_SIGNAL",
|
|
91
|
-
* // OffsetMillis: Number("long"),
|
|
91
|
+
* // OffsetMillis: Number("long"), // required
|
|
92
92
|
* // Slate: { // SlateSource
|
|
93
93
|
* // SourceLocationName: "STRING_VALUE",
|
|
94
94
|
* // VodSourceName: "STRING_VALUE",
|
|
@@ -146,7 +146,7 @@ export interface AdBreak {
|
|
|
146
146
|
* @public
|
|
147
147
|
* <p>How long (in milliseconds) after the beginning of the program that an ad starts. This value must fall within 100ms of a segment boundary, otherwise the ad break will be skipped.</p>
|
|
148
148
|
*/
|
|
149
|
-
OffsetMillis
|
|
149
|
+
OffsetMillis: number | undefined;
|
|
150
150
|
/**
|
|
151
151
|
* @public
|
|
152
152
|
* <p>Ad break slate configuration.</p>
|
|
@@ -34,7 +34,7 @@ export interface TimeSignalMessage {
|
|
|
34
34
|
}
|
|
35
35
|
export interface AdBreak {
|
|
36
36
|
MessageType?: MessageType;
|
|
37
|
-
OffsetMillis
|
|
37
|
+
OffsetMillis: number | undefined;
|
|
38
38
|
Slate?: SlateSource;
|
|
39
39
|
SpliceInsertMessage?: SpliceInsertMessage;
|
|
40
40
|
TimeSignalMessage?: TimeSignalMessage;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-mediatailor",
|
|
3
3
|
"description": "AWS SDK for JavaScript Mediatailor Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.517.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-mediatailor",
|
|
@@ -20,18 +20,18 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.515.0",
|
|
24
24
|
"@aws-sdk/core": "3.513.0",
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
27
|
-
"@aws-sdk/middleware-logger": "3.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
31
|
-
"@aws-sdk/types": "3.
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.515.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.515.0",
|
|
27
|
+
"@aws-sdk/middleware-logger": "3.515.0",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "3.515.0",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "3.515.0",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "3.515.0",
|
|
31
|
+
"@aws-sdk/types": "3.515.0",
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.515.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "3.515.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "3.515.0",
|
|
35
35
|
"@smithy/config-resolver": "^2.1.1",
|
|
36
36
|
"@smithy/core": "^1.3.2",
|
|
37
37
|
"@smithy/fetch-http-handler": "^2.4.1",
|