@tx5dr/contracts 1.7.8 → 1.7.10
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/schema/__tests__/audio.schema.test.js +14 -1
- package/dist/schema/__tests__/audio.schema.test.js.map +1 -1
- package/dist/schema/audio.schema.d.ts +30 -0
- package/dist/schema/audio.schema.d.ts.map +1 -1
- package/dist/schema/audio.schema.js +4 -0
- package/dist/schema/audio.schema.js.map +1 -1
- package/dist/schema/cpu-profile.schema.d.ts +6 -6
- package/dist/schema/plugin.schema.d.ts +51 -49
- package/dist/schema/plugin.schema.d.ts.map +1 -1
- package/dist/schema/plugin.schema.js +4 -0
- package/dist/schema/plugin.schema.js.map +1 -1
- package/dist/schema/radio-profile.schema.d.ts +86 -0
- package/dist/schema/radio-profile.schema.d.ts.map +1 -1
- package/dist/schema/update.schema.d.ts +7 -7
- package/dist/schema/update.schema.d.ts.map +1 -1
- package/dist/schema/update.schema.js +1 -0
- package/dist/schema/update.schema.js.map +1 -1
- package/dist/schema/websocket.schema.d.ts +66 -66
- package/package.json +1 -1
- package/src/schema/__tests__/audio.schema.test.ts +18 -0
- package/src/schema/audio.schema.ts +7 -0
- package/src/schema/plugin.schema.ts +4 -0
- package/src/schema/update.schema.ts +1 -0
- package/test/plugin-slot-schema.test.ts +9 -0
|
@@ -213,6 +213,8 @@ export declare const RadioProfileSchema: z.ZodObject<{
|
|
|
213
213
|
outputSampleRate: z.ZodOptional<z.ZodNumber>;
|
|
214
214
|
inputBufferSize: z.ZodOptional<z.ZodNumber>;
|
|
215
215
|
outputBufferSize: z.ZodOptional<z.ZodNumber>;
|
|
216
|
+
outputSampleFormat: z.ZodOptional<z.ZodEnum<["float32", "int16"]>>;
|
|
217
|
+
outputChannelMode: z.ZodOptional<z.ZodEnum<["mono", "left", "right", "both"]>>;
|
|
216
218
|
sampleRate: z.ZodOptional<z.ZodNumber>;
|
|
217
219
|
bufferSize: z.ZodOptional<z.ZodNumber>;
|
|
218
220
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -223,6 +225,8 @@ export declare const RadioProfileSchema: z.ZodObject<{
|
|
|
223
225
|
outputSampleRate?: number | undefined;
|
|
224
226
|
inputBufferSize?: number | undefined;
|
|
225
227
|
outputBufferSize?: number | undefined;
|
|
228
|
+
outputSampleFormat?: "float32" | "int16" | undefined;
|
|
229
|
+
outputChannelMode?: "mono" | "left" | "right" | "both" | undefined;
|
|
226
230
|
bufferSize?: number | undefined;
|
|
227
231
|
}, {
|
|
228
232
|
sampleRate?: number | undefined;
|
|
@@ -232,6 +236,8 @@ export declare const RadioProfileSchema: z.ZodObject<{
|
|
|
232
236
|
outputSampleRate?: number | undefined;
|
|
233
237
|
inputBufferSize?: number | undefined;
|
|
234
238
|
outputBufferSize?: number | undefined;
|
|
239
|
+
outputSampleFormat?: "float32" | "int16" | undefined;
|
|
240
|
+
outputChannelMode?: "mono" | "left" | "right" | "both" | undefined;
|
|
235
241
|
bufferSize?: number | undefined;
|
|
236
242
|
}>;
|
|
237
243
|
audioLockedToRadio: z.ZodBoolean;
|
|
@@ -249,6 +255,8 @@ export declare const RadioProfileSchema: z.ZodObject<{
|
|
|
249
255
|
outputSampleRate?: number | undefined;
|
|
250
256
|
inputBufferSize?: number | undefined;
|
|
251
257
|
outputBufferSize?: number | undefined;
|
|
258
|
+
outputSampleFormat?: "float32" | "int16" | undefined;
|
|
259
|
+
outputChannelMode?: "mono" | "left" | "right" | "both" | undefined;
|
|
252
260
|
bufferSize?: number | undefined;
|
|
253
261
|
};
|
|
254
262
|
createdAt: number;
|
|
@@ -306,6 +314,8 @@ export declare const RadioProfileSchema: z.ZodObject<{
|
|
|
306
314
|
outputSampleRate?: number | undefined;
|
|
307
315
|
inputBufferSize?: number | undefined;
|
|
308
316
|
outputBufferSize?: number | undefined;
|
|
317
|
+
outputSampleFormat?: "float32" | "int16" | undefined;
|
|
318
|
+
outputChannelMode?: "mono" | "left" | "right" | "both" | undefined;
|
|
309
319
|
bufferSize?: number | undefined;
|
|
310
320
|
};
|
|
311
321
|
createdAt: number;
|
|
@@ -564,6 +574,8 @@ export declare const CreateProfileRequestSchema: z.ZodObject<{
|
|
|
564
574
|
outputSampleRate: z.ZodOptional<z.ZodNumber>;
|
|
565
575
|
inputBufferSize: z.ZodOptional<z.ZodNumber>;
|
|
566
576
|
outputBufferSize: z.ZodOptional<z.ZodNumber>;
|
|
577
|
+
outputSampleFormat: z.ZodOptional<z.ZodEnum<["float32", "int16"]>>;
|
|
578
|
+
outputChannelMode: z.ZodOptional<z.ZodEnum<["mono", "left", "right", "both"]>>;
|
|
567
579
|
sampleRate: z.ZodOptional<z.ZodNumber>;
|
|
568
580
|
bufferSize: z.ZodOptional<z.ZodNumber>;
|
|
569
581
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -574,6 +586,8 @@ export declare const CreateProfileRequestSchema: z.ZodObject<{
|
|
|
574
586
|
outputSampleRate?: number | undefined;
|
|
575
587
|
inputBufferSize?: number | undefined;
|
|
576
588
|
outputBufferSize?: number | undefined;
|
|
589
|
+
outputSampleFormat?: "float32" | "int16" | undefined;
|
|
590
|
+
outputChannelMode?: "mono" | "left" | "right" | "both" | undefined;
|
|
577
591
|
bufferSize?: number | undefined;
|
|
578
592
|
}, {
|
|
579
593
|
sampleRate?: number | undefined;
|
|
@@ -583,6 +597,8 @@ export declare const CreateProfileRequestSchema: z.ZodObject<{
|
|
|
583
597
|
outputSampleRate?: number | undefined;
|
|
584
598
|
inputBufferSize?: number | undefined;
|
|
585
599
|
outputBufferSize?: number | undefined;
|
|
600
|
+
outputSampleFormat?: "float32" | "int16" | undefined;
|
|
601
|
+
outputChannelMode?: "mono" | "left" | "right" | "both" | undefined;
|
|
586
602
|
bufferSize?: number | undefined;
|
|
587
603
|
}>>;
|
|
588
604
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -636,6 +652,8 @@ export declare const CreateProfileRequestSchema: z.ZodObject<{
|
|
|
636
652
|
outputSampleRate?: number | undefined;
|
|
637
653
|
inputBufferSize?: number | undefined;
|
|
638
654
|
outputBufferSize?: number | undefined;
|
|
655
|
+
outputSampleFormat?: "float32" | "int16" | undefined;
|
|
656
|
+
outputChannelMode?: "mono" | "left" | "right" | "both" | undefined;
|
|
639
657
|
bufferSize?: number | undefined;
|
|
640
658
|
} | undefined;
|
|
641
659
|
description?: string | undefined;
|
|
@@ -689,6 +707,8 @@ export declare const CreateProfileRequestSchema: z.ZodObject<{
|
|
|
689
707
|
outputSampleRate?: number | undefined;
|
|
690
708
|
inputBufferSize?: number | undefined;
|
|
691
709
|
outputBufferSize?: number | undefined;
|
|
710
|
+
outputSampleFormat?: "float32" | "int16" | undefined;
|
|
711
|
+
outputChannelMode?: "mono" | "left" | "right" | "both" | undefined;
|
|
692
712
|
bufferSize?: number | undefined;
|
|
693
713
|
} | undefined;
|
|
694
714
|
description?: string | undefined;
|
|
@@ -904,6 +924,8 @@ export declare const UpdateProfileRequestSchema: z.ZodObject<{
|
|
|
904
924
|
outputSampleRate: z.ZodOptional<z.ZodNumber>;
|
|
905
925
|
inputBufferSize: z.ZodOptional<z.ZodNumber>;
|
|
906
926
|
outputBufferSize: z.ZodOptional<z.ZodNumber>;
|
|
927
|
+
outputSampleFormat: z.ZodOptional<z.ZodEnum<["float32", "int16"]>>;
|
|
928
|
+
outputChannelMode: z.ZodOptional<z.ZodEnum<["mono", "left", "right", "both"]>>;
|
|
907
929
|
sampleRate: z.ZodOptional<z.ZodNumber>;
|
|
908
930
|
bufferSize: z.ZodOptional<z.ZodNumber>;
|
|
909
931
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -914,6 +936,8 @@ export declare const UpdateProfileRequestSchema: z.ZodObject<{
|
|
|
914
936
|
outputSampleRate?: number | undefined;
|
|
915
937
|
inputBufferSize?: number | undefined;
|
|
916
938
|
outputBufferSize?: number | undefined;
|
|
939
|
+
outputSampleFormat?: "float32" | "int16" | undefined;
|
|
940
|
+
outputChannelMode?: "mono" | "left" | "right" | "both" | undefined;
|
|
917
941
|
bufferSize?: number | undefined;
|
|
918
942
|
}, {
|
|
919
943
|
sampleRate?: number | undefined;
|
|
@@ -923,6 +947,8 @@ export declare const UpdateProfileRequestSchema: z.ZodObject<{
|
|
|
923
947
|
outputSampleRate?: number | undefined;
|
|
924
948
|
inputBufferSize?: number | undefined;
|
|
925
949
|
outputBufferSize?: number | undefined;
|
|
950
|
+
outputSampleFormat?: "float32" | "int16" | undefined;
|
|
951
|
+
outputChannelMode?: "mono" | "left" | "right" | "both" | undefined;
|
|
926
952
|
bufferSize?: number | undefined;
|
|
927
953
|
}>>;
|
|
928
954
|
audioLockedToRadio: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -937,6 +963,8 @@ export declare const UpdateProfileRequestSchema: z.ZodObject<{
|
|
|
937
963
|
outputSampleRate?: number | undefined;
|
|
938
964
|
inputBufferSize?: number | undefined;
|
|
939
965
|
outputBufferSize?: number | undefined;
|
|
966
|
+
outputSampleFormat?: "float32" | "int16" | undefined;
|
|
967
|
+
outputChannelMode?: "mono" | "left" | "right" | "both" | undefined;
|
|
940
968
|
bufferSize?: number | undefined;
|
|
941
969
|
} | undefined;
|
|
942
970
|
description?: string | undefined;
|
|
@@ -991,6 +1019,8 @@ export declare const UpdateProfileRequestSchema: z.ZodObject<{
|
|
|
991
1019
|
outputSampleRate?: number | undefined;
|
|
992
1020
|
inputBufferSize?: number | undefined;
|
|
993
1021
|
outputBufferSize?: number | undefined;
|
|
1022
|
+
outputSampleFormat?: "float32" | "int16" | undefined;
|
|
1023
|
+
outputChannelMode?: "mono" | "left" | "right" | "both" | undefined;
|
|
994
1024
|
bufferSize?: number | undefined;
|
|
995
1025
|
} | undefined;
|
|
996
1026
|
description?: string | undefined;
|
|
@@ -1249,6 +1279,8 @@ export declare const ProfileListResponseSchema: z.ZodObject<{
|
|
|
1249
1279
|
outputSampleRate: z.ZodOptional<z.ZodNumber>;
|
|
1250
1280
|
inputBufferSize: z.ZodOptional<z.ZodNumber>;
|
|
1251
1281
|
outputBufferSize: z.ZodOptional<z.ZodNumber>;
|
|
1282
|
+
outputSampleFormat: z.ZodOptional<z.ZodEnum<["float32", "int16"]>>;
|
|
1283
|
+
outputChannelMode: z.ZodOptional<z.ZodEnum<["mono", "left", "right", "both"]>>;
|
|
1252
1284
|
sampleRate: z.ZodOptional<z.ZodNumber>;
|
|
1253
1285
|
bufferSize: z.ZodOptional<z.ZodNumber>;
|
|
1254
1286
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1259,6 +1291,8 @@ export declare const ProfileListResponseSchema: z.ZodObject<{
|
|
|
1259
1291
|
outputSampleRate?: number | undefined;
|
|
1260
1292
|
inputBufferSize?: number | undefined;
|
|
1261
1293
|
outputBufferSize?: number | undefined;
|
|
1294
|
+
outputSampleFormat?: "float32" | "int16" | undefined;
|
|
1295
|
+
outputChannelMode?: "mono" | "left" | "right" | "both" | undefined;
|
|
1262
1296
|
bufferSize?: number | undefined;
|
|
1263
1297
|
}, {
|
|
1264
1298
|
sampleRate?: number | undefined;
|
|
@@ -1268,6 +1302,8 @@ export declare const ProfileListResponseSchema: z.ZodObject<{
|
|
|
1268
1302
|
outputSampleRate?: number | undefined;
|
|
1269
1303
|
inputBufferSize?: number | undefined;
|
|
1270
1304
|
outputBufferSize?: number | undefined;
|
|
1305
|
+
outputSampleFormat?: "float32" | "int16" | undefined;
|
|
1306
|
+
outputChannelMode?: "mono" | "left" | "right" | "both" | undefined;
|
|
1271
1307
|
bufferSize?: number | undefined;
|
|
1272
1308
|
}>;
|
|
1273
1309
|
audioLockedToRadio: z.ZodBoolean;
|
|
@@ -1285,6 +1321,8 @@ export declare const ProfileListResponseSchema: z.ZodObject<{
|
|
|
1285
1321
|
outputSampleRate?: number | undefined;
|
|
1286
1322
|
inputBufferSize?: number | undefined;
|
|
1287
1323
|
outputBufferSize?: number | undefined;
|
|
1324
|
+
outputSampleFormat?: "float32" | "int16" | undefined;
|
|
1325
|
+
outputChannelMode?: "mono" | "left" | "right" | "both" | undefined;
|
|
1288
1326
|
bufferSize?: number | undefined;
|
|
1289
1327
|
};
|
|
1290
1328
|
createdAt: number;
|
|
@@ -1342,6 +1380,8 @@ export declare const ProfileListResponseSchema: z.ZodObject<{
|
|
|
1342
1380
|
outputSampleRate?: number | undefined;
|
|
1343
1381
|
inputBufferSize?: number | undefined;
|
|
1344
1382
|
outputBufferSize?: number | undefined;
|
|
1383
|
+
outputSampleFormat?: "float32" | "int16" | undefined;
|
|
1384
|
+
outputChannelMode?: "mono" | "left" | "right" | "both" | undefined;
|
|
1345
1385
|
bufferSize?: number | undefined;
|
|
1346
1386
|
};
|
|
1347
1387
|
createdAt: number;
|
|
@@ -1402,6 +1442,8 @@ export declare const ProfileListResponseSchema: z.ZodObject<{
|
|
|
1402
1442
|
outputSampleRate?: number | undefined;
|
|
1403
1443
|
inputBufferSize?: number | undefined;
|
|
1404
1444
|
outputBufferSize?: number | undefined;
|
|
1445
|
+
outputSampleFormat?: "float32" | "int16" | undefined;
|
|
1446
|
+
outputChannelMode?: "mono" | "left" | "right" | "both" | undefined;
|
|
1405
1447
|
bufferSize?: number | undefined;
|
|
1406
1448
|
};
|
|
1407
1449
|
createdAt: number;
|
|
@@ -1462,6 +1504,8 @@ export declare const ProfileListResponseSchema: z.ZodObject<{
|
|
|
1462
1504
|
outputSampleRate?: number | undefined;
|
|
1463
1505
|
inputBufferSize?: number | undefined;
|
|
1464
1506
|
outputBufferSize?: number | undefined;
|
|
1507
|
+
outputSampleFormat?: "float32" | "int16" | undefined;
|
|
1508
|
+
outputChannelMode?: "mono" | "left" | "right" | "both" | undefined;
|
|
1465
1509
|
bufferSize?: number | undefined;
|
|
1466
1510
|
};
|
|
1467
1511
|
createdAt: number;
|
|
@@ -1725,6 +1769,8 @@ export declare const ProfileActionResponseSchema: z.ZodObject<{
|
|
|
1725
1769
|
outputSampleRate: z.ZodOptional<z.ZodNumber>;
|
|
1726
1770
|
inputBufferSize: z.ZodOptional<z.ZodNumber>;
|
|
1727
1771
|
outputBufferSize: z.ZodOptional<z.ZodNumber>;
|
|
1772
|
+
outputSampleFormat: z.ZodOptional<z.ZodEnum<["float32", "int16"]>>;
|
|
1773
|
+
outputChannelMode: z.ZodOptional<z.ZodEnum<["mono", "left", "right", "both"]>>;
|
|
1728
1774
|
sampleRate: z.ZodOptional<z.ZodNumber>;
|
|
1729
1775
|
bufferSize: z.ZodOptional<z.ZodNumber>;
|
|
1730
1776
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1735,6 +1781,8 @@ export declare const ProfileActionResponseSchema: z.ZodObject<{
|
|
|
1735
1781
|
outputSampleRate?: number | undefined;
|
|
1736
1782
|
inputBufferSize?: number | undefined;
|
|
1737
1783
|
outputBufferSize?: number | undefined;
|
|
1784
|
+
outputSampleFormat?: "float32" | "int16" | undefined;
|
|
1785
|
+
outputChannelMode?: "mono" | "left" | "right" | "both" | undefined;
|
|
1738
1786
|
bufferSize?: number | undefined;
|
|
1739
1787
|
}, {
|
|
1740
1788
|
sampleRate?: number | undefined;
|
|
@@ -1744,6 +1792,8 @@ export declare const ProfileActionResponseSchema: z.ZodObject<{
|
|
|
1744
1792
|
outputSampleRate?: number | undefined;
|
|
1745
1793
|
inputBufferSize?: number | undefined;
|
|
1746
1794
|
outputBufferSize?: number | undefined;
|
|
1795
|
+
outputSampleFormat?: "float32" | "int16" | undefined;
|
|
1796
|
+
outputChannelMode?: "mono" | "left" | "right" | "both" | undefined;
|
|
1747
1797
|
bufferSize?: number | undefined;
|
|
1748
1798
|
}>;
|
|
1749
1799
|
audioLockedToRadio: z.ZodBoolean;
|
|
@@ -1761,6 +1811,8 @@ export declare const ProfileActionResponseSchema: z.ZodObject<{
|
|
|
1761
1811
|
outputSampleRate?: number | undefined;
|
|
1762
1812
|
inputBufferSize?: number | undefined;
|
|
1763
1813
|
outputBufferSize?: number | undefined;
|
|
1814
|
+
outputSampleFormat?: "float32" | "int16" | undefined;
|
|
1815
|
+
outputChannelMode?: "mono" | "left" | "right" | "both" | undefined;
|
|
1764
1816
|
bufferSize?: number | undefined;
|
|
1765
1817
|
};
|
|
1766
1818
|
createdAt: number;
|
|
@@ -1818,6 +1870,8 @@ export declare const ProfileActionResponseSchema: z.ZodObject<{
|
|
|
1818
1870
|
outputSampleRate?: number | undefined;
|
|
1819
1871
|
inputBufferSize?: number | undefined;
|
|
1820
1872
|
outputBufferSize?: number | undefined;
|
|
1873
|
+
outputSampleFormat?: "float32" | "int16" | undefined;
|
|
1874
|
+
outputChannelMode?: "mono" | "left" | "right" | "both" | undefined;
|
|
1821
1875
|
bufferSize?: number | undefined;
|
|
1822
1876
|
};
|
|
1823
1877
|
createdAt: number;
|
|
@@ -1880,6 +1934,8 @@ export declare const ProfileActionResponseSchema: z.ZodObject<{
|
|
|
1880
1934
|
outputSampleRate?: number | undefined;
|
|
1881
1935
|
inputBufferSize?: number | undefined;
|
|
1882
1936
|
outputBufferSize?: number | undefined;
|
|
1937
|
+
outputSampleFormat?: "float32" | "int16" | undefined;
|
|
1938
|
+
outputChannelMode?: "mono" | "left" | "right" | "both" | undefined;
|
|
1883
1939
|
bufferSize?: number | undefined;
|
|
1884
1940
|
};
|
|
1885
1941
|
createdAt: number;
|
|
@@ -1941,6 +1997,8 @@ export declare const ProfileActionResponseSchema: z.ZodObject<{
|
|
|
1941
1997
|
outputSampleRate?: number | undefined;
|
|
1942
1998
|
inputBufferSize?: number | undefined;
|
|
1943
1999
|
outputBufferSize?: number | undefined;
|
|
2000
|
+
outputSampleFormat?: "float32" | "int16" | undefined;
|
|
2001
|
+
outputChannelMode?: "mono" | "left" | "right" | "both" | undefined;
|
|
1944
2002
|
bufferSize?: number | undefined;
|
|
1945
2003
|
};
|
|
1946
2004
|
createdAt: number;
|
|
@@ -2203,6 +2261,8 @@ export declare const ActivateProfileResponseSchema: z.ZodObject<{
|
|
|
2203
2261
|
outputSampleRate: z.ZodOptional<z.ZodNumber>;
|
|
2204
2262
|
inputBufferSize: z.ZodOptional<z.ZodNumber>;
|
|
2205
2263
|
outputBufferSize: z.ZodOptional<z.ZodNumber>;
|
|
2264
|
+
outputSampleFormat: z.ZodOptional<z.ZodEnum<["float32", "int16"]>>;
|
|
2265
|
+
outputChannelMode: z.ZodOptional<z.ZodEnum<["mono", "left", "right", "both"]>>;
|
|
2206
2266
|
sampleRate: z.ZodOptional<z.ZodNumber>;
|
|
2207
2267
|
bufferSize: z.ZodOptional<z.ZodNumber>;
|
|
2208
2268
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -2213,6 +2273,8 @@ export declare const ActivateProfileResponseSchema: z.ZodObject<{
|
|
|
2213
2273
|
outputSampleRate?: number | undefined;
|
|
2214
2274
|
inputBufferSize?: number | undefined;
|
|
2215
2275
|
outputBufferSize?: number | undefined;
|
|
2276
|
+
outputSampleFormat?: "float32" | "int16" | undefined;
|
|
2277
|
+
outputChannelMode?: "mono" | "left" | "right" | "both" | undefined;
|
|
2216
2278
|
bufferSize?: number | undefined;
|
|
2217
2279
|
}, {
|
|
2218
2280
|
sampleRate?: number | undefined;
|
|
@@ -2222,6 +2284,8 @@ export declare const ActivateProfileResponseSchema: z.ZodObject<{
|
|
|
2222
2284
|
outputSampleRate?: number | undefined;
|
|
2223
2285
|
inputBufferSize?: number | undefined;
|
|
2224
2286
|
outputBufferSize?: number | undefined;
|
|
2287
|
+
outputSampleFormat?: "float32" | "int16" | undefined;
|
|
2288
|
+
outputChannelMode?: "mono" | "left" | "right" | "both" | undefined;
|
|
2225
2289
|
bufferSize?: number | undefined;
|
|
2226
2290
|
}>;
|
|
2227
2291
|
audioLockedToRadio: z.ZodBoolean;
|
|
@@ -2239,6 +2303,8 @@ export declare const ActivateProfileResponseSchema: z.ZodObject<{
|
|
|
2239
2303
|
outputSampleRate?: number | undefined;
|
|
2240
2304
|
inputBufferSize?: number | undefined;
|
|
2241
2305
|
outputBufferSize?: number | undefined;
|
|
2306
|
+
outputSampleFormat?: "float32" | "int16" | undefined;
|
|
2307
|
+
outputChannelMode?: "mono" | "left" | "right" | "both" | undefined;
|
|
2242
2308
|
bufferSize?: number | undefined;
|
|
2243
2309
|
};
|
|
2244
2310
|
createdAt: number;
|
|
@@ -2296,6 +2362,8 @@ export declare const ActivateProfileResponseSchema: z.ZodObject<{
|
|
|
2296
2362
|
outputSampleRate?: number | undefined;
|
|
2297
2363
|
inputBufferSize?: number | undefined;
|
|
2298
2364
|
outputBufferSize?: number | undefined;
|
|
2365
|
+
outputSampleFormat?: "float32" | "int16" | undefined;
|
|
2366
|
+
outputChannelMode?: "mono" | "left" | "right" | "both" | undefined;
|
|
2299
2367
|
bufferSize?: number | undefined;
|
|
2300
2368
|
};
|
|
2301
2369
|
createdAt: number;
|
|
@@ -2357,6 +2425,8 @@ export declare const ActivateProfileResponseSchema: z.ZodObject<{
|
|
|
2357
2425
|
outputSampleRate?: number | undefined;
|
|
2358
2426
|
inputBufferSize?: number | undefined;
|
|
2359
2427
|
outputBufferSize?: number | undefined;
|
|
2428
|
+
outputSampleFormat?: "float32" | "int16" | undefined;
|
|
2429
|
+
outputChannelMode?: "mono" | "left" | "right" | "both" | undefined;
|
|
2360
2430
|
bufferSize?: number | undefined;
|
|
2361
2431
|
};
|
|
2362
2432
|
createdAt: number;
|
|
@@ -2418,6 +2488,8 @@ export declare const ActivateProfileResponseSchema: z.ZodObject<{
|
|
|
2418
2488
|
outputSampleRate?: number | undefined;
|
|
2419
2489
|
inputBufferSize?: number | undefined;
|
|
2420
2490
|
outputBufferSize?: number | undefined;
|
|
2491
|
+
outputSampleFormat?: "float32" | "int16" | undefined;
|
|
2492
|
+
outputChannelMode?: "mono" | "left" | "right" | "both" | undefined;
|
|
2421
2493
|
bufferSize?: number | undefined;
|
|
2422
2494
|
};
|
|
2423
2495
|
createdAt: number;
|
|
@@ -2681,6 +2753,8 @@ export declare const ProfileChangedEventSchema: z.ZodObject<{
|
|
|
2681
2753
|
outputSampleRate: z.ZodOptional<z.ZodNumber>;
|
|
2682
2754
|
inputBufferSize: z.ZodOptional<z.ZodNumber>;
|
|
2683
2755
|
outputBufferSize: z.ZodOptional<z.ZodNumber>;
|
|
2756
|
+
outputSampleFormat: z.ZodOptional<z.ZodEnum<["float32", "int16"]>>;
|
|
2757
|
+
outputChannelMode: z.ZodOptional<z.ZodEnum<["mono", "left", "right", "both"]>>;
|
|
2684
2758
|
sampleRate: z.ZodOptional<z.ZodNumber>;
|
|
2685
2759
|
bufferSize: z.ZodOptional<z.ZodNumber>;
|
|
2686
2760
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -2691,6 +2765,8 @@ export declare const ProfileChangedEventSchema: z.ZodObject<{
|
|
|
2691
2765
|
outputSampleRate?: number | undefined;
|
|
2692
2766
|
inputBufferSize?: number | undefined;
|
|
2693
2767
|
outputBufferSize?: number | undefined;
|
|
2768
|
+
outputSampleFormat?: "float32" | "int16" | undefined;
|
|
2769
|
+
outputChannelMode?: "mono" | "left" | "right" | "both" | undefined;
|
|
2694
2770
|
bufferSize?: number | undefined;
|
|
2695
2771
|
}, {
|
|
2696
2772
|
sampleRate?: number | undefined;
|
|
@@ -2700,6 +2776,8 @@ export declare const ProfileChangedEventSchema: z.ZodObject<{
|
|
|
2700
2776
|
outputSampleRate?: number | undefined;
|
|
2701
2777
|
inputBufferSize?: number | undefined;
|
|
2702
2778
|
outputBufferSize?: number | undefined;
|
|
2779
|
+
outputSampleFormat?: "float32" | "int16" | undefined;
|
|
2780
|
+
outputChannelMode?: "mono" | "left" | "right" | "both" | undefined;
|
|
2703
2781
|
bufferSize?: number | undefined;
|
|
2704
2782
|
}>;
|
|
2705
2783
|
audioLockedToRadio: z.ZodBoolean;
|
|
@@ -2717,6 +2795,8 @@ export declare const ProfileChangedEventSchema: z.ZodObject<{
|
|
|
2717
2795
|
outputSampleRate?: number | undefined;
|
|
2718
2796
|
inputBufferSize?: number | undefined;
|
|
2719
2797
|
outputBufferSize?: number | undefined;
|
|
2798
|
+
outputSampleFormat?: "float32" | "int16" | undefined;
|
|
2799
|
+
outputChannelMode?: "mono" | "left" | "right" | "both" | undefined;
|
|
2720
2800
|
bufferSize?: number | undefined;
|
|
2721
2801
|
};
|
|
2722
2802
|
createdAt: number;
|
|
@@ -2774,6 +2854,8 @@ export declare const ProfileChangedEventSchema: z.ZodObject<{
|
|
|
2774
2854
|
outputSampleRate?: number | undefined;
|
|
2775
2855
|
inputBufferSize?: number | undefined;
|
|
2776
2856
|
outputBufferSize?: number | undefined;
|
|
2857
|
+
outputSampleFormat?: "float32" | "int16" | undefined;
|
|
2858
|
+
outputChannelMode?: "mono" | "left" | "right" | "both" | undefined;
|
|
2777
2859
|
bufferSize?: number | undefined;
|
|
2778
2860
|
};
|
|
2779
2861
|
createdAt: number;
|
|
@@ -2836,6 +2918,8 @@ export declare const ProfileChangedEventSchema: z.ZodObject<{
|
|
|
2836
2918
|
outputSampleRate?: number | undefined;
|
|
2837
2919
|
inputBufferSize?: number | undefined;
|
|
2838
2920
|
outputBufferSize?: number | undefined;
|
|
2921
|
+
outputSampleFormat?: "float32" | "int16" | undefined;
|
|
2922
|
+
outputChannelMode?: "mono" | "left" | "right" | "both" | undefined;
|
|
2839
2923
|
bufferSize?: number | undefined;
|
|
2840
2924
|
};
|
|
2841
2925
|
createdAt: number;
|
|
@@ -2898,6 +2982,8 @@ export declare const ProfileChangedEventSchema: z.ZodObject<{
|
|
|
2898
2982
|
outputSampleRate?: number | undefined;
|
|
2899
2983
|
inputBufferSize?: number | undefined;
|
|
2900
2984
|
outputBufferSize?: number | undefined;
|
|
2985
|
+
outputSampleFormat?: "float32" | "int16" | undefined;
|
|
2986
|
+
outputChannelMode?: "mono" | "left" | "right" | "both" | undefined;
|
|
2901
2987
|
bufferSize?: number | undefined;
|
|
2902
2988
|
};
|
|
2903
2989
|
createdAt: number;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"radio-profile.schema.d.ts","sourceRoot":"","sources":["../../src/schema/radio-profile.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAIxB;;;;;GAKG;AACH,eAAO,MAAM,kBAAkB
|
|
1
|
+
{"version":3,"file":"radio-profile.schema.d.ts","sourceRoot":"","sources":["../../src/schema/radio-profile.schema.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
export declare const SystemUpdateTargetSchema: z.ZodEnum<["electron-app", "linux-server", "docker"]>;
|
|
2
|
+
export declare const SystemUpdateTargetSchema: z.ZodEnum<["electron-app", "linux-server", "docker", "android-runtime"]>;
|
|
3
3
|
export type SystemUpdateTarget = z.infer<typeof SystemUpdateTargetSchema>;
|
|
4
4
|
export declare const SystemUpdateChannelSchema: z.ZodEnum<["release", "nightly"]>;
|
|
5
5
|
export type SystemUpdateChannel = z.infer<typeof SystemUpdateChannelSchema>;
|
|
6
6
|
export declare const SystemUpdateStatusSchema: z.ZodObject<{
|
|
7
|
-
target: z.ZodEnum<["electron-app", "linux-server", "docker"]>;
|
|
8
|
-
distribution: z.ZodEnum<["electron", "docker", "linux-service", "generic-server", "web-dev"]>;
|
|
7
|
+
target: z.ZodEnum<["electron-app", "linux-server", "docker", "android-runtime"]>;
|
|
8
|
+
distribution: z.ZodEnum<["electron", "docker", "android-bridge", "linux-service", "generic-server", "web-dev"]>;
|
|
9
9
|
channel: z.ZodEnum<["release", "nightly"]>;
|
|
10
10
|
currentVersion: z.ZodString;
|
|
11
11
|
currentCommit: z.ZodNullable<z.ZodString>;
|
|
@@ -23,10 +23,10 @@ export declare const SystemUpdateStatusSchema: z.ZodObject<{
|
|
|
23
23
|
errorMessage: z.ZodNullable<z.ZodString>;
|
|
24
24
|
}, "strip", z.ZodTypeAny, {
|
|
25
25
|
channel: "nightly" | "release";
|
|
26
|
-
distribution: "electron" | "docker" | "linux-service" | "generic-server" | "web-dev";
|
|
26
|
+
distribution: "electron" | "docker" | "android-bridge" | "linux-service" | "generic-server" | "web-dev";
|
|
27
27
|
latestVersion: string | null;
|
|
28
28
|
publishedAt: string | null;
|
|
29
|
-
target: "docker" | "electron-app" | "linux-server";
|
|
29
|
+
target: "docker" | "electron-app" | "linux-server" | "android-runtime";
|
|
30
30
|
errorMessage: string | null;
|
|
31
31
|
currentVersion: string;
|
|
32
32
|
currentCommit: string | null;
|
|
@@ -41,10 +41,10 @@ export declare const SystemUpdateStatusSchema: z.ZodObject<{
|
|
|
41
41
|
latestDigest?: string | null | undefined;
|
|
42
42
|
}, {
|
|
43
43
|
channel: "nightly" | "release";
|
|
44
|
-
distribution: "electron" | "docker" | "linux-service" | "generic-server" | "web-dev";
|
|
44
|
+
distribution: "electron" | "docker" | "android-bridge" | "linux-service" | "generic-server" | "web-dev";
|
|
45
45
|
latestVersion: string | null;
|
|
46
46
|
publishedAt: string | null;
|
|
47
|
-
target: "docker" | "electron-app" | "linux-server";
|
|
47
|
+
target: "docker" | "electron-app" | "linux-server" | "android-runtime";
|
|
48
48
|
errorMessage: string | null;
|
|
49
49
|
currentVersion: string;
|
|
50
50
|
currentCommit: string | null;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"update.schema.d.ts","sourceRoot":"","sources":["../../src/schema/update.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAGxB,eAAO,MAAM,wBAAwB,
|
|
1
|
+
{"version":3,"file":"update.schema.d.ts","sourceRoot":"","sources":["../../src/schema/update.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAGxB,eAAO,MAAM,wBAAwB,0EAKnC,CAAC;AACH,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAE1E,eAAO,MAAM,yBAAyB,mCAAiC,CAAC;AACxE,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,yBAAyB,CAAC,CAAC;AAE5E,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAkBnC,CAAC;AACH,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"update.schema.js","sourceRoot":"","sources":["../../src/schema/update.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,wBAAwB,EAAE,MAAM,oBAAoB,CAAC;AAE9D,MAAM,CAAC,MAAM,wBAAwB,GAAG,CAAC,CAAC,IAAI,CAAC;IAC7C,cAAc;IACd,cAAc;IACd,QAAQ;
|
|
1
|
+
{"version":3,"file":"update.schema.js","sourceRoot":"","sources":["../../src/schema/update.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,wBAAwB,EAAE,MAAM,oBAAoB,CAAC;AAE9D,MAAM,CAAC,MAAM,wBAAwB,GAAG,CAAC,CAAC,IAAI,CAAC;IAC7C,cAAc;IACd,cAAc;IACd,QAAQ;IACR,iBAAiB;CAClB,CAAC,CAAC;AAGH,MAAM,CAAC,MAAM,yBAAyB,GAAG,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,EAAE,SAAS,CAAC,CAAC,CAAC;AAGxE,MAAM,CAAC,MAAM,wBAAwB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC/C,MAAM,EAAE,wBAAwB;IAChC,YAAY,EAAE,wBAAwB;IACtC,OAAO,EAAE,yBAAyB;IAClC,cAAc,EAAE,CAAC,CAAC,MAAM,EAAE;IAC1B,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACpC,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;IAC/C,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACpC,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACnC,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;IAC9C,iBAAiB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACxC,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAClC,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACnC,eAAe,EAAE,CAAC,CAAC,OAAO,EAAE;IAC5B,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC/B,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE;IAC5B,cAAc,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,QAAQ,EAAE;IACpD,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CACpC,CAAC,CAAC"}
|