@seamapi/http 1.32.0 → 1.34.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 +637 -210
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +537 -85
- package/lib/seam/connect/resolve-action-attempt.d.ts +488 -52
- package/lib/seam/connect/routes/access-codes.d.ts +4 -0
- package/lib/seam/connect/routes/access-codes.js +8 -0
- package/lib/seam/connect/routes/access-codes.js.map +1 -1
- package/lib/seam/connect/routes/access-grants.d.ts +35 -0
- package/lib/seam/connect/routes/access-grants.js +116 -0
- package/lib/seam/connect/routes/access-grants.js.map +1 -0
- package/lib/seam/connect/routes/{networks.d.ts → access-methods.d.ts} +19 -15
- package/lib/seam/connect/routes/{bridges.js → access-methods.js} +20 -12
- package/lib/seam/connect/routes/access-methods.js.map +1 -0
- package/lib/seam/connect/routes/acs-encoders.d.ts +4 -0
- package/lib/seam/connect/routes/acs-encoders.js +9 -0
- package/lib/seam/connect/routes/acs-encoders.js.map +1 -1
- package/lib/seam/connect/routes/connected-accounts.d.ts +4 -0
- package/lib/seam/connect/routes/connected-accounts.js +8 -0
- package/lib/seam/connect/routes/connected-accounts.js.map +1 -1
- package/lib/seam/connect/routes/index.d.ts +5 -2
- package/lib/seam/connect/routes/index.js +5 -2
- package/lib/seam/connect/routes/index.js.map +1 -1
- package/lib/seam/connect/routes/spaces.d.ts +55 -0
- package/lib/seam/connect/routes/spaces.js +156 -0
- package/lib/seam/connect/routes/spaces.js.map +1 -0
- package/lib/seam/connect/routes/thermostats-daily-programs.d.ts +31 -0
- package/lib/seam/connect/routes/thermostats-daily-programs.js +109 -0
- package/lib/seam/connect/routes/thermostats-daily-programs.js.map +1 -0
- package/lib/seam/connect/routes/thermostats.d.ts +6 -0
- package/lib/seam/connect/routes/thermostats.js +13 -0
- package/lib/seam/connect/routes/thermostats.js.map +1 -1
- package/lib/seam/connect/routes/{bridges.d.ts → unstable-partner.d.ts} +8 -18
- package/lib/seam/connect/routes/{networks.js → unstable-partner.js} +8 -25
- package/lib/seam/connect/routes/unstable-partner.js.map +1 -0
- package/lib/seam/connect/routes/workspaces.d.ts +4 -0
- package/lib/seam/connect/routes/workspaces.js +8 -0
- package/lib/seam/connect/routes/workspaces.js.map +1 -1
- package/lib/seam/connect/seam-http.d.ts +4 -2
- package/lib/seam/connect/seam-http.js +10 -4
- package/lib/seam/connect/seam-http.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.ts +20 -0
- package/src/lib/seam/connect/routes/access-grants.ts +237 -0
- package/src/lib/seam/connect/routes/{networks.ts → access-methods.ts} +47 -29
- package/src/lib/seam/connect/routes/acs-encoders.ts +25 -0
- package/src/lib/seam/connect/routes/connected-accounts.ts +18 -0
- package/src/lib/seam/connect/routes/index.ts +5 -2
- package/src/lib/seam/connect/routes/spaces.ts +329 -0
- package/src/lib/seam/connect/routes/thermostats-daily-programs.ts +234 -0
- package/src/lib/seam/connect/routes/thermostats.ts +33 -0
- package/src/lib/seam/connect/routes/{bridges.ts → unstable-partner.ts} +14 -53
- package/src/lib/seam/connect/routes/workspaces.ts +17 -0
- package/src/lib/seam/connect/seam-http.ts +15 -5
- package/src/lib/version.ts +1 -1
- package/lib/seam/connect/routes/bridges.js.map +0 -1
- package/lib/seam/connect/routes/networks.js.map +0 -1
package/dist/connect.d.cts
CHANGED
|
@@ -143,6 +143,7 @@ declare class SeamHttpAccessCodes {
|
|
|
143
143
|
get(body?: AccessCodesGetParams): SeamHttpRequest<AccessCodesGetResponse, 'access_code'>;
|
|
144
144
|
list(body?: AccessCodesListParams): SeamHttpRequest<AccessCodesListResponse, 'access_codes'>;
|
|
145
145
|
pullBackupAccessCode(body?: AccessCodesPullBackupAccessCodeBody): SeamHttpRequest<AccessCodesPullBackupAccessCodeResponse, 'access_code'>;
|
|
146
|
+
reportDeviceConstraints(body?: AccessCodesReportDeviceConstraintsBody): SeamHttpRequest<void, undefined>;
|
|
146
147
|
update(body?: AccessCodesUpdateBody): SeamHttpRequest<void, undefined>;
|
|
147
148
|
updateMultiple(body?: AccessCodesUpdateMultipleBody): SeamHttpRequest<void, undefined>;
|
|
148
149
|
}
|
|
@@ -167,6 +168,9 @@ type AccessCodesListOptions = never;
|
|
|
167
168
|
type AccessCodesPullBackupAccessCodeBody = RouteRequestBody<'/access_codes/pull_backup_access_code'>;
|
|
168
169
|
type AccessCodesPullBackupAccessCodeResponse = SetNonNullable<Required<RouteResponse<'/access_codes/pull_backup_access_code'>>>;
|
|
169
170
|
type AccessCodesPullBackupAccessCodeOptions = never;
|
|
171
|
+
type AccessCodesReportDeviceConstraintsBody = RouteRequestBody<'/access_codes/report_device_constraints'>;
|
|
172
|
+
type AccessCodesReportDeviceConstraintsResponse = SetNonNullable<Required<RouteResponse<'/access_codes/report_device_constraints'>>>;
|
|
173
|
+
type AccessCodesReportDeviceConstraintsOptions = never;
|
|
170
174
|
type AccessCodesUpdateBody = RouteRequestBody<'/access_codes/update'>;
|
|
171
175
|
type AccessCodesUpdateResponse = SetNonNullable<Required<RouteResponse<'/access_codes/update'>>>;
|
|
172
176
|
type AccessCodesUpdateOptions = never;
|
|
@@ -174,6 +178,62 @@ type AccessCodesUpdateMultipleBody = RouteRequestBody<'/access_codes/update_mult
|
|
|
174
178
|
type AccessCodesUpdateMultipleResponse = SetNonNullable<Required<RouteResponse<'/access_codes/update_multiple'>>>;
|
|
175
179
|
type AccessCodesUpdateMultipleOptions = never;
|
|
176
180
|
|
|
181
|
+
declare class SeamHttpAccessGrants {
|
|
182
|
+
client: Client;
|
|
183
|
+
readonly defaults: Required<SeamHttpRequestOptions>;
|
|
184
|
+
constructor(apiKeyOrOptions?: string | SeamHttpOptions);
|
|
185
|
+
static fromClient(client: SeamHttpOptionsWithClient['client'], options?: Omit<SeamHttpOptionsWithClient, 'client'>): SeamHttpAccessGrants;
|
|
186
|
+
static fromApiKey(apiKey: SeamHttpOptionsWithApiKey['apiKey'], options?: Omit<SeamHttpOptionsWithApiKey, 'apiKey'>): SeamHttpAccessGrants;
|
|
187
|
+
static fromClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken'], options?: Omit<SeamHttpOptionsWithClientSessionToken, 'clientSessionToken'>): SeamHttpAccessGrants;
|
|
188
|
+
static fromPublishableKey(publishableKey: string, userIdentifierKey: string, options?: SeamHttpFromPublishableKeyOptions): Promise<SeamHttpAccessGrants>;
|
|
189
|
+
static fromConsoleSessionToken(consoleSessionToken: SeamHttpOptionsWithConsoleSessionToken['consoleSessionToken'], workspaceId: SeamHttpOptionsWithConsoleSessionToken['workspaceId'], options?: Omit<SeamHttpOptionsWithConsoleSessionToken, 'consoleSessionToken' | 'workspaceId'>): SeamHttpAccessGrants;
|
|
190
|
+
static fromPersonalAccessToken(personalAccessToken: SeamHttpOptionsWithPersonalAccessToken['personalAccessToken'], workspaceId: SeamHttpOptionsWithPersonalAccessToken['workspaceId'], options?: Omit<SeamHttpOptionsWithPersonalAccessToken, 'personalAccessToken' | 'workspaceId'>): SeamHttpAccessGrants;
|
|
191
|
+
createPaginator<const TResponse, const TResponseKey extends keyof TResponse>(request: SeamHttpRequest<TResponse, TResponseKey>): SeamPaginator<TResponse, TResponseKey>;
|
|
192
|
+
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
193
|
+
create(body?: AccessGrantsCreateBody): SeamHttpRequest<AccessGrantsCreateResponse, 'access_grant'>;
|
|
194
|
+
delete(body?: AccessGrantsDeleteParams): SeamHttpRequest<void, undefined>;
|
|
195
|
+
get(body?: AccessGrantsGetParams): SeamHttpRequest<AccessGrantsGetResponse, 'access_grant'>;
|
|
196
|
+
list(body?: AccessGrantsListParams): SeamHttpRequest<AccessGrantsListResponse, 'access_grants'>;
|
|
197
|
+
}
|
|
198
|
+
type AccessGrantsCreateBody = RouteRequestBody<'/access_grants/create'>;
|
|
199
|
+
type AccessGrantsCreateResponse = SetNonNullable<Required<RouteResponse<'/access_grants/create'>>>;
|
|
200
|
+
type AccessGrantsCreateOptions = never;
|
|
201
|
+
type AccessGrantsDeleteParams = RouteRequestBody<'/access_grants/delete'>;
|
|
202
|
+
type AccessGrantsDeleteResponse = SetNonNullable<Required<RouteResponse<'/access_grants/delete'>>>;
|
|
203
|
+
type AccessGrantsDeleteOptions = never;
|
|
204
|
+
type AccessGrantsGetParams = RouteRequestBody<'/access_grants/get'>;
|
|
205
|
+
type AccessGrantsGetResponse = SetNonNullable<Required<RouteResponse<'/access_grants/get'>>>;
|
|
206
|
+
type AccessGrantsGetOptions = never;
|
|
207
|
+
type AccessGrantsListParams = RouteRequestBody<'/access_grants/list'>;
|
|
208
|
+
type AccessGrantsListResponse = SetNonNullable<Required<RouteResponse<'/access_grants/list'>>>;
|
|
209
|
+
type AccessGrantsListOptions = never;
|
|
210
|
+
|
|
211
|
+
declare class SeamHttpAccessMethods {
|
|
212
|
+
client: Client;
|
|
213
|
+
readonly defaults: Required<SeamHttpRequestOptions>;
|
|
214
|
+
constructor(apiKeyOrOptions?: string | SeamHttpOptions);
|
|
215
|
+
static fromClient(client: SeamHttpOptionsWithClient['client'], options?: Omit<SeamHttpOptionsWithClient, 'client'>): SeamHttpAccessMethods;
|
|
216
|
+
static fromApiKey(apiKey: SeamHttpOptionsWithApiKey['apiKey'], options?: Omit<SeamHttpOptionsWithApiKey, 'apiKey'>): SeamHttpAccessMethods;
|
|
217
|
+
static fromClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken'], options?: Omit<SeamHttpOptionsWithClientSessionToken, 'clientSessionToken'>): SeamHttpAccessMethods;
|
|
218
|
+
static fromPublishableKey(publishableKey: string, userIdentifierKey: string, options?: SeamHttpFromPublishableKeyOptions): Promise<SeamHttpAccessMethods>;
|
|
219
|
+
static fromConsoleSessionToken(consoleSessionToken: SeamHttpOptionsWithConsoleSessionToken['consoleSessionToken'], workspaceId: SeamHttpOptionsWithConsoleSessionToken['workspaceId'], options?: Omit<SeamHttpOptionsWithConsoleSessionToken, 'consoleSessionToken' | 'workspaceId'>): SeamHttpAccessMethods;
|
|
220
|
+
static fromPersonalAccessToken(personalAccessToken: SeamHttpOptionsWithPersonalAccessToken['personalAccessToken'], workspaceId: SeamHttpOptionsWithPersonalAccessToken['workspaceId'], options?: Omit<SeamHttpOptionsWithPersonalAccessToken, 'personalAccessToken' | 'workspaceId'>): SeamHttpAccessMethods;
|
|
221
|
+
createPaginator<const TResponse, const TResponseKey extends keyof TResponse>(request: SeamHttpRequest<TResponse, TResponseKey>): SeamPaginator<TResponse, TResponseKey>;
|
|
222
|
+
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
223
|
+
delete(body?: AccessMethodsDeleteParams): SeamHttpRequest<void, undefined>;
|
|
224
|
+
get(body?: AccessMethodsGetParams): SeamHttpRequest<AccessMethodsGetResponse, 'access_method'>;
|
|
225
|
+
list(body?: AccessMethodsListParams): SeamHttpRequest<AccessMethodsListResponse, 'access_methods'>;
|
|
226
|
+
}
|
|
227
|
+
type AccessMethodsDeleteParams = RouteRequestBody<'/access_methods/delete'>;
|
|
228
|
+
type AccessMethodsDeleteResponse = SetNonNullable<Required<RouteResponse<'/access_methods/delete'>>>;
|
|
229
|
+
type AccessMethodsDeleteOptions = never;
|
|
230
|
+
type AccessMethodsGetParams = RouteRequestBody<'/access_methods/get'>;
|
|
231
|
+
type AccessMethodsGetResponse = SetNonNullable<Required<RouteResponse<'/access_methods/get'>>>;
|
|
232
|
+
type AccessMethodsGetOptions = never;
|
|
233
|
+
type AccessMethodsListParams = RouteRequestBody<'/access_methods/list'>;
|
|
234
|
+
type AccessMethodsListResponse = SetNonNullable<Required<RouteResponse<'/access_methods/list'>>>;
|
|
235
|
+
type AccessMethodsListOptions = never;
|
|
236
|
+
|
|
177
237
|
declare class SeamHttpAcsAccessGroups {
|
|
178
238
|
client: Client;
|
|
179
239
|
readonly defaults: Required<SeamHttpRequestOptions>;
|
|
@@ -301,11 +361,15 @@ declare class SeamHttpAcsEncoders {
|
|
|
301
361
|
createPaginator<const TResponse, const TResponseKey extends keyof TResponse>(request: SeamHttpRequest<TResponse, TResponseKey>): SeamPaginator<TResponse, TResponseKey>;
|
|
302
362
|
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
303
363
|
get simulate(): SeamHttpAcsEncodersSimulate;
|
|
364
|
+
encodeAccessMethod(body?: AcsEncodersEncodeAccessMethodBody, options?: Pick<SeamHttpRequestOptions, 'waitForActionAttempt'>): SeamHttpRequest<AcsEncodersEncodeAccessMethodResponse, 'action_attempt'>;
|
|
304
365
|
encodeCredential(body?: AcsEncodersEncodeCredentialBody, options?: Pick<SeamHttpRequestOptions, 'waitForActionAttempt'>): SeamHttpRequest<AcsEncodersEncodeCredentialResponse, 'action_attempt'>;
|
|
305
366
|
get(body?: AcsEncodersGetParams): SeamHttpRequest<AcsEncodersGetResponse, 'acs_encoder'>;
|
|
306
367
|
list(body?: AcsEncodersListParams): SeamHttpRequest<AcsEncodersListResponse, 'acs_encoders'>;
|
|
307
368
|
scanCredential(body?: AcsEncodersScanCredentialBody, options?: Pick<SeamHttpRequestOptions, 'waitForActionAttempt'>): SeamHttpRequest<AcsEncodersScanCredentialResponse, 'action_attempt'>;
|
|
308
369
|
}
|
|
370
|
+
type AcsEncodersEncodeAccessMethodBody = RouteRequestBody<'/acs/encoders/encode_access_method'>;
|
|
371
|
+
type AcsEncodersEncodeAccessMethodResponse = SetNonNullable<Required<RouteResponse<'/acs/encoders/encode_access_method'>>>;
|
|
372
|
+
type AcsEncodersEncodeAccessMethodOptions = Pick<SeamHttpRequestOptions, 'waitForActionAttempt'>;
|
|
309
373
|
type AcsEncodersEncodeCredentialBody = RouteRequestBody<'/acs/encoders/encode_credential'>;
|
|
310
374
|
type AcsEncodersEncodeCredentialResponse = SetNonNullable<Required<RouteResponse<'/acs/encoders/encode_credential'>>>;
|
|
311
375
|
type AcsEncodersEncodeCredentialOptions = Pick<SeamHttpRequestOptions, 'waitForActionAttempt'>;
|
|
@@ -475,28 +539,6 @@ type ActionAttemptsListParams = RouteRequestBody<'/action_attempts/list'>;
|
|
|
475
539
|
type ActionAttemptsListResponse = SetNonNullable<Required<RouteResponse<'/action_attempts/list'>>>;
|
|
476
540
|
type ActionAttemptsListOptions = never;
|
|
477
541
|
|
|
478
|
-
declare class SeamHttpBridges {
|
|
479
|
-
client: Client;
|
|
480
|
-
readonly defaults: Required<SeamHttpRequestOptions>;
|
|
481
|
-
constructor(apiKeyOrOptions?: string | SeamHttpOptions);
|
|
482
|
-
static fromClient(client: SeamHttpOptionsWithClient['client'], options?: Omit<SeamHttpOptionsWithClient, 'client'>): SeamHttpBridges;
|
|
483
|
-
static fromApiKey(apiKey: SeamHttpOptionsWithApiKey['apiKey'], options?: Omit<SeamHttpOptionsWithApiKey, 'apiKey'>): SeamHttpBridges;
|
|
484
|
-
static fromClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken'], options?: Omit<SeamHttpOptionsWithClientSessionToken, 'clientSessionToken'>): SeamHttpBridges;
|
|
485
|
-
static fromPublishableKey(publishableKey: string, userIdentifierKey: string, options?: SeamHttpFromPublishableKeyOptions): Promise<SeamHttpBridges>;
|
|
486
|
-
static fromConsoleSessionToken(consoleSessionToken: SeamHttpOptionsWithConsoleSessionToken['consoleSessionToken'], workspaceId: SeamHttpOptionsWithConsoleSessionToken['workspaceId'], options?: Omit<SeamHttpOptionsWithConsoleSessionToken, 'consoleSessionToken' | 'workspaceId'>): SeamHttpBridges;
|
|
487
|
-
static fromPersonalAccessToken(personalAccessToken: SeamHttpOptionsWithPersonalAccessToken['personalAccessToken'], workspaceId: SeamHttpOptionsWithPersonalAccessToken['workspaceId'], options?: Omit<SeamHttpOptionsWithPersonalAccessToken, 'personalAccessToken' | 'workspaceId'>): SeamHttpBridges;
|
|
488
|
-
createPaginator<const TResponse, const TResponseKey extends keyof TResponse>(request: SeamHttpRequest<TResponse, TResponseKey>): SeamPaginator<TResponse, TResponseKey>;
|
|
489
|
-
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
490
|
-
get(body?: BridgesGetParams): SeamHttpRequest<BridgesGetResponse, 'bridge'>;
|
|
491
|
-
list(body?: BridgesListParams): SeamHttpRequest<BridgesListResponse, 'bridges'>;
|
|
492
|
-
}
|
|
493
|
-
type BridgesGetParams = RouteRequestBody<'/bridges/get'>;
|
|
494
|
-
type BridgesGetResponse = SetNonNullable<Required<RouteResponse<'/bridges/get'>>>;
|
|
495
|
-
type BridgesGetOptions = never;
|
|
496
|
-
type BridgesListParams = RouteRequestBody<'/bridges/list'>;
|
|
497
|
-
type BridgesListResponse = SetNonNullable<Required<RouteResponse<'/bridges/list'>>>;
|
|
498
|
-
type BridgesListOptions = never;
|
|
499
|
-
|
|
500
542
|
declare class SeamHttpClientSessions {
|
|
501
543
|
client: Client;
|
|
502
544
|
readonly defaults: Required<SeamHttpRequestOptions>;
|
|
@@ -584,6 +626,7 @@ declare class SeamHttpConnectedAccounts {
|
|
|
584
626
|
delete(body?: ConnectedAccountsDeleteParams): SeamHttpRequest<void, undefined>;
|
|
585
627
|
get(body?: ConnectedAccountsGetParams): SeamHttpRequest<ConnectedAccountsGetResponse, 'connected_account'>;
|
|
586
628
|
list(body?: ConnectedAccountsListParams): SeamHttpRequest<ConnectedAccountsListResponse, 'connected_accounts'>;
|
|
629
|
+
sync(body?: ConnectedAccountsSyncBody): SeamHttpRequest<void, undefined>;
|
|
587
630
|
update(body?: ConnectedAccountsUpdateBody): SeamHttpRequest<void, undefined>;
|
|
588
631
|
}
|
|
589
632
|
type ConnectedAccountsDeleteParams = RouteRequestBody<'/connected_accounts/delete'>;
|
|
@@ -595,6 +638,9 @@ type ConnectedAccountsGetOptions = never;
|
|
|
595
638
|
type ConnectedAccountsListParams = RouteRequestBody<'/connected_accounts/list'>;
|
|
596
639
|
type ConnectedAccountsListResponse = SetNonNullable<Required<RouteResponse<'/connected_accounts/list'>>>;
|
|
597
640
|
type ConnectedAccountsListOptions = never;
|
|
641
|
+
type ConnectedAccountsSyncBody = RouteRequestBody<'/connected_accounts/sync'>;
|
|
642
|
+
type ConnectedAccountsSyncResponse = SetNonNullable<Required<RouteResponse<'/connected_accounts/sync'>>>;
|
|
643
|
+
type ConnectedAccountsSyncOptions = never;
|
|
598
644
|
type ConnectedAccountsUpdateBody = RouteRequestBody<'/connected_accounts/update'>;
|
|
599
645
|
type ConnectedAccountsUpdateResponse = SetNonNullable<Required<RouteResponse<'/connected_accounts/update'>>>;
|
|
600
646
|
type ConnectedAccountsUpdateOptions = never;
|
|
@@ -735,28 +781,6 @@ type LocksUnlockDoorBody = RouteRequestBody<'/locks/unlock_door'>;
|
|
|
735
781
|
type LocksUnlockDoorResponse = SetNonNullable<Required<RouteResponse<'/locks/unlock_door'>>>;
|
|
736
782
|
type LocksUnlockDoorOptions = Pick<SeamHttpRequestOptions, 'waitForActionAttempt'>;
|
|
737
783
|
|
|
738
|
-
declare class SeamHttpNetworks {
|
|
739
|
-
client: Client;
|
|
740
|
-
readonly defaults: Required<SeamHttpRequestOptions>;
|
|
741
|
-
constructor(apiKeyOrOptions?: string | SeamHttpOptions);
|
|
742
|
-
static fromClient(client: SeamHttpOptionsWithClient['client'], options?: Omit<SeamHttpOptionsWithClient, 'client'>): SeamHttpNetworks;
|
|
743
|
-
static fromApiKey(apiKey: SeamHttpOptionsWithApiKey['apiKey'], options?: Omit<SeamHttpOptionsWithApiKey, 'apiKey'>): SeamHttpNetworks;
|
|
744
|
-
static fromClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken'], options?: Omit<SeamHttpOptionsWithClientSessionToken, 'clientSessionToken'>): SeamHttpNetworks;
|
|
745
|
-
static fromPublishableKey(publishableKey: string, userIdentifierKey: string, options?: SeamHttpFromPublishableKeyOptions): Promise<SeamHttpNetworks>;
|
|
746
|
-
static fromConsoleSessionToken(consoleSessionToken: SeamHttpOptionsWithConsoleSessionToken['consoleSessionToken'], workspaceId: SeamHttpOptionsWithConsoleSessionToken['workspaceId'], options?: Omit<SeamHttpOptionsWithConsoleSessionToken, 'consoleSessionToken' | 'workspaceId'>): SeamHttpNetworks;
|
|
747
|
-
static fromPersonalAccessToken(personalAccessToken: SeamHttpOptionsWithPersonalAccessToken['personalAccessToken'], workspaceId: SeamHttpOptionsWithPersonalAccessToken['workspaceId'], options?: Omit<SeamHttpOptionsWithPersonalAccessToken, 'personalAccessToken' | 'workspaceId'>): SeamHttpNetworks;
|
|
748
|
-
createPaginator<const TResponse, const TResponseKey extends keyof TResponse>(request: SeamHttpRequest<TResponse, TResponseKey>): SeamPaginator<TResponse, TResponseKey>;
|
|
749
|
-
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
750
|
-
get(body?: NetworksGetParams): SeamHttpRequest<NetworksGetResponse, 'network'>;
|
|
751
|
-
list(body?: NetworksListParams): SeamHttpRequest<NetworksListResponse, 'networks'>;
|
|
752
|
-
}
|
|
753
|
-
type NetworksGetParams = RouteRequestBody<'/networks/get'>;
|
|
754
|
-
type NetworksGetResponse = SetNonNullable<Required<RouteResponse<'/networks/get'>>>;
|
|
755
|
-
type NetworksGetOptions = never;
|
|
756
|
-
type NetworksListParams = RouteRequestBody<'/networks/list'>;
|
|
757
|
-
type NetworksListResponse = SetNonNullable<Required<RouteResponse<'/networks/list'>>>;
|
|
758
|
-
type NetworksListOptions = never;
|
|
759
|
-
|
|
760
784
|
declare class SeamHttpNoiseSensorsNoiseThresholds {
|
|
761
785
|
client: Client;
|
|
762
786
|
readonly defaults: Required<SeamHttpRequestOptions>;
|
|
@@ -874,6 +898,82 @@ type PhonesListParams = RouteRequestBody<'/phones/list'>;
|
|
|
874
898
|
type PhonesListResponse = SetNonNullable<Required<RouteResponse<'/phones/list'>>>;
|
|
875
899
|
type PhonesListOptions = never;
|
|
876
900
|
|
|
901
|
+
declare class SeamHttpSpaces {
|
|
902
|
+
client: Client;
|
|
903
|
+
readonly defaults: Required<SeamHttpRequestOptions>;
|
|
904
|
+
constructor(apiKeyOrOptions?: string | SeamHttpOptions);
|
|
905
|
+
static fromClient(client: SeamHttpOptionsWithClient['client'], options?: Omit<SeamHttpOptionsWithClient, 'client'>): SeamHttpSpaces;
|
|
906
|
+
static fromApiKey(apiKey: SeamHttpOptionsWithApiKey['apiKey'], options?: Omit<SeamHttpOptionsWithApiKey, 'apiKey'>): SeamHttpSpaces;
|
|
907
|
+
static fromClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken'], options?: Omit<SeamHttpOptionsWithClientSessionToken, 'clientSessionToken'>): SeamHttpSpaces;
|
|
908
|
+
static fromPublishableKey(publishableKey: string, userIdentifierKey: string, options?: SeamHttpFromPublishableKeyOptions): Promise<SeamHttpSpaces>;
|
|
909
|
+
static fromConsoleSessionToken(consoleSessionToken: SeamHttpOptionsWithConsoleSessionToken['consoleSessionToken'], workspaceId: SeamHttpOptionsWithConsoleSessionToken['workspaceId'], options?: Omit<SeamHttpOptionsWithConsoleSessionToken, 'consoleSessionToken' | 'workspaceId'>): SeamHttpSpaces;
|
|
910
|
+
static fromPersonalAccessToken(personalAccessToken: SeamHttpOptionsWithPersonalAccessToken['personalAccessToken'], workspaceId: SeamHttpOptionsWithPersonalAccessToken['workspaceId'], options?: Omit<SeamHttpOptionsWithPersonalAccessToken, 'personalAccessToken' | 'workspaceId'>): SeamHttpSpaces;
|
|
911
|
+
createPaginator<const TResponse, const TResponseKey extends keyof TResponse>(request: SeamHttpRequest<TResponse, TResponseKey>): SeamPaginator<TResponse, TResponseKey>;
|
|
912
|
+
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
913
|
+
addAcsEntrances(body?: SpacesAddAcsEntrancesBody): SeamHttpRequest<void, undefined>;
|
|
914
|
+
addDevices(body?: SpacesAddDevicesBody): SeamHttpRequest<void, undefined>;
|
|
915
|
+
create(body?: SpacesCreateBody): SeamHttpRequest<SpacesCreateResponse, 'space'>;
|
|
916
|
+
delete(body?: SpacesDeleteParams): SeamHttpRequest<void, undefined>;
|
|
917
|
+
get(body?: SpacesGetParams): SeamHttpRequest<SpacesGetResponse, 'space'>;
|
|
918
|
+
list(body?: SpacesListParams): SeamHttpRequest<SpacesListResponse, 'spaces'>;
|
|
919
|
+
removeAcsEntrances(body?: SpacesRemoveAcsEntrancesParams): SeamHttpRequest<void, undefined>;
|
|
920
|
+
removeDevices(body?: SpacesRemoveDevicesParams): SeamHttpRequest<void, undefined>;
|
|
921
|
+
update(body?: SpacesUpdateBody): SeamHttpRequest<SpacesUpdateResponse, 'space'>;
|
|
922
|
+
}
|
|
923
|
+
type SpacesAddAcsEntrancesBody = RouteRequestBody<'/spaces/add_acs_entrances'>;
|
|
924
|
+
type SpacesAddAcsEntrancesResponse = SetNonNullable<Required<RouteResponse<'/spaces/add_acs_entrances'>>>;
|
|
925
|
+
type SpacesAddAcsEntrancesOptions = never;
|
|
926
|
+
type SpacesAddDevicesBody = RouteRequestBody<'/spaces/add_devices'>;
|
|
927
|
+
type SpacesAddDevicesResponse = SetNonNullable<Required<RouteResponse<'/spaces/add_devices'>>>;
|
|
928
|
+
type SpacesAddDevicesOptions = never;
|
|
929
|
+
type SpacesCreateBody = RouteRequestBody<'/spaces/create'>;
|
|
930
|
+
type SpacesCreateResponse = SetNonNullable<Required<RouteResponse<'/spaces/create'>>>;
|
|
931
|
+
type SpacesCreateOptions = never;
|
|
932
|
+
type SpacesDeleteParams = RouteRequestBody<'/spaces/delete'>;
|
|
933
|
+
type SpacesDeleteResponse = SetNonNullable<Required<RouteResponse<'/spaces/delete'>>>;
|
|
934
|
+
type SpacesDeleteOptions = never;
|
|
935
|
+
type SpacesGetParams = RouteRequestBody<'/spaces/get'>;
|
|
936
|
+
type SpacesGetResponse = SetNonNullable<Required<RouteResponse<'/spaces/get'>>>;
|
|
937
|
+
type SpacesGetOptions = never;
|
|
938
|
+
type SpacesListParams = RouteRequestBody<'/spaces/list'>;
|
|
939
|
+
type SpacesListResponse = SetNonNullable<Required<RouteResponse<'/spaces/list'>>>;
|
|
940
|
+
type SpacesListOptions = never;
|
|
941
|
+
type SpacesRemoveAcsEntrancesParams = RouteRequestBody<'/spaces/remove_acs_entrances'>;
|
|
942
|
+
type SpacesRemoveAcsEntrancesResponse = SetNonNullable<Required<RouteResponse<'/spaces/remove_acs_entrances'>>>;
|
|
943
|
+
type SpacesRemoveAcsEntrancesOptions = never;
|
|
944
|
+
type SpacesRemoveDevicesParams = RouteRequestBody<'/spaces/remove_devices'>;
|
|
945
|
+
type SpacesRemoveDevicesResponse = SetNonNullable<Required<RouteResponse<'/spaces/remove_devices'>>>;
|
|
946
|
+
type SpacesRemoveDevicesOptions = never;
|
|
947
|
+
type SpacesUpdateBody = RouteRequestBody<'/spaces/update'>;
|
|
948
|
+
type SpacesUpdateResponse = SetNonNullable<Required<RouteResponse<'/spaces/update'>>>;
|
|
949
|
+
type SpacesUpdateOptions = never;
|
|
950
|
+
|
|
951
|
+
declare class SeamHttpThermostatsDailyPrograms {
|
|
952
|
+
client: Client;
|
|
953
|
+
readonly defaults: Required<SeamHttpRequestOptions>;
|
|
954
|
+
constructor(apiKeyOrOptions?: string | SeamHttpOptions);
|
|
955
|
+
static fromClient(client: SeamHttpOptionsWithClient['client'], options?: Omit<SeamHttpOptionsWithClient, 'client'>): SeamHttpThermostatsDailyPrograms;
|
|
956
|
+
static fromApiKey(apiKey: SeamHttpOptionsWithApiKey['apiKey'], options?: Omit<SeamHttpOptionsWithApiKey, 'apiKey'>): SeamHttpThermostatsDailyPrograms;
|
|
957
|
+
static fromClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken'], options?: Omit<SeamHttpOptionsWithClientSessionToken, 'clientSessionToken'>): SeamHttpThermostatsDailyPrograms;
|
|
958
|
+
static fromPublishableKey(publishableKey: string, userIdentifierKey: string, options?: SeamHttpFromPublishableKeyOptions): Promise<SeamHttpThermostatsDailyPrograms>;
|
|
959
|
+
static fromConsoleSessionToken(consoleSessionToken: SeamHttpOptionsWithConsoleSessionToken['consoleSessionToken'], workspaceId: SeamHttpOptionsWithConsoleSessionToken['workspaceId'], options?: Omit<SeamHttpOptionsWithConsoleSessionToken, 'consoleSessionToken' | 'workspaceId'>): SeamHttpThermostatsDailyPrograms;
|
|
960
|
+
static fromPersonalAccessToken(personalAccessToken: SeamHttpOptionsWithPersonalAccessToken['personalAccessToken'], workspaceId: SeamHttpOptionsWithPersonalAccessToken['workspaceId'], options?: Omit<SeamHttpOptionsWithPersonalAccessToken, 'personalAccessToken' | 'workspaceId'>): SeamHttpThermostatsDailyPrograms;
|
|
961
|
+
createPaginator<const TResponse, const TResponseKey extends keyof TResponse>(request: SeamHttpRequest<TResponse, TResponseKey>): SeamPaginator<TResponse, TResponseKey>;
|
|
962
|
+
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
963
|
+
create(body?: ThermostatsDailyProgramsCreateBody): SeamHttpRequest<ThermostatsDailyProgramsCreateResponse, 'thermostat_daily_program'>;
|
|
964
|
+
delete(body?: ThermostatsDailyProgramsDeleteParams): SeamHttpRequest<void, undefined>;
|
|
965
|
+
update(body?: ThermostatsDailyProgramsUpdateBody, options?: Pick<SeamHttpRequestOptions, 'waitForActionAttempt'>): SeamHttpRequest<ThermostatsDailyProgramsUpdateResponse, 'action_attempt'>;
|
|
966
|
+
}
|
|
967
|
+
type ThermostatsDailyProgramsCreateBody = RouteRequestBody<'/thermostats/daily_programs/create'>;
|
|
968
|
+
type ThermostatsDailyProgramsCreateResponse = SetNonNullable<Required<RouteResponse<'/thermostats/daily_programs/create'>>>;
|
|
969
|
+
type ThermostatsDailyProgramsCreateOptions = never;
|
|
970
|
+
type ThermostatsDailyProgramsDeleteParams = RouteRequestBody<'/thermostats/daily_programs/delete'>;
|
|
971
|
+
type ThermostatsDailyProgramsDeleteResponse = SetNonNullable<Required<RouteResponse<'/thermostats/daily_programs/delete'>>>;
|
|
972
|
+
type ThermostatsDailyProgramsDeleteOptions = never;
|
|
973
|
+
type ThermostatsDailyProgramsUpdateBody = RouteRequestBody<'/thermostats/daily_programs/update'>;
|
|
974
|
+
type ThermostatsDailyProgramsUpdateResponse = SetNonNullable<Required<RouteResponse<'/thermostats/daily_programs/update'>>>;
|
|
975
|
+
type ThermostatsDailyProgramsUpdateOptions = Pick<SeamHttpRequestOptions, 'waitForActionAttempt'>;
|
|
976
|
+
|
|
877
977
|
declare class SeamHttpThermostatsSchedules {
|
|
878
978
|
client: Client;
|
|
879
979
|
readonly defaults: Required<SeamHttpRequestOptions>;
|
|
@@ -944,6 +1044,7 @@ declare class SeamHttpThermostats {
|
|
|
944
1044
|
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
945
1045
|
get schedules(): SeamHttpThermostatsSchedules;
|
|
946
1046
|
get simulate(): SeamHttpThermostatsSimulate;
|
|
1047
|
+
get dailyPrograms(): SeamHttpThermostatsDailyPrograms;
|
|
947
1048
|
activateClimatePreset(body?: ThermostatsActivateClimatePresetBody, options?: Pick<SeamHttpRequestOptions, 'waitForActionAttempt'>): SeamHttpRequest<ThermostatsActivateClimatePresetResponse, 'action_attempt'>;
|
|
948
1049
|
cool(body?: ThermostatsCoolBody, options?: Pick<SeamHttpRequestOptions, 'waitForActionAttempt'>): SeamHttpRequest<ThermostatsCoolResponse, 'action_attempt'>;
|
|
949
1050
|
createClimatePreset(body?: ThermostatsCreateClimatePresetBody): SeamHttpRequest<void, undefined>;
|
|
@@ -957,6 +1058,7 @@ declare class SeamHttpThermostats {
|
|
|
957
1058
|
setHvacMode(body?: ThermostatsSetHvacModeBody, options?: Pick<SeamHttpRequestOptions, 'waitForActionAttempt'>): SeamHttpRequest<ThermostatsSetHvacModeResponse, 'action_attempt'>;
|
|
958
1059
|
setTemperatureThreshold(body?: ThermostatsSetTemperatureThresholdBody): SeamHttpRequest<void, undefined>;
|
|
959
1060
|
updateClimatePreset(body?: ThermostatsUpdateClimatePresetBody): SeamHttpRequest<void, undefined>;
|
|
1061
|
+
updateWeeklyProgram(body?: ThermostatsUpdateWeeklyProgramBody, options?: Pick<SeamHttpRequestOptions, 'waitForActionAttempt'>): SeamHttpRequest<ThermostatsUpdateWeeklyProgramResponse, 'action_attempt'>;
|
|
960
1062
|
}
|
|
961
1063
|
type ThermostatsActivateClimatePresetBody = RouteRequestBody<'/thermostats/activate_climate_preset'>;
|
|
962
1064
|
type ThermostatsActivateClimatePresetResponse = SetNonNullable<Required<RouteResponse<'/thermostats/activate_climate_preset'>>>;
|
|
@@ -997,6 +1099,23 @@ type ThermostatsSetTemperatureThresholdOptions = never;
|
|
|
997
1099
|
type ThermostatsUpdateClimatePresetBody = RouteRequestBody<'/thermostats/update_climate_preset'>;
|
|
998
1100
|
type ThermostatsUpdateClimatePresetResponse = SetNonNullable<Required<RouteResponse<'/thermostats/update_climate_preset'>>>;
|
|
999
1101
|
type ThermostatsUpdateClimatePresetOptions = never;
|
|
1102
|
+
type ThermostatsUpdateWeeklyProgramBody = RouteRequestBody<'/thermostats/update_weekly_program'>;
|
|
1103
|
+
type ThermostatsUpdateWeeklyProgramResponse = SetNonNullable<Required<RouteResponse<'/thermostats/update_weekly_program'>>>;
|
|
1104
|
+
type ThermostatsUpdateWeeklyProgramOptions = Pick<SeamHttpRequestOptions, 'waitForActionAttempt'>;
|
|
1105
|
+
|
|
1106
|
+
declare class SeamHttpUnstablePartner {
|
|
1107
|
+
client: Client;
|
|
1108
|
+
readonly defaults: Required<SeamHttpRequestOptions>;
|
|
1109
|
+
constructor(apiKeyOrOptions?: string | SeamHttpOptions);
|
|
1110
|
+
static fromClient(client: SeamHttpOptionsWithClient['client'], options?: Omit<SeamHttpOptionsWithClient, 'client'>): SeamHttpUnstablePartner;
|
|
1111
|
+
static fromApiKey(apiKey: SeamHttpOptionsWithApiKey['apiKey'], options?: Omit<SeamHttpOptionsWithApiKey, 'apiKey'>): SeamHttpUnstablePartner;
|
|
1112
|
+
static fromClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken'], options?: Omit<SeamHttpOptionsWithClientSessionToken, 'clientSessionToken'>): SeamHttpUnstablePartner;
|
|
1113
|
+
static fromPublishableKey(publishableKey: string, userIdentifierKey: string, options?: SeamHttpFromPublishableKeyOptions): Promise<SeamHttpUnstablePartner>;
|
|
1114
|
+
static fromConsoleSessionToken(consoleSessionToken: SeamHttpOptionsWithConsoleSessionToken['consoleSessionToken'], workspaceId: SeamHttpOptionsWithConsoleSessionToken['workspaceId'], options?: Omit<SeamHttpOptionsWithConsoleSessionToken, 'consoleSessionToken' | 'workspaceId'>): SeamHttpUnstablePartner;
|
|
1115
|
+
static fromPersonalAccessToken(personalAccessToken: SeamHttpOptionsWithPersonalAccessToken['personalAccessToken'], workspaceId: SeamHttpOptionsWithPersonalAccessToken['workspaceId'], options?: Omit<SeamHttpOptionsWithPersonalAccessToken, 'personalAccessToken' | 'workspaceId'>): SeamHttpUnstablePartner;
|
|
1116
|
+
createPaginator<const TResponse, const TResponseKey extends keyof TResponse>(request: SeamHttpRequest<TResponse, TResponseKey>): SeamPaginator<TResponse, TResponseKey>;
|
|
1117
|
+
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
1118
|
+
}
|
|
1000
1119
|
|
|
1001
1120
|
declare class SeamHttpUserIdentitiesEnrollmentAutomations {
|
|
1002
1121
|
client: Client;
|
|
@@ -1145,6 +1264,7 @@ declare class SeamHttpWorkspaces {
|
|
|
1145
1264
|
get(body?: WorkspacesGetParams): SeamHttpRequest<WorkspacesGetResponse, 'workspace'>;
|
|
1146
1265
|
list(body?: WorkspacesListParams): SeamHttpRequest<WorkspacesListResponse, 'workspaces'>;
|
|
1147
1266
|
resetSandbox(body?: WorkspacesResetSandboxBody, options?: Pick<SeamHttpRequestOptions, 'waitForActionAttempt'>): SeamHttpRequest<WorkspacesResetSandboxResponse, 'action_attempt'>;
|
|
1267
|
+
update(body?: WorkspacesUpdateBody): SeamHttpRequest<void, undefined>;
|
|
1148
1268
|
}
|
|
1149
1269
|
type WorkspacesCreateBody = RouteRequestBody<'/workspaces/create'>;
|
|
1150
1270
|
type WorkspacesCreateResponse = SetNonNullable<Required<RouteResponse<'/workspaces/create'>>>;
|
|
@@ -1158,6 +1278,9 @@ type WorkspacesListOptions = never;
|
|
|
1158
1278
|
type WorkspacesResetSandboxBody = RouteRequestBody<'/workspaces/reset_sandbox'>;
|
|
1159
1279
|
type WorkspacesResetSandboxResponse = SetNonNullable<Required<RouteResponse<'/workspaces/reset_sandbox'>>>;
|
|
1160
1280
|
type WorkspacesResetSandboxOptions = Pick<SeamHttpRequestOptions, 'waitForActionAttempt'>;
|
|
1281
|
+
type WorkspacesUpdateBody = RouteRequestBody<'/workspaces/update'>;
|
|
1282
|
+
type WorkspacesUpdateResponse = SetNonNullable<Required<RouteResponse<'/workspaces/update'>>>;
|
|
1283
|
+
type WorkspacesUpdateOptions = never;
|
|
1161
1284
|
|
|
1162
1285
|
interface ResolveActionAttemptOptions {
|
|
1163
1286
|
timeout?: number;
|
|
@@ -1221,9 +1344,9 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1221
1344
|
warning_message: string;
|
|
1222
1345
|
}[];
|
|
1223
1346
|
acs_credential_on_encoder: {
|
|
1347
|
+
created_at: string | null;
|
|
1224
1348
|
starts_at: string | null;
|
|
1225
1349
|
ends_at: string | null;
|
|
1226
|
-
created_at: string | null;
|
|
1227
1350
|
card_number: string | null;
|
|
1228
1351
|
is_issued: boolean | null;
|
|
1229
1352
|
visionline_metadata?: {
|
|
@@ -1243,6 +1366,7 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1243
1366
|
} | null;
|
|
1244
1367
|
acs_credential_on_seam: {
|
|
1245
1368
|
display_name: string;
|
|
1369
|
+
workspace_id: string;
|
|
1246
1370
|
created_at: string;
|
|
1247
1371
|
errors: {
|
|
1248
1372
|
message: string;
|
|
@@ -1273,7 +1397,6 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1273
1397
|
created_at: string;
|
|
1274
1398
|
warning_code: "needs_to_be_reissued";
|
|
1275
1399
|
})[];
|
|
1276
|
-
workspace_id: string;
|
|
1277
1400
|
is_managed: true;
|
|
1278
1401
|
acs_system_id: string;
|
|
1279
1402
|
acs_credential_id: string;
|
|
@@ -1283,16 +1406,17 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1283
1406
|
ends_at?: string | undefined;
|
|
1284
1407
|
visionline_metadata?: {
|
|
1285
1408
|
card_function_type: "guest" | "staff";
|
|
1409
|
+
auto_join?: boolean | undefined;
|
|
1286
1410
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
1287
1411
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
1288
1412
|
common_acs_entrance_ids?: string[] | undefined;
|
|
1289
1413
|
is_valid?: boolean | undefined;
|
|
1290
|
-
auto_join?: boolean | undefined;
|
|
1291
1414
|
card_id?: string | undefined;
|
|
1292
1415
|
credential_id?: string | undefined;
|
|
1293
1416
|
} | undefined;
|
|
1294
1417
|
assa_abloy_vostio_metadata?: {
|
|
1295
1418
|
endpoint_id?: string | undefined;
|
|
1419
|
+
auto_join?: boolean | undefined;
|
|
1296
1420
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
1297
1421
|
key_id?: string | undefined;
|
|
1298
1422
|
key_issuing_request_id?: string | undefined;
|
|
@@ -1300,7 +1424,7 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1300
1424
|
} | undefined;
|
|
1301
1425
|
is_one_time_use?: boolean | undefined;
|
|
1302
1426
|
issued_at?: string | null | undefined;
|
|
1303
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
|
|
1427
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
1304
1428
|
external_type_display_name?: string | undefined;
|
|
1305
1429
|
acs_user_id?: string | undefined;
|
|
1306
1430
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1312,6 +1436,7 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1312
1436
|
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
1313
1437
|
} | {
|
|
1314
1438
|
display_name: string;
|
|
1439
|
+
workspace_id: string;
|
|
1315
1440
|
created_at: string;
|
|
1316
1441
|
errors: {
|
|
1317
1442
|
message: string;
|
|
@@ -1342,7 +1467,6 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1342
1467
|
created_at: string;
|
|
1343
1468
|
warning_code: "needs_to_be_reissued";
|
|
1344
1469
|
})[];
|
|
1345
|
-
workspace_id: string;
|
|
1346
1470
|
is_managed: false;
|
|
1347
1471
|
acs_system_id: string;
|
|
1348
1472
|
acs_credential_id: string;
|
|
@@ -1352,16 +1476,17 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1352
1476
|
ends_at?: string | undefined;
|
|
1353
1477
|
visionline_metadata?: {
|
|
1354
1478
|
card_function_type: "guest" | "staff";
|
|
1479
|
+
auto_join?: boolean | undefined;
|
|
1355
1480
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
1356
1481
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
1357
1482
|
common_acs_entrance_ids?: string[] | undefined;
|
|
1358
1483
|
is_valid?: boolean | undefined;
|
|
1359
|
-
auto_join?: boolean | undefined;
|
|
1360
1484
|
card_id?: string | undefined;
|
|
1361
1485
|
credential_id?: string | undefined;
|
|
1362
1486
|
} | undefined;
|
|
1363
1487
|
assa_abloy_vostio_metadata?: {
|
|
1364
1488
|
endpoint_id?: string | undefined;
|
|
1489
|
+
auto_join?: boolean | undefined;
|
|
1365
1490
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
1366
1491
|
key_id?: string | undefined;
|
|
1367
1492
|
key_issuing_request_id?: string | undefined;
|
|
@@ -1369,7 +1494,7 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1369
1494
|
} | undefined;
|
|
1370
1495
|
is_one_time_use?: boolean | undefined;
|
|
1371
1496
|
issued_at?: string | null | undefined;
|
|
1372
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
|
|
1497
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
1373
1498
|
external_type_display_name?: string | undefined;
|
|
1374
1499
|
acs_user_id?: string | undefined;
|
|
1375
1500
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1397,6 +1522,48 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1397
1522
|
action_attempt_id: string;
|
|
1398
1523
|
result: null;
|
|
1399
1524
|
action_type: "SCAN_CREDENTIAL";
|
|
1525
|
+
} | {
|
|
1526
|
+
error: null;
|
|
1527
|
+
status: "pending";
|
|
1528
|
+
action_attempt_id: string;
|
|
1529
|
+
result: null;
|
|
1530
|
+
action_type: "ENCODE_ACCESS_METHOD";
|
|
1531
|
+
} | {
|
|
1532
|
+
error: null;
|
|
1533
|
+
status: "success";
|
|
1534
|
+
action_attempt_id: string;
|
|
1535
|
+
result: {
|
|
1536
|
+
display_name: string;
|
|
1537
|
+
workspace_id: string;
|
|
1538
|
+
created_at: string;
|
|
1539
|
+
mode: "code" | "card" | "mobile_key";
|
|
1540
|
+
access_method_id: string;
|
|
1541
|
+
issued_at?: string | undefined;
|
|
1542
|
+
instant_key_url?: string | undefined;
|
|
1543
|
+
is_card_encoding_required?: boolean | undefined;
|
|
1544
|
+
};
|
|
1545
|
+
action_type: "ENCODE_ACCESS_METHOD";
|
|
1546
|
+
} | {
|
|
1547
|
+
error: {
|
|
1548
|
+
type: "uncategorized_error";
|
|
1549
|
+
message: string;
|
|
1550
|
+
} | {
|
|
1551
|
+
type: "action_attempt_expired";
|
|
1552
|
+
message: string;
|
|
1553
|
+
} | {
|
|
1554
|
+
type: "no_credential_on_encoder";
|
|
1555
|
+
message: string;
|
|
1556
|
+
} | {
|
|
1557
|
+
type: "incompatible_card_format";
|
|
1558
|
+
message: string;
|
|
1559
|
+
} | {
|
|
1560
|
+
type: "credential_cannot_be_reissued";
|
|
1561
|
+
message: string;
|
|
1562
|
+
};
|
|
1563
|
+
status: "error";
|
|
1564
|
+
action_attempt_id: string;
|
|
1565
|
+
result: null;
|
|
1566
|
+
action_type: "ENCODE_ACCESS_METHOD";
|
|
1400
1567
|
} | {
|
|
1401
1568
|
error: null;
|
|
1402
1569
|
status: "pending";
|
|
@@ -1409,6 +1576,7 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1409
1576
|
action_attempt_id: string;
|
|
1410
1577
|
result: {
|
|
1411
1578
|
display_name: string;
|
|
1579
|
+
workspace_id: string;
|
|
1412
1580
|
created_at: string;
|
|
1413
1581
|
errors: {
|
|
1414
1582
|
message: string;
|
|
@@ -1439,7 +1607,6 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1439
1607
|
created_at: string;
|
|
1440
1608
|
warning_code: "needs_to_be_reissued";
|
|
1441
1609
|
})[];
|
|
1442
|
-
workspace_id: string;
|
|
1443
1610
|
is_managed: true;
|
|
1444
1611
|
acs_system_id: string;
|
|
1445
1612
|
acs_credential_id: string;
|
|
@@ -1449,16 +1616,17 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1449
1616
|
ends_at?: string | undefined;
|
|
1450
1617
|
visionline_metadata?: {
|
|
1451
1618
|
card_function_type: "guest" | "staff";
|
|
1619
|
+
auto_join?: boolean | undefined;
|
|
1452
1620
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
1453
1621
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
1454
1622
|
common_acs_entrance_ids?: string[] | undefined;
|
|
1455
1623
|
is_valid?: boolean | undefined;
|
|
1456
|
-
auto_join?: boolean | undefined;
|
|
1457
1624
|
card_id?: string | undefined;
|
|
1458
1625
|
credential_id?: string | undefined;
|
|
1459
1626
|
} | undefined;
|
|
1460
1627
|
assa_abloy_vostio_metadata?: {
|
|
1461
1628
|
endpoint_id?: string | undefined;
|
|
1629
|
+
auto_join?: boolean | undefined;
|
|
1462
1630
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
1463
1631
|
key_id?: string | undefined;
|
|
1464
1632
|
key_issuing_request_id?: string | undefined;
|
|
@@ -1466,7 +1634,7 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1466
1634
|
} | undefined;
|
|
1467
1635
|
is_one_time_use?: boolean | undefined;
|
|
1468
1636
|
issued_at?: string | null | undefined;
|
|
1469
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
|
|
1637
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
1470
1638
|
external_type_display_name?: string | undefined;
|
|
1471
1639
|
acs_user_id?: string | undefined;
|
|
1472
1640
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1478,6 +1646,7 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1478
1646
|
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
1479
1647
|
} | {
|
|
1480
1648
|
display_name: string;
|
|
1649
|
+
workspace_id: string;
|
|
1481
1650
|
created_at: string;
|
|
1482
1651
|
errors: {
|
|
1483
1652
|
message: string;
|
|
@@ -1508,7 +1677,6 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1508
1677
|
created_at: string;
|
|
1509
1678
|
warning_code: "needs_to_be_reissued";
|
|
1510
1679
|
})[];
|
|
1511
|
-
workspace_id: string;
|
|
1512
1680
|
is_managed: false;
|
|
1513
1681
|
acs_system_id: string;
|
|
1514
1682
|
acs_credential_id: string;
|
|
@@ -1518,16 +1686,17 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1518
1686
|
ends_at?: string | undefined;
|
|
1519
1687
|
visionline_metadata?: {
|
|
1520
1688
|
card_function_type: "guest" | "staff";
|
|
1689
|
+
auto_join?: boolean | undefined;
|
|
1521
1690
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
1522
1691
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
1523
1692
|
common_acs_entrance_ids?: string[] | undefined;
|
|
1524
1693
|
is_valid?: boolean | undefined;
|
|
1525
|
-
auto_join?: boolean | undefined;
|
|
1526
1694
|
card_id?: string | undefined;
|
|
1527
1695
|
credential_id?: string | undefined;
|
|
1528
1696
|
} | undefined;
|
|
1529
1697
|
assa_abloy_vostio_metadata?: {
|
|
1530
1698
|
endpoint_id?: string | undefined;
|
|
1699
|
+
auto_join?: boolean | undefined;
|
|
1531
1700
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
1532
1701
|
key_id?: string | undefined;
|
|
1533
1702
|
key_issuing_request_id?: string | undefined;
|
|
@@ -1535,7 +1704,7 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1535
1704
|
} | undefined;
|
|
1536
1705
|
is_one_time_use?: boolean | undefined;
|
|
1537
1706
|
issued_at?: string | null | undefined;
|
|
1538
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
|
|
1707
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
1539
1708
|
external_type_display_name?: string | undefined;
|
|
1540
1709
|
acs_user_id?: string | undefined;
|
|
1541
1710
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1652,6 +1821,69 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1652
1821
|
action_attempt_id: string;
|
|
1653
1822
|
result: null;
|
|
1654
1823
|
action_type: "ACTIVATE_CLIMATE_PRESET";
|
|
1824
|
+
} | {
|
|
1825
|
+
error: null;
|
|
1826
|
+
status: "pending";
|
|
1827
|
+
action_attempt_id: string;
|
|
1828
|
+
result: null;
|
|
1829
|
+
action_type: "SIMULATE_KEYPAD_CODE_ENTRY";
|
|
1830
|
+
} | {
|
|
1831
|
+
error: null;
|
|
1832
|
+
status: "success";
|
|
1833
|
+
action_attempt_id: string;
|
|
1834
|
+
result: {};
|
|
1835
|
+
action_type: "SIMULATE_KEYPAD_CODE_ENTRY";
|
|
1836
|
+
} | {
|
|
1837
|
+
error: {
|
|
1838
|
+
type: string;
|
|
1839
|
+
message: string;
|
|
1840
|
+
};
|
|
1841
|
+
status: "error";
|
|
1842
|
+
action_attempt_id: string;
|
|
1843
|
+
result: null;
|
|
1844
|
+
action_type: "SIMULATE_KEYPAD_CODE_ENTRY";
|
|
1845
|
+
} | {
|
|
1846
|
+
error: null;
|
|
1847
|
+
status: "pending";
|
|
1848
|
+
action_attempt_id: string;
|
|
1849
|
+
result: null;
|
|
1850
|
+
action_type: "SIMULATE_MANUAL_LOCK_VIA_KEYPAD";
|
|
1851
|
+
} | {
|
|
1852
|
+
error: null;
|
|
1853
|
+
status: "success";
|
|
1854
|
+
action_attempt_id: string;
|
|
1855
|
+
result: {};
|
|
1856
|
+
action_type: "SIMULATE_MANUAL_LOCK_VIA_KEYPAD";
|
|
1857
|
+
} | {
|
|
1858
|
+
error: {
|
|
1859
|
+
type: string;
|
|
1860
|
+
message: string;
|
|
1861
|
+
};
|
|
1862
|
+
status: "error";
|
|
1863
|
+
action_attempt_id: string;
|
|
1864
|
+
result: null;
|
|
1865
|
+
action_type: "SIMULATE_MANUAL_LOCK_VIA_KEYPAD";
|
|
1866
|
+
} | {
|
|
1867
|
+
error: null;
|
|
1868
|
+
status: "pending";
|
|
1869
|
+
action_attempt_id: string;
|
|
1870
|
+
result: null;
|
|
1871
|
+
action_type: "PUSH_THERMOSTAT_PROGRAMS";
|
|
1872
|
+
} | {
|
|
1873
|
+
error: null;
|
|
1874
|
+
status: "success";
|
|
1875
|
+
action_attempt_id: string;
|
|
1876
|
+
result: {};
|
|
1877
|
+
action_type: "PUSH_THERMOSTAT_PROGRAMS";
|
|
1878
|
+
} | {
|
|
1879
|
+
error: {
|
|
1880
|
+
type: string;
|
|
1881
|
+
message: string;
|
|
1882
|
+
};
|
|
1883
|
+
status: "error";
|
|
1884
|
+
action_attempt_id: string;
|
|
1885
|
+
result: null;
|
|
1886
|
+
action_type: "PUSH_THERMOSTAT_PROGRAMS";
|
|
1655
1887
|
} | {
|
|
1656
1888
|
error: null;
|
|
1657
1889
|
status: "pending";
|
|
@@ -1870,9 +2102,9 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
1870
2102
|
warning_message: string;
|
|
1871
2103
|
}[];
|
|
1872
2104
|
acs_credential_on_encoder: {
|
|
2105
|
+
created_at: string | null;
|
|
1873
2106
|
starts_at: string | null;
|
|
1874
2107
|
ends_at: string | null;
|
|
1875
|
-
created_at: string | null;
|
|
1876
2108
|
card_number: string | null;
|
|
1877
2109
|
is_issued: boolean | null;
|
|
1878
2110
|
visionline_metadata?: {
|
|
@@ -1892,6 +2124,7 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
1892
2124
|
} | null;
|
|
1893
2125
|
acs_credential_on_seam: {
|
|
1894
2126
|
display_name: string;
|
|
2127
|
+
workspace_id: string;
|
|
1895
2128
|
created_at: string;
|
|
1896
2129
|
errors: {
|
|
1897
2130
|
message: string;
|
|
@@ -1922,7 +2155,6 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
1922
2155
|
created_at: string;
|
|
1923
2156
|
warning_code: "needs_to_be_reissued";
|
|
1924
2157
|
})[];
|
|
1925
|
-
workspace_id: string;
|
|
1926
2158
|
is_managed: true;
|
|
1927
2159
|
acs_system_id: string;
|
|
1928
2160
|
acs_credential_id: string;
|
|
@@ -1932,16 +2164,17 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
1932
2164
|
ends_at?: string | undefined;
|
|
1933
2165
|
visionline_metadata?: {
|
|
1934
2166
|
card_function_type: "guest" | "staff";
|
|
2167
|
+
auto_join?: boolean | undefined;
|
|
1935
2168
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
1936
2169
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
1937
2170
|
common_acs_entrance_ids?: string[] | undefined;
|
|
1938
2171
|
is_valid?: boolean | undefined;
|
|
1939
|
-
auto_join?: boolean | undefined;
|
|
1940
2172
|
card_id?: string | undefined;
|
|
1941
2173
|
credential_id?: string | undefined;
|
|
1942
2174
|
} | undefined;
|
|
1943
2175
|
assa_abloy_vostio_metadata?: {
|
|
1944
2176
|
endpoint_id?: string | undefined;
|
|
2177
|
+
auto_join?: boolean | undefined;
|
|
1945
2178
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
1946
2179
|
key_id?: string | undefined;
|
|
1947
2180
|
key_issuing_request_id?: string | undefined;
|
|
@@ -1949,7 +2182,7 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
1949
2182
|
} | undefined;
|
|
1950
2183
|
is_one_time_use?: boolean | undefined;
|
|
1951
2184
|
issued_at?: string | null | undefined;
|
|
1952
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
|
|
2185
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
1953
2186
|
external_type_display_name?: string | undefined;
|
|
1954
2187
|
acs_user_id?: string | undefined;
|
|
1955
2188
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1961,6 +2194,7 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
1961
2194
|
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
1962
2195
|
} | {
|
|
1963
2196
|
display_name: string;
|
|
2197
|
+
workspace_id: string;
|
|
1964
2198
|
created_at: string;
|
|
1965
2199
|
errors: {
|
|
1966
2200
|
message: string;
|
|
@@ -1991,7 +2225,6 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
1991
2225
|
created_at: string;
|
|
1992
2226
|
warning_code: "needs_to_be_reissued";
|
|
1993
2227
|
})[];
|
|
1994
|
-
workspace_id: string;
|
|
1995
2228
|
is_managed: false;
|
|
1996
2229
|
acs_system_id: string;
|
|
1997
2230
|
acs_credential_id: string;
|
|
@@ -2001,16 +2234,17 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
2001
2234
|
ends_at?: string | undefined;
|
|
2002
2235
|
visionline_metadata?: {
|
|
2003
2236
|
card_function_type: "guest" | "staff";
|
|
2237
|
+
auto_join?: boolean | undefined;
|
|
2004
2238
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
2005
2239
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
2006
2240
|
common_acs_entrance_ids?: string[] | undefined;
|
|
2007
2241
|
is_valid?: boolean | undefined;
|
|
2008
|
-
auto_join?: boolean | undefined;
|
|
2009
2242
|
card_id?: string | undefined;
|
|
2010
2243
|
credential_id?: string | undefined;
|
|
2011
2244
|
} | undefined;
|
|
2012
2245
|
assa_abloy_vostio_metadata?: {
|
|
2013
2246
|
endpoint_id?: string | undefined;
|
|
2247
|
+
auto_join?: boolean | undefined;
|
|
2014
2248
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
2015
2249
|
key_id?: string | undefined;
|
|
2016
2250
|
key_issuing_request_id?: string | undefined;
|
|
@@ -2018,7 +2252,7 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
2018
2252
|
} | undefined;
|
|
2019
2253
|
is_one_time_use?: boolean | undefined;
|
|
2020
2254
|
issued_at?: string | null | undefined;
|
|
2021
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
|
|
2255
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
2022
2256
|
external_type_display_name?: string | undefined;
|
|
2023
2257
|
acs_user_id?: string | undefined;
|
|
2024
2258
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -2046,6 +2280,48 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
2046
2280
|
action_attempt_id: string;
|
|
2047
2281
|
result: null;
|
|
2048
2282
|
action_type: "SCAN_CREDENTIAL";
|
|
2283
|
+
} | {
|
|
2284
|
+
error: null;
|
|
2285
|
+
status: "pending";
|
|
2286
|
+
action_attempt_id: string;
|
|
2287
|
+
result: null;
|
|
2288
|
+
action_type: "ENCODE_ACCESS_METHOD";
|
|
2289
|
+
} | {
|
|
2290
|
+
error: null;
|
|
2291
|
+
status: "success";
|
|
2292
|
+
action_attempt_id: string;
|
|
2293
|
+
result: {
|
|
2294
|
+
display_name: string;
|
|
2295
|
+
workspace_id: string;
|
|
2296
|
+
created_at: string;
|
|
2297
|
+
mode: "code" | "card" | "mobile_key";
|
|
2298
|
+
access_method_id: string;
|
|
2299
|
+
issued_at?: string | undefined;
|
|
2300
|
+
instant_key_url?: string | undefined;
|
|
2301
|
+
is_card_encoding_required?: boolean | undefined;
|
|
2302
|
+
};
|
|
2303
|
+
action_type: "ENCODE_ACCESS_METHOD";
|
|
2304
|
+
} | {
|
|
2305
|
+
error: {
|
|
2306
|
+
type: "uncategorized_error";
|
|
2307
|
+
message: string;
|
|
2308
|
+
} | {
|
|
2309
|
+
type: "action_attempt_expired";
|
|
2310
|
+
message: string;
|
|
2311
|
+
} | {
|
|
2312
|
+
type: "no_credential_on_encoder";
|
|
2313
|
+
message: string;
|
|
2314
|
+
} | {
|
|
2315
|
+
type: "incompatible_card_format";
|
|
2316
|
+
message: string;
|
|
2317
|
+
} | {
|
|
2318
|
+
type: "credential_cannot_be_reissued";
|
|
2319
|
+
message: string;
|
|
2320
|
+
};
|
|
2321
|
+
status: "error";
|
|
2322
|
+
action_attempt_id: string;
|
|
2323
|
+
result: null;
|
|
2324
|
+
action_type: "ENCODE_ACCESS_METHOD";
|
|
2049
2325
|
} | {
|
|
2050
2326
|
error: null;
|
|
2051
2327
|
status: "pending";
|
|
@@ -2058,6 +2334,7 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
2058
2334
|
action_attempt_id: string;
|
|
2059
2335
|
result: {
|
|
2060
2336
|
display_name: string;
|
|
2337
|
+
workspace_id: string;
|
|
2061
2338
|
created_at: string;
|
|
2062
2339
|
errors: {
|
|
2063
2340
|
message: string;
|
|
@@ -2088,7 +2365,6 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
2088
2365
|
created_at: string;
|
|
2089
2366
|
warning_code: "needs_to_be_reissued";
|
|
2090
2367
|
})[];
|
|
2091
|
-
workspace_id: string;
|
|
2092
2368
|
is_managed: true;
|
|
2093
2369
|
acs_system_id: string;
|
|
2094
2370
|
acs_credential_id: string;
|
|
@@ -2098,16 +2374,17 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
2098
2374
|
ends_at?: string | undefined;
|
|
2099
2375
|
visionline_metadata?: {
|
|
2100
2376
|
card_function_type: "guest" | "staff";
|
|
2377
|
+
auto_join?: boolean | undefined;
|
|
2101
2378
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
2102
2379
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
2103
2380
|
common_acs_entrance_ids?: string[] | undefined;
|
|
2104
2381
|
is_valid?: boolean | undefined;
|
|
2105
|
-
auto_join?: boolean | undefined;
|
|
2106
2382
|
card_id?: string | undefined;
|
|
2107
2383
|
credential_id?: string | undefined;
|
|
2108
2384
|
} | undefined;
|
|
2109
2385
|
assa_abloy_vostio_metadata?: {
|
|
2110
2386
|
endpoint_id?: string | undefined;
|
|
2387
|
+
auto_join?: boolean | undefined;
|
|
2111
2388
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
2112
2389
|
key_id?: string | undefined;
|
|
2113
2390
|
key_issuing_request_id?: string | undefined;
|
|
@@ -2115,7 +2392,7 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
2115
2392
|
} | undefined;
|
|
2116
2393
|
is_one_time_use?: boolean | undefined;
|
|
2117
2394
|
issued_at?: string | null | undefined;
|
|
2118
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
|
|
2395
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
2119
2396
|
external_type_display_name?: string | undefined;
|
|
2120
2397
|
acs_user_id?: string | undefined;
|
|
2121
2398
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -2127,6 +2404,7 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
2127
2404
|
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
2128
2405
|
} | {
|
|
2129
2406
|
display_name: string;
|
|
2407
|
+
workspace_id: string;
|
|
2130
2408
|
created_at: string;
|
|
2131
2409
|
errors: {
|
|
2132
2410
|
message: string;
|
|
@@ -2157,7 +2435,6 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
2157
2435
|
created_at: string;
|
|
2158
2436
|
warning_code: "needs_to_be_reissued";
|
|
2159
2437
|
})[];
|
|
2160
|
-
workspace_id: string;
|
|
2161
2438
|
is_managed: false;
|
|
2162
2439
|
acs_system_id: string;
|
|
2163
2440
|
acs_credential_id: string;
|
|
@@ -2167,16 +2444,17 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
2167
2444
|
ends_at?: string | undefined;
|
|
2168
2445
|
visionline_metadata?: {
|
|
2169
2446
|
card_function_type: "guest" | "staff";
|
|
2447
|
+
auto_join?: boolean | undefined;
|
|
2170
2448
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
2171
2449
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
2172
2450
|
common_acs_entrance_ids?: string[] | undefined;
|
|
2173
2451
|
is_valid?: boolean | undefined;
|
|
2174
|
-
auto_join?: boolean | undefined;
|
|
2175
2452
|
card_id?: string | undefined;
|
|
2176
2453
|
credential_id?: string | undefined;
|
|
2177
2454
|
} | undefined;
|
|
2178
2455
|
assa_abloy_vostio_metadata?: {
|
|
2179
2456
|
endpoint_id?: string | undefined;
|
|
2457
|
+
auto_join?: boolean | undefined;
|
|
2180
2458
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
2181
2459
|
key_id?: string | undefined;
|
|
2182
2460
|
key_issuing_request_id?: string | undefined;
|
|
@@ -2184,7 +2462,7 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
2184
2462
|
} | undefined;
|
|
2185
2463
|
is_one_time_use?: boolean | undefined;
|
|
2186
2464
|
issued_at?: string | null | undefined;
|
|
2187
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
|
|
2465
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
2188
2466
|
external_type_display_name?: string | undefined;
|
|
2189
2467
|
acs_user_id?: string | undefined;
|
|
2190
2468
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -2301,6 +2579,69 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
2301
2579
|
action_attempt_id: string;
|
|
2302
2580
|
result: null;
|
|
2303
2581
|
action_type: "ACTIVATE_CLIMATE_PRESET";
|
|
2582
|
+
} | {
|
|
2583
|
+
error: null;
|
|
2584
|
+
status: "pending";
|
|
2585
|
+
action_attempt_id: string;
|
|
2586
|
+
result: null;
|
|
2587
|
+
action_type: "SIMULATE_KEYPAD_CODE_ENTRY";
|
|
2588
|
+
} | {
|
|
2589
|
+
error: null;
|
|
2590
|
+
status: "success";
|
|
2591
|
+
action_attempt_id: string;
|
|
2592
|
+
result: {};
|
|
2593
|
+
action_type: "SIMULATE_KEYPAD_CODE_ENTRY";
|
|
2594
|
+
} | {
|
|
2595
|
+
error: {
|
|
2596
|
+
type: string;
|
|
2597
|
+
message: string;
|
|
2598
|
+
};
|
|
2599
|
+
status: "error";
|
|
2600
|
+
action_attempt_id: string;
|
|
2601
|
+
result: null;
|
|
2602
|
+
action_type: "SIMULATE_KEYPAD_CODE_ENTRY";
|
|
2603
|
+
} | {
|
|
2604
|
+
error: null;
|
|
2605
|
+
status: "pending";
|
|
2606
|
+
action_attempt_id: string;
|
|
2607
|
+
result: null;
|
|
2608
|
+
action_type: "SIMULATE_MANUAL_LOCK_VIA_KEYPAD";
|
|
2609
|
+
} | {
|
|
2610
|
+
error: null;
|
|
2611
|
+
status: "success";
|
|
2612
|
+
action_attempt_id: string;
|
|
2613
|
+
result: {};
|
|
2614
|
+
action_type: "SIMULATE_MANUAL_LOCK_VIA_KEYPAD";
|
|
2615
|
+
} | {
|
|
2616
|
+
error: {
|
|
2617
|
+
type: string;
|
|
2618
|
+
message: string;
|
|
2619
|
+
};
|
|
2620
|
+
status: "error";
|
|
2621
|
+
action_attempt_id: string;
|
|
2622
|
+
result: null;
|
|
2623
|
+
action_type: "SIMULATE_MANUAL_LOCK_VIA_KEYPAD";
|
|
2624
|
+
} | {
|
|
2625
|
+
error: null;
|
|
2626
|
+
status: "pending";
|
|
2627
|
+
action_attempt_id: string;
|
|
2628
|
+
result: null;
|
|
2629
|
+
action_type: "PUSH_THERMOSTAT_PROGRAMS";
|
|
2630
|
+
} | {
|
|
2631
|
+
error: null;
|
|
2632
|
+
status: "success";
|
|
2633
|
+
action_attempt_id: string;
|
|
2634
|
+
result: {};
|
|
2635
|
+
action_type: "PUSH_THERMOSTAT_PROGRAMS";
|
|
2636
|
+
} | {
|
|
2637
|
+
error: {
|
|
2638
|
+
type: string;
|
|
2639
|
+
message: string;
|
|
2640
|
+
};
|
|
2641
|
+
status: "error";
|
|
2642
|
+
action_attempt_id: string;
|
|
2643
|
+
result: null;
|
|
2644
|
+
action_type: "PUSH_THERMOSTAT_PROGRAMS";
|
|
2304
2645
|
} | {
|
|
2305
2646
|
error: null;
|
|
2306
2647
|
status: "pending";
|
|
@@ -2519,9 +2860,9 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2519
2860
|
warning_message: string;
|
|
2520
2861
|
}[];
|
|
2521
2862
|
acs_credential_on_encoder: {
|
|
2863
|
+
created_at: string | null;
|
|
2522
2864
|
starts_at: string | null;
|
|
2523
2865
|
ends_at: string | null;
|
|
2524
|
-
created_at: string | null;
|
|
2525
2866
|
card_number: string | null;
|
|
2526
2867
|
is_issued: boolean | null;
|
|
2527
2868
|
visionline_metadata?: {
|
|
@@ -2541,6 +2882,7 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2541
2882
|
} | null;
|
|
2542
2883
|
acs_credential_on_seam: {
|
|
2543
2884
|
display_name: string;
|
|
2885
|
+
workspace_id: string;
|
|
2544
2886
|
created_at: string;
|
|
2545
2887
|
errors: {
|
|
2546
2888
|
message: string;
|
|
@@ -2571,7 +2913,6 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2571
2913
|
created_at: string;
|
|
2572
2914
|
warning_code: "needs_to_be_reissued";
|
|
2573
2915
|
})[];
|
|
2574
|
-
workspace_id: string;
|
|
2575
2916
|
is_managed: true;
|
|
2576
2917
|
acs_system_id: string;
|
|
2577
2918
|
acs_credential_id: string;
|
|
@@ -2581,16 +2922,17 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2581
2922
|
ends_at?: string | undefined;
|
|
2582
2923
|
visionline_metadata?: {
|
|
2583
2924
|
card_function_type: "guest" | "staff";
|
|
2925
|
+
auto_join?: boolean | undefined;
|
|
2584
2926
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
2585
2927
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
2586
2928
|
common_acs_entrance_ids?: string[] | undefined;
|
|
2587
2929
|
is_valid?: boolean | undefined;
|
|
2588
|
-
auto_join?: boolean | undefined;
|
|
2589
2930
|
card_id?: string | undefined;
|
|
2590
2931
|
credential_id?: string | undefined;
|
|
2591
2932
|
} | undefined;
|
|
2592
2933
|
assa_abloy_vostio_metadata?: {
|
|
2593
2934
|
endpoint_id?: string | undefined;
|
|
2935
|
+
auto_join?: boolean | undefined;
|
|
2594
2936
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
2595
2937
|
key_id?: string | undefined;
|
|
2596
2938
|
key_issuing_request_id?: string | undefined;
|
|
@@ -2598,7 +2940,7 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2598
2940
|
} | undefined;
|
|
2599
2941
|
is_one_time_use?: boolean | undefined;
|
|
2600
2942
|
issued_at?: string | null | undefined;
|
|
2601
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
|
|
2943
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
2602
2944
|
external_type_display_name?: string | undefined;
|
|
2603
2945
|
acs_user_id?: string | undefined;
|
|
2604
2946
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -2610,6 +2952,7 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2610
2952
|
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
2611
2953
|
} | {
|
|
2612
2954
|
display_name: string;
|
|
2955
|
+
workspace_id: string;
|
|
2613
2956
|
created_at: string;
|
|
2614
2957
|
errors: {
|
|
2615
2958
|
message: string;
|
|
@@ -2640,7 +2983,6 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2640
2983
|
created_at: string;
|
|
2641
2984
|
warning_code: "needs_to_be_reissued";
|
|
2642
2985
|
})[];
|
|
2643
|
-
workspace_id: string;
|
|
2644
2986
|
is_managed: false;
|
|
2645
2987
|
acs_system_id: string;
|
|
2646
2988
|
acs_credential_id: string;
|
|
@@ -2650,16 +2992,17 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2650
2992
|
ends_at?: string | undefined;
|
|
2651
2993
|
visionline_metadata?: {
|
|
2652
2994
|
card_function_type: "guest" | "staff";
|
|
2995
|
+
auto_join?: boolean | undefined;
|
|
2653
2996
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
2654
2997
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
2655
2998
|
common_acs_entrance_ids?: string[] | undefined;
|
|
2656
2999
|
is_valid?: boolean | undefined;
|
|
2657
|
-
auto_join?: boolean | undefined;
|
|
2658
3000
|
card_id?: string | undefined;
|
|
2659
3001
|
credential_id?: string | undefined;
|
|
2660
3002
|
} | undefined;
|
|
2661
3003
|
assa_abloy_vostio_metadata?: {
|
|
2662
3004
|
endpoint_id?: string | undefined;
|
|
3005
|
+
auto_join?: boolean | undefined;
|
|
2663
3006
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
2664
3007
|
key_id?: string | undefined;
|
|
2665
3008
|
key_issuing_request_id?: string | undefined;
|
|
@@ -2667,7 +3010,7 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2667
3010
|
} | undefined;
|
|
2668
3011
|
is_one_time_use?: boolean | undefined;
|
|
2669
3012
|
issued_at?: string | null | undefined;
|
|
2670
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
|
|
3013
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
2671
3014
|
external_type_display_name?: string | undefined;
|
|
2672
3015
|
acs_user_id?: string | undefined;
|
|
2673
3016
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -2695,6 +3038,48 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2695
3038
|
action_attempt_id: string;
|
|
2696
3039
|
result: null;
|
|
2697
3040
|
action_type: "SCAN_CREDENTIAL";
|
|
3041
|
+
} | {
|
|
3042
|
+
error: null;
|
|
3043
|
+
status: "pending";
|
|
3044
|
+
action_attempt_id: string;
|
|
3045
|
+
result: null;
|
|
3046
|
+
action_type: "ENCODE_ACCESS_METHOD";
|
|
3047
|
+
} | {
|
|
3048
|
+
error: null;
|
|
3049
|
+
status: "success";
|
|
3050
|
+
action_attempt_id: string;
|
|
3051
|
+
result: {
|
|
3052
|
+
display_name: string;
|
|
3053
|
+
workspace_id: string;
|
|
3054
|
+
created_at: string;
|
|
3055
|
+
mode: "code" | "card" | "mobile_key";
|
|
3056
|
+
access_method_id: string;
|
|
3057
|
+
issued_at?: string | undefined;
|
|
3058
|
+
instant_key_url?: string | undefined;
|
|
3059
|
+
is_card_encoding_required?: boolean | undefined;
|
|
3060
|
+
};
|
|
3061
|
+
action_type: "ENCODE_ACCESS_METHOD";
|
|
3062
|
+
} | {
|
|
3063
|
+
error: {
|
|
3064
|
+
type: "uncategorized_error";
|
|
3065
|
+
message: string;
|
|
3066
|
+
} | {
|
|
3067
|
+
type: "action_attempt_expired";
|
|
3068
|
+
message: string;
|
|
3069
|
+
} | {
|
|
3070
|
+
type: "no_credential_on_encoder";
|
|
3071
|
+
message: string;
|
|
3072
|
+
} | {
|
|
3073
|
+
type: "incompatible_card_format";
|
|
3074
|
+
message: string;
|
|
3075
|
+
} | {
|
|
3076
|
+
type: "credential_cannot_be_reissued";
|
|
3077
|
+
message: string;
|
|
3078
|
+
};
|
|
3079
|
+
status: "error";
|
|
3080
|
+
action_attempt_id: string;
|
|
3081
|
+
result: null;
|
|
3082
|
+
action_type: "ENCODE_ACCESS_METHOD";
|
|
2698
3083
|
} | {
|
|
2699
3084
|
error: null;
|
|
2700
3085
|
status: "pending";
|
|
@@ -2707,6 +3092,7 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2707
3092
|
action_attempt_id: string;
|
|
2708
3093
|
result: {
|
|
2709
3094
|
display_name: string;
|
|
3095
|
+
workspace_id: string;
|
|
2710
3096
|
created_at: string;
|
|
2711
3097
|
errors: {
|
|
2712
3098
|
message: string;
|
|
@@ -2737,7 +3123,6 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2737
3123
|
created_at: string;
|
|
2738
3124
|
warning_code: "needs_to_be_reissued";
|
|
2739
3125
|
})[];
|
|
2740
|
-
workspace_id: string;
|
|
2741
3126
|
is_managed: true;
|
|
2742
3127
|
acs_system_id: string;
|
|
2743
3128
|
acs_credential_id: string;
|
|
@@ -2747,16 +3132,17 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2747
3132
|
ends_at?: string | undefined;
|
|
2748
3133
|
visionline_metadata?: {
|
|
2749
3134
|
card_function_type: "guest" | "staff";
|
|
3135
|
+
auto_join?: boolean | undefined;
|
|
2750
3136
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
2751
3137
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
2752
3138
|
common_acs_entrance_ids?: string[] | undefined;
|
|
2753
3139
|
is_valid?: boolean | undefined;
|
|
2754
|
-
auto_join?: boolean | undefined;
|
|
2755
3140
|
card_id?: string | undefined;
|
|
2756
3141
|
credential_id?: string | undefined;
|
|
2757
3142
|
} | undefined;
|
|
2758
3143
|
assa_abloy_vostio_metadata?: {
|
|
2759
3144
|
endpoint_id?: string | undefined;
|
|
3145
|
+
auto_join?: boolean | undefined;
|
|
2760
3146
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
2761
3147
|
key_id?: string | undefined;
|
|
2762
3148
|
key_issuing_request_id?: string | undefined;
|
|
@@ -2764,7 +3150,7 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2764
3150
|
} | undefined;
|
|
2765
3151
|
is_one_time_use?: boolean | undefined;
|
|
2766
3152
|
issued_at?: string | null | undefined;
|
|
2767
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
|
|
3153
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
2768
3154
|
external_type_display_name?: string | undefined;
|
|
2769
3155
|
acs_user_id?: string | undefined;
|
|
2770
3156
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -2776,6 +3162,7 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2776
3162
|
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
2777
3163
|
} | {
|
|
2778
3164
|
display_name: string;
|
|
3165
|
+
workspace_id: string;
|
|
2779
3166
|
created_at: string;
|
|
2780
3167
|
errors: {
|
|
2781
3168
|
message: string;
|
|
@@ -2806,7 +3193,6 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2806
3193
|
created_at: string;
|
|
2807
3194
|
warning_code: "needs_to_be_reissued";
|
|
2808
3195
|
})[];
|
|
2809
|
-
workspace_id: string;
|
|
2810
3196
|
is_managed: false;
|
|
2811
3197
|
acs_system_id: string;
|
|
2812
3198
|
acs_credential_id: string;
|
|
@@ -2816,16 +3202,17 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2816
3202
|
ends_at?: string | undefined;
|
|
2817
3203
|
visionline_metadata?: {
|
|
2818
3204
|
card_function_type: "guest" | "staff";
|
|
3205
|
+
auto_join?: boolean | undefined;
|
|
2819
3206
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
2820
3207
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
2821
3208
|
common_acs_entrance_ids?: string[] | undefined;
|
|
2822
3209
|
is_valid?: boolean | undefined;
|
|
2823
|
-
auto_join?: boolean | undefined;
|
|
2824
3210
|
card_id?: string | undefined;
|
|
2825
3211
|
credential_id?: string | undefined;
|
|
2826
3212
|
} | undefined;
|
|
2827
3213
|
assa_abloy_vostio_metadata?: {
|
|
2828
3214
|
endpoint_id?: string | undefined;
|
|
3215
|
+
auto_join?: boolean | undefined;
|
|
2829
3216
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
2830
3217
|
key_id?: string | undefined;
|
|
2831
3218
|
key_issuing_request_id?: string | undefined;
|
|
@@ -2833,7 +3220,7 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2833
3220
|
} | undefined;
|
|
2834
3221
|
is_one_time_use?: boolean | undefined;
|
|
2835
3222
|
issued_at?: string | null | undefined;
|
|
2836
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | undefined;
|
|
3223
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
2837
3224
|
external_type_display_name?: string | undefined;
|
|
2838
3225
|
acs_user_id?: string | undefined;
|
|
2839
3226
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -2950,6 +3337,69 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2950
3337
|
action_attempt_id: string;
|
|
2951
3338
|
result: null;
|
|
2952
3339
|
action_type: "ACTIVATE_CLIMATE_PRESET";
|
|
3340
|
+
} | {
|
|
3341
|
+
error: null;
|
|
3342
|
+
status: "pending";
|
|
3343
|
+
action_attempt_id: string;
|
|
3344
|
+
result: null;
|
|
3345
|
+
action_type: "SIMULATE_KEYPAD_CODE_ENTRY";
|
|
3346
|
+
} | {
|
|
3347
|
+
error: null;
|
|
3348
|
+
status: "success";
|
|
3349
|
+
action_attempt_id: string;
|
|
3350
|
+
result: {};
|
|
3351
|
+
action_type: "SIMULATE_KEYPAD_CODE_ENTRY";
|
|
3352
|
+
} | {
|
|
3353
|
+
error: {
|
|
3354
|
+
type: string;
|
|
3355
|
+
message: string;
|
|
3356
|
+
};
|
|
3357
|
+
status: "error";
|
|
3358
|
+
action_attempt_id: string;
|
|
3359
|
+
result: null;
|
|
3360
|
+
action_type: "SIMULATE_KEYPAD_CODE_ENTRY";
|
|
3361
|
+
} | {
|
|
3362
|
+
error: null;
|
|
3363
|
+
status: "pending";
|
|
3364
|
+
action_attempt_id: string;
|
|
3365
|
+
result: null;
|
|
3366
|
+
action_type: "SIMULATE_MANUAL_LOCK_VIA_KEYPAD";
|
|
3367
|
+
} | {
|
|
3368
|
+
error: null;
|
|
3369
|
+
status: "success";
|
|
3370
|
+
action_attempt_id: string;
|
|
3371
|
+
result: {};
|
|
3372
|
+
action_type: "SIMULATE_MANUAL_LOCK_VIA_KEYPAD";
|
|
3373
|
+
} | {
|
|
3374
|
+
error: {
|
|
3375
|
+
type: string;
|
|
3376
|
+
message: string;
|
|
3377
|
+
};
|
|
3378
|
+
status: "error";
|
|
3379
|
+
action_attempt_id: string;
|
|
3380
|
+
result: null;
|
|
3381
|
+
action_type: "SIMULATE_MANUAL_LOCK_VIA_KEYPAD";
|
|
3382
|
+
} | {
|
|
3383
|
+
error: null;
|
|
3384
|
+
status: "pending";
|
|
3385
|
+
action_attempt_id: string;
|
|
3386
|
+
result: null;
|
|
3387
|
+
action_type: "PUSH_THERMOSTAT_PROGRAMS";
|
|
3388
|
+
} | {
|
|
3389
|
+
error: null;
|
|
3390
|
+
status: "success";
|
|
3391
|
+
action_attempt_id: string;
|
|
3392
|
+
result: {};
|
|
3393
|
+
action_type: "PUSH_THERMOSTAT_PROGRAMS";
|
|
3394
|
+
} | {
|
|
3395
|
+
error: {
|
|
3396
|
+
type: string;
|
|
3397
|
+
message: string;
|
|
3398
|
+
};
|
|
3399
|
+
status: "error";
|
|
3400
|
+
action_attempt_id: string;
|
|
3401
|
+
result: null;
|
|
3402
|
+
action_type: "PUSH_THERMOSTAT_PROGRAMS";
|
|
2953
3403
|
} | {
|
|
2954
3404
|
error: null;
|
|
2955
3405
|
status: "pending";
|
|
@@ -3191,6 +3641,8 @@ declare class SeamHttp {
|
|
|
3191
3641
|
createPaginator<const TResponse, const TResponseKey extends keyof TResponse>(request: SeamHttpRequest<TResponse, TResponseKey>): SeamPaginator<TResponse, TResponseKey>;
|
|
3192
3642
|
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
3193
3643
|
get accessCodes(): SeamHttpAccessCodes;
|
|
3644
|
+
get accessGrants(): SeamHttpAccessGrants;
|
|
3645
|
+
get accessMethods(): SeamHttpAccessMethods;
|
|
3194
3646
|
get acs(): SeamHttpAcs;
|
|
3195
3647
|
get actionAttempts(): SeamHttpActionAttempts;
|
|
3196
3648
|
get clientSessions(): SeamHttpClientSessions;
|
|
@@ -3199,9 +3651,9 @@ declare class SeamHttp {
|
|
|
3199
3651
|
get devices(): SeamHttpDevices;
|
|
3200
3652
|
get events(): SeamHttpEvents;
|
|
3201
3653
|
get locks(): SeamHttpLocks;
|
|
3202
|
-
get networks(): SeamHttpNetworks;
|
|
3203
3654
|
get noiseSensors(): SeamHttpNoiseSensors;
|
|
3204
3655
|
get phones(): SeamHttpPhones;
|
|
3656
|
+
get spaces(): SeamHttpSpaces;
|
|
3205
3657
|
get thermostats(): SeamHttpThermostats;
|
|
3206
3658
|
get userIdentities(): SeamHttpUserIdentities;
|
|
3207
3659
|
get webhooks(): SeamHttpWebhooks;
|
|
@@ -3255,4 +3707,4 @@ declare const isPublishableKey: (token: string) => boolean;
|
|
|
3255
3707
|
declare const isConsoleSessionToken: (token: string) => boolean;
|
|
3256
3708
|
declare const isPersonalAccessToken: (token: string) => boolean;
|
|
3257
3709
|
|
|
3258
|
-
export { type AccessCodesCreateBody, type AccessCodesCreateMultipleBody, type AccessCodesCreateMultipleOptions, type AccessCodesCreateMultipleResponse, type AccessCodesCreateOptions, type AccessCodesCreateResponse, type AccessCodesDeleteOptions, type AccessCodesDeleteParams, type AccessCodesDeleteResponse, type AccessCodesGenerateCodeBody, type AccessCodesGenerateCodeOptions, type AccessCodesGenerateCodeResponse, type AccessCodesGetOptions, type AccessCodesGetParams, type AccessCodesGetResponse, type AccessCodesListOptions, type AccessCodesListParams, type AccessCodesListResponse, type AccessCodesPullBackupAccessCodeBody, type AccessCodesPullBackupAccessCodeOptions, type AccessCodesPullBackupAccessCodeResponse, type AccessCodesSimulateCreateUnmanagedAccessCodeBody, type AccessCodesSimulateCreateUnmanagedAccessCodeOptions, type AccessCodesSimulateCreateUnmanagedAccessCodeResponse, type AccessCodesUnmanagedConvertToManagedBody, type AccessCodesUnmanagedConvertToManagedOptions, type AccessCodesUnmanagedConvertToManagedResponse, type AccessCodesUnmanagedDeleteOptions, type AccessCodesUnmanagedDeleteParams, type AccessCodesUnmanagedDeleteResponse, type AccessCodesUnmanagedGetOptions, type AccessCodesUnmanagedGetParams, type AccessCodesUnmanagedGetResponse, type AccessCodesUnmanagedListOptions, type AccessCodesUnmanagedListParams, type AccessCodesUnmanagedListResponse, type AccessCodesUnmanagedUpdateBody, type AccessCodesUnmanagedUpdateOptions, type AccessCodesUnmanagedUpdateResponse, type AccessCodesUpdateBody, type AccessCodesUpdateMultipleBody, type AccessCodesUpdateMultipleOptions, type AccessCodesUpdateMultipleResponse, type AccessCodesUpdateOptions, type AccessCodesUpdateResponse, type AcsAccessGroupsAddUserBody, type AcsAccessGroupsAddUserOptions, type AcsAccessGroupsAddUserResponse, type AcsAccessGroupsGetOptions, type AcsAccessGroupsGetParams, type AcsAccessGroupsGetResponse, type AcsAccessGroupsListAccessibleEntrancesOptions, type AcsAccessGroupsListAccessibleEntrancesParams, type AcsAccessGroupsListAccessibleEntrancesResponse, type AcsAccessGroupsListOptions, type AcsAccessGroupsListParams, type AcsAccessGroupsListResponse, type AcsAccessGroupsListUsersOptions, type AcsAccessGroupsListUsersParams, type AcsAccessGroupsListUsersResponse, type AcsAccessGroupsRemoveUserOptions, type AcsAccessGroupsRemoveUserParams, type AcsAccessGroupsRemoveUserResponse, type AcsCredentialsAssignBody, type AcsCredentialsAssignOptions, type AcsCredentialsAssignResponse, type AcsCredentialsCreateBody, type AcsCredentialsCreateOptions, type AcsCredentialsCreateResponse, type AcsCredentialsDeleteOptions, type AcsCredentialsDeleteParams, type AcsCredentialsDeleteResponse, type AcsCredentialsGetOptions, type AcsCredentialsGetParams, type AcsCredentialsGetResponse, type AcsCredentialsListAccessibleEntrancesOptions, type AcsCredentialsListAccessibleEntrancesParams, type AcsCredentialsListAccessibleEntrancesResponse, type AcsCredentialsListOptions, type AcsCredentialsListParams, type AcsCredentialsListResponse, type AcsCredentialsUnassignBody, type AcsCredentialsUnassignOptions, type AcsCredentialsUnassignResponse, type AcsCredentialsUpdateBody, type AcsCredentialsUpdateOptions, type AcsCredentialsUpdateResponse, type AcsEncodersEncodeCredentialBody, type AcsEncodersEncodeCredentialOptions, type AcsEncodersEncodeCredentialResponse, type AcsEncodersGetOptions, type AcsEncodersGetParams, type AcsEncodersGetResponse, type AcsEncodersListOptions, type AcsEncodersListParams, type AcsEncodersListResponse, type AcsEncodersScanCredentialBody, type AcsEncodersScanCredentialOptions, type AcsEncodersScanCredentialResponse, type AcsEncodersSimulateNextCredentialEncodeWillFailBody, type AcsEncodersSimulateNextCredentialEncodeWillFailOptions, type AcsEncodersSimulateNextCredentialEncodeWillFailResponse, type AcsEncodersSimulateNextCredentialEncodeWillSucceedBody, type AcsEncodersSimulateNextCredentialEncodeWillSucceedOptions, type AcsEncodersSimulateNextCredentialEncodeWillSucceedResponse, type AcsEncodersSimulateNextCredentialScanWillFailBody, type AcsEncodersSimulateNextCredentialScanWillFailOptions, type AcsEncodersSimulateNextCredentialScanWillFailResponse, type AcsEncodersSimulateNextCredentialScanWillSucceedBody, type AcsEncodersSimulateNextCredentialScanWillSucceedOptions, type AcsEncodersSimulateNextCredentialScanWillSucceedResponse, type AcsEntrancesGetOptions, type AcsEntrancesGetParams, type AcsEntrancesGetResponse, type AcsEntrancesGrantAccessBody, type AcsEntrancesGrantAccessOptions, type AcsEntrancesGrantAccessResponse, type AcsEntrancesListCredentialsWithAccessOptions, type AcsEntrancesListCredentialsWithAccessParams, type AcsEntrancesListCredentialsWithAccessResponse, type AcsEntrancesListOptions, type AcsEntrancesListParams, type AcsEntrancesListResponse, type AcsSystemsGetOptions, type AcsSystemsGetParams, type AcsSystemsGetResponse, type AcsSystemsListCompatibleCredentialManagerAcsSystemsOptions, type AcsSystemsListCompatibleCredentialManagerAcsSystemsParams, type AcsSystemsListCompatibleCredentialManagerAcsSystemsResponse, type AcsSystemsListOptions, type AcsSystemsListParams, type AcsSystemsListResponse, type AcsUsersAddToAccessGroupBody, type AcsUsersAddToAccessGroupOptions, type AcsUsersAddToAccessGroupResponse, type AcsUsersCreateBody, type AcsUsersCreateOptions, type AcsUsersCreateResponse, type AcsUsersDeleteOptions, type AcsUsersDeleteParams, type AcsUsersDeleteResponse, type AcsUsersGetOptions, type AcsUsersGetParams, type AcsUsersGetResponse, type AcsUsersListAccessibleEntrancesOptions, type AcsUsersListAccessibleEntrancesParams, type AcsUsersListAccessibleEntrancesResponse, type AcsUsersListOptions, type AcsUsersListParams, type AcsUsersListResponse, type AcsUsersRemoveFromAccessGroupOptions, type AcsUsersRemoveFromAccessGroupParams, type AcsUsersRemoveFromAccessGroupResponse, type AcsUsersRevokeAccessToAllEntrancesOptions, type AcsUsersRevokeAccessToAllEntrancesParams, type AcsUsersRevokeAccessToAllEntrancesResponse, type AcsUsersSuspendBody, type AcsUsersSuspendOptions, type AcsUsersSuspendResponse, type AcsUsersUnsuspendBody, type AcsUsersUnsuspendOptions, type AcsUsersUnsuspendResponse, type AcsUsersUpdateBody, type AcsUsersUpdateOptions, type AcsUsersUpdateResponse, type ActionAttemptsGetOptions, type ActionAttemptsGetParams, type ActionAttemptsGetResponse, type ActionAttemptsListOptions, type ActionAttemptsListParams, type ActionAttemptsListResponse, type BridgesGetOptions, type BridgesGetParams, type BridgesGetResponse, type BridgesListOptions, type BridgesListParams, type BridgesListResponse, type ClientSessionsCreateBody, type ClientSessionsCreateOptions, type ClientSessionsCreateResponse, type ClientSessionsDeleteOptions, type ClientSessionsDeleteParams, type ClientSessionsDeleteResponse, type ClientSessionsGetOptions, type ClientSessionsGetOrCreateBody, type ClientSessionsGetOrCreateOptions, type ClientSessionsGetOrCreateResponse, type ClientSessionsGetParams, type ClientSessionsGetResponse, type ClientSessionsGrantAccessBody, type ClientSessionsGrantAccessOptions, type ClientSessionsGrantAccessResponse, type ClientSessionsListOptions, type ClientSessionsListParams, type ClientSessionsListResponse, type ClientSessionsRevokeOptions, type ClientSessionsRevokeParams, type ClientSessionsRevokeResponse, type ConnectWebviewsCreateBody, type ConnectWebviewsCreateOptions, type ConnectWebviewsCreateResponse, type ConnectWebviewsDeleteOptions, type ConnectWebviewsDeleteParams, type ConnectWebviewsDeleteResponse, type ConnectWebviewsGetOptions, type ConnectWebviewsGetParams, type ConnectWebviewsGetResponse, type ConnectWebviewsListOptions, type ConnectWebviewsListParams, type ConnectWebviewsListResponse, type ConnectedAccountsDeleteOptions, type ConnectedAccountsDeleteParams, type ConnectedAccountsDeleteResponse, type ConnectedAccountsGetOptions, type ConnectedAccountsGetParams, type ConnectedAccountsGetResponse, type ConnectedAccountsListOptions, type ConnectedAccountsListParams, type ConnectedAccountsListResponse, type ConnectedAccountsUpdateBody, type ConnectedAccountsUpdateOptions, type ConnectedAccountsUpdateResponse, type DevicesGetOptions, type DevicesGetParams, type DevicesGetResponse, type DevicesListDeviceProvidersOptions, type DevicesListDeviceProvidersParams, type DevicesListDeviceProvidersResponse, type DevicesListOptions, type DevicesListParams, type DevicesListResponse, type DevicesSimulateConnectBody, type DevicesSimulateConnectOptions, type DevicesSimulateConnectResponse, type DevicesSimulateDisconnectBody, type DevicesSimulateDisconnectOptions, type DevicesSimulateDisconnectResponse, type DevicesSimulateRemoveBody, type DevicesSimulateRemoveOptions, type DevicesSimulateRemoveResponse, type DevicesUnmanagedGetOptions, type DevicesUnmanagedGetParams, type DevicesUnmanagedGetResponse, type DevicesUnmanagedListOptions, type DevicesUnmanagedListParams, type DevicesUnmanagedListResponse, type DevicesUnmanagedUpdateBody, type DevicesUnmanagedUpdateOptions, type DevicesUnmanagedUpdateResponse, type DevicesUpdateBody, type DevicesUpdateOptions, type DevicesUpdateResponse, type EventsGetOptions, type EventsGetParams, type EventsGetResponse, type EventsListOptions, type EventsListParams, type EventsListResponse, type LocksGetOptions, type LocksGetParams, type LocksGetResponse, type LocksListOptions, type LocksListParams, type LocksListResponse, type LocksLockDoorBody, type LocksLockDoorOptions, type LocksLockDoorResponse, type LocksUnlockDoorBody, type LocksUnlockDoorOptions, type LocksUnlockDoorResponse, type NetworksGetOptions, type NetworksGetParams, type NetworksGetResponse, type NetworksListOptions, type NetworksListParams, type NetworksListResponse, type NoiseSensorsListOptions, type NoiseSensorsListParams, type NoiseSensorsListResponse, type NoiseSensorsNoiseThresholdsCreateBody, type NoiseSensorsNoiseThresholdsCreateOptions, type NoiseSensorsNoiseThresholdsCreateResponse, type NoiseSensorsNoiseThresholdsDeleteOptions, type NoiseSensorsNoiseThresholdsDeleteParams, type NoiseSensorsNoiseThresholdsDeleteResponse, type NoiseSensorsNoiseThresholdsGetOptions, type NoiseSensorsNoiseThresholdsGetParams, type NoiseSensorsNoiseThresholdsGetResponse, type NoiseSensorsNoiseThresholdsListOptions, type NoiseSensorsNoiseThresholdsListParams, type NoiseSensorsNoiseThresholdsListResponse, type NoiseSensorsNoiseThresholdsUpdateBody, type NoiseSensorsNoiseThresholdsUpdateOptions, type NoiseSensorsNoiseThresholdsUpdateResponse, type NoiseSensorsSimulateTriggerNoiseThresholdBody, type NoiseSensorsSimulateTriggerNoiseThresholdOptions, type NoiseSensorsSimulateTriggerNoiseThresholdResponse, type PhonesDeactivateOptions, type PhonesDeactivateParams, type PhonesDeactivateResponse, type PhonesGetOptions, type PhonesGetParams, type PhonesGetResponse, type PhonesListOptions, type PhonesListParams, type PhonesListResponse, type PhonesSimulateCreateSandboxPhoneBody, type PhonesSimulateCreateSandboxPhoneOptions, type PhonesSimulateCreateSandboxPhoneResponse, SeamActionAttemptError, SeamActionAttemptFailedError, SeamActionAttemptTimeoutError, SeamHttp, SeamHttpAccessCodes, SeamHttpAccessCodesSimulate, SeamHttpAccessCodesUnmanaged, SeamHttpAcs, SeamHttpAcsAccessGroups, SeamHttpAcsCredentials, SeamHttpAcsEncoders, SeamHttpAcsEncodersSimulate, SeamHttpAcsEntrances, SeamHttpAcsSystems, SeamHttpAcsUsers, SeamHttpActionAttempts, SeamHttpApiError, SeamHttpBridges, SeamHttpClientSessions, SeamHttpConnectWebviews, SeamHttpConnectedAccounts, SeamHttpDevices, SeamHttpDevicesSimulate, SeamHttpDevicesUnmanaged, SeamHttpEvents, type SeamHttpFromPublishableKeyOptions, SeamHttpInvalidInputError, SeamHttpInvalidOptionsError, SeamHttpInvalidTokenError, SeamHttpLocks, SeamHttpMultiWorkspace, SeamHttpMultiWorkspaceInvalidOptionsError, type SeamHttpMultiWorkspaceOptions, type SeamHttpMultiWorkspaceOptionsFromEnv, type SeamHttpMultiWorkspaceOptionsWithClient, type SeamHttpMultiWorkspaceOptionsWithConsoleSessionToken, type SeamHttpMultiWorkspaceOptionsWithPersonalAccessToken, SeamHttpNetworks, SeamHttpNoiseSensors, SeamHttpNoiseSensorsNoiseThresholds, SeamHttpNoiseSensorsSimulate, type SeamHttpOptions, type SeamHttpOptionsFromEnv, type SeamHttpOptionsWithApiKey, type SeamHttpOptionsWithClient, type SeamHttpOptionsWithClientSessionToken, type SeamHttpOptionsWithConsoleSessionToken, type SeamHttpOptionsWithPersonalAccessToken, SeamHttpPhones, SeamHttpPhonesSimulate, SeamHttpRequest, type SeamHttpRequestOptions, SeamHttpThermostats, SeamHttpThermostatsSchedules, SeamHttpThermostatsSimulate, SeamHttpUnauthorizedError, SeamHttpUserIdentities, SeamHttpUserIdentitiesEnrollmentAutomations, SeamHttpWebhooks, SeamHttpWorkspaces, SeamPaginator, type ThermostatsActivateClimatePresetBody, type ThermostatsActivateClimatePresetOptions, type ThermostatsActivateClimatePresetResponse, type ThermostatsCoolBody, type ThermostatsCoolOptions, type ThermostatsCoolResponse, type ThermostatsCreateClimatePresetBody, type ThermostatsCreateClimatePresetOptions, type ThermostatsCreateClimatePresetResponse, type ThermostatsDeleteClimatePresetBody, type ThermostatsDeleteClimatePresetOptions, type ThermostatsDeleteClimatePresetResponse, type ThermostatsHeatBody, type ThermostatsHeatCoolBody, type ThermostatsHeatCoolOptions, type ThermostatsHeatCoolResponse, type ThermostatsHeatOptions, type ThermostatsHeatResponse, type ThermostatsListOptions, type ThermostatsListParams, type ThermostatsListResponse, type ThermostatsOffBody, type ThermostatsOffOptions, type ThermostatsOffResponse, type ThermostatsSchedulesCreateBody, type ThermostatsSchedulesCreateOptions, type ThermostatsSchedulesCreateResponse, type ThermostatsSchedulesDeleteOptions, type ThermostatsSchedulesDeleteParams, type ThermostatsSchedulesDeleteResponse, type ThermostatsSchedulesGetOptions, type ThermostatsSchedulesGetParams, type ThermostatsSchedulesGetResponse, type ThermostatsSchedulesListOptions, type ThermostatsSchedulesListParams, type ThermostatsSchedulesListResponse, type ThermostatsSchedulesUpdateBody, type ThermostatsSchedulesUpdateOptions, type ThermostatsSchedulesUpdateResponse, type ThermostatsSetFallbackClimatePresetBody, type ThermostatsSetFallbackClimatePresetOptions, type ThermostatsSetFallbackClimatePresetResponse, type ThermostatsSetFanModeBody, type ThermostatsSetFanModeOptions, type ThermostatsSetFanModeResponse, type ThermostatsSetHvacModeBody, type ThermostatsSetHvacModeOptions, type ThermostatsSetHvacModeResponse, type ThermostatsSetTemperatureThresholdBody, type ThermostatsSetTemperatureThresholdOptions, type ThermostatsSetTemperatureThresholdResponse, type ThermostatsSimulateHvacModeAdjustedBody, type ThermostatsSimulateHvacModeAdjustedOptions, type ThermostatsSimulateHvacModeAdjustedResponse, type ThermostatsSimulateTemperatureReachedBody, type ThermostatsSimulateTemperatureReachedOptions, type ThermostatsSimulateTemperatureReachedResponse, type ThermostatsUpdateClimatePresetBody, type ThermostatsUpdateClimatePresetOptions, type ThermostatsUpdateClimatePresetResponse, type UserIdentitiesAddAcsUserBody, type UserIdentitiesAddAcsUserOptions, type UserIdentitiesAddAcsUserResponse, type UserIdentitiesCreateBody, type UserIdentitiesCreateOptions, type UserIdentitiesCreateResponse, type UserIdentitiesDeleteOptions, type UserIdentitiesDeleteParams, type UserIdentitiesDeleteResponse, type UserIdentitiesEnrollmentAutomationsDeleteOptions, type UserIdentitiesEnrollmentAutomationsDeleteParams, type UserIdentitiesEnrollmentAutomationsDeleteResponse, type UserIdentitiesEnrollmentAutomationsGetOptions, type UserIdentitiesEnrollmentAutomationsGetParams, type UserIdentitiesEnrollmentAutomationsGetResponse, type UserIdentitiesEnrollmentAutomationsLaunchBody, type UserIdentitiesEnrollmentAutomationsLaunchOptions, type UserIdentitiesEnrollmentAutomationsLaunchResponse, type UserIdentitiesEnrollmentAutomationsListOptions, type UserIdentitiesEnrollmentAutomationsListParams, type UserIdentitiesEnrollmentAutomationsListResponse, type UserIdentitiesGenerateInstantKeyBody, type UserIdentitiesGenerateInstantKeyOptions, type UserIdentitiesGenerateInstantKeyResponse, type UserIdentitiesGetOptions, type UserIdentitiesGetParams, type UserIdentitiesGetResponse, type UserIdentitiesGrantAccessToDeviceBody, type UserIdentitiesGrantAccessToDeviceOptions, type UserIdentitiesGrantAccessToDeviceResponse, type UserIdentitiesListAccessibleDevicesOptions, type UserIdentitiesListAccessibleDevicesParams, type UserIdentitiesListAccessibleDevicesResponse, type UserIdentitiesListAcsSystemsOptions, type UserIdentitiesListAcsSystemsParams, type UserIdentitiesListAcsSystemsResponse, type UserIdentitiesListAcsUsersOptions, type UserIdentitiesListAcsUsersParams, type UserIdentitiesListAcsUsersResponse, type UserIdentitiesListOptions, type UserIdentitiesListParams, type UserIdentitiesListResponse, type UserIdentitiesRemoveAcsUserOptions, type UserIdentitiesRemoveAcsUserParams, type UserIdentitiesRemoveAcsUserResponse, type UserIdentitiesRevokeAccessToDeviceOptions, type UserIdentitiesRevokeAccessToDeviceParams, type UserIdentitiesRevokeAccessToDeviceResponse, type UserIdentitiesUpdateBody, type UserIdentitiesUpdateOptions, type UserIdentitiesUpdateResponse, type WebhooksCreateBody, type WebhooksCreateOptions, type WebhooksCreateResponse, type WebhooksDeleteOptions, type WebhooksDeleteParams, type WebhooksDeleteResponse, type WebhooksGetOptions, type WebhooksGetParams, type WebhooksGetResponse, type WebhooksListOptions, type WebhooksListParams, type WebhooksListResponse, type WebhooksUpdateBody, type WebhooksUpdateOptions, type WebhooksUpdateResponse, type WorkspacesCreateBody, type WorkspacesCreateOptions, type WorkspacesCreateResponse, type WorkspacesGetOptions, type WorkspacesGetParams, type WorkspacesGetResponse, type WorkspacesListOptions, type WorkspacesListParams, type WorkspacesListResponse, type WorkspacesResetSandboxBody, type WorkspacesResetSandboxOptions, type WorkspacesResetSandboxResponse, errorInterceptor, getOpenapiSchema, isApiKey, isClientSessionToken, isConsoleSessionToken, isPersonalAccessToken, isPublishableKey, isSeamActionAttemptError, isSeamActionAttemptFailedError, isSeamActionAttemptTimeoutError, isSeamHttpApiError, isSeamHttpInvalidInputError, isSeamHttpMultiWorkspaceOptionsWithClient, isSeamHttpMultiWorkspaceOptionsWithConsoleSessionToken, isSeamHttpMultiWorkspaceOptionsWithPersonalAccessToken, isSeamHttpOptionsWithApiKey, isSeamHttpOptionsWithClient, isSeamHttpOptionsWithClientSessionToken, isSeamHttpOptionsWithConsoleSessionToken, isSeamHttpOptionsWithPersonalAccessToken, isSeamHttpUnauthorizedError };
|
|
3710
|
+
export { type AccessCodesCreateBody, type AccessCodesCreateMultipleBody, type AccessCodesCreateMultipleOptions, type AccessCodesCreateMultipleResponse, type AccessCodesCreateOptions, type AccessCodesCreateResponse, type AccessCodesDeleteOptions, type AccessCodesDeleteParams, type AccessCodesDeleteResponse, type AccessCodesGenerateCodeBody, type AccessCodesGenerateCodeOptions, type AccessCodesGenerateCodeResponse, type AccessCodesGetOptions, type AccessCodesGetParams, type AccessCodesGetResponse, type AccessCodesListOptions, type AccessCodesListParams, type AccessCodesListResponse, type AccessCodesPullBackupAccessCodeBody, type AccessCodesPullBackupAccessCodeOptions, type AccessCodesPullBackupAccessCodeResponse, type AccessCodesReportDeviceConstraintsBody, type AccessCodesReportDeviceConstraintsOptions, type AccessCodesReportDeviceConstraintsResponse, type AccessCodesSimulateCreateUnmanagedAccessCodeBody, type AccessCodesSimulateCreateUnmanagedAccessCodeOptions, type AccessCodesSimulateCreateUnmanagedAccessCodeResponse, type AccessCodesUnmanagedConvertToManagedBody, type AccessCodesUnmanagedConvertToManagedOptions, type AccessCodesUnmanagedConvertToManagedResponse, type AccessCodesUnmanagedDeleteOptions, type AccessCodesUnmanagedDeleteParams, type AccessCodesUnmanagedDeleteResponse, type AccessCodesUnmanagedGetOptions, type AccessCodesUnmanagedGetParams, type AccessCodesUnmanagedGetResponse, type AccessCodesUnmanagedListOptions, type AccessCodesUnmanagedListParams, type AccessCodesUnmanagedListResponse, type AccessCodesUnmanagedUpdateBody, type AccessCodesUnmanagedUpdateOptions, type AccessCodesUnmanagedUpdateResponse, type AccessCodesUpdateBody, type AccessCodesUpdateMultipleBody, type AccessCodesUpdateMultipleOptions, type AccessCodesUpdateMultipleResponse, type AccessCodesUpdateOptions, type AccessCodesUpdateResponse, type AccessGrantsCreateBody, type AccessGrantsCreateOptions, type AccessGrantsCreateResponse, type AccessGrantsDeleteOptions, type AccessGrantsDeleteParams, type AccessGrantsDeleteResponse, type AccessGrantsGetOptions, type AccessGrantsGetParams, type AccessGrantsGetResponse, type AccessGrantsListOptions, type AccessGrantsListParams, type AccessGrantsListResponse, type AccessMethodsDeleteOptions, type AccessMethodsDeleteParams, type AccessMethodsDeleteResponse, type AccessMethodsGetOptions, type AccessMethodsGetParams, type AccessMethodsGetResponse, type AccessMethodsListOptions, type AccessMethodsListParams, type AccessMethodsListResponse, type AcsAccessGroupsAddUserBody, type AcsAccessGroupsAddUserOptions, type AcsAccessGroupsAddUserResponse, type AcsAccessGroupsGetOptions, type AcsAccessGroupsGetParams, type AcsAccessGroupsGetResponse, type AcsAccessGroupsListAccessibleEntrancesOptions, type AcsAccessGroupsListAccessibleEntrancesParams, type AcsAccessGroupsListAccessibleEntrancesResponse, type AcsAccessGroupsListOptions, type AcsAccessGroupsListParams, type AcsAccessGroupsListResponse, type AcsAccessGroupsListUsersOptions, type AcsAccessGroupsListUsersParams, type AcsAccessGroupsListUsersResponse, type AcsAccessGroupsRemoveUserOptions, type AcsAccessGroupsRemoveUserParams, type AcsAccessGroupsRemoveUserResponse, type AcsCredentialsAssignBody, type AcsCredentialsAssignOptions, type AcsCredentialsAssignResponse, type AcsCredentialsCreateBody, type AcsCredentialsCreateOptions, type AcsCredentialsCreateResponse, type AcsCredentialsDeleteOptions, type AcsCredentialsDeleteParams, type AcsCredentialsDeleteResponse, type AcsCredentialsGetOptions, type AcsCredentialsGetParams, type AcsCredentialsGetResponse, type AcsCredentialsListAccessibleEntrancesOptions, type AcsCredentialsListAccessibleEntrancesParams, type AcsCredentialsListAccessibleEntrancesResponse, type AcsCredentialsListOptions, type AcsCredentialsListParams, type AcsCredentialsListResponse, type AcsCredentialsUnassignBody, type AcsCredentialsUnassignOptions, type AcsCredentialsUnassignResponse, type AcsCredentialsUpdateBody, type AcsCredentialsUpdateOptions, type AcsCredentialsUpdateResponse, type AcsEncodersEncodeAccessMethodBody, type AcsEncodersEncodeAccessMethodOptions, type AcsEncodersEncodeAccessMethodResponse, type AcsEncodersEncodeCredentialBody, type AcsEncodersEncodeCredentialOptions, type AcsEncodersEncodeCredentialResponse, type AcsEncodersGetOptions, type AcsEncodersGetParams, type AcsEncodersGetResponse, type AcsEncodersListOptions, type AcsEncodersListParams, type AcsEncodersListResponse, type AcsEncodersScanCredentialBody, type AcsEncodersScanCredentialOptions, type AcsEncodersScanCredentialResponse, type AcsEncodersSimulateNextCredentialEncodeWillFailBody, type AcsEncodersSimulateNextCredentialEncodeWillFailOptions, type AcsEncodersSimulateNextCredentialEncodeWillFailResponse, type AcsEncodersSimulateNextCredentialEncodeWillSucceedBody, type AcsEncodersSimulateNextCredentialEncodeWillSucceedOptions, type AcsEncodersSimulateNextCredentialEncodeWillSucceedResponse, type AcsEncodersSimulateNextCredentialScanWillFailBody, type AcsEncodersSimulateNextCredentialScanWillFailOptions, type AcsEncodersSimulateNextCredentialScanWillFailResponse, type AcsEncodersSimulateNextCredentialScanWillSucceedBody, type AcsEncodersSimulateNextCredentialScanWillSucceedOptions, type AcsEncodersSimulateNextCredentialScanWillSucceedResponse, type AcsEntrancesGetOptions, type AcsEntrancesGetParams, type AcsEntrancesGetResponse, type AcsEntrancesGrantAccessBody, type AcsEntrancesGrantAccessOptions, type AcsEntrancesGrantAccessResponse, type AcsEntrancesListCredentialsWithAccessOptions, type AcsEntrancesListCredentialsWithAccessParams, type AcsEntrancesListCredentialsWithAccessResponse, type AcsEntrancesListOptions, type AcsEntrancesListParams, type AcsEntrancesListResponse, type AcsSystemsGetOptions, type AcsSystemsGetParams, type AcsSystemsGetResponse, type AcsSystemsListCompatibleCredentialManagerAcsSystemsOptions, type AcsSystemsListCompatibleCredentialManagerAcsSystemsParams, type AcsSystemsListCompatibleCredentialManagerAcsSystemsResponse, type AcsSystemsListOptions, type AcsSystemsListParams, type AcsSystemsListResponse, type AcsUsersAddToAccessGroupBody, type AcsUsersAddToAccessGroupOptions, type AcsUsersAddToAccessGroupResponse, type AcsUsersCreateBody, type AcsUsersCreateOptions, type AcsUsersCreateResponse, type AcsUsersDeleteOptions, type AcsUsersDeleteParams, type AcsUsersDeleteResponse, type AcsUsersGetOptions, type AcsUsersGetParams, type AcsUsersGetResponse, type AcsUsersListAccessibleEntrancesOptions, type AcsUsersListAccessibleEntrancesParams, type AcsUsersListAccessibleEntrancesResponse, type AcsUsersListOptions, type AcsUsersListParams, type AcsUsersListResponse, type AcsUsersRemoveFromAccessGroupOptions, type AcsUsersRemoveFromAccessGroupParams, type AcsUsersRemoveFromAccessGroupResponse, type AcsUsersRevokeAccessToAllEntrancesOptions, type AcsUsersRevokeAccessToAllEntrancesParams, type AcsUsersRevokeAccessToAllEntrancesResponse, type AcsUsersSuspendBody, type AcsUsersSuspendOptions, type AcsUsersSuspendResponse, type AcsUsersUnsuspendBody, type AcsUsersUnsuspendOptions, type AcsUsersUnsuspendResponse, type AcsUsersUpdateBody, type AcsUsersUpdateOptions, type AcsUsersUpdateResponse, type ActionAttemptsGetOptions, type ActionAttemptsGetParams, type ActionAttemptsGetResponse, type ActionAttemptsListOptions, type ActionAttemptsListParams, type ActionAttemptsListResponse, type ClientSessionsCreateBody, type ClientSessionsCreateOptions, type ClientSessionsCreateResponse, type ClientSessionsDeleteOptions, type ClientSessionsDeleteParams, type ClientSessionsDeleteResponse, type ClientSessionsGetOptions, type ClientSessionsGetOrCreateBody, type ClientSessionsGetOrCreateOptions, type ClientSessionsGetOrCreateResponse, type ClientSessionsGetParams, type ClientSessionsGetResponse, type ClientSessionsGrantAccessBody, type ClientSessionsGrantAccessOptions, type ClientSessionsGrantAccessResponse, type ClientSessionsListOptions, type ClientSessionsListParams, type ClientSessionsListResponse, type ClientSessionsRevokeOptions, type ClientSessionsRevokeParams, type ClientSessionsRevokeResponse, type ConnectWebviewsCreateBody, type ConnectWebviewsCreateOptions, type ConnectWebviewsCreateResponse, type ConnectWebviewsDeleteOptions, type ConnectWebviewsDeleteParams, type ConnectWebviewsDeleteResponse, type ConnectWebviewsGetOptions, type ConnectWebviewsGetParams, type ConnectWebviewsGetResponse, type ConnectWebviewsListOptions, type ConnectWebviewsListParams, type ConnectWebviewsListResponse, type ConnectedAccountsDeleteOptions, type ConnectedAccountsDeleteParams, type ConnectedAccountsDeleteResponse, type ConnectedAccountsGetOptions, type ConnectedAccountsGetParams, type ConnectedAccountsGetResponse, type ConnectedAccountsListOptions, type ConnectedAccountsListParams, type ConnectedAccountsListResponse, type ConnectedAccountsSyncBody, type ConnectedAccountsSyncOptions, type ConnectedAccountsSyncResponse, type ConnectedAccountsUpdateBody, type ConnectedAccountsUpdateOptions, type ConnectedAccountsUpdateResponse, type DevicesGetOptions, type DevicesGetParams, type DevicesGetResponse, type DevicesListDeviceProvidersOptions, type DevicesListDeviceProvidersParams, type DevicesListDeviceProvidersResponse, type DevicesListOptions, type DevicesListParams, type DevicesListResponse, type DevicesSimulateConnectBody, type DevicesSimulateConnectOptions, type DevicesSimulateConnectResponse, type DevicesSimulateDisconnectBody, type DevicesSimulateDisconnectOptions, type DevicesSimulateDisconnectResponse, type DevicesSimulateRemoveBody, type DevicesSimulateRemoveOptions, type DevicesSimulateRemoveResponse, type DevicesUnmanagedGetOptions, type DevicesUnmanagedGetParams, type DevicesUnmanagedGetResponse, type DevicesUnmanagedListOptions, type DevicesUnmanagedListParams, type DevicesUnmanagedListResponse, type DevicesUnmanagedUpdateBody, type DevicesUnmanagedUpdateOptions, type DevicesUnmanagedUpdateResponse, type DevicesUpdateBody, type DevicesUpdateOptions, type DevicesUpdateResponse, type EventsGetOptions, type EventsGetParams, type EventsGetResponse, type EventsListOptions, type EventsListParams, type EventsListResponse, type LocksGetOptions, type LocksGetParams, type LocksGetResponse, type LocksListOptions, type LocksListParams, type LocksListResponse, type LocksLockDoorBody, type LocksLockDoorOptions, type LocksLockDoorResponse, type LocksUnlockDoorBody, type LocksUnlockDoorOptions, type LocksUnlockDoorResponse, type NoiseSensorsListOptions, type NoiseSensorsListParams, type NoiseSensorsListResponse, type NoiseSensorsNoiseThresholdsCreateBody, type NoiseSensorsNoiseThresholdsCreateOptions, type NoiseSensorsNoiseThresholdsCreateResponse, type NoiseSensorsNoiseThresholdsDeleteOptions, type NoiseSensorsNoiseThresholdsDeleteParams, type NoiseSensorsNoiseThresholdsDeleteResponse, type NoiseSensorsNoiseThresholdsGetOptions, type NoiseSensorsNoiseThresholdsGetParams, type NoiseSensorsNoiseThresholdsGetResponse, type NoiseSensorsNoiseThresholdsListOptions, type NoiseSensorsNoiseThresholdsListParams, type NoiseSensorsNoiseThresholdsListResponse, type NoiseSensorsNoiseThresholdsUpdateBody, type NoiseSensorsNoiseThresholdsUpdateOptions, type NoiseSensorsNoiseThresholdsUpdateResponse, type NoiseSensorsSimulateTriggerNoiseThresholdBody, type NoiseSensorsSimulateTriggerNoiseThresholdOptions, type NoiseSensorsSimulateTriggerNoiseThresholdResponse, type PhonesDeactivateOptions, type PhonesDeactivateParams, type PhonesDeactivateResponse, type PhonesGetOptions, type PhonesGetParams, type PhonesGetResponse, type PhonesListOptions, type PhonesListParams, type PhonesListResponse, type PhonesSimulateCreateSandboxPhoneBody, type PhonesSimulateCreateSandboxPhoneOptions, type PhonesSimulateCreateSandboxPhoneResponse, SeamActionAttemptError, SeamActionAttemptFailedError, SeamActionAttemptTimeoutError, SeamHttp, SeamHttpAccessCodes, SeamHttpAccessCodesSimulate, SeamHttpAccessCodesUnmanaged, SeamHttpAccessGrants, SeamHttpAccessMethods, SeamHttpAcs, SeamHttpAcsAccessGroups, SeamHttpAcsCredentials, SeamHttpAcsEncoders, SeamHttpAcsEncodersSimulate, SeamHttpAcsEntrances, SeamHttpAcsSystems, SeamHttpAcsUsers, SeamHttpActionAttempts, SeamHttpApiError, SeamHttpClientSessions, SeamHttpConnectWebviews, SeamHttpConnectedAccounts, SeamHttpDevices, SeamHttpDevicesSimulate, SeamHttpDevicesUnmanaged, SeamHttpEvents, type SeamHttpFromPublishableKeyOptions, SeamHttpInvalidInputError, SeamHttpInvalidOptionsError, SeamHttpInvalidTokenError, SeamHttpLocks, SeamHttpMultiWorkspace, SeamHttpMultiWorkspaceInvalidOptionsError, type SeamHttpMultiWorkspaceOptions, type SeamHttpMultiWorkspaceOptionsFromEnv, type SeamHttpMultiWorkspaceOptionsWithClient, type SeamHttpMultiWorkspaceOptionsWithConsoleSessionToken, type SeamHttpMultiWorkspaceOptionsWithPersonalAccessToken, SeamHttpNoiseSensors, SeamHttpNoiseSensorsNoiseThresholds, SeamHttpNoiseSensorsSimulate, type SeamHttpOptions, type SeamHttpOptionsFromEnv, type SeamHttpOptionsWithApiKey, type SeamHttpOptionsWithClient, type SeamHttpOptionsWithClientSessionToken, type SeamHttpOptionsWithConsoleSessionToken, type SeamHttpOptionsWithPersonalAccessToken, SeamHttpPhones, SeamHttpPhonesSimulate, SeamHttpRequest, type SeamHttpRequestOptions, SeamHttpSpaces, SeamHttpThermostats, SeamHttpThermostatsDailyPrograms, SeamHttpThermostatsSchedules, SeamHttpThermostatsSimulate, SeamHttpUnauthorizedError, SeamHttpUnstablePartner, SeamHttpUserIdentities, SeamHttpUserIdentitiesEnrollmentAutomations, SeamHttpWebhooks, SeamHttpWorkspaces, SeamPaginator, type SpacesAddAcsEntrancesBody, type SpacesAddAcsEntrancesOptions, type SpacesAddAcsEntrancesResponse, type SpacesAddDevicesBody, type SpacesAddDevicesOptions, type SpacesAddDevicesResponse, type SpacesCreateBody, type SpacesCreateOptions, type SpacesCreateResponse, type SpacesDeleteOptions, type SpacesDeleteParams, type SpacesDeleteResponse, type SpacesGetOptions, type SpacesGetParams, type SpacesGetResponse, type SpacesListOptions, type SpacesListParams, type SpacesListResponse, type SpacesRemoveAcsEntrancesOptions, type SpacesRemoveAcsEntrancesParams, type SpacesRemoveAcsEntrancesResponse, type SpacesRemoveDevicesOptions, type SpacesRemoveDevicesParams, type SpacesRemoveDevicesResponse, type SpacesUpdateBody, type SpacesUpdateOptions, type SpacesUpdateResponse, type ThermostatsActivateClimatePresetBody, type ThermostatsActivateClimatePresetOptions, type ThermostatsActivateClimatePresetResponse, type ThermostatsCoolBody, type ThermostatsCoolOptions, type ThermostatsCoolResponse, type ThermostatsCreateClimatePresetBody, type ThermostatsCreateClimatePresetOptions, type ThermostatsCreateClimatePresetResponse, type ThermostatsDailyProgramsCreateBody, type ThermostatsDailyProgramsCreateOptions, type ThermostatsDailyProgramsCreateResponse, type ThermostatsDailyProgramsDeleteOptions, type ThermostatsDailyProgramsDeleteParams, type ThermostatsDailyProgramsDeleteResponse, type ThermostatsDailyProgramsUpdateBody, type ThermostatsDailyProgramsUpdateOptions, type ThermostatsDailyProgramsUpdateResponse, type ThermostatsDeleteClimatePresetBody, type ThermostatsDeleteClimatePresetOptions, type ThermostatsDeleteClimatePresetResponse, type ThermostatsHeatBody, type ThermostatsHeatCoolBody, type ThermostatsHeatCoolOptions, type ThermostatsHeatCoolResponse, type ThermostatsHeatOptions, type ThermostatsHeatResponse, type ThermostatsListOptions, type ThermostatsListParams, type ThermostatsListResponse, type ThermostatsOffBody, type ThermostatsOffOptions, type ThermostatsOffResponse, type ThermostatsSchedulesCreateBody, type ThermostatsSchedulesCreateOptions, type ThermostatsSchedulesCreateResponse, type ThermostatsSchedulesDeleteOptions, type ThermostatsSchedulesDeleteParams, type ThermostatsSchedulesDeleteResponse, type ThermostatsSchedulesGetOptions, type ThermostatsSchedulesGetParams, type ThermostatsSchedulesGetResponse, type ThermostatsSchedulesListOptions, type ThermostatsSchedulesListParams, type ThermostatsSchedulesListResponse, type ThermostatsSchedulesUpdateBody, type ThermostatsSchedulesUpdateOptions, type ThermostatsSchedulesUpdateResponse, type ThermostatsSetFallbackClimatePresetBody, type ThermostatsSetFallbackClimatePresetOptions, type ThermostatsSetFallbackClimatePresetResponse, type ThermostatsSetFanModeBody, type ThermostatsSetFanModeOptions, type ThermostatsSetFanModeResponse, type ThermostatsSetHvacModeBody, type ThermostatsSetHvacModeOptions, type ThermostatsSetHvacModeResponse, type ThermostatsSetTemperatureThresholdBody, type ThermostatsSetTemperatureThresholdOptions, type ThermostatsSetTemperatureThresholdResponse, type ThermostatsSimulateHvacModeAdjustedBody, type ThermostatsSimulateHvacModeAdjustedOptions, type ThermostatsSimulateHvacModeAdjustedResponse, type ThermostatsSimulateTemperatureReachedBody, type ThermostatsSimulateTemperatureReachedOptions, type ThermostatsSimulateTemperatureReachedResponse, type ThermostatsUpdateClimatePresetBody, type ThermostatsUpdateClimatePresetOptions, type ThermostatsUpdateClimatePresetResponse, type ThermostatsUpdateWeeklyProgramBody, type ThermostatsUpdateWeeklyProgramOptions, type ThermostatsUpdateWeeklyProgramResponse, type UserIdentitiesAddAcsUserBody, type UserIdentitiesAddAcsUserOptions, type UserIdentitiesAddAcsUserResponse, type UserIdentitiesCreateBody, type UserIdentitiesCreateOptions, type UserIdentitiesCreateResponse, type UserIdentitiesDeleteOptions, type UserIdentitiesDeleteParams, type UserIdentitiesDeleteResponse, type UserIdentitiesEnrollmentAutomationsDeleteOptions, type UserIdentitiesEnrollmentAutomationsDeleteParams, type UserIdentitiesEnrollmentAutomationsDeleteResponse, type UserIdentitiesEnrollmentAutomationsGetOptions, type UserIdentitiesEnrollmentAutomationsGetParams, type UserIdentitiesEnrollmentAutomationsGetResponse, type UserIdentitiesEnrollmentAutomationsLaunchBody, type UserIdentitiesEnrollmentAutomationsLaunchOptions, type UserIdentitiesEnrollmentAutomationsLaunchResponse, type UserIdentitiesEnrollmentAutomationsListOptions, type UserIdentitiesEnrollmentAutomationsListParams, type UserIdentitiesEnrollmentAutomationsListResponse, type UserIdentitiesGenerateInstantKeyBody, type UserIdentitiesGenerateInstantKeyOptions, type UserIdentitiesGenerateInstantKeyResponse, type UserIdentitiesGetOptions, type UserIdentitiesGetParams, type UserIdentitiesGetResponse, type UserIdentitiesGrantAccessToDeviceBody, type UserIdentitiesGrantAccessToDeviceOptions, type UserIdentitiesGrantAccessToDeviceResponse, type UserIdentitiesListAccessibleDevicesOptions, type UserIdentitiesListAccessibleDevicesParams, type UserIdentitiesListAccessibleDevicesResponse, type UserIdentitiesListAcsSystemsOptions, type UserIdentitiesListAcsSystemsParams, type UserIdentitiesListAcsSystemsResponse, type UserIdentitiesListAcsUsersOptions, type UserIdentitiesListAcsUsersParams, type UserIdentitiesListAcsUsersResponse, type UserIdentitiesListOptions, type UserIdentitiesListParams, type UserIdentitiesListResponse, type UserIdentitiesRemoveAcsUserOptions, type UserIdentitiesRemoveAcsUserParams, type UserIdentitiesRemoveAcsUserResponse, type UserIdentitiesRevokeAccessToDeviceOptions, type UserIdentitiesRevokeAccessToDeviceParams, type UserIdentitiesRevokeAccessToDeviceResponse, type UserIdentitiesUpdateBody, type UserIdentitiesUpdateOptions, type UserIdentitiesUpdateResponse, type WebhooksCreateBody, type WebhooksCreateOptions, type WebhooksCreateResponse, type WebhooksDeleteOptions, type WebhooksDeleteParams, type WebhooksDeleteResponse, type WebhooksGetOptions, type WebhooksGetParams, type WebhooksGetResponse, type WebhooksListOptions, type WebhooksListParams, type WebhooksListResponse, type WebhooksUpdateBody, type WebhooksUpdateOptions, type WebhooksUpdateResponse, type WorkspacesCreateBody, type WorkspacesCreateOptions, type WorkspacesCreateResponse, type WorkspacesGetOptions, type WorkspacesGetParams, type WorkspacesGetResponse, type WorkspacesListOptions, type WorkspacesListParams, type WorkspacesListResponse, type WorkspacesResetSandboxBody, type WorkspacesResetSandboxOptions, type WorkspacesResetSandboxResponse, type WorkspacesUpdateBody, type WorkspacesUpdateOptions, type WorkspacesUpdateResponse, errorInterceptor, getOpenapiSchema, isApiKey, isClientSessionToken, isConsoleSessionToken, isPersonalAccessToken, isPublishableKey, isSeamActionAttemptError, isSeamActionAttemptFailedError, isSeamActionAttemptTimeoutError, isSeamHttpApiError, isSeamHttpInvalidInputError, isSeamHttpMultiWorkspaceOptionsWithClient, isSeamHttpMultiWorkspaceOptionsWithConsoleSessionToken, isSeamHttpMultiWorkspaceOptionsWithPersonalAccessToken, isSeamHttpOptionsWithApiKey, isSeamHttpOptionsWithClient, isSeamHttpOptionsWithClientSessionToken, isSeamHttpOptionsWithConsoleSessionToken, isSeamHttpOptionsWithPersonalAccessToken, isSeamHttpUnauthorizedError };
|