feat(sdk): add support for endpoints#64
Merged
Merged
Conversation
Copilot started reviewing on behalf of
Dominik Kadera (dominikkadera)
July 1, 2026 09:30
View session
Contributor
There was a problem hiding this comment.
Pull request overview
This PR adds a new make.sdk.endpoints namespace to the Make TypeScript SDK, including CRUD-ish operations plus section management for the new “Endpoints” entity in the Apps SDK, and exposes corresponding bundled tools.
Changes:
- Added
SDKEndpointsendpoint implementation (list/get/create/update/delete,getSection/setSection,makePublic/makePrivate) and wired it intoMake+ public exports. - Added MCP/CLI tool definitions for SDK Endpoints and registered them in the global tools aggregator.
- Added unit/integration tests and mock fixtures for the new SDK Endpoints functionality.
Reviewed changes
Copilot reviewed 14 out of 15 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| test/sdk/endpoints.spec.ts | Unit tests for make.sdk.endpoints methods and request shapes. |
| test/sdk/endpoints.integration.test.ts | Integration coverage for creating/updating/section management and cleanup flows. |
| test/mocks/sdk/endpoints/update.json | Mock response for endpoint update. |
| test/mocks/sdk/endpoints/list.json | Mock response for listing endpoints. |
| test/mocks/sdk/endpoints/get.json | Mock response for getting an endpoint. |
| test/mocks/sdk/endpoints/get-section.json | Mock response for retrieving an endpoint section. |
| test/mocks/sdk/endpoints/create.json | Mock response for endpoint creation. |
| src/tools.ts | Registers the new sdk-endpoints tools into MakeTools. |
| src/make.ts | Adds sdk.endpoints to the Make client SDK namespace. |
| src/index.ts | Exports new SDK Endpoints types for public consumption. |
| src/endpoints/sdk/endpoints.ts | Implements the SDKEndpoints API client. |
| src/endpoints/sdk/endpoints.tools.ts | Adds tool definitions for SDK Endpoints operations. |
| README.md | Documents SDK Endpoints and adds the tool category entry. |
| package.json | Bumps package version to 1.6.0. |
| package-lock.json | Updates lockfile version metadata to 1.6.0. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Andrii Chumak (andriichumak)
approved these changes
Jul 1, 2026
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Hey,
in this PR I'm adding support for working with the new Endpoints entity in the Apps SDK, which means:
sdk.endpointsnamespace with corresponding CRUD+ methods