@tx5dr/contracts 1.6.0 → 1.7.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/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/schema/__tests__/audio.schema.test.d.ts +2 -0
- package/dist/schema/__tests__/audio.schema.test.d.ts.map +1 -0
- package/dist/schema/__tests__/audio.schema.test.js +126 -0
- package/dist/schema/__tests__/audio.schema.test.js.map +1 -0
- package/dist/schema/__tests__/plugin-market.schema.test.js +5 -1
- package/dist/schema/__tests__/plugin-market.schema.test.js.map +1 -1
- package/dist/schema/api-response.schema.d.ts +30 -30
- package/dist/schema/audio.schema.d.ts +1292 -0
- package/dist/schema/audio.schema.d.ts.map +1 -1
- package/dist/schema/audio.schema.js +33 -0
- package/dist/schema/audio.schema.js.map +1 -1
- package/dist/schema/cpu-profile.schema.d.ts +4 -4
- package/dist/schema/ft8.schema.d.ts +4 -4
- package/dist/schema/logbook.schema.d.ts +22 -0
- package/dist/schema/logbook.schema.d.ts.map +1 -1
- package/dist/schema/logbook.schema.js +8 -0
- package/dist/schema/logbook.schema.js.map +1 -1
- package/dist/schema/plugin.schema.d.ts +48 -48
- package/dist/schema/plugin.schema.d.ts.map +1 -1
- package/dist/schema/plugin.schema.js +13 -1
- package/dist/schema/plugin.schema.js.map +1 -1
- package/dist/schema/qso.schema.d.ts +2 -2
- package/dist/schema/radio-power.schema.d.ts +6 -6
- package/dist/schema/radio-profile.schema.d.ts +280 -108
- package/dist/schema/radio-profile.schema.d.ts.map +1 -1
- package/dist/schema/radio.schema.d.ts +18 -18
- package/dist/schema/realtime.schema.d.ts +22 -22
- package/dist/schema/server-message-keys.d.ts +3 -1
- package/dist/schema/server-message-keys.d.ts.map +1 -1
- package/dist/schema/server-message-keys.js +2 -0
- package/dist/schema/server-message-keys.js.map +1 -1
- package/dist/schema/slot-info.schema.d.ts +22 -18
- package/dist/schema/slot-info.schema.d.ts.map +1 -1
- package/dist/schema/slot-info.schema.js +2 -0
- package/dist/schema/slot-info.schema.js.map +1 -1
- package/dist/schema/spectrum.schema.d.ts +6 -6
- package/dist/schema/system.schema.d.ts +11 -0
- package/dist/schema/system.schema.d.ts.map +1 -1
- package/dist/schema/system.schema.js +4 -0
- package/dist/schema/system.schema.js.map +1 -1
- package/dist/schema/transmission.schema.d.ts +8 -8
- package/dist/schema/update.schema.d.ts +62 -0
- package/dist/schema/update.schema.d.ts.map +1 -0
- package/dist/schema/update.schema.js +28 -0
- package/dist/schema/update.schema.js.map +1 -0
- package/dist/schema/websocket.schema.d.ts +392 -156
- package/dist/schema/websocket.schema.d.ts.map +1 -1
- package/dist/schema/websocket.schema.js +38 -0
- package/dist/schema/websocket.schema.js.map +1 -1
- package/package.json +1 -1
- package/src/index.ts +1 -0
- package/src/schema/__tests__/audio.schema.test.ts +142 -0
- package/src/schema/__tests__/plugin-market.schema.test.ts +6 -0
- package/src/schema/audio.schema.ts +44 -1
- package/src/schema/logbook.schema.ts +8 -0
- package/src/schema/plugin.schema.ts +13 -1
- package/src/schema/server-message-keys.ts +3 -0
- package/src/schema/slot-info.schema.ts +2 -0
- package/src/schema/system.schema.ts +6 -0
- package/src/schema/update.schema.ts +33 -0
- package/src/schema/websocket.schema.ts +52 -0
|
@@ -247,9 +247,6 @@ export declare const RadioPowerProfileConfigSchema: z.ZodObject<{
|
|
|
247
247
|
pttPort: z.ZodOptional<z.ZodString>;
|
|
248
248
|
}, "strip", z.ZodTypeAny, {
|
|
249
249
|
type: "none" | "network" | "serial" | "icom-wlan";
|
|
250
|
-
spectrum?: {
|
|
251
|
-
speed?: number | undefined;
|
|
252
|
-
} | undefined;
|
|
253
250
|
network?: {
|
|
254
251
|
host: string;
|
|
255
252
|
port: number;
|
|
@@ -272,6 +269,9 @@ export declare const RadioPowerProfileConfigSchema: z.ZodObject<{
|
|
|
272
269
|
} | undefined;
|
|
273
270
|
backendConfig?: Record<string, string> | undefined;
|
|
274
271
|
} | undefined;
|
|
272
|
+
spectrum?: {
|
|
273
|
+
speed?: number | undefined;
|
|
274
|
+
} | undefined;
|
|
275
275
|
icomWlan?: {
|
|
276
276
|
ip: string;
|
|
277
277
|
port: number;
|
|
@@ -284,9 +284,6 @@ export declare const RadioPowerProfileConfigSchema: z.ZodObject<{
|
|
|
284
284
|
pttPort?: string | undefined;
|
|
285
285
|
}, {
|
|
286
286
|
type: "none" | "network" | "serial" | "icom-wlan";
|
|
287
|
-
spectrum?: {
|
|
288
|
-
speed?: number | undefined;
|
|
289
|
-
} | undefined;
|
|
290
287
|
network?: {
|
|
291
288
|
host: string;
|
|
292
289
|
port: number;
|
|
@@ -309,6 +306,9 @@ export declare const RadioPowerProfileConfigSchema: z.ZodObject<{
|
|
|
309
306
|
} | undefined;
|
|
310
307
|
backendConfig?: Record<string, string> | undefined;
|
|
311
308
|
} | undefined;
|
|
309
|
+
spectrum?: {
|
|
310
|
+
speed?: number | undefined;
|
|
311
|
+
} | undefined;
|
|
312
312
|
icomWlan?: {
|
|
313
313
|
ip: string;
|
|
314
314
|
port: number;
|