@seamapi/http 1.35.0 → 1.36.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/README.md +12 -0
- package/dist/connect.cjs +1331 -20
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +207 -17
- package/lib/seam/connect/routes/access-codes/access-codes.d.ts +2 -2
- package/lib/seam/connect/routes/access-codes/access-codes.js +2 -2
- package/lib/seam/connect/routes/access-codes/access-codes.js.map +1 -1
- package/lib/seam/connect/routes/access-grants/access-grants.d.ts +4 -0
- package/lib/seam/connect/routes/access-grants/access-grants.js +8 -0
- package/lib/seam/connect/routes/access-grants/access-grants.js.map +1 -1
- package/lib/seam/connect/routes/acs/credentials/credentials.d.ts +2 -2
- package/lib/seam/connect/routes/acs/credentials/credentials.js +2 -2
- package/lib/seam/connect/routes/acs/credentials/credentials.js.map +1 -1
- package/lib/seam/connect/routes/acs/encoders/encoders.d.ts +2 -2
- package/lib/seam/connect/routes/acs/encoders/encoders.js +2 -2
- package/lib/seam/connect/routes/acs/encoders/encoders.js.map +1 -1
- package/lib/seam/connect/routes/acs/users/users.d.ts +2 -2
- package/lib/seam/connect/routes/acs/users/users.js +2 -2
- package/lib/seam/connect/routes/acs/users/users.js.map +1 -1
- package/lib/seam/connect/routes/client-sessions/client-sessions.d.ts +2 -2
- package/lib/seam/connect/routes/client-sessions/client-sessions.js +2 -2
- package/lib/seam/connect/routes/client-sessions/client-sessions.js.map +1 -1
- package/lib/seam/connect/routes/connected-accounts/connected-accounts.d.ts +2 -2
- package/lib/seam/connect/routes/connected-accounts/connected-accounts.js +2 -2
- package/lib/seam/connect/routes/connected-accounts/connected-accounts.js.map +1 -1
- package/lib/seam/connect/routes/devices/simulate/simulate.d.ts +2 -2
- package/lib/seam/connect/routes/devices/simulate/simulate.js +2 -2
- package/lib/seam/connect/routes/devices/simulate/simulate.js.map +1 -1
- package/lib/seam/connect/routes/index.d.ts +1 -0
- package/lib/seam/connect/routes/index.js +1 -0
- package/lib/seam/connect/routes/index.js.map +1 -1
- package/lib/seam/connect/routes/phones/simulate/simulate.d.ts +2 -2
- package/lib/seam/connect/routes/phones/simulate/simulate.js +2 -2
- package/lib/seam/connect/routes/phones/simulate/simulate.js.map +1 -1
- package/lib/seam/connect/routes/seam-http-endpoints.d.ts +224 -0
- package/lib/seam/connect/routes/seam-http-endpoints.js +1310 -0
- package/lib/seam/connect/routes/seam-http-endpoints.js.map +1 -0
- package/lib/seam/connect/routes/thermostats/thermostats.d.ts +2 -2
- package/lib/seam/connect/routes/thermostats/thermostats.js +2 -2
- package/lib/seam/connect/routes/thermostats/thermostats.js.map +1 -1
- package/lib/seam/connect/routes/user-identities/user-identities.d.ts +2 -2
- package/lib/seam/connect/routes/user-identities/user-identities.js +2 -2
- package/lib/seam/connect/routes/user-identities/user-identities.js.map +1 -1
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/package.json +4 -4
- package/src/lib/seam/connect/routes/access-codes/access-codes.ts +3 -3
- package/src/lib/seam/connect/routes/access-grants/access-grants.ts +17 -0
- package/src/lib/seam/connect/routes/acs/credentials/credentials.ts +9 -4
- package/src/lib/seam/connect/routes/acs/encoders/encoders.ts +8 -4
- package/src/lib/seam/connect/routes/acs/users/users.ts +3 -3
- package/src/lib/seam/connect/routes/client-sessions/client-sessions.ts +3 -5
- package/src/lib/seam/connect/routes/connected-accounts/connected-accounts.ts +8 -4
- package/src/lib/seam/connect/routes/devices/simulate/simulate.ts +5 -3
- package/src/lib/seam/connect/routes/index.ts +1 -0
- package/src/lib/seam/connect/routes/phones/simulate/simulate.ts +3 -3
- package/src/lib/seam/connect/routes/seam-http-endpoints.ts +1942 -0
- package/src/lib/seam/connect/routes/thermostats/thermostats.ts +3 -3
- package/src/lib/seam/connect/routes/user-identities/user-identities.ts +8 -4
- package/src/lib/version.ts +1 -1
|
@@ -0,0 +1,224 @@
|
|
|
1
|
+
import { type Client } from '../../../../lib/seam/connect/client.js';
|
|
2
|
+
import { type SeamHttpFromPublishableKeyOptions, type SeamHttpOptions, type SeamHttpOptionsWithApiKey, type SeamHttpOptionsWithClient, type SeamHttpOptionsWithClientSessionToken, type SeamHttpOptionsWithConsoleSessionToken, type SeamHttpOptionsWithPersonalAccessToken, type SeamHttpRequestOptions } from '../../../../lib/seam/connect/options.js';
|
|
3
|
+
import type { SeamHttpRequest } from '../../../../lib/seam/connect/seam-http-request.js';
|
|
4
|
+
import { SeamPaginator } from '../../../../lib/seam/connect/seam-paginator.js';
|
|
5
|
+
import { SeamHttpAccessCodes } from './access-codes/index.js';
|
|
6
|
+
import { SeamHttpAccessCodesSimulate } from './access-codes/simulate/index.js';
|
|
7
|
+
import { SeamHttpAccessCodesUnmanaged } from './access-codes/unmanaged/index.js';
|
|
8
|
+
import { SeamHttpAccessGrants } from './access-grants/index.js';
|
|
9
|
+
import { SeamHttpAccessMethods } from './access-methods/index.js';
|
|
10
|
+
import { SeamHttpAcsAccessGroups } from './acs/access-groups/index.js';
|
|
11
|
+
import { SeamHttpAcsCredentials } from './acs/credentials/index.js';
|
|
12
|
+
import { SeamHttpAcsEncoders } from './acs/encoders/index.js';
|
|
13
|
+
import { SeamHttpAcsEncodersSimulate } from './acs/encoders/simulate/index.js';
|
|
14
|
+
import { SeamHttpAcsEntrances } from './acs/entrances/index.js';
|
|
15
|
+
import { SeamHttpAcsSystems } from './acs/systems/index.js';
|
|
16
|
+
import { SeamHttpAcsUsers } from './acs/users/index.js';
|
|
17
|
+
import { SeamHttpActionAttempts } from './action-attempts/index.js';
|
|
18
|
+
import { SeamHttpClientSessions } from './client-sessions/index.js';
|
|
19
|
+
import { SeamHttpConnectWebviews } from './connect-webviews/index.js';
|
|
20
|
+
import { SeamHttpConnectedAccounts } from './connected-accounts/index.js';
|
|
21
|
+
import { SeamHttpDevices } from './devices/index.js';
|
|
22
|
+
import { SeamHttpDevicesSimulate } from './devices/simulate/index.js';
|
|
23
|
+
import { SeamHttpDevicesUnmanaged } from './devices/unmanaged/index.js';
|
|
24
|
+
import { SeamHttpEvents } from './events/index.js';
|
|
25
|
+
import { SeamHttpLocks } from './locks/index.js';
|
|
26
|
+
import { SeamHttpNoiseSensors } from './noise-sensors/index.js';
|
|
27
|
+
import { SeamHttpNoiseSensorsNoiseThresholds } from './noise-sensors/noise-thresholds/index.js';
|
|
28
|
+
import { SeamHttpNoiseSensorsSimulate } from './noise-sensors/simulate/index.js';
|
|
29
|
+
import { SeamHttpPhones } from './phones/index.js';
|
|
30
|
+
import { SeamHttpPhonesSimulate } from './phones/simulate/index.js';
|
|
31
|
+
import { SeamHttpSpaces } from './spaces/index.js';
|
|
32
|
+
import { SeamHttpThermostatsDailyPrograms } from './thermostats/daily-programs/index.js';
|
|
33
|
+
import { SeamHttpThermostats } from './thermostats/index.js';
|
|
34
|
+
import { SeamHttpThermostatsSchedules } from './thermostats/schedules/index.js';
|
|
35
|
+
import { SeamHttpThermostatsSimulate } from './thermostats/simulate/index.js';
|
|
36
|
+
import { SeamHttpUserIdentitiesEnrollmentAutomations } from './user-identities/enrollment-automations/index.js';
|
|
37
|
+
import { SeamHttpUserIdentities } from './user-identities/index.js';
|
|
38
|
+
import { SeamHttpWebhooks } from './webhooks/index.js';
|
|
39
|
+
import { SeamHttpWorkspaces } from './workspaces/index.js';
|
|
40
|
+
export declare class SeamHttpEndpoints {
|
|
41
|
+
client: Client;
|
|
42
|
+
readonly defaults: Required<SeamHttpRequestOptions>;
|
|
43
|
+
readonly ltsVersion = "1.0.0";
|
|
44
|
+
static ltsVersion: string;
|
|
45
|
+
constructor(apiKeyOrOptions?: string | SeamHttpOptions);
|
|
46
|
+
static fromClient(client: SeamHttpOptionsWithClient['client'], options?: Omit<SeamHttpOptionsWithClient, 'client'>): SeamHttpEndpoints;
|
|
47
|
+
static fromApiKey(apiKey: SeamHttpOptionsWithApiKey['apiKey'], options?: Omit<SeamHttpOptionsWithApiKey, 'apiKey'>): SeamHttpEndpoints;
|
|
48
|
+
static fromClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken'], options?: Omit<SeamHttpOptionsWithClientSessionToken, 'clientSessionToken'>): SeamHttpEndpoints;
|
|
49
|
+
static fromPublishableKey(publishableKey: string, userIdentifierKey: string, options?: SeamHttpFromPublishableKeyOptions): Promise<SeamHttpEndpoints>;
|
|
50
|
+
static fromConsoleSessionToken(consoleSessionToken: SeamHttpOptionsWithConsoleSessionToken['consoleSessionToken'], workspaceId: SeamHttpOptionsWithConsoleSessionToken['workspaceId'], options?: Omit<SeamHttpOptionsWithConsoleSessionToken, 'consoleSessionToken' | 'workspaceId'>): SeamHttpEndpoints;
|
|
51
|
+
static fromPersonalAccessToken(personalAccessToken: SeamHttpOptionsWithPersonalAccessToken['personalAccessToken'], workspaceId: SeamHttpOptionsWithPersonalAccessToken['workspaceId'], options?: Omit<SeamHttpOptionsWithPersonalAccessToken, 'personalAccessToken' | 'workspaceId'>): SeamHttpEndpoints;
|
|
52
|
+
createPaginator<const TResponse, const TResponseKey extends keyof TResponse>(request: SeamHttpRequest<TResponse, TResponseKey>): SeamPaginator<TResponse, TResponseKey>;
|
|
53
|
+
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
54
|
+
get ['/access_codes/create'](): SeamHttpAccessCodes['create'];
|
|
55
|
+
get ['/access_codes/create_multiple'](): SeamHttpAccessCodes['createMultiple'];
|
|
56
|
+
get ['/access_codes/delete'](): SeamHttpAccessCodes['delete'];
|
|
57
|
+
get ['/access_codes/generate_code'](): SeamHttpAccessCodes['generateCode'];
|
|
58
|
+
get ['/access_codes/get'](): SeamHttpAccessCodes['get'];
|
|
59
|
+
get ['/access_codes/list'](): SeamHttpAccessCodes['list'];
|
|
60
|
+
get ['/access_codes/pull_backup_access_code'](): SeamHttpAccessCodes['pullBackupAccessCode'];
|
|
61
|
+
get ['/access_codes/report_device_constraints'](): SeamHttpAccessCodes['reportDeviceConstraints'];
|
|
62
|
+
get ['/access_codes/update'](): SeamHttpAccessCodes['update'];
|
|
63
|
+
get ['/access_codes/update_multiple'](): SeamHttpAccessCodes['updateMultiple'];
|
|
64
|
+
get ['/access_codes/simulate/create_unmanaged_access_code'](): SeamHttpAccessCodesSimulate['createUnmanagedAccessCode'];
|
|
65
|
+
get ['/access_codes/unmanaged/convert_to_managed'](): SeamHttpAccessCodesUnmanaged['convertToManaged'];
|
|
66
|
+
get ['/access_codes/unmanaged/delete'](): SeamHttpAccessCodesUnmanaged['delete'];
|
|
67
|
+
get ['/access_codes/unmanaged/get'](): SeamHttpAccessCodesUnmanaged['get'];
|
|
68
|
+
get ['/access_codes/unmanaged/list'](): SeamHttpAccessCodesUnmanaged['list'];
|
|
69
|
+
get ['/access_codes/unmanaged/update'](): SeamHttpAccessCodesUnmanaged['update'];
|
|
70
|
+
get ['/access_grants/create'](): SeamHttpAccessGrants['create'];
|
|
71
|
+
get ['/access_grants/delete'](): SeamHttpAccessGrants['delete'];
|
|
72
|
+
get ['/access_grants/get'](): SeamHttpAccessGrants['get'];
|
|
73
|
+
get ['/access_grants/list'](): SeamHttpAccessGrants['list'];
|
|
74
|
+
get ['/access_grants/update'](): SeamHttpAccessGrants['update'];
|
|
75
|
+
get ['/access_methods/delete'](): SeamHttpAccessMethods['delete'];
|
|
76
|
+
get ['/access_methods/get'](): SeamHttpAccessMethods['get'];
|
|
77
|
+
get ['/access_methods/list'](): SeamHttpAccessMethods['list'];
|
|
78
|
+
get ['/acs/access_groups/add_user'](): SeamHttpAcsAccessGroups['addUser'];
|
|
79
|
+
get ['/acs/access_groups/get'](): SeamHttpAcsAccessGroups['get'];
|
|
80
|
+
get ['/acs/access_groups/list'](): SeamHttpAcsAccessGroups['list'];
|
|
81
|
+
get ['/acs/access_groups/list_accessible_entrances'](): SeamHttpAcsAccessGroups['listAccessibleEntrances'];
|
|
82
|
+
get ['/acs/access_groups/list_users'](): SeamHttpAcsAccessGroups['listUsers'];
|
|
83
|
+
get ['/acs/access_groups/remove_user'](): SeamHttpAcsAccessGroups['removeUser'];
|
|
84
|
+
get ['/acs/credentials/assign'](): SeamHttpAcsCredentials['assign'];
|
|
85
|
+
get ['/acs/credentials/create'](): SeamHttpAcsCredentials['create'];
|
|
86
|
+
get ['/acs/credentials/delete'](): SeamHttpAcsCredentials['delete'];
|
|
87
|
+
get ['/acs/credentials/get'](): SeamHttpAcsCredentials['get'];
|
|
88
|
+
get ['/acs/credentials/list'](): SeamHttpAcsCredentials['list'];
|
|
89
|
+
get ['/acs/credentials/list_accessible_entrances'](): SeamHttpAcsCredentials['listAccessibleEntrances'];
|
|
90
|
+
get ['/acs/credentials/unassign'](): SeamHttpAcsCredentials['unassign'];
|
|
91
|
+
get ['/acs/credentials/update'](): SeamHttpAcsCredentials['update'];
|
|
92
|
+
get ['/acs/encoders/encode_access_method'](): SeamHttpAcsEncoders['encodeAccessMethod'];
|
|
93
|
+
get ['/acs/encoders/encode_credential'](): SeamHttpAcsEncoders['encodeCredential'];
|
|
94
|
+
get ['/acs/encoders/get'](): SeamHttpAcsEncoders['get'];
|
|
95
|
+
get ['/acs/encoders/list'](): SeamHttpAcsEncoders['list'];
|
|
96
|
+
get ['/acs/encoders/scan_credential'](): SeamHttpAcsEncoders['scanCredential'];
|
|
97
|
+
get ['/acs/encoders/simulate/next_credential_encode_will_fail'](): SeamHttpAcsEncodersSimulate['nextCredentialEncodeWillFail'];
|
|
98
|
+
get ['/acs/encoders/simulate/next_credential_encode_will_succeed'](): SeamHttpAcsEncodersSimulate['nextCredentialEncodeWillSucceed'];
|
|
99
|
+
get ['/acs/encoders/simulate/next_credential_scan_will_fail'](): SeamHttpAcsEncodersSimulate['nextCredentialScanWillFail'];
|
|
100
|
+
get ['/acs/encoders/simulate/next_credential_scan_will_succeed'](): SeamHttpAcsEncodersSimulate['nextCredentialScanWillSucceed'];
|
|
101
|
+
get ['/acs/entrances/get'](): SeamHttpAcsEntrances['get'];
|
|
102
|
+
get ['/acs/entrances/grant_access'](): SeamHttpAcsEntrances['grantAccess'];
|
|
103
|
+
get ['/acs/entrances/list'](): SeamHttpAcsEntrances['list'];
|
|
104
|
+
get ['/acs/entrances/list_credentials_with_access'](): SeamHttpAcsEntrances['listCredentialsWithAccess'];
|
|
105
|
+
get ['/acs/systems/get'](): SeamHttpAcsSystems['get'];
|
|
106
|
+
get ['/acs/systems/list'](): SeamHttpAcsSystems['list'];
|
|
107
|
+
get ['/acs/systems/list_compatible_credential_manager_acs_systems'](): SeamHttpAcsSystems['listCompatibleCredentialManagerAcsSystems'];
|
|
108
|
+
get ['/acs/users/add_to_access_group'](): SeamHttpAcsUsers['addToAccessGroup'];
|
|
109
|
+
get ['/acs/users/create'](): SeamHttpAcsUsers['create'];
|
|
110
|
+
get ['/acs/users/delete'](): SeamHttpAcsUsers['delete'];
|
|
111
|
+
get ['/acs/users/get'](): SeamHttpAcsUsers['get'];
|
|
112
|
+
get ['/acs/users/list'](): SeamHttpAcsUsers['list'];
|
|
113
|
+
get ['/acs/users/list_accessible_entrances'](): SeamHttpAcsUsers['listAccessibleEntrances'];
|
|
114
|
+
get ['/acs/users/remove_from_access_group'](): SeamHttpAcsUsers['removeFromAccessGroup'];
|
|
115
|
+
get ['/acs/users/revoke_access_to_all_entrances'](): SeamHttpAcsUsers['revokeAccessToAllEntrances'];
|
|
116
|
+
get ['/acs/users/suspend'](): SeamHttpAcsUsers['suspend'];
|
|
117
|
+
get ['/acs/users/unsuspend'](): SeamHttpAcsUsers['unsuspend'];
|
|
118
|
+
get ['/acs/users/update'](): SeamHttpAcsUsers['update'];
|
|
119
|
+
get ['/action_attempts/get'](): SeamHttpActionAttempts['get'];
|
|
120
|
+
get ['/action_attempts/list'](): SeamHttpActionAttempts['list'];
|
|
121
|
+
get ['/client_sessions/create'](): SeamHttpClientSessions['create'];
|
|
122
|
+
get ['/client_sessions/delete'](): SeamHttpClientSessions['delete'];
|
|
123
|
+
get ['/client_sessions/get'](): SeamHttpClientSessions['get'];
|
|
124
|
+
get ['/client_sessions/get_or_create'](): SeamHttpClientSessions['getOrCreate'];
|
|
125
|
+
get ['/client_sessions/grant_access'](): SeamHttpClientSessions['grantAccess'];
|
|
126
|
+
get ['/client_sessions/list'](): SeamHttpClientSessions['list'];
|
|
127
|
+
get ['/client_sessions/revoke'](): SeamHttpClientSessions['revoke'];
|
|
128
|
+
get ['/connect_webviews/create'](): SeamHttpConnectWebviews['create'];
|
|
129
|
+
get ['/connect_webviews/delete'](): SeamHttpConnectWebviews['delete'];
|
|
130
|
+
get ['/connect_webviews/get'](): SeamHttpConnectWebviews['get'];
|
|
131
|
+
get ['/connect_webviews/list'](): SeamHttpConnectWebviews['list'];
|
|
132
|
+
get ['/connected_accounts/delete'](): SeamHttpConnectedAccounts['delete'];
|
|
133
|
+
get ['/connected_accounts/get'](): SeamHttpConnectedAccounts['get'];
|
|
134
|
+
get ['/connected_accounts/list'](): SeamHttpConnectedAccounts['list'];
|
|
135
|
+
get ['/connected_accounts/sync'](): SeamHttpConnectedAccounts['sync'];
|
|
136
|
+
get ['/connected_accounts/update'](): SeamHttpConnectedAccounts['update'];
|
|
137
|
+
get ['/devices/get'](): SeamHttpDevices['get'];
|
|
138
|
+
get ['/devices/list'](): SeamHttpDevices['list'];
|
|
139
|
+
get ['/devices/list_device_providers'](): SeamHttpDevices['listDeviceProviders'];
|
|
140
|
+
get ['/devices/update'](): SeamHttpDevices['update'];
|
|
141
|
+
get ['/devices/simulate/connect'](): SeamHttpDevicesSimulate['connect'];
|
|
142
|
+
get ['/devices/simulate/disconnect'](): SeamHttpDevicesSimulate['disconnect'];
|
|
143
|
+
get ['/devices/simulate/remove'](): SeamHttpDevicesSimulate['remove'];
|
|
144
|
+
get ['/devices/unmanaged/get'](): SeamHttpDevicesUnmanaged['get'];
|
|
145
|
+
get ['/devices/unmanaged/list'](): SeamHttpDevicesUnmanaged['list'];
|
|
146
|
+
get ['/devices/unmanaged/update'](): SeamHttpDevicesUnmanaged['update'];
|
|
147
|
+
get ['/events/get'](): SeamHttpEvents['get'];
|
|
148
|
+
get ['/events/list'](): SeamHttpEvents['list'];
|
|
149
|
+
get ['/locks/get'](): SeamHttpLocks['get'];
|
|
150
|
+
get ['/locks/list'](): SeamHttpLocks['list'];
|
|
151
|
+
get ['/locks/lock_door'](): SeamHttpLocks['lockDoor'];
|
|
152
|
+
get ['/locks/unlock_door'](): SeamHttpLocks['unlockDoor'];
|
|
153
|
+
get ['/noise_sensors/list'](): SeamHttpNoiseSensors['list'];
|
|
154
|
+
get ['/noise_sensors/noise_thresholds/create'](): SeamHttpNoiseSensorsNoiseThresholds['create'];
|
|
155
|
+
get ['/noise_sensors/noise_thresholds/delete'](): SeamHttpNoiseSensorsNoiseThresholds['delete'];
|
|
156
|
+
get ['/noise_sensors/noise_thresholds/get'](): SeamHttpNoiseSensorsNoiseThresholds['get'];
|
|
157
|
+
get ['/noise_sensors/noise_thresholds/list'](): SeamHttpNoiseSensorsNoiseThresholds['list'];
|
|
158
|
+
get ['/noise_sensors/noise_thresholds/update'](): SeamHttpNoiseSensorsNoiseThresholds['update'];
|
|
159
|
+
get ['/noise_sensors/simulate/trigger_noise_threshold'](): SeamHttpNoiseSensorsSimulate['triggerNoiseThreshold'];
|
|
160
|
+
get ['/phones/deactivate'](): SeamHttpPhones['deactivate'];
|
|
161
|
+
get ['/phones/get'](): SeamHttpPhones['get'];
|
|
162
|
+
get ['/phones/list'](): SeamHttpPhones['list'];
|
|
163
|
+
get ['/phones/simulate/create_sandbox_phone'](): SeamHttpPhonesSimulate['createSandboxPhone'];
|
|
164
|
+
get ['/spaces/add_acs_entrances'](): SeamHttpSpaces['addAcsEntrances'];
|
|
165
|
+
get ['/spaces/add_devices'](): SeamHttpSpaces['addDevices'];
|
|
166
|
+
get ['/spaces/create'](): SeamHttpSpaces['create'];
|
|
167
|
+
get ['/spaces/delete'](): SeamHttpSpaces['delete'];
|
|
168
|
+
get ['/spaces/get'](): SeamHttpSpaces['get'];
|
|
169
|
+
get ['/spaces/list'](): SeamHttpSpaces['list'];
|
|
170
|
+
get ['/spaces/remove_acs_entrances'](): SeamHttpSpaces['removeAcsEntrances'];
|
|
171
|
+
get ['/spaces/remove_devices'](): SeamHttpSpaces['removeDevices'];
|
|
172
|
+
get ['/spaces/update'](): SeamHttpSpaces['update'];
|
|
173
|
+
get ['/thermostats/activate_climate_preset'](): SeamHttpThermostats['activateClimatePreset'];
|
|
174
|
+
get ['/thermostats/cool'](): SeamHttpThermostats['cool'];
|
|
175
|
+
get ['/thermostats/create_climate_preset'](): SeamHttpThermostats['createClimatePreset'];
|
|
176
|
+
get ['/thermostats/delete_climate_preset'](): SeamHttpThermostats['deleteClimatePreset'];
|
|
177
|
+
get ['/thermostats/heat'](): SeamHttpThermostats['heat'];
|
|
178
|
+
get ['/thermostats/heat_cool'](): SeamHttpThermostats['heatCool'];
|
|
179
|
+
get ['/thermostats/list'](): SeamHttpThermostats['list'];
|
|
180
|
+
get ['/thermostats/off'](): SeamHttpThermostats['off'];
|
|
181
|
+
get ['/thermostats/set_fallback_climate_preset'](): SeamHttpThermostats['setFallbackClimatePreset'];
|
|
182
|
+
get ['/thermostats/set_fan_mode'](): SeamHttpThermostats['setFanMode'];
|
|
183
|
+
get ['/thermostats/set_hvac_mode'](): SeamHttpThermostats['setHvacMode'];
|
|
184
|
+
get ['/thermostats/set_temperature_threshold'](): SeamHttpThermostats['setTemperatureThreshold'];
|
|
185
|
+
get ['/thermostats/update_climate_preset'](): SeamHttpThermostats['updateClimatePreset'];
|
|
186
|
+
get ['/thermostats/update_weekly_program'](): SeamHttpThermostats['updateWeeklyProgram'];
|
|
187
|
+
get ['/thermostats/daily_programs/create'](): SeamHttpThermostatsDailyPrograms['create'];
|
|
188
|
+
get ['/thermostats/daily_programs/delete'](): SeamHttpThermostatsDailyPrograms['delete'];
|
|
189
|
+
get ['/thermostats/daily_programs/update'](): SeamHttpThermostatsDailyPrograms['update'];
|
|
190
|
+
get ['/thermostats/schedules/create'](): SeamHttpThermostatsSchedules['create'];
|
|
191
|
+
get ['/thermostats/schedules/delete'](): SeamHttpThermostatsSchedules['delete'];
|
|
192
|
+
get ['/thermostats/schedules/get'](): SeamHttpThermostatsSchedules['get'];
|
|
193
|
+
get ['/thermostats/schedules/list'](): SeamHttpThermostatsSchedules['list'];
|
|
194
|
+
get ['/thermostats/schedules/update'](): SeamHttpThermostatsSchedules['update'];
|
|
195
|
+
get ['/thermostats/simulate/hvac_mode_adjusted'](): SeamHttpThermostatsSimulate['hvacModeAdjusted'];
|
|
196
|
+
get ['/thermostats/simulate/temperature_reached'](): SeamHttpThermostatsSimulate['temperatureReached'];
|
|
197
|
+
get ['/user_identities/add_acs_user'](): SeamHttpUserIdentities['addAcsUser'];
|
|
198
|
+
get ['/user_identities/create'](): SeamHttpUserIdentities['create'];
|
|
199
|
+
get ['/user_identities/delete'](): SeamHttpUserIdentities['delete'];
|
|
200
|
+
get ['/user_identities/generate_instant_key'](): SeamHttpUserIdentities['generateInstantKey'];
|
|
201
|
+
get ['/user_identities/get'](): SeamHttpUserIdentities['get'];
|
|
202
|
+
get ['/user_identities/grant_access_to_device'](): SeamHttpUserIdentities['grantAccessToDevice'];
|
|
203
|
+
get ['/user_identities/list'](): SeamHttpUserIdentities['list'];
|
|
204
|
+
get ['/user_identities/list_accessible_devices'](): SeamHttpUserIdentities['listAccessibleDevices'];
|
|
205
|
+
get ['/user_identities/list_acs_systems'](): SeamHttpUserIdentities['listAcsSystems'];
|
|
206
|
+
get ['/user_identities/list_acs_users'](): SeamHttpUserIdentities['listAcsUsers'];
|
|
207
|
+
get ['/user_identities/remove_acs_user'](): SeamHttpUserIdentities['removeAcsUser'];
|
|
208
|
+
get ['/user_identities/revoke_access_to_device'](): SeamHttpUserIdentities['revokeAccessToDevice'];
|
|
209
|
+
get ['/user_identities/update'](): SeamHttpUserIdentities['update'];
|
|
210
|
+
get ['/user_identities/enrollment_automations/delete'](): SeamHttpUserIdentitiesEnrollmentAutomations['delete'];
|
|
211
|
+
get ['/user_identities/enrollment_automations/get'](): SeamHttpUserIdentitiesEnrollmentAutomations['get'];
|
|
212
|
+
get ['/user_identities/enrollment_automations/launch'](): SeamHttpUserIdentitiesEnrollmentAutomations['launch'];
|
|
213
|
+
get ['/user_identities/enrollment_automations/list'](): SeamHttpUserIdentitiesEnrollmentAutomations['list'];
|
|
214
|
+
get ['/webhooks/create'](): SeamHttpWebhooks['create'];
|
|
215
|
+
get ['/webhooks/delete'](): SeamHttpWebhooks['delete'];
|
|
216
|
+
get ['/webhooks/get'](): SeamHttpWebhooks['get'];
|
|
217
|
+
get ['/webhooks/list'](): SeamHttpWebhooks['list'];
|
|
218
|
+
get ['/webhooks/update'](): SeamHttpWebhooks['update'];
|
|
219
|
+
get ['/workspaces/create'](): SeamHttpWorkspaces['create'];
|
|
220
|
+
get ['/workspaces/get'](): SeamHttpWorkspaces['get'];
|
|
221
|
+
get ['/workspaces/list'](): SeamHttpWorkspaces['list'];
|
|
222
|
+
get ['/workspaces/reset_sandbox'](): SeamHttpWorkspaces['resetSandbox'];
|
|
223
|
+
get ['/workspaces/update'](): SeamHttpWorkspaces['update'];
|
|
224
|
+
}
|