File tree 1 file changed +1
-9
lines changed
1 file changed +1
-9
lines changed Original file line number Diff line number Diff line change @@ -55,15 +55,7 @@ const ignoredEndpointPaths = [
55
55
] as const
56
56
57
57
const endpointResources : Partial < Record < keyof typeof openapi . paths , null > > = {
58
- '/access_codes/delete' : null ,
59
- '/access_codes/unmanaged/delete' : null ,
60
- '/access_codes/update' : null ,
61
58
'/connect_webviews/view' : null ,
62
- '/noise_sensors/noise_thresholds/create' : null ,
63
- '/noise_sensors/noise_thresholds/delete' : null ,
64
- '/noise_sensors/noise_thresholds/update' : null ,
65
- '/thermostats/climate_setting_schedules/update' : null ,
66
- '/workspaces/reset_sandbox' : null ,
67
59
} as const
68
60
69
61
interface Route {
@@ -103,7 +95,7 @@ const createRoutes = (): Route[] => {
103
95
if ( unmatchedEndpointPaths . length > 0 ) {
104
96
// eslint-disable-next-line no-console
105
97
console . warn (
106
- `The following endpoints will not be generated:\n${ unmatchedEndpointPaths . join (
98
+ `The following endpoints will not be generated (add them to routePaths in generate-routes.ts) :\n${ unmatchedEndpointPaths . join (
107
99
'\n' ,
108
100
) } `,
109
101
)
You can’t perform that action at this time.
0 commit comments