Skip to content

Commit 75f67b5

Browse files
dependabot[bot]razor-xseambot
authored
feat(deps-dev): Bump @seamapi/types from 1.347.1 to 1.349.1 in the seam group (#280)
* feat(deps-dev): Bump @seamapi/types in the seam group Bumps the seam group with 1 update: [@seamapi/types](https://github.com/seamapi/types). Updates `@seamapi/types` from 1.347.1 to 1.349.1 - [Release notes](https://github.com/seamapi/types/releases) - [Changelog](https://github.com/seamapi/types/blob/main/.releaserc.json) - [Commits](seamapi/types@v1.347.1...v1.349.1) --- updated-dependencies: - dependency-name: "@seamapi/types" dependency-type: direct:development update-type: version-update:semver-minor dependency-group: seam ... Signed-off-by: dependabot[bot] <[email protected]> * Update generate-routes.ts * ci: Format code * ci: Generate code --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Evan Sosenko <[email protected]> Co-authored-by: Seam Bot <[email protected]>
1 parent 7ff042e commit 75f67b5

File tree

3 files changed

+13
-11
lines changed

3 files changed

+13
-11
lines changed

generate-routes.ts

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -125,10 +125,12 @@ interface ClassMeta {
125125
const createRoutes = (): Route[] => {
126126
const paths = Object.keys(openapi.paths)
127127

128-
const unmatchedEndpointPaths = paths.filter(
129-
(path) =>
130-
!routePaths.some((routePath) => isEndpointUnderRoute(path, routePath)),
131-
)
128+
const unmatchedEndpointPaths = paths
129+
.filter(
130+
(path) =>
131+
!routePaths.some((routePath) => isEndpointUnderRoute(path, routePath)),
132+
)
133+
.filter((path) => !path.startsWith('/seam'))
132134

133135
if (unmatchedEndpointPaths.length > 0) {
134136
throw new Error(

package-lock.json

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@
8484
"npm": ">= 9.0.0"
8585
},
8686
"peerDependencies": {
87-
"@seamapi/types": "^1.347.1"
87+
"@seamapi/types": "^1.349.1"
8888
},
8989
"peerDependenciesMeta": {
9090
"@seamapi/types": {
@@ -99,7 +99,7 @@
9999
},
100100
"devDependencies": {
101101
"@seamapi/fake-seam-connect": "1.74.0",
102-
"@seamapi/types": "1.347.1",
102+
"@seamapi/types": "1.349.1",
103103
"@types/eslint": "^8.44.2",
104104
"@types/jsonwebtoken": "^9.0.6",
105105
"@types/node": "^20.8.10",

0 commit comments

Comments
 (0)