@nxtedition/types 23.0.63 → 23.1.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/dist/common/settings.d.ts +14 -0
- package/dist/nxtpression.d.ts +14 -0
- package/dist/records/validate/assert-guard.js +198 -128
- package/dist/records/validate/assert.js +198 -128
- package/dist/records/validate/is.js +3 -3
- package/dist/records/validate/schemas.js +42 -0
- package/dist/records/validate/stringify.js +6 -6
- package/dist/records/validate/validate-equals.js +287 -162
- package/dist/records/validate/validate.js +184 -128
- package/package.json +1 -1
|
@@ -223,6 +223,19 @@ export interface Settings {
|
|
|
223
223
|
app?: string;
|
|
224
224
|
args?: string[];
|
|
225
225
|
} | string;
|
|
226
|
+
recorder?: {
|
|
227
|
+
microphone?: {
|
|
228
|
+
deviceId?: string;
|
|
229
|
+
inputGainDb?: number;
|
|
230
|
+
monitorInput?: boolean;
|
|
231
|
+
};
|
|
232
|
+
webcam?: {
|
|
233
|
+
deviceId?: string;
|
|
234
|
+
frameRate?: number;
|
|
235
|
+
aspectRatio?: number;
|
|
236
|
+
};
|
|
237
|
+
countdown?: number;
|
|
238
|
+
};
|
|
226
239
|
};
|
|
227
240
|
edit?: {
|
|
228
241
|
thumbnailView?: "filmStrip" | "thumbnail" | "none";
|
|
@@ -238,6 +251,7 @@ export interface Settings {
|
|
|
238
251
|
voiceOver?: {
|
|
239
252
|
inputDevice?: string;
|
|
240
253
|
inputGainDb?: number;
|
|
254
|
+
monitorInput?: boolean;
|
|
241
255
|
backgroundReductionDb?: number;
|
|
242
256
|
recordMode?: "instant" | "punchAndRoll";
|
|
243
257
|
preRollDuration?: number;
|
package/dist/nxtpression.d.ts
CHANGED
|
@@ -3196,6 +3196,19 @@ declare interface Settings {
|
|
|
3196
3196
|
app?: string;
|
|
3197
3197
|
args?: string[];
|
|
3198
3198
|
} | string;
|
|
3199
|
+
recorder?: {
|
|
3200
|
+
microphone?: {
|
|
3201
|
+
deviceId?: string;
|
|
3202
|
+
inputGainDb?: number;
|
|
3203
|
+
monitorInput?: boolean;
|
|
3204
|
+
};
|
|
3205
|
+
webcam?: {
|
|
3206
|
+
deviceId?: string;
|
|
3207
|
+
frameRate?: number;
|
|
3208
|
+
aspectRatio?: number;
|
|
3209
|
+
};
|
|
3210
|
+
countdown?: number;
|
|
3211
|
+
};
|
|
3199
3212
|
};
|
|
3200
3213
|
edit?: {
|
|
3201
3214
|
thumbnailView?: "filmStrip" | "thumbnail" | "none";
|
|
@@ -3211,6 +3224,7 @@ declare interface Settings {
|
|
|
3211
3224
|
voiceOver?: {
|
|
3212
3225
|
inputDevice?: string;
|
|
3213
3226
|
inputGainDb?: number;
|
|
3227
|
+
monitorInput?: boolean;
|
|
3214
3228
|
backgroundReductionDb?: number;
|
|
3215
3229
|
recordMode?: "instant" | "punchAndRoll";
|
|
3216
3230
|
preRollDuration?: number;
|