@seamapi/types 1.467.0 → 1.469.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/connect.cjs CHANGED
@@ -249,7 +249,6 @@ var thermostat_daily_program = zod.z.object({
249
249
  }).describe(`
250
250
  ---
251
251
  route_path: /thermostats/daily_programs
252
- undocumented: Unreleased.
253
252
  ---
254
253
  Represents a thermostat daily program, consisting of a set of periods, each of which has a starting time and the key that identifies the climate preset to apply at the starting time.
255
254
  `);
@@ -430,14 +429,12 @@ var thermostat_capability_properties = zod.z.object({
430
429
  thermostat_daily_programs: zod.z.array(thermostat_daily_program).optional().describe(`
431
430
  ---
432
431
  property_group_key: thermostats
433
- undocumented: Unreleased.
434
432
  ---
435
433
  Configured [daily programs](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-programs) for the thermostat.
436
434
  `),
437
435
  thermostat_weekly_program: thermostat_weekly_program.nullable().optional().describe(`
438
436
  ---
439
437
  property_group_key: thermostats
440
- undocumented: Unreleased.
441
438
  ---
442
439
  Current [weekly program](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-programs) for the thermostat.
443
440
  `),
@@ -16378,12 +16375,10 @@ var openapi_default = {
16378
16375
  "created_at"
16379
16376
  ],
16380
16377
  type: "object",
16381
- "x-route-path": "/thermostats/daily_programs",
16382
- "x-undocumented": "Unreleased."
16378
+ "x-route-path": "/thermostats/daily_programs"
16383
16379
  },
16384
16380
  type: "array",
16385
- "x-property-group-key": "thermostats",
16386
- "x-undocumented": "Unreleased."
16381
+ "x-property-group-key": "thermostats"
16387
16382
  },
16388
16383
  thermostat_weekly_program: {
16389
16384
  description: "Current [weekly program](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-programs) for the thermostat.",
@@ -16448,8 +16443,7 @@ var openapi_default = {
16448
16443
  "created_at"
16449
16444
  ],
16450
16445
  type: "object",
16451
- "x-property-group-key": "thermostats",
16452
- "x-undocumented": "Unreleased."
16446
+ "x-property-group-key": "thermostats"
16453
16447
  }
16454
16448
  },
16455
16449
  type: "object"
@@ -23868,8 +23862,7 @@ var openapi_default = {
23868
23862
  "created_at"
23869
23863
  ],
23870
23864
  type: "object",
23871
- "x-route-path": "/thermostats/daily_programs",
23872
- "x-undocumented": "Unreleased."
23865
+ "x-route-path": "/thermostats/daily_programs"
23873
23866
  },
23874
23867
  thermostat_schedule: {
23875
23868
  description: "Represents a [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules) that activates a configured [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) on a [thermostat](https://docs.seam.co/latest/capability-guides/thermostats) at a specified starting time and deactivates the climate preset at a specified ending time.",
@@ -48895,6 +48888,566 @@ var openapi_default = {
48895
48888
  "x-undocumented": "Internal endpoint for customer portals."
48896
48889
  }
48897
48890
  },
48891
+ "/seam/customer/v1/events/list": {
48892
+ get: {
48893
+ description: "Returns a list of events for devices in a specific space. This endpoint is designed for customer portals and only supports filtering by space_id.",
48894
+ operationId: "seamCustomerV1EventsListGet",
48895
+ parameters: [
48896
+ {
48897
+ in: "query",
48898
+ name: "space_id",
48899
+ required: true,
48900
+ schema: {
48901
+ description: "ID of the space for which you want to list events.",
48902
+ format: "uuid",
48903
+ type: "string"
48904
+ }
48905
+ },
48906
+ {
48907
+ in: "query",
48908
+ name: "since",
48909
+ required: false,
48910
+ schema: {
48911
+ description: "Timestamp to indicate the beginning generation time for the events that you want to list. You must include `since` or `between`.",
48912
+ type: "string"
48913
+ }
48914
+ },
48915
+ {
48916
+ in: "query",
48917
+ name: "between",
48918
+ required: false,
48919
+ schema: {
48920
+ description: "Lower and upper timestamps to define an exclusive interval containing the events that you want to list. You must include `since` or `between`.",
48921
+ items: {
48922
+ oneOf: [
48923
+ { type: "string" },
48924
+ { format: "date-time", type: "string" }
48925
+ ]
48926
+ },
48927
+ maxItems: 2,
48928
+ minItems: 2,
48929
+ type: "array"
48930
+ }
48931
+ },
48932
+ {
48933
+ in: "query",
48934
+ name: "event_type",
48935
+ required: false,
48936
+ schema: {
48937
+ description: "Type of the events that you want to list.",
48938
+ enum: [
48939
+ "access_code.created",
48940
+ "access_code.changed",
48941
+ "access_code.scheduled_on_device",
48942
+ "access_code.set_on_device",
48943
+ "access_code.removed_from_device",
48944
+ "access_code.delay_in_setting_on_device",
48945
+ "access_code.failed_to_set_on_device",
48946
+ "access_code.deleted",
48947
+ "access_code.delay_in_removing_from_device",
48948
+ "access_code.failed_to_remove_from_device",
48949
+ "access_code.modified_external_to_seam",
48950
+ "access_code.deleted_external_to_seam",
48951
+ "access_code.backup_access_code_pulled",
48952
+ "access_code.unmanaged.converted_to_managed",
48953
+ "access_code.unmanaged.failed_to_convert_to_managed",
48954
+ "access_code.unmanaged.created",
48955
+ "access_code.unmanaged.removed",
48956
+ "access_grant.created",
48957
+ "access_grant.deleted",
48958
+ "access_grant.access_granted_to_all_doors",
48959
+ "access_grant.access_granted_to_door",
48960
+ "access_grant.access_to_door_lost",
48961
+ "access_method.issued",
48962
+ "access_method.revoked",
48963
+ "access_method.card_encoding_required",
48964
+ "access_method.deleted",
48965
+ "access_method.reissued",
48966
+ "acs_system.connected",
48967
+ "acs_system.added",
48968
+ "acs_system.disconnected",
48969
+ "acs_credential.deleted",
48970
+ "acs_credential.issued",
48971
+ "acs_credential.reissued",
48972
+ "acs_credential.invalidated",
48973
+ "acs_user.created",
48974
+ "acs_user.deleted",
48975
+ "acs_encoder.added",
48976
+ "acs_encoder.removed",
48977
+ "acs_access_group.deleted",
48978
+ "acs_entrance.added",
48979
+ "acs_entrance.removed",
48980
+ "client_session.deleted",
48981
+ "connected_account.connected",
48982
+ "connected_account.created",
48983
+ "connected_account.successful_login",
48984
+ "connected_account.disconnected",
48985
+ "connected_account.completed_first_sync",
48986
+ "connected_account.deleted",
48987
+ "connected_account.completed_first_sync_after_reconnection",
48988
+ "action_attempt.lock_door.succeeded",
48989
+ "action_attempt.lock_door.failed",
48990
+ "action_attempt.unlock_door.succeeded",
48991
+ "action_attempt.unlock_door.failed",
48992
+ "connect_webview.login_succeeded",
48993
+ "connect_webview.login_failed",
48994
+ "device.connected",
48995
+ "device.added",
48996
+ "device.converted_to_unmanaged",
48997
+ "device.unmanaged.converted_to_managed",
48998
+ "device.unmanaged.connected",
48999
+ "device.disconnected",
49000
+ "device.unmanaged.disconnected",
49001
+ "device.tampered",
49002
+ "device.low_battery",
49003
+ "device.battery_status_changed",
49004
+ "device.removed",
49005
+ "device.deleted",
49006
+ "device.third_party_integration_detected",
49007
+ "device.third_party_integration_no_longer_detected",
49008
+ "device.salto.privacy_mode_activated",
49009
+ "device.salto.privacy_mode_deactivated",
49010
+ "device.connection_became_flaky",
49011
+ "device.connection_stabilized",
49012
+ "device.error.subscription_required",
49013
+ "device.error.subscription_required.resolved",
49014
+ "device.accessory_keypad_connected",
49015
+ "device.accessory_keypad_disconnected",
49016
+ "noise_sensor.noise_threshold_triggered",
49017
+ "lock.locked",
49018
+ "lock.unlocked",
49019
+ "lock.access_denied",
49020
+ "thermostat.climate_preset_activated",
49021
+ "thermostat.manually_adjusted",
49022
+ "thermostat.temperature_threshold_exceeded",
49023
+ "thermostat.temperature_threshold_no_longer_exceeded",
49024
+ "thermostat.temperature_reached_set_point",
49025
+ "thermostat.temperature_changed",
49026
+ "device.name_changed",
49027
+ "enrollment_automation.deleted",
49028
+ "phone.deactivated"
49029
+ ],
49030
+ type: "string"
49031
+ }
49032
+ },
49033
+ {
49034
+ in: "query",
49035
+ name: "event_types",
49036
+ required: false,
49037
+ schema: {
49038
+ description: "Types of the events that you want to list.",
49039
+ items: {
49040
+ enum: [
49041
+ "access_code.created",
49042
+ "access_code.changed",
49043
+ "access_code.scheduled_on_device",
49044
+ "access_code.set_on_device",
49045
+ "access_code.removed_from_device",
49046
+ "access_code.delay_in_setting_on_device",
49047
+ "access_code.failed_to_set_on_device",
49048
+ "access_code.deleted",
49049
+ "access_code.delay_in_removing_from_device",
49050
+ "access_code.failed_to_remove_from_device",
49051
+ "access_code.modified_external_to_seam",
49052
+ "access_code.deleted_external_to_seam",
49053
+ "access_code.backup_access_code_pulled",
49054
+ "access_code.unmanaged.converted_to_managed",
49055
+ "access_code.unmanaged.failed_to_convert_to_managed",
49056
+ "access_code.unmanaged.created",
49057
+ "access_code.unmanaged.removed",
49058
+ "access_grant.created",
49059
+ "access_grant.deleted",
49060
+ "access_grant.access_granted_to_all_doors",
49061
+ "access_grant.access_granted_to_door",
49062
+ "access_grant.access_to_door_lost",
49063
+ "access_method.issued",
49064
+ "access_method.revoked",
49065
+ "access_method.card_encoding_required",
49066
+ "access_method.deleted",
49067
+ "access_method.reissued",
49068
+ "acs_system.connected",
49069
+ "acs_system.added",
49070
+ "acs_system.disconnected",
49071
+ "acs_credential.deleted",
49072
+ "acs_credential.issued",
49073
+ "acs_credential.reissued",
49074
+ "acs_credential.invalidated",
49075
+ "acs_user.created",
49076
+ "acs_user.deleted",
49077
+ "acs_encoder.added",
49078
+ "acs_encoder.removed",
49079
+ "acs_access_group.deleted",
49080
+ "acs_entrance.added",
49081
+ "acs_entrance.removed",
49082
+ "client_session.deleted",
49083
+ "connected_account.connected",
49084
+ "connected_account.created",
49085
+ "connected_account.successful_login",
49086
+ "connected_account.disconnected",
49087
+ "connected_account.completed_first_sync",
49088
+ "connected_account.deleted",
49089
+ "connected_account.completed_first_sync_after_reconnection",
49090
+ "action_attempt.lock_door.succeeded",
49091
+ "action_attempt.lock_door.failed",
49092
+ "action_attempt.unlock_door.succeeded",
49093
+ "action_attempt.unlock_door.failed",
49094
+ "connect_webview.login_succeeded",
49095
+ "connect_webview.login_failed",
49096
+ "device.connected",
49097
+ "device.added",
49098
+ "device.converted_to_unmanaged",
49099
+ "device.unmanaged.converted_to_managed",
49100
+ "device.unmanaged.connected",
49101
+ "device.disconnected",
49102
+ "device.unmanaged.disconnected",
49103
+ "device.tampered",
49104
+ "device.low_battery",
49105
+ "device.battery_status_changed",
49106
+ "device.removed",
49107
+ "device.deleted",
49108
+ "device.third_party_integration_detected",
49109
+ "device.third_party_integration_no_longer_detected",
49110
+ "device.salto.privacy_mode_activated",
49111
+ "device.salto.privacy_mode_deactivated",
49112
+ "device.connection_became_flaky",
49113
+ "device.connection_stabilized",
49114
+ "device.error.subscription_required",
49115
+ "device.error.subscription_required.resolved",
49116
+ "device.accessory_keypad_connected",
49117
+ "device.accessory_keypad_disconnected",
49118
+ "noise_sensor.noise_threshold_triggered",
49119
+ "lock.locked",
49120
+ "lock.unlocked",
49121
+ "lock.access_denied",
49122
+ "thermostat.climate_preset_activated",
49123
+ "thermostat.manually_adjusted",
49124
+ "thermostat.temperature_threshold_exceeded",
49125
+ "thermostat.temperature_threshold_no_longer_exceeded",
49126
+ "thermostat.temperature_reached_set_point",
49127
+ "thermostat.temperature_changed",
49128
+ "device.name_changed",
49129
+ "enrollment_automation.deleted",
49130
+ "phone.deactivated"
49131
+ ],
49132
+ type: "string"
49133
+ },
49134
+ type: "array"
49135
+ }
49136
+ },
49137
+ {
49138
+ in: "query",
49139
+ name: "limit",
49140
+ required: false,
49141
+ schema: {
49142
+ default: 500,
49143
+ description: "Numerical limit on the number of events to return.",
49144
+ format: "float",
49145
+ type: "number"
49146
+ }
49147
+ }
49148
+ ],
49149
+ responses: {
49150
+ 200: {
49151
+ content: {
49152
+ "application/json": {
49153
+ schema: {
49154
+ properties: {
49155
+ events: {
49156
+ items: { $ref: "#/components/schemas/event" },
49157
+ type: "array"
49158
+ },
49159
+ ok: { type: "boolean" }
49160
+ },
49161
+ required: ["events", "ok"],
49162
+ type: "object"
49163
+ }
49164
+ }
49165
+ },
49166
+ description: "OK"
49167
+ },
49168
+ 400: { description: "Bad Request" },
49169
+ 401: { description: "Unauthorized" }
49170
+ },
49171
+ security: [{ client_session_with_customer: [] }],
49172
+ summary: "/seam/customer/v1/events/list",
49173
+ tags: ["/events"],
49174
+ "x-fern-sdk-group-name": ["seam", "customer", "v1", "events"],
49175
+ "x-fern-sdk-method-name": "list",
49176
+ "x-fern-sdk-return-value": "events",
49177
+ "x-response-key": "events",
49178
+ "x-title": "List Events for Customer Space",
49179
+ "x-undocumented": "Internal endpoint for customer portals."
49180
+ },
49181
+ post: {
49182
+ description: "Returns a list of events for devices in a specific space. This endpoint is designed for customer portals and only supports filtering by space_id.",
49183
+ operationId: "seamCustomerV1EventsListPost",
49184
+ requestBody: {
49185
+ content: {
49186
+ "application/json": {
49187
+ schema: {
49188
+ properties: {
49189
+ between: {
49190
+ description: "Lower and upper timestamps to define an exclusive interval containing the events that you want to list. You must include `since` or `between`.",
49191
+ items: {
49192
+ oneOf: [
49193
+ { type: "string" },
49194
+ { format: "date-time", type: "string" }
49195
+ ]
49196
+ },
49197
+ maxItems: 2,
49198
+ minItems: 2,
49199
+ type: "array"
49200
+ },
49201
+ event_type: {
49202
+ description: "Type of the events that you want to list.",
49203
+ enum: [
49204
+ "access_code.created",
49205
+ "access_code.changed",
49206
+ "access_code.scheduled_on_device",
49207
+ "access_code.set_on_device",
49208
+ "access_code.removed_from_device",
49209
+ "access_code.delay_in_setting_on_device",
49210
+ "access_code.failed_to_set_on_device",
49211
+ "access_code.deleted",
49212
+ "access_code.delay_in_removing_from_device",
49213
+ "access_code.failed_to_remove_from_device",
49214
+ "access_code.modified_external_to_seam",
49215
+ "access_code.deleted_external_to_seam",
49216
+ "access_code.backup_access_code_pulled",
49217
+ "access_code.unmanaged.converted_to_managed",
49218
+ "access_code.unmanaged.failed_to_convert_to_managed",
49219
+ "access_code.unmanaged.created",
49220
+ "access_code.unmanaged.removed",
49221
+ "access_grant.created",
49222
+ "access_grant.deleted",
49223
+ "access_grant.access_granted_to_all_doors",
49224
+ "access_grant.access_granted_to_door",
49225
+ "access_grant.access_to_door_lost",
49226
+ "access_method.issued",
49227
+ "access_method.revoked",
49228
+ "access_method.card_encoding_required",
49229
+ "access_method.deleted",
49230
+ "access_method.reissued",
49231
+ "acs_system.connected",
49232
+ "acs_system.added",
49233
+ "acs_system.disconnected",
49234
+ "acs_credential.deleted",
49235
+ "acs_credential.issued",
49236
+ "acs_credential.reissued",
49237
+ "acs_credential.invalidated",
49238
+ "acs_user.created",
49239
+ "acs_user.deleted",
49240
+ "acs_encoder.added",
49241
+ "acs_encoder.removed",
49242
+ "acs_access_group.deleted",
49243
+ "acs_entrance.added",
49244
+ "acs_entrance.removed",
49245
+ "client_session.deleted",
49246
+ "connected_account.connected",
49247
+ "connected_account.created",
49248
+ "connected_account.successful_login",
49249
+ "connected_account.disconnected",
49250
+ "connected_account.completed_first_sync",
49251
+ "connected_account.deleted",
49252
+ "connected_account.completed_first_sync_after_reconnection",
49253
+ "action_attempt.lock_door.succeeded",
49254
+ "action_attempt.lock_door.failed",
49255
+ "action_attempt.unlock_door.succeeded",
49256
+ "action_attempt.unlock_door.failed",
49257
+ "connect_webview.login_succeeded",
49258
+ "connect_webview.login_failed",
49259
+ "device.connected",
49260
+ "device.added",
49261
+ "device.converted_to_unmanaged",
49262
+ "device.unmanaged.converted_to_managed",
49263
+ "device.unmanaged.connected",
49264
+ "device.disconnected",
49265
+ "device.unmanaged.disconnected",
49266
+ "device.tampered",
49267
+ "device.low_battery",
49268
+ "device.battery_status_changed",
49269
+ "device.removed",
49270
+ "device.deleted",
49271
+ "device.third_party_integration_detected",
49272
+ "device.third_party_integration_no_longer_detected",
49273
+ "device.salto.privacy_mode_activated",
49274
+ "device.salto.privacy_mode_deactivated",
49275
+ "device.connection_became_flaky",
49276
+ "device.connection_stabilized",
49277
+ "device.error.subscription_required",
49278
+ "device.error.subscription_required.resolved",
49279
+ "device.accessory_keypad_connected",
49280
+ "device.accessory_keypad_disconnected",
49281
+ "noise_sensor.noise_threshold_triggered",
49282
+ "lock.locked",
49283
+ "lock.unlocked",
49284
+ "lock.access_denied",
49285
+ "thermostat.climate_preset_activated",
49286
+ "thermostat.manually_adjusted",
49287
+ "thermostat.temperature_threshold_exceeded",
49288
+ "thermostat.temperature_threshold_no_longer_exceeded",
49289
+ "thermostat.temperature_reached_set_point",
49290
+ "thermostat.temperature_changed",
49291
+ "device.name_changed",
49292
+ "enrollment_automation.deleted",
49293
+ "phone.deactivated"
49294
+ ],
49295
+ type: "string"
49296
+ },
49297
+ event_types: {
49298
+ description: "Types of the events that you want to list.",
49299
+ items: {
49300
+ enum: [
49301
+ "access_code.created",
49302
+ "access_code.changed",
49303
+ "access_code.scheduled_on_device",
49304
+ "access_code.set_on_device",
49305
+ "access_code.removed_from_device",
49306
+ "access_code.delay_in_setting_on_device",
49307
+ "access_code.failed_to_set_on_device",
49308
+ "access_code.deleted",
49309
+ "access_code.delay_in_removing_from_device",
49310
+ "access_code.failed_to_remove_from_device",
49311
+ "access_code.modified_external_to_seam",
49312
+ "access_code.deleted_external_to_seam",
49313
+ "access_code.backup_access_code_pulled",
49314
+ "access_code.unmanaged.converted_to_managed",
49315
+ "access_code.unmanaged.failed_to_convert_to_managed",
49316
+ "access_code.unmanaged.created",
49317
+ "access_code.unmanaged.removed",
49318
+ "access_grant.created",
49319
+ "access_grant.deleted",
49320
+ "access_grant.access_granted_to_all_doors",
49321
+ "access_grant.access_granted_to_door",
49322
+ "access_grant.access_to_door_lost",
49323
+ "access_method.issued",
49324
+ "access_method.revoked",
49325
+ "access_method.card_encoding_required",
49326
+ "access_method.deleted",
49327
+ "access_method.reissued",
49328
+ "acs_system.connected",
49329
+ "acs_system.added",
49330
+ "acs_system.disconnected",
49331
+ "acs_credential.deleted",
49332
+ "acs_credential.issued",
49333
+ "acs_credential.reissued",
49334
+ "acs_credential.invalidated",
49335
+ "acs_user.created",
49336
+ "acs_user.deleted",
49337
+ "acs_encoder.added",
49338
+ "acs_encoder.removed",
49339
+ "acs_access_group.deleted",
49340
+ "acs_entrance.added",
49341
+ "acs_entrance.removed",
49342
+ "client_session.deleted",
49343
+ "connected_account.connected",
49344
+ "connected_account.created",
49345
+ "connected_account.successful_login",
49346
+ "connected_account.disconnected",
49347
+ "connected_account.completed_first_sync",
49348
+ "connected_account.deleted",
49349
+ "connected_account.completed_first_sync_after_reconnection",
49350
+ "action_attempt.lock_door.succeeded",
49351
+ "action_attempt.lock_door.failed",
49352
+ "action_attempt.unlock_door.succeeded",
49353
+ "action_attempt.unlock_door.failed",
49354
+ "connect_webview.login_succeeded",
49355
+ "connect_webview.login_failed",
49356
+ "device.connected",
49357
+ "device.added",
49358
+ "device.converted_to_unmanaged",
49359
+ "device.unmanaged.converted_to_managed",
49360
+ "device.unmanaged.connected",
49361
+ "device.disconnected",
49362
+ "device.unmanaged.disconnected",
49363
+ "device.tampered",
49364
+ "device.low_battery",
49365
+ "device.battery_status_changed",
49366
+ "device.removed",
49367
+ "device.deleted",
49368
+ "device.third_party_integration_detected",
49369
+ "device.third_party_integration_no_longer_detected",
49370
+ "device.salto.privacy_mode_activated",
49371
+ "device.salto.privacy_mode_deactivated",
49372
+ "device.connection_became_flaky",
49373
+ "device.connection_stabilized",
49374
+ "device.error.subscription_required",
49375
+ "device.error.subscription_required.resolved",
49376
+ "device.accessory_keypad_connected",
49377
+ "device.accessory_keypad_disconnected",
49378
+ "noise_sensor.noise_threshold_triggered",
49379
+ "lock.locked",
49380
+ "lock.unlocked",
49381
+ "lock.access_denied",
49382
+ "thermostat.climate_preset_activated",
49383
+ "thermostat.manually_adjusted",
49384
+ "thermostat.temperature_threshold_exceeded",
49385
+ "thermostat.temperature_threshold_no_longer_exceeded",
49386
+ "thermostat.temperature_reached_set_point",
49387
+ "thermostat.temperature_changed",
49388
+ "device.name_changed",
49389
+ "enrollment_automation.deleted",
49390
+ "phone.deactivated"
49391
+ ],
49392
+ type: "string"
49393
+ },
49394
+ type: "array"
49395
+ },
49396
+ limit: {
49397
+ default: 500,
49398
+ description: "Numerical limit on the number of events to return.",
49399
+ format: "float",
49400
+ type: "number"
49401
+ },
49402
+ since: {
49403
+ description: "Timestamp to indicate the beginning generation time for the events that you want to list. You must include `since` or `between`.",
49404
+ type: "string"
49405
+ },
49406
+ space_id: {
49407
+ description: "ID of the space for which you want to list events.",
49408
+ format: "uuid",
49409
+ type: "string"
49410
+ }
49411
+ },
49412
+ required: ["space_id"],
49413
+ type: "object"
49414
+ }
49415
+ }
49416
+ }
49417
+ },
49418
+ responses: {
49419
+ 200: {
49420
+ content: {
49421
+ "application/json": {
49422
+ schema: {
49423
+ properties: {
49424
+ events: {
49425
+ items: { $ref: "#/components/schemas/event" },
49426
+ type: "array"
49427
+ },
49428
+ ok: { type: "boolean" }
49429
+ },
49430
+ required: ["events", "ok"],
49431
+ type: "object"
49432
+ }
49433
+ }
49434
+ },
49435
+ description: "OK"
49436
+ },
49437
+ 400: { description: "Bad Request" },
49438
+ 401: { description: "Unauthorized" }
49439
+ },
49440
+ security: [{ client_session_with_customer: [] }],
49441
+ summary: "/seam/customer/v1/events/list",
49442
+ tags: ["/events"],
49443
+ "x-fern-sdk-group-name": ["seam", "customer", "v1", "events"],
49444
+ "x-fern-sdk-method-name": "list",
49445
+ "x-fern-sdk-return-value": "events",
49446
+ "x-response-key": "events",
49447
+ "x-title": "List Events for Customer Space",
49448
+ "x-undocumented": "Internal endpoint for customer portals."
49449
+ }
49450
+ },
48898
49451
  "/seam/customer/v1/portals/get": {
48899
49452
  get: {
48900
49453
  description: "Retrieves the configuration for a customer portal identified by customer_portal_id.",
@@ -49075,6 +49628,92 @@ var openapi_default = {
49075
49628
  "x-undocumented": "Internal endpoint for customer portals."
49076
49629
  }
49077
49630
  },
49631
+ "/seam/customer/v1/settings/get": {
49632
+ get: {
49633
+ description: "Retrieves the settings for a customer portal workspace.",
49634
+ operationId: "seamCustomerV1SettingsGetGet",
49635
+ responses: {
49636
+ 200: {
49637
+ content: {
49638
+ "application/json": {
49639
+ schema: {
49640
+ properties: {
49641
+ business_vertical: {
49642
+ description: "Business vertical of the customer portal.",
49643
+ enum: [
49644
+ "short_term_rental",
49645
+ "hospitality",
49646
+ "multi_family",
49647
+ "gym_management",
49648
+ "property_tours"
49649
+ ],
49650
+ type: "string"
49651
+ },
49652
+ ok: { type: "boolean" }
49653
+ },
49654
+ required: ["ok"],
49655
+ type: "object"
49656
+ }
49657
+ }
49658
+ },
49659
+ description: "OK"
49660
+ },
49661
+ 400: { description: "Bad Request" },
49662
+ 401: { description: "Unauthorized" }
49663
+ },
49664
+ security: [{ console_session_with_workspace: [] }, { api_key: [] }],
49665
+ summary: "/seam/customer/v1/settings/get",
49666
+ tags: [],
49667
+ "x-fern-sdk-group-name": ["seam", "customer", "v1", "settings"],
49668
+ "x-fern-sdk-method-name": "get",
49669
+ "x-fern-sdk-return-value": "business_vertical",
49670
+ "x-response-key": "business_vertical",
49671
+ "x-title": "Get Customer Portal Settings",
49672
+ "x-undocumented": "Internal endpoint for customer portals."
49673
+ },
49674
+ post: {
49675
+ description: "Retrieves the settings for a customer portal workspace.",
49676
+ operationId: "seamCustomerV1SettingsGetPost",
49677
+ responses: {
49678
+ 200: {
49679
+ content: {
49680
+ "application/json": {
49681
+ schema: {
49682
+ properties: {
49683
+ business_vertical: {
49684
+ description: "Business vertical of the customer portal.",
49685
+ enum: [
49686
+ "short_term_rental",
49687
+ "hospitality",
49688
+ "multi_family",
49689
+ "gym_management",
49690
+ "property_tours"
49691
+ ],
49692
+ type: "string"
49693
+ },
49694
+ ok: { type: "boolean" }
49695
+ },
49696
+ required: ["ok"],
49697
+ type: "object"
49698
+ }
49699
+ }
49700
+ },
49701
+ description: "OK"
49702
+ },
49703
+ 400: { description: "Bad Request" },
49704
+ 401: { description: "Unauthorized" }
49705
+ },
49706
+ security: [{ console_session_with_workspace: [] }, { api_key: [] }],
49707
+ summary: "/seam/customer/v1/settings/get",
49708
+ tags: [],
49709
+ "x-fern-sdk-group-name": ["seam", "customer", "v1", "settings"],
49710
+ "x-fern-sdk-method-name": "get",
49711
+ "x-fern-sdk-return-value": "business_vertical",
49712
+ "x-response-key": "business_vertical",
49713
+ "x-title": "Get Customer Portal Settings",
49714
+ "x-undocumented": "Internal endpoint for customer portals."
49715
+ }
49716
+ },
49078
49717
  "/seam/customer/v1/settings/update": {
49079
49718
  patch: {
49080
49719
  description: "Updates the settings for a customer portal workspace.",
@@ -51148,8 +51787,7 @@ var openapi_default = {
51148
51787
  "x-fern-sdk-method-name": "create",
51149
51788
  "x-fern-sdk-return-value": "thermostat_daily_program",
51150
51789
  "x-response-key": "thermostat_daily_program",
51151
- "x-title": "Create a Thermostat Daily Program",
51152
- "x-undocumented": "Unreleased."
51790
+ "x-title": "Create a Thermostat Daily Program"
51153
51791
  }
51154
51792
  },
51155
51793
  "/thermostats/daily_programs/delete": {
@@ -51195,8 +51833,7 @@ var openapi_default = {
51195
51833
  "x-fern-sdk-group-name": ["thermostats", "daily_programs"],
51196
51834
  "x-fern-sdk-method-name": "delete",
51197
51835
  "x-response-key": null,
51198
- "x-title": "Delete a Thermostat Daily Program",
51199
- "x-undocumented": "Unreleased."
51836
+ "x-title": "Delete a Thermostat Daily Program"
51200
51837
  },
51201
51838
  post: {
51202
51839
  description: "Deletes a thermostat daily program.",
@@ -51245,8 +51882,7 @@ var openapi_default = {
51245
51882
  "x-fern-sdk-group-name": ["thermostats", "daily_programs"],
51246
51883
  "x-fern-sdk-method-name": "delete",
51247
51884
  "x-response-key": null,
51248
- "x-title": "Delete a Thermostat Daily Program",
51249
- "x-undocumented": "Unreleased."
51885
+ "x-title": "Delete a Thermostat Daily Program"
51250
51886
  }
51251
51887
  },
51252
51888
  "/thermostats/daily_programs/update": {
@@ -51328,8 +51964,7 @@ var openapi_default = {
51328
51964
  "x-fern-sdk-method-name": "update",
51329
51965
  "x-fern-sdk-return-value": "action_attempt",
51330
51966
  "x-response-key": "action_attempt",
51331
- "x-title": "Update a Thermostat Daily Program",
51332
- "x-undocumented": "Unreleased."
51967
+ "x-title": "Update a Thermostat Daily Program"
51333
51968
  },
51334
51969
  post: {
51335
51970
  description: "Updates a specified thermostat daily program. The periods that you specify overwrite any existing periods for the daily program.",
@@ -51409,8 +52044,7 @@ var openapi_default = {
51409
52044
  "x-fern-sdk-method-name": "update",
51410
52045
  "x-fern-sdk-return-value": "action_attempt",
51411
52046
  "x-response-key": "action_attempt",
51412
- "x-title": "Update a Thermostat Daily Program",
51413
- "x-undocumented": "Unreleased."
52047
+ "x-title": "Update a Thermostat Daily Program"
51414
52048
  }
51415
52049
  },
51416
52050
  "/thermostats/delete_climate_preset": {
@@ -53916,8 +54550,7 @@ var openapi_default = {
53916
54550
  "x-fern-sdk-method-name": "update_weekly_program",
53917
54551
  "x-fern-sdk-return-value": "action_attempt",
53918
54552
  "x-response-key": "action_attempt",
53919
- "x-title": "Update the Thermostat Weekly Program",
53920
- "x-undocumented": "Unreleased."
54553
+ "x-title": "Update the Thermostat Weekly Program"
53921
54554
  }
53922
54555
  },
53923
54556
  "/unstable_access_grants/create": {