Skip to content

Commit 77cddf7

Browse files
committed
feat: Add enrollmentAutomations and phones
1 parent d14c5fa commit 77cddf7

File tree

7 files changed

+554
-1
lines changed

7 files changed

+554
-1
lines changed

generate-routes.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,11 @@ const routePaths = [
3030
'/locks',
3131
'/noise_sensors',
3232
'/noise_sensors/noise_thresholds',
33-
'/thermostats/climate_setting_schedules',
33+
'/phones',
3434
'/thermostats',
35+
'/thermostats/climate_setting_schedules',
3536
'/user_identities',
37+
'/user_identities/enrollment_automations',
3638
'/webhooks',
3739
'/workspaces',
3840
] as const
@@ -53,6 +55,7 @@ const routePathSubresources: Partial<
5355
'/devices': ['unmanaged'],
5456
'/noise_sensors': ['noise_thresholds'],
5557
'/thermostats': ['climate_setting_schedules'],
58+
'/user_identities': ['enrollment_automations'],
5659
}
5760

5861
const ignoredEndpointPaths = [
@@ -63,6 +66,7 @@ const ignoredEndpointPaths = [
6366
'/health/get_service_health',
6467
'/health/service/[service_name]',
6568
'/noise_sensors/simulate/trigger_noise_threshold',
69+
'/phones/simulate/create_sandbox_phone',
6670
] as const
6771

6872
const endpointResources: Partial<Record<keyof typeof openapi.paths, null>> = {

src/lib/seam/connect/routes/index.ts

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

src/lib/seam/connect/routes/network.ts

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

src/lib/seam/connect/routes/phones.ts

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

0 commit comments

Comments
 (0)