Skip to content

Commit 6bd1eeb

Browse files
committed
Add missing routes
1 parent 8a132cb commit 6bd1eeb

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

generate-routes.ts

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ const routePaths = [
6060
'/bridges',
6161
'/events',
6262
'/locks',
63+
'/locks/simulate',
6364
'/networks',
6465
'/noise_sensors',
6566
'/noise_sensors/noise_thresholds',
@@ -69,8 +70,13 @@ const routePaths = [
6970
'/thermostats',
7071
'/thermostats/schedules',
7172
'/thermostats/simulate',
73+
'/thermostats/daily_programs',
7274
'/unstable_locations',
7375
'/unstable_access_grants',
76+
'/unstable_access_methods',
77+
'/unstable_partner',
78+
'/unstable_partner/resources',
79+
'/unstable_partner/building_blocks',
7480
'/user_identities',
7581
'/user_identities/enrollment_automations',
7682
'/webhooks',
@@ -91,15 +97,17 @@ const routePathSubresources: Partial<
9197
'systems',
9298
'users',
9399
],
100+
'/locks': ['simulate'],
94101
'/acs/users': ['unmanaged'],
95102
'/acs/access_groups': ['unmanaged'],
96103
'/acs/credentials': ['unmanaged'],
97104
'/acs/encoders': ['simulate'],
98105
'/phones': ['simulate'],
99106
'/devices': ['unmanaged', 'simulate'],
100107
'/noise_sensors': ['noise_thresholds', 'simulate'],
101-
'/thermostats': ['schedules', 'simulate'],
108+
'/thermostats': ['schedules', 'simulate', 'daily_programs'],
102109
'/user_identities': ['enrollment_automations'],
110+
'/unstable_partner': ['building_blocks', 'resources'],
103111
}
104112

105113
interface Route {

0 commit comments

Comments
 (0)