@nxtedition/types 23.0.31 → 23.0.33
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 +45 -3
- package/dist/app.js +254 -6
- package/dist/common/block.d.ts +1 -1
- package/dist/common/file.d.ts +10 -11
- package/dist/common/render-preset.js +230 -22
- package/dist/common/render-profile.d.ts +17 -0
- package/dist/common/render-profile.js +344 -18
- package/dist/common/render-query.js +830 -169
- package/dist/common/render-scene.d.ts +7 -0
- package/dist/common/render-scene.js +1258 -144
- package/dist/common/settings.d.ts +41 -26
- package/dist/common/settings.js +1888 -1574
- package/dist/domains/event.d.ts +21 -19
- package/dist/domains/event.js +460 -44
- package/dist/domains/general.d.ts +6 -0
- package/dist/domains/media.d.ts +4 -0
- package/dist/domains/media.js +827 -89
- package/dist/domains/panel.d.ts +268 -1
- package/dist/domains/publish.d.ts +1128 -6
- package/dist/domains/publish.js +10806 -3560
- package/dist/domains/render.js +826 -163
- package/dist/domains/settings.d.ts +1 -10
- package/dist/domains/settings.js +1 -6649
- package/dist/index.d.ts +13 -1
- package/dist/index.js +1 -0
- package/dist/nxtpression.d.ts +110 -0
- package/dist/nxtpression.js +323 -0
- package/dist/schema.json +2183 -1904
- package/dist/tsdoc-metadata.json +11 -0
- package/package.json +10 -3
|
@@ -16,7 +16,13 @@ export declare const randomGeneralTitleRecord: () => GeneralTitleRecord;
|
|
|
16
16
|
export declare const assertGuardGeneralTitleRecord: __AssertionGuard<GeneralTitleRecord>;
|
|
17
17
|
export declare const stringifyGeneralTitleRecord: (input: GeneralTitleRecord) => string;
|
|
18
18
|
export declare const assertStringifyGeneralTitleRecord: (input: unknown) => string;
|
|
19
|
+
/**
|
|
20
|
+
* Record holding manually added tags
|
|
21
|
+
*/
|
|
19
22
|
export interface GeneralTagsRecord {
|
|
23
|
+
/**
|
|
24
|
+
* Manually added tags
|
|
25
|
+
*/
|
|
20
26
|
value?: string[];
|
|
21
27
|
}
|
|
22
28
|
export declare const isGeneralTagsRecord: (input: unknown) => input is GeneralTagsRecord;
|
package/dist/domains/media.d.ts
CHANGED
|
@@ -100,6 +100,10 @@ export interface MediaProbeRecord {
|
|
|
100
100
|
error: NxtError | null;
|
|
101
101
|
type: MediaType;
|
|
102
102
|
live?: boolean | null;
|
|
103
|
+
url?: string | null;
|
|
104
|
+
subtitle?: {
|
|
105
|
+
codec?: string | null;
|
|
106
|
+
};
|
|
103
107
|
}
|
|
104
108
|
export declare const isMediaProbeRecord: (input: unknown) => input is MediaProbeRecord;
|
|
105
109
|
export declare const assertMediaProbeRecord: (input: unknown) => MediaProbeRecord;
|