@vidispine/types 23.2.0 → 23.3.0-pre.2
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/README.md +2 -0
- package/dist/index.d.ts +26 -1
- package/package.json +6 -6
package/README.md
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -1955,7 +1955,7 @@ export declare type ItemSearchType = {
|
|
|
1955
1955
|
intervals?: SearchIntervalsType;
|
|
1956
1956
|
reference?: Array<string>;
|
|
1957
1957
|
operator?: SearchOperatorType;
|
|
1958
|
-
filter?: Array<SearchFilterType>;
|
|
1958
|
+
filter?: SearchFilterType | Array<SearchFilterType>;
|
|
1959
1959
|
acl?: SearchAclType;
|
|
1960
1960
|
collection?: Array<CollectionCriterionType>;
|
|
1961
1961
|
item?: ItemCriterionType;
|
|
@@ -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.2",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -21,14 +21,14 @@
|
|
|
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.2",
|
|
25
|
+
"@vidispine/eslint-config-mdx": "23.3.0-pre.2",
|
|
26
|
+
"@vidispine/eslint-config-typescript": "23.3.0-pre.2",
|
|
27
|
+
"@vidispine/prettier-config": "23.3.0-pre.2",
|
|
28
28
|
"eslint": "8.34.0",
|
|
29
29
|
"prettier": "2.8.4",
|
|
30
30
|
"typescript": "4.9.5",
|
|
31
|
-
"vite": "4.3.
|
|
31
|
+
"vite": "4.3.9",
|
|
32
32
|
"vite-plugin-dts": "2.3.0"
|
|
33
33
|
},
|
|
34
34
|
"eslintConfig": {
|