@@ -57,11 +57,9 @@ You can run the servers with native binaries for your platform.
When connected you'll see server output which describes all settings the server uses for [configuration](https://heroiclabs.com/docs/install-configuration).
There's a number of official [client libraries](https://github.com/heroiclabs) available on GitHub with [documentation](https://heroiclabs.com/docs). The current platform/language support includes: .NET (in C#), Unity engine, JavaScript, Java (with Android), Unreal engine, and Swift (with iOS). If you'd like to contribute a client or request one let us know.
"summary":"Delete one or more users by ID or username.",
"summary":"Delete one or more notifications for the current user.",
"operationId":"DeleteNotifications",
"responses":{
"200":{
@@ -1302,6 +1360,18 @@
}
}
},
"parameters":[
{
"name":"ids",
"description":"The id of notifications.",
"in":"query",
"required":false,
"type":"array",
"items":{
"type":"string"
}
}
],
"tags":[
"Nakama"
]
@@ -1343,6 +1413,12 @@
],
"tags":[
"Nakama"
],
"security":[
{
"BearerJwt":[],
"HttpKeyAuth":[]
}
]
},
"post":{
@@ -1374,6 +1450,12 @@
],
"tags":[
"Nakama"
],
"security":[
{
"BearerJwt":[],
"HttpKeyAuth":[]
}
]
}
},
@@ -2678,44 +2760,30 @@
},
"description":"Write objects to the storage engine."
},
"protobufBoolValue":{
"type":"object",
"properties":{
"value":{
"type":"boolean",
"format":"boolean",
"description":"The bool value."
}
},
"description":"Wrapper message for `bool`.\n\nThe JSON representation for `BoolValue` is JSON `true` and `false`."
},
"protobufEmpty":{
"type":"object",
"description":"service Foo {\n rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty);\n }\n\nThe JSON representation for `Empty` is empty JSON object `{}`.",
"title":"A generic empty message that you can re-use to avoid defining duplicated\nempty messages in your APIs. A typical example is to use it as the request\nor the response type of an API method. For instance:"
},
"protobufInt32Value":{
"type":"object",
"properties":{
"value":{
"type":"integer",
"format":"int32",
"description":"The int32 value."
}
},
"description":"Wrapper message for `int32`.\n\nThe JSON representation for `Int32Value` is JSON number."
"securityDefinitions":{
"BasicAuth":{
"type":"basic"
},
"protobufStringValue":{
"type":"object",
"properties":{
"value":{
"type":"string",
"description":"The string value."
}
"BearerJwt":{
"type":""
},
"description":"Wrapper message for `string`.\n\nThe JSON representation for `StringValue` is JSON string."