tci-client-node 0.2.0 → 0.3.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.
@@ -32,6 +32,8 @@ interface TciDialect {
32
32
  readonly streamLengthSemantics: TciStreamLengthSemantics;
33
33
  readonly supportsStreamChannels: boolean;
34
34
  readonly supportsTxAudioSource: boolean;
35
+ readonly supportsIqStream: boolean;
36
+ readonly iqSampleRates: readonly number[];
35
37
  detect(context: TciDialectDetectionContext): TciDialectScore;
36
38
  resolve?(context: TciDialectDetectionContext): TciDialect;
37
39
  buildDriveSetArgs(trx: number, value: number): readonly unknown[];
@@ -60,4 +62,4 @@ interface TciWriteResult<T> {
60
62
  acknowledgement: 'state' | 'reply' | 'readback';
61
63
  }
62
64
 
63
- export type { BuiltInTciDialectId as B, TciDialectId as T, TciHandshakeResult as a, TciDialectSelection as b, TciWriteResult as c, TciDialect as d, TciDialectDetection as e, TciDialectDetectionContext as f, TciDialectScore as g, TciDriveState as h, TciProtocolIdentity as i, TciStreamLengthSemantics as j };
65
+ export type { BuiltInTciDialectId as B, TciWriteResult as T, TciDialectId as a, TciHandshakeResult as b, TciDialectSelection as c, TciDialect as d, TciDialectDetection as e, TciDialectDetectionContext as f, TciDialectScore as g, TciDriveState as h, TciProtocolIdentity as i, TciStreamLengthSemantics as j };
@@ -32,6 +32,8 @@ interface TciDialect {
32
32
  readonly streamLengthSemantics: TciStreamLengthSemantics;
33
33
  readonly supportsStreamChannels: boolean;
34
34
  readonly supportsTxAudioSource: boolean;
35
+ readonly supportsIqStream: boolean;
36
+ readonly iqSampleRates: readonly number[];
35
37
  detect(context: TciDialectDetectionContext): TciDialectScore;
36
38
  resolve?(context: TciDialectDetectionContext): TciDialect;
37
39
  buildDriveSetArgs(trx: number, value: number): readonly unknown[];
@@ -60,4 +62,4 @@ interface TciWriteResult<T> {
60
62
  acknowledgement: 'state' | 'reply' | 'readback';
61
63
  }
62
64
 
63
- export type { BuiltInTciDialectId as B, TciDialectId as T, TciHandshakeResult as a, TciDialectSelection as b, TciWriteResult as c, TciDialect as d, TciDialectDetection as e, TciDialectDetectionContext as f, TciDialectScore as g, TciDriveState as h, TciProtocolIdentity as i, TciStreamLengthSemantics as j };
65
+ export type { BuiltInTciDialectId as B, TciWriteResult as T, TciDialectId as a, TciHandshakeResult as b, TciDialectSelection as c, TciDialect as d, TciDialectDetection as e, TciDialectDetectionContext as f, TciDialectScore as g, TciDriveState as h, TciProtocolIdentity as i, TciStreamLengthSemantics as j };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tci-client-node",
3
- "version": "0.2.0",
3
+ "version": "0.3.0",
4
4
  "description": "Pure TypeScript TCI (Transceiver Control Interface) client for SunSDR/ExpertSDR.",
5
5
  "type": "module",
6
6
  "license": "MIT",