From 8dc44aa387f1d3179147039b34d16bbdbca05c2a Mon Sep 17 00:00:00 2001 From: Gabriel <83644514+gpene@users.noreply.github.com> Date: Mon, 13 Nov 2023 14:08:57 +0100 Subject: [PATCH] Fixes Facebook Instant annotations (#1139) --- server/runtime_go_nakama.go | 2 +- server/runtime_javascript_nakama.go | 2 +- server/runtime_lua_nakama.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/server/runtime_go_nakama.go b/server/runtime_go_nakama.go index 50db19cfe..e996222d8 100644 --- a/server/runtime_go_nakama.go +++ b/server/runtime_go_nakama.go @@ -3002,7 +3002,7 @@ func (n *RuntimeGoNakamaModule) PurchaseValidateHuawei(ctx context.Context, user } // @group purchases -// @summary Validates and stores a purchase receipt from the Huawei App Gallery. +// @summary Validates and stores a purchase receipt from Facebook Instant Games. // @param ctx(type=context.Context) The context object represents information about the server and requester. // @param userId(type=string) The user ID of the owner of the receipt. // @param signedRequest(type=string) The Facebook Instant signedRequest receipt data. diff --git a/server/runtime_javascript_nakama.go b/server/runtime_javascript_nakama.go index 4af5af79b..f1ff12853 100644 --- a/server/runtime_javascript_nakama.go +++ b/server/runtime_javascript_nakama.go @@ -5629,7 +5629,7 @@ func (n *runtimeJavascriptNakamaModule) purchaseValidateHuawei(r *goja.Runtime) } // @group purchases -// @summary Validates and stores a purchase receipt from the Huawei App Gallery. +// @summary Validates and stores a purchase receipt from Facebook Instant Games. // @param userId(type=string) The user ID of the owner of the receipt. // @param signedRequest(type=string) The Facebook Instant signedRequest receipt data. // @param persist(type=bool, optional=true, default=true) Persist the purchase so that seenBefore can be computed to protect against replay attacks. diff --git a/server/runtime_lua_nakama.go b/server/runtime_lua_nakama.go index 6400c359e..a754ca557 100644 --- a/server/runtime_lua_nakama.go +++ b/server/runtime_lua_nakama.go @@ -7199,7 +7199,7 @@ func (n *RuntimeLuaNakamaModule) purchaseValidateHuawei(l *lua.LState) int { } // @group purchases -// @summary Validates and stores a purchase receipt from the Huawei App Gallery. +// @summary Validates and stores a purchase receipt from the Facebook Instant Games. // @param userId(type=string) The user ID of the owner of the receipt. // @param signedRequest(type=string) The Facebook Instant signedRequest receipt data. // @param persist(type=bool, optional=true, default=true) Persist the purchase so that seenBefore can be computed to protect against replay attacks. -- GitLab