@nxtedition/types 23.0.22 → 23.0.23
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/common/index.d.ts +3 -0
- package/dist/common/index.js +3 -0
- package/dist/common/nxtpression.d.ts +3 -3
- package/dist/common/nxtpression.js +39 -49
- package/dist/common/render-preset.d.ts +12 -24
- package/dist/common/render-preset.js +735 -257
- package/dist/common/render-profile.d.ts +28 -0
- package/dist/common/render-profile.js +726 -0
- package/dist/common/render-query.d.ts +18 -0
- package/dist/common/render-query.js +1093 -0
- package/dist/common/render-scene.d.ts +38 -0
- package/dist/common/render-scene.js +1116 -0
- package/dist/domains/file.d.ts +9 -1
- package/dist/domains/file.js +1258 -0
- package/dist/domains/index.d.ts +3 -1
- package/dist/domains/index.js +1 -0
- package/dist/domains/media.d.ts +6 -27
- package/dist/domains/media.js +401 -128
- package/dist/domains/panel.js +218 -675
- package/dist/domains/render-preset.d.ts +2 -2
- package/dist/domains/render.d.ts +44 -0
- package/dist/domains/render.js +1273 -0
- package/dist/index.js +16 -12
- package/dist/schema.json +952 -120
- package/package.json +1 -1
package/dist/domains/index.d.ts
CHANGED
|
@@ -21,6 +21,7 @@ import type { PlanningDomainRecords } from './planning.js';
|
|
|
21
21
|
import type { PublishDomainRecords } from './publish.js';
|
|
22
22
|
import type { PublishedDomainRecords } from './published.js';
|
|
23
23
|
import type { RenderPresetDomainRecords } from './render-preset.js';
|
|
24
|
+
import type { RenderDomainRecords } from './render.js';
|
|
24
25
|
import type { RevsDomainRecords } from './revs.js';
|
|
25
26
|
import type { RoleDomainRecords } from './role.js';
|
|
26
27
|
import type { ScriptDomainRecords } from './script.js';
|
|
@@ -55,6 +56,7 @@ export * from './planning.js';
|
|
|
55
56
|
export * from './publish.js';
|
|
56
57
|
export * from './published.js';
|
|
57
58
|
export * from './render-preset.js';
|
|
59
|
+
export * from './render.js';
|
|
58
60
|
export * from './revs.js';
|
|
59
61
|
export * from './role.js';
|
|
60
62
|
export * from './script.js';
|
|
@@ -66,4 +68,4 @@ export * from './template.js';
|
|
|
66
68
|
export * from './user-notification-status.js';
|
|
67
69
|
export * from './user-notification.js';
|
|
68
70
|
export * from './user.js';
|
|
69
|
-
export type DomainRecords = AssetDomainRecords & BundleDomainRecords & CloneDomainRecords & CommentReactionDomainRecords & CommentReadMarkDomainRecords & CommentDomainRecords & ConnectionDomainRecords & ContactDomainRecords & DeepstreamDomainRecords & DesignDomainRecords & EditDomainRecords & EventDomainRecords & FileDomainRecords & GeneralDomainRecords & MediaDomainRecords & PanelDomainRecords & PermissionDomainRecords & PipelinePresetDomainRecords & PipelineDomainRecords & PlanningDomainRecords & PublishDomainRecords & PublishedDomainRecords & RenderPresetDomainRecords & RevsDomainRecords & RoleDomainRecords & ScriptDomainRecords & SearchDomainRecords & SettingsDomainRecords & StoryboardDomainRecords & SubtitleStyleDomainRecords & TemplateDomainRecords & UserNotificationStatusDomainRecords & UserNotificationDomainRecords & UserDomainRecords;
|
|
71
|
+
export type DomainRecords = AssetDomainRecords & BundleDomainRecords & CloneDomainRecords & CommentReactionDomainRecords & CommentReadMarkDomainRecords & CommentDomainRecords & ConnectionDomainRecords & ContactDomainRecords & DeepstreamDomainRecords & DesignDomainRecords & EditDomainRecords & EventDomainRecords & FileDomainRecords & GeneralDomainRecords & MediaDomainRecords & PanelDomainRecords & PermissionDomainRecords & PipelinePresetDomainRecords & PipelineDomainRecords & PlanningDomainRecords & PublishDomainRecords & PublishedDomainRecords & RenderPresetDomainRecords & RenderDomainRecords & RevsDomainRecords & RoleDomainRecords & ScriptDomainRecords & SearchDomainRecords & SettingsDomainRecords & StoryboardDomainRecords & SubtitleStyleDomainRecords & TemplateDomainRecords & UserNotificationStatusDomainRecords & UserNotificationDomainRecords & UserDomainRecords;
|
package/dist/domains/index.js
CHANGED
package/dist/domains/media.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { type AssertionGuard as __AssertionGuard } from "typia";
|
|
2
2
|
import type { Operation } from 'rfc6902';
|
|
3
|
-
import { NxtError, MediaType, RenderPreset } from '../common/index.js';
|
|
3
|
+
import type { NxtError, MediaType, RenderPreset, RenderSceneObject } from '../common/index.js';
|
|
4
4
|
export interface MediaDomainRecords {
|
|
5
5
|
":media.source": MediaSourceRecord;
|
|
6
6
|
":media.consolidate": MediaConsolidateRecord;
|
|
@@ -12,33 +12,12 @@ export interface MediaDomainRecords {
|
|
|
12
12
|
":media.updateSubtitles?": Record<string, unknown>;
|
|
13
13
|
":media.updateGraphics?": Record<string, unknown>;
|
|
14
14
|
}
|
|
15
|
-
export
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
};
|
|
20
|
-
lang?: string;
|
|
21
|
-
subtitle?: string;
|
|
22
|
-
video?: {
|
|
23
|
-
crop?: {
|
|
24
|
-
x?: number;
|
|
25
|
-
y?: number;
|
|
26
|
-
width?: number;
|
|
27
|
-
height?: number;
|
|
28
|
-
};
|
|
29
|
-
};
|
|
30
|
-
start?: number;
|
|
31
|
-
end?: number;
|
|
32
|
-
transcribe?: {
|
|
33
|
-
language?: string;
|
|
34
|
-
pan?: number[];
|
|
35
|
-
};
|
|
36
|
-
}
|
|
37
|
-
export declare const isMediaSourceRecord: (input: unknown) => input is MediaSourceRecord;
|
|
38
|
-
export declare const assertMediaSourceRecord: (input: unknown) => MediaSourceRecord;
|
|
39
|
-
export declare const randomMediaSourceRecord: () => MediaSourceRecord;
|
|
15
|
+
export type MediaSourceRecord = RenderSceneObject;
|
|
16
|
+
export declare const isMediaSourceRecord: (input: unknown) => input is RenderSceneObject;
|
|
17
|
+
export declare const assertMediaSourceRecord: (input: unknown) => RenderSceneObject;
|
|
18
|
+
export declare const randomMediaSourceRecord: () => RenderSceneObject;
|
|
40
19
|
export declare const assertGuardMediaSourceRecord: __AssertionGuard<MediaSourceRecord>;
|
|
41
|
-
export declare const stringifyMediaSourceRecord: (input:
|
|
20
|
+
export declare const stringifyMediaSourceRecord: (input: RenderSceneObject) => string;
|
|
42
21
|
export declare const assertStringifyMediaSourceRecord: (input: unknown) => string;
|
|
43
22
|
export interface MediaConsolidateRecord {
|
|
44
23
|
source?: unknown;
|