//
//  PresencePayloadStateSyncPayload.proto
//  HomeKit
//
//  Created by Daniel Zeng on 3/10/2026.
//  Copyright © 2026 Apple Inc. All rights reserved.
//

// To generate Swift code:
// cd Sources/homed/StatusChannel/Proto/Definitions
// xcrun -sdk iphoneos.internal protoc \
//     -I . \
//     --swift_out=../Generated \
//     --swift_opt=SwiftProtobufModuleName=InternalSwiftProtobuf \
//     --swift_opt=Visibility=Internal \
//     PresencePayloadStateSyncPayload.proto

edition = "2023";
package apple.homekit.presencepayload;

option swift_prefix = "PresencePayload";

// StateSync domain payload
// Carries a map of subdomain names to change token data
message StateSyncPayload {
  map<string, bytes> domain_tokens = 1;
}
