@nxtedition/types 1.0.0
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 +62 -0
- package/dist/common/block.d.ts +25 -0
- package/dist/common/block.js +571 -0
- package/dist/common/index.d.ts +32 -0
- package/dist/common/index.js +565 -0
- package/dist/common/lock.d.ts +12 -0
- package/dist/common/lock.js +152 -0
- package/dist/common/settings.d.ts +150 -0
- package/dist/common/settings.js +2642 -0
- package/dist/domains/asset.d.ts +23 -0
- package/dist/domains/asset.js +225 -0
- package/dist/domains/connection.d.ts +62 -0
- package/dist/domains/connection.js +1167 -0
- package/dist/domains/event.d.ts +18 -0
- package/dist/domains/event.js +165 -0
- package/dist/domains/general.d.ts +23 -0
- package/dist/domains/general.js +225 -0
- package/dist/domains/index.d.ts +25 -0
- package/dist/domains/index.js +12 -0
- package/dist/domains/media.d.ts +32 -0
- package/dist/domains/media.js +465 -0
- package/dist/domains/permission.d.ts +24 -0
- package/dist/domains/permission.js +375 -0
- package/dist/domains/publish.d.ts +213 -0
- package/dist/domains/publish.js +9664 -0
- package/dist/domains/role.d.ts +13 -0
- package/dist/domains/role.js +119 -0
- package/dist/domains/script.d.ts +13 -0
- package/dist/domains/script.js +125 -0
- package/dist/domains/search.d.ts +13 -0
- package/dist/domains/search.js +119 -0
- package/dist/domains/settings.d.ts +13 -0
- package/dist/domains/settings.js +2765 -0
- package/dist/domains/template.d.ts +23 -0
- package/dist/domains/template.js +372 -0
- package/dist/index.d.ts +24 -0
- package/dist/index.js +2 -0
- package/package.json +34 -0
|
@@ -0,0 +1,152 @@
|
|
|
1
|
+
import __typia from "typia";
|
|
2
|
+
export const isLock = input => {
|
|
3
|
+
const $io0 = input => "number" === typeof input.time && (null === input.locations || Array.isArray(input.locations) && input.locations.every(elem => "string" === typeof elem)) && (null === input.replicas || "number" === typeof input.replicas);
|
|
4
|
+
return "object" === typeof input && null !== input && $io0(input);
|
|
5
|
+
};
|
|
6
|
+
export const assertLock = (input, errorFactory) => {
|
|
7
|
+
const __is = input => {
|
|
8
|
+
const $io0 = input => "number" === typeof input.time && (null === input.locations || Array.isArray(input.locations) && input.locations.every(elem => "string" === typeof elem)) && (null === input.replicas || "number" === typeof input.replicas);
|
|
9
|
+
return "object" === typeof input && null !== input && $io0(input);
|
|
10
|
+
};
|
|
11
|
+
if (false === __is(input))
|
|
12
|
+
((input, _path, _exceptionable = true) => {
|
|
13
|
+
const $guard = __typia.createAssert.guard;
|
|
14
|
+
const $ao0 = (input, _path, _exceptionable = true) => ("number" === typeof input.time || $guard(_exceptionable, {
|
|
15
|
+
path: _path + ".time",
|
|
16
|
+
expected: "number",
|
|
17
|
+
value: input.time
|
|
18
|
+
}, errorFactory)) && (null === input.locations || (Array.isArray(input.locations) || $guard(_exceptionable, {
|
|
19
|
+
path: _path + ".locations",
|
|
20
|
+
expected: "(Array<string> | null)",
|
|
21
|
+
value: input.locations
|
|
22
|
+
}, errorFactory)) && input.locations.every((elem, _index1) => "string" === typeof elem || $guard(_exceptionable, {
|
|
23
|
+
path: _path + ".locations[" + _index1 + "]",
|
|
24
|
+
expected: "string",
|
|
25
|
+
value: elem
|
|
26
|
+
}, errorFactory)) || $guard(_exceptionable, {
|
|
27
|
+
path: _path + ".locations",
|
|
28
|
+
expected: "(Array<string> | null)",
|
|
29
|
+
value: input.locations
|
|
30
|
+
}, errorFactory)) && (null === input.replicas || "number" === typeof input.replicas || $guard(_exceptionable, {
|
|
31
|
+
path: _path + ".replicas",
|
|
32
|
+
expected: "(null | number)",
|
|
33
|
+
value: input.replicas
|
|
34
|
+
}, errorFactory));
|
|
35
|
+
return ("object" === typeof input && null !== input || $guard(true, {
|
|
36
|
+
path: _path + "",
|
|
37
|
+
expected: "Lock",
|
|
38
|
+
value: input
|
|
39
|
+
}, errorFactory)) && $ao0(input, _path + "", true) || $guard(true, {
|
|
40
|
+
path: _path + "",
|
|
41
|
+
expected: "Lock",
|
|
42
|
+
value: input
|
|
43
|
+
}, errorFactory);
|
|
44
|
+
})(input, "$input", true);
|
|
45
|
+
return input;
|
|
46
|
+
};
|
|
47
|
+
export const randomLock = generator => {
|
|
48
|
+
const $generator = __typia.createRandom.generator;
|
|
49
|
+
const $pick = __typia.createRandom.pick;
|
|
50
|
+
const $ro0 = (_recursive = false, _depth = 0) => ({
|
|
51
|
+
time: (generator?.customs ?? $generator.customs)?.number?.([]) ?? (generator?.number ?? $generator.number)(0, 100),
|
|
52
|
+
locations: $pick([
|
|
53
|
+
() => null,
|
|
54
|
+
() => (generator?.array ?? $generator.array)(() => (generator?.customs ?? $generator.customs)?.string?.([]) ?? (generator?.string ?? $generator.string)())
|
|
55
|
+
])(),
|
|
56
|
+
replicas: $pick([
|
|
57
|
+
() => null,
|
|
58
|
+
() => (generator?.customs ?? $generator.customs)?.number?.([]) ?? (generator?.number ?? $generator.number)(0, 100)
|
|
59
|
+
])()
|
|
60
|
+
});
|
|
61
|
+
return $ro0();
|
|
62
|
+
};
|
|
63
|
+
export const assertGuardLock = (input, errorFactory) => {
|
|
64
|
+
const __is = input => {
|
|
65
|
+
const $io0 = input => "number" === typeof input.time && (null === input.locations || Array.isArray(input.locations) && input.locations.every(elem => "string" === typeof elem)) && (null === input.replicas || "number" === typeof input.replicas);
|
|
66
|
+
return "object" === typeof input && null !== input && $io0(input);
|
|
67
|
+
};
|
|
68
|
+
if (false === __is(input))
|
|
69
|
+
((input, _path, _exceptionable = true) => {
|
|
70
|
+
const $guard = __typia.createAssertGuard.guard;
|
|
71
|
+
const $ao0 = (input, _path, _exceptionable = true) => ("number" === typeof input.time || $guard(_exceptionable, {
|
|
72
|
+
path: _path + ".time",
|
|
73
|
+
expected: "number",
|
|
74
|
+
value: input.time
|
|
75
|
+
}, errorFactory)) && (null === input.locations || (Array.isArray(input.locations) || $guard(_exceptionable, {
|
|
76
|
+
path: _path + ".locations",
|
|
77
|
+
expected: "(Array<string> | null)",
|
|
78
|
+
value: input.locations
|
|
79
|
+
}, errorFactory)) && input.locations.every((elem, _index1) => "string" === typeof elem || $guard(_exceptionable, {
|
|
80
|
+
path: _path + ".locations[" + _index1 + "]",
|
|
81
|
+
expected: "string",
|
|
82
|
+
value: elem
|
|
83
|
+
}, errorFactory)) || $guard(_exceptionable, {
|
|
84
|
+
path: _path + ".locations",
|
|
85
|
+
expected: "(Array<string> | null)",
|
|
86
|
+
value: input.locations
|
|
87
|
+
}, errorFactory)) && (null === input.replicas || "number" === typeof input.replicas || $guard(_exceptionable, {
|
|
88
|
+
path: _path + ".replicas",
|
|
89
|
+
expected: "(null | number)",
|
|
90
|
+
value: input.replicas
|
|
91
|
+
}, errorFactory));
|
|
92
|
+
return ("object" === typeof input && null !== input || $guard(true, {
|
|
93
|
+
path: _path + "",
|
|
94
|
+
expected: "Lock",
|
|
95
|
+
value: input
|
|
96
|
+
}, errorFactory)) && $ao0(input, _path + "", true) || $guard(true, {
|
|
97
|
+
path: _path + "",
|
|
98
|
+
expected: "Lock",
|
|
99
|
+
value: input
|
|
100
|
+
}, errorFactory);
|
|
101
|
+
})(input, "$input", true);
|
|
102
|
+
};
|
|
103
|
+
export const stringifyLock = input => {
|
|
104
|
+
const $string = __typia.json.createStringify.string;
|
|
105
|
+
const $so0 = input => `{"time":${input.time},"locations":${null !== input.locations ? `[${input.locations.map(elem => $string(elem)).join(",")}]` : "null"},"replicas":${null !== input.replicas ? input.replicas : "null"}}`;
|
|
106
|
+
return $so0(input);
|
|
107
|
+
};
|
|
108
|
+
export const assertStringifyLock = (input, errorFactory) => { const assert = (input, errorFactory) => {
|
|
109
|
+
const __is = input => {
|
|
110
|
+
const $io0 = input => "number" === typeof input.time && !Number.isNaN(input.time) && (null === input.locations || Array.isArray(input.locations) && input.locations.every(elem => "string" === typeof elem)) && (null === input.replicas || "number" === typeof input.replicas && !Number.isNaN(input.replicas));
|
|
111
|
+
return "object" === typeof input && null !== input && $io0(input);
|
|
112
|
+
};
|
|
113
|
+
if (false === __is(input))
|
|
114
|
+
((input, _path, _exceptionable = true) => {
|
|
115
|
+
const $guard = __typia.json.createAssertStringify.guard;
|
|
116
|
+
const $ao0 = (input, _path, _exceptionable = true) => ("number" === typeof input.time && !Number.isNaN(input.time) || $guard(_exceptionable, {
|
|
117
|
+
path: _path + ".time",
|
|
118
|
+
expected: "number",
|
|
119
|
+
value: input.time
|
|
120
|
+
}, errorFactory)) && (null === input.locations || (Array.isArray(input.locations) || $guard(_exceptionable, {
|
|
121
|
+
path: _path + ".locations",
|
|
122
|
+
expected: "(Array<string> | null)",
|
|
123
|
+
value: input.locations
|
|
124
|
+
}, errorFactory)) && input.locations.every((elem, _index1) => "string" === typeof elem || $guard(_exceptionable, {
|
|
125
|
+
path: _path + ".locations[" + _index1 + "]",
|
|
126
|
+
expected: "string",
|
|
127
|
+
value: elem
|
|
128
|
+
}, errorFactory)) || $guard(_exceptionable, {
|
|
129
|
+
path: _path + ".locations",
|
|
130
|
+
expected: "(Array<string> | null)",
|
|
131
|
+
value: input.locations
|
|
132
|
+
}, errorFactory)) && (null === input.replicas || "number" === typeof input.replicas && !Number.isNaN(input.replicas) || $guard(_exceptionable, {
|
|
133
|
+
path: _path + ".replicas",
|
|
134
|
+
expected: "(null | number)",
|
|
135
|
+
value: input.replicas
|
|
136
|
+
}, errorFactory));
|
|
137
|
+
return ("object" === typeof input && null !== input || $guard(true, {
|
|
138
|
+
path: _path + "",
|
|
139
|
+
expected: "Lock",
|
|
140
|
+
value: input
|
|
141
|
+
}, errorFactory)) && $ao0(input, _path + "", true) || $guard(true, {
|
|
142
|
+
path: _path + "",
|
|
143
|
+
expected: "Lock",
|
|
144
|
+
value: input
|
|
145
|
+
}, errorFactory);
|
|
146
|
+
})(input, "$input", true);
|
|
147
|
+
return input;
|
|
148
|
+
}; const stringify = input => {
|
|
149
|
+
const $string = __typia.json.createAssertStringify.string;
|
|
150
|
+
const $so0 = input => `{"time":${input.time},"locations":${null !== input.locations ? `[${input.locations.map(elem => $string(elem)).join(",")}]` : "null"},"replicas":${null !== input.replicas ? input.replicas : "null"}}`;
|
|
151
|
+
return $so0(input);
|
|
152
|
+
}; return stringify(assert(input, errorFactory)); };
|
|
@@ -0,0 +1,150 @@
|
|
|
1
|
+
import { type AssertionGuard as __AssertionGuard } from "typia";
|
|
2
|
+
import type { Paths } from 'type-fest';
|
|
3
|
+
export interface Settings {
|
|
4
|
+
module?: {
|
|
5
|
+
tabs?: Record<string, ModuleTabsSettingsValue> & {
|
|
6
|
+
settingsPanelStore?: ModuleTabsSettingsValue & {
|
|
7
|
+
activeSectionIndex?: number;
|
|
8
|
+
};
|
|
9
|
+
};
|
|
10
|
+
};
|
|
11
|
+
browser: {
|
|
12
|
+
createMenu: {
|
|
13
|
+
sortOrder: string[];
|
|
14
|
+
};
|
|
15
|
+
};
|
|
16
|
+
toolbarTags: {
|
|
17
|
+
exclude: string[];
|
|
18
|
+
};
|
|
19
|
+
deadlines: {
|
|
20
|
+
include: string[];
|
|
21
|
+
};
|
|
22
|
+
assignees: {
|
|
23
|
+
include: string[];
|
|
24
|
+
};
|
|
25
|
+
clock: {
|
|
26
|
+
enable: boolean;
|
|
27
|
+
show24Hours: boolean;
|
|
28
|
+
showAmPm: boolean;
|
|
29
|
+
showSeconds: boolean;
|
|
30
|
+
showDayOfWeek: boolean;
|
|
31
|
+
showDate: boolean;
|
|
32
|
+
format?: string;
|
|
33
|
+
};
|
|
34
|
+
swarm: {
|
|
35
|
+
color: string;
|
|
36
|
+
};
|
|
37
|
+
dashboard: {
|
|
38
|
+
maxMru: number;
|
|
39
|
+
maxTabs: number;
|
|
40
|
+
};
|
|
41
|
+
script: {
|
|
42
|
+
createMenu: {
|
|
43
|
+
showPreview: boolean;
|
|
44
|
+
};
|
|
45
|
+
};
|
|
46
|
+
rundown: {
|
|
47
|
+
eventThumbnails: boolean;
|
|
48
|
+
};
|
|
49
|
+
gallery: {
|
|
50
|
+
dimOnBlur: boolean;
|
|
51
|
+
};
|
|
52
|
+
history: boolean;
|
|
53
|
+
keymap: unknown;
|
|
54
|
+
media: {
|
|
55
|
+
guide?: {
|
|
56
|
+
mask?: boolean;
|
|
57
|
+
};
|
|
58
|
+
stepManyFrames: number;
|
|
59
|
+
liveZoomDuration: number;
|
|
60
|
+
importTitleTemplate: string;
|
|
61
|
+
tile: {
|
|
62
|
+
preview: string;
|
|
63
|
+
showRenderProgress: boolean;
|
|
64
|
+
};
|
|
65
|
+
timecodeReference: string;
|
|
66
|
+
maxSubclipDuration: number;
|
|
67
|
+
rewindStep: number;
|
|
68
|
+
forwardStep: number;
|
|
69
|
+
interlacedPlayback: string;
|
|
70
|
+
playbackRates: number[];
|
|
71
|
+
subtitles: {
|
|
72
|
+
spacing: number;
|
|
73
|
+
maxCharactersPerLine: number;
|
|
74
|
+
};
|
|
75
|
+
subtitleTemplateId?: string;
|
|
76
|
+
initialVolume: string;
|
|
77
|
+
guides: Array<{
|
|
78
|
+
label: string;
|
|
79
|
+
aspectRatio: string;
|
|
80
|
+
}>;
|
|
81
|
+
download: boolean;
|
|
82
|
+
transcribe?: {
|
|
83
|
+
subtitleDisclaimer?: {
|
|
84
|
+
isUserConfigurable?: boolean;
|
|
85
|
+
defaultValue?: {
|
|
86
|
+
enabled?: false;
|
|
87
|
+
text?: Array<{
|
|
88
|
+
language: string;
|
|
89
|
+
value: string;
|
|
90
|
+
}>;
|
|
91
|
+
offset?: number;
|
|
92
|
+
duration?: number;
|
|
93
|
+
};
|
|
94
|
+
};
|
|
95
|
+
};
|
|
96
|
+
};
|
|
97
|
+
predefinedTags?: string[];
|
|
98
|
+
storyboard: {
|
|
99
|
+
assets: {
|
|
100
|
+
story: {
|
|
101
|
+
excerpt: {
|
|
102
|
+
maxLines: number;
|
|
103
|
+
mode: string;
|
|
104
|
+
};
|
|
105
|
+
};
|
|
106
|
+
};
|
|
107
|
+
pipeline: {
|
|
108
|
+
search: {
|
|
109
|
+
maxItemsDisplayed: number;
|
|
110
|
+
};
|
|
111
|
+
};
|
|
112
|
+
item: {
|
|
113
|
+
maxHeight: number;
|
|
114
|
+
};
|
|
115
|
+
};
|
|
116
|
+
plugins: {
|
|
117
|
+
adobe: {
|
|
118
|
+
useProxies: boolean;
|
|
119
|
+
};
|
|
120
|
+
};
|
|
121
|
+
crashScreen: boolean;
|
|
122
|
+
debug: boolean;
|
|
123
|
+
flags: {
|
|
124
|
+
utils: boolean;
|
|
125
|
+
history: boolean;
|
|
126
|
+
refs: boolean;
|
|
127
|
+
access: boolean;
|
|
128
|
+
files: boolean;
|
|
129
|
+
export: boolean;
|
|
130
|
+
json: boolean;
|
|
131
|
+
hlsjs: boolean;
|
|
132
|
+
};
|
|
133
|
+
}
|
|
134
|
+
export declare const isSettings: (input: unknown) => input is Settings;
|
|
135
|
+
export declare const assertSettings: (input: unknown) => Settings;
|
|
136
|
+
export declare const randomSettings: () => Settings;
|
|
137
|
+
export declare const assertGuardSettings: __AssertionGuard<Settings>;
|
|
138
|
+
export declare const stringifySettings: (input: Settings) => string;
|
|
139
|
+
export declare const assertStringifySettings: (input: unknown) => string;
|
|
140
|
+
export type SettingsPaths = Paths<Settings>;
|
|
141
|
+
export declare const isSettingsPaths: (input: unknown) => input is "module" | "browser" | "toolbarTags" | "deadlines" | "assignees" | "clock" | "swarm" | "dashboard" | "script" | "rundown" | "gallery" | "history" | "keymap" | "media" | "predefinedTags" | "storyboard" | "plugins" | "crashScreen" | "debug" | "flags" | "module.tabs" | `module.tabs.${string}` | "browser.createMenu" | "browser.createMenu.sortOrder" | `browser.createMenu.sortOrder.${number}` | "toolbarTags.exclude" | `toolbarTags.exclude.${number}` | "deadlines.include" | `deadlines.include.${number}` | "assignees.include" | `assignees.include.${number}` | "clock.enable" | "clock.show24Hours" | "clock.showAmPm" | "clock.showSeconds" | "clock.showDayOfWeek" | "clock.showDate" | "clock.format" | "swarm.color" | "dashboard.maxMru" | "dashboard.maxTabs" | "script.createMenu" | "script.createMenu.showPreview" | "rundown.eventThumbnails" | "gallery.dimOnBlur" | "media.guide" | "media.stepManyFrames" | "media.liveZoomDuration" | "media.importTitleTemplate" | "media.tile" | "media.timecodeReference" | "media.maxSubclipDuration" | "media.rewindStep" | "media.forwardStep" | "media.interlacedPlayback" | "media.playbackRates" | "media.subtitles" | "media.subtitleTemplateId" | "media.initialVolume" | "media.guides" | "media.download" | "media.transcribe" | "media.guide.mask" | "media.tile.preview" | "media.tile.showRenderProgress" | `media.playbackRates.${number}` | "media.subtitles.spacing" | "media.subtitles.maxCharactersPerLine" | `media.guides.${number}` | `media.guides.${number}.label` | `media.guides.${number}.aspectRatio` | "media.transcribe.subtitleDisclaimer" | "media.transcribe.subtitleDisclaimer.isUserConfigurable" | "media.transcribe.subtitleDisclaimer.defaultValue" | "media.transcribe.subtitleDisclaimer.defaultValue.enabled" | "media.transcribe.subtitleDisclaimer.defaultValue.text" | "media.transcribe.subtitleDisclaimer.defaultValue.offset" | "media.transcribe.subtitleDisclaimer.defaultValue.duration" | `media.transcribe.subtitleDisclaimer.defaultValue.text.${number}` | `media.transcribe.subtitleDisclaimer.defaultValue.text.${number}.language` | `media.transcribe.subtitleDisclaimer.defaultValue.text.${number}.value` | `predefinedTags.${number}` | "storyboard.assets" | "storyboard.pipeline" | "storyboard.item" | "storyboard.assets.story" | "storyboard.assets.story.excerpt" | "storyboard.assets.story.excerpt.maxLines" | "storyboard.assets.story.excerpt.mode" | "storyboard.pipeline.search" | "storyboard.pipeline.search.maxItemsDisplayed" | "storyboard.item.maxHeight" | "plugins.adobe" | "plugins.adobe.useProxies" | "flags.history" | "flags.utils" | "flags.refs" | "flags.access" | "flags.files" | "flags.export" | "flags.json" | "flags.hlsjs";
|
|
142
|
+
export declare const assertSettingsPaths: (input: unknown) => "module" | "browser" | "toolbarTags" | "deadlines" | "assignees" | "clock" | "swarm" | "dashboard" | "script" | "rundown" | "gallery" | "history" | "keymap" | "media" | "predefinedTags" | "storyboard" | "plugins" | "crashScreen" | "debug" | "flags" | "module.tabs" | `module.tabs.${string}` | "browser.createMenu" | "browser.createMenu.sortOrder" | `browser.createMenu.sortOrder.${number}` | "toolbarTags.exclude" | `toolbarTags.exclude.${number}` | "deadlines.include" | `deadlines.include.${number}` | "assignees.include" | `assignees.include.${number}` | "clock.enable" | "clock.show24Hours" | "clock.showAmPm" | "clock.showSeconds" | "clock.showDayOfWeek" | "clock.showDate" | "clock.format" | "swarm.color" | "dashboard.maxMru" | "dashboard.maxTabs" | "script.createMenu" | "script.createMenu.showPreview" | "rundown.eventThumbnails" | "gallery.dimOnBlur" | "media.guide" | "media.stepManyFrames" | "media.liveZoomDuration" | "media.importTitleTemplate" | "media.tile" | "media.timecodeReference" | "media.maxSubclipDuration" | "media.rewindStep" | "media.forwardStep" | "media.interlacedPlayback" | "media.playbackRates" | "media.subtitles" | "media.subtitleTemplateId" | "media.initialVolume" | "media.guides" | "media.download" | "media.transcribe" | "media.guide.mask" | "media.tile.preview" | "media.tile.showRenderProgress" | `media.playbackRates.${number}` | "media.subtitles.spacing" | "media.subtitles.maxCharactersPerLine" | `media.guides.${number}` | `media.guides.${number}.label` | `media.guides.${number}.aspectRatio` | "media.transcribe.subtitleDisclaimer" | "media.transcribe.subtitleDisclaimer.isUserConfigurable" | "media.transcribe.subtitleDisclaimer.defaultValue" | "media.transcribe.subtitleDisclaimer.defaultValue.enabled" | "media.transcribe.subtitleDisclaimer.defaultValue.text" | "media.transcribe.subtitleDisclaimer.defaultValue.offset" | "media.transcribe.subtitleDisclaimer.defaultValue.duration" | `media.transcribe.subtitleDisclaimer.defaultValue.text.${number}` | `media.transcribe.subtitleDisclaimer.defaultValue.text.${number}.language` | `media.transcribe.subtitleDisclaimer.defaultValue.text.${number}.value` | `predefinedTags.${number}` | "storyboard.assets" | "storyboard.pipeline" | "storyboard.item" | "storyboard.assets.story" | "storyboard.assets.story.excerpt" | "storyboard.assets.story.excerpt.maxLines" | "storyboard.assets.story.excerpt.mode" | "storyboard.pipeline.search" | "storyboard.pipeline.search.maxItemsDisplayed" | "storyboard.item.maxHeight" | "plugins.adobe" | "plugins.adobe.useProxies" | "flags.history" | "flags.utils" | "flags.refs" | "flags.access" | "flags.files" | "flags.export" | "flags.json" | "flags.hlsjs";
|
|
143
|
+
export declare const randomSettingsPaths: () => "module" | "browser" | "toolbarTags" | "deadlines" | "assignees" | "clock" | "swarm" | "dashboard" | "script" | "rundown" | "gallery" | "history" | "keymap" | "media" | "predefinedTags" | "storyboard" | "plugins" | "crashScreen" | "debug" | "flags" | "module.tabs" | `module.tabs.${string}` | "browser.createMenu" | "browser.createMenu.sortOrder" | `browser.createMenu.sortOrder.${number}` | "toolbarTags.exclude" | `toolbarTags.exclude.${number}` | "deadlines.include" | `deadlines.include.${number}` | "assignees.include" | `assignees.include.${number}` | "clock.enable" | "clock.show24Hours" | "clock.showAmPm" | "clock.showSeconds" | "clock.showDayOfWeek" | "clock.showDate" | "clock.format" | "swarm.color" | "dashboard.maxMru" | "dashboard.maxTabs" | "script.createMenu" | "script.createMenu.showPreview" | "rundown.eventThumbnails" | "gallery.dimOnBlur" | "media.guide" | "media.stepManyFrames" | "media.liveZoomDuration" | "media.importTitleTemplate" | "media.tile" | "media.timecodeReference" | "media.maxSubclipDuration" | "media.rewindStep" | "media.forwardStep" | "media.interlacedPlayback" | "media.playbackRates" | "media.subtitles" | "media.subtitleTemplateId" | "media.initialVolume" | "media.guides" | "media.download" | "media.transcribe" | "media.guide.mask" | "media.tile.preview" | "media.tile.showRenderProgress" | `media.playbackRates.${number}` | "media.subtitles.spacing" | "media.subtitles.maxCharactersPerLine" | `media.guides.${number}` | `media.guides.${number}.label` | `media.guides.${number}.aspectRatio` | "media.transcribe.subtitleDisclaimer" | "media.transcribe.subtitleDisclaimer.isUserConfigurable" | "media.transcribe.subtitleDisclaimer.defaultValue" | "media.transcribe.subtitleDisclaimer.defaultValue.enabled" | "media.transcribe.subtitleDisclaimer.defaultValue.text" | "media.transcribe.subtitleDisclaimer.defaultValue.offset" | "media.transcribe.subtitleDisclaimer.defaultValue.duration" | `media.transcribe.subtitleDisclaimer.defaultValue.text.${number}` | `media.transcribe.subtitleDisclaimer.defaultValue.text.${number}.language` | `media.transcribe.subtitleDisclaimer.defaultValue.text.${number}.value` | `predefinedTags.${number}` | "storyboard.assets" | "storyboard.pipeline" | "storyboard.item" | "storyboard.assets.story" | "storyboard.assets.story.excerpt" | "storyboard.assets.story.excerpt.maxLines" | "storyboard.assets.story.excerpt.mode" | "storyboard.pipeline.search" | "storyboard.pipeline.search.maxItemsDisplayed" | "storyboard.item.maxHeight" | "plugins.adobe" | "plugins.adobe.useProxies" | "flags.history" | "flags.utils" | "flags.refs" | "flags.access" | "flags.files" | "flags.export" | "flags.json" | "flags.hlsjs";
|
|
144
|
+
export declare const assertGuardSettingsPaths: __AssertionGuard<SettingsPaths>;
|
|
145
|
+
export declare const stringifySettingsPaths: (input: "module" | "browser" | "toolbarTags" | "deadlines" | "assignees" | "clock" | "swarm" | "dashboard" | "script" | "rundown" | "gallery" | "history" | "keymap" | "media" | "predefinedTags" | "storyboard" | "plugins" | "crashScreen" | "debug" | "flags" | "module.tabs" | `module.tabs.${string}` | "browser.createMenu" | "browser.createMenu.sortOrder" | `browser.createMenu.sortOrder.${number}` | "toolbarTags.exclude" | `toolbarTags.exclude.${number}` | "deadlines.include" | `deadlines.include.${number}` | "assignees.include" | `assignees.include.${number}` | "clock.enable" | "clock.show24Hours" | "clock.showAmPm" | "clock.showSeconds" | "clock.showDayOfWeek" | "clock.showDate" | "clock.format" | "swarm.color" | "dashboard.maxMru" | "dashboard.maxTabs" | "script.createMenu" | "script.createMenu.showPreview" | "rundown.eventThumbnails" | "gallery.dimOnBlur" | "media.guide" | "media.stepManyFrames" | "media.liveZoomDuration" | "media.importTitleTemplate" | "media.tile" | "media.timecodeReference" | "media.maxSubclipDuration" | "media.rewindStep" | "media.forwardStep" | "media.interlacedPlayback" | "media.playbackRates" | "media.subtitles" | "media.subtitleTemplateId" | "media.initialVolume" | "media.guides" | "media.download" | "media.transcribe" | "media.guide.mask" | "media.tile.preview" | "media.tile.showRenderProgress" | `media.playbackRates.${number}` | "media.subtitles.spacing" | "media.subtitles.maxCharactersPerLine" | `media.guides.${number}` | `media.guides.${number}.label` | `media.guides.${number}.aspectRatio` | "media.transcribe.subtitleDisclaimer" | "media.transcribe.subtitleDisclaimer.isUserConfigurable" | "media.transcribe.subtitleDisclaimer.defaultValue" | "media.transcribe.subtitleDisclaimer.defaultValue.enabled" | "media.transcribe.subtitleDisclaimer.defaultValue.text" | "media.transcribe.subtitleDisclaimer.defaultValue.offset" | "media.transcribe.subtitleDisclaimer.defaultValue.duration" | `media.transcribe.subtitleDisclaimer.defaultValue.text.${number}` | `media.transcribe.subtitleDisclaimer.defaultValue.text.${number}.language` | `media.transcribe.subtitleDisclaimer.defaultValue.text.${number}.value` | `predefinedTags.${number}` | "storyboard.assets" | "storyboard.pipeline" | "storyboard.item" | "storyboard.assets.story" | "storyboard.assets.story.excerpt" | "storyboard.assets.story.excerpt.maxLines" | "storyboard.assets.story.excerpt.mode" | "storyboard.pipeline.search" | "storyboard.pipeline.search.maxItemsDisplayed" | "storyboard.item.maxHeight" | "plugins.adobe" | "plugins.adobe.useProxies" | "flags.history" | "flags.utils" | "flags.refs" | "flags.access" | "flags.files" | "flags.export" | "flags.json" | "flags.hlsjs") => string;
|
|
146
|
+
export declare const assertStringifySettingsPaths: (input: unknown) => string;
|
|
147
|
+
interface ModuleTabsSettingsValue {
|
|
148
|
+
activeTab: string;
|
|
149
|
+
}
|
|
150
|
+
export {};
|