@vidispine/types 23.2.0 → 23.3.0-pre.1
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/index.d.ts +25 -0
- package/package.json +5 -5
package/dist/index.d.ts
CHANGED
|
@@ -3775,6 +3775,19 @@ export declare enum SearchTargetType {
|
|
|
3775
3775
|
FILE = "file"
|
|
3776
3776
|
}
|
|
3777
3777
|
|
|
3778
|
+
export declare type SecretDocument = SecretType;
|
|
3779
|
+
|
|
3780
|
+
export declare type SecretListDocument = SecretListType;
|
|
3781
|
+
|
|
3782
|
+
export declare type SecretListType = {
|
|
3783
|
+
secret?: Array<SecretType>;
|
|
3784
|
+
};
|
|
3785
|
+
|
|
3786
|
+
export declare type SecretType = {
|
|
3787
|
+
alias: string;
|
|
3788
|
+
key?: Array<string>;
|
|
3789
|
+
};
|
|
3790
|
+
|
|
3778
3791
|
export declare type SegmentationJobDocument = SegmentationJobType;
|
|
3779
3792
|
|
|
3780
3793
|
export declare type SegmentationJobType = TranscoderJobType & {
|
|
@@ -4454,6 +4467,18 @@ export declare type ThumbnailInfoType = {
|
|
|
4454
4467
|
uri: string;
|
|
4455
4468
|
};
|
|
4456
4469
|
|
|
4470
|
+
export declare type ThumbnailMultiDocument = ThumbnailMultiType;
|
|
4471
|
+
|
|
4472
|
+
export declare type ThumbnailMultiType = {
|
|
4473
|
+
thumbnail?: Array<{
|
|
4474
|
+
version?: number;
|
|
4475
|
+
type?: string;
|
|
4476
|
+
image: string;
|
|
4477
|
+
timecode?: TimeCodeType;
|
|
4478
|
+
tc?: string;
|
|
4479
|
+
}>;
|
|
4480
|
+
};
|
|
4481
|
+
|
|
4457
4482
|
export declare type ThumbnailServiceType = {
|
|
4458
4483
|
path: string;
|
|
4459
4484
|
state: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vidispine/types",
|
|
3
|
-
"version": "23.
|
|
3
|
+
"version": "23.3.0-pre.1",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -21,10 +21,10 @@
|
|
|
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.
|
|
25
|
-
"@vidispine/eslint-config-mdx": "23.
|
|
26
|
-
"@vidispine/eslint-config-typescript": "23.
|
|
27
|
-
"@vidispine/prettier-config": "23.
|
|
24
|
+
"@vidispine/eslint-config-base": "23.3.0-pre.1",
|
|
25
|
+
"@vidispine/eslint-config-mdx": "23.3.0-pre.1",
|
|
26
|
+
"@vidispine/eslint-config-typescript": "23.3.0-pre.1",
|
|
27
|
+
"@vidispine/prettier-config": "23.3.0-pre.1",
|
|
28
28
|
"eslint": "8.34.0",
|
|
29
29
|
"prettier": "2.8.4",
|
|
30
30
|
"typescript": "4.9.5",
|