Skip to content

Commit a547dab

Browse files
authored
Merge pull request #40 from seamapi/phone-routes
feat: Add enrollmentAutomations and phones
2 parents d14c5fa + 89d5a98 commit a547dab

7 files changed

+563
-1
lines changed

generate-routes.ts

+6-1
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,14 @@ const routePaths = [
2828
'/devices/unmanaged',
2929
'/events',
3030
'/locks',
31+
'/networks',
3132
'/noise_sensors',
3233
'/noise_sensors/noise_thresholds',
33-
'/thermostats/climate_setting_schedules',
34+
'/phones',
3435
'/thermostats',
36+
'/thermostats/climate_setting_schedules',
3537
'/user_identities',
38+
'/user_identities/enrollment_automations',
3639
'/webhooks',
3740
'/workspaces',
3841
] as const
@@ -53,6 +56,7 @@ const routePathSubresources: Partial<
5356
'/devices': ['unmanaged'],
5457
'/noise_sensors': ['noise_thresholds'],
5558
'/thermostats': ['climate_setting_schedules'],
59+
'/user_identities': ['enrollment_automations'],
5660
}
5761

5862
const ignoredEndpointPaths = [
@@ -63,6 +67,7 @@ const ignoredEndpointPaths = [
6367
'/health/get_service_health',
6468
'/health/service/[service_name]',
6569
'/noise_sensors/simulate/trigger_noise_threshold',
70+
'/phones/simulate/create_sandbox_phone',
6671
] as const
6772

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

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

+3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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

+171
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

+151
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)