Skip to content

Commit

Permalink
Merge pull request #24 from Exanlv/feat/skus
Browse files Browse the repository at this point in the history
Add endpoint for application SKUs
  • Loading branch information
SQKo authored Oct 1, 2023
2 parents 8b580ed + 3b7daf8 commit c3327ad
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/Discord/Endpoint.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,12 @@ class Endpoint
// GET
public const GATEWAY_BOT = self::GATEWAY.'/bot';

// GET
public const APPLICATION_SKUS = 'applications/:application_id/skus';
// GET, POST
public const APPLICATION_ENTITLEMENTS = 'applications/:application_id/entitlements';
// DELETE
public const APPLICATION_ENTITLEMENT = 'applications/:application_id/entitlements/:entitlement_id';
// GET, POST, PUT
public const GLOBAL_APPLICATION_COMMANDS = 'applications/:application_id/commands';
// GET, PATCH, DELETE
Expand Down

0 comments on commit c3327ad

Please sign in to comment.