From af3aa1a841db6015b91e2d0c80320351628606a2 Mon Sep 17 00:00:00 2001
From: Boris Zbarsky <bzbarsky@apple.com>
Date: Tue, 17 Jan 2023 13:58:07 -0500
Subject: [PATCH] Add availability annotations to new
 MTRDeviceAttestationDeviceInfo APIs. (#24426)

These were just added in https://github.com/project-chip/connectedhomeip/pull/24335
---
 src/darwin/Framework/CHIP/MTRDeviceAttestationDelegate.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/darwin/Framework/CHIP/MTRDeviceAttestationDelegate.h b/src/darwin/Framework/CHIP/MTRDeviceAttestationDelegate.h
index 992ae5c637c26d..ddc1bdbe3f414f 100644
--- a/src/darwin/Framework/CHIP/MTRDeviceAttestationDelegate.h
+++ b/src/darwin/Framework/CHIP/MTRDeviceAttestationDelegate.h
@@ -30,12 +30,12 @@ NS_ASSUME_NONNULL_BEGIN
 /**
  * The vendor ID for the device from the Device Attestation Certificate. May be nil only if attestation was unsucessful.
  */
-@property (nonatomic, readonly, nullable) NSNumber * vendorID;
+@property (nonatomic, readonly, nullable) NSNumber * vendorID MTR_NEWLY_AVAILABLE;
 
 /**
  * The product ID for the device from the Device Attestation Certificate. May be nil only if attestation was unsucessful.
  */
-@property (nonatomic, readonly, nullable) NSNumber * productID;
+@property (nonatomic, readonly, nullable) NSNumber * productID MTR_NEWLY_AVAILABLE;
 
 @property (nonatomic, readonly) MTRCertificateDERBytes dacCertificate;
 @property (nonatomic, readonly) MTRCertificateDERBytes dacPAICertificate;