Skip to content

Commit cfb0bbe

Browse files
committed
Update xcframework for Xcode 15.2 (5.4.5.1-2024.08.09-8774bf9ef)
1 parent 1cf423c commit cfb0bbe

24 files changed

+65
-29
lines changed

Frameworks/PlanetKit.xcframework/ios-arm64/PlanetKit.framework/Headers/PlanetKit-Swift.h

+4
Original file line numberDiff line numberDiff line change
@@ -2483,6 +2483,8 @@ typedef SWIFT_ENUM(NSInteger, PlanetKitDisconnectReason, closed) {
24832483
PlanetKitDisconnectReasonMultiDeviceAnswer = 1206,
24842484
/// [1:1][CloudServer] Responder using the same ID pair(user-id and service-id) declined the call in another device.
24852485
PlanetKitDisconnectReasonMultiDeviceDecline = 1207,
2486+
/// [Both][CloudServer] Maximum call time has been reached.
2487+
PlanetKitDisconnectReasonMaxCallTimeExceeded = 1208,
24862488
/// [Both][Caller, Callee, Participant, CloudServer] Network is unavailable to keep a call.
24872489
PlanetKitDisconnectReasonNetworkUnstable = 1301,
24882490
/// [1:1][CloudServer] LINE Planet GW failed to call Notify or notify_cb returned a failure. Please check AppServer or Notify url.
@@ -2545,6 +2547,8 @@ typedef SWIFT_ENUM(NSInteger, PlanetKitDisconnectReason, closed) {
25452547
PlanetKitDisconnectReasonServiceHttpInvalidUrl = 1510,
25462548
/// [Both][CloudServer] The current PlanetKit version is deprecated. Need to upgrade.
25472549
PlanetKitDisconnectReasonServiceIncompatiblePlanetKitVer = 1511,
2550+
/// [Both][CloudServer] Too many call connection attempts in a short period of time.
2551+
PlanetKitDisconnectReasonServiceTooManyRequests = 1512,
25482552
PlanetKitDisconnectReasonUnknown = -1,
25492553
};
25502554

Frameworks/PlanetKit.xcframework/ios-arm64/PlanetKit.framework/Headers/planetkit_common_type.h

+2
Original file line numberDiff line numberDiff line change
@@ -240,6 +240,7 @@ typedef enum planetkit_disconnect_reason {
240240
PLANETKIT_DISCONNECT_REASON_MULTIDEV_IN_USE = 1205, ///< [Both][CloudServer] The same id pair (user-id and service-id) is calling in another device
241241
PLANETKIT_DISCONNECT_REASON_MULTIDEV_ANSWER = 1206, ///< [1:1][CloudServer] Responder using the same id pair (user-id and service-id) answered the call in another device
242242
PLANETKIT_DISCONNECT_REASON_MULTIDEV_DECLINE = 1207, ///< [1:1][CloudServer] Responder using the same id pair(user-id and service-id) declined the call in another device
243+
PLANETKIT_DISCONNECT_REASON_MAX_CALL_TIME_EXCEEDED = 1208, ///< [Both][CloudServer] Maximum call time has been reached
243244

244245
// ERROR REASON (1301 ~ 1400)
245246
PLANETKIT_DISCONNECT_REASON_NETWORK_UNSTABLE = 1301, ///< [Both][Caller, Callee, Participant, CloudServer] Network is unavailable to keep a call
@@ -286,6 +287,7 @@ typedef enum planetkit_disconnect_reason {
286287

287288
PLANETKIT_DISCONNECT_REASON_SERVICE_HTTP_INVALID_URL = 1510, ///< [Both][Caller, Participant] Wrong URL format or could not resolve host or proxy name
288289
PLANETKIT_DISCONNECT_REASON_SERVICE_INCOMPATIBLE_PLANETKIT_VER = 1511, ///< [Both][CloudServer] The current PlanetKit version is deprecated. Need to upgrade
290+
PLANETKIT_DISCONNECT_REASON_SERVICE_TOO_MANY_REQUESTS = 1512, ///< [Both][CloudServer] Too many call connection attempts in a short period of time
289291

290292
/* Deprecated disconnect reason */
291293
// PLANETKIT_DISCONNECT_REASON_AUDIO_TX_NO_SRC_BY_LOCAL = 1101,
Binary file not shown.

Frameworks/PlanetKit.xcframework/ios-arm64/PlanetKit.framework/Modules/PlanetKit.swiftmodule/arm64-apple-ios.swiftinterface

+2
Original file line numberDiff line numberDiff line change
@@ -1392,6 +1392,7 @@ extension PlanetKit.PlanetKitDisconnectSource : Swift.CustomStringConvertible {
13921392
case multiDeviceInUse = 1205
13931393
case multiDeviceAnswer = 1206
13941394
case multiDeviceDecline = 1207
1395+
case maxCallTimeExceeded = 1208
13951396
case networkUnstable = 1301
13961397
case pushError = 1302
13971398
case authError = 1303
@@ -1418,6 +1419,7 @@ extension PlanetKit.PlanetKitDisconnectSource : Swift.CustomStringConvertible {
14181419
case serviceHttpConnectFail = 1509
14191420
case serviceHttpInvalidUrl = 1510
14201421
case serviceIncompatiblePlanetKitVer = 1511
1422+
case serviceTooManyRequests = 1512
14211423
case unknown = -1
14221424
public init?(rawValue: Swift.Int)
14231425
public typealias RawValue = Swift.Int
Binary file not shown.

Frameworks/PlanetKit.xcframework/ios-arm64_x86_64-simulator/PlanetKit.framework/Headers/PlanetKit-Swift.h

+8
Original file line numberDiff line numberDiff line change
@@ -2483,6 +2483,8 @@ typedef SWIFT_ENUM(NSInteger, PlanetKitDisconnectReason, closed) {
24832483
PlanetKitDisconnectReasonMultiDeviceAnswer = 1206,
24842484
/// [1:1][CloudServer] Responder using the same ID pair(user-id and service-id) declined the call in another device.
24852485
PlanetKitDisconnectReasonMultiDeviceDecline = 1207,
2486+
/// [Both][CloudServer] Maximum call time has been reached.
2487+
PlanetKitDisconnectReasonMaxCallTimeExceeded = 1208,
24862488
/// [Both][Caller, Callee, Participant, CloudServer] Network is unavailable to keep a call.
24872489
PlanetKitDisconnectReasonNetworkUnstable = 1301,
24882490
/// [1:1][CloudServer] LINE Planet GW failed to call Notify or notify_cb returned a failure. Please check AppServer or Notify url.
@@ -2545,6 +2547,8 @@ typedef SWIFT_ENUM(NSInteger, PlanetKitDisconnectReason, closed) {
25452547
PlanetKitDisconnectReasonServiceHttpInvalidUrl = 1510,
25462548
/// [Both][CloudServer] The current PlanetKit version is deprecated. Need to upgrade.
25472549
PlanetKitDisconnectReasonServiceIncompatiblePlanetKitVer = 1511,
2550+
/// [Both][CloudServer] Too many call connection attempts in a short period of time.
2551+
PlanetKitDisconnectReasonServiceTooManyRequests = 1512,
25482552
PlanetKitDisconnectReasonUnknown = -1,
25492553
};
25502554

@@ -6702,6 +6706,8 @@ typedef SWIFT_ENUM(NSInteger, PlanetKitDisconnectReason, closed) {
67026706
PlanetKitDisconnectReasonMultiDeviceAnswer = 1206,
67036707
/// [1:1][CloudServer] Responder using the same ID pair(user-id and service-id) declined the call in another device.
67046708
PlanetKitDisconnectReasonMultiDeviceDecline = 1207,
6709+
/// [Both][CloudServer] Maximum call time has been reached.
6710+
PlanetKitDisconnectReasonMaxCallTimeExceeded = 1208,
67056711
/// [Both][Caller, Callee, Participant, CloudServer] Network is unavailable to keep a call.
67066712
PlanetKitDisconnectReasonNetworkUnstable = 1301,
67076713
/// [1:1][CloudServer] LINE Planet GW failed to call Notify or notify_cb returned a failure. Please check AppServer or Notify url.
@@ -6764,6 +6770,8 @@ typedef SWIFT_ENUM(NSInteger, PlanetKitDisconnectReason, closed) {
67646770
PlanetKitDisconnectReasonServiceHttpInvalidUrl = 1510,
67656771
/// [Both][CloudServer] The current PlanetKit version is deprecated. Need to upgrade.
67666772
PlanetKitDisconnectReasonServiceIncompatiblePlanetKitVer = 1511,
6773+
/// [Both][CloudServer] Too many call connection attempts in a short period of time.
6774+
PlanetKitDisconnectReasonServiceTooManyRequests = 1512,
67676775
PlanetKitDisconnectReasonUnknown = -1,
67686776
};
67696777

Frameworks/PlanetKit.xcframework/ios-arm64_x86_64-simulator/PlanetKit.framework/Headers/planetkit_common_type.h

+2
Original file line numberDiff line numberDiff line change
@@ -240,6 +240,7 @@ typedef enum planetkit_disconnect_reason {
240240
PLANETKIT_DISCONNECT_REASON_MULTIDEV_IN_USE = 1205, ///< [Both][CloudServer] The same id pair (user-id and service-id) is calling in another device
241241
PLANETKIT_DISCONNECT_REASON_MULTIDEV_ANSWER = 1206, ///< [1:1][CloudServer] Responder using the same id pair (user-id and service-id) answered the call in another device
242242
PLANETKIT_DISCONNECT_REASON_MULTIDEV_DECLINE = 1207, ///< [1:1][CloudServer] Responder using the same id pair(user-id and service-id) declined the call in another device
243+
PLANETKIT_DISCONNECT_REASON_MAX_CALL_TIME_EXCEEDED = 1208, ///< [Both][CloudServer] Maximum call time has been reached
243244

244245
// ERROR REASON (1301 ~ 1400)
245246
PLANETKIT_DISCONNECT_REASON_NETWORK_UNSTABLE = 1301, ///< [Both][Caller, Callee, Participant, CloudServer] Network is unavailable to keep a call
@@ -286,6 +287,7 @@ typedef enum planetkit_disconnect_reason {
286287

287288
PLANETKIT_DISCONNECT_REASON_SERVICE_HTTP_INVALID_URL = 1510, ///< [Both][Caller, Participant] Wrong URL format or could not resolve host or proxy name
288289
PLANETKIT_DISCONNECT_REASON_SERVICE_INCOMPATIBLE_PLANETKIT_VER = 1511, ///< [Both][CloudServer] The current PlanetKit version is deprecated. Need to upgrade
290+
PLANETKIT_DISCONNECT_REASON_SERVICE_TOO_MANY_REQUESTS = 1512, ///< [Both][CloudServer] Too many call connection attempts in a short period of time
289291

290292
/* Deprecated disconnect reason */
291293
// PLANETKIT_DISCONNECT_REASON_AUDIO_TX_NO_SRC_BY_LOCAL = 1101,

Frameworks/PlanetKit.xcframework/ios-arm64_x86_64-simulator/PlanetKit.framework/Modules/PlanetKit.swiftmodule/arm64-apple-ios-simulator.swiftinterface

+2
Original file line numberDiff line numberDiff line change
@@ -1392,6 +1392,7 @@ extension PlanetKit.PlanetKitDisconnectSource : Swift.CustomStringConvertible {
13921392
case multiDeviceInUse = 1205
13931393
case multiDeviceAnswer = 1206
13941394
case multiDeviceDecline = 1207
1395+
case maxCallTimeExceeded = 1208
13951396
case networkUnstable = 1301
13961397
case pushError = 1302
13971398
case authError = 1303
@@ -1418,6 +1419,7 @@ extension PlanetKit.PlanetKitDisconnectSource : Swift.CustomStringConvertible {
14181419
case serviceHttpConnectFail = 1509
14191420
case serviceHttpInvalidUrl = 1510
14201421
case serviceIncompatiblePlanetKitVer = 1511
1422+
case serviceTooManyRequests = 1512
14211423
case unknown = -1
14221424
public init?(rawValue: Swift.Int)
14231425
public typealias RawValue = Swift.Int

Frameworks/PlanetKit.xcframework/ios-arm64_x86_64-simulator/PlanetKit.framework/Modules/PlanetKit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface

+2
Original file line numberDiff line numberDiff line change
@@ -1392,6 +1392,7 @@ extension PlanetKit.PlanetKitDisconnectSource : Swift.CustomStringConvertible {
13921392
case multiDeviceInUse = 1205
13931393
case multiDeviceAnswer = 1206
13941394
case multiDeviceDecline = 1207
1395+
case maxCallTimeExceeded = 1208
13951396
case networkUnstable = 1301
13961397
case pushError = 1302
13971398
case authError = 1303
@@ -1418,6 +1419,7 @@ extension PlanetKit.PlanetKitDisconnectSource : Swift.CustomStringConvertible {
14181419
case serviceHttpConnectFail = 1509
14191420
case serviceHttpInvalidUrl = 1510
14201421
case serviceIncompatiblePlanetKitVer = 1511
1422+
case serviceTooManyRequests = 1512
14211423
case unknown = -1
14221424
public init?(rawValue: Swift.Int)
14231425
public typealias RawValue = Swift.Int

Frameworks/PlanetKit.xcframework/ios-arm64_x86_64-simulator/PlanetKit.framework/_CodeSignature/CodeResources

+25-25
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
</data>
1111
<key>Headers/PlanetKit-Swift.h</key>
1212
<data>
13-
bAf5npi8IeUl+Dpbv3IoGgYO+Wk=
13+
n2nQy4xnIIKpd+g2fZuVZnpg7tM=
1414
</data>
1515
<key>Headers/PlanetKit.h</key>
1616
<data>
@@ -62,7 +62,7 @@
6262
</data>
6363
<key>Headers/planetkit_common_type.h</key>
6464
<data>
65-
sZ+IefqF9sTYdzRyMEVgEpKU/uM=
65+
wI4+NS1oBH1PBIZzWz4f2ZR9/w4=
6666
</data>
6767
<key>Headers/planetkit_conference.h</key>
6868
<data>
@@ -98,47 +98,47 @@
9898
</data>
9999
<key>Info.plist</key>
100100
<data>
101-
42VT231oDCMhuBBZ5gkwZg0do8o=
101+
2UR9BRkS8GWdCnCHZptDhmMkUOo=
102102
</data>
103103
<key>Modules/PlanetKit.swiftmodule/arm64-apple-ios-simulator.abi.json</key>
104104
<data>
105-
oinfvlu58C/ds8Vw9K0/fSFuTOM=
105+
zu0NN2jVX/4o+5iIOaqeEoYyldU=
106106
</data>
107107
<key>Modules/PlanetKit.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface</key>
108108
<data>
109-
2jwqoV5xeMCLQbldBMLWqmedHgw=
109+
yIIgQ/OlRGdduUNTUKQ6Vv6F5Q0=
110110
</data>
111111
<key>Modules/PlanetKit.swiftmodule/arm64-apple-ios-simulator.swiftdoc</key>
112112
<data>
113-
xveRoHHi7QvxzfZGUCvMRWt0duE=
113+
POJjJKo/2v7bmV2Zs40KtiPqBs0=
114114
</data>
115115
<key>Modules/PlanetKit.swiftmodule/arm64-apple-ios-simulator.swiftinterface</key>
116116
<data>
117-
2jwqoV5xeMCLQbldBMLWqmedHgw=
117+
yIIgQ/OlRGdduUNTUKQ6Vv6F5Q0=
118118
</data>
119119
<key>Modules/PlanetKit.swiftmodule/arm64-apple-ios-simulator.swiftmodule</key>
120120
<data>
121-
nFqtK6LvuluZnvdv3+8ZqoB6AQg=
121+
LC73g8P3kwqokBt3zs2bQiPiYqM=
122122
</data>
123123
<key>Modules/PlanetKit.swiftmodule/x86_64-apple-ios-simulator.abi.json</key>
124124
<data>
125-
oinfvlu58C/ds8Vw9K0/fSFuTOM=
125+
zu0NN2jVX/4o+5iIOaqeEoYyldU=
126126
</data>
127127
<key>Modules/PlanetKit.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface</key>
128128
<data>
129-
+Yf/JaVv9MnoAocKnkJgHdzae3g=
129+
8s/psjF4XGKtz9GK6MWB+sG9O6A=
130130
</data>
131131
<key>Modules/PlanetKit.swiftmodule/x86_64-apple-ios-simulator.swiftdoc</key>
132132
<data>
133-
jPvBT/KcO80juJIedgSaGCSRx0U=
133+
qS15QVEmbAUJ6vZI+lM6s1qv1OA=
134134
</data>
135135
<key>Modules/PlanetKit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface</key>
136136
<data>
137-
+Yf/JaVv9MnoAocKnkJgHdzae3g=
137+
8s/psjF4XGKtz9GK6MWB+sG9O6A=
138138
</data>
139139
<key>Modules/PlanetKit.swiftmodule/x86_64-apple-ios-simulator.swiftmodule</key>
140140
<data>
141-
HYkpvlciWX2zZnCBjc4eytlmM/w=
141+
4OKR767+lGzy50GMnlT1iE/M+AM=
142142
</data>
143143
<key>Modules/module.modulemap</key>
144144
<data>
@@ -166,7 +166,7 @@
166166
<dict>
167167
<key>hash2</key>
168168
<data>
169-
R2fgLmDUJnR2ZX6axRsFE6/ZkSWemF5sy1OWtX4aSZI=
169+
7RX1qCEbFWsFPkq4M958Q98LMmffWs4YBR+FXZ8vqbk=
170170
</data>
171171
</dict>
172172
<key>Headers/PlanetKit.h</key>
@@ -257,7 +257,7 @@
257257
<dict>
258258
<key>hash2</key>
259259
<data>
260-
6G/eLO3TSCB/5fhDlT8/6pBHIpL6SBFbwijj1k/ox3w=
260+
WDDHsHN9Znv7VORVTCanOKY32dFLS9aao/IyLbGXhUA=
261261
</data>
262262
</dict>
263263
<key>Headers/planetkit_conference.h</key>
@@ -320,70 +320,70 @@
320320
<dict>
321321
<key>hash2</key>
322322
<data>
323-
C/MVP9SDRlTNYdT0lcwwttmtCk/mzKdxkhef6U//ruY=
323+
TxsrdzpFm3YcApMhKR8QYFYahdG0WzM1hV9KkJTIjro=
324324
</data>
325325
</dict>
326326
<key>Modules/PlanetKit.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface</key>
327327
<dict>
328328
<key>hash2</key>
329329
<data>
330-
10b68TFZF4hXPIeWQObu1RkoNulMA+YKxyGRbnrX6yI=
330+
Xb8+BardgAcd1vJzwfZNFr6HGtpvdCQIwUvuh6RZQwU=
331331
</data>
332332
</dict>
333333
<key>Modules/PlanetKit.swiftmodule/arm64-apple-ios-simulator.swiftdoc</key>
334334
<dict>
335335
<key>hash2</key>
336336
<data>
337-
QKklgVMiTNaa2E2KIBf9XFdoNsx26sBuyk283GZ7Uzc=
337+
+YQ50sPJK/xN4V1TeBB7vGIbRDaFHGWfXA2R2mhX3gg=
338338
</data>
339339
</dict>
340340
<key>Modules/PlanetKit.swiftmodule/arm64-apple-ios-simulator.swiftinterface</key>
341341
<dict>
342342
<key>hash2</key>
343343
<data>
344-
10b68TFZF4hXPIeWQObu1RkoNulMA+YKxyGRbnrX6yI=
344+
Xb8+BardgAcd1vJzwfZNFr6HGtpvdCQIwUvuh6RZQwU=
345345
</data>
346346
</dict>
347347
<key>Modules/PlanetKit.swiftmodule/arm64-apple-ios-simulator.swiftmodule</key>
348348
<dict>
349349
<key>hash2</key>
350350
<data>
351-
nmCwGh+t4aoqiFId7TQni99dStJOX9Cew8538JMA4yc=
351+
eWqF2NcAcKyWTzOX18U3tgi80WBfA+/XstxRxxpQbAc=
352352
</data>
353353
</dict>
354354
<key>Modules/PlanetKit.swiftmodule/x86_64-apple-ios-simulator.abi.json</key>
355355
<dict>
356356
<key>hash2</key>
357357
<data>
358-
C/MVP9SDRlTNYdT0lcwwttmtCk/mzKdxkhef6U//ruY=
358+
TxsrdzpFm3YcApMhKR8QYFYahdG0WzM1hV9KkJTIjro=
359359
</data>
360360
</dict>
361361
<key>Modules/PlanetKit.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface</key>
362362
<dict>
363363
<key>hash2</key>
364364
<data>
365-
9fTl+qvi2adihj6gHhblh20T1yfrO9hKizD4sNmK2+4=
365+
gyrJRJvNOAicGWSjQs/GhNTJSXhAW7s4a9OVPwRpNCM=
366366
</data>
367367
</dict>
368368
<key>Modules/PlanetKit.swiftmodule/x86_64-apple-ios-simulator.swiftdoc</key>
369369
<dict>
370370
<key>hash2</key>
371371
<data>
372-
Q8FNJg/i9tyMA0R60+DvyVPwkC8LajTp8cj684Hfu/I=
372+
lHG0XTsWjm2yjK5MFnmPkszQYyFiqzhzwEybpyNbnIE=
373373
</data>
374374
</dict>
375375
<key>Modules/PlanetKit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface</key>
376376
<dict>
377377
<key>hash2</key>
378378
<data>
379-
9fTl+qvi2adihj6gHhblh20T1yfrO9hKizD4sNmK2+4=
379+
gyrJRJvNOAicGWSjQs/GhNTJSXhAW7s4a9OVPwRpNCM=
380380
</data>
381381
</dict>
382382
<key>Modules/PlanetKit.swiftmodule/x86_64-apple-ios-simulator.swiftmodule</key>
383383
<dict>
384384
<key>hash2</key>
385385
<data>
386-
VgePJWKAmDu7WoIsV3YG+uPgA5MwuGviRdia649HvOA=
386+
lkwgW+Vu7ppQ7RMkhVdxOCypY6pZ2H8jIyiAg42bxIM=
387387
</data>
388388
</dict>
389389
<key>Modules/module.modulemap</key>

Frameworks/PlanetKit.xcframework/macos-arm64_x86_64/PlanetKit.framework/Versions/A/Headers/PlanetKit-Swift.h

+8
Original file line numberDiff line numberDiff line change
@@ -2431,6 +2431,8 @@ typedef SWIFT_ENUM(NSInteger, PlanetKitDisconnectReason, closed) {
24312431
PlanetKitDisconnectReasonMultiDeviceAnswer = 1206,
24322432
/// [1:1][CloudServer] Responder using the same ID pair(user-id and service-id) declined the call in another device.
24332433
PlanetKitDisconnectReasonMultiDeviceDecline = 1207,
2434+
/// [Both][CloudServer] Maximum call time has been reached.
2435+
PlanetKitDisconnectReasonMaxCallTimeExceeded = 1208,
24342436
/// [Both][Caller, Callee, Participant, CloudServer] Network is unavailable to keep a call.
24352437
PlanetKitDisconnectReasonNetworkUnstable = 1301,
24362438
/// [1:1][CloudServer] LINE Planet GW failed to call Notify or notify_cb returned a failure. Please check AppServer or Notify url.
@@ -2493,6 +2495,8 @@ typedef SWIFT_ENUM(NSInteger, PlanetKitDisconnectReason, closed) {
24932495
PlanetKitDisconnectReasonServiceHttpInvalidUrl = 1510,
24942496
/// [Both][CloudServer] The current PlanetKit version is deprecated. Need to upgrade.
24952497
PlanetKitDisconnectReasonServiceIncompatiblePlanetKitVer = 1511,
2498+
/// [Both][CloudServer] Too many call connection attempts in a short period of time.
2499+
PlanetKitDisconnectReasonServiceTooManyRequests = 1512,
24962500
PlanetKitDisconnectReasonUnknown = -1,
24972501
};
24982502

@@ -6715,6 +6719,8 @@ typedef SWIFT_ENUM(NSInteger, PlanetKitDisconnectReason, closed) {
67156719
PlanetKitDisconnectReasonMultiDeviceAnswer = 1206,
67166720
/// [1:1][CloudServer] Responder using the same ID pair(user-id and service-id) declined the call in another device.
67176721
PlanetKitDisconnectReasonMultiDeviceDecline = 1207,
6722+
/// [Both][CloudServer] Maximum call time has been reached.
6723+
PlanetKitDisconnectReasonMaxCallTimeExceeded = 1208,
67186724
/// [Both][Caller, Callee, Participant, CloudServer] Network is unavailable to keep a call.
67196725
PlanetKitDisconnectReasonNetworkUnstable = 1301,
67206726
/// [1:1][CloudServer] LINE Planet GW failed to call Notify or notify_cb returned a failure. Please check AppServer or Notify url.
@@ -6777,6 +6783,8 @@ typedef SWIFT_ENUM(NSInteger, PlanetKitDisconnectReason, closed) {
67776783
PlanetKitDisconnectReasonServiceHttpInvalidUrl = 1510,
67786784
/// [Both][CloudServer] The current PlanetKit version is deprecated. Need to upgrade.
67796785
PlanetKitDisconnectReasonServiceIncompatiblePlanetKitVer = 1511,
6786+
/// [Both][CloudServer] Too many call connection attempts in a short period of time.
6787+
PlanetKitDisconnectReasonServiceTooManyRequests = 1512,
67806788
PlanetKitDisconnectReasonUnknown = -1,
67816789
};
67826790

Frameworks/PlanetKit.xcframework/macos-arm64_x86_64/PlanetKit.framework/Versions/A/Headers/planetkit_common_type.h

+2
Original file line numberDiff line numberDiff line change
@@ -240,6 +240,7 @@ typedef enum planetkit_disconnect_reason {
240240
PLANETKIT_DISCONNECT_REASON_MULTIDEV_IN_USE = 1205, ///< [Both][CloudServer] The same id pair (user-id and service-id) is calling in another device
241241
PLANETKIT_DISCONNECT_REASON_MULTIDEV_ANSWER = 1206, ///< [1:1][CloudServer] Responder using the same id pair (user-id and service-id) answered the call in another device
242242
PLANETKIT_DISCONNECT_REASON_MULTIDEV_DECLINE = 1207, ///< [1:1][CloudServer] Responder using the same id pair(user-id and service-id) declined the call in another device
243+
PLANETKIT_DISCONNECT_REASON_MAX_CALL_TIME_EXCEEDED = 1208, ///< [Both][CloudServer] Maximum call time has been reached
243244

244245
// ERROR REASON (1301 ~ 1400)
245246
PLANETKIT_DISCONNECT_REASON_NETWORK_UNSTABLE = 1301, ///< [Both][Caller, Callee, Participant, CloudServer] Network is unavailable to keep a call
@@ -286,6 +287,7 @@ typedef enum planetkit_disconnect_reason {
286287

287288
PLANETKIT_DISCONNECT_REASON_SERVICE_HTTP_INVALID_URL = 1510, ///< [Both][Caller, Participant] Wrong URL format or could not resolve host or proxy name
288289
PLANETKIT_DISCONNECT_REASON_SERVICE_INCOMPATIBLE_PLANETKIT_VER = 1511, ///< [Both][CloudServer] The current PlanetKit version is deprecated. Need to upgrade
290+
PLANETKIT_DISCONNECT_REASON_SERVICE_TOO_MANY_REQUESTS = 1512, ///< [Both][CloudServer] Too many call connection attempts in a short period of time
289291

290292
/* Deprecated disconnect reason */
291293
// PLANETKIT_DISCONNECT_REASON_AUDIO_TX_NO_SRC_BY_LOCAL = 1101,

Frameworks/PlanetKit.xcframework/macos-arm64_x86_64/PlanetKit.framework/Versions/A/Modules/PlanetKit.swiftmodule/arm64-apple-macos.swiftinterface

+2
Original file line numberDiff line numberDiff line change
@@ -2805,6 +2805,7 @@ extension PlanetKit.PlanetKitDisconnectSource : Swift.CustomStringConvertible {
28052805
case multiDeviceInUse = 1205
28062806
case multiDeviceAnswer = 1206
28072807
case multiDeviceDecline = 1207
2808+
case maxCallTimeExceeded = 1208
28082809
case networkUnstable = 1301
28092810
case pushError = 1302
28102811
case authError = 1303
@@ -2831,6 +2832,7 @@ extension PlanetKit.PlanetKitDisconnectSource : Swift.CustomStringConvertible {
28312832
case serviceHttpConnectFail = 1509
28322833
case serviceHttpInvalidUrl = 1510
28332834
case serviceIncompatiblePlanetKitVer = 1511
2835+
case serviceTooManyRequests = 1512
28342836
case unknown = -1
28352837
public init?(rawValue: Swift.Int)
28362838
public typealias RawValue = Swift.Int

Frameworks/PlanetKit.xcframework/macos-arm64_x86_64/PlanetKit.framework/Versions/A/Modules/PlanetKit.swiftmodule/x86_64-apple-macos.swiftinterface

+2
Original file line numberDiff line numberDiff line change
@@ -2805,6 +2805,7 @@ extension PlanetKit.PlanetKitDisconnectSource : Swift.CustomStringConvertible {
28052805
case multiDeviceInUse = 1205
28062806
case multiDeviceAnswer = 1206
28072807
case multiDeviceDecline = 1207
2808+
case maxCallTimeExceeded = 1208
28082809
case networkUnstable = 1301
28092810
case pushError = 1302
28102811
case authError = 1303
@@ -2831,6 +2832,7 @@ extension PlanetKit.PlanetKitDisconnectSource : Swift.CustomStringConvertible {
28312832
case serviceHttpConnectFail = 1509
28322833
case serviceHttpInvalidUrl = 1510
28332834
case serviceIncompatiblePlanetKitVer = 1511
2835+
case serviceTooManyRequests = 1512
28342836
case unknown = -1
28352837
public init?(rawValue: Swift.Int)
28362838
public typealias RawValue = Swift.Int

0 commit comments

Comments
 (0)