Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
821 changes: 140 additions & 681 deletions apigrpc/apigrpc.pb.go

Large diffs are not rendered by default.

4,900 changes: 1,410 additions & 3,490 deletions apigrpc/apigrpc.pb.gw.go

Large diffs are not rendered by default.

105 changes: 54 additions & 51 deletions apigrpc/apigrpc.swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -1374,7 +1374,7 @@
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/apiEvent"
"$ref": "#/definitions/nakamaapiEvent"
}
}
],
Expand Down Expand Up @@ -1866,30 +1866,7 @@
"in": "body",
"required": true,
"schema": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Name."
},
"description": {
"type": "string",
"description": "Description string."
},
"langTag": {
"type": "string",
"description": "Lang tag."
},
"avatarUrl": {
"type": "string",
"description": "Avatar URL."
},
"open": {
"type": "boolean",
"description": "Open is true if anyone should be allowed to join, or false if joins must be approved by a group admin."
}
},
"description": "Update fields in a given group."
"$ref": "#/definitions/NakamaUpdateGroupBody"
}
}
],
Expand Down Expand Up @@ -3703,6 +3680,32 @@
},
"description": "A single user-role pair."
},
"NakamaUpdateGroupBody": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Name."
},
"description": {
"type": "string",
"description": "Description string."
},
"langTag": {
"type": "string",
"description": "Lang tag."
},
"avatarUrl": {
"type": "string",
"description": "Avatar URL."
},
"open": {
"type": "boolean",
"description": "Open is true if anyone should be allowed to join, or false if joins must be approved by a group admin."
}
},
"description": "Update fields in a given group."
},
"UserGroupListUserGroup": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -4134,32 +4137,6 @@
},
"description": "Batch delete storage objects."
},
"apiEvent": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "An event name, type, category, or identifier."
},
"properties": {
"type": "object",
"additionalProperties": {
"type": "string"
},
"description": "Arbitrary event property values."
},
"timestamp": {
"type": "string",
"format": "date-time",
"description": "The time when the event was triggered."
},
"external": {
"type": "boolean",
"description": "True if the event came directly from a client call, false otherwise."
}
},
"description": "Represents an event to be passed through the server to registered event handlers."
},
"apiFriend": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -5423,6 +5400,32 @@
},
"description": "Write objects to the storage engine."
},
"nakamaapiEvent": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "An event name, type, category, or identifier."
},
"properties": {
"type": "object",
"additionalProperties": {
"type": "string"
},
"description": "Arbitrary event property values."
},
"timestamp": {
"type": "string",
"format": "date-time",
"description": "The time when the event was triggered."
},
"external": {
"type": "boolean",
"description": "True if the event came directly from a client call, false otherwise."
}
},
"description": "Represents an event to be passed through the server to registered event handlers."
},
"protobufAny": {
"type": "object",
"properties": {
Expand Down
Loading