@nxtedition/types 23.1.0 → 23.1.1
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 +13 -0
- package/dist/nxtpression.d.ts +14 -0
- package/dist/records/validate/assert-guard.js +304 -204
- package/dist/records/validate/assert.js +304 -204
- package/dist/records/validate/is.js +3 -3
- package/dist/records/validate/schemas.js +54 -0
- package/dist/records/validate/stringify.js +5 -5
- package/dist/records/validate/validate-equals.js +361 -235
- package/dist/records/validate/validate.js +283 -203
- package/package.json +1 -1
|
@@ -239,6 +239,9 @@ export interface Settings {
|
|
|
239
239
|
};
|
|
240
240
|
edit?: {
|
|
241
241
|
thumbnailView?: "filmStrip" | "thumbnail" | "none";
|
|
242
|
+
audioMapping?: {
|
|
243
|
+
presets?: Array<AudioMappingPreset>;
|
|
244
|
+
};
|
|
242
245
|
normalize?: {
|
|
243
246
|
presets?: Array<{
|
|
244
247
|
id: string;
|
|
@@ -389,4 +392,14 @@ interface KeymapSetting {
|
|
|
389
392
|
title?: string;
|
|
390
393
|
sequence?: string;
|
|
391
394
|
}
|
|
395
|
+
export interface AudioMappingPreset {
|
|
396
|
+
id: string;
|
|
397
|
+
title: string;
|
|
398
|
+
mapping?: number[][];
|
|
399
|
+
mute?: boolean[];
|
|
400
|
+
minInChannels?: number;
|
|
401
|
+
maxInChannels?: number;
|
|
402
|
+
minOutChannels?: number;
|
|
403
|
+
maxOutChannels?: number;
|
|
404
|
+
}
|
|
392
405
|
export {};
|
package/dist/nxtpression.d.ts
CHANGED
|
@@ -379,6 +379,17 @@ declare interface AssetTypesRecord {
|
|
|
379
379
|
};
|
|
380
380
|
}
|
|
381
381
|
|
|
382
|
+
declare interface AudioMappingPreset {
|
|
383
|
+
id: string;
|
|
384
|
+
title: string;
|
|
385
|
+
mapping?: number[][];
|
|
386
|
+
mute?: boolean[];
|
|
387
|
+
minInChannels?: number;
|
|
388
|
+
maxInChannels?: number;
|
|
389
|
+
minOutChannels?: number;
|
|
390
|
+
maxOutChannels?: number;
|
|
391
|
+
}
|
|
392
|
+
|
|
382
393
|
declare interface AuthDomainRecord {
|
|
383
394
|
/** hash of a user's password, or null if not set */
|
|
384
395
|
hash?: string | null;
|
|
@@ -3212,6 +3223,9 @@ declare interface Settings {
|
|
|
3212
3223
|
};
|
|
3213
3224
|
edit?: {
|
|
3214
3225
|
thumbnailView?: "filmStrip" | "thumbnail" | "none";
|
|
3226
|
+
audioMapping?: {
|
|
3227
|
+
presets?: Array<AudioMappingPreset>;
|
|
3228
|
+
};
|
|
3215
3229
|
normalize?: {
|
|
3216
3230
|
presets?: Array<{
|
|
3217
3231
|
id: string;
|