@nxtedition/types 23.0.24 → 23.0.26
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/app.d.ts +0 -1
- package/dist/app.js +4 -17
- package/dist/common/file.d.ts +20 -6
- package/dist/common/file.js +344 -24
- package/dist/common/nxtpression.d.ts +8 -0
- package/dist/common/settings.d.ts +8 -4
- package/dist/common/settings.js +1109 -1013
- package/dist/domains/connection.d.ts +28 -18
- package/dist/domains/connection.js +968 -194
- package/dist/domains/file.js +12 -12
- package/dist/domains/index.d.ts +3 -1
- package/dist/domains/index.js +1 -0
- package/dist/domains/media.d.ts +1 -0
- package/dist/domains/media.js +23 -6
- package/dist/domains/pipeline.js +9 -9
- package/dist/domains/publish.d.ts +71 -15
- package/dist/domains/publish.js +23088 -5976
- package/dist/domains/render.d.ts +1 -0
- package/dist/domains/render.js +155 -18
- package/dist/domains/settings.js +1113 -1020
- package/dist/domains/subtitle.d.ts +19 -0
- package/dist/domains/subtitle.js +212 -0
- package/dist/index.js +13 -12
- package/dist/schema.json +278 -18
- package/package.json +1 -1
|
@@ -43,37 +43,47 @@ export declare const randomFacebookConnectionRecord: () => FacebookConnectionRec
|
|
|
43
43
|
export declare const assertGuardFacebookConnectionRecord: __AssertionGuard<FacebookConnectionRecord>;
|
|
44
44
|
export declare const stringifyFacebookConnectionRecord: (input: FacebookConnectionRecord) => string;
|
|
45
45
|
export declare const assertStringifyFacebookConnectionRecord: (input: unknown) => string;
|
|
46
|
-
export
|
|
46
|
+
export type FilePublishConnectionRecord = FilePublishConnectionS3Record;
|
|
47
|
+
export declare const isFilePublishConnectionRecord: (input: unknown) => input is FilePublishConnectionS3Record;
|
|
48
|
+
export declare const assertFilePublishConnectionRecord: (input: unknown) => FilePublishConnectionS3Record;
|
|
49
|
+
export declare const randomFilePublishConnectionRecord: () => FilePublishConnectionS3Record;
|
|
50
|
+
export declare const assertGuardFilePublishConnectionRecord: __AssertionGuard<FilePublishConnectionRecord>;
|
|
51
|
+
export declare const stringifyFilePublishConnectionRecord: (input: FilePublishConnectionS3Record) => string;
|
|
52
|
+
export declare const assertStringifyFilePublishConnectionRecord: (input: unknown) => string;
|
|
53
|
+
export interface FilePublishBaseConnectionRecord extends ConnectionRecordCommon {
|
|
47
54
|
type: "file";
|
|
48
55
|
protocol: string;
|
|
49
56
|
host?: string;
|
|
50
|
-
port?: number;
|
|
57
|
+
port?: number | string;
|
|
51
58
|
ignoreMissing?: boolean;
|
|
52
59
|
concurrency?: number;
|
|
53
60
|
stabilityThreshold?: number;
|
|
54
61
|
pollInterval?: number;
|
|
55
62
|
listConcurrency?: number;
|
|
56
|
-
/**
|
|
57
|
-
* S3 client options
|
|
58
|
-
*/
|
|
59
|
-
client?: unknown;
|
|
60
|
-
/**
|
|
61
|
-
* S3 bucket name
|
|
62
|
-
*/
|
|
63
|
-
bucket?: string;
|
|
64
63
|
metafile?: {
|
|
65
64
|
content: string;
|
|
66
65
|
};
|
|
67
66
|
}
|
|
68
|
-
export declare const
|
|
69
|
-
export declare const
|
|
70
|
-
export declare const
|
|
71
|
-
export declare const
|
|
72
|
-
export declare const
|
|
73
|
-
export declare const
|
|
67
|
+
export declare const isFilePublishBaseConnectionRecord: (input: unknown) => input is FilePublishBaseConnectionRecord;
|
|
68
|
+
export declare const assertFilePublishBaseConnectionRecord: (input: unknown) => FilePublishBaseConnectionRecord;
|
|
69
|
+
export declare const randomFilePublishBaseConnectionRecord: () => FilePublishBaseConnectionRecord;
|
|
70
|
+
export declare const assertGuardFilePublishBaseConnectionRecord: __AssertionGuard<FilePublishBaseConnectionRecord>;
|
|
71
|
+
export declare const stringifyFilePublishBaseConnectionRecord: (input: FilePublishBaseConnectionRecord) => string;
|
|
72
|
+
export declare const assertStringifyFilePublishBaseConnectionRecord: (input: unknown) => string;
|
|
73
|
+
export interface FilePublishConnectionS3Record extends FilePublishBaseConnectionRecord {
|
|
74
|
+
protocol: "s3";
|
|
75
|
+
client?: unknown;
|
|
76
|
+
bucket?: string;
|
|
77
|
+
}
|
|
78
|
+
export declare const isFilePublishConnectionS3Record: (input: unknown) => input is FilePublishConnectionS3Record;
|
|
79
|
+
export declare const assertFilePublishConnectionS3Record: (input: unknown) => FilePublishConnectionS3Record;
|
|
80
|
+
export declare const randomFilePublishConnectionS3Record: () => FilePublishConnectionS3Record;
|
|
81
|
+
export declare const assertGuardFilePublishConnectionS3Record: __AssertionGuard<FilePublishConnectionS3Record>;
|
|
82
|
+
export declare const stringifyFilePublishConnectionS3Record: (input: FilePublishConnectionS3Record) => string;
|
|
83
|
+
export declare const assertStringifyFilePublishConnectionS3Record: (input: unknown) => string;
|
|
74
84
|
export interface ConnectionStatsRecord {
|
|
75
|
-
status
|
|
76
|
-
substatus
|
|
85
|
+
status?: string;
|
|
86
|
+
substatus?: string;
|
|
77
87
|
pages?: Array<{
|
|
78
88
|
id: unknown;
|
|
79
89
|
}>;
|