@kusinta/iot-schema 0.1.0-beta.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/LICENSE +21 -0
- package/README.md +49 -0
- package/package.json +36 -0
- package/src/kusinta/iot/access/v1/acl_pb.d.ts +144 -0
- package/src/kusinta/iot/access/v1/acl_pb.js +36 -0
- package/src/kusinta/iot/access/v1/roles_pb.d.ts +81 -0
- package/src/kusinta/iot/access/v1/roles_pb.js +36 -0
- package/src/kusinta/iot/common/v1/types_pb.d.ts +163 -0
- package/src/kusinta/iot/common/v1/types_pb.js +67 -0
- package/src/kusinta/iot/connector/v1/connector_pb.d.ts +366 -0
- package/src/kusinta/iot/connector/v1/connector_pb.js +102 -0
- package/src/kusinta/iot/connector/v1/connector_service_pb.d.ts +29 -0
- package/src/kusinta/iot/connector/v1/connector_service_pb.js +22 -0
- package/src/kusinta/iot/device/v1/descriptor_pb.d.ts +115 -0
- package/src/kusinta/iot/device/v1/descriptor_pb.js +22 -0
- package/src/kusinta/iot/device/v1/device_pb.d.ts +131 -0
- package/src/kusinta/iot/device/v1/device_pb.js +23 -0
- package/src/kusinta/iot/device/v1/properties_pb.d.ts +580 -0
- package/src/kusinta/iot/device/v1/properties_pb.js +96 -0
- package/src/kusinta/iot/device/v1/property_update_pb.d.ts +112 -0
- package/src/kusinta/iot/device/v1/property_update_pb.js +28 -0
- package/src/kusinta/iot/identity/v1/identity_pb.d.ts +108 -0
- package/src/kusinta/iot/identity/v1/identity_pb.js +54 -0
- package/src/kusinta/iot/registration/v1/registration_pb.d.ts +170 -0
- package/src/kusinta/iot/registration/v1/registration_pb.js +61 -0
- package/src/kusinta/iot/registration/v1/registration_service_pb.d.ts +34 -0
- package/src/kusinta/iot/registration/v1/registration_service_pb.js +19 -0
- package/src/kusinta/iot/signaling/v1/signaling_pb.d.ts +245 -0
- package/src/kusinta/iot/signaling/v1/signaling_pb.js +76 -0
- package/src/kusinta/iot/signaling/v1/signaling_service_pb.d.ts +34 -0
- package/src/kusinta/iot/signaling/v1/signaling_service_pb.js +19 -0
- package/src/kusinta/iot/space/v1/space_pb.d.ts +86 -0
- package/src/kusinta/iot/space/v1/space_pb.js +21 -0
- package/src/kusinta/iot/vendor/homematic/v1/homematic_pb.d.ts +94 -0
- package/src/kusinta/iot/vendor/homematic/v1/homematic_pb.js +26 -0
- package/src/kusinta/iot/webrtc/v1/command_pb.d.ts +271 -0
- package/src/kusinta/iot/webrtc/v1/command_pb.js +70 -0
- package/src/kusinta/iot/webrtc/v1/device_state_pb.d.ts +67 -0
- package/src/kusinta/iot/webrtc/v1/device_state_pb.js +30 -0
- package/src/kusinta/iot/webrtc/v1/envelope_pb.d.ts +232 -0
- package/src/kusinta/iot/webrtc/v1/envelope_pb.js +66 -0
- package/src/kusinta/iot/webrtc/v1/permission_push_pb.d.ts +48 -0
- package/src/kusinta/iot/webrtc/v1/permission_push_pb.js +21 -0
|
@@ -0,0 +1,366 @@
|
|
|
1
|
+
// @generated by protoc-gen-es v2.12.0 with parameter "target=js+dts,import_extension=js"
|
|
2
|
+
// @generated from file kusinta/iot/connector/v1/connector.proto (package kusinta.iot.connector.v1, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv2";
|
|
6
|
+
import type { Message } from "@bufbuild/protobuf";
|
|
7
|
+
import type { ConnectorId, DeviceId, GatewayId } from "../../identity/v1/identity_pb.js";
|
|
8
|
+
import type { ConnectorTransport } from "../../common/v1/types_pb.js";
|
|
9
|
+
import type { DeviceDescriptor } from "../../device/v1/descriptor_pb.js";
|
|
10
|
+
import type { Timestamp } from "@bufbuild/protobuf/wkt";
|
|
11
|
+
import type { PropertyUpdateBatch } from "../../device/v1/property_update_pb.js";
|
|
12
|
+
import type { DeviceCommand } from "../../webrtc/v1/command_pb.js";
|
|
13
|
+
|
|
14
|
+
/**
|
|
15
|
+
* Describes the file kusinta/iot/connector/v1/connector.proto.
|
|
16
|
+
*/
|
|
17
|
+
export declare const file_kusinta_iot_connector_v1_connector: GenFile;
|
|
18
|
+
|
|
19
|
+
/**
|
|
20
|
+
* @generated from message kusinta.iot.connector.v1.ConnectorInfo
|
|
21
|
+
*/
|
|
22
|
+
export declare type ConnectorInfo = Message<"kusinta.iot.connector.v1.ConnectorInfo"> & {
|
|
23
|
+
/**
|
|
24
|
+
* @generated from field: kusinta.iot.identity.v1.ConnectorId connector_id = 1;
|
|
25
|
+
*/
|
|
26
|
+
connectorId?: ConnectorId | undefined;
|
|
27
|
+
|
|
28
|
+
/**
|
|
29
|
+
* @generated from field: string display_name = 2;
|
|
30
|
+
*/
|
|
31
|
+
displayName: string;
|
|
32
|
+
|
|
33
|
+
/**
|
|
34
|
+
* @generated from field: string version = 3;
|
|
35
|
+
*/
|
|
36
|
+
version: string;
|
|
37
|
+
|
|
38
|
+
/**
|
|
39
|
+
* @generated from field: kusinta.iot.common.v1.ConnectorTransport transport = 4;
|
|
40
|
+
*/
|
|
41
|
+
transport: ConnectorTransport;
|
|
42
|
+
|
|
43
|
+
/**
|
|
44
|
+
* unix socket path or host:port
|
|
45
|
+
*
|
|
46
|
+
* @generated from field: string endpoint = 5;
|
|
47
|
+
*/
|
|
48
|
+
endpoint: string;
|
|
49
|
+
|
|
50
|
+
/**
|
|
51
|
+
* @generated from field: repeated uint32 supported_device_type_ids = 6;
|
|
52
|
+
*/
|
|
53
|
+
supportedDeviceTypeIds: number[];
|
|
54
|
+
};
|
|
55
|
+
|
|
56
|
+
/**
|
|
57
|
+
* Describes the message kusinta.iot.connector.v1.ConnectorInfo.
|
|
58
|
+
* Use `create(ConnectorInfoSchema)` to create a new message.
|
|
59
|
+
*/
|
|
60
|
+
export declare const ConnectorInfoSchema: GenMessage<ConnectorInfo>;
|
|
61
|
+
|
|
62
|
+
/**
|
|
63
|
+
* @generated from message kusinta.iot.connector.v1.ConnectorHandshake
|
|
64
|
+
*/
|
|
65
|
+
export declare type ConnectorHandshake = Message<"kusinta.iot.connector.v1.ConnectorHandshake"> & {
|
|
66
|
+
/**
|
|
67
|
+
* @generated from field: kusinta.iot.connector.v1.ConnectorInfo info = 1;
|
|
68
|
+
*/
|
|
69
|
+
info?: ConnectorInfo | undefined;
|
|
70
|
+
|
|
71
|
+
/**
|
|
72
|
+
* @generated from field: repeated kusinta.iot.device.v1.DeviceDescriptor known_devices = 2;
|
|
73
|
+
*/
|
|
74
|
+
knownDevices: DeviceDescriptor[];
|
|
75
|
+
};
|
|
76
|
+
|
|
77
|
+
/**
|
|
78
|
+
* Describes the message kusinta.iot.connector.v1.ConnectorHandshake.
|
|
79
|
+
* Use `create(ConnectorHandshakeSchema)` to create a new message.
|
|
80
|
+
*/
|
|
81
|
+
export declare const ConnectorHandshakeSchema: GenMessage<ConnectorHandshake>;
|
|
82
|
+
|
|
83
|
+
/**
|
|
84
|
+
* @generated from message kusinta.iot.connector.v1.HandshakeAck
|
|
85
|
+
*/
|
|
86
|
+
export declare type HandshakeAck = Message<"kusinta.iot.connector.v1.HandshakeAck"> & {
|
|
87
|
+
/**
|
|
88
|
+
* @generated from field: bool accepted = 1;
|
|
89
|
+
*/
|
|
90
|
+
accepted: boolean;
|
|
91
|
+
|
|
92
|
+
/**
|
|
93
|
+
* @generated from field: string reason = 2;
|
|
94
|
+
*/
|
|
95
|
+
reason: string;
|
|
96
|
+
|
|
97
|
+
/**
|
|
98
|
+
* @generated from field: kusinta.iot.identity.v1.GatewayId gateway_id = 3;
|
|
99
|
+
*/
|
|
100
|
+
gatewayId?: GatewayId | undefined;
|
|
101
|
+
};
|
|
102
|
+
|
|
103
|
+
/**
|
|
104
|
+
* Describes the message kusinta.iot.connector.v1.HandshakeAck.
|
|
105
|
+
* Use `create(HandshakeAckSchema)` to create a new message.
|
|
106
|
+
*/
|
|
107
|
+
export declare const HandshakeAckSchema: GenMessage<HandshakeAck>;
|
|
108
|
+
|
|
109
|
+
/**
|
|
110
|
+
* @generated from message kusinta.iot.connector.v1.DeviceAnnouncement
|
|
111
|
+
*/
|
|
112
|
+
export declare type DeviceAnnouncement = Message<"kusinta.iot.connector.v1.DeviceAnnouncement"> & {
|
|
113
|
+
/**
|
|
114
|
+
* @generated from field: kusinta.iot.device.v1.DeviceDescriptor descriptor = 1;
|
|
115
|
+
*/
|
|
116
|
+
descriptor?: DeviceDescriptor | undefined;
|
|
117
|
+
};
|
|
118
|
+
|
|
119
|
+
/**
|
|
120
|
+
* Describes the message kusinta.iot.connector.v1.DeviceAnnouncement.
|
|
121
|
+
* Use `create(DeviceAnnouncementSchema)` to create a new message.
|
|
122
|
+
*/
|
|
123
|
+
export declare const DeviceAnnouncementSchema: GenMessage<DeviceAnnouncement>;
|
|
124
|
+
|
|
125
|
+
/**
|
|
126
|
+
* @generated from message kusinta.iot.connector.v1.DeviceRemoval
|
|
127
|
+
*/
|
|
128
|
+
export declare type DeviceRemoval = Message<"kusinta.iot.connector.v1.DeviceRemoval"> & {
|
|
129
|
+
/**
|
|
130
|
+
* @generated from field: kusinta.iot.identity.v1.DeviceId device_id = 1;
|
|
131
|
+
*/
|
|
132
|
+
deviceId?: DeviceId | undefined;
|
|
133
|
+
|
|
134
|
+
/**
|
|
135
|
+
* @generated from field: string reason = 2;
|
|
136
|
+
*/
|
|
137
|
+
reason: string;
|
|
138
|
+
};
|
|
139
|
+
|
|
140
|
+
/**
|
|
141
|
+
* Describes the message kusinta.iot.connector.v1.DeviceRemoval.
|
|
142
|
+
* Use `create(DeviceRemovalSchema)` to create a new message.
|
|
143
|
+
*/
|
|
144
|
+
export declare const DeviceRemovalSchema: GenMessage<DeviceRemoval>;
|
|
145
|
+
|
|
146
|
+
/**
|
|
147
|
+
* @generated from message kusinta.iot.connector.v1.HeartBeat
|
|
148
|
+
*/
|
|
149
|
+
export declare type HeartBeat = Message<"kusinta.iot.connector.v1.HeartBeat"> & {
|
|
150
|
+
};
|
|
151
|
+
|
|
152
|
+
/**
|
|
153
|
+
* Describes the message kusinta.iot.connector.v1.HeartBeat.
|
|
154
|
+
* Use `create(HeartBeatSchema)` to create a new message.
|
|
155
|
+
*/
|
|
156
|
+
export declare const HeartBeatSchema: GenMessage<HeartBeat>;
|
|
157
|
+
|
|
158
|
+
/**
|
|
159
|
+
* @generated from message kusinta.iot.connector.v1.SubscribeDevice
|
|
160
|
+
*/
|
|
161
|
+
export declare type SubscribeDevice = Message<"kusinta.iot.connector.v1.SubscribeDevice"> & {
|
|
162
|
+
/**
|
|
163
|
+
* @generated from field: kusinta.iot.identity.v1.DeviceId device_id = 1;
|
|
164
|
+
*/
|
|
165
|
+
deviceId?: DeviceId | undefined;
|
|
166
|
+
};
|
|
167
|
+
|
|
168
|
+
/**
|
|
169
|
+
* Describes the message kusinta.iot.connector.v1.SubscribeDevice.
|
|
170
|
+
* Use `create(SubscribeDeviceSchema)` to create a new message.
|
|
171
|
+
*/
|
|
172
|
+
export declare const SubscribeDeviceSchema: GenMessage<SubscribeDevice>;
|
|
173
|
+
|
|
174
|
+
/**
|
|
175
|
+
* @generated from message kusinta.iot.connector.v1.UnsubscribeDevice
|
|
176
|
+
*/
|
|
177
|
+
export declare type UnsubscribeDevice = Message<"kusinta.iot.connector.v1.UnsubscribeDevice"> & {
|
|
178
|
+
/**
|
|
179
|
+
* @generated from field: kusinta.iot.identity.v1.DeviceId device_id = 1;
|
|
180
|
+
*/
|
|
181
|
+
deviceId?: DeviceId | undefined;
|
|
182
|
+
};
|
|
183
|
+
|
|
184
|
+
/**
|
|
185
|
+
* Describes the message kusinta.iot.connector.v1.UnsubscribeDevice.
|
|
186
|
+
* Use `create(UnsubscribeDeviceSchema)` to create a new message.
|
|
187
|
+
*/
|
|
188
|
+
export declare const UnsubscribeDeviceSchema: GenMessage<UnsubscribeDevice>;
|
|
189
|
+
|
|
190
|
+
/**
|
|
191
|
+
* @generated from message kusinta.iot.connector.v1.GatewayError
|
|
192
|
+
*/
|
|
193
|
+
export declare type GatewayError = Message<"kusinta.iot.connector.v1.GatewayError"> & {
|
|
194
|
+
/**
|
|
195
|
+
* @generated from field: string code = 1;
|
|
196
|
+
*/
|
|
197
|
+
code: string;
|
|
198
|
+
|
|
199
|
+
/**
|
|
200
|
+
* @generated from field: string message = 2;
|
|
201
|
+
*/
|
|
202
|
+
message: string;
|
|
203
|
+
|
|
204
|
+
/**
|
|
205
|
+
* non-empty if the error is in response to a command
|
|
206
|
+
*
|
|
207
|
+
* @generated from field: string command_id = 3;
|
|
208
|
+
*/
|
|
209
|
+
commandId: string;
|
|
210
|
+
};
|
|
211
|
+
|
|
212
|
+
/**
|
|
213
|
+
* Describes the message kusinta.iot.connector.v1.GatewayError.
|
|
214
|
+
* Use `create(GatewayErrorSchema)` to create a new message.
|
|
215
|
+
*/
|
|
216
|
+
export declare const GatewayErrorSchema: GenMessage<GatewayError>;
|
|
217
|
+
|
|
218
|
+
/**
|
|
219
|
+
* @generated from message kusinta.iot.connector.v1.CommandResult
|
|
220
|
+
*/
|
|
221
|
+
export declare type CommandResult = Message<"kusinta.iot.connector.v1.CommandResult"> & {
|
|
222
|
+
/**
|
|
223
|
+
* @generated from field: string command_id = 1;
|
|
224
|
+
*/
|
|
225
|
+
commandId: string;
|
|
226
|
+
|
|
227
|
+
/**
|
|
228
|
+
* @generated from field: bool success = 2;
|
|
229
|
+
*/
|
|
230
|
+
success: boolean;
|
|
231
|
+
|
|
232
|
+
/**
|
|
233
|
+
* @generated from field: kusinta.iot.connector.v1.GatewayError error = 3;
|
|
234
|
+
*/
|
|
235
|
+
error?: GatewayError | undefined;
|
|
236
|
+
|
|
237
|
+
/**
|
|
238
|
+
* @generated from field: google.protobuf.Timestamp completed_at = 4;
|
|
239
|
+
*/
|
|
240
|
+
completedAt?: Timestamp | undefined;
|
|
241
|
+
};
|
|
242
|
+
|
|
243
|
+
/**
|
|
244
|
+
* Describes the message kusinta.iot.connector.v1.CommandResult.
|
|
245
|
+
* Use `create(CommandResultSchema)` to create a new message.
|
|
246
|
+
*/
|
|
247
|
+
export declare const CommandResultSchema: GenMessage<CommandResult>;
|
|
248
|
+
|
|
249
|
+
/**
|
|
250
|
+
* @generated from message kusinta.iot.connector.v1.ConnectRequest
|
|
251
|
+
*/
|
|
252
|
+
export declare type ConnectRequest = Message<"kusinta.iot.connector.v1.ConnectRequest"> & {
|
|
253
|
+
/**
|
|
254
|
+
* @generated from field: string message_id = 1;
|
|
255
|
+
*/
|
|
256
|
+
messageId: string;
|
|
257
|
+
|
|
258
|
+
/**
|
|
259
|
+
* @generated from field: google.protobuf.Timestamp sent_at = 2;
|
|
260
|
+
*/
|
|
261
|
+
sentAt?: Timestamp | undefined;
|
|
262
|
+
|
|
263
|
+
/**
|
|
264
|
+
* @generated from oneof kusinta.iot.connector.v1.ConnectRequest.payload
|
|
265
|
+
*/
|
|
266
|
+
payload: {
|
|
267
|
+
/**
|
|
268
|
+
* @generated from field: kusinta.iot.connector.v1.ConnectorHandshake handshake = 3;
|
|
269
|
+
*/
|
|
270
|
+
value: ConnectorHandshake;
|
|
271
|
+
case: "handshake";
|
|
272
|
+
} | {
|
|
273
|
+
/**
|
|
274
|
+
* @generated from field: kusinta.iot.device.v1.PropertyUpdateBatch property_update = 4;
|
|
275
|
+
*/
|
|
276
|
+
value: PropertyUpdateBatch;
|
|
277
|
+
case: "propertyUpdate";
|
|
278
|
+
} | {
|
|
279
|
+
/**
|
|
280
|
+
* @generated from field: kusinta.iot.connector.v1.DeviceAnnouncement device_announced = 5;
|
|
281
|
+
*/
|
|
282
|
+
value: DeviceAnnouncement;
|
|
283
|
+
case: "deviceAnnounced";
|
|
284
|
+
} | {
|
|
285
|
+
/**
|
|
286
|
+
* @generated from field: kusinta.iot.connector.v1.DeviceRemoval device_removed = 6;
|
|
287
|
+
*/
|
|
288
|
+
value: DeviceRemoval;
|
|
289
|
+
case: "deviceRemoved";
|
|
290
|
+
} | {
|
|
291
|
+
/**
|
|
292
|
+
* @generated from field: kusinta.iot.connector.v1.CommandResult command_result = 7;
|
|
293
|
+
*/
|
|
294
|
+
value: CommandResult;
|
|
295
|
+
case: "commandResult";
|
|
296
|
+
} | {
|
|
297
|
+
/**
|
|
298
|
+
* @generated from field: kusinta.iot.connector.v1.HeartBeat heartbeat = 8;
|
|
299
|
+
*/
|
|
300
|
+
value: HeartBeat;
|
|
301
|
+
case: "heartbeat";
|
|
302
|
+
} | { case: undefined; value?: undefined };
|
|
303
|
+
};
|
|
304
|
+
|
|
305
|
+
/**
|
|
306
|
+
* Describes the message kusinta.iot.connector.v1.ConnectRequest.
|
|
307
|
+
* Use `create(ConnectRequestSchema)` to create a new message.
|
|
308
|
+
*/
|
|
309
|
+
export declare const ConnectRequestSchema: GenMessage<ConnectRequest>;
|
|
310
|
+
|
|
311
|
+
/**
|
|
312
|
+
* @generated from message kusinta.iot.connector.v1.ConnectResponse
|
|
313
|
+
*/
|
|
314
|
+
export declare type ConnectResponse = Message<"kusinta.iot.connector.v1.ConnectResponse"> & {
|
|
315
|
+
/**
|
|
316
|
+
* @generated from field: string message_id = 1;
|
|
317
|
+
*/
|
|
318
|
+
messageId: string;
|
|
319
|
+
|
|
320
|
+
/**
|
|
321
|
+
* @generated from field: google.protobuf.Timestamp sent_at = 2;
|
|
322
|
+
*/
|
|
323
|
+
sentAt?: Timestamp | undefined;
|
|
324
|
+
|
|
325
|
+
/**
|
|
326
|
+
* @generated from oneof kusinta.iot.connector.v1.ConnectResponse.payload
|
|
327
|
+
*/
|
|
328
|
+
payload: {
|
|
329
|
+
/**
|
|
330
|
+
* @generated from field: kusinta.iot.connector.v1.HandshakeAck handshake_ack = 3;
|
|
331
|
+
*/
|
|
332
|
+
value: HandshakeAck;
|
|
333
|
+
case: "handshakeAck";
|
|
334
|
+
} | {
|
|
335
|
+
/**
|
|
336
|
+
* @generated from field: kusinta.iot.connector.v1.SubscribeDevice subscribe = 5;
|
|
337
|
+
*/
|
|
338
|
+
value: SubscribeDevice;
|
|
339
|
+
case: "subscribe";
|
|
340
|
+
} | {
|
|
341
|
+
/**
|
|
342
|
+
* @generated from field: kusinta.iot.connector.v1.UnsubscribeDevice unsubscribe = 6;
|
|
343
|
+
*/
|
|
344
|
+
value: UnsubscribeDevice;
|
|
345
|
+
case: "unsubscribe";
|
|
346
|
+
} | {
|
|
347
|
+
/**
|
|
348
|
+
* @generated from field: kusinta.iot.connector.v1.GatewayError error = 7;
|
|
349
|
+
*/
|
|
350
|
+
value: GatewayError;
|
|
351
|
+
case: "error";
|
|
352
|
+
} | {
|
|
353
|
+
/**
|
|
354
|
+
* @generated from field: kusinta.iot.webrtc.v1.DeviceCommand execute_command = 8;
|
|
355
|
+
*/
|
|
356
|
+
value: DeviceCommand;
|
|
357
|
+
case: "executeCommand";
|
|
358
|
+
} | { case: undefined; value?: undefined };
|
|
359
|
+
};
|
|
360
|
+
|
|
361
|
+
/**
|
|
362
|
+
* Describes the message kusinta.iot.connector.v1.ConnectResponse.
|
|
363
|
+
* Use `create(ConnectResponseSchema)` to create a new message.
|
|
364
|
+
*/
|
|
365
|
+
export declare const ConnectResponseSchema: GenMessage<ConnectResponse>;
|
|
366
|
+
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
// @generated by protoc-gen-es v2.12.0 with parameter "target=js+dts,import_extension=js"
|
|
2
|
+
// @generated from file kusinta/iot/connector/v1/connector.proto (package kusinta.iot.connector.v1, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import { fileDesc, messageDesc } from "@bufbuild/protobuf/codegenv2";
|
|
6
|
+
import { file_google_protobuf_timestamp } from "@bufbuild/protobuf/wkt";
|
|
7
|
+
import { file_kusinta_iot_common_v1_types } from "../../common/v1/types_pb.js";
|
|
8
|
+
import { file_kusinta_iot_identity_v1_identity } from "../../identity/v1/identity_pb.js";
|
|
9
|
+
import { file_kusinta_iot_device_v1_descriptor } from "../../device/v1/descriptor_pb.js";
|
|
10
|
+
import { file_kusinta_iot_device_v1_property_update } from "../../device/v1/property_update_pb.js";
|
|
11
|
+
import { file_kusinta_iot_webrtc_v1_command } from "../../webrtc/v1/command_pb.js";
|
|
12
|
+
|
|
13
|
+
/**
|
|
14
|
+
* Describes the file kusinta/iot/connector/v1/connector.proto.
|
|
15
|
+
*/
|
|
16
|
+
export const file_kusinta_iot_connector_v1_connector = /*@__PURE__*/
|
|
17
|
+
fileDesc("CihrdXNpbnRhL2lvdC9jb25uZWN0b3IvdjEvY29ubmVjdG9yLnByb3RvEhhrdXNpbnRhLmlvdC5jb25uZWN0b3IudjEi5QEKDUNvbm5lY3RvckluZm8SOgoMY29ubmVjdG9yX2lkGAEgASgLMiQua3VzaW50YS5pb3QuaWRlbnRpdHkudjEuQ29ubmVjdG9ySWQSFAoMZGlzcGxheV9uYW1lGAIgASgJEg8KB3ZlcnNpb24YAyABKAkSPAoJdHJhbnNwb3J0GAQgASgOMikua3VzaW50YS5pb3QuY29tbW9uLnYxLkNvbm5lY3RvclRyYW5zcG9ydBIQCghlbmRwb2ludBgFIAEoCRIhChlzdXBwb3J0ZWRfZGV2aWNlX3R5cGVfaWRzGAYgAygNIosBChJDb25uZWN0b3JIYW5kc2hha2USNQoEaW5mbxgBIAEoCzInLmt1c2ludGEuaW90LmNvbm5lY3Rvci52MS5Db25uZWN0b3JJbmZvEj4KDWtub3duX2RldmljZXMYAiADKAsyJy5rdXNpbnRhLmlvdC5kZXZpY2UudjEuRGV2aWNlRGVzY3JpcHRvciJoCgxIYW5kc2hha2VBY2sSEAoIYWNjZXB0ZWQYASABKAgSDgoGcmVhc29uGAIgASgJEjYKCmdhdGV3YXlfaWQYAyABKAsyIi5rdXNpbnRhLmlvdC5pZGVudGl0eS52MS5HYXRld2F5SWQiUQoSRGV2aWNlQW5ub3VuY2VtZW50EjsKCmRlc2NyaXB0b3IYASABKAsyJy5rdXNpbnRhLmlvdC5kZXZpY2UudjEuRGV2aWNlRGVzY3JpcHRvciJVCg1EZXZpY2VSZW1vdmFsEjQKCWRldmljZV9pZBgBIAEoCzIhLmt1c2ludGEuaW90LmlkZW50aXR5LnYxLkRldmljZUlkEg4KBnJlYXNvbhgCIAEoCSILCglIZWFydEJlYXQiRwoPU3Vic2NyaWJlRGV2aWNlEjQKCWRldmljZV9pZBgBIAEoCzIhLmt1c2ludGEuaW90LmlkZW50aXR5LnYxLkRldmljZUlkIkkKEVVuc3Vic2NyaWJlRGV2aWNlEjQKCWRldmljZV9pZBgBIAEoCzIhLmt1c2ludGEuaW90LmlkZW50aXR5LnYxLkRldmljZUlkIkEKDEdhdGV3YXlFcnJvchIMCgRjb2RlGAEgASgJEg8KB21lc3NhZ2UYAiABKAkSEgoKY29tbWFuZF9pZBgDIAEoCSKdAQoNQ29tbWFuZFJlc3VsdBISCgpjb21tYW5kX2lkGAEgASgJEg8KB3N1Y2Nlc3MYAiABKAgSNQoFZXJyb3IYAyABKAsyJi5rdXNpbnRhLmlvdC5jb25uZWN0b3IudjEuR2F0ZXdheUVycm9yEjAKDGNvbXBsZXRlZF9hdBgEIAEoCzIaLmdvb2dsZS5wcm90b2J1Zi5UaW1lc3RhbXAi8AMKDkNvbm5lY3RSZXF1ZXN0EhIKCm1lc3NhZ2VfaWQYASABKAkSKwoHc2VudF9hdBgCIAEoCzIaLmdvb2dsZS5wcm90b2J1Zi5UaW1lc3RhbXASQQoJaGFuZHNoYWtlGAMgASgLMiwua3VzaW50YS5pb3QuY29ubmVjdG9yLnYxLkNvbm5lY3RvckhhbmRzaGFrZUgAEkUKD3Byb3BlcnR5X3VwZGF0ZRgEIAEoCzIqLmt1c2ludGEuaW90LmRldmljZS52MS5Qcm9wZXJ0eVVwZGF0ZUJhdGNoSAASSAoQZGV2aWNlX2Fubm91bmNlZBgFIAEoCzIsLmt1c2ludGEuaW90LmNvbm5lY3Rvci52MS5EZXZpY2VBbm5vdW5jZW1lbnRIABJBCg5kZXZpY2VfcmVtb3ZlZBgGIAEoCzInLmt1c2ludGEuaW90LmNvbm5lY3Rvci52MS5EZXZpY2VSZW1vdmFsSAASQQoOY29tbWFuZF9yZXN1bHQYByABKAsyJy5rdXNpbnRhLmlvdC5jb25uZWN0b3IudjEuQ29tbWFuZFJlc3VsdEgAEjgKCWhlYXJ0YmVhdBgIIAEoCzIjLmt1c2ludGEuaW90LmNvbm5lY3Rvci52MS5IZWFydEJlYXRIAEIJCgdwYXlsb2FkIqIDCg9Db25uZWN0UmVzcG9uc2USEgoKbWVzc2FnZV9pZBgBIAEoCRIrCgdzZW50X2F0GAIgASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcBI/Cg1oYW5kc2hha2VfYWNrGAMgASgLMiYua3VzaW50YS5pb3QuY29ubmVjdG9yLnYxLkhhbmRzaGFrZUFja0gAEj4KCXN1YnNjcmliZRgFIAEoCzIpLmt1c2ludGEuaW90LmNvbm5lY3Rvci52MS5TdWJzY3JpYmVEZXZpY2VIABJCCgt1bnN1YnNjcmliZRgGIAEoCzIrLmt1c2ludGEuaW90LmNvbm5lY3Rvci52MS5VbnN1YnNjcmliZURldmljZUgAEjcKBWVycm9yGAcgASgLMiYua3VzaW50YS5pb3QuY29ubmVjdG9yLnYxLkdhdGV3YXlFcnJvckgAEj8KD2V4ZWN1dGVfY29tbWFuZBgIIAEoCzIkLmt1c2ludGEuaW90LndlYnJ0Yy52MS5EZXZpY2VDb21tYW5kSABCCQoHcGF5bG9hZEoECAQQBUICSAFiBnByb3RvMw", [file_google_protobuf_timestamp, file_kusinta_iot_common_v1_types, file_kusinta_iot_identity_v1_identity, file_kusinta_iot_device_v1_descriptor, file_kusinta_iot_device_v1_property_update, file_kusinta_iot_webrtc_v1_command]);
|
|
18
|
+
|
|
19
|
+
/**
|
|
20
|
+
* Describes the message kusinta.iot.connector.v1.ConnectorInfo.
|
|
21
|
+
* Use `create(ConnectorInfoSchema)` to create a new message.
|
|
22
|
+
*/
|
|
23
|
+
export const ConnectorInfoSchema = /*@__PURE__*/
|
|
24
|
+
messageDesc(file_kusinta_iot_connector_v1_connector, 0);
|
|
25
|
+
|
|
26
|
+
/**
|
|
27
|
+
* Describes the message kusinta.iot.connector.v1.ConnectorHandshake.
|
|
28
|
+
* Use `create(ConnectorHandshakeSchema)` to create a new message.
|
|
29
|
+
*/
|
|
30
|
+
export const ConnectorHandshakeSchema = /*@__PURE__*/
|
|
31
|
+
messageDesc(file_kusinta_iot_connector_v1_connector, 1);
|
|
32
|
+
|
|
33
|
+
/**
|
|
34
|
+
* Describes the message kusinta.iot.connector.v1.HandshakeAck.
|
|
35
|
+
* Use `create(HandshakeAckSchema)` to create a new message.
|
|
36
|
+
*/
|
|
37
|
+
export const HandshakeAckSchema = /*@__PURE__*/
|
|
38
|
+
messageDesc(file_kusinta_iot_connector_v1_connector, 2);
|
|
39
|
+
|
|
40
|
+
/**
|
|
41
|
+
* Describes the message kusinta.iot.connector.v1.DeviceAnnouncement.
|
|
42
|
+
* Use `create(DeviceAnnouncementSchema)` to create a new message.
|
|
43
|
+
*/
|
|
44
|
+
export const DeviceAnnouncementSchema = /*@__PURE__*/
|
|
45
|
+
messageDesc(file_kusinta_iot_connector_v1_connector, 3);
|
|
46
|
+
|
|
47
|
+
/**
|
|
48
|
+
* Describes the message kusinta.iot.connector.v1.DeviceRemoval.
|
|
49
|
+
* Use `create(DeviceRemovalSchema)` to create a new message.
|
|
50
|
+
*/
|
|
51
|
+
export const DeviceRemovalSchema = /*@__PURE__*/
|
|
52
|
+
messageDesc(file_kusinta_iot_connector_v1_connector, 4);
|
|
53
|
+
|
|
54
|
+
/**
|
|
55
|
+
* Describes the message kusinta.iot.connector.v1.HeartBeat.
|
|
56
|
+
* Use `create(HeartBeatSchema)` to create a new message.
|
|
57
|
+
*/
|
|
58
|
+
export const HeartBeatSchema = /*@__PURE__*/
|
|
59
|
+
messageDesc(file_kusinta_iot_connector_v1_connector, 5);
|
|
60
|
+
|
|
61
|
+
/**
|
|
62
|
+
* Describes the message kusinta.iot.connector.v1.SubscribeDevice.
|
|
63
|
+
* Use `create(SubscribeDeviceSchema)` to create a new message.
|
|
64
|
+
*/
|
|
65
|
+
export const SubscribeDeviceSchema = /*@__PURE__*/
|
|
66
|
+
messageDesc(file_kusinta_iot_connector_v1_connector, 6);
|
|
67
|
+
|
|
68
|
+
/**
|
|
69
|
+
* Describes the message kusinta.iot.connector.v1.UnsubscribeDevice.
|
|
70
|
+
* Use `create(UnsubscribeDeviceSchema)` to create a new message.
|
|
71
|
+
*/
|
|
72
|
+
export const UnsubscribeDeviceSchema = /*@__PURE__*/
|
|
73
|
+
messageDesc(file_kusinta_iot_connector_v1_connector, 7);
|
|
74
|
+
|
|
75
|
+
/**
|
|
76
|
+
* Describes the message kusinta.iot.connector.v1.GatewayError.
|
|
77
|
+
* Use `create(GatewayErrorSchema)` to create a new message.
|
|
78
|
+
*/
|
|
79
|
+
export const GatewayErrorSchema = /*@__PURE__*/
|
|
80
|
+
messageDesc(file_kusinta_iot_connector_v1_connector, 8);
|
|
81
|
+
|
|
82
|
+
/**
|
|
83
|
+
* Describes the message kusinta.iot.connector.v1.CommandResult.
|
|
84
|
+
* Use `create(CommandResultSchema)` to create a new message.
|
|
85
|
+
*/
|
|
86
|
+
export const CommandResultSchema = /*@__PURE__*/
|
|
87
|
+
messageDesc(file_kusinta_iot_connector_v1_connector, 9);
|
|
88
|
+
|
|
89
|
+
/**
|
|
90
|
+
* Describes the message kusinta.iot.connector.v1.ConnectRequest.
|
|
91
|
+
* Use `create(ConnectRequestSchema)` to create a new message.
|
|
92
|
+
*/
|
|
93
|
+
export const ConnectRequestSchema = /*@__PURE__*/
|
|
94
|
+
messageDesc(file_kusinta_iot_connector_v1_connector, 10);
|
|
95
|
+
|
|
96
|
+
/**
|
|
97
|
+
* Describes the message kusinta.iot.connector.v1.ConnectResponse.
|
|
98
|
+
* Use `create(ConnectResponseSchema)` to create a new message.
|
|
99
|
+
*/
|
|
100
|
+
export const ConnectResponseSchema = /*@__PURE__*/
|
|
101
|
+
messageDesc(file_kusinta_iot_connector_v1_connector, 11);
|
|
102
|
+
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
// @generated by protoc-gen-es v2.12.0 with parameter "target=js+dts,import_extension=js"
|
|
2
|
+
// @generated from file kusinta/iot/connector/v1/connector_service.proto (package kusinta.iot.connector.v1, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { GenFile, GenService } from "@bufbuild/protobuf/codegenv2";
|
|
6
|
+
import type { ConnectRequestSchema, ConnectResponseSchema } from "./connector_pb.js";
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* Describes the file kusinta/iot/connector/v1/connector_service.proto.
|
|
10
|
+
*/
|
|
11
|
+
export declare const file_kusinta_iot_connector_v1_connector_service: GenFile;
|
|
12
|
+
|
|
13
|
+
/**
|
|
14
|
+
* ConnectorGatewayService: connector dials the gateway on startup.
|
|
15
|
+
* A single persistent bidirectional stream carries all traffic for the connector's lifetime.
|
|
16
|
+
*
|
|
17
|
+
* @generated from service kusinta.iot.connector.v1.ConnectorGatewayService
|
|
18
|
+
*/
|
|
19
|
+
export declare const ConnectorGatewayService: GenService<{
|
|
20
|
+
/**
|
|
21
|
+
* @generated from rpc kusinta.iot.connector.v1.ConnectorGatewayService.Connect
|
|
22
|
+
*/
|
|
23
|
+
connect: {
|
|
24
|
+
methodKind: "bidi_streaming";
|
|
25
|
+
input: typeof ConnectRequestSchema;
|
|
26
|
+
output: typeof ConnectResponseSchema;
|
|
27
|
+
},
|
|
28
|
+
}>;
|
|
29
|
+
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
// @generated by protoc-gen-es v2.12.0 with parameter "target=js+dts,import_extension=js"
|
|
2
|
+
// @generated from file kusinta/iot/connector/v1/connector_service.proto (package kusinta.iot.connector.v1, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import { fileDesc, serviceDesc } from "@bufbuild/protobuf/codegenv2";
|
|
6
|
+
import { file_kusinta_iot_connector_v1_connector } from "./connector_pb.js";
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* Describes the file kusinta/iot/connector/v1/connector_service.proto.
|
|
10
|
+
*/
|
|
11
|
+
export const file_kusinta_iot_connector_v1_connector_service = /*@__PURE__*/
|
|
12
|
+
fileDesc("CjBrdXNpbnRhL2lvdC9jb25uZWN0b3IvdjEvY29ubmVjdG9yX3NlcnZpY2UucHJvdG8SGGt1c2ludGEuaW90LmNvbm5lY3Rvci52MTJ9ChdDb25uZWN0b3JHYXRld2F5U2VydmljZRJiCgdDb25uZWN0Eigua3VzaW50YS5pb3QuY29ubmVjdG9yLnYxLkNvbm5lY3RSZXF1ZXN0Gikua3VzaW50YS5pb3QuY29ubmVjdG9yLnYxLkNvbm5lY3RSZXNwb25zZSgBMAFCAkgBYgZwcm90bzM", [file_kusinta_iot_connector_v1_connector]);
|
|
13
|
+
|
|
14
|
+
/**
|
|
15
|
+
* ConnectorGatewayService: connector dials the gateway on startup.
|
|
16
|
+
* A single persistent bidirectional stream carries all traffic for the connector's lifetime.
|
|
17
|
+
*
|
|
18
|
+
* @generated from service kusinta.iot.connector.v1.ConnectorGatewayService
|
|
19
|
+
*/
|
|
20
|
+
export const ConnectorGatewayService = /*@__PURE__*/
|
|
21
|
+
serviceDesc(file_kusinta_iot_connector_v1_connector_service, 0);
|
|
22
|
+
|
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
// @generated by protoc-gen-es v2.12.0 with parameter "target=js+dts,import_extension=js"
|
|
2
|
+
// @generated from file kusinta/iot/device/v1/descriptor.proto (package kusinta.iot.device.v1, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv2";
|
|
6
|
+
import type { Message } from "@bufbuild/protobuf";
|
|
7
|
+
import type { ConnectorId, DeviceId, SpaceId, UserId } from "../../identity/v1/identity_pb.js";
|
|
8
|
+
import type { DeviceLifecycleState, DeviceOwnershipType } from "../../common/v1/types_pb.js";
|
|
9
|
+
import type { Timestamp } from "@bufbuild/protobuf/wkt";
|
|
10
|
+
|
|
11
|
+
/**
|
|
12
|
+
* Describes the file kusinta/iot/device/v1/descriptor.proto.
|
|
13
|
+
*/
|
|
14
|
+
export declare const file_kusinta_iot_device_v1_descriptor: GenFile;
|
|
15
|
+
|
|
16
|
+
/**
|
|
17
|
+
* DeviceDescriptor holds identity and Matter BasicInformation cluster fields.
|
|
18
|
+
* Fields 1-19 are stable Matter-aligned fields. Fields 20+ are ownership/lifecycle.
|
|
19
|
+
*
|
|
20
|
+
* @generated from message kusinta.iot.device.v1.DeviceDescriptor
|
|
21
|
+
*/
|
|
22
|
+
export declare type DeviceDescriptor = Message<"kusinta.iot.device.v1.DeviceDescriptor"> & {
|
|
23
|
+
/**
|
|
24
|
+
* @generated from field: kusinta.iot.identity.v1.DeviceId device_id = 1;
|
|
25
|
+
*/
|
|
26
|
+
deviceId?: DeviceId | undefined;
|
|
27
|
+
|
|
28
|
+
/**
|
|
29
|
+
* Matter 1.5.1 device type ID (e.g. 0x0301 = Thermostat, 0x0302 = TemperatureSensor)
|
|
30
|
+
*
|
|
31
|
+
* @generated from field: uint32 matter_device_type_id = 2;
|
|
32
|
+
*/
|
|
33
|
+
matterDeviceTypeId: number;
|
|
34
|
+
|
|
35
|
+
/**
|
|
36
|
+
* Matter BasicInformation cluster attributes
|
|
37
|
+
*
|
|
38
|
+
* @generated from field: string vendor_name = 3;
|
|
39
|
+
*/
|
|
40
|
+
vendorName: string;
|
|
41
|
+
|
|
42
|
+
/**
|
|
43
|
+
* @generated from field: string product_name = 4;
|
|
44
|
+
*/
|
|
45
|
+
productName: string;
|
|
46
|
+
|
|
47
|
+
/**
|
|
48
|
+
* @generated from field: string serial_number = 5;
|
|
49
|
+
*/
|
|
50
|
+
serialNumber: string;
|
|
51
|
+
|
|
52
|
+
/**
|
|
53
|
+
* @generated from field: string node_label = 6;
|
|
54
|
+
*/
|
|
55
|
+
nodeLabel: string;
|
|
56
|
+
|
|
57
|
+
/**
|
|
58
|
+
* @generated from field: uint32 vendor_id = 7;
|
|
59
|
+
*/
|
|
60
|
+
vendorId: number;
|
|
61
|
+
|
|
62
|
+
/**
|
|
63
|
+
* @generated from field: uint32 product_id = 8;
|
|
64
|
+
*/
|
|
65
|
+
productId: number;
|
|
66
|
+
|
|
67
|
+
/**
|
|
68
|
+
* @generated from field: string hardware_version_string = 9;
|
|
69
|
+
*/
|
|
70
|
+
hardwareVersionString: string;
|
|
71
|
+
|
|
72
|
+
/**
|
|
73
|
+
* @generated from field: string software_version_string = 10;
|
|
74
|
+
*/
|
|
75
|
+
softwareVersionString: string;
|
|
76
|
+
|
|
77
|
+
/**
|
|
78
|
+
* @generated from field: kusinta.iot.identity.v1.ConnectorId connector_id = 11;
|
|
79
|
+
*/
|
|
80
|
+
connectorId?: ConnectorId | undefined;
|
|
81
|
+
|
|
82
|
+
/**
|
|
83
|
+
* @generated from field: kusinta.iot.identity.v1.SpaceId space_id = 12;
|
|
84
|
+
*/
|
|
85
|
+
spaceId?: SpaceId | undefined;
|
|
86
|
+
|
|
87
|
+
/**
|
|
88
|
+
* @generated from field: kusinta.iot.common.v1.DeviceOwnershipType ownership = 13;
|
|
89
|
+
*/
|
|
90
|
+
ownership: DeviceOwnershipType;
|
|
91
|
+
|
|
92
|
+
/**
|
|
93
|
+
* @generated from field: kusinta.iot.common.v1.DeviceLifecycleState lifecycle = 14;
|
|
94
|
+
*/
|
|
95
|
+
lifecycle: DeviceLifecycleState;
|
|
96
|
+
|
|
97
|
+
/**
|
|
98
|
+
* Populated when ownership == RESIDENT
|
|
99
|
+
*
|
|
100
|
+
* @generated from field: kusinta.iot.identity.v1.UserId owner_user_id = 15;
|
|
101
|
+
*/
|
|
102
|
+
ownerUserId?: UserId | undefined;
|
|
103
|
+
|
|
104
|
+
/**
|
|
105
|
+
* @generated from field: google.protobuf.Timestamp claimed_at = 16;
|
|
106
|
+
*/
|
|
107
|
+
claimedAt?: Timestamp | undefined;
|
|
108
|
+
};
|
|
109
|
+
|
|
110
|
+
/**
|
|
111
|
+
* Describes the message kusinta.iot.device.v1.DeviceDescriptor.
|
|
112
|
+
* Use `create(DeviceDescriptorSchema)` to create a new message.
|
|
113
|
+
*/
|
|
114
|
+
export declare const DeviceDescriptorSchema: GenMessage<DeviceDescriptor>;
|
|
115
|
+
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
// @generated by protoc-gen-es v2.12.0 with parameter "target=js+dts,import_extension=js"
|
|
2
|
+
// @generated from file kusinta/iot/device/v1/descriptor.proto (package kusinta.iot.device.v1, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import { fileDesc, messageDesc } from "@bufbuild/protobuf/codegenv2";
|
|
6
|
+
import { file_google_protobuf_timestamp } from "@bufbuild/protobuf/wkt";
|
|
7
|
+
import { file_kusinta_iot_common_v1_types } from "../../common/v1/types_pb.js";
|
|
8
|
+
import { file_kusinta_iot_identity_v1_identity } from "../../identity/v1/identity_pb.js";
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* Describes the file kusinta/iot/device/v1/descriptor.proto.
|
|
12
|
+
*/
|
|
13
|
+
export const file_kusinta_iot_device_v1_descriptor = /*@__PURE__*/
|
|
14
|
+
fileDesc("CiZrdXNpbnRhL2lvdC9kZXZpY2UvdjEvZGVzY3JpcHRvci5wcm90bxIVa3VzaW50YS5pb3QuZGV2aWNlLnYxIv0EChBEZXZpY2VEZXNjcmlwdG9yEjQKCWRldmljZV9pZBgBIAEoCzIhLmt1c2ludGEuaW90LmlkZW50aXR5LnYxLkRldmljZUlkEh0KFW1hdHRlcl9kZXZpY2VfdHlwZV9pZBgCIAEoDRITCgt2ZW5kb3JfbmFtZRgDIAEoCRIUCgxwcm9kdWN0X25hbWUYBCABKAkSFQoNc2VyaWFsX251bWJlchgFIAEoCRISCgpub2RlX2xhYmVsGAYgASgJEhEKCXZlbmRvcl9pZBgHIAEoDRISCgpwcm9kdWN0X2lkGAggASgNEh8KF2hhcmR3YXJlX3ZlcnNpb25fc3RyaW5nGAkgASgJEh8KF3NvZnR3YXJlX3ZlcnNpb25fc3RyaW5nGAogASgJEjoKDGNvbm5lY3Rvcl9pZBgLIAEoCzIkLmt1c2ludGEuaW90LmlkZW50aXR5LnYxLkNvbm5lY3RvcklkEjIKCHNwYWNlX2lkGAwgASgLMiAua3VzaW50YS5pb3QuaWRlbnRpdHkudjEuU3BhY2VJZBI9Cglvd25lcnNoaXAYDSABKA4yKi5rdXNpbnRhLmlvdC5jb21tb24udjEuRGV2aWNlT3duZXJzaGlwVHlwZRI+CglsaWZlY3ljbGUYDiABKA4yKy5rdXNpbnRhLmlvdC5jb21tb24udjEuRGV2aWNlTGlmZWN5Y2xlU3RhdGUSNgoNb3duZXJfdXNlcl9pZBgPIAEoCzIfLmt1c2ludGEuaW90LmlkZW50aXR5LnYxLlVzZXJJZBIuCgpjbGFpbWVkX2F0GBAgASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcEICSAFiBnByb3RvMw", [file_google_protobuf_timestamp, file_kusinta_iot_common_v1_types, file_kusinta_iot_identity_v1_identity]);
|
|
15
|
+
|
|
16
|
+
/**
|
|
17
|
+
* Describes the message kusinta.iot.device.v1.DeviceDescriptor.
|
|
18
|
+
* Use `create(DeviceDescriptorSchema)` to create a new message.
|
|
19
|
+
*/
|
|
20
|
+
export const DeviceDescriptorSchema = /*@__PURE__*/
|
|
21
|
+
messageDesc(file_kusinta_iot_device_v1_descriptor, 0);
|
|
22
|
+
|