@nxtedition/types 23.1.6 → 23.1.8
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 +2 -0
- package/dist/common/index.js +2 -0
- package/dist/common/panel-property.d.ts +35 -2
- package/dist/common/render-scene.d.ts +2 -0
- package/dist/common/report.d.ts +85 -0
- package/dist/common/report.js +8 -0
- package/dist/common/rss.d.ts +70 -0
- package/dist/common/rss.js +11 -0
- package/dist/common/schema-property.d.ts +31 -27
- package/dist/common/settings.d.ts +3 -1
- package/dist/nxtpression.d.ts +306 -42
- package/dist/records/domains/connection/index.d.ts +3 -1
- package/dist/records/domains/connection/index.js +1 -0
- package/dist/records/domains/connection/report.d.ts +7 -0
- package/dist/records/domains/connection/report.js +1 -0
- package/dist/records/domains/file.d.ts +7 -0
- package/dist/records/domains/panel.d.ts +26 -3
- package/dist/records/domains/publish/index.d.ts +3 -1
- package/dist/records/domains/publish/index.js +1 -0
- package/dist/records/domains/publish/report.d.ts +70 -0
- package/dist/records/domains/publish/report.js +1304 -0
- package/dist/records/domains/render.d.ts +3 -0
- package/dist/records/domains/schema.d.ts +2 -2
- package/dist/records/validate/assert-guard.js +2659 -1038
- package/dist/records/validate/assert.js +2659 -1037
- package/dist/records/validate/is.js +143 -38
- package/dist/records/validate/schemas.js +1878 -657
- package/dist/records/validate/stringify.js +565 -101
- package/dist/records/validate/utils.js +1 -1
- package/dist/records/validate/validate-equals.js +2886 -861
- package/dist/records/validate/validate.js +2129 -777
- package/dist/rpc.d.ts +1 -1
- package/package.json +1 -1
|
@@ -69,6 +69,7 @@ export interface RenderDomainStatsRecord {
|
|
|
69
69
|
limits?: unknown;
|
|
70
70
|
taskset?: string;
|
|
71
71
|
end?: number | null;
|
|
72
|
+
duration?: number | null;
|
|
72
73
|
}
|
|
73
74
|
export interface RenderDomainGpuStats {
|
|
74
75
|
[key: string]: unknown;
|
|
@@ -115,6 +116,8 @@ export interface RenderDomainResultRecord {
|
|
|
115
116
|
start?: number | null;
|
|
116
117
|
end?: number | null;
|
|
117
118
|
}>;
|
|
119
|
+
timecode?: number | null;
|
|
120
|
+
live?: boolean | null;
|
|
118
121
|
result?: unknown;
|
|
119
122
|
error?: null | Record<string, unknown> | Array<Record<string, unknown>>;
|
|
120
123
|
extension?: string;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { SchemaRootProperty, WidgetLayout } from '../../common/index.ts';
|
|
2
2
|
export interface SchemaDomainRecords {
|
|
3
3
|
":schema": SchemaDomainPanelRecord;
|
|
4
4
|
}
|
|
@@ -12,7 +12,7 @@ export interface SchemaDomainPanelRecord {
|
|
|
12
12
|
domain?: string;
|
|
13
13
|
priority?: number;
|
|
14
14
|
properties?: {
|
|
15
|
-
[key: string]:
|
|
15
|
+
[key: string]: SchemaRootProperty;
|
|
16
16
|
};
|
|
17
17
|
layout?: {
|
|
18
18
|
panel?: WidgetLayout;
|