/** * @license * Copyright 2022-2026 Matter.js Authors * SPDX-License-Identifier: Apache-2.0 */ /** * Protocol ID for the Interaction Protocol as per Matter specification. */ export const INTERACTION_PROTOCOL_ID = 0x0001; /** We use 10 as max to show that we support more then 1. Once we get a better real-world maximum we can change that. */ export const DEFAULT_MAX_PATHS_PER_INVOKE = 10;