Skip to content

Commit 8f21702

Browse files
committed
connecting new PlaybackRestrictions resource
1 parent 3be06d8 commit 8f21702

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/video/video.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ import { PlaybackIds } from './resources/playbackIds.js';
1212
import { Uploads } from './resources/uploads.js';
1313
import { SigningKeys } from './resources/signingKeys.js';
1414
import { DeliveryUsage } from './resources/deliveryUsage.js';
15+
import { PlaybackRestrictions } from './resources/playbackRestrictions.js';
1516

1617
/**
1718
* @ignore
@@ -32,6 +33,7 @@ export class Video extends Base {
3233
readonly Assets: Assets;
3334
readonly LiveStreams: LiveStreams;
3435
readonly PlaybackIds: PlaybackIds;
36+
readonly PlaybackRestrictions: PlaybackRestrictions;
3537
readonly Uploads: Uploads;
3638
readonly SigningKeys: SigningKeys;
3739
readonly DeliveryUsage: DeliveryUsage;
@@ -69,5 +71,8 @@ export class Video extends Base {
6971

7072
/** @Type {DeliveryUsage} */
7173
this.DeliveryUsage = new DeliveryUsage(this);
74+
75+
/** @Type {PlaybackRestrictions} */
76+
this.PlaybackRestrictions = new PlaybackRestrictions(this);
7277
}
7378
}

0 commit comments

Comments
 (0)