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.
- package/CHANGELOG.md +8 -0
- package/README.md +26 -6
- package/dist/audio/index.cjs +11 -0
- package/dist/audio/index.cjs.map +1 -1
- package/dist/audio/index.d.cts +3 -2
- package/dist/audio/index.d.ts +3 -2
- package/dist/audio/index.js +10 -0
- package/dist/audio/index.js.map +1 -1
- package/dist/dialect/index.cjs +18 -0
- package/dist/dialect/index.cjs.map +1 -1
- package/dist/dialect/index.d.cts +2 -2
- package/dist/dialect/index.d.ts +2 -2
- package/dist/dialect/index.js +18 -0
- package/dist/dialect/index.js.map +1 -1
- package/dist/index.cjs +203 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +57 -4
- package/dist/index.d.ts +57 -4
- package/dist/index.js +201 -2
- package/dist/index.js.map +1 -1
- package/dist/testing/index.cjs +26 -0
- package/dist/testing/index.cjs.map +1 -1
- package/dist/testing/index.d.cts +5 -1
- package/dist/testing/index.d.ts +5 -1
- package/dist/testing/index.js +26 -0
- package/dist/testing/index.js.map +1 -1
- package/dist/{types-xRotf9gW.d.cts → types-1YXGwrgI.d.cts} +3 -1
- package/dist/{types-9seY9Th-.d.ts → types-BtPh4Dbd.d.ts} +3 -1
- package/package.json +1 -1
|
@@ -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,
|
|
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,
|
|
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 };
|