Skip to content

Commit 319e5eb

Browse files
authored
[Intents] Implement Xcode 16.0 beta 1, beta 2 and beta 3 changes. (#20881)
Note: there were no changes in beta 2 or beta 3.
1 parent e590cc8 commit 319e5eb

File tree

8 files changed

+155
-85
lines changed

8 files changed

+155
-85
lines changed

src/intents.cs

Lines changed: 137 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1501,6 +1501,10 @@ public enum INMessageType : long {
15011501
Link,
15021502
[iOS (17, 0), MacCatalyst (17, 0), Watch (10, 0)]
15031503
Reaction,
1504+
[iOS (18, 0), MacCatalyst (18, 0), Watch (11, 0)]
1505+
MediaAnimatedImage,
1506+
[iOS (18, 0), MacCatalyst (18, 0), Watch (11, 0)]
1507+
ThirdPartyAttachment,
15041508
}
15051509

15061510
/// <summary>Enumerates note content types.</summary>
@@ -2715,6 +2719,28 @@ enum INCarChargingConnectorType {
27152719
Mennekes,
27162720
}
27172721

2722+
[Native]
2723+
[iOS (18, 0), MacCatalyst (18, 0), Mac (15, 0), Watch (11, 0), NoTV]
2724+
public enum INMessageReactionType : long {
2725+
Unknown = 0,
2726+
[Deprecated (PlatformName.iOS, 18, 0)]
2727+
[Deprecated (PlatformName.MacCatalyst, 18, 0)]
2728+
[Deprecated (PlatformName.TvOS, 18, 0)]
2729+
[Deprecated (PlatformName.MacOSX, 15, 0)]
2730+
[Deprecated (PlatformName.WatchOS, 11, 0)]
2731+
EmojiReaction, // introduced and deprecated in the same OS version.
2732+
Emoji,
2733+
Generic,
2734+
}
2735+
2736+
[Native]
2737+
[iOS (18, 0), MacCatalyst (18, 0), Mac (15, 0), Watch (11, 0), NoTV]
2738+
public enum INStickerType : long {
2739+
Unknown = 0,
2740+
Emoji,
2741+
Generic,
2742+
}
2743+
27182744
// End of enums
27192745

27202746
[Mac (11, 0)]
@@ -4562,15 +4588,57 @@ interface INMessage : NSCopying, NSSecureCoding {
45624588
[DesignatedInitializer]
45634589
NativeHandle Constructor (string identifier, [NullAllowed] string conversationIdentifier, [NullAllowed] string content, [NullAllowed] NSDate dateSent, [NullAllowed] INPerson sender, [NullAllowed] INPerson [] recipients, [NullAllowed] INSpeakableString groupName, INMessageType messageType, [NullAllowed] string serviceName);
45644590

4591+
[Deprecated (PlatformName.iOS, 18, 0, message: "Use a constructor that takes a reaction and an aggregateRections instead.")]
4592+
[Deprecated (PlatformName.MacCatalyst, 18, 0, message: "Use a constructor that takes a reaction and an aggregateRections instead.")]
4593+
[Deprecated (PlatformName.WatchOS, 11, 0, message: "Use a constructor that takes a reaction and an aggregateRections instead.")]
45654594
[MacCatalyst (13, 1)]
45664595
[Export ("initWithIdentifier:conversationIdentifier:content:dateSent:sender:recipients:groupName:messageType:")]
45674596
[DesignatedInitializer]
45684597
NativeHandle Constructor (string identifier, [NullAllowed] string conversationIdentifier, [NullAllowed] string content, [NullAllowed] NSDate dateSent, [NullAllowed] INPerson sender, [NullAllowed] INPerson [] recipients, [NullAllowed] INSpeakableString groupName, INMessageType messageType);
45694598

4599+
[Deprecated (PlatformName.iOS, 18, 0, message: "Use a constructor that takes a reaction and an aggregateRections instead.")]
4600+
[Deprecated (PlatformName.MacCatalyst, 18, 0, message: "Use a constructor that takes a reaction and an aggregateRections instead.")]
4601+
[Deprecated (PlatformName.WatchOS, 11, 0, message: "Use a constructor that takes a reaction and an aggregateRections instead.")]
45704602
[MacCatalyst (13, 1)]
45714603
[Export ("initWithIdentifier:conversationIdentifier:content:dateSent:sender:recipients:messageType:")]
45724604
NativeHandle Constructor (string identifier, [NullAllowed] string conversationIdentifier, [NullAllowed] string content, [NullAllowed] NSDate dateSent, [NullAllowed] INPerson sender, [NullAllowed] INPerson [] recipients, INMessageType messageType);
45734605

4606+
[iOS (18, 0), MacCatalyst (18, 0), Watch (11, 0), NoMac]
4607+
[Export ("initWithIdentifier:conversationIdentifier:content:dateSent:sender:recipients:groupName:serviceName:messageType:referencedMessage:reaction:aggregatedReactions:")]
4608+
NativeHandle Constructor (
4609+
string identifier,
4610+
[NullAllowed] string conversationIdentifier,
4611+
[NullAllowed] string content,
4612+
[NullAllowed] NSDate dateSent,
4613+
[NullAllowed] INPerson sender,
4614+
[NullAllowed] INPerson [] recipients,
4615+
[NullAllowed] INSpeakableString groupName,
4616+
[NullAllowed] string serviceName,
4617+
INMessageType messageType,
4618+
[NullAllowed] INMessage referencedMessage,
4619+
[NullAllowed] INMessageReaction reaction,
4620+
[NullAllowed] INAggregatedMessageReaction [] aggregatedReactions
4621+
);
4622+
4623+
[DesignatedInitializer]
4624+
[iOS (18, 0), MacCatalyst (18, 0), Watch (11, 0), NoMac]
4625+
[Export ("initWithIdentifier:conversationIdentifier:content:dateSent:sender:recipients:groupName:serviceName:messageType:referencedMessage:sticker:reaction:aggregatedReactions:")]
4626+
NativeHandle Constructor (
4627+
string identifier,
4628+
[NullAllowed] string conversationIdentifier,
4629+
[NullAllowed] string content,
4630+
[NullAllowed] NSDate dateSent,
4631+
[NullAllowed] INPerson sender,
4632+
[NullAllowed] INPerson [] recipients,
4633+
[NullAllowed] INSpeakableString groupName,
4634+
[NullAllowed] string serviceName,
4635+
INMessageType messageType,
4636+
[NullAllowed] INMessage referencedMessage,
4637+
[NullAllowed] INSticker sticker,
4638+
[NullAllowed] INMessageReaction reaction,
4639+
[NullAllowed] INAggregatedMessageReaction [] aggregatedReactions
4640+
);
4641+
45744642
[Export ("initWithIdentifier:content:dateSent:sender:recipients:")]
45754643
NativeHandle Constructor (string identifier, [NullAllowed] string content, [NullAllowed] NSDate dateSent, [NullAllowed] INPerson sender, [NullAllowed] INPerson [] recipients);
45764644

@@ -4640,6 +4708,21 @@ interface INMessage : NSCopying, NSSecureCoding {
46404708
[Export ("linkMetadata", ArgumentSemantic.Copy)]
46414709
INMessageLinkMetadata LinkMetadata { get; }
46424710

4711+
[NullAllowed]
4712+
[Watch (11, 0), NoMac, iOS (18, 0), MacCatalyst (18, 0)]
4713+
[Export ("sticker", ArgumentSemantic.Copy)]
4714+
INSticker Sticker { get; set; }
4715+
4716+
[NullAllowed]
4717+
[Watch (11, 0), NoMac, iOS (18, 0), MacCatalyst (18, 0)]
4718+
[Export ("aggregatedReactions", ArgumentSemantic.Copy)]
4719+
INAggregatedMessageReaction [] AggregatedReactions { get; set; }
4720+
4721+
[NullAllowed]
4722+
[Watch (11, 0), NoMac, iOS (18, 0), MacCatalyst (18, 0)]
4723+
[Export ("reaction", ArgumentSemantic.Copy)]
4724+
INMessageReaction Reaction { get; set; }
4725+
46434726
}
46444727

46454728
#if NET
@@ -15768,4 +15851,58 @@ interface INUnsendMessagesIntentHandling {
1576815851
void ConfirmUnsendMessages (INUnsendMessagesIntent intent, Action<INUnsendMessagesIntentResponse> completion);
1576915852
}
1577015853

15854+
[Watch (11, 0), iOS (18, 0), NoTV, MacCatalyst (18, 0), NoMac]
15855+
[BaseType (typeof (NSObject))]
15856+
[DisableDefaultCtor]
15857+
interface INAggregatedMessageReaction : NSCopying, NSSecureCoding {
15858+
[Export ("initWithReactionType:emoji:senders:reactionCount:")]
15859+
[DesignatedInitializer]
15860+
NativeHandle Constructor (INMessageReactionType reactionType, [NullAllowed] string emoji, [NullAllowed] INPerson [] senders, [NullAllowed] NSNumber reactionCount);
15861+
15862+
[Export ("reactionType", ArgumentSemantic.Assign)]
15863+
INMessageReactionType ReactionType { get; }
15864+
15865+
[Export ("emoji", ArgumentSemantic.Copy), NullAllowed]
15866+
string Emoji { get; }
15867+
15868+
[Export ("senders", ArgumentSemantic.Copy), NullAllowed]
15869+
INPerson [] Senders { get; }
15870+
15871+
// No documentation in what kind of number this is :/
15872+
[Export ("reactionCount", ArgumentSemantic.Copy), NullAllowed]
15873+
NSNumber ReactionCount { get; }
15874+
}
15875+
15876+
[Watch (11, 0), iOS (18, 0), NoTV, MacCatalyst (18, 0), NoMac]
15877+
[BaseType (typeof (NSObject))]
15878+
[DisableDefaultCtor]
15879+
interface INMessageReaction : NSCopying, NSSecureCoding {
15880+
[DesignatedInitializer]
15881+
[Export ("initWithReactionType:reactionDescription:emoji:")]
15882+
NativeHandle Constructor (INMessageReactionType reactionType, [NullAllowed] string reactionDescription, [NullAllowed] string emoji);
15883+
15884+
[Export ("reactionType", ArgumentSemantic.Assign)]
15885+
INMessageReactionType ReactionType { get; }
15886+
15887+
[Export ("reactionDescription", ArgumentSemantic.Copy), NullAllowed]
15888+
string ReactionDescription { get; }
15889+
15890+
[Export ("emoji", ArgumentSemantic.Copy), NullAllowed]
15891+
string Emoji { get; }
15892+
}
15893+
15894+
[Watch (11, 0), iOS (18, 0), NoTV, MacCatalyst (18, 0), NoMac]
15895+
[BaseType (typeof (NSObject))]
15896+
[DisableDefaultCtor]
15897+
interface INSticker : NSCopying, NSSecureCoding {
15898+
[Export ("initWithType:emoji:")]
15899+
[DesignatedInitializer]
15900+
NativeHandle Constructor (INStickerType type, [NullAllowed] string emoji);
15901+
15902+
[Export ("type", ArgumentSemantic.Assign)]
15903+
INStickerType Type { get; }
15904+
15905+
[Export ("emoji", ArgumentSemantic.Copy), NullAllowed]
15906+
string Emoji { get; }
15907+
}
1577115908
}

tests/cecil-tests/ApiAvailabilityTest.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -473,6 +473,7 @@ bool SkipSupportedAndObsoleteAtTheSameTime (ICustomAttributeProvider api, AppleP
473473
switch (fullname) {
474474
case "GameKit.GKScore.ReportLeaderboardScores(GameKit.GKLeaderboardScore[], GameKit.GKChallenge[], System.Action`1<Foundation.NSError>)":
475475
case "GameKit.GKScore.ReportLeaderboardScoresAsync(GameKit.GKLeaderboardScore[], GameKit.GKChallenge[])":
476+
case "Intents.INMessageReactionType Intents.INMessageReactionType::EmojiReaction":
476477
return true;
477478
}
478479

tests/cecil-tests/Documentation.KnownFailures.txt

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12283,6 +12283,10 @@ F:Intents.INMessageAttributeOptions.Played
1228312283
F:Intents.INMessageAttributeOptions.Read
1228412284
F:Intents.INMessageAttributeOptions.Unflagged
1228512285
F:Intents.INMessageAttributeOptions.Unread
12286+
F:Intents.INMessageReactionType.Emoji
12287+
F:Intents.INMessageReactionType.EmojiReaction
12288+
F:Intents.INMessageReactionType.Generic
12289+
F:Intents.INMessageReactionType.Unknown
1228612290
F:Intents.INMessageType.ActivitySnippet
1228712291
F:Intents.INMessageType.Animoji
1228812292
F:Intents.INMessageType.Audio
@@ -12291,6 +12295,7 @@ F:Intents.INMessageType.File
1229112295
F:Intents.INMessageType.Handwriting
1229212296
F:Intents.INMessageType.Link
1229312297
F:Intents.INMessageType.MediaAddressCard
12298+
F:Intents.INMessageType.MediaAnimatedImage
1229412299
F:Intents.INMessageType.MediaAudio
1229512300
F:Intents.INMessageType.MediaCalendar
1229612301
F:Intents.INMessageType.MediaImage
@@ -12309,6 +12314,7 @@ F:Intents.INMessageType.TapbackLiked
1230912314
F:Intents.INMessageType.TapbackLoved
1231012315
F:Intents.INMessageType.TapbackQuestioned
1231112316
F:Intents.INMessageType.Text
12317+
F:Intents.INMessageType.ThirdPartyAttachment
1231212318
F:Intents.INMessageType.Unspecified
1231312319
F:Intents.INNotebookItemType.Note
1231412320
F:Intents.INNotebookItemType.Task
@@ -12781,6 +12787,9 @@ F:Intents.INStartWorkoutIntentResponseCode.HandleInApp
1278112787
F:Intents.INStartWorkoutIntentResponseCode.Ready
1278212788
F:Intents.INStartWorkoutIntentResponseCode.Success
1278312789
F:Intents.INStartWorkoutIntentResponseCode.Unspecified
12790+
F:Intents.INStickerType.Emoji
12791+
F:Intents.INStickerType.Generic
12792+
F:Intents.INStickerType.Unknown
1278412793
F:Intents.INTaskPriority.Flagged
1278512794
F:Intents.INTaskPriority.NotFlagged
1278612795
F:Intents.INTaskPriority.Unknown
@@ -37699,6 +37708,8 @@ M:Intents.INAddTasksTemporalEventTriggerResolutionResult.GetConfirmationRequired
3769937708
M:Intents.INAddTasksTemporalEventTriggerResolutionResult.GetDisambiguation(Intents.INTemporalEventTrigger[])
3770037709
M:Intents.INAddTasksTemporalEventTriggerResolutionResult.GetSuccess(Intents.INTemporalEventTrigger)
3770137710
M:Intents.INAddTasksTemporalEventTriggerResolutionResult.GetUnsupported(System.IntPtr)
37711+
M:Intents.INAggregatedMessageReaction.Copy(Foundation.NSZone)
37712+
M:Intents.INAggregatedMessageReaction.EncodeTo(Foundation.NSCoder)
3770237713
M:Intents.INAirline.Copy(Foundation.NSZone)
3770337714
M:Intents.INAirline.EncodeTo(Foundation.NSCoder)
3770437715
M:Intents.INAirport.Copy(Foundation.NSZone)
@@ -37926,6 +37937,8 @@ M:Intents.INMessageAttributeResolutionResult.GetSuccess(Intents.INMessageAttribu
3792637937
M:Intents.INMessageAttributeResolutionResult.GetUnsupported(System.IntPtr)
3792737938
M:Intents.INMessageLinkMetadata.Copy(Foundation.NSZone)
3792837939
M:Intents.INMessageLinkMetadata.EncodeTo(Foundation.NSCoder)
37940+
M:Intents.INMessageReaction.Copy(Foundation.NSZone)
37941+
M:Intents.INMessageReaction.EncodeTo(Foundation.NSCoder)
3792937942
M:Intents.INNote.Copy(Foundation.NSZone)
3793037943
M:Intents.INNote.EncodeTo(Foundation.NSCoder)
3793137944
M:Intents.INNotebookItemTypeResolutionResult.GetConfirmationRequired(Foundation.NSObject,System.IntPtr)
@@ -38297,6 +38310,8 @@ M:Intents.INStartWorkoutIntentHandling_Extensions.ResolveIsOpenEnded(Intents.IIN
3829738310
M:Intents.INStartWorkoutIntentHandling_Extensions.ResolveWorkoutGoalUnitType(Intents.IINStartWorkoutIntentHandling,Intents.INStartWorkoutIntent,System.Action{Intents.INWorkoutGoalUnitTypeResolutionResult})
3829838311
M:Intents.INStartWorkoutIntentHandling_Extensions.ResolveWorkoutLocationType(Intents.IINStartWorkoutIntentHandling,Intents.INStartWorkoutIntent,System.Action{Intents.INWorkoutLocationTypeResolutionResult})
3829938312
M:Intents.INStartWorkoutIntentHandling_Extensions.ResolveWorkoutName(Intents.IINStartWorkoutIntentHandling,Intents.INStartWorkoutIntent,System.Action{Intents.INSpeakableStringResolutionResult})
38313+
M:Intents.INSticker.Copy(Foundation.NSZone)
38314+
M:Intents.INSticker.EncodeTo(Foundation.NSCoder)
3830038315
M:Intents.INStringResolutionResult.GetConfirmationRequired(Foundation.NSObject,System.IntPtr)
3830138316
M:Intents.INStringResolutionResult.GetUnsupported(System.IntPtr)
3830238317
M:Intents.INTask.Copy(Foundation.NSZone)
@@ -80132,6 +80147,7 @@ T:Intents.INMediaItemType
8013280147
T:Intents.INMediaReference
8013380148
T:Intents.INMediaSortOrder
8013480149
T:Intents.INMediaUserContextSubscriptionStatus
80150+
T:Intents.INMessageReactionType
8013580151
T:Intents.INOutgoingMessageType
8013680152
T:Intents.INPerson.INPersonType
8013780153
T:Intents.INPlaybackQueueLocation
@@ -80156,6 +80172,7 @@ T:Intents.INStartCallCallCapabilityUnsupportedReason
8015680172
T:Intents.INStartCallCallRecordToCallBackUnsupportedReason
8015780173
T:Intents.INStartCallContactUnsupportedReason
8015880174
T:Intents.INStartCallIntentResponseCode
80175+
T:Intents.INStickerType
8015980176
T:Intents.INTaskPriority
8016080177
T:Intents.INTaskType
8016180178
T:Intents.INTemporalEventTriggerTypeOptions
Lines changed: 0 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,3 @@
11
!extra-designated-initializer! INMessage::initWithIdentifier:conversationIdentifier:content:dateSent:sender:recipients:groupName:messageType: is incorrectly decorated with an [DesignatedInitializer] attribute
2-
!missing-enum! INMessageReactionType not bound
3-
!missing-enum! INStickerType not bound
4-
!missing-enum-value! INMessageType native value INMessageTypeMediaAnimatedImage = 27 not bound
5-
!missing-enum-value! INMessageType native value INMessageTypeThirdPartyAttachment = 28 not bound
62
!missing-field! INCarChargingConnectorTypeNACSAC not bound
73
!missing-field! INCarChargingConnectorTypeNACSDC not bound
8-
!missing-selector! INAggregatedMessageReaction::emoji not bound
9-
!missing-selector! INAggregatedMessageReaction::initWithReactionType:emoji:senders:reactionCount: not bound
10-
!missing-selector! INAggregatedMessageReaction::reactionCount not bound
11-
!missing-selector! INAggregatedMessageReaction::reactionType not bound
12-
!missing-selector! INAggregatedMessageReaction::senders not bound
13-
!missing-selector! INMessage::aggregatedReactions not bound
14-
!missing-selector! INMessage::initWithIdentifier:conversationIdentifier:content:dateSent:sender:recipients:groupName:serviceName:messageType:referencedMessage:reaction:aggregatedReactions: not bound
15-
!missing-selector! INMessage::initWithIdentifier:conversationIdentifier:content:dateSent:sender:recipients:groupName:serviceName:messageType:referencedMessage:sticker:reaction:aggregatedReactions: not bound
16-
!missing-selector! INMessage::reaction not bound
17-
!missing-selector! INMessage::setAggregatedReactions: not bound
18-
!missing-selector! INMessage::setReaction: not bound
19-
!missing-selector! INMessage::setSticker: not bound
20-
!missing-selector! INMessage::sticker not bound
21-
!missing-selector! INMessageReaction::emoji not bound
22-
!missing-selector! INMessageReaction::initWithReactionType:reactionDescription:emoji: not bound
23-
!missing-selector! INMessageReaction::reactionDescription not bound
24-
!missing-selector! INMessageReaction::reactionType not bound
25-
!missing-selector! INSticker::emoji not bound
26-
!missing-selector! INSticker::initWithType:emoji: not bound
27-
!missing-selector! INSticker::type not bound
28-
!missing-type! INAggregatedMessageReaction not bound
29-
!missing-type! INMessageReaction not bound
30-
!missing-type! INSticker not bound

tests/xtro-sharpie/api-annotations-dotnet/macOS-Intents.todo

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
!deprecated-attribute-missing! INCallRecord::initWithIdentifier:dateCreated:caller:callRecordType:callCapability:callDuration:unseen:numberOfCalls: missing a [Deprecated] attribute
2-
!missing-enum! INMessageReactionType not bound
3-
!missing-enum! INStickerType not bound
42
!missing-selector! INMessageReaction::emoji not bound
53
!missing-selector! INMessageReaction::initWithReactionType:reactionDescription:emoji: not bound
64
!missing-selector! INMessageReaction::reactionDescription not bound

tests/xtro-sharpie/iOS-Intents.todo

Lines changed: 0 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,3 @@
11
!extra-designated-initializer! INMessage::initWithIdentifier:conversationIdentifier:content:dateSent:sender:recipients:groupName:messageType: is incorrectly decorated with an [DesignatedInitializer] attribute
2-
!missing-enum! INMessageReactionType not bound
3-
!missing-enum! INStickerType not bound
4-
!missing-enum-value! INMessageType native value INMessageTypeMediaAnimatedImage = 27 not bound
5-
!missing-enum-value! INMessageType native value INMessageTypeThirdPartyAttachment = 28 not bound
62
!missing-field! INCarChargingConnectorTypeNACSAC not bound
73
!missing-field! INCarChargingConnectorTypeNACSDC not bound
8-
!missing-selector! INAggregatedMessageReaction::emoji not bound
9-
!missing-selector! INAggregatedMessageReaction::initWithReactionType:emoji:senders:reactionCount: not bound
10-
!missing-selector! INAggregatedMessageReaction::reactionCount not bound
11-
!missing-selector! INAggregatedMessageReaction::reactionType not bound
12-
!missing-selector! INAggregatedMessageReaction::senders not bound
13-
!missing-selector! INMessage::aggregatedReactions not bound
14-
!missing-selector! INMessage::initWithIdentifier:conversationIdentifier:content:dateSent:sender:recipients:groupName:serviceName:messageType:referencedMessage:reaction:aggregatedReactions: not bound
15-
!missing-selector! INMessage::initWithIdentifier:conversationIdentifier:content:dateSent:sender:recipients:groupName:serviceName:messageType:referencedMessage:sticker:reaction:aggregatedReactions: not bound
16-
!missing-selector! INMessage::reaction not bound
17-
!missing-selector! INMessage::setAggregatedReactions: not bound
18-
!missing-selector! INMessage::setReaction: not bound
19-
!missing-selector! INMessage::setSticker: not bound
20-
!missing-selector! INMessage::sticker not bound
21-
!missing-selector! INMessageReaction::emoji not bound
22-
!missing-selector! INMessageReaction::initWithReactionType:reactionDescription:emoji: not bound
23-
!missing-selector! INMessageReaction::reactionDescription not bound
24-
!missing-selector! INMessageReaction::reactionType not bound
25-
!missing-selector! INSticker::emoji not bound
26-
!missing-selector! INSticker::initWithType:emoji: not bound
27-
!missing-selector! INSticker::type not bound
28-
!missing-type! INAggregatedMessageReaction not bound
29-
!missing-type! INMessageReaction not bound
30-
!missing-type! INSticker not bound

tests/xtro-sharpie/macOS-Intents.todo

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
!deprecated-attribute-missing! INCallRecord::initWithIdentifier:dateCreated:caller:callRecordType:callCapability:callDuration:unseen:numberOfCalls: missing a [Deprecated] attribute
22
!deprecated-attribute-wrong! INSendMessageIntent::initWithRecipients:content:speakableGroupName:conversationIdentifier:serviceName:sender: has 12.0 not 11.0 on [Deprecated] attribute
3-
!missing-enum! INMessageReactionType not bound
4-
!missing-enum! INStickerType not bound
53
!missing-selector! INMessageReaction::emoji not bound
64
!missing-selector! INMessageReaction::initWithReactionType:reactionDescription:emoji: not bound
75
!missing-selector! INMessageReaction::reactionDescription not bound

0 commit comments

Comments
 (0)