From 07a5c9ba307eed8f17b78e9ae0daed514c62b49a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81kos=20Hunyadi?= <67875049+akoshunyadi@users.noreply.github.com> Date: Mon, 30 Sep 2024 21:55:56 +0200 Subject: [PATCH 1/2] Update device-reachability-status.yaml --- code/API_definitions/device-reachability-status.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/code/API_definitions/device-reachability-status.yaml b/code/API_definitions/device-reachability-status.yaml index 7a40d2b..099b77f 100644 --- a/code/API_definitions/device-reachability-status.yaml +++ b/code/API_definitions/device-reachability-status.yaml @@ -16,8 +16,8 @@ info: At least one identifier for the device (user equipment) out of four options: IPv4 address, IPv6 address, Phone number, or Network Access Identifier assigned by the mobile network operator for the device. * **Reachability** : Reachability status. - - `CONNECTED_SMS`, if device is connected to the network via SMS usage - - `CONNECTED_DATA`, if device is connected to the network via data usage + - `CONNECTED_SMS`, if device is connected to the network only via SMS usage + - `CONNECTED_DATA`, if device is connected to the network via data usage (regardless of the SMS reachability) - `NOT_CONNECTED`, if device is not connected to the network * **LastStatusTime** : This property specifies the time when the status was last updated. Its presence in the response indicates the freshness of the information, while its absence implies the information may be outdated or its freshness is uncertain. @@ -186,9 +186,9 @@ components: $ref: "#/components/schemas/ReachabilityStatus" ReachabilityStatus: description: | - CONNECTED_DATA: The device is connected to the network for Data usage + CONNECTED_DATA: The device is connected to the network for Data usage (regardless of the SMS reachability) - CONNECTED_SMS: The device is connected to the network for SMS usage + CONNECTED_SMS: The device is connected to the network only for SMS usage NOT_CONNECTED: The device is not connected type: string From 9f3f597c61d21e71d4c7c2d755aa135507b48c4c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81kos=20Hunyadi?= <67875049+akoshunyadi@users.noreply.github.com> Date: Mon, 30 Sep 2024 22:00:13 +0200 Subject: [PATCH 2/2] Update device-reachability-status-subscriptions.yaml --- .../device-reachability-status-subscriptions.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/code/API_definitions/device-reachability-status-subscriptions.yaml b/code/API_definitions/device-reachability-status-subscriptions.yaml index 8af6825..3cd7493 100644 --- a/code/API_definitions/device-reachability-status-subscriptions.yaml +++ b/code/API_definitions/device-reachability-status-subscriptions.yaml @@ -28,9 +28,9 @@ info: When subscribing, it is mandatory to provide the event `types` you are subscribing to, as multiple subscription-types are managed by this API. Following event ``types`` are managed for this API: - - ``org.camaraproject.device-reachability-status-subscriptions.v0.reachability-data``: Event triggered when the device is connected to the network for Data usage. + - ``org.camaraproject.device-reachability-status-subscriptions.v0.reachability-data``: Event triggered when the device is connected to the network for Data usage (regardless of the SMS reachability). - - ``org.camaraproject.device-reachability-status-subscriptions.v0.reachability-sms``: Event triggered when the device is connected to the network for SMS usage + - ``org.camaraproject.device-reachability-status-subscriptions.v0.reachability-sms``: Event triggered when the device is connected to the network only for SMS usage - ``org.camaraproject.device-reachability-status-subscriptions.v0.reachability-disconnected``: Event triggered when the device is not connected. @@ -675,9 +675,9 @@ components: NotificationEventType: type: string description: | - reachability-data - Event triggered when the device is connected to the network for Data usage. + reachability-data - Event triggered when the device is connected to the network for Data usage (regardless of the SMS reachability). - reachability-sms - Event triggered when the device is connected to the network for SMS usage + reachability-sms - Event triggered when the device is connected to the network only for SMS usage reachability-disconnected - Event triggered when the device is not connected. @@ -691,9 +691,9 @@ components: SubscriptionEventType: type: string description: | - reachability-data - Event triggered when the device is connected to the network for Data usage. + reachability-data - Event triggered when the device is connected to the network for Data usage (regardless of the SMS reachability). - reachability-sms - Event triggered when the device is connected to the network for SMS usage + reachability-sms - Event triggered when the device is connected to the network only for SMS usage reachability-disconnected - Event triggered when the device is not connected.