-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Cameron Campbell
authored and
Cameron Campbell
committed
May 17, 2024
1 parent
a06ae31
commit d43da22
Showing
146 changed files
with
5,825 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
|
||
import './styles.css' | ||
|
||
export default function MyApp({ Component, pageProps }) { | ||
return <Component {...pageProps} /> | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"cloud": { | ||
"type": "page", | ||
"title": "Cloud APIs" | ||
}, | ||
"classic": { | ||
"type": "page", | ||
"title": "Classic APIs" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"friends": "ClassicFriendsApi", | ||
"games": "ClassicGamesApi", | ||
"groups": "ClassicGroupsApi", | ||
"premiumFeatures": "ClassicPremiumFeaturesApi", | ||
"subscriptions": "ClassicSubscriptionsApi", | ||
"talent": "ClassicTalentApi", | ||
"thumbnails": "ClassicThumbnailsApi", | ||
"universes": "ClassicUniversesApi", | ||
"users": "ClassicUsersApi" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"friendsMetadata": "friendsMetadata", | ||
"authenticatedUserFriendsCount": "authenticatedUserFriendsCount", | ||
"authenticatedUserFriendRequests": "authenticatedUserFriendRequests", | ||
"authenticatedUserFriendRequestsCount": "authenticatedUserFriendRequestsCount", | ||
"friendsList": "friendsList", | ||
"friendsCount": "friendsCount", | ||
"findFriends": "findFriends", | ||
"userfollowersCount": "userfollowersCount" | ||
} |
24 changes: 24 additions & 0 deletions
24
buildDocs/docs_site/pages/classic/friends/authenticatedUserFriendRequests.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
|
||
# authenticatedUserFriendRequests | ||
Gets friends requests sent to the authenticated user. | ||
|
||
|
||
## Parameters | ||
| Name | Type | Description | | ||
| :-------- | :---- | :---------- | | ||
| limit | ? | limit | | ||
| sortOrder | ? | sortOrder | | ||
| cursor | ? | cursor | | ||
|
||
|
||
|
||
## Example | ||
```js copy showLineNumbers | ||
const { data: requests } = await ClassicFriendsApi.authenticatedUserFriendRequests({ limit: 10 }); | ||
``` | ||
|
||
## Endpoint | ||
```ansi | ||
[38;5;156mGET[0m[2;33m[0m /v1/my/friends/requests | ||
``` | ||
|
16 changes: 16 additions & 0 deletions
16
buildDocs/docs_site/pages/classic/friends/authenticatedUserFriendRequestsCount.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
|
||
# authenticatedUserFriendRequestsCount | ||
Gets the amount of friend requests the authenticated user has. | ||
|
||
|
||
|
||
## Example | ||
```js copy showLineNumbers | ||
const { data: requestsCount } = await ClassicFriendsApi.authenticatedUserFriendRequestsCount(); | ||
``` | ||
|
||
## Endpoint | ||
```ansi | ||
[38;5;156mGET[0m[2;33m[0m /v1/user/friend-requests/count | ||
``` | ||
|
16 changes: 16 additions & 0 deletions
16
buildDocs/docs_site/pages/classic/friends/authenticatedUserFriendsCount.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
|
||
# authenticatedUserFriendsCount | ||
Gets the amount of friends the authenticated user has. | ||
|
||
|
||
|
||
## Example | ||
```js copy showLineNumbers | ||
const { data: metadata } = await ClassicFriendsApi.friendsMetadata(); | ||
``` | ||
|
||
## Endpoint | ||
```ansi | ||
[38;5;156mGET[0m[2;33m[0m /v1/my/friends/count | ||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
|
||
# findFriends | ||
Gets a paginated list of all friends for the specified user. | ||
|
||
|
||
## Parameters | ||
| Name | Type | Description | | ||
| :------- | :--------- | :----------------------------------------------- | | ||
| userId | Identifier | The id of the user to get friends for. | | ||
| userSort | ? | Specifies how to sort the returned friends. | | ||
| limit | ? | The number of results to be returned | | ||
| cursor | ? | The paging cursor for the previous or next page. | | ||
|
||
|
||
|
||
## Example | ||
```js copy showLineNumbers | ||
const { data: friends } = await ClassicFriendsApi.userfollowersCount({ userId: 45348281 }); | ||
``` | ||
|
||
## Endpoint | ||
```ansi | ||
[38;5;156mGET[0m[2;33m[0m /v1/users/{userId}/friends/find | ||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
|
||
# friendsCount | ||
Gets friends count for a specified user. | ||
|
||
|
||
## Parameters | ||
| Name | Type | Description | | ||
| :----- | :--------- | :------------------------------------- | | ||
| userId | Identifier | The id of the user to get friends for. | | ||
|
||
|
||
|
||
## Example | ||
```js copy showLineNumbers | ||
const { data: count } = await ClassicFriendsApi.friendsCount({ userId: 45348281 }); | ||
``` | ||
|
||
## Endpoint | ||
```ansi | ||
[38;5;156mGET[0m[2;33m[0m /v1/users/{userId}/friends/count | ||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
|
||
# friendsList | ||
Gets friends for a specified user. | ||
|
||
|
||
## Parameters | ||
| Name | Type | Description | | ||
| :------- | :--------- | :------------------------------------------ | | ||
| userId | Identifier | The id of the user to get friends for. | | ||
| userSort | ? | Specifies how to sort the returned friends. | | ||
|
||
|
||
|
||
## Example | ||
```js copy showLineNumbers | ||
const { data: friends } = await ClassicFriendsApi.friendsList({ userId: 45348281 }); | ||
``` | ||
|
||
## Endpoint | ||
```ansi | ||
[38;5;156mGET[0m[2;33m[0m /v1/users/{userId}/friends | ||
``` | ||
|
16 changes: 16 additions & 0 deletions
16
buildDocs/docs_site/pages/classic/friends/friendsMetadata.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
|
||
# friendsMetadata | ||
Gets friends metadata. | ||
|
||
|
||
|
||
## Example | ||
```js copy showLineNumbers | ||
const { data: metadata } = await ClassicFriendsApi.friendsMetadata(); | ||
``` | ||
|
||
## Endpoint | ||
```ansi | ||
[38;5;156mGET[0m[2;33m[0m /v1/metadata | ||
``` | ||
|
22 changes: 22 additions & 0 deletions
22
buildDocs/docs_site/pages/classic/friends/userfollowersCount.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
|
||
# userfollowersCount | ||
Gets the followers count for a specific user. | ||
|
||
|
||
## Parameters | ||
| Name | Type | Description | | ||
| :----- | :--------- | :------------------------------------------------ | | ||
| userId | Identifier | The id of the user to get the follower count for. | | ||
|
||
|
||
|
||
## Example | ||
```js copy showLineNumbers | ||
const { data: followersCount } = await ClassicFriendsApi.userfollowersCount({ userId: 45348281 }); | ||
``` | ||
|
||
## Endpoint | ||
```ansi | ||
[38;5;156mGET[0m[2;33m[0m /v1/users/{userId}/followers/count | ||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"gamesInfo": "gamesInfo", | ||
"userGames": "userGames" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
|
||
# gamesInfo | ||
Gets a list of games info from universe ids. | ||
|
||
|
||
## Parameters | ||
| Name | Type | Description | | ||
| :-------- | :---- | :----------------------------------------------- | | ||
| userId | | The id of the user to get games for. | | ||
| limit | | The maximum amount of games to return. | | ||
| sortOrder | | The order the results are sorted it. | | ||
| cursor | | the paging cursor for the previous or next page. | | ||
|
||
|
||
|
||
## Example | ||
```js copy showLineNumbers | ||
|
||
``` | ||
|
||
## Endpoint | ||
```ansi | ||
[38;5;156mGET[0m[2;33m[0m /v1/games | ||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
|
||
# userGames | ||
Gets a list of games made by a specific user. | ||
|
||
|
||
## Parameters | ||
| Name | Type | Description | | ||
| :-------- | :--------- | :----------------------------------------------- | | ||
| userId | Identifier | The id of the user to get games for. | | ||
| limit | ? | The maximum amount of games to return. | | ||
| sortOrder | ? | The order the results are sorted it. | | ||
| cursor | ? | the paging cursor for the previous or next page. | | ||
|
||
|
||
|
||
## Example | ||
```js copy showLineNumbers | ||
|
||
``` | ||
|
||
## Endpoint | ||
```ansi | ||
[38;5;156mGET[0m[2;33m[0m /v2/users/{userId}/games | ||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
{ | ||
"groupInfo": "groupInfo", | ||
"groupAuditLog": "groupAuditLog", | ||
"groupNameHistory": "groupNameHistory", | ||
"groupSettings": "groupSettings", | ||
"setGroupSettings": "setGroupSettings", | ||
"groupsConfigMetadata": "groupsConfigMetadata", | ||
"groupsMetadata": "groupsMetadata", | ||
"groupsPolicyInfo": "groupsPolicyInfo", | ||
"setGroupDescription": "setGroupDescription", | ||
"setGroupShout": "setGroupShout", | ||
"setGroupIcon": "setGroupIcon", | ||
"batchDeclineGroupJoinRequests": "batchDeclineGroupJoinRequests", | ||
"groupJoinRequests": "groupJoinRequests", | ||
"batchAcceptGroupJoinRequests": "batchAcceptGroupJoinRequests", | ||
"declineGroupJoinRequest": "declineGroupJoinRequest", | ||
"groupJoinRequestInfo": "groupJoinRequestInfo", | ||
"acceptGroupJoinRequest": "acceptGroupJoinRequest", | ||
"authenticatedUserGroupMembershipInfo": "authenticatedUserGroupMembershipInfo", | ||
"groupRoles": "groupRoles", | ||
"groupMembersWithRole": "groupMembersWithRole", | ||
"groupMembers": "groupMembers", | ||
"authenticatedUserPendingGroups": "authenticatedUserPendingGroups", | ||
"groupsThatUsersFriendsAreIn": "groupsThatUsersFriendsAreIn", | ||
"allGroupRolesForUser_V1": "allGroupRolesForUser_V1", | ||
"removeGroupMember": "removeGroupMember", | ||
"updateGroupMemberRole": "updateGroupMemberRole", | ||
"groupPayoutRestrictionsInfo": "groupPayoutRestrictionsInfo", | ||
"groupPayoutsInfo": "groupPayoutsInfo", | ||
"groupRelationships": "groupRelationships", | ||
"batchDeclineGroupRelationshipRequests": "batchDeclineGroupRelationshipRequests", | ||
"groupRelationshipRequests": "groupRelationshipRequests", | ||
"batchAcceptGroupRelationshipRequests": "batchAcceptGroupRelationshipRequests", | ||
"removeGroupRelationship": "removeGroupRelationship", | ||
"requestGroupRelationship": "requestGroupRelationship", | ||
"declineGroupRelationshipRequest": "declineGroupRelationshipRequest", | ||
"acceptGroupRelationshipRequest": "acceptGroupRelationshipRequest", | ||
"groupPermissionsForRole": "groupPermissionsForRole", | ||
"setGroupRolePermissions": "setGroupRolePermissions", | ||
"groupGuestRolePermissions": "groupGuestRolePermissions", | ||
"groupPermissionsForAllRoles": "groupPermissionsForAllRoles", | ||
"groupSocialLinks": "groupSocialLinks", | ||
"addGroupSocialLink": "addGroupSocialLink", | ||
"removeGroupSocialLink": "removeGroupSocialLink", | ||
"updateGroupSocialLink": "updateGroupSocialLink", | ||
"groupWallPosts_V1": "groupWallPosts_V1", | ||
"authenticatedUserSubscribeToGroupWallNotificationEvents": "authenticatedUserSubscribeToGroupWallNotificationEvents", | ||
"removeGroupWallPost": "removeGroupWallPost", | ||
"removeAllGroupWallPostMadeByUser": "removeAllGroupWallPostMadeByUser", | ||
"groupSearch": "groupSearch", | ||
"groupLookupSearch": "groupLookupSearch", | ||
"groupSearchMetadata": "groupSearchMetadata", | ||
"groupRolesFromIds": "groupRolesFromIds" | ||
} |
Oops, something went wrong.