fossekall-interface 0.1.128 → 0.1.130

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.
@@ -0,0 +1,221 @@
1
+ import bin from 'typed-binary';
2
+ export declare const StateId: {
3
+ readonly Safe: 0;
4
+ readonly RecoveryFill: 1;
5
+ readonly PostRecoveryFill: 2;
6
+ readonly N2Fill: 3;
7
+ readonly PostN2Fill: 4;
8
+ readonly OxFill: 5;
9
+ readonly PostOxFill: 6;
10
+ readonly QDDisconnect: 7;
11
+ readonly Hold: 8;
12
+ };
13
+ export type StateId = (typeof StateId)[keyof typeof StateId];
14
+ export declare const actuators_servo_Id: {
15
+ readonly OxSupply: 0;
16
+ readonly Count: 1;
17
+ };
18
+ export type actuators_servo_Id = (typeof actuators_servo_Id)[keyof typeof actuators_servo_Id];
19
+ export declare const ServoCommands_OpenClose: {
20
+ readonly Open: 0;
21
+ readonly Close: 1;
22
+ };
23
+ export type ServoCommands_OpenClose = (typeof ServoCommands_OpenClose)[keyof typeof ServoCommands_OpenClose];
24
+ export declare const actuators_servo_PositionMode: {
25
+ readonly Absolute: 0;
26
+ readonly Relative: 1;
27
+ };
28
+ export type actuators_servo_PositionMode = (typeof actuators_servo_PositionMode)[keyof typeof actuators_servo_PositionMode];
29
+ export declare const actuators_servo_StartPolicy: {
30
+ readonly Preempt: 0;
31
+ readonly NoInterrupt: 1;
32
+ };
33
+ export type actuators_servo_StartPolicy = (typeof actuators_servo_StartPolicy)[keyof typeof actuators_servo_StartPolicy];
34
+ export declare const actuators_solenoid_Id: {
35
+ readonly OxBleed: 0;
36
+ readonly N2_200_Supply: 1;
37
+ readonly N2_200_Bleed: 2;
38
+ readonly N2_300_Supply: 3;
39
+ readonly N2_300_Bleed: 4;
40
+ readonly QD_1: 5;
41
+ readonly QD_2: 6;
42
+ readonly Count: 7;
43
+ };
44
+ export type actuators_solenoid_Id = (typeof actuators_solenoid_Id)[keyof typeof actuators_solenoid_Id];
45
+ export declare const SolenoidCommands_OpeningType: {
46
+ readonly Open: 0;
47
+ readonly Close: 1;
48
+ };
49
+ export type SolenoidCommands_OpeningType = (typeof SolenoidCommands_OpeningType)[keyof typeof SolenoidCommands_OpeningType];
50
+ export declare const FsmCommands_NextStatePayload: import("typed-binary").ObjectSchema<{
51
+ current_state: import("typed-binary").ByteSchema;
52
+ }>;
53
+ export type FsmCommands_NextStatePayload = bin.Parsed<typeof FsmCommands_NextStatePayload>;
54
+ export declare const FsmCommands_PreviousStatePayload: import("typed-binary").ObjectSchema<{
55
+ current_state: import("typed-binary").ByteSchema;
56
+ }>;
57
+ export type FsmCommands_PreviousStatePayload = bin.Parsed<typeof FsmCommands_PreviousStatePayload>;
58
+ export declare const FsmCommands_AbortPayload: import("typed-binary").ObjectSchema<{
59
+ reserved: import("typed-binary").ByteSchema;
60
+ }>;
61
+ export type FsmCommands_AbortPayload = bin.Parsed<typeof FsmCommands_AbortPayload>;
62
+ export declare const FsmCommands_StatusPayload: import("typed-binary").ObjectSchema<{
63
+ reserved: import("typed-binary").ByteSchema;
64
+ }>;
65
+ export type FsmCommands_StatusPayload = bin.Parsed<typeof FsmCommands_StatusPayload>;
66
+ export declare const ServoCommands_OpenCloseServoPayload: import("typed-binary").ObjectSchema<{
67
+ servo_id: import("typed-binary").ByteSchema;
68
+ open_close: import("typed-binary").ByteSchema;
69
+ duration_ms: import("typed-binary").Uint16Schema;
70
+ delay_ms: import("typed-binary").Uint16Schema;
71
+ position_mode: import("typed-binary").ByteSchema;
72
+ start_policy: import("typed-binary").ByteSchema;
73
+ }>;
74
+ export type ServoCommands_OpenCloseServoPayload = bin.Parsed<typeof ServoCommands_OpenCloseServoPayload>;
75
+ export declare const ServoCommands_SetServoPayload: import("typed-binary").ObjectSchema<{
76
+ servo_id: import("typed-binary").ByteSchema;
77
+ angle_deg: import("typed-binary").Float32Schema;
78
+ duration_ms: import("typed-binary").Uint16Schema;
79
+ delay_ms: import("typed-binary").Uint16Schema;
80
+ position_mode: import("typed-binary").ByteSchema;
81
+ start_policy: import("typed-binary").ByteSchema;
82
+ }>;
83
+ export type ServoCommands_SetServoPayload = bin.Parsed<typeof ServoCommands_SetServoPayload>;
84
+ export declare const SolenoidCommands_OpenCloseSolenoidPayload: import("typed-binary").ObjectSchema<{
85
+ solenoid_id: import("typed-binary").ByteSchema;
86
+ opening_type: import("typed-binary").ByteSchema;
87
+ }>;
88
+ export type SolenoidCommands_OpenCloseSolenoidPayload = bin.Parsed<typeof SolenoidCommands_OpenCloseSolenoidPayload>;
89
+ export declare const spec: {
90
+ FsmCommands_NextStatePayload: {
91
+ id: number;
92
+ schema: import("typed-binary").ObjectSchema<{
93
+ current_state: import("typed-binary").ByteSchema;
94
+ }>;
95
+ enums: {
96
+ current_state: {
97
+ readonly Safe: 0;
98
+ readonly RecoveryFill: 1;
99
+ readonly PostRecoveryFill: 2;
100
+ readonly N2Fill: 3;
101
+ readonly PostN2Fill: 4;
102
+ readonly OxFill: 5;
103
+ readonly PostOxFill: 6;
104
+ readonly QDDisconnect: 7;
105
+ readonly Hold: 8;
106
+ };
107
+ };
108
+ };
109
+ FsmCommands_PreviousStatePayload: {
110
+ id: number;
111
+ schema: import("typed-binary").ObjectSchema<{
112
+ current_state: import("typed-binary").ByteSchema;
113
+ }>;
114
+ enums: {
115
+ current_state: {
116
+ readonly Safe: 0;
117
+ readonly RecoveryFill: 1;
118
+ readonly PostRecoveryFill: 2;
119
+ readonly N2Fill: 3;
120
+ readonly PostN2Fill: 4;
121
+ readonly OxFill: 5;
122
+ readonly PostOxFill: 6;
123
+ readonly QDDisconnect: 7;
124
+ readonly Hold: 8;
125
+ };
126
+ };
127
+ };
128
+ FsmCommands_AbortPayload: {
129
+ id: number;
130
+ schema: import("typed-binary").ObjectSchema<{
131
+ reserved: import("typed-binary").ByteSchema;
132
+ }>;
133
+ enums: {};
134
+ };
135
+ FsmCommands_StatusPayload: {
136
+ id: number;
137
+ schema: import("typed-binary").ObjectSchema<{
138
+ reserved: import("typed-binary").ByteSchema;
139
+ }>;
140
+ enums: {};
141
+ };
142
+ ServoCommands_OpenCloseServoPayload: {
143
+ id: number;
144
+ schema: import("typed-binary").ObjectSchema<{
145
+ servo_id: import("typed-binary").ByteSchema;
146
+ open_close: import("typed-binary").ByteSchema;
147
+ duration_ms: import("typed-binary").Uint16Schema;
148
+ delay_ms: import("typed-binary").Uint16Schema;
149
+ position_mode: import("typed-binary").ByteSchema;
150
+ start_policy: import("typed-binary").ByteSchema;
151
+ }>;
152
+ enums: {
153
+ servo_id: {
154
+ readonly OxSupply: 0;
155
+ readonly Count: 1;
156
+ };
157
+ open_close: {
158
+ readonly Open: 0;
159
+ readonly Close: 1;
160
+ };
161
+ position_mode: {
162
+ readonly Absolute: 0;
163
+ readonly Relative: 1;
164
+ };
165
+ start_policy: {
166
+ readonly Preempt: 0;
167
+ readonly NoInterrupt: 1;
168
+ };
169
+ };
170
+ };
171
+ ServoCommands_SetServoPayload: {
172
+ id: number;
173
+ schema: import("typed-binary").ObjectSchema<{
174
+ servo_id: import("typed-binary").ByteSchema;
175
+ angle_deg: import("typed-binary").Float32Schema;
176
+ duration_ms: import("typed-binary").Uint16Schema;
177
+ delay_ms: import("typed-binary").Uint16Schema;
178
+ position_mode: import("typed-binary").ByteSchema;
179
+ start_policy: import("typed-binary").ByteSchema;
180
+ }>;
181
+ enums: {
182
+ servo_id: {
183
+ readonly OxSupply: 0;
184
+ readonly Count: 1;
185
+ };
186
+ position_mode: {
187
+ readonly Absolute: 0;
188
+ readonly Relative: 1;
189
+ };
190
+ start_policy: {
191
+ readonly Preempt: 0;
192
+ readonly NoInterrupt: 1;
193
+ };
194
+ };
195
+ };
196
+ SolenoidCommands_OpenCloseSolenoidPayload: {
197
+ id: number;
198
+ schema: import("typed-binary").ObjectSchema<{
199
+ solenoid_id: import("typed-binary").ByteSchema;
200
+ opening_type: import("typed-binary").ByteSchema;
201
+ }>;
202
+ enums: {
203
+ solenoid_id: {
204
+ readonly OxBleed: 0;
205
+ readonly N2_200_Supply: 1;
206
+ readonly N2_200_Bleed: 2;
207
+ readonly N2_300_Supply: 3;
208
+ readonly N2_300_Bleed: 4;
209
+ readonly QD_1: 5;
210
+ readonly QD_2: 6;
211
+ readonly Count: 7;
212
+ };
213
+ opening_type: {
214
+ readonly Open: 0;
215
+ readonly Close: 1;
216
+ };
217
+ };
218
+ };
219
+ };
220
+ export default spec;
221
+ export type Spec = typeof spec;
@@ -0,0 +1,189 @@
1
+ import bin, { Measurer, Schema } from 'typed-binary';
2
+ // This file was generated by FRICC on 2026-06-29 21:55:58. Do not edit manually!
3
+ // The current version of typed-binary does not support 64-bit primitives.
4
+ // So for we'll implement our own schemas. :)
5
+ const __littleEndian = true;
6
+ class UInt64Schema extends Schema {
7
+ maxSize = 8;
8
+ read(input) {
9
+ const bytes = new Uint8Array(8);
10
+ input.readSlice(bytes, 0, 8);
11
+ const view = new DataView(bytes.buffer, bytes.byteOffset, bytes.byteLength);
12
+ return view.getBigUint64(0, __littleEndian);
13
+ }
14
+ write(output, value) {
15
+ const bytes = new Uint8Array(8);
16
+ const view = new DataView(bytes.buffer, bytes.byteOffset, bytes.byteLength);
17
+ view.setBigUint64(0, value, __littleEndian);
18
+ output.writeSlice(bytes);
19
+ }
20
+ measure(_, measurer = new Measurer()) {
21
+ return measurer.add(8);
22
+ }
23
+ }
24
+ class Int64Schema extends Schema {
25
+ maxSize = 8;
26
+ read(input) {
27
+ const bytes = new Uint8Array(8);
28
+ input.readSlice(bytes, 0, 8);
29
+ const view = new DataView(bytes.buffer, bytes.byteOffset, bytes.byteLength);
30
+ return view.getBigInt64(0, __littleEndian);
31
+ }
32
+ write(output, value) {
33
+ const bytes = new Uint8Array(8);
34
+ const view = new DataView(bytes.buffer, bytes.byteOffset, bytes.byteLength);
35
+ view.setBigInt64(0, value, __littleEndian);
36
+ output.writeSlice(bytes);
37
+ }
38
+ measure(_, measurer = new Measurer()) {
39
+ return measurer.add(8);
40
+ }
41
+ }
42
+ class Float64Schema extends Schema {
43
+ maxSize = 8;
44
+ read(input) {
45
+ const bytes = new Uint8Array(8);
46
+ input.readSlice(bytes, 0, 8);
47
+ const view = new DataView(bytes.buffer, bytes.byteOffset, bytes.byteLength);
48
+ return view.getFloat64(0, __littleEndian);
49
+ }
50
+ write(output, value) {
51
+ const bytes = new Uint8Array(8);
52
+ const view = new DataView(bytes.buffer, bytes.byteOffset, bytes.byteLength);
53
+ view.setFloat64(0, value, __littleEndian);
54
+ output.writeSlice(bytes);
55
+ }
56
+ measure(_, measurer = new Measurer()) {
57
+ return measurer.add(8);
58
+ }
59
+ }
60
+ const u64 = new UInt64Schema();
61
+ const i64 = new Int64Schema();
62
+ const f64 = new Float64Schema();
63
+ export const StateId = {
64
+ Safe: 0,
65
+ RecoveryFill: 1,
66
+ PostRecoveryFill: 2,
67
+ N2Fill: 3,
68
+ PostN2Fill: 4,
69
+ OxFill: 5,
70
+ PostOxFill: 6,
71
+ QDDisconnect: 7,
72
+ Hold: 8,
73
+ };
74
+ export const actuators_servo_Id = {
75
+ OxSupply: 0,
76
+ Count: 1,
77
+ };
78
+ export const ServoCommands_OpenClose = {
79
+ Open: 0,
80
+ Close: 1,
81
+ };
82
+ export const actuators_servo_PositionMode = {
83
+ Absolute: 0,
84
+ Relative: 1,
85
+ };
86
+ export const actuators_servo_StartPolicy = {
87
+ Preempt: 0,
88
+ NoInterrupt: 1,
89
+ };
90
+ export const actuators_solenoid_Id = {
91
+ OxBleed: 0,
92
+ N2_200_Supply: 1,
93
+ N2_200_Bleed: 2,
94
+ N2_300_Supply: 3,
95
+ N2_300_Bleed: 4,
96
+ QD_1: 5,
97
+ QD_2: 6,
98
+ Count: 7,
99
+ };
100
+ export const SolenoidCommands_OpeningType = {
101
+ Open: 0,
102
+ Close: 1,
103
+ };
104
+ export const FsmCommands_NextStatePayload = bin.object({
105
+ current_state: bin.u8, // StateId
106
+ });
107
+ export const FsmCommands_PreviousStatePayload = bin.object({
108
+ current_state: bin.u8, // StateId
109
+ });
110
+ export const FsmCommands_AbortPayload = bin.object({
111
+ reserved: bin.u8, // unsigned char
112
+ });
113
+ export const FsmCommands_StatusPayload = bin.object({
114
+ reserved: bin.u8, // unsigned char
115
+ });
116
+ export const ServoCommands_OpenCloseServoPayload = bin.object({
117
+ servo_id: bin.u8, // actuators::servo::Id
118
+ open_close: bin.u8, // ServoCommands::OpenClose
119
+ duration_ms: bin.u16, // unsigned short
120
+ delay_ms: bin.u16, // unsigned short
121
+ position_mode: bin.u8, // actuators::servo::PositionMode
122
+ start_policy: bin.u8, // actuators::servo::StartPolicy
123
+ });
124
+ export const ServoCommands_SetServoPayload = bin.object({
125
+ servo_id: bin.u8, // actuators::servo::Id
126
+ angle_deg: bin.f32, // float
127
+ duration_ms: bin.u16, // unsigned short
128
+ delay_ms: bin.u16, // unsigned short
129
+ position_mode: bin.u8, // actuators::servo::PositionMode
130
+ start_policy: bin.u8, // actuators::servo::StartPolicy
131
+ });
132
+ export const SolenoidCommands_OpenCloseSolenoidPayload = bin.object({
133
+ solenoid_id: bin.u8, // actuators::solenoid::Id
134
+ opening_type: bin.u8, // SolenoidCommands::OpeningType
135
+ });
136
+ export const spec = {
137
+ FsmCommands_NextStatePayload: {
138
+ id: 32,
139
+ schema: FsmCommands_NextStatePayload,
140
+ enums: {
141
+ current_state: StateId,
142
+ },
143
+ },
144
+ FsmCommands_PreviousStatePayload: {
145
+ id: 33,
146
+ schema: FsmCommands_PreviousStatePayload,
147
+ enums: {
148
+ current_state: StateId,
149
+ },
150
+ },
151
+ FsmCommands_AbortPayload: {
152
+ id: 34,
153
+ schema: FsmCommands_AbortPayload,
154
+ enums: {},
155
+ },
156
+ FsmCommands_StatusPayload: {
157
+ id: 35,
158
+ schema: FsmCommands_StatusPayload,
159
+ enums: {},
160
+ },
161
+ ServoCommands_OpenCloseServoPayload: {
162
+ id: 48,
163
+ schema: ServoCommands_OpenCloseServoPayload,
164
+ enums: {
165
+ servo_id: actuators_servo_Id,
166
+ open_close: ServoCommands_OpenClose,
167
+ position_mode: actuators_servo_PositionMode,
168
+ start_policy: actuators_servo_StartPolicy,
169
+ },
170
+ },
171
+ ServoCommands_SetServoPayload: {
172
+ id: 49,
173
+ schema: ServoCommands_SetServoPayload,
174
+ enums: {
175
+ servo_id: actuators_servo_Id,
176
+ position_mode: actuators_servo_PositionMode,
177
+ start_policy: actuators_servo_StartPolicy,
178
+ },
179
+ },
180
+ SolenoidCommands_OpenCloseSolenoidPayload: {
181
+ id: 80,
182
+ schema: SolenoidCommands_OpenCloseSolenoidPayload,
183
+ enums: {
184
+ solenoid_id: actuators_solenoid_Id,
185
+ opening_type: SolenoidCommands_OpeningType,
186
+ },
187
+ },
188
+ };
189
+ export default spec;
@@ -0,0 +1,212 @@
1
+ {
2
+ "version": 1,
3
+ "structs": {
4
+ "FsmCommands::NextStatePayload": {
5
+ "id": 32,
6
+ "kind": "struct",
7
+ "type": "FsmCommands::NextStatePayload",
8
+ "fields": [
9
+ {
10
+ "name": "current_state",
11
+ "kind": "enum",
12
+ "type": "StateId",
13
+ "format_string": "<B"
14
+ }
15
+ ],
16
+ "format_string": "<B"
17
+ },
18
+ "FsmCommands::PreviousStatePayload": {
19
+ "id": 33,
20
+ "kind": "struct",
21
+ "type": "FsmCommands::PreviousStatePayload",
22
+ "fields": [
23
+ {
24
+ "name": "current_state",
25
+ "kind": "enum",
26
+ "type": "StateId",
27
+ "format_string": "<B"
28
+ }
29
+ ],
30
+ "format_string": "<B"
31
+ },
32
+ "FsmCommands::AbortPayload": {
33
+ "id": 34,
34
+ "kind": "struct",
35
+ "type": "FsmCommands::AbortPayload",
36
+ "fields": [
37
+ {
38
+ "name": "reserved",
39
+ "kind": "primitive",
40
+ "type": "unsigned char",
41
+ "format_string": "<B"
42
+ }
43
+ ],
44
+ "format_string": "<B"
45
+ },
46
+ "FsmCommands::StatusPayload": {
47
+ "id": 35,
48
+ "kind": "struct",
49
+ "type": "FsmCommands::StatusPayload",
50
+ "fields": [
51
+ {
52
+ "name": "reserved",
53
+ "kind": "primitive",
54
+ "type": "unsigned char",
55
+ "format_string": "<B"
56
+ }
57
+ ],
58
+ "format_string": "<B"
59
+ },
60
+ "ServoCommands::OpenCloseServoPayload": {
61
+ "id": 48,
62
+ "kind": "struct",
63
+ "type": "ServoCommands::OpenCloseServoPayload",
64
+ "fields": [
65
+ {
66
+ "name": "servo_id",
67
+ "kind": "enum",
68
+ "type": "actuators::servo::Id",
69
+ "format_string": "<B"
70
+ },
71
+ {
72
+ "name": "open_close",
73
+ "kind": "enum",
74
+ "type": "ServoCommands::OpenClose",
75
+ "format_string": "<B"
76
+ },
77
+ {
78
+ "name": "duration_ms",
79
+ "kind": "primitive",
80
+ "type": "unsigned short",
81
+ "format_string": "<H"
82
+ },
83
+ {
84
+ "name": "delay_ms",
85
+ "kind": "primitive",
86
+ "type": "unsigned short",
87
+ "format_string": "<H"
88
+ },
89
+ {
90
+ "name": "position_mode",
91
+ "kind": "enum",
92
+ "type": "actuators::servo::PositionMode",
93
+ "format_string": "<B"
94
+ },
95
+ {
96
+ "name": "start_policy",
97
+ "kind": "enum",
98
+ "type": "actuators::servo::StartPolicy",
99
+ "format_string": "<B"
100
+ }
101
+ ],
102
+ "format_string": "<BBHHBB"
103
+ },
104
+ "ServoCommands::SetServoPayload": {
105
+ "id": 49,
106
+ "kind": "struct",
107
+ "type": "ServoCommands::SetServoPayload",
108
+ "fields": [
109
+ {
110
+ "name": "servo_id",
111
+ "kind": "enum",
112
+ "type": "actuators::servo::Id",
113
+ "format_string": "<B"
114
+ },
115
+ {
116
+ "name": "angle_deg",
117
+ "kind": "primitive",
118
+ "type": "float",
119
+ "format_string": "<f"
120
+ },
121
+ {
122
+ "name": "duration_ms",
123
+ "kind": "primitive",
124
+ "type": "unsigned short",
125
+ "format_string": "<H"
126
+ },
127
+ {
128
+ "name": "delay_ms",
129
+ "kind": "primitive",
130
+ "type": "unsigned short",
131
+ "format_string": "<H"
132
+ },
133
+ {
134
+ "name": "position_mode",
135
+ "kind": "enum",
136
+ "type": "actuators::servo::PositionMode",
137
+ "format_string": "<B"
138
+ },
139
+ {
140
+ "name": "start_policy",
141
+ "kind": "enum",
142
+ "type": "actuators::servo::StartPolicy",
143
+ "format_string": "<B"
144
+ }
145
+ ],
146
+ "format_string": "<BfHHBB"
147
+ },
148
+ "SolenoidCommands::OpenCloseSolenoidPayload": {
149
+ "id": 80,
150
+ "kind": "struct",
151
+ "type": "SolenoidCommands::OpenCloseSolenoidPayload",
152
+ "fields": [
153
+ {
154
+ "name": "solenoid_id",
155
+ "kind": "enum",
156
+ "type": "actuators::solenoid::Id",
157
+ "format_string": "<B"
158
+ },
159
+ {
160
+ "name": "opening_type",
161
+ "kind": "enum",
162
+ "type": "SolenoidCommands::OpeningType",
163
+ "format_string": "<B"
164
+ }
165
+ ],
166
+ "format_string": "<BB"
167
+ }
168
+ },
169
+ "enums": {
170
+ "StateId": {
171
+ "Safe": 0,
172
+ "RecoveryFill": 1,
173
+ "PostRecoveryFill": 2,
174
+ "N2Fill": 3,
175
+ "PostN2Fill": 4,
176
+ "OxFill": 5,
177
+ "PostOxFill": 6,
178
+ "QDDisconnect": 7,
179
+ "Hold": 8
180
+ },
181
+ "actuators::servo::Id": {
182
+ "OxSupply": 0,
183
+ "Count": 1
184
+ },
185
+ "ServoCommands::OpenClose": {
186
+ "Open": 0,
187
+ "Close": 1
188
+ },
189
+ "actuators::servo::PositionMode": {
190
+ "Absolute": 0,
191
+ "Relative": 1
192
+ },
193
+ "actuators::servo::StartPolicy": {
194
+ "Preempt": 0,
195
+ "NoInterrupt": 1
196
+ },
197
+ "actuators::solenoid::Id": {
198
+ "OxBleed": 0,
199
+ "N2_200_Supply": 1,
200
+ "N2_200_Bleed": 2,
201
+ "N2_300_Supply": 3,
202
+ "N2_300_Bleed": 4,
203
+ "QD_1": 5,
204
+ "QD_2": 6,
205
+ "Count": 7
206
+ },
207
+ "SolenoidCommands::OpeningType": {
208
+ "Open": 0,
209
+ "Close": 1
210
+ }
211
+ }
212
+ }
@@ -0,0 +1,4 @@
1
+ export { default as commandsJson } from "./commands.json";
2
+ export * as commands from "./commands";
3
+ export { default as telemetryJson } from "./telemetry.json";
4
+ export * as telemetry from "./telemetry";
@@ -0,0 +1,4 @@
1
+ export { default as commandsJson } from "./commands.json";
2
+ export * as commands from "./commands";
3
+ export { default as telemetryJson } from "./telemetry.json";
4
+ export * as telemetry from "./telemetry";