@vidispine/types 22.3.0-pre.5 → 22.3.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.
Files changed (2) hide show
  1. package/index.d.ts +8 -0
  2. package/package.json +6 -4
package/index.d.ts CHANGED
@@ -1194,6 +1194,7 @@ export interface EffectType {
1194
1194
  timeBase?: TimeBaseType;
1195
1195
  parameter?: EffectParameterType[];
1196
1196
  name: string;
1197
+ id?: string;
1197
1198
  }
1198
1199
 
1199
1200
  export type EidrDocument = EidrType;
@@ -2594,6 +2595,7 @@ export interface MetadataFieldType {
2594
2595
  value: string;
2595
2596
  validationGroup?: string;
2596
2597
  parent?: string;
2598
+ extraData?: string;
2597
2599
  };
2598
2600
  data?: KeyValuePairType[];
2599
2601
  values?: SimpleMetadataType;
@@ -2808,6 +2810,7 @@ export interface MetadataValueType {
2808
2810
  mode?: MetadataModeType;
2809
2811
  lang?: string;
2810
2812
  id?: string;
2813
+ extraData?: string;
2811
2814
  value: string;
2812
2815
  }
2813
2816
 
@@ -2980,6 +2983,7 @@ export interface NLEJobTransitionType {
2980
2983
 
2981
2984
  export interface NLEJobType extends TranscoderJobType {
2982
2985
  frameRate: FrameRateType;
2986
+ interval?: TimeIntervalType;
2983
2987
  width: number;
2984
2988
  height: number;
2985
2989
  dar: AspectRatioType;
@@ -3720,6 +3724,7 @@ export type SequenceRenderRequestDocument = SequenceRenderRequestType;
3720
3724
 
3721
3725
  export interface SequenceRenderRequestType {
3722
3726
  sequence: SequenceType;
3727
+ interval?: TimeIntervalType;
3723
3728
  metadata?: MetadataType;
3724
3729
  }
3725
3730
 
@@ -3741,12 +3746,14 @@ export interface SequenceTransitionType {
3741
3746
  reverse?: boolean;
3742
3747
  borderWidth?: number;
3743
3748
  borderColor?: string;
3749
+ color?: string;
3744
3750
  }
3745
3751
 
3746
3752
  export interface SequenceType {
3747
3753
  id?: SiteIdType;
3748
3754
  track?: SequenceTrackType[];
3749
3755
  override?: TranscodePresetType;
3756
+ setting?: KeyValuePairType[];
3750
3757
  }
3751
3758
 
3752
3759
  export type ServiceConfigurationResultDocument = ServiceConfigurationResultType;
@@ -4497,6 +4504,7 @@ export interface TranscoderConfigurationType {
4497
4504
  dataBufferFlushTime?: number;
4498
4505
  colorProfilePath?: string[];
4499
4506
  redDecoderType?: REDDecoderType;
4507
+ logJsonFormat?: boolean;
4500
4508
  }
4501
4509
 
4502
4510
  export interface TranscoderDirectAccess {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vidispine/types",
3
- "version": "22.3.0-pre.5",
3
+ "version": "22.3.0",
4
4
  "license": "SEE LICENSE IN LICENSE.md",
5
5
  "private": false,
6
6
  "publishConfig": {
@@ -10,8 +10,9 @@
10
10
  "homepage": "https://vidispine.github.io/vdt/",
11
11
  "types": "index.d.ts",
12
12
  "devDependencies": {
13
- "@vidispine/eslint-config-base": "22.3.0-pre.5",
14
- "@vidispine/eslint-config-typescript": "22.3.0-pre.5",
13
+ "@vidispine/eslint-config-base": "22.3.0",
14
+ "@vidispine/eslint-config-typescript": "22.3.0",
15
+ "@vidispine/prettier-config": "22.3.0",
15
16
  "typescript": "^4.7.3"
16
17
  },
17
18
  "scripts": {
@@ -29,5 +30,6 @@
29
30
  "@typescript-eslint/no-empty-interface": "off"
30
31
  }
31
32
  },
32
- "gitHead": "b7c1ead11e7e2fc68c5fb0072e6dbdb019f26ddc"
33
+ "prettier": "@vidispine/prettier-config",
34
+ "gitHead": "bf53eaf85f596bc3cc70b490d18dbf3c59045350"
33
35
  }