@seamapi/types 1.466.1 → 1.468.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 +716 -22
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +2389 -10
- package/dist/index.cjs +716 -22
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +119 -0
- package/lib/seam/connect/models/devices/capability-properties/index.d.ts +6 -0
- package/lib/seam/connect/models/devices/capability-properties/thermostat.d.ts +6 -0
- package/lib/seam/connect/models/devices/capability-properties/thermostat.js +14 -0
- package/lib/seam/connect/models/devices/capability-properties/thermostat.js.map +1 -1
- package/lib/seam/connect/models/devices/device-provider.d.ts +3 -0
- package/lib/seam/connect/models/devices/device.d.ts +16 -0
- package/lib/seam/connect/models/devices/device.js +1 -0
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +10 -0
- package/lib/seam/connect/openapi.d.ts +367 -0
- package/lib/seam/connect/openapi.js +681 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +1965 -10
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/capability-properties/thermostat.ts +14 -0
- package/src/lib/seam/connect/models/devices/device.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +691 -0
- package/src/lib/seam/connect/route-types.ts +2843 -293
package/dist/index.cjs
CHANGED
|
@@ -515,7 +515,19 @@ var thermostat_capability_properties = zod.z.object({
|
|
|
515
515
|
property_group_key: thermostats
|
|
516
516
|
---
|
|
517
517
|
Current [temperature threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds) set for the thermostat.
|
|
518
|
-
`)
|
|
518
|
+
`),
|
|
519
|
+
thermostat_daily_program_period_precision_minutes: zod.z.number().optional().describe(`
|
|
520
|
+
---
|
|
521
|
+
property_group_key: thermostats
|
|
522
|
+
---
|
|
523
|
+
Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour.
|
|
524
|
+
`),
|
|
525
|
+
max_thermostat_daily_program_periods_per_day: zod.z.number().optional().describe(`
|
|
526
|
+
---
|
|
527
|
+
property_group_key: thermostats
|
|
528
|
+
---
|
|
529
|
+
Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4.
|
|
530
|
+
`)
|
|
519
531
|
}).partial();
|
|
520
532
|
|
|
521
533
|
// src/lib/seam/connect/models/devices/capability-properties/index.ts
|
|
@@ -1147,7 +1159,8 @@ var device_capability_flags = zod.z.object({
|
|
|
1147
1159
|
can_simulate_removal: zod.z.boolean(),
|
|
1148
1160
|
can_simulate_connection: zod.z.boolean(),
|
|
1149
1161
|
can_simulate_disconnection: zod.z.boolean(),
|
|
1150
|
-
can_unlock_with_code: zod.z.boolean()
|
|
1162
|
+
can_unlock_with_code: zod.z.boolean(),
|
|
1163
|
+
can_run_thermostat_programs: zod.z.boolean()
|
|
1151
1164
|
}).partial();
|
|
1152
1165
|
var battery_status = zod.z.enum(["critical", "low", "good", "full"]).describe(`Represents the current status of the battery charge level. Values are \`critical\`, which indicates an extremely low level, suggesting imminent shutdown or an urgent need for charging; \`low\`, which signifies that the battery is under the preferred threshold and should be charged soon; \`good\`, which denotes a satisfactory charge level, adequate for normal use without the immediate need for recharging; and \`full\`, which represents a battery that is fully charged, providing the maximum duration of usage.
|
|
1153
1166
|
`);
|
|
@@ -13521,6 +13534,7 @@ var openapi_default = {
|
|
|
13521
13534
|
can_program_online_access_codes: { type: "boolean" },
|
|
13522
13535
|
can_remotely_lock: { type: "boolean" },
|
|
13523
13536
|
can_remotely_unlock: { type: "boolean" },
|
|
13537
|
+
can_run_thermostat_programs: { type: "boolean" },
|
|
13524
13538
|
can_simulate_connection: { type: "boolean" },
|
|
13525
13539
|
can_simulate_disconnection: { type: "boolean" },
|
|
13526
13540
|
can_simulate_removal: { type: "boolean" },
|
|
@@ -16196,6 +16210,12 @@ var openapi_default = {
|
|
|
16196
16210
|
type: "number",
|
|
16197
16211
|
"x-property-group-key": "thermostats"
|
|
16198
16212
|
},
|
|
16213
|
+
max_thermostat_daily_program_periods_per_day: {
|
|
16214
|
+
description: "Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4.",
|
|
16215
|
+
format: "float",
|
|
16216
|
+
type: "number",
|
|
16217
|
+
"x-property-group-key": "thermostats"
|
|
16218
|
+
},
|
|
16199
16219
|
min_cooling_set_point_celsius: {
|
|
16200
16220
|
description: "Minimum [cooling set point](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points#cooling-set-point) in \xB0C.",
|
|
16201
16221
|
format: "float",
|
|
@@ -16289,6 +16309,12 @@ var openapi_default = {
|
|
|
16289
16309
|
type: "object",
|
|
16290
16310
|
"x-property-group-key": "thermostats"
|
|
16291
16311
|
},
|
|
16312
|
+
thermostat_daily_program_period_precision_minutes: {
|
|
16313
|
+
description: "Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour.",
|
|
16314
|
+
format: "float",
|
|
16315
|
+
type: "number",
|
|
16316
|
+
"x-property-group-key": "thermostats"
|
|
16317
|
+
},
|
|
16292
16318
|
thermostat_daily_programs: {
|
|
16293
16319
|
description: "Configured [daily programs](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-programs) for the thermostat.",
|
|
16294
16320
|
items: {
|
|
@@ -16867,6 +16893,7 @@ var openapi_default = {
|
|
|
16867
16893
|
can_program_online_access_codes: { type: "boolean" },
|
|
16868
16894
|
can_remotely_lock: { type: "boolean" },
|
|
16869
16895
|
can_remotely_unlock: { type: "boolean" },
|
|
16896
|
+
can_run_thermostat_programs: { type: "boolean" },
|
|
16870
16897
|
can_simulate_connection: { type: "boolean" },
|
|
16871
16898
|
can_simulate_disconnection: { type: "boolean" },
|
|
16872
16899
|
can_simulate_removal: { type: "boolean" },
|
|
@@ -26563,6 +26590,7 @@ var openapi_default = {
|
|
|
26563
26590
|
can_program_online_access_codes: { type: "boolean" },
|
|
26564
26591
|
can_remotely_lock: { type: "boolean" },
|
|
26565
26592
|
can_remotely_unlock: { type: "boolean" },
|
|
26593
|
+
can_run_thermostat_programs: { type: "boolean" },
|
|
26566
26594
|
can_simulate_connection: { type: "boolean" },
|
|
26567
26595
|
can_simulate_disconnection: { type: "boolean" },
|
|
26568
26596
|
can_simulate_removal: { type: "boolean" },
|
|
@@ -41865,7 +41893,8 @@ var openapi_default = {
|
|
|
41865
41893
|
"can_simulate_removal",
|
|
41866
41894
|
"can_simulate_connection",
|
|
41867
41895
|
"can_simulate_disconnection",
|
|
41868
|
-
"can_unlock_with_code"
|
|
41896
|
+
"can_unlock_with_code",
|
|
41897
|
+
"can_run_thermostat_programs"
|
|
41869
41898
|
],
|
|
41870
41899
|
type: "string"
|
|
41871
41900
|
},
|
|
@@ -41890,7 +41919,8 @@ var openapi_default = {
|
|
|
41890
41919
|
"can_simulate_removal",
|
|
41891
41920
|
"can_simulate_connection",
|
|
41892
41921
|
"can_simulate_disconnection",
|
|
41893
|
-
"can_unlock_with_code"
|
|
41922
|
+
"can_unlock_with_code",
|
|
41923
|
+
"can_run_thermostat_programs"
|
|
41894
41924
|
],
|
|
41895
41925
|
type: "string"
|
|
41896
41926
|
},
|
|
@@ -42161,7 +42191,8 @@ var openapi_default = {
|
|
|
42161
42191
|
"can_simulate_removal",
|
|
42162
42192
|
"can_simulate_connection",
|
|
42163
42193
|
"can_simulate_disconnection",
|
|
42164
|
-
"can_unlock_with_code"
|
|
42194
|
+
"can_unlock_with_code",
|
|
42195
|
+
"can_run_thermostat_programs"
|
|
42165
42196
|
],
|
|
42166
42197
|
type: "string"
|
|
42167
42198
|
},
|
|
@@ -42182,7 +42213,8 @@ var openapi_default = {
|
|
|
42182
42213
|
"can_simulate_removal",
|
|
42183
42214
|
"can_simulate_connection",
|
|
42184
42215
|
"can_simulate_disconnection",
|
|
42185
|
-
"can_unlock_with_code"
|
|
42216
|
+
"can_unlock_with_code",
|
|
42217
|
+
"can_run_thermostat_programs"
|
|
42186
42218
|
],
|
|
42187
42219
|
type: "string"
|
|
42188
42220
|
},
|
|
@@ -43093,7 +43125,8 @@ var openapi_default = {
|
|
|
43093
43125
|
"can_simulate_removal",
|
|
43094
43126
|
"can_simulate_connection",
|
|
43095
43127
|
"can_simulate_disconnection",
|
|
43096
|
-
"can_unlock_with_code"
|
|
43128
|
+
"can_unlock_with_code",
|
|
43129
|
+
"can_run_thermostat_programs"
|
|
43097
43130
|
],
|
|
43098
43131
|
type: "string"
|
|
43099
43132
|
},
|
|
@@ -43118,7 +43151,8 @@ var openapi_default = {
|
|
|
43118
43151
|
"can_simulate_removal",
|
|
43119
43152
|
"can_simulate_connection",
|
|
43120
43153
|
"can_simulate_disconnection",
|
|
43121
|
-
"can_unlock_with_code"
|
|
43154
|
+
"can_unlock_with_code",
|
|
43155
|
+
"can_run_thermostat_programs"
|
|
43122
43156
|
],
|
|
43123
43157
|
type: "string"
|
|
43124
43158
|
},
|
|
@@ -43386,7 +43420,8 @@ var openapi_default = {
|
|
|
43386
43420
|
"can_simulate_removal",
|
|
43387
43421
|
"can_simulate_connection",
|
|
43388
43422
|
"can_simulate_disconnection",
|
|
43389
|
-
"can_unlock_with_code"
|
|
43423
|
+
"can_unlock_with_code",
|
|
43424
|
+
"can_run_thermostat_programs"
|
|
43390
43425
|
],
|
|
43391
43426
|
type: "string"
|
|
43392
43427
|
},
|
|
@@ -43407,7 +43442,8 @@ var openapi_default = {
|
|
|
43407
43442
|
"can_simulate_removal",
|
|
43408
43443
|
"can_simulate_connection",
|
|
43409
43444
|
"can_simulate_disconnection",
|
|
43410
|
-
"can_unlock_with_code"
|
|
43445
|
+
"can_unlock_with_code",
|
|
43446
|
+
"can_run_thermostat_programs"
|
|
43411
43447
|
],
|
|
43412
43448
|
type: "string"
|
|
43413
43449
|
},
|
|
@@ -45285,7 +45321,8 @@ var openapi_default = {
|
|
|
45285
45321
|
"can_simulate_removal",
|
|
45286
45322
|
"can_simulate_connection",
|
|
45287
45323
|
"can_simulate_disconnection",
|
|
45288
|
-
"can_unlock_with_code"
|
|
45324
|
+
"can_unlock_with_code",
|
|
45325
|
+
"can_run_thermostat_programs"
|
|
45289
45326
|
],
|
|
45290
45327
|
type: "string"
|
|
45291
45328
|
},
|
|
@@ -45310,7 +45347,8 @@ var openapi_default = {
|
|
|
45310
45347
|
"can_simulate_removal",
|
|
45311
45348
|
"can_simulate_connection",
|
|
45312
45349
|
"can_simulate_disconnection",
|
|
45313
|
-
"can_unlock_with_code"
|
|
45350
|
+
"can_unlock_with_code",
|
|
45351
|
+
"can_run_thermostat_programs"
|
|
45314
45352
|
],
|
|
45315
45353
|
type: "string"
|
|
45316
45354
|
},
|
|
@@ -45530,7 +45568,8 @@ var openapi_default = {
|
|
|
45530
45568
|
"can_simulate_removal",
|
|
45531
45569
|
"can_simulate_connection",
|
|
45532
45570
|
"can_simulate_disconnection",
|
|
45533
|
-
"can_unlock_with_code"
|
|
45571
|
+
"can_unlock_with_code",
|
|
45572
|
+
"can_run_thermostat_programs"
|
|
45534
45573
|
],
|
|
45535
45574
|
type: "string"
|
|
45536
45575
|
},
|
|
@@ -45551,7 +45590,8 @@ var openapi_default = {
|
|
|
45551
45590
|
"can_simulate_removal",
|
|
45552
45591
|
"can_simulate_connection",
|
|
45553
45592
|
"can_simulate_disconnection",
|
|
45554
|
-
"can_unlock_with_code"
|
|
45593
|
+
"can_unlock_with_code",
|
|
45594
|
+
"can_run_thermostat_programs"
|
|
45555
45595
|
],
|
|
45556
45596
|
type: "string"
|
|
45557
45597
|
},
|
|
@@ -46061,7 +46101,8 @@ var openapi_default = {
|
|
|
46061
46101
|
"can_simulate_removal",
|
|
46062
46102
|
"can_simulate_connection",
|
|
46063
46103
|
"can_simulate_disconnection",
|
|
46064
|
-
"can_unlock_with_code"
|
|
46104
|
+
"can_unlock_with_code",
|
|
46105
|
+
"can_run_thermostat_programs"
|
|
46065
46106
|
],
|
|
46066
46107
|
type: "string"
|
|
46067
46108
|
},
|
|
@@ -46086,7 +46127,8 @@ var openapi_default = {
|
|
|
46086
46127
|
"can_simulate_removal",
|
|
46087
46128
|
"can_simulate_connection",
|
|
46088
46129
|
"can_simulate_disconnection",
|
|
46089
|
-
"can_unlock_with_code"
|
|
46130
|
+
"can_unlock_with_code",
|
|
46131
|
+
"can_run_thermostat_programs"
|
|
46090
46132
|
],
|
|
46091
46133
|
type: "string"
|
|
46092
46134
|
},
|
|
@@ -46250,7 +46292,8 @@ var openapi_default = {
|
|
|
46250
46292
|
"can_simulate_removal",
|
|
46251
46293
|
"can_simulate_connection",
|
|
46252
46294
|
"can_simulate_disconnection",
|
|
46253
|
-
"can_unlock_with_code"
|
|
46295
|
+
"can_unlock_with_code",
|
|
46296
|
+
"can_run_thermostat_programs"
|
|
46254
46297
|
],
|
|
46255
46298
|
type: "string"
|
|
46256
46299
|
},
|
|
@@ -46271,7 +46314,8 @@ var openapi_default = {
|
|
|
46271
46314
|
"can_simulate_removal",
|
|
46272
46315
|
"can_simulate_connection",
|
|
46273
46316
|
"can_simulate_disconnection",
|
|
46274
|
-
"can_unlock_with_code"
|
|
46317
|
+
"can_unlock_with_code",
|
|
46318
|
+
"can_run_thermostat_programs"
|
|
46275
46319
|
],
|
|
46276
46320
|
type: "string"
|
|
46277
46321
|
},
|
|
@@ -48851,6 +48895,566 @@ var openapi_default = {
|
|
|
48851
48895
|
"x-undocumented": "Internal endpoint for customer portals."
|
|
48852
48896
|
}
|
|
48853
48897
|
},
|
|
48898
|
+
"/seam/customer/v1/events/list": {
|
|
48899
|
+
get: {
|
|
48900
|
+
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.",
|
|
48901
|
+
operationId: "seamCustomerV1EventsListGet",
|
|
48902
|
+
parameters: [
|
|
48903
|
+
{
|
|
48904
|
+
in: "query",
|
|
48905
|
+
name: "space_id",
|
|
48906
|
+
required: true,
|
|
48907
|
+
schema: {
|
|
48908
|
+
description: "ID of the space for which you want to list events.",
|
|
48909
|
+
format: "uuid",
|
|
48910
|
+
type: "string"
|
|
48911
|
+
}
|
|
48912
|
+
},
|
|
48913
|
+
{
|
|
48914
|
+
in: "query",
|
|
48915
|
+
name: "since",
|
|
48916
|
+
required: false,
|
|
48917
|
+
schema: {
|
|
48918
|
+
description: "Timestamp to indicate the beginning generation time for the events that you want to list. You must include `since` or `between`.",
|
|
48919
|
+
type: "string"
|
|
48920
|
+
}
|
|
48921
|
+
},
|
|
48922
|
+
{
|
|
48923
|
+
in: "query",
|
|
48924
|
+
name: "between",
|
|
48925
|
+
required: false,
|
|
48926
|
+
schema: {
|
|
48927
|
+
description: "Lower and upper timestamps to define an exclusive interval containing the events that you want to list. You must include `since` or `between`.",
|
|
48928
|
+
items: {
|
|
48929
|
+
oneOf: [
|
|
48930
|
+
{ type: "string" },
|
|
48931
|
+
{ format: "date-time", type: "string" }
|
|
48932
|
+
]
|
|
48933
|
+
},
|
|
48934
|
+
maxItems: 2,
|
|
48935
|
+
minItems: 2,
|
|
48936
|
+
type: "array"
|
|
48937
|
+
}
|
|
48938
|
+
},
|
|
48939
|
+
{
|
|
48940
|
+
in: "query",
|
|
48941
|
+
name: "event_type",
|
|
48942
|
+
required: false,
|
|
48943
|
+
schema: {
|
|
48944
|
+
description: "Type of the events that you want to list.",
|
|
48945
|
+
enum: [
|
|
48946
|
+
"access_code.created",
|
|
48947
|
+
"access_code.changed",
|
|
48948
|
+
"access_code.scheduled_on_device",
|
|
48949
|
+
"access_code.set_on_device",
|
|
48950
|
+
"access_code.removed_from_device",
|
|
48951
|
+
"access_code.delay_in_setting_on_device",
|
|
48952
|
+
"access_code.failed_to_set_on_device",
|
|
48953
|
+
"access_code.deleted",
|
|
48954
|
+
"access_code.delay_in_removing_from_device",
|
|
48955
|
+
"access_code.failed_to_remove_from_device",
|
|
48956
|
+
"access_code.modified_external_to_seam",
|
|
48957
|
+
"access_code.deleted_external_to_seam",
|
|
48958
|
+
"access_code.backup_access_code_pulled",
|
|
48959
|
+
"access_code.unmanaged.converted_to_managed",
|
|
48960
|
+
"access_code.unmanaged.failed_to_convert_to_managed",
|
|
48961
|
+
"access_code.unmanaged.created",
|
|
48962
|
+
"access_code.unmanaged.removed",
|
|
48963
|
+
"access_grant.created",
|
|
48964
|
+
"access_grant.deleted",
|
|
48965
|
+
"access_grant.access_granted_to_all_doors",
|
|
48966
|
+
"access_grant.access_granted_to_door",
|
|
48967
|
+
"access_grant.access_to_door_lost",
|
|
48968
|
+
"access_method.issued",
|
|
48969
|
+
"access_method.revoked",
|
|
48970
|
+
"access_method.card_encoding_required",
|
|
48971
|
+
"access_method.deleted",
|
|
48972
|
+
"access_method.reissued",
|
|
48973
|
+
"acs_system.connected",
|
|
48974
|
+
"acs_system.added",
|
|
48975
|
+
"acs_system.disconnected",
|
|
48976
|
+
"acs_credential.deleted",
|
|
48977
|
+
"acs_credential.issued",
|
|
48978
|
+
"acs_credential.reissued",
|
|
48979
|
+
"acs_credential.invalidated",
|
|
48980
|
+
"acs_user.created",
|
|
48981
|
+
"acs_user.deleted",
|
|
48982
|
+
"acs_encoder.added",
|
|
48983
|
+
"acs_encoder.removed",
|
|
48984
|
+
"acs_access_group.deleted",
|
|
48985
|
+
"acs_entrance.added",
|
|
48986
|
+
"acs_entrance.removed",
|
|
48987
|
+
"client_session.deleted",
|
|
48988
|
+
"connected_account.connected",
|
|
48989
|
+
"connected_account.created",
|
|
48990
|
+
"connected_account.successful_login",
|
|
48991
|
+
"connected_account.disconnected",
|
|
48992
|
+
"connected_account.completed_first_sync",
|
|
48993
|
+
"connected_account.deleted",
|
|
48994
|
+
"connected_account.completed_first_sync_after_reconnection",
|
|
48995
|
+
"action_attempt.lock_door.succeeded",
|
|
48996
|
+
"action_attempt.lock_door.failed",
|
|
48997
|
+
"action_attempt.unlock_door.succeeded",
|
|
48998
|
+
"action_attempt.unlock_door.failed",
|
|
48999
|
+
"connect_webview.login_succeeded",
|
|
49000
|
+
"connect_webview.login_failed",
|
|
49001
|
+
"device.connected",
|
|
49002
|
+
"device.added",
|
|
49003
|
+
"device.converted_to_unmanaged",
|
|
49004
|
+
"device.unmanaged.converted_to_managed",
|
|
49005
|
+
"device.unmanaged.connected",
|
|
49006
|
+
"device.disconnected",
|
|
49007
|
+
"device.unmanaged.disconnected",
|
|
49008
|
+
"device.tampered",
|
|
49009
|
+
"device.low_battery",
|
|
49010
|
+
"device.battery_status_changed",
|
|
49011
|
+
"device.removed",
|
|
49012
|
+
"device.deleted",
|
|
49013
|
+
"device.third_party_integration_detected",
|
|
49014
|
+
"device.third_party_integration_no_longer_detected",
|
|
49015
|
+
"device.salto.privacy_mode_activated",
|
|
49016
|
+
"device.salto.privacy_mode_deactivated",
|
|
49017
|
+
"device.connection_became_flaky",
|
|
49018
|
+
"device.connection_stabilized",
|
|
49019
|
+
"device.error.subscription_required",
|
|
49020
|
+
"device.error.subscription_required.resolved",
|
|
49021
|
+
"device.accessory_keypad_connected",
|
|
49022
|
+
"device.accessory_keypad_disconnected",
|
|
49023
|
+
"noise_sensor.noise_threshold_triggered",
|
|
49024
|
+
"lock.locked",
|
|
49025
|
+
"lock.unlocked",
|
|
49026
|
+
"lock.access_denied",
|
|
49027
|
+
"thermostat.climate_preset_activated",
|
|
49028
|
+
"thermostat.manually_adjusted",
|
|
49029
|
+
"thermostat.temperature_threshold_exceeded",
|
|
49030
|
+
"thermostat.temperature_threshold_no_longer_exceeded",
|
|
49031
|
+
"thermostat.temperature_reached_set_point",
|
|
49032
|
+
"thermostat.temperature_changed",
|
|
49033
|
+
"device.name_changed",
|
|
49034
|
+
"enrollment_automation.deleted",
|
|
49035
|
+
"phone.deactivated"
|
|
49036
|
+
],
|
|
49037
|
+
type: "string"
|
|
49038
|
+
}
|
|
49039
|
+
},
|
|
49040
|
+
{
|
|
49041
|
+
in: "query",
|
|
49042
|
+
name: "event_types",
|
|
49043
|
+
required: false,
|
|
49044
|
+
schema: {
|
|
49045
|
+
description: "Types of the events that you want to list.",
|
|
49046
|
+
items: {
|
|
49047
|
+
enum: [
|
|
49048
|
+
"access_code.created",
|
|
49049
|
+
"access_code.changed",
|
|
49050
|
+
"access_code.scheduled_on_device",
|
|
49051
|
+
"access_code.set_on_device",
|
|
49052
|
+
"access_code.removed_from_device",
|
|
49053
|
+
"access_code.delay_in_setting_on_device",
|
|
49054
|
+
"access_code.failed_to_set_on_device",
|
|
49055
|
+
"access_code.deleted",
|
|
49056
|
+
"access_code.delay_in_removing_from_device",
|
|
49057
|
+
"access_code.failed_to_remove_from_device",
|
|
49058
|
+
"access_code.modified_external_to_seam",
|
|
49059
|
+
"access_code.deleted_external_to_seam",
|
|
49060
|
+
"access_code.backup_access_code_pulled",
|
|
49061
|
+
"access_code.unmanaged.converted_to_managed",
|
|
49062
|
+
"access_code.unmanaged.failed_to_convert_to_managed",
|
|
49063
|
+
"access_code.unmanaged.created",
|
|
49064
|
+
"access_code.unmanaged.removed",
|
|
49065
|
+
"access_grant.created",
|
|
49066
|
+
"access_grant.deleted",
|
|
49067
|
+
"access_grant.access_granted_to_all_doors",
|
|
49068
|
+
"access_grant.access_granted_to_door",
|
|
49069
|
+
"access_grant.access_to_door_lost",
|
|
49070
|
+
"access_method.issued",
|
|
49071
|
+
"access_method.revoked",
|
|
49072
|
+
"access_method.card_encoding_required",
|
|
49073
|
+
"access_method.deleted",
|
|
49074
|
+
"access_method.reissued",
|
|
49075
|
+
"acs_system.connected",
|
|
49076
|
+
"acs_system.added",
|
|
49077
|
+
"acs_system.disconnected",
|
|
49078
|
+
"acs_credential.deleted",
|
|
49079
|
+
"acs_credential.issued",
|
|
49080
|
+
"acs_credential.reissued",
|
|
49081
|
+
"acs_credential.invalidated",
|
|
49082
|
+
"acs_user.created",
|
|
49083
|
+
"acs_user.deleted",
|
|
49084
|
+
"acs_encoder.added",
|
|
49085
|
+
"acs_encoder.removed",
|
|
49086
|
+
"acs_access_group.deleted",
|
|
49087
|
+
"acs_entrance.added",
|
|
49088
|
+
"acs_entrance.removed",
|
|
49089
|
+
"client_session.deleted",
|
|
49090
|
+
"connected_account.connected",
|
|
49091
|
+
"connected_account.created",
|
|
49092
|
+
"connected_account.successful_login",
|
|
49093
|
+
"connected_account.disconnected",
|
|
49094
|
+
"connected_account.completed_first_sync",
|
|
49095
|
+
"connected_account.deleted",
|
|
49096
|
+
"connected_account.completed_first_sync_after_reconnection",
|
|
49097
|
+
"action_attempt.lock_door.succeeded",
|
|
49098
|
+
"action_attempt.lock_door.failed",
|
|
49099
|
+
"action_attempt.unlock_door.succeeded",
|
|
49100
|
+
"action_attempt.unlock_door.failed",
|
|
49101
|
+
"connect_webview.login_succeeded",
|
|
49102
|
+
"connect_webview.login_failed",
|
|
49103
|
+
"device.connected",
|
|
49104
|
+
"device.added",
|
|
49105
|
+
"device.converted_to_unmanaged",
|
|
49106
|
+
"device.unmanaged.converted_to_managed",
|
|
49107
|
+
"device.unmanaged.connected",
|
|
49108
|
+
"device.disconnected",
|
|
49109
|
+
"device.unmanaged.disconnected",
|
|
49110
|
+
"device.tampered",
|
|
49111
|
+
"device.low_battery",
|
|
49112
|
+
"device.battery_status_changed",
|
|
49113
|
+
"device.removed",
|
|
49114
|
+
"device.deleted",
|
|
49115
|
+
"device.third_party_integration_detected",
|
|
49116
|
+
"device.third_party_integration_no_longer_detected",
|
|
49117
|
+
"device.salto.privacy_mode_activated",
|
|
49118
|
+
"device.salto.privacy_mode_deactivated",
|
|
49119
|
+
"device.connection_became_flaky",
|
|
49120
|
+
"device.connection_stabilized",
|
|
49121
|
+
"device.error.subscription_required",
|
|
49122
|
+
"device.error.subscription_required.resolved",
|
|
49123
|
+
"device.accessory_keypad_connected",
|
|
49124
|
+
"device.accessory_keypad_disconnected",
|
|
49125
|
+
"noise_sensor.noise_threshold_triggered",
|
|
49126
|
+
"lock.locked",
|
|
49127
|
+
"lock.unlocked",
|
|
49128
|
+
"lock.access_denied",
|
|
49129
|
+
"thermostat.climate_preset_activated",
|
|
49130
|
+
"thermostat.manually_adjusted",
|
|
49131
|
+
"thermostat.temperature_threshold_exceeded",
|
|
49132
|
+
"thermostat.temperature_threshold_no_longer_exceeded",
|
|
49133
|
+
"thermostat.temperature_reached_set_point",
|
|
49134
|
+
"thermostat.temperature_changed",
|
|
49135
|
+
"device.name_changed",
|
|
49136
|
+
"enrollment_automation.deleted",
|
|
49137
|
+
"phone.deactivated"
|
|
49138
|
+
],
|
|
49139
|
+
type: "string"
|
|
49140
|
+
},
|
|
49141
|
+
type: "array"
|
|
49142
|
+
}
|
|
49143
|
+
},
|
|
49144
|
+
{
|
|
49145
|
+
in: "query",
|
|
49146
|
+
name: "limit",
|
|
49147
|
+
required: false,
|
|
49148
|
+
schema: {
|
|
49149
|
+
default: 500,
|
|
49150
|
+
description: "Numerical limit on the number of events to return.",
|
|
49151
|
+
format: "float",
|
|
49152
|
+
type: "number"
|
|
49153
|
+
}
|
|
49154
|
+
}
|
|
49155
|
+
],
|
|
49156
|
+
responses: {
|
|
49157
|
+
200: {
|
|
49158
|
+
content: {
|
|
49159
|
+
"application/json": {
|
|
49160
|
+
schema: {
|
|
49161
|
+
properties: {
|
|
49162
|
+
events: {
|
|
49163
|
+
items: { $ref: "#/components/schemas/event" },
|
|
49164
|
+
type: "array"
|
|
49165
|
+
},
|
|
49166
|
+
ok: { type: "boolean" }
|
|
49167
|
+
},
|
|
49168
|
+
required: ["events", "ok"],
|
|
49169
|
+
type: "object"
|
|
49170
|
+
}
|
|
49171
|
+
}
|
|
49172
|
+
},
|
|
49173
|
+
description: "OK"
|
|
49174
|
+
},
|
|
49175
|
+
400: { description: "Bad Request" },
|
|
49176
|
+
401: { description: "Unauthorized" }
|
|
49177
|
+
},
|
|
49178
|
+
security: [{ client_session_with_customer: [] }],
|
|
49179
|
+
summary: "/seam/customer/v1/events/list",
|
|
49180
|
+
tags: ["/events"],
|
|
49181
|
+
"x-fern-sdk-group-name": ["seam", "customer", "v1", "events"],
|
|
49182
|
+
"x-fern-sdk-method-name": "list",
|
|
49183
|
+
"x-fern-sdk-return-value": "events",
|
|
49184
|
+
"x-response-key": "events",
|
|
49185
|
+
"x-title": "List Events for Customer Space",
|
|
49186
|
+
"x-undocumented": "Internal endpoint for customer portals."
|
|
49187
|
+
},
|
|
49188
|
+
post: {
|
|
49189
|
+
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.",
|
|
49190
|
+
operationId: "seamCustomerV1EventsListPost",
|
|
49191
|
+
requestBody: {
|
|
49192
|
+
content: {
|
|
49193
|
+
"application/json": {
|
|
49194
|
+
schema: {
|
|
49195
|
+
properties: {
|
|
49196
|
+
between: {
|
|
49197
|
+
description: "Lower and upper timestamps to define an exclusive interval containing the events that you want to list. You must include `since` or `between`.",
|
|
49198
|
+
items: {
|
|
49199
|
+
oneOf: [
|
|
49200
|
+
{ type: "string" },
|
|
49201
|
+
{ format: "date-time", type: "string" }
|
|
49202
|
+
]
|
|
49203
|
+
},
|
|
49204
|
+
maxItems: 2,
|
|
49205
|
+
minItems: 2,
|
|
49206
|
+
type: "array"
|
|
49207
|
+
},
|
|
49208
|
+
event_type: {
|
|
49209
|
+
description: "Type of the events that you want to list.",
|
|
49210
|
+
enum: [
|
|
49211
|
+
"access_code.created",
|
|
49212
|
+
"access_code.changed",
|
|
49213
|
+
"access_code.scheduled_on_device",
|
|
49214
|
+
"access_code.set_on_device",
|
|
49215
|
+
"access_code.removed_from_device",
|
|
49216
|
+
"access_code.delay_in_setting_on_device",
|
|
49217
|
+
"access_code.failed_to_set_on_device",
|
|
49218
|
+
"access_code.deleted",
|
|
49219
|
+
"access_code.delay_in_removing_from_device",
|
|
49220
|
+
"access_code.failed_to_remove_from_device",
|
|
49221
|
+
"access_code.modified_external_to_seam",
|
|
49222
|
+
"access_code.deleted_external_to_seam",
|
|
49223
|
+
"access_code.backup_access_code_pulled",
|
|
49224
|
+
"access_code.unmanaged.converted_to_managed",
|
|
49225
|
+
"access_code.unmanaged.failed_to_convert_to_managed",
|
|
49226
|
+
"access_code.unmanaged.created",
|
|
49227
|
+
"access_code.unmanaged.removed",
|
|
49228
|
+
"access_grant.created",
|
|
49229
|
+
"access_grant.deleted",
|
|
49230
|
+
"access_grant.access_granted_to_all_doors",
|
|
49231
|
+
"access_grant.access_granted_to_door",
|
|
49232
|
+
"access_grant.access_to_door_lost",
|
|
49233
|
+
"access_method.issued",
|
|
49234
|
+
"access_method.revoked",
|
|
49235
|
+
"access_method.card_encoding_required",
|
|
49236
|
+
"access_method.deleted",
|
|
49237
|
+
"access_method.reissued",
|
|
49238
|
+
"acs_system.connected",
|
|
49239
|
+
"acs_system.added",
|
|
49240
|
+
"acs_system.disconnected",
|
|
49241
|
+
"acs_credential.deleted",
|
|
49242
|
+
"acs_credential.issued",
|
|
49243
|
+
"acs_credential.reissued",
|
|
49244
|
+
"acs_credential.invalidated",
|
|
49245
|
+
"acs_user.created",
|
|
49246
|
+
"acs_user.deleted",
|
|
49247
|
+
"acs_encoder.added",
|
|
49248
|
+
"acs_encoder.removed",
|
|
49249
|
+
"acs_access_group.deleted",
|
|
49250
|
+
"acs_entrance.added",
|
|
49251
|
+
"acs_entrance.removed",
|
|
49252
|
+
"client_session.deleted",
|
|
49253
|
+
"connected_account.connected",
|
|
49254
|
+
"connected_account.created",
|
|
49255
|
+
"connected_account.successful_login",
|
|
49256
|
+
"connected_account.disconnected",
|
|
49257
|
+
"connected_account.completed_first_sync",
|
|
49258
|
+
"connected_account.deleted",
|
|
49259
|
+
"connected_account.completed_first_sync_after_reconnection",
|
|
49260
|
+
"action_attempt.lock_door.succeeded",
|
|
49261
|
+
"action_attempt.lock_door.failed",
|
|
49262
|
+
"action_attempt.unlock_door.succeeded",
|
|
49263
|
+
"action_attempt.unlock_door.failed",
|
|
49264
|
+
"connect_webview.login_succeeded",
|
|
49265
|
+
"connect_webview.login_failed",
|
|
49266
|
+
"device.connected",
|
|
49267
|
+
"device.added",
|
|
49268
|
+
"device.converted_to_unmanaged",
|
|
49269
|
+
"device.unmanaged.converted_to_managed",
|
|
49270
|
+
"device.unmanaged.connected",
|
|
49271
|
+
"device.disconnected",
|
|
49272
|
+
"device.unmanaged.disconnected",
|
|
49273
|
+
"device.tampered",
|
|
49274
|
+
"device.low_battery",
|
|
49275
|
+
"device.battery_status_changed",
|
|
49276
|
+
"device.removed",
|
|
49277
|
+
"device.deleted",
|
|
49278
|
+
"device.third_party_integration_detected",
|
|
49279
|
+
"device.third_party_integration_no_longer_detected",
|
|
49280
|
+
"device.salto.privacy_mode_activated",
|
|
49281
|
+
"device.salto.privacy_mode_deactivated",
|
|
49282
|
+
"device.connection_became_flaky",
|
|
49283
|
+
"device.connection_stabilized",
|
|
49284
|
+
"device.error.subscription_required",
|
|
49285
|
+
"device.error.subscription_required.resolved",
|
|
49286
|
+
"device.accessory_keypad_connected",
|
|
49287
|
+
"device.accessory_keypad_disconnected",
|
|
49288
|
+
"noise_sensor.noise_threshold_triggered",
|
|
49289
|
+
"lock.locked",
|
|
49290
|
+
"lock.unlocked",
|
|
49291
|
+
"lock.access_denied",
|
|
49292
|
+
"thermostat.climate_preset_activated",
|
|
49293
|
+
"thermostat.manually_adjusted",
|
|
49294
|
+
"thermostat.temperature_threshold_exceeded",
|
|
49295
|
+
"thermostat.temperature_threshold_no_longer_exceeded",
|
|
49296
|
+
"thermostat.temperature_reached_set_point",
|
|
49297
|
+
"thermostat.temperature_changed",
|
|
49298
|
+
"device.name_changed",
|
|
49299
|
+
"enrollment_automation.deleted",
|
|
49300
|
+
"phone.deactivated"
|
|
49301
|
+
],
|
|
49302
|
+
type: "string"
|
|
49303
|
+
},
|
|
49304
|
+
event_types: {
|
|
49305
|
+
description: "Types of the events that you want to list.",
|
|
49306
|
+
items: {
|
|
49307
|
+
enum: [
|
|
49308
|
+
"access_code.created",
|
|
49309
|
+
"access_code.changed",
|
|
49310
|
+
"access_code.scheduled_on_device",
|
|
49311
|
+
"access_code.set_on_device",
|
|
49312
|
+
"access_code.removed_from_device",
|
|
49313
|
+
"access_code.delay_in_setting_on_device",
|
|
49314
|
+
"access_code.failed_to_set_on_device",
|
|
49315
|
+
"access_code.deleted",
|
|
49316
|
+
"access_code.delay_in_removing_from_device",
|
|
49317
|
+
"access_code.failed_to_remove_from_device",
|
|
49318
|
+
"access_code.modified_external_to_seam",
|
|
49319
|
+
"access_code.deleted_external_to_seam",
|
|
49320
|
+
"access_code.backup_access_code_pulled",
|
|
49321
|
+
"access_code.unmanaged.converted_to_managed",
|
|
49322
|
+
"access_code.unmanaged.failed_to_convert_to_managed",
|
|
49323
|
+
"access_code.unmanaged.created",
|
|
49324
|
+
"access_code.unmanaged.removed",
|
|
49325
|
+
"access_grant.created",
|
|
49326
|
+
"access_grant.deleted",
|
|
49327
|
+
"access_grant.access_granted_to_all_doors",
|
|
49328
|
+
"access_grant.access_granted_to_door",
|
|
49329
|
+
"access_grant.access_to_door_lost",
|
|
49330
|
+
"access_method.issued",
|
|
49331
|
+
"access_method.revoked",
|
|
49332
|
+
"access_method.card_encoding_required",
|
|
49333
|
+
"access_method.deleted",
|
|
49334
|
+
"access_method.reissued",
|
|
49335
|
+
"acs_system.connected",
|
|
49336
|
+
"acs_system.added",
|
|
49337
|
+
"acs_system.disconnected",
|
|
49338
|
+
"acs_credential.deleted",
|
|
49339
|
+
"acs_credential.issued",
|
|
49340
|
+
"acs_credential.reissued",
|
|
49341
|
+
"acs_credential.invalidated",
|
|
49342
|
+
"acs_user.created",
|
|
49343
|
+
"acs_user.deleted",
|
|
49344
|
+
"acs_encoder.added",
|
|
49345
|
+
"acs_encoder.removed",
|
|
49346
|
+
"acs_access_group.deleted",
|
|
49347
|
+
"acs_entrance.added",
|
|
49348
|
+
"acs_entrance.removed",
|
|
49349
|
+
"client_session.deleted",
|
|
49350
|
+
"connected_account.connected",
|
|
49351
|
+
"connected_account.created",
|
|
49352
|
+
"connected_account.successful_login",
|
|
49353
|
+
"connected_account.disconnected",
|
|
49354
|
+
"connected_account.completed_first_sync",
|
|
49355
|
+
"connected_account.deleted",
|
|
49356
|
+
"connected_account.completed_first_sync_after_reconnection",
|
|
49357
|
+
"action_attempt.lock_door.succeeded",
|
|
49358
|
+
"action_attempt.lock_door.failed",
|
|
49359
|
+
"action_attempt.unlock_door.succeeded",
|
|
49360
|
+
"action_attempt.unlock_door.failed",
|
|
49361
|
+
"connect_webview.login_succeeded",
|
|
49362
|
+
"connect_webview.login_failed",
|
|
49363
|
+
"device.connected",
|
|
49364
|
+
"device.added",
|
|
49365
|
+
"device.converted_to_unmanaged",
|
|
49366
|
+
"device.unmanaged.converted_to_managed",
|
|
49367
|
+
"device.unmanaged.connected",
|
|
49368
|
+
"device.disconnected",
|
|
49369
|
+
"device.unmanaged.disconnected",
|
|
49370
|
+
"device.tampered",
|
|
49371
|
+
"device.low_battery",
|
|
49372
|
+
"device.battery_status_changed",
|
|
49373
|
+
"device.removed",
|
|
49374
|
+
"device.deleted",
|
|
49375
|
+
"device.third_party_integration_detected",
|
|
49376
|
+
"device.third_party_integration_no_longer_detected",
|
|
49377
|
+
"device.salto.privacy_mode_activated",
|
|
49378
|
+
"device.salto.privacy_mode_deactivated",
|
|
49379
|
+
"device.connection_became_flaky",
|
|
49380
|
+
"device.connection_stabilized",
|
|
49381
|
+
"device.error.subscription_required",
|
|
49382
|
+
"device.error.subscription_required.resolved",
|
|
49383
|
+
"device.accessory_keypad_connected",
|
|
49384
|
+
"device.accessory_keypad_disconnected",
|
|
49385
|
+
"noise_sensor.noise_threshold_triggered",
|
|
49386
|
+
"lock.locked",
|
|
49387
|
+
"lock.unlocked",
|
|
49388
|
+
"lock.access_denied",
|
|
49389
|
+
"thermostat.climate_preset_activated",
|
|
49390
|
+
"thermostat.manually_adjusted",
|
|
49391
|
+
"thermostat.temperature_threshold_exceeded",
|
|
49392
|
+
"thermostat.temperature_threshold_no_longer_exceeded",
|
|
49393
|
+
"thermostat.temperature_reached_set_point",
|
|
49394
|
+
"thermostat.temperature_changed",
|
|
49395
|
+
"device.name_changed",
|
|
49396
|
+
"enrollment_automation.deleted",
|
|
49397
|
+
"phone.deactivated"
|
|
49398
|
+
],
|
|
49399
|
+
type: "string"
|
|
49400
|
+
},
|
|
49401
|
+
type: "array"
|
|
49402
|
+
},
|
|
49403
|
+
limit: {
|
|
49404
|
+
default: 500,
|
|
49405
|
+
description: "Numerical limit on the number of events to return.",
|
|
49406
|
+
format: "float",
|
|
49407
|
+
type: "number"
|
|
49408
|
+
},
|
|
49409
|
+
since: {
|
|
49410
|
+
description: "Timestamp to indicate the beginning generation time for the events that you want to list. You must include `since` or `between`.",
|
|
49411
|
+
type: "string"
|
|
49412
|
+
},
|
|
49413
|
+
space_id: {
|
|
49414
|
+
description: "ID of the space for which you want to list events.",
|
|
49415
|
+
format: "uuid",
|
|
49416
|
+
type: "string"
|
|
49417
|
+
}
|
|
49418
|
+
},
|
|
49419
|
+
required: ["space_id"],
|
|
49420
|
+
type: "object"
|
|
49421
|
+
}
|
|
49422
|
+
}
|
|
49423
|
+
}
|
|
49424
|
+
},
|
|
49425
|
+
responses: {
|
|
49426
|
+
200: {
|
|
49427
|
+
content: {
|
|
49428
|
+
"application/json": {
|
|
49429
|
+
schema: {
|
|
49430
|
+
properties: {
|
|
49431
|
+
events: {
|
|
49432
|
+
items: { $ref: "#/components/schemas/event" },
|
|
49433
|
+
type: "array"
|
|
49434
|
+
},
|
|
49435
|
+
ok: { type: "boolean" }
|
|
49436
|
+
},
|
|
49437
|
+
required: ["events", "ok"],
|
|
49438
|
+
type: "object"
|
|
49439
|
+
}
|
|
49440
|
+
}
|
|
49441
|
+
},
|
|
49442
|
+
description: "OK"
|
|
49443
|
+
},
|
|
49444
|
+
400: { description: "Bad Request" },
|
|
49445
|
+
401: { description: "Unauthorized" }
|
|
49446
|
+
},
|
|
49447
|
+
security: [{ client_session_with_customer: [] }],
|
|
49448
|
+
summary: "/seam/customer/v1/events/list",
|
|
49449
|
+
tags: ["/events"],
|
|
49450
|
+
"x-fern-sdk-group-name": ["seam", "customer", "v1", "events"],
|
|
49451
|
+
"x-fern-sdk-method-name": "list",
|
|
49452
|
+
"x-fern-sdk-return-value": "events",
|
|
49453
|
+
"x-response-key": "events",
|
|
49454
|
+
"x-title": "List Events for Customer Space",
|
|
49455
|
+
"x-undocumented": "Internal endpoint for customer portals."
|
|
49456
|
+
}
|
|
49457
|
+
},
|
|
48854
49458
|
"/seam/customer/v1/portals/get": {
|
|
48855
49459
|
get: {
|
|
48856
49460
|
description: "Retrieves the configuration for a customer portal identified by customer_portal_id.",
|
|
@@ -49031,6 +49635,92 @@ var openapi_default = {
|
|
|
49031
49635
|
"x-undocumented": "Internal endpoint for customer portals."
|
|
49032
49636
|
}
|
|
49033
49637
|
},
|
|
49638
|
+
"/seam/customer/v1/settings/get": {
|
|
49639
|
+
get: {
|
|
49640
|
+
description: "Retrieves the settings for a customer portal workspace.",
|
|
49641
|
+
operationId: "seamCustomerV1SettingsGetGet",
|
|
49642
|
+
responses: {
|
|
49643
|
+
200: {
|
|
49644
|
+
content: {
|
|
49645
|
+
"application/json": {
|
|
49646
|
+
schema: {
|
|
49647
|
+
properties: {
|
|
49648
|
+
business_vertical: {
|
|
49649
|
+
description: "Business vertical of the customer portal.",
|
|
49650
|
+
enum: [
|
|
49651
|
+
"short_term_rental",
|
|
49652
|
+
"hospitality",
|
|
49653
|
+
"multi_family",
|
|
49654
|
+
"gym_management",
|
|
49655
|
+
"property_tours"
|
|
49656
|
+
],
|
|
49657
|
+
type: "string"
|
|
49658
|
+
},
|
|
49659
|
+
ok: { type: "boolean" }
|
|
49660
|
+
},
|
|
49661
|
+
required: ["ok"],
|
|
49662
|
+
type: "object"
|
|
49663
|
+
}
|
|
49664
|
+
}
|
|
49665
|
+
},
|
|
49666
|
+
description: "OK"
|
|
49667
|
+
},
|
|
49668
|
+
400: { description: "Bad Request" },
|
|
49669
|
+
401: { description: "Unauthorized" }
|
|
49670
|
+
},
|
|
49671
|
+
security: [{ console_session_with_workspace: [] }, { api_key: [] }],
|
|
49672
|
+
summary: "/seam/customer/v1/settings/get",
|
|
49673
|
+
tags: [],
|
|
49674
|
+
"x-fern-sdk-group-name": ["seam", "customer", "v1", "settings"],
|
|
49675
|
+
"x-fern-sdk-method-name": "get",
|
|
49676
|
+
"x-fern-sdk-return-value": "business_vertical",
|
|
49677
|
+
"x-response-key": "business_vertical",
|
|
49678
|
+
"x-title": "Get Customer Portal Settings",
|
|
49679
|
+
"x-undocumented": "Internal endpoint for customer portals."
|
|
49680
|
+
},
|
|
49681
|
+
post: {
|
|
49682
|
+
description: "Retrieves the settings for a customer portal workspace.",
|
|
49683
|
+
operationId: "seamCustomerV1SettingsGetPost",
|
|
49684
|
+
responses: {
|
|
49685
|
+
200: {
|
|
49686
|
+
content: {
|
|
49687
|
+
"application/json": {
|
|
49688
|
+
schema: {
|
|
49689
|
+
properties: {
|
|
49690
|
+
business_vertical: {
|
|
49691
|
+
description: "Business vertical of the customer portal.",
|
|
49692
|
+
enum: [
|
|
49693
|
+
"short_term_rental",
|
|
49694
|
+
"hospitality",
|
|
49695
|
+
"multi_family",
|
|
49696
|
+
"gym_management",
|
|
49697
|
+
"property_tours"
|
|
49698
|
+
],
|
|
49699
|
+
type: "string"
|
|
49700
|
+
},
|
|
49701
|
+
ok: { type: "boolean" }
|
|
49702
|
+
},
|
|
49703
|
+
required: ["ok"],
|
|
49704
|
+
type: "object"
|
|
49705
|
+
}
|
|
49706
|
+
}
|
|
49707
|
+
},
|
|
49708
|
+
description: "OK"
|
|
49709
|
+
},
|
|
49710
|
+
400: { description: "Bad Request" },
|
|
49711
|
+
401: { description: "Unauthorized" }
|
|
49712
|
+
},
|
|
49713
|
+
security: [{ console_session_with_workspace: [] }, { api_key: [] }],
|
|
49714
|
+
summary: "/seam/customer/v1/settings/get",
|
|
49715
|
+
tags: [],
|
|
49716
|
+
"x-fern-sdk-group-name": ["seam", "customer", "v1", "settings"],
|
|
49717
|
+
"x-fern-sdk-method-name": "get",
|
|
49718
|
+
"x-fern-sdk-return-value": "business_vertical",
|
|
49719
|
+
"x-response-key": "business_vertical",
|
|
49720
|
+
"x-title": "Get Customer Portal Settings",
|
|
49721
|
+
"x-undocumented": "Internal endpoint for customer portals."
|
|
49722
|
+
}
|
|
49723
|
+
},
|
|
49034
49724
|
"/seam/customer/v1/settings/update": {
|
|
49035
49725
|
patch: {
|
|
49036
49726
|
description: "Updates the settings for a customer portal workspace.",
|
|
@@ -51915,7 +52605,8 @@ var openapi_default = {
|
|
|
51915
52605
|
"can_simulate_removal",
|
|
51916
52606
|
"can_simulate_connection",
|
|
51917
52607
|
"can_simulate_disconnection",
|
|
51918
|
-
"can_unlock_with_code"
|
|
52608
|
+
"can_unlock_with_code",
|
|
52609
|
+
"can_run_thermostat_programs"
|
|
51919
52610
|
],
|
|
51920
52611
|
type: "string"
|
|
51921
52612
|
},
|
|
@@ -51940,7 +52631,8 @@ var openapi_default = {
|
|
|
51940
52631
|
"can_simulate_removal",
|
|
51941
52632
|
"can_simulate_connection",
|
|
51942
52633
|
"can_simulate_disconnection",
|
|
51943
|
-
"can_unlock_with_code"
|
|
52634
|
+
"can_unlock_with_code",
|
|
52635
|
+
"can_run_thermostat_programs"
|
|
51944
52636
|
],
|
|
51945
52637
|
type: "string"
|
|
51946
52638
|
},
|
|
@@ -52118,7 +52810,8 @@ var openapi_default = {
|
|
|
52118
52810
|
"can_simulate_removal",
|
|
52119
52811
|
"can_simulate_connection",
|
|
52120
52812
|
"can_simulate_disconnection",
|
|
52121
|
-
"can_unlock_with_code"
|
|
52813
|
+
"can_unlock_with_code",
|
|
52814
|
+
"can_run_thermostat_programs"
|
|
52122
52815
|
],
|
|
52123
52816
|
type: "string"
|
|
52124
52817
|
},
|
|
@@ -52139,7 +52832,8 @@ var openapi_default = {
|
|
|
52139
52832
|
"can_simulate_removal",
|
|
52140
52833
|
"can_simulate_connection",
|
|
52141
52834
|
"can_simulate_disconnection",
|
|
52142
|
-
"can_unlock_with_code"
|
|
52835
|
+
"can_unlock_with_code",
|
|
52836
|
+
"can_run_thermostat_programs"
|
|
52143
52837
|
],
|
|
52144
52838
|
type: "string"
|
|
52145
52839
|
},
|