@vidispine/types 23.3.0-pre.5 → 23.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/dist/index.d.ts +27 -2
  2. package/package.json +11 -10
package/dist/index.d.ts CHANGED
@@ -686,6 +686,14 @@ export declare type CollectionType = {
686
686
  terse?: GenericType;
687
687
  'merged-access'?: AccessControlMergedType;
688
688
  externalId?: Array<ExternalIdentifierType>;
689
+ timespan?: Array<{
690
+ field?: Array<{
691
+ name: string;
692
+ value?: Array<string>;
693
+ }>;
694
+ start: string;
695
+ end: string;
696
+ }>;
689
697
  absoluteTime?: boolean;
690
698
  };
691
699
 
@@ -1327,6 +1335,7 @@ export declare type ExportLocationType = {
1327
1335
  projection?: string;
1328
1336
  tag?: Array<string>;
1329
1337
  script?: string;
1338
+ metadata?: SimpleMetadataType;
1330
1339
  };
1331
1340
 
1332
1341
  export declare type ExportProblemType = {
@@ -2325,6 +2334,7 @@ export declare type LicenseType = {
2325
2334
  codecStatus?: CodecStatusType;
2326
2335
  licenseErrorStatus?: LicenseErrorType;
2327
2336
  licenseType?: string;
2337
+ licenseProperty?: Array<KeyValuePairType>;
2328
2338
  };
2329
2339
 
2330
2340
  export declare type LockDocument = LockType;
@@ -3415,6 +3425,7 @@ export declare type PlaceholderImportRequestType = {
3415
3425
  video?: Array<string>;
3416
3426
  audio?: Array<string>;
3417
3427
  binary?: Array<string>;
3428
+ subtitle?: Array<string>;
3418
3429
  };
3419
3430
 
3420
3431
  export declare type PluginType = {
@@ -3522,6 +3533,10 @@ export declare type ReindexRequestType = {
3522
3533
  status: string;
3523
3534
  start?: string;
3524
3535
  finish?: string;
3536
+ createdTimeFrom?: string;
3537
+ createdTimeTo?: string;
3538
+ updatedTimeFrom?: string;
3539
+ updatedTimeTo?: string;
3525
3540
  indexesDone?: number;
3526
3541
  indexesTotal?: number;
3527
3542
  };
@@ -4317,7 +4332,11 @@ export declare type SubtitleClipType = TextRenditionType & {
4317
4332
 
4318
4333
  export declare type SubtitleComponentDocument = SubtitleComponentType;
4319
4334
 
4320
- export declare type SubtitleComponentType = MediaComponentType;
4335
+ export declare type SubtitleComponentType = MediaComponentType & {
4336
+ mediaInfo?: SubtitleMediaInfoType;
4337
+ };
4338
+
4339
+ declare type SubtitleMediaInfoType = BaseMediaInfoType;
4321
4340
 
4322
4341
  export declare type SuggestionResultType = {
4323
4342
  term: string;
@@ -4480,7 +4499,7 @@ export declare type ThumbnailMultiType = {
4480
4499
  };
4481
4500
 
4482
4501
  export declare type ThumbnailServiceType = {
4483
- path: string;
4502
+ path: Array<string>;
4484
4503
  state: string;
4485
4504
  lastSuccess?: string;
4486
4505
  lastFailure?: string;
@@ -4987,6 +5006,11 @@ export declare type VXAListType = {
4987
5006
  vxa?: Array<VXAType>;
4988
5007
  };
4989
5008
 
5009
+ declare type VXASecretType = {
5010
+ alias: string;
5011
+ value: SimpleMetadataType;
5012
+ };
5013
+
4990
5014
  export declare enum VXAStatus {
4991
5015
  OFFLINE = "OFFLINE",
4992
5016
  ONLINE = "ONLINE"
@@ -5033,6 +5057,7 @@ export declare type VXAType = {
5033
5057
  forwardService?: Array<ForwardServiceType>;
5034
5058
  certificate?: string;
5035
5059
  resourceTag?: Array<KeyValuePairType>;
5060
+ secret?: Array<VXASecretType>;
5036
5061
  };
5037
5062
 
5038
5063
  export declare type VXAUpdateDocument = VXAUpdateType;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vidispine/types",
3
- "version": "23.3.0-pre.5",
3
+ "version": "23.3.0",
4
4
  "license": "SEE LICENSE IN LICENSE.md",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -21,15 +21,15 @@
21
21
  "lint": "eslint . --cache --max-warnings=0 --ext .js,.jsx,.ts,.tsx,.md,.mdx"
22
22
  },
23
23
  "devDependencies": {
24
- "@vidispine/eslint-config-base": "23.3.0-pre.5",
25
- "@vidispine/eslint-config-mdx": "23.3.0-pre.5",
26
- "@vidispine/eslint-config-typescript": "23.3.0-pre.5",
27
- "@vidispine/prettier-config": "23.3.0-pre.5",
28
- "eslint": "8.34.0",
29
- "prettier": "2.8.4",
24
+ "@vidispine/eslint-config-base": "23.3.0",
25
+ "@vidispine/eslint-config-mdx": "23.3.0",
26
+ "@vidispine/eslint-config-typescript": "23.3.0",
27
+ "@vidispine/prettier-config": "23.3.0",
28
+ "eslint": "8.48.0",
29
+ "prettier": "2.8.8",
30
30
  "typescript": "4.9.5",
31
- "vite": "4.3.9",
32
- "vite-plugin-dts": "3.0.2"
31
+ "vite": "4.4.9",
32
+ "vite-plugin-dts": "3.5.3"
33
33
  },
34
34
  "eslintConfig": {
35
35
  "extends": [
@@ -42,7 +42,8 @@
42
42
  "rules": {
43
43
  "no-use-before-define": "off",
44
44
  "@typescript-eslint/naming-convention": "off",
45
- "@typescript-eslint/no-empty-interface": "off"
45
+ "@typescript-eslint/no-empty-interface": "off",
46
+ "@typescript-eslint/no-redeclare": "off"
46
47
  }
47
48
  },
48
49
  "prettier": "@vidispine/prettier-config"