@kusinta/iot-schema 0.1.0-beta.17 → 0.1.0-beta.19
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/package.json +2 -1
- package/src/kusinta/iot/device/v1/device_pb.d.ts +32 -0
- package/src/kusinta/iot/device/v1/matter_options_pb.d.ts +46 -0
- package/src/kusinta/iot/device/v1/matter_options_pb.js +50 -0
- package/src/kusinta/iot/device/v1/properties_pb.d.ts +174 -207
- package/src/kusinta/iot/device/v1/properties_pb.js +2 -1
- package/src/kusinta/iot/device/v1/property_update_pb.d.ts +35 -2
- package/src/kusinta/iot/vendor/homematic/v1/homematic_pb.d.ts +15 -10
- package/src/kusinta/iot/vendor/homematic/v1/homematic_pb.js +1 -1
- package/src/kusinta/iot/webrtc/v1/device_state_pb.d.ts +63 -0
- package/src/kusinta/iot/webrtc/v1/device_state_pb.js +16 -1
- package/src/kusinta/iot/webrtc/v1/envelope_pb.d.ts +232 -10
- package/src/kusinta/iot/webrtc/v1/envelope_pb.js +57 -5
- package/src/kusinta/iot/webrtc/v1/permission_push_pb.d.ts +6 -0
|
@@ -25,11 +25,17 @@ export declare type LivePermissionUpdate = Message<"kusinta.iot.webrtc.v1.LivePe
|
|
|
25
25
|
newPermissions?: EffectivePermissions | undefined;
|
|
26
26
|
|
|
27
27
|
/**
|
|
28
|
+
* Newly entitled devices. Entitlement is not interest: the app is not subscribed
|
|
29
|
+
* to these until it asks via AppMessage.subscribe.
|
|
30
|
+
*
|
|
28
31
|
* @generated from field: repeated kusinta.iot.identity.v1.DeviceId added_devices = 2;
|
|
29
32
|
*/
|
|
30
33
|
addedDevices: DeviceId[];
|
|
31
34
|
|
|
32
35
|
/**
|
|
36
|
+
* Devices the user may no longer see. The gateway has already dropped these from
|
|
37
|
+
* the app's interest set — no property events follow, and no unsubscribe is needed.
|
|
38
|
+
*
|
|
33
39
|
* @generated from field: repeated kusinta.iot.identity.v1.DeviceId removed_devices = 3;
|
|
34
40
|
*/
|
|
35
41
|
removedDevices: DeviceId[];
|