From 0b5fe20563f8856671b7ba1d58ab1a629e4c3ec7 Mon Sep 17 00:00:00 2001 From: RooyeKhat Media Date: Wed, 20 Sep 2017 16:54:53 +0430 Subject: [PATCH] Update 69 --- app/assets/proto/ClientGetRoomHistory.proto | 2 + .../proto/ClientSearchRoomHistory.proto | 4 +- app/assets/proto/ConnectionSecuring.proto | 1 + app/assets/proto/GeoGetComment.proto | 17 +++++++ app/assets/proto/GeoGetConfiguration.proto | 22 +++++++++ app/assets/proto/GeoGetNearbyCoordinate.proto | 25 ++++++++++ app/assets/proto/GeoGetNearbyDistance.proto | 24 +++++++++ app/assets/proto/GeoGetRegisterStatus.proto | 16 ++++++ app/assets/proto/GeoRegister.proto | 17 +++++++ app/assets/proto/GeoUpdateComment.proto | 17 +++++++ app/assets/proto/GeoUpdatePosition.proto | 17 +++++++ app/assets/proto/Global.proto | 2 + .../proto/SignalingGetConfiguration.proto | 1 + app/assets/proto/SignalingLeave.proto | 1 + app/assets/proto/SignalingOffer.proto | 1 + app/assets/proto/UserContactsEdit.proto | 1 + app/assets/proto/UserProfileSetNickname.proto | 1 + docs/guide/v1/Protocol.md | 7 --- docs/guide/v1/error/reference.md | 49 ++++++++++++++++++- docs/guide/v1/proto/README.md | 21 ++++++++ docs/guide/v1/push/RateSignaling.md | 2 +- docs/guide/v1/request/README.md | 12 ++++- docs/guide/v1/request/geo/GetComment.md | 8 +++ docs/guide/v1/request/geo/GetConfiguration.md | 8 +++ .../v1/request/geo/GetNearbyCoordinate.md | 8 +++ .../guide/v1/request/geo/GetNearbyDistance.md | 8 +++ .../guide/v1/request/geo/GetRegisterStatus.md | 8 +++ docs/guide/v1/request/geo/Register.md | 8 +++ docs/guide/v1/request/geo/UpdateComment.md | 8 +++ docs/guide/v1/request/geo/UpdatePosition.md | 8 +++ docs/guide/v1/request/qrCode/NewDevice.md | 8 +-- 31 files changed, 314 insertions(+), 18 deletions(-) create mode 100644 app/assets/proto/GeoGetComment.proto create mode 100644 app/assets/proto/GeoGetConfiguration.proto create mode 100644 app/assets/proto/GeoGetNearbyCoordinate.proto create mode 100644 app/assets/proto/GeoGetNearbyDistance.proto create mode 100644 app/assets/proto/GeoGetRegisterStatus.proto create mode 100644 app/assets/proto/GeoRegister.proto create mode 100644 app/assets/proto/GeoUpdateComment.proto create mode 100644 app/assets/proto/GeoUpdatePosition.proto create mode 100644 docs/guide/v1/request/geo/GetComment.md create mode 100644 docs/guide/v1/request/geo/GetConfiguration.md create mode 100644 docs/guide/v1/request/geo/GetNearbyCoordinate.md create mode 100644 docs/guide/v1/request/geo/GetNearbyDistance.md create mode 100644 docs/guide/v1/request/geo/GetRegisterStatus.md create mode 100644 docs/guide/v1/request/geo/Register.md create mode 100644 docs/guide/v1/request/geo/UpdateComment.md create mode 100644 docs/guide/v1/request/geo/UpdatePosition.md diff --git a/app/assets/proto/ClientGetRoomHistory.proto b/app/assets/proto/ClientGetRoomHistory.proto index c8cd6b2..0fcc119 100644 --- a/app/assets/proto/ClientGetRoomHistory.proto +++ b/app/assets/proto/ClientGetRoomHistory.proto @@ -17,6 +17,8 @@ message ClientGetRoomHistory { DOWN = 1; } Direction direction = 4; + + uint32 limit = 5; } message ClientGetRoomHistoryResponse { diff --git a/app/assets/proto/ClientSearchRoomHistory.proto b/app/assets/proto/ClientSearchRoomHistory.proto index a894af6..34e3220 100644 --- a/app/assets/proto/ClientSearchRoomHistory.proto +++ b/app/assets/proto/ClientSearchRoomHistory.proto @@ -10,7 +10,7 @@ option java_outer_classname = "ProtoClientSearchRoomHistory"; message ClientSearchRoomHistory { Request request = 1; uint64 room_id = 2; - uint32 offset = 3; + uint32 offset = 3; //Deprecated enum Filter { IMAGE = 0; @@ -22,6 +22,8 @@ message ClientSearchRoomHistory { URL = 6; } Filter filter = 4; + + uint64 offset_message_id = 5; } message ClientSearchRoomHistoryResponse { diff --git a/app/assets/proto/ConnectionSecuring.proto b/app/assets/proto/ConnectionSecuring.proto index c0da092..8f95469 100644 --- a/app/assets/proto/ConnectionSecuring.proto +++ b/app/assets/proto/ConnectionSecuring.proto @@ -12,6 +12,7 @@ message ConnectionSecuringResponse { uint32 symmetric_key_length = 3; uint32 heartbeat_interval = 4; string primary_node_name = 5; + uint32 secondary_chunk_size = 6; } message ConnectionSymmetricKey { diff --git a/app/assets/proto/GeoGetComment.proto b/app/assets/proto/GeoGetComment.proto new file mode 100644 index 0000000..1c05a5b --- /dev/null +++ b/app/assets/proto/GeoGetComment.proto @@ -0,0 +1,17 @@ +syntax = "proto3"; +package proto; +import "Request.proto"; +import "Response.proto"; + +option java_package = "net.iGap.proto"; +option java_outer_classname = "ProtoGeoGetComment"; + +message GeoGetComment { + Request request = 1; + uint64 user_id = 2; +} + +message GeoGetCommentResponse { + Response response = 1; + string comment = 2; +} \ No newline at end of file diff --git a/app/assets/proto/GeoGetConfiguration.proto b/app/assets/proto/GeoGetConfiguration.proto new file mode 100644 index 0000000..38220d0 --- /dev/null +++ b/app/assets/proto/GeoGetConfiguration.proto @@ -0,0 +1,22 @@ +syntax = "proto3"; +package proto; +import "Request.proto"; +import "Response.proto"; + +option java_package = "net.iGap.proto"; +option java_outer_classname = "ProtoGeoGetConfiguration"; + +message GeoGetConfiguration { + Request request = 1; +} + +message GeoGetConfigurationResponse { + Response response = 1; + + message TileServer { + string base_url = 1; + } + repeated TileServer tile_server = 2; + + string cache_id = 3; +} \ No newline at end of file diff --git a/app/assets/proto/GeoGetNearbyCoordinate.proto b/app/assets/proto/GeoGetNearbyCoordinate.proto new file mode 100644 index 0000000..d955d25 --- /dev/null +++ b/app/assets/proto/GeoGetNearbyCoordinate.proto @@ -0,0 +1,25 @@ +syntax = "proto3"; +package proto; +import "Request.proto"; +import "Response.proto"; + +option java_package = "net.iGap.proto"; +option java_outer_classname = "ProtoGeoGetNearbyCoordinate"; + +message GeoGetNearbyCoordinate { + Request request = 1; + double lat = 2; + double lon = 3; +} + +message GeoGetNearbyCoordinateResponse { + Response response = 1; + + message Result { + uint64 user_id = 1; + bool has_comment = 2; + double lat = 3; + double lon = 4; + } + repeated Result result = 2; +} \ No newline at end of file diff --git a/app/assets/proto/GeoGetNearbyDistance.proto b/app/assets/proto/GeoGetNearbyDistance.proto new file mode 100644 index 0000000..550008d --- /dev/null +++ b/app/assets/proto/GeoGetNearbyDistance.proto @@ -0,0 +1,24 @@ +syntax = "proto3"; +package proto; +import "Request.proto"; +import "Response.proto"; + +option java_package = "net.iGap.proto"; +option java_outer_classname = "ProtoGeoGetNearbyDistance"; + +message GeoGetNearbyDistance { + Request request = 1; + double lat = 2; + double lon = 3; +} + +message GeoGetNearbyDistanceResponse { + Response response = 1; + + message Result { + uint64 user_id = 1; + bool has_comment = 2; + uint32 distance = 3; + } + repeated Result result = 2; +} \ No newline at end of file diff --git a/app/assets/proto/GeoGetRegisterStatus.proto b/app/assets/proto/GeoGetRegisterStatus.proto new file mode 100644 index 0000000..ff20b13 --- /dev/null +++ b/app/assets/proto/GeoGetRegisterStatus.proto @@ -0,0 +1,16 @@ +syntax = "proto3"; +package proto; +import "Request.proto"; +import "Response.proto"; + +option java_package = "net.iGap.proto"; +option java_outer_classname = "ProtoGeoGetRegisterStatus"; + +message GeoGetRegisterStatus { + Request request = 1; +} + +message GeoGetRegisterStatusResponse { + Response response = 1; + bool enable = 2; +} \ No newline at end of file diff --git a/app/assets/proto/GeoRegister.proto b/app/assets/proto/GeoRegister.proto new file mode 100644 index 0000000..1d159cc --- /dev/null +++ b/app/assets/proto/GeoRegister.proto @@ -0,0 +1,17 @@ +syntax = "proto3"; +package proto; +import "Request.proto"; +import "Response.proto"; + +option java_package = "net.iGap.proto"; +option java_outer_classname = "ProtoGeoRegister"; + +message GeoRegister { + Request request = 1; + bool enable = 2; +} + +message GeoRegisterResponse { + Response response = 1; + bool enable = 2; +} \ No newline at end of file diff --git a/app/assets/proto/GeoUpdateComment.proto b/app/assets/proto/GeoUpdateComment.proto new file mode 100644 index 0000000..5de907e --- /dev/null +++ b/app/assets/proto/GeoUpdateComment.proto @@ -0,0 +1,17 @@ +syntax = "proto3"; +package proto; +import "Request.proto"; +import "Response.proto"; + +option java_package = "net.iGap.proto"; +option java_outer_classname = "ProtoGeoUpdateComment"; + +message GeoUpdateComment { + Request request = 1; + string comment = 2; +} + +message GeoUpdateCommentResponse { + Response response = 1; + string comment = 2; +} \ No newline at end of file diff --git a/app/assets/proto/GeoUpdatePosition.proto b/app/assets/proto/GeoUpdatePosition.proto new file mode 100644 index 0000000..7b9e08f --- /dev/null +++ b/app/assets/proto/GeoUpdatePosition.proto @@ -0,0 +1,17 @@ +syntax = "proto3"; +package proto; +import "Request.proto"; +import "Response.proto"; + +option java_package = "net.iGap.proto"; +option java_outer_classname = "ProtoGeoUpdatePosition"; + +message GeoUpdatePosition { + Request request = 1; + double lat = 2; + double lon = 3; +} + +message GeoUpdatePositionResponse { + Response response = 1; +} \ No newline at end of file diff --git a/app/assets/proto/Global.proto b/app/assets/proto/Global.proto index e8997e2..ebada9a 100644 --- a/app/assets/proto/Global.proto +++ b/app/assets/proto/Global.proto @@ -84,6 +84,7 @@ message RoomMessageLog { MISSED_VOICE_CALL = 10; MISSED_VIDEO_CALL = 11; MISSED_SCREEN_SHARE = 12; + MISSED_SECRET_CHAT = 13; } Type type = 1; @@ -349,6 +350,7 @@ enum PrivacyType { VOICE_CALLING = 4; VIDEO_CALLING = 5; SCREEN_SHARING = 6; + SECRET_CHAT = 7; } diff --git a/app/assets/proto/SignalingGetConfiguration.proto b/app/assets/proto/SignalingGetConfiguration.proto index bdcf319..9dc7356 100644 --- a/app/assets/proto/SignalingGetConfiguration.proto +++ b/app/assets/proto/SignalingGetConfiguration.proto @@ -23,4 +23,5 @@ message SignalingGetConfigurationResponse { bool voice_calling = 3; bool video_calling = 4; bool screen_sharing = 5; + bool secret_chat = 6; } \ No newline at end of file diff --git a/app/assets/proto/SignalingLeave.proto b/app/assets/proto/SignalingLeave.proto index b46bbe2..ce6ceb9 100644 --- a/app/assets/proto/SignalingLeave.proto +++ b/app/assets/proto/SignalingLeave.proto @@ -21,6 +21,7 @@ message SignalingLeaveResponse { UNAVAILABLE = 4; DISCONNECTED = 5; FINISHED = 6; + TOO_LONG = 7; } Type type = 2; } \ No newline at end of file diff --git a/app/assets/proto/SignalingOffer.proto b/app/assets/proto/SignalingOffer.proto index 55e9f21..c039ad7 100644 --- a/app/assets/proto/SignalingOffer.proto +++ b/app/assets/proto/SignalingOffer.proto @@ -14,6 +14,7 @@ message SignalingOffer { VOICE_CALLING = 0; VIDEO_CALLING = 1; SCREEN_SHARING = 2; + SECRET_CHAT = 3; } Type type = 3; diff --git a/app/assets/proto/UserContactsEdit.proto b/app/assets/proto/UserContactsEdit.proto index f272037..ce58835 100644 --- a/app/assets/proto/UserContactsEdit.proto +++ b/app/assets/proto/UserContactsEdit.proto @@ -18,4 +18,5 @@ message UserContactsEditResponse { uint64 phone = 2; string first_name = 3; string last_name = 4; + string initials = 5; } \ No newline at end of file diff --git a/app/assets/proto/UserProfileSetNickname.proto b/app/assets/proto/UserProfileSetNickname.proto index 63ceeea..d45902d 100644 --- a/app/assets/proto/UserProfileSetNickname.proto +++ b/app/assets/proto/UserProfileSetNickname.proto @@ -14,4 +14,5 @@ message UserProfileSetNickname { message UserProfileSetNicknameResponse { Response response = 1; string nickname = 2; + string initials = 3; } \ No newline at end of file diff --git a/docs/guide/v1/Protocol.md b/docs/guide/v1/Protocol.md index bd89363..af072c1 100644 --- a/docs/guide/v1/Protocol.md +++ b/docs/guide/v1/Protocol.md @@ -13,13 +13,6 @@ Resolve the username | domain | :white_check_mark: | Username | | post | :negative_squared_cross_mark: | Room message id | -# new_device -Verify the identity of new device - -| Parameters | Required | Description | -|------------ |---------- |------------------ | -| token | :white_check_mark: | Login token | - # add_contact Add contact (Just fill add contact form and let user to edit the form data) diff --git a/docs/guide/v1/error/reference.md b/docs/guide/v1/error/reference.md index 16b7865..c448cda 100644 --- a/docs/guide/v1/error/reference.md +++ b/docs/guide/v1/error/reference.md @@ -870,7 +870,8 @@ * 808 - [QR_CODE_ADD_ME_BAD_PAYLOAD](README.md#error-808-qr_code_add_me_bad_payload) * 809 - [QR_CODE_ADD_ME_INTERNAL_SERVER_ERROR](README.md#error-809-qr_code_add_me_internal_server_error) -# Signaling 9xx +# Signaling errors 9xx + * 900 - [SIGNALING_GET_CONFIGURATION_BAD_PAYLOAD](README.md#error-900-signaling_get_configuration_bad_payload) * 901 - [SIGNALING_GET_CONFIGURATION_INTERNAL_SERVER_ERROR](README.md#error-901-signaling_get_configuration_internal_server_error) @@ -926,4 +927,48 @@ * 926 - [SIGNALING_RATE_BAD_PAYLOAD](README.md#error-926-signaling_rate_bad_payload) * 927 - [SIGNALING_RATE_INTERNAL_SERVER_ERROR](README.md#error-927-signaling_rate_internal_server_error) -* 928 - [SIGNALING_RATE_FORBIDDEN](README.md#error-928-signaling_rate_forbidden) \ No newline at end of file +* 928 - [SIGNALING_RATE_FORBIDDEN](README.md#error-928-signaling_rate_forbidden) + +# Geo errors 10xx + +* 1000 - [GEO_GET_REGISTER_STATUS_BAD_PAYLOAD](README.md#error-1000-geo_get_register_status_bad_payload) +* 1001 - [GEO_GET_REGISTER_STATUS_INTERNAL_SERVER_ERROR](README.md#error-1001-geo_get_register_status_internal_server_error) + +--- + +* 1002 - [GEO_REGISTER_BAD_PAYLOAD](README.md#error-1002-geo_register_bad_payload) +* 1003 - [GEO_REGISTER_INTERNAL_SERVER_ERROR](README.md#error-1003-geo_register_internal_server_error) + +--- + +* 1004 - [GEO_UPDATE_POSITION_BAD_PAYLOAD](README.md#error-1004-geo_update_position_bad_payload) +* 1005 - [GEO_UPDATE_POSITION_INTERNAL_SERVER_ERROR](README.md#error-1005-geo_update_position_internal_server_error) +* 1006 - [GEO_UPDATE_POSITION_FORBIDDEN](README.md#error-1006-geo_update_position_forbidden) + +--- + +* 1007 - [GEO_GET_COMMENT_BAD_PAYLOAD](README.md#error-1007-geo_get_comment_bad_payload) +* 1008 - [GEO_GET_COMMENT_INTERNAL_SERVER_ERROR](README.md#error-1008-geo_get_comment_internal_server_error) +* 1009 - [GEO_GET_COMMENT_FORBIDDEN](README.md#error-1009-geo_get_comment_forbidden) + +--- + +* 1010 - [GEO_UPDATE_COMMENT_BAD_PAYLOAD](README.md#error-1010-geo_update_comment_bad_payload) +* 1011 - [GEO_UPDATE_COMMENT_INTERNAL_SERVER_ERROR](README.md#error-1011-geo_update_comment_internal_server_error) +* 1012 - [GEO_UPDATE_COMMENT_FORBIDDEN](README.md#error-1012-geo_update_comment_forbidden) + +--- + +* 1013 - [GEO_GET_NEARBY_DISTANCE_BAD_PAYLOAD](README.md#error-1013-geo_get_nearby_distance_bad_payload) +* 1014 - [GEO_GET_NEARBY_DISTANCE_INTERNAL_SERVER_ERROR](README.md#error-1014-geo_get_nearby_distance_internal_server_error) +* 1015 - [GEO_GET_NEARBY_DISTANCE_FORBIDDEN](README.md#error-1015-geo_get_nearby_distance_forbidden) + +--- + +* 1016 - [GEO_GET_NEARBY_COORDINATE_BAD_PAYLOAD](README.md#error-1016-geo_get_nearby_coordinate_bad_payload) +* 1017 - [GEO_GET_NEARBY_COORDINATE_INTERNAL_SERVER_ERROR](README.md#error-1017-geo_get_nearby_coordinate_internal_server_error) +* 1018 - [GEO_GET_NEARBY_COORDINATE_FORBIDDEN](README.md#error-1018-geo_get_nearby_coordinate_forbidden) +--- + +* 1019 - [GEO_GET_CONFIGURATION_BAD_PAYLOAD](README.md#error-1019-geo_get_configuration_bad_payload) +* 1020 - [GEO_GET_CONFIGURATION_INTERNAL_SERVER_ERROR](README.md#error-1020-geo_get_configuration_internal_server_error) diff --git a/docs/guide/v1/proto/README.md b/docs/guide/v1/proto/README.md index 6b2d23e..b7fcb10 100644 --- a/docs/guide/v1/proto/README.md +++ b/docs/guide/v1/proto/README.md @@ -357,6 +357,27 @@ | 909 | [Details](SignalingRate.md) | [SignalingRate](../../../../app/assets/proto/SignalingRate.proto) | | 30909 | [Details](SignalingRateResponse.md) | [SignalingRateResponse](../../../../app/assets/proto/SignalingRate.proto) | +# Geo 10xx , 310xx + +| Id |Details | Proto file | +|---- |----------------------------------- |------------------------------------------------------------------- | +| 1000 | [Details](GeoGetRegisterStatus.md) | [GeoGetRegisterStatus](../../../../app/assets/proto/GeoGetRegisterStatus.proto) | +| 31000 | [Details](GeoGetRegisterStatusResponse.md) | [GeoGetRegisterStatusResponse](../../../../app/assets/proto/GeoGetRegisterStatus.proto) | +| 1001 | [Details](GeoRegister.md) | [GeoRegister](../../../../app/assets/proto/GeoRegister.proto) | +| 31001 | [Details](GeoRegisterResponse.md) | [GeoRegisterResponse](../../../../app/assets/proto/GeoRegister.proto) | +| 1002 | [Details](GeoUpdatePosition.md) | [GeoUpdatePosition](../../../../app/assets/proto/GeoUpdatePosition.proto) | +| 31002 | [Details](GeoUpdatePositionResponse.md) | [GeoUpdatePositionResponse](../../../../app/assets/proto/GeoUpdatePosition.proto) | +| 1003 | [Details](GeoGetComment.md) | [GeoGetComment](../../../../app/assets/proto/GeoGetComment.proto) | +| 31003 | [Details](GeoGetCommentResponse.md) | [GeoGetCommentResponse](../../../../app/assets/proto/GeoGetComment.proto) | +| 1004 | [Details](GeoUpdateComment.md) | [GeoUpdateComment](../../../../app/assets/proto/GeoUpdateComment.proto) | +| 31004 | [Details](GeoUpdateCommentResponse.md) | [GeoUpdateCommentResponse](../../../../app/assets/proto/GeoUpdateComment.proto) | +| 1005 | [Details](GeoGetNearbyDistance.md) | [GeoGetNearbyDistance](../../../../app/assets/proto/GeoGetNearbyDistance.proto) | +| 31005 | [Details](GeoGetNearbyDistanceResponse.md) | [GeoGetNearbyDistanceResponse](../../../../app/assets/proto/GeoGetNearbyDistance.proto) | +| 1006 | [Details](GeoGetNearbyCoordinate.md) | [GeoGetNearbyCoordinate](../../../../app/assets/proto/GeoGetNearbyCoordinate.proto) | +| 31006 | [Details](GeoGetNearbyCoordinateResponse.md) | [GeoGetNearbyCoordinateResponse](../../../../app/assets/proto/GeoGetNearbyCoordinate.proto) | +| 1007 | [Details](GeoGetConfiguration.md) | [GeoGetConfiguration](../../../../app/assets/proto/GeoGetConfiguration.proto) | +| 31007 | [Details](GeoGetConfigurationResponse.md) | [GeoGetConfigurationResponse](../../../../app/assets/proto/GeoGetConfiguration.proto) | + # Push 600xx | Id |Details | Proto file | diff --git a/docs/guide/v1/push/RateSignaling.md b/docs/guide/v1/push/RateSignaling.md index 6f10ae0..27269b8 100644 --- a/docs/guide/v1/push/RateSignaling.md +++ b/docs/guide/v1/push/RateSignaling.md @@ -1,5 +1,5 @@ Rating for the session is requested # Response -message [#3060003](../../proto/README.md#action_3060003) +message [#60003](../../proto/README.md#action_60003) diff --git a/docs/guide/v1/request/README.md b/docs/guide/v1/request/README.md index 58705f0..3f42e89 100644 --- a/docs/guide/v1/request/README.md +++ b/docs/guide/v1/request/README.md @@ -176,4 +176,14 @@ * :o: [SessionHold](signaling/SessionHold.md) * [GetLog](signaling/GetLog.md) * :o: [ClearLog](signaling/ClearLog.md) -* [Rate](signaling/Rate.md) \ No newline at end of file +* [Rate](signaling/Rate.md) + +# Geo +* [GetConfiguration](geo/GetConfiguration.md) +* [GetRegisterStatus](geo/GetRegisterStatus.md) +* :o: [Register](geo/Register.md) +* [UpdatePosition](geo/UpdatePosition.md) +* [GetComment](geo/GetComment.md) +* :o: [UpdateComment](geo/UpdateComment.md) +* [GetNearbyDistance](geo/GetNearbyDistance.md) +* [GetNearbyCoordinate](geo/GetNearbyCoordinate.md) \ No newline at end of file diff --git a/docs/guide/v1/request/geo/GetComment.md b/docs/guide/v1/request/geo/GetComment.md new file mode 100644 index 0000000..8e94cd2 --- /dev/null +++ b/docs/guide/v1/request/geo/GetComment.md @@ -0,0 +1,8 @@ +Get geo comment of a specific user + +# Request +message [#1003](../../proto/README.md#action_1003) + +# Response +message [#31003](../../proto/README.md#action_31003) + diff --git a/docs/guide/v1/request/geo/GetConfiguration.md b/docs/guide/v1/request/geo/GetConfiguration.md new file mode 100644 index 0000000..b991b0c --- /dev/null +++ b/docs/guide/v1/request/geo/GetConfiguration.md @@ -0,0 +1,8 @@ +Get geo configuration + +# Request +message [#1007](../../proto/README.md#action_1007) + +# Response +message [#31007](../../proto/README.md#action_31007) + diff --git a/docs/guide/v1/request/geo/GetNearbyCoordinate.md b/docs/guide/v1/request/geo/GetNearbyCoordinate.md new file mode 100644 index 0000000..7183d7f --- /dev/null +++ b/docs/guide/v1/request/geo/GetNearbyCoordinate.md @@ -0,0 +1,8 @@ +Get nearby users with coordinate + +# Request +message [#1006](../../proto/README.md#action_1006) + +# Response +message [#31006](../../proto/README.md#action_31006) + diff --git a/docs/guide/v1/request/geo/GetNearbyDistance.md b/docs/guide/v1/request/geo/GetNearbyDistance.md new file mode 100644 index 0000000..96a546d --- /dev/null +++ b/docs/guide/v1/request/geo/GetNearbyDistance.md @@ -0,0 +1,8 @@ +Get nearby users with distance + +# Request +message [#1005](../../proto/README.md#action_1005) + +# Response +message [#31005](../../proto/README.md#action_31005) + diff --git a/docs/guide/v1/request/geo/GetRegisterStatus.md b/docs/guide/v1/request/geo/GetRegisterStatus.md new file mode 100644 index 0000000..75a1d6d --- /dev/null +++ b/docs/guide/v1/request/geo/GetRegisterStatus.md @@ -0,0 +1,8 @@ +Get registration status of geo system + +# Request +message [#1000](../../proto/README.md#action_1000) + +# Response +message [#31000](../../proto/README.md#action_31000) + diff --git a/docs/guide/v1/request/geo/Register.md b/docs/guide/v1/request/geo/Register.md new file mode 100644 index 0000000..9e7b8a8 --- /dev/null +++ b/docs/guide/v1/request/geo/Register.md @@ -0,0 +1,8 @@ +Change registration status of geo system + +# Request +message [#1001](../../proto/README.md#action_1001) + +# Response +message [#31001](../../proto/README.md#action_31001) + diff --git a/docs/guide/v1/request/geo/UpdateComment.md b/docs/guide/v1/request/geo/UpdateComment.md new file mode 100644 index 0000000..c94c4a6 --- /dev/null +++ b/docs/guide/v1/request/geo/UpdateComment.md @@ -0,0 +1,8 @@ +Update your geo comment + +# Request +message [#1004](../../proto/README.md#action_1004) + +# Response +message [#31004](../../proto/README.md#action_31004) + diff --git a/docs/guide/v1/request/geo/UpdatePosition.md b/docs/guide/v1/request/geo/UpdatePosition.md new file mode 100644 index 0000000..a7453a0 --- /dev/null +++ b/docs/guide/v1/request/geo/UpdatePosition.md @@ -0,0 +1,8 @@ +Update geo position + +# Request +message [#1002](../../proto/README.md#action_1002) + +# Response +message [#31002](../../proto/README.md#action_31002) + diff --git a/docs/guide/v1/request/qrCode/NewDevice.md b/docs/guide/v1/request/qrCode/NewDevice.md index cdb510f..c683a6b 100644 --- a/docs/guide/v1/request/qrCode/NewDevice.md +++ b/docs/guide/v1/request/qrCode/NewDevice.md @@ -1,11 +1,7 @@ Get new device QR code # Request -message [#803](../../proto/README.md#action_803) +message [#802](../../proto/README.md#action_802) # Response -message [#30803](../../proto/README.md#action_30803) - -# See also - -* [New device protocol](../../Protocol.md#new_device) \ No newline at end of file +message [#30802](../../proto/README.md#action_30802) \ No newline at end of file