@seamapi/http 1.31.0 → 1.33.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 +247 -207
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +428 -85
- package/lib/seam/connect/client.js +1 -2
- package/lib/seam/connect/client.js.map +1 -1
- package/lib/seam/connect/parse-options.js +4 -5
- package/lib/seam/connect/parse-options.js.map +1 -1
- 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/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 +2 -2
- package/lib/seam/connect/routes/index.js +2 -2
- package/lib/seam/connect/routes/index.js.map +1 -1
- package/lib/seam/connect/routes/{networks.d.ts → thermostats-daily-programs.d.ts} +19 -15
- package/lib/seam/connect/routes/{networks.js → thermostats-daily-programs.js} +23 -14
- 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/{bridges.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 +1 -2
- package/lib/seam/connect/seam-http.js +1 -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 +7 -8
- package/src/lib/seam/connect/client.ts +1 -3
- package/src/lib/seam/connect/env.d.ts +2 -0
- package/src/lib/seam/connect/parse-options.ts +4 -5
- package/src/lib/seam/connect/routes/access-codes.ts +20 -0
- 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 +2 -2
- package/src/lib/seam/connect/routes/{networks.ts → thermostats-daily-programs.ts} +64 -31
- 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 +0 -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;
|
|
@@ -301,11 +305,15 @@ declare class SeamHttpAcsEncoders {
|
|
|
301
305
|
createPaginator<const TResponse, const TResponseKey extends keyof TResponse>(request: SeamHttpRequest<TResponse, TResponseKey>): SeamPaginator<TResponse, TResponseKey>;
|
|
302
306
|
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
303
307
|
get simulate(): SeamHttpAcsEncodersSimulate;
|
|
308
|
+
encodeAccessMethod(body?: AcsEncodersEncodeAccessMethodBody, options?: Pick<SeamHttpRequestOptions, 'waitForActionAttempt'>): SeamHttpRequest<AcsEncodersEncodeAccessMethodResponse, 'action_attempt'>;
|
|
304
309
|
encodeCredential(body?: AcsEncodersEncodeCredentialBody, options?: Pick<SeamHttpRequestOptions, 'waitForActionAttempt'>): SeamHttpRequest<AcsEncodersEncodeCredentialResponse, 'action_attempt'>;
|
|
305
310
|
get(body?: AcsEncodersGetParams): SeamHttpRequest<AcsEncodersGetResponse, 'acs_encoder'>;
|
|
306
311
|
list(body?: AcsEncodersListParams): SeamHttpRequest<AcsEncodersListResponse, 'acs_encoders'>;
|
|
307
312
|
scanCredential(body?: AcsEncodersScanCredentialBody, options?: Pick<SeamHttpRequestOptions, 'waitForActionAttempt'>): SeamHttpRequest<AcsEncodersScanCredentialResponse, 'action_attempt'>;
|
|
308
313
|
}
|
|
314
|
+
type AcsEncodersEncodeAccessMethodBody = RouteRequestBody<'/acs/encoders/encode_access_method'>;
|
|
315
|
+
type AcsEncodersEncodeAccessMethodResponse = SetNonNullable<Required<RouteResponse<'/acs/encoders/encode_access_method'>>>;
|
|
316
|
+
type AcsEncodersEncodeAccessMethodOptions = Pick<SeamHttpRequestOptions, 'waitForActionAttempt'>;
|
|
309
317
|
type AcsEncodersEncodeCredentialBody = RouteRequestBody<'/acs/encoders/encode_credential'>;
|
|
310
318
|
type AcsEncodersEncodeCredentialResponse = SetNonNullable<Required<RouteResponse<'/acs/encoders/encode_credential'>>>;
|
|
311
319
|
type AcsEncodersEncodeCredentialOptions = Pick<SeamHttpRequestOptions, 'waitForActionAttempt'>;
|
|
@@ -475,28 +483,6 @@ type ActionAttemptsListParams = RouteRequestBody<'/action_attempts/list'>;
|
|
|
475
483
|
type ActionAttemptsListResponse = SetNonNullable<Required<RouteResponse<'/action_attempts/list'>>>;
|
|
476
484
|
type ActionAttemptsListOptions = never;
|
|
477
485
|
|
|
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
486
|
declare class SeamHttpClientSessions {
|
|
501
487
|
client: Client;
|
|
502
488
|
readonly defaults: Required<SeamHttpRequestOptions>;
|
|
@@ -584,6 +570,7 @@ declare class SeamHttpConnectedAccounts {
|
|
|
584
570
|
delete(body?: ConnectedAccountsDeleteParams): SeamHttpRequest<void, undefined>;
|
|
585
571
|
get(body?: ConnectedAccountsGetParams): SeamHttpRequest<ConnectedAccountsGetResponse, 'connected_account'>;
|
|
586
572
|
list(body?: ConnectedAccountsListParams): SeamHttpRequest<ConnectedAccountsListResponse, 'connected_accounts'>;
|
|
573
|
+
sync(body?: ConnectedAccountsSyncBody): SeamHttpRequest<void, undefined>;
|
|
587
574
|
update(body?: ConnectedAccountsUpdateBody): SeamHttpRequest<void, undefined>;
|
|
588
575
|
}
|
|
589
576
|
type ConnectedAccountsDeleteParams = RouteRequestBody<'/connected_accounts/delete'>;
|
|
@@ -595,6 +582,9 @@ type ConnectedAccountsGetOptions = never;
|
|
|
595
582
|
type ConnectedAccountsListParams = RouteRequestBody<'/connected_accounts/list'>;
|
|
596
583
|
type ConnectedAccountsListResponse = SetNonNullable<Required<RouteResponse<'/connected_accounts/list'>>>;
|
|
597
584
|
type ConnectedAccountsListOptions = never;
|
|
585
|
+
type ConnectedAccountsSyncBody = RouteRequestBody<'/connected_accounts/sync'>;
|
|
586
|
+
type ConnectedAccountsSyncResponse = SetNonNullable<Required<RouteResponse<'/connected_accounts/sync'>>>;
|
|
587
|
+
type ConnectedAccountsSyncOptions = never;
|
|
598
588
|
type ConnectedAccountsUpdateBody = RouteRequestBody<'/connected_accounts/update'>;
|
|
599
589
|
type ConnectedAccountsUpdateResponse = SetNonNullable<Required<RouteResponse<'/connected_accounts/update'>>>;
|
|
600
590
|
type ConnectedAccountsUpdateOptions = never;
|
|
@@ -735,28 +725,6 @@ type LocksUnlockDoorBody = RouteRequestBody<'/locks/unlock_door'>;
|
|
|
735
725
|
type LocksUnlockDoorResponse = SetNonNullable<Required<RouteResponse<'/locks/unlock_door'>>>;
|
|
736
726
|
type LocksUnlockDoorOptions = Pick<SeamHttpRequestOptions, 'waitForActionAttempt'>;
|
|
737
727
|
|
|
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
728
|
declare class SeamHttpNoiseSensorsNoiseThresholds {
|
|
761
729
|
client: Client;
|
|
762
730
|
readonly defaults: Required<SeamHttpRequestOptions>;
|
|
@@ -874,6 +842,32 @@ type PhonesListParams = RouteRequestBody<'/phones/list'>;
|
|
|
874
842
|
type PhonesListResponse = SetNonNullable<Required<RouteResponse<'/phones/list'>>>;
|
|
875
843
|
type PhonesListOptions = never;
|
|
876
844
|
|
|
845
|
+
declare class SeamHttpThermostatsDailyPrograms {
|
|
846
|
+
client: Client;
|
|
847
|
+
readonly defaults: Required<SeamHttpRequestOptions>;
|
|
848
|
+
constructor(apiKeyOrOptions?: string | SeamHttpOptions);
|
|
849
|
+
static fromClient(client: SeamHttpOptionsWithClient['client'], options?: Omit<SeamHttpOptionsWithClient, 'client'>): SeamHttpThermostatsDailyPrograms;
|
|
850
|
+
static fromApiKey(apiKey: SeamHttpOptionsWithApiKey['apiKey'], options?: Omit<SeamHttpOptionsWithApiKey, 'apiKey'>): SeamHttpThermostatsDailyPrograms;
|
|
851
|
+
static fromClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken'], options?: Omit<SeamHttpOptionsWithClientSessionToken, 'clientSessionToken'>): SeamHttpThermostatsDailyPrograms;
|
|
852
|
+
static fromPublishableKey(publishableKey: string, userIdentifierKey: string, options?: SeamHttpFromPublishableKeyOptions): Promise<SeamHttpThermostatsDailyPrograms>;
|
|
853
|
+
static fromConsoleSessionToken(consoleSessionToken: SeamHttpOptionsWithConsoleSessionToken['consoleSessionToken'], workspaceId: SeamHttpOptionsWithConsoleSessionToken['workspaceId'], options?: Omit<SeamHttpOptionsWithConsoleSessionToken, 'consoleSessionToken' | 'workspaceId'>): SeamHttpThermostatsDailyPrograms;
|
|
854
|
+
static fromPersonalAccessToken(personalAccessToken: SeamHttpOptionsWithPersonalAccessToken['personalAccessToken'], workspaceId: SeamHttpOptionsWithPersonalAccessToken['workspaceId'], options?: Omit<SeamHttpOptionsWithPersonalAccessToken, 'personalAccessToken' | 'workspaceId'>): SeamHttpThermostatsDailyPrograms;
|
|
855
|
+
createPaginator<const TResponse, const TResponseKey extends keyof TResponse>(request: SeamHttpRequest<TResponse, TResponseKey>): SeamPaginator<TResponse, TResponseKey>;
|
|
856
|
+
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
857
|
+
create(body?: ThermostatsDailyProgramsCreateBody): SeamHttpRequest<ThermostatsDailyProgramsCreateResponse, 'thermostat_daily_program'>;
|
|
858
|
+
delete(body?: ThermostatsDailyProgramsDeleteParams): SeamHttpRequest<void, undefined>;
|
|
859
|
+
update(body?: ThermostatsDailyProgramsUpdateBody, options?: Pick<SeamHttpRequestOptions, 'waitForActionAttempt'>): SeamHttpRequest<ThermostatsDailyProgramsUpdateResponse, 'action_attempt'>;
|
|
860
|
+
}
|
|
861
|
+
type ThermostatsDailyProgramsCreateBody = RouteRequestBody<'/thermostats/daily_programs/create'>;
|
|
862
|
+
type ThermostatsDailyProgramsCreateResponse = SetNonNullable<Required<RouteResponse<'/thermostats/daily_programs/create'>>>;
|
|
863
|
+
type ThermostatsDailyProgramsCreateOptions = never;
|
|
864
|
+
type ThermostatsDailyProgramsDeleteParams = RouteRequestBody<'/thermostats/daily_programs/delete'>;
|
|
865
|
+
type ThermostatsDailyProgramsDeleteResponse = SetNonNullable<Required<RouteResponse<'/thermostats/daily_programs/delete'>>>;
|
|
866
|
+
type ThermostatsDailyProgramsDeleteOptions = never;
|
|
867
|
+
type ThermostatsDailyProgramsUpdateBody = RouteRequestBody<'/thermostats/daily_programs/update'>;
|
|
868
|
+
type ThermostatsDailyProgramsUpdateResponse = SetNonNullable<Required<RouteResponse<'/thermostats/daily_programs/update'>>>;
|
|
869
|
+
type ThermostatsDailyProgramsUpdateOptions = Pick<SeamHttpRequestOptions, 'waitForActionAttempt'>;
|
|
870
|
+
|
|
877
871
|
declare class SeamHttpThermostatsSchedules {
|
|
878
872
|
client: Client;
|
|
879
873
|
readonly defaults: Required<SeamHttpRequestOptions>;
|
|
@@ -944,6 +938,7 @@ declare class SeamHttpThermostats {
|
|
|
944
938
|
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
945
939
|
get schedules(): SeamHttpThermostatsSchedules;
|
|
946
940
|
get simulate(): SeamHttpThermostatsSimulate;
|
|
941
|
+
get dailyPrograms(): SeamHttpThermostatsDailyPrograms;
|
|
947
942
|
activateClimatePreset(body?: ThermostatsActivateClimatePresetBody, options?: Pick<SeamHttpRequestOptions, 'waitForActionAttempt'>): SeamHttpRequest<ThermostatsActivateClimatePresetResponse, 'action_attempt'>;
|
|
948
943
|
cool(body?: ThermostatsCoolBody, options?: Pick<SeamHttpRequestOptions, 'waitForActionAttempt'>): SeamHttpRequest<ThermostatsCoolResponse, 'action_attempt'>;
|
|
949
944
|
createClimatePreset(body?: ThermostatsCreateClimatePresetBody): SeamHttpRequest<void, undefined>;
|
|
@@ -957,6 +952,7 @@ declare class SeamHttpThermostats {
|
|
|
957
952
|
setHvacMode(body?: ThermostatsSetHvacModeBody, options?: Pick<SeamHttpRequestOptions, 'waitForActionAttempt'>): SeamHttpRequest<ThermostatsSetHvacModeResponse, 'action_attempt'>;
|
|
958
953
|
setTemperatureThreshold(body?: ThermostatsSetTemperatureThresholdBody): SeamHttpRequest<void, undefined>;
|
|
959
954
|
updateClimatePreset(body?: ThermostatsUpdateClimatePresetBody): SeamHttpRequest<void, undefined>;
|
|
955
|
+
updateWeeklyProgram(body?: ThermostatsUpdateWeeklyProgramBody, options?: Pick<SeamHttpRequestOptions, 'waitForActionAttempt'>): SeamHttpRequest<ThermostatsUpdateWeeklyProgramResponse, 'action_attempt'>;
|
|
960
956
|
}
|
|
961
957
|
type ThermostatsActivateClimatePresetBody = RouteRequestBody<'/thermostats/activate_climate_preset'>;
|
|
962
958
|
type ThermostatsActivateClimatePresetResponse = SetNonNullable<Required<RouteResponse<'/thermostats/activate_climate_preset'>>>;
|
|
@@ -997,6 +993,23 @@ type ThermostatsSetTemperatureThresholdOptions = never;
|
|
|
997
993
|
type ThermostatsUpdateClimatePresetBody = RouteRequestBody<'/thermostats/update_climate_preset'>;
|
|
998
994
|
type ThermostatsUpdateClimatePresetResponse = SetNonNullable<Required<RouteResponse<'/thermostats/update_climate_preset'>>>;
|
|
999
995
|
type ThermostatsUpdateClimatePresetOptions = never;
|
|
996
|
+
type ThermostatsUpdateWeeklyProgramBody = RouteRequestBody<'/thermostats/update_weekly_program'>;
|
|
997
|
+
type ThermostatsUpdateWeeklyProgramResponse = SetNonNullable<Required<RouteResponse<'/thermostats/update_weekly_program'>>>;
|
|
998
|
+
type ThermostatsUpdateWeeklyProgramOptions = Pick<SeamHttpRequestOptions, 'waitForActionAttempt'>;
|
|
999
|
+
|
|
1000
|
+
declare class SeamHttpUnstablePartner {
|
|
1001
|
+
client: Client;
|
|
1002
|
+
readonly defaults: Required<SeamHttpRequestOptions>;
|
|
1003
|
+
constructor(apiKeyOrOptions?: string | SeamHttpOptions);
|
|
1004
|
+
static fromClient(client: SeamHttpOptionsWithClient['client'], options?: Omit<SeamHttpOptionsWithClient, 'client'>): SeamHttpUnstablePartner;
|
|
1005
|
+
static fromApiKey(apiKey: SeamHttpOptionsWithApiKey['apiKey'], options?: Omit<SeamHttpOptionsWithApiKey, 'apiKey'>): SeamHttpUnstablePartner;
|
|
1006
|
+
static fromClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken'], options?: Omit<SeamHttpOptionsWithClientSessionToken, 'clientSessionToken'>): SeamHttpUnstablePartner;
|
|
1007
|
+
static fromPublishableKey(publishableKey: string, userIdentifierKey: string, options?: SeamHttpFromPublishableKeyOptions): Promise<SeamHttpUnstablePartner>;
|
|
1008
|
+
static fromConsoleSessionToken(consoleSessionToken: SeamHttpOptionsWithConsoleSessionToken['consoleSessionToken'], workspaceId: SeamHttpOptionsWithConsoleSessionToken['workspaceId'], options?: Omit<SeamHttpOptionsWithConsoleSessionToken, 'consoleSessionToken' | 'workspaceId'>): SeamHttpUnstablePartner;
|
|
1009
|
+
static fromPersonalAccessToken(personalAccessToken: SeamHttpOptionsWithPersonalAccessToken['personalAccessToken'], workspaceId: SeamHttpOptionsWithPersonalAccessToken['workspaceId'], options?: Omit<SeamHttpOptionsWithPersonalAccessToken, 'personalAccessToken' | 'workspaceId'>): SeamHttpUnstablePartner;
|
|
1010
|
+
createPaginator<const TResponse, const TResponseKey extends keyof TResponse>(request: SeamHttpRequest<TResponse, TResponseKey>): SeamPaginator<TResponse, TResponseKey>;
|
|
1011
|
+
updateClientSessionToken(clientSessionToken: SeamHttpOptionsWithClientSessionToken['clientSessionToken']): Promise<void>;
|
|
1012
|
+
}
|
|
1000
1013
|
|
|
1001
1014
|
declare class SeamHttpUserIdentitiesEnrollmentAutomations {
|
|
1002
1015
|
client: Client;
|
|
@@ -1145,6 +1158,7 @@ declare class SeamHttpWorkspaces {
|
|
|
1145
1158
|
get(body?: WorkspacesGetParams): SeamHttpRequest<WorkspacesGetResponse, 'workspace'>;
|
|
1146
1159
|
list(body?: WorkspacesListParams): SeamHttpRequest<WorkspacesListResponse, 'workspaces'>;
|
|
1147
1160
|
resetSandbox(body?: WorkspacesResetSandboxBody, options?: Pick<SeamHttpRequestOptions, 'waitForActionAttempt'>): SeamHttpRequest<WorkspacesResetSandboxResponse, 'action_attempt'>;
|
|
1161
|
+
update(body?: WorkspacesUpdateBody): SeamHttpRequest<void, undefined>;
|
|
1148
1162
|
}
|
|
1149
1163
|
type WorkspacesCreateBody = RouteRequestBody<'/workspaces/create'>;
|
|
1150
1164
|
type WorkspacesCreateResponse = SetNonNullable<Required<RouteResponse<'/workspaces/create'>>>;
|
|
@@ -1158,6 +1172,9 @@ type WorkspacesListOptions = never;
|
|
|
1158
1172
|
type WorkspacesResetSandboxBody = RouteRequestBody<'/workspaces/reset_sandbox'>;
|
|
1159
1173
|
type WorkspacesResetSandboxResponse = SetNonNullable<Required<RouteResponse<'/workspaces/reset_sandbox'>>>;
|
|
1160
1174
|
type WorkspacesResetSandboxOptions = Pick<SeamHttpRequestOptions, 'waitForActionAttempt'>;
|
|
1175
|
+
type WorkspacesUpdateBody = RouteRequestBody<'/workspaces/update'>;
|
|
1176
|
+
type WorkspacesUpdateResponse = SetNonNullable<Required<RouteResponse<'/workspaces/update'>>>;
|
|
1177
|
+
type WorkspacesUpdateOptions = never;
|
|
1161
1178
|
|
|
1162
1179
|
interface ResolveActionAttemptOptions {
|
|
1163
1180
|
timeout?: number;
|
|
@@ -1221,9 +1238,9 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1221
1238
|
warning_message: string;
|
|
1222
1239
|
}[];
|
|
1223
1240
|
acs_credential_on_encoder: {
|
|
1241
|
+
created_at: string | null;
|
|
1224
1242
|
starts_at: string | null;
|
|
1225
1243
|
ends_at: string | null;
|
|
1226
|
-
created_at: string | null;
|
|
1227
1244
|
card_number: string | null;
|
|
1228
1245
|
is_issued: boolean | null;
|
|
1229
1246
|
visionline_metadata?: {
|
|
@@ -1243,6 +1260,7 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1243
1260
|
} | null;
|
|
1244
1261
|
acs_credential_on_seam: {
|
|
1245
1262
|
display_name: string;
|
|
1263
|
+
workspace_id: string;
|
|
1246
1264
|
created_at: string;
|
|
1247
1265
|
errors: {
|
|
1248
1266
|
message: string;
|
|
@@ -1273,7 +1291,6 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1273
1291
|
created_at: string;
|
|
1274
1292
|
warning_code: "needs_to_be_reissued";
|
|
1275
1293
|
})[];
|
|
1276
|
-
workspace_id: string;
|
|
1277
1294
|
is_managed: true;
|
|
1278
1295
|
acs_system_id: string;
|
|
1279
1296
|
acs_credential_id: string;
|
|
@@ -1283,16 +1300,17 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1283
1300
|
ends_at?: string | undefined;
|
|
1284
1301
|
visionline_metadata?: {
|
|
1285
1302
|
card_function_type: "guest" | "staff";
|
|
1303
|
+
auto_join?: boolean | undefined;
|
|
1286
1304
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
1287
1305
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
1288
1306
|
common_acs_entrance_ids?: string[] | undefined;
|
|
1289
1307
|
is_valid?: boolean | undefined;
|
|
1290
|
-
auto_join?: boolean | undefined;
|
|
1291
1308
|
card_id?: string | undefined;
|
|
1292
1309
|
credential_id?: string | undefined;
|
|
1293
1310
|
} | undefined;
|
|
1294
1311
|
assa_abloy_vostio_metadata?: {
|
|
1295
1312
|
endpoint_id?: string | undefined;
|
|
1313
|
+
auto_join?: boolean | undefined;
|
|
1296
1314
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
1297
1315
|
key_id?: string | undefined;
|
|
1298
1316
|
key_issuing_request_id?: string | undefined;
|
|
@@ -1300,7 +1318,7 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1300
1318
|
} | undefined;
|
|
1301
1319
|
is_one_time_use?: boolean | undefined;
|
|
1302
1320
|
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;
|
|
1321
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
1304
1322
|
external_type_display_name?: string | undefined;
|
|
1305
1323
|
acs_user_id?: string | undefined;
|
|
1306
1324
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1312,6 +1330,7 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1312
1330
|
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
1313
1331
|
} | {
|
|
1314
1332
|
display_name: string;
|
|
1333
|
+
workspace_id: string;
|
|
1315
1334
|
created_at: string;
|
|
1316
1335
|
errors: {
|
|
1317
1336
|
message: string;
|
|
@@ -1342,7 +1361,6 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1342
1361
|
created_at: string;
|
|
1343
1362
|
warning_code: "needs_to_be_reissued";
|
|
1344
1363
|
})[];
|
|
1345
|
-
workspace_id: string;
|
|
1346
1364
|
is_managed: false;
|
|
1347
1365
|
acs_system_id: string;
|
|
1348
1366
|
acs_credential_id: string;
|
|
@@ -1352,16 +1370,17 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1352
1370
|
ends_at?: string | undefined;
|
|
1353
1371
|
visionline_metadata?: {
|
|
1354
1372
|
card_function_type: "guest" | "staff";
|
|
1373
|
+
auto_join?: boolean | undefined;
|
|
1355
1374
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
1356
1375
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
1357
1376
|
common_acs_entrance_ids?: string[] | undefined;
|
|
1358
1377
|
is_valid?: boolean | undefined;
|
|
1359
|
-
auto_join?: boolean | undefined;
|
|
1360
1378
|
card_id?: string | undefined;
|
|
1361
1379
|
credential_id?: string | undefined;
|
|
1362
1380
|
} | undefined;
|
|
1363
1381
|
assa_abloy_vostio_metadata?: {
|
|
1364
1382
|
endpoint_id?: string | undefined;
|
|
1383
|
+
auto_join?: boolean | undefined;
|
|
1365
1384
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
1366
1385
|
key_id?: string | undefined;
|
|
1367
1386
|
key_issuing_request_id?: string | undefined;
|
|
@@ -1369,7 +1388,7 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1369
1388
|
} | undefined;
|
|
1370
1389
|
is_one_time_use?: boolean | undefined;
|
|
1371
1390
|
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;
|
|
1391
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
1373
1392
|
external_type_display_name?: string | undefined;
|
|
1374
1393
|
acs_user_id?: string | undefined;
|
|
1375
1394
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1397,6 +1416,48 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1397
1416
|
action_attempt_id: string;
|
|
1398
1417
|
result: null;
|
|
1399
1418
|
action_type: "SCAN_CREDENTIAL";
|
|
1419
|
+
} | {
|
|
1420
|
+
error: null;
|
|
1421
|
+
status: "pending";
|
|
1422
|
+
action_attempt_id: string;
|
|
1423
|
+
result: null;
|
|
1424
|
+
action_type: "ENCODE_ACCESS_METHOD";
|
|
1425
|
+
} | {
|
|
1426
|
+
error: null;
|
|
1427
|
+
status: "success";
|
|
1428
|
+
action_attempt_id: string;
|
|
1429
|
+
result: {
|
|
1430
|
+
display_name: string;
|
|
1431
|
+
workspace_id: string;
|
|
1432
|
+
created_at: string;
|
|
1433
|
+
mode: "code" | "card" | "mobile_key";
|
|
1434
|
+
access_method_id: string;
|
|
1435
|
+
issued_at?: string | undefined;
|
|
1436
|
+
instant_key_url?: string | undefined;
|
|
1437
|
+
is_card_encoding_required?: boolean | undefined;
|
|
1438
|
+
};
|
|
1439
|
+
action_type: "ENCODE_ACCESS_METHOD";
|
|
1440
|
+
} | {
|
|
1441
|
+
error: {
|
|
1442
|
+
type: "uncategorized_error";
|
|
1443
|
+
message: string;
|
|
1444
|
+
} | {
|
|
1445
|
+
type: "action_attempt_expired";
|
|
1446
|
+
message: string;
|
|
1447
|
+
} | {
|
|
1448
|
+
type: "no_credential_on_encoder";
|
|
1449
|
+
message: string;
|
|
1450
|
+
} | {
|
|
1451
|
+
type: "incompatible_card_format";
|
|
1452
|
+
message: string;
|
|
1453
|
+
} | {
|
|
1454
|
+
type: "credential_cannot_be_reissued";
|
|
1455
|
+
message: string;
|
|
1456
|
+
};
|
|
1457
|
+
status: "error";
|
|
1458
|
+
action_attempt_id: string;
|
|
1459
|
+
result: null;
|
|
1460
|
+
action_type: "ENCODE_ACCESS_METHOD";
|
|
1400
1461
|
} | {
|
|
1401
1462
|
error: null;
|
|
1402
1463
|
status: "pending";
|
|
@@ -1409,6 +1470,7 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1409
1470
|
action_attempt_id: string;
|
|
1410
1471
|
result: {
|
|
1411
1472
|
display_name: string;
|
|
1473
|
+
workspace_id: string;
|
|
1412
1474
|
created_at: string;
|
|
1413
1475
|
errors: {
|
|
1414
1476
|
message: string;
|
|
@@ -1439,7 +1501,6 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1439
1501
|
created_at: string;
|
|
1440
1502
|
warning_code: "needs_to_be_reissued";
|
|
1441
1503
|
})[];
|
|
1442
|
-
workspace_id: string;
|
|
1443
1504
|
is_managed: true;
|
|
1444
1505
|
acs_system_id: string;
|
|
1445
1506
|
acs_credential_id: string;
|
|
@@ -1449,16 +1510,17 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1449
1510
|
ends_at?: string | undefined;
|
|
1450
1511
|
visionline_metadata?: {
|
|
1451
1512
|
card_function_type: "guest" | "staff";
|
|
1513
|
+
auto_join?: boolean | undefined;
|
|
1452
1514
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
1453
1515
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
1454
1516
|
common_acs_entrance_ids?: string[] | undefined;
|
|
1455
1517
|
is_valid?: boolean | undefined;
|
|
1456
|
-
auto_join?: boolean | undefined;
|
|
1457
1518
|
card_id?: string | undefined;
|
|
1458
1519
|
credential_id?: string | undefined;
|
|
1459
1520
|
} | undefined;
|
|
1460
1521
|
assa_abloy_vostio_metadata?: {
|
|
1461
1522
|
endpoint_id?: string | undefined;
|
|
1523
|
+
auto_join?: boolean | undefined;
|
|
1462
1524
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
1463
1525
|
key_id?: string | undefined;
|
|
1464
1526
|
key_issuing_request_id?: string | undefined;
|
|
@@ -1466,7 +1528,7 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1466
1528
|
} | undefined;
|
|
1467
1529
|
is_one_time_use?: boolean | undefined;
|
|
1468
1530
|
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;
|
|
1531
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
1470
1532
|
external_type_display_name?: string | undefined;
|
|
1471
1533
|
acs_user_id?: string | undefined;
|
|
1472
1534
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1478,6 +1540,7 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1478
1540
|
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
1479
1541
|
} | {
|
|
1480
1542
|
display_name: string;
|
|
1543
|
+
workspace_id: string;
|
|
1481
1544
|
created_at: string;
|
|
1482
1545
|
errors: {
|
|
1483
1546
|
message: string;
|
|
@@ -1508,7 +1571,6 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1508
1571
|
created_at: string;
|
|
1509
1572
|
warning_code: "needs_to_be_reissued";
|
|
1510
1573
|
})[];
|
|
1511
|
-
workspace_id: string;
|
|
1512
1574
|
is_managed: false;
|
|
1513
1575
|
acs_system_id: string;
|
|
1514
1576
|
acs_credential_id: string;
|
|
@@ -1518,16 +1580,17 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1518
1580
|
ends_at?: string | undefined;
|
|
1519
1581
|
visionline_metadata?: {
|
|
1520
1582
|
card_function_type: "guest" | "staff";
|
|
1583
|
+
auto_join?: boolean | undefined;
|
|
1521
1584
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
1522
1585
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
1523
1586
|
common_acs_entrance_ids?: string[] | undefined;
|
|
1524
1587
|
is_valid?: boolean | undefined;
|
|
1525
|
-
auto_join?: boolean | undefined;
|
|
1526
1588
|
card_id?: string | undefined;
|
|
1527
1589
|
credential_id?: string | undefined;
|
|
1528
1590
|
} | undefined;
|
|
1529
1591
|
assa_abloy_vostio_metadata?: {
|
|
1530
1592
|
endpoint_id?: string | undefined;
|
|
1593
|
+
auto_join?: boolean | undefined;
|
|
1531
1594
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
1532
1595
|
key_id?: string | undefined;
|
|
1533
1596
|
key_issuing_request_id?: string | undefined;
|
|
@@ -1535,7 +1598,7 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1535
1598
|
} | undefined;
|
|
1536
1599
|
is_one_time_use?: boolean | undefined;
|
|
1537
1600
|
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;
|
|
1601
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
1539
1602
|
external_type_display_name?: string | undefined;
|
|
1540
1603
|
acs_user_id?: string | undefined;
|
|
1541
1604
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1652,6 +1715,69 @@ declare const isSeamActionAttemptError: <T extends {
|
|
|
1652
1715
|
action_attempt_id: string;
|
|
1653
1716
|
result: null;
|
|
1654
1717
|
action_type: "ACTIVATE_CLIMATE_PRESET";
|
|
1718
|
+
} | {
|
|
1719
|
+
error: null;
|
|
1720
|
+
status: "pending";
|
|
1721
|
+
action_attempt_id: string;
|
|
1722
|
+
result: null;
|
|
1723
|
+
action_type: "SIMULATE_KEYPAD_CODE_ENTRY";
|
|
1724
|
+
} | {
|
|
1725
|
+
error: null;
|
|
1726
|
+
status: "success";
|
|
1727
|
+
action_attempt_id: string;
|
|
1728
|
+
result: {};
|
|
1729
|
+
action_type: "SIMULATE_KEYPAD_CODE_ENTRY";
|
|
1730
|
+
} | {
|
|
1731
|
+
error: {
|
|
1732
|
+
type: string;
|
|
1733
|
+
message: string;
|
|
1734
|
+
};
|
|
1735
|
+
status: "error";
|
|
1736
|
+
action_attempt_id: string;
|
|
1737
|
+
result: null;
|
|
1738
|
+
action_type: "SIMULATE_KEYPAD_CODE_ENTRY";
|
|
1739
|
+
} | {
|
|
1740
|
+
error: null;
|
|
1741
|
+
status: "pending";
|
|
1742
|
+
action_attempt_id: string;
|
|
1743
|
+
result: null;
|
|
1744
|
+
action_type: "SIMULATE_MANUAL_LOCK_VIA_KEYPAD";
|
|
1745
|
+
} | {
|
|
1746
|
+
error: null;
|
|
1747
|
+
status: "success";
|
|
1748
|
+
action_attempt_id: string;
|
|
1749
|
+
result: {};
|
|
1750
|
+
action_type: "SIMULATE_MANUAL_LOCK_VIA_KEYPAD";
|
|
1751
|
+
} | {
|
|
1752
|
+
error: {
|
|
1753
|
+
type: string;
|
|
1754
|
+
message: string;
|
|
1755
|
+
};
|
|
1756
|
+
status: "error";
|
|
1757
|
+
action_attempt_id: string;
|
|
1758
|
+
result: null;
|
|
1759
|
+
action_type: "SIMULATE_MANUAL_LOCK_VIA_KEYPAD";
|
|
1760
|
+
} | {
|
|
1761
|
+
error: null;
|
|
1762
|
+
status: "pending";
|
|
1763
|
+
action_attempt_id: string;
|
|
1764
|
+
result: null;
|
|
1765
|
+
action_type: "PUSH_THERMOSTAT_PROGRAMS";
|
|
1766
|
+
} | {
|
|
1767
|
+
error: null;
|
|
1768
|
+
status: "success";
|
|
1769
|
+
action_attempt_id: string;
|
|
1770
|
+
result: {};
|
|
1771
|
+
action_type: "PUSH_THERMOSTAT_PROGRAMS";
|
|
1772
|
+
} | {
|
|
1773
|
+
error: {
|
|
1774
|
+
type: string;
|
|
1775
|
+
message: string;
|
|
1776
|
+
};
|
|
1777
|
+
status: "error";
|
|
1778
|
+
action_attempt_id: string;
|
|
1779
|
+
result: null;
|
|
1780
|
+
action_type: "PUSH_THERMOSTAT_PROGRAMS";
|
|
1655
1781
|
} | {
|
|
1656
1782
|
error: null;
|
|
1657
1783
|
status: "pending";
|
|
@@ -1870,9 +1996,9 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
1870
1996
|
warning_message: string;
|
|
1871
1997
|
}[];
|
|
1872
1998
|
acs_credential_on_encoder: {
|
|
1999
|
+
created_at: string | null;
|
|
1873
2000
|
starts_at: string | null;
|
|
1874
2001
|
ends_at: string | null;
|
|
1875
|
-
created_at: string | null;
|
|
1876
2002
|
card_number: string | null;
|
|
1877
2003
|
is_issued: boolean | null;
|
|
1878
2004
|
visionline_metadata?: {
|
|
@@ -1892,6 +2018,7 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
1892
2018
|
} | null;
|
|
1893
2019
|
acs_credential_on_seam: {
|
|
1894
2020
|
display_name: string;
|
|
2021
|
+
workspace_id: string;
|
|
1895
2022
|
created_at: string;
|
|
1896
2023
|
errors: {
|
|
1897
2024
|
message: string;
|
|
@@ -1922,7 +2049,6 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
1922
2049
|
created_at: string;
|
|
1923
2050
|
warning_code: "needs_to_be_reissued";
|
|
1924
2051
|
})[];
|
|
1925
|
-
workspace_id: string;
|
|
1926
2052
|
is_managed: true;
|
|
1927
2053
|
acs_system_id: string;
|
|
1928
2054
|
acs_credential_id: string;
|
|
@@ -1932,16 +2058,17 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
1932
2058
|
ends_at?: string | undefined;
|
|
1933
2059
|
visionline_metadata?: {
|
|
1934
2060
|
card_function_type: "guest" | "staff";
|
|
2061
|
+
auto_join?: boolean | undefined;
|
|
1935
2062
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
1936
2063
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
1937
2064
|
common_acs_entrance_ids?: string[] | undefined;
|
|
1938
2065
|
is_valid?: boolean | undefined;
|
|
1939
|
-
auto_join?: boolean | undefined;
|
|
1940
2066
|
card_id?: string | undefined;
|
|
1941
2067
|
credential_id?: string | undefined;
|
|
1942
2068
|
} | undefined;
|
|
1943
2069
|
assa_abloy_vostio_metadata?: {
|
|
1944
2070
|
endpoint_id?: string | undefined;
|
|
2071
|
+
auto_join?: boolean | undefined;
|
|
1945
2072
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
1946
2073
|
key_id?: string | undefined;
|
|
1947
2074
|
key_issuing_request_id?: string | undefined;
|
|
@@ -1949,7 +2076,7 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
1949
2076
|
} | undefined;
|
|
1950
2077
|
is_one_time_use?: boolean | undefined;
|
|
1951
2078
|
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;
|
|
2079
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
1953
2080
|
external_type_display_name?: string | undefined;
|
|
1954
2081
|
acs_user_id?: string | undefined;
|
|
1955
2082
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1961,6 +2088,7 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
1961
2088
|
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
1962
2089
|
} | {
|
|
1963
2090
|
display_name: string;
|
|
2091
|
+
workspace_id: string;
|
|
1964
2092
|
created_at: string;
|
|
1965
2093
|
errors: {
|
|
1966
2094
|
message: string;
|
|
@@ -1991,7 +2119,6 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
1991
2119
|
created_at: string;
|
|
1992
2120
|
warning_code: "needs_to_be_reissued";
|
|
1993
2121
|
})[];
|
|
1994
|
-
workspace_id: string;
|
|
1995
2122
|
is_managed: false;
|
|
1996
2123
|
acs_system_id: string;
|
|
1997
2124
|
acs_credential_id: string;
|
|
@@ -2001,16 +2128,17 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
2001
2128
|
ends_at?: string | undefined;
|
|
2002
2129
|
visionline_metadata?: {
|
|
2003
2130
|
card_function_type: "guest" | "staff";
|
|
2131
|
+
auto_join?: boolean | undefined;
|
|
2004
2132
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
2005
2133
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
2006
2134
|
common_acs_entrance_ids?: string[] | undefined;
|
|
2007
2135
|
is_valid?: boolean | undefined;
|
|
2008
|
-
auto_join?: boolean | undefined;
|
|
2009
2136
|
card_id?: string | undefined;
|
|
2010
2137
|
credential_id?: string | undefined;
|
|
2011
2138
|
} | undefined;
|
|
2012
2139
|
assa_abloy_vostio_metadata?: {
|
|
2013
2140
|
endpoint_id?: string | undefined;
|
|
2141
|
+
auto_join?: boolean | undefined;
|
|
2014
2142
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
2015
2143
|
key_id?: string | undefined;
|
|
2016
2144
|
key_issuing_request_id?: string | undefined;
|
|
@@ -2018,7 +2146,7 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
2018
2146
|
} | undefined;
|
|
2019
2147
|
is_one_time_use?: boolean | undefined;
|
|
2020
2148
|
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;
|
|
2149
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
2022
2150
|
external_type_display_name?: string | undefined;
|
|
2023
2151
|
acs_user_id?: string | undefined;
|
|
2024
2152
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -2046,6 +2174,48 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
2046
2174
|
action_attempt_id: string;
|
|
2047
2175
|
result: null;
|
|
2048
2176
|
action_type: "SCAN_CREDENTIAL";
|
|
2177
|
+
} | {
|
|
2178
|
+
error: null;
|
|
2179
|
+
status: "pending";
|
|
2180
|
+
action_attempt_id: string;
|
|
2181
|
+
result: null;
|
|
2182
|
+
action_type: "ENCODE_ACCESS_METHOD";
|
|
2183
|
+
} | {
|
|
2184
|
+
error: null;
|
|
2185
|
+
status: "success";
|
|
2186
|
+
action_attempt_id: string;
|
|
2187
|
+
result: {
|
|
2188
|
+
display_name: string;
|
|
2189
|
+
workspace_id: string;
|
|
2190
|
+
created_at: string;
|
|
2191
|
+
mode: "code" | "card" | "mobile_key";
|
|
2192
|
+
access_method_id: string;
|
|
2193
|
+
issued_at?: string | undefined;
|
|
2194
|
+
instant_key_url?: string | undefined;
|
|
2195
|
+
is_card_encoding_required?: boolean | undefined;
|
|
2196
|
+
};
|
|
2197
|
+
action_type: "ENCODE_ACCESS_METHOD";
|
|
2198
|
+
} | {
|
|
2199
|
+
error: {
|
|
2200
|
+
type: "uncategorized_error";
|
|
2201
|
+
message: string;
|
|
2202
|
+
} | {
|
|
2203
|
+
type: "action_attempt_expired";
|
|
2204
|
+
message: string;
|
|
2205
|
+
} | {
|
|
2206
|
+
type: "no_credential_on_encoder";
|
|
2207
|
+
message: string;
|
|
2208
|
+
} | {
|
|
2209
|
+
type: "incompatible_card_format";
|
|
2210
|
+
message: string;
|
|
2211
|
+
} | {
|
|
2212
|
+
type: "credential_cannot_be_reissued";
|
|
2213
|
+
message: string;
|
|
2214
|
+
};
|
|
2215
|
+
status: "error";
|
|
2216
|
+
action_attempt_id: string;
|
|
2217
|
+
result: null;
|
|
2218
|
+
action_type: "ENCODE_ACCESS_METHOD";
|
|
2049
2219
|
} | {
|
|
2050
2220
|
error: null;
|
|
2051
2221
|
status: "pending";
|
|
@@ -2058,6 +2228,7 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
2058
2228
|
action_attempt_id: string;
|
|
2059
2229
|
result: {
|
|
2060
2230
|
display_name: string;
|
|
2231
|
+
workspace_id: string;
|
|
2061
2232
|
created_at: string;
|
|
2062
2233
|
errors: {
|
|
2063
2234
|
message: string;
|
|
@@ -2088,7 +2259,6 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
2088
2259
|
created_at: string;
|
|
2089
2260
|
warning_code: "needs_to_be_reissued";
|
|
2090
2261
|
})[];
|
|
2091
|
-
workspace_id: string;
|
|
2092
2262
|
is_managed: true;
|
|
2093
2263
|
acs_system_id: string;
|
|
2094
2264
|
acs_credential_id: string;
|
|
@@ -2098,16 +2268,17 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
2098
2268
|
ends_at?: string | undefined;
|
|
2099
2269
|
visionline_metadata?: {
|
|
2100
2270
|
card_function_type: "guest" | "staff";
|
|
2271
|
+
auto_join?: boolean | undefined;
|
|
2101
2272
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
2102
2273
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
2103
2274
|
common_acs_entrance_ids?: string[] | undefined;
|
|
2104
2275
|
is_valid?: boolean | undefined;
|
|
2105
|
-
auto_join?: boolean | undefined;
|
|
2106
2276
|
card_id?: string | undefined;
|
|
2107
2277
|
credential_id?: string | undefined;
|
|
2108
2278
|
} | undefined;
|
|
2109
2279
|
assa_abloy_vostio_metadata?: {
|
|
2110
2280
|
endpoint_id?: string | undefined;
|
|
2281
|
+
auto_join?: boolean | undefined;
|
|
2111
2282
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
2112
2283
|
key_id?: string | undefined;
|
|
2113
2284
|
key_issuing_request_id?: string | undefined;
|
|
@@ -2115,7 +2286,7 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
2115
2286
|
} | undefined;
|
|
2116
2287
|
is_one_time_use?: boolean | undefined;
|
|
2117
2288
|
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;
|
|
2289
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
2119
2290
|
external_type_display_name?: string | undefined;
|
|
2120
2291
|
acs_user_id?: string | undefined;
|
|
2121
2292
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -2127,6 +2298,7 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
2127
2298
|
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
2128
2299
|
} | {
|
|
2129
2300
|
display_name: string;
|
|
2301
|
+
workspace_id: string;
|
|
2130
2302
|
created_at: string;
|
|
2131
2303
|
errors: {
|
|
2132
2304
|
message: string;
|
|
@@ -2157,7 +2329,6 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
2157
2329
|
created_at: string;
|
|
2158
2330
|
warning_code: "needs_to_be_reissued";
|
|
2159
2331
|
})[];
|
|
2160
|
-
workspace_id: string;
|
|
2161
2332
|
is_managed: false;
|
|
2162
2333
|
acs_system_id: string;
|
|
2163
2334
|
acs_credential_id: string;
|
|
@@ -2167,16 +2338,17 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
2167
2338
|
ends_at?: string | undefined;
|
|
2168
2339
|
visionline_metadata?: {
|
|
2169
2340
|
card_function_type: "guest" | "staff";
|
|
2341
|
+
auto_join?: boolean | undefined;
|
|
2170
2342
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
2171
2343
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
2172
2344
|
common_acs_entrance_ids?: string[] | undefined;
|
|
2173
2345
|
is_valid?: boolean | undefined;
|
|
2174
|
-
auto_join?: boolean | undefined;
|
|
2175
2346
|
card_id?: string | undefined;
|
|
2176
2347
|
credential_id?: string | undefined;
|
|
2177
2348
|
} | undefined;
|
|
2178
2349
|
assa_abloy_vostio_metadata?: {
|
|
2179
2350
|
endpoint_id?: string | undefined;
|
|
2351
|
+
auto_join?: boolean | undefined;
|
|
2180
2352
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
2181
2353
|
key_id?: string | undefined;
|
|
2182
2354
|
key_issuing_request_id?: string | undefined;
|
|
@@ -2184,7 +2356,7 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
2184
2356
|
} | undefined;
|
|
2185
2357
|
is_one_time_use?: boolean | undefined;
|
|
2186
2358
|
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;
|
|
2359
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
2188
2360
|
external_type_display_name?: string | undefined;
|
|
2189
2361
|
acs_user_id?: string | undefined;
|
|
2190
2362
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -2301,6 +2473,69 @@ declare const isSeamActionAttemptFailedError: <T extends {
|
|
|
2301
2473
|
action_attempt_id: string;
|
|
2302
2474
|
result: null;
|
|
2303
2475
|
action_type: "ACTIVATE_CLIMATE_PRESET";
|
|
2476
|
+
} | {
|
|
2477
|
+
error: null;
|
|
2478
|
+
status: "pending";
|
|
2479
|
+
action_attempt_id: string;
|
|
2480
|
+
result: null;
|
|
2481
|
+
action_type: "SIMULATE_KEYPAD_CODE_ENTRY";
|
|
2482
|
+
} | {
|
|
2483
|
+
error: null;
|
|
2484
|
+
status: "success";
|
|
2485
|
+
action_attempt_id: string;
|
|
2486
|
+
result: {};
|
|
2487
|
+
action_type: "SIMULATE_KEYPAD_CODE_ENTRY";
|
|
2488
|
+
} | {
|
|
2489
|
+
error: {
|
|
2490
|
+
type: string;
|
|
2491
|
+
message: string;
|
|
2492
|
+
};
|
|
2493
|
+
status: "error";
|
|
2494
|
+
action_attempt_id: string;
|
|
2495
|
+
result: null;
|
|
2496
|
+
action_type: "SIMULATE_KEYPAD_CODE_ENTRY";
|
|
2497
|
+
} | {
|
|
2498
|
+
error: null;
|
|
2499
|
+
status: "pending";
|
|
2500
|
+
action_attempt_id: string;
|
|
2501
|
+
result: null;
|
|
2502
|
+
action_type: "SIMULATE_MANUAL_LOCK_VIA_KEYPAD";
|
|
2503
|
+
} | {
|
|
2504
|
+
error: null;
|
|
2505
|
+
status: "success";
|
|
2506
|
+
action_attempt_id: string;
|
|
2507
|
+
result: {};
|
|
2508
|
+
action_type: "SIMULATE_MANUAL_LOCK_VIA_KEYPAD";
|
|
2509
|
+
} | {
|
|
2510
|
+
error: {
|
|
2511
|
+
type: string;
|
|
2512
|
+
message: string;
|
|
2513
|
+
};
|
|
2514
|
+
status: "error";
|
|
2515
|
+
action_attempt_id: string;
|
|
2516
|
+
result: null;
|
|
2517
|
+
action_type: "SIMULATE_MANUAL_LOCK_VIA_KEYPAD";
|
|
2518
|
+
} | {
|
|
2519
|
+
error: null;
|
|
2520
|
+
status: "pending";
|
|
2521
|
+
action_attempt_id: string;
|
|
2522
|
+
result: null;
|
|
2523
|
+
action_type: "PUSH_THERMOSTAT_PROGRAMS";
|
|
2524
|
+
} | {
|
|
2525
|
+
error: null;
|
|
2526
|
+
status: "success";
|
|
2527
|
+
action_attempt_id: string;
|
|
2528
|
+
result: {};
|
|
2529
|
+
action_type: "PUSH_THERMOSTAT_PROGRAMS";
|
|
2530
|
+
} | {
|
|
2531
|
+
error: {
|
|
2532
|
+
type: string;
|
|
2533
|
+
message: string;
|
|
2534
|
+
};
|
|
2535
|
+
status: "error";
|
|
2536
|
+
action_attempt_id: string;
|
|
2537
|
+
result: null;
|
|
2538
|
+
action_type: "PUSH_THERMOSTAT_PROGRAMS";
|
|
2304
2539
|
} | {
|
|
2305
2540
|
error: null;
|
|
2306
2541
|
status: "pending";
|
|
@@ -2519,9 +2754,9 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2519
2754
|
warning_message: string;
|
|
2520
2755
|
}[];
|
|
2521
2756
|
acs_credential_on_encoder: {
|
|
2757
|
+
created_at: string | null;
|
|
2522
2758
|
starts_at: string | null;
|
|
2523
2759
|
ends_at: string | null;
|
|
2524
|
-
created_at: string | null;
|
|
2525
2760
|
card_number: string | null;
|
|
2526
2761
|
is_issued: boolean | null;
|
|
2527
2762
|
visionline_metadata?: {
|
|
@@ -2541,6 +2776,7 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2541
2776
|
} | null;
|
|
2542
2777
|
acs_credential_on_seam: {
|
|
2543
2778
|
display_name: string;
|
|
2779
|
+
workspace_id: string;
|
|
2544
2780
|
created_at: string;
|
|
2545
2781
|
errors: {
|
|
2546
2782
|
message: string;
|
|
@@ -2571,7 +2807,6 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2571
2807
|
created_at: string;
|
|
2572
2808
|
warning_code: "needs_to_be_reissued";
|
|
2573
2809
|
})[];
|
|
2574
|
-
workspace_id: string;
|
|
2575
2810
|
is_managed: true;
|
|
2576
2811
|
acs_system_id: string;
|
|
2577
2812
|
acs_credential_id: string;
|
|
@@ -2581,16 +2816,17 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2581
2816
|
ends_at?: string | undefined;
|
|
2582
2817
|
visionline_metadata?: {
|
|
2583
2818
|
card_function_type: "guest" | "staff";
|
|
2819
|
+
auto_join?: boolean | undefined;
|
|
2584
2820
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
2585
2821
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
2586
2822
|
common_acs_entrance_ids?: string[] | undefined;
|
|
2587
2823
|
is_valid?: boolean | undefined;
|
|
2588
|
-
auto_join?: boolean | undefined;
|
|
2589
2824
|
card_id?: string | undefined;
|
|
2590
2825
|
credential_id?: string | undefined;
|
|
2591
2826
|
} | undefined;
|
|
2592
2827
|
assa_abloy_vostio_metadata?: {
|
|
2593
2828
|
endpoint_id?: string | undefined;
|
|
2829
|
+
auto_join?: boolean | undefined;
|
|
2594
2830
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
2595
2831
|
key_id?: string | undefined;
|
|
2596
2832
|
key_issuing_request_id?: string | undefined;
|
|
@@ -2598,7 +2834,7 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2598
2834
|
} | undefined;
|
|
2599
2835
|
is_one_time_use?: boolean | undefined;
|
|
2600
2836
|
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;
|
|
2837
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
2602
2838
|
external_type_display_name?: string | undefined;
|
|
2603
2839
|
acs_user_id?: string | undefined;
|
|
2604
2840
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -2610,6 +2846,7 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2610
2846
|
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
2611
2847
|
} | {
|
|
2612
2848
|
display_name: string;
|
|
2849
|
+
workspace_id: string;
|
|
2613
2850
|
created_at: string;
|
|
2614
2851
|
errors: {
|
|
2615
2852
|
message: string;
|
|
@@ -2640,7 +2877,6 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2640
2877
|
created_at: string;
|
|
2641
2878
|
warning_code: "needs_to_be_reissued";
|
|
2642
2879
|
})[];
|
|
2643
|
-
workspace_id: string;
|
|
2644
2880
|
is_managed: false;
|
|
2645
2881
|
acs_system_id: string;
|
|
2646
2882
|
acs_credential_id: string;
|
|
@@ -2650,16 +2886,17 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2650
2886
|
ends_at?: string | undefined;
|
|
2651
2887
|
visionline_metadata?: {
|
|
2652
2888
|
card_function_type: "guest" | "staff";
|
|
2889
|
+
auto_join?: boolean | undefined;
|
|
2653
2890
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
2654
2891
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
2655
2892
|
common_acs_entrance_ids?: string[] | undefined;
|
|
2656
2893
|
is_valid?: boolean | undefined;
|
|
2657
|
-
auto_join?: boolean | undefined;
|
|
2658
2894
|
card_id?: string | undefined;
|
|
2659
2895
|
credential_id?: string | undefined;
|
|
2660
2896
|
} | undefined;
|
|
2661
2897
|
assa_abloy_vostio_metadata?: {
|
|
2662
2898
|
endpoint_id?: string | undefined;
|
|
2899
|
+
auto_join?: boolean | undefined;
|
|
2663
2900
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
2664
2901
|
key_id?: string | undefined;
|
|
2665
2902
|
key_issuing_request_id?: string | undefined;
|
|
@@ -2667,7 +2904,7 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2667
2904
|
} | undefined;
|
|
2668
2905
|
is_one_time_use?: boolean | undefined;
|
|
2669
2906
|
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;
|
|
2907
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
2671
2908
|
external_type_display_name?: string | undefined;
|
|
2672
2909
|
acs_user_id?: string | undefined;
|
|
2673
2910
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -2695,6 +2932,48 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2695
2932
|
action_attempt_id: string;
|
|
2696
2933
|
result: null;
|
|
2697
2934
|
action_type: "SCAN_CREDENTIAL";
|
|
2935
|
+
} | {
|
|
2936
|
+
error: null;
|
|
2937
|
+
status: "pending";
|
|
2938
|
+
action_attempt_id: string;
|
|
2939
|
+
result: null;
|
|
2940
|
+
action_type: "ENCODE_ACCESS_METHOD";
|
|
2941
|
+
} | {
|
|
2942
|
+
error: null;
|
|
2943
|
+
status: "success";
|
|
2944
|
+
action_attempt_id: string;
|
|
2945
|
+
result: {
|
|
2946
|
+
display_name: string;
|
|
2947
|
+
workspace_id: string;
|
|
2948
|
+
created_at: string;
|
|
2949
|
+
mode: "code" | "card" | "mobile_key";
|
|
2950
|
+
access_method_id: string;
|
|
2951
|
+
issued_at?: string | undefined;
|
|
2952
|
+
instant_key_url?: string | undefined;
|
|
2953
|
+
is_card_encoding_required?: boolean | undefined;
|
|
2954
|
+
};
|
|
2955
|
+
action_type: "ENCODE_ACCESS_METHOD";
|
|
2956
|
+
} | {
|
|
2957
|
+
error: {
|
|
2958
|
+
type: "uncategorized_error";
|
|
2959
|
+
message: string;
|
|
2960
|
+
} | {
|
|
2961
|
+
type: "action_attempt_expired";
|
|
2962
|
+
message: string;
|
|
2963
|
+
} | {
|
|
2964
|
+
type: "no_credential_on_encoder";
|
|
2965
|
+
message: string;
|
|
2966
|
+
} | {
|
|
2967
|
+
type: "incompatible_card_format";
|
|
2968
|
+
message: string;
|
|
2969
|
+
} | {
|
|
2970
|
+
type: "credential_cannot_be_reissued";
|
|
2971
|
+
message: string;
|
|
2972
|
+
};
|
|
2973
|
+
status: "error";
|
|
2974
|
+
action_attempt_id: string;
|
|
2975
|
+
result: null;
|
|
2976
|
+
action_type: "ENCODE_ACCESS_METHOD";
|
|
2698
2977
|
} | {
|
|
2699
2978
|
error: null;
|
|
2700
2979
|
status: "pending";
|
|
@@ -2707,6 +2986,7 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2707
2986
|
action_attempt_id: string;
|
|
2708
2987
|
result: {
|
|
2709
2988
|
display_name: string;
|
|
2989
|
+
workspace_id: string;
|
|
2710
2990
|
created_at: string;
|
|
2711
2991
|
errors: {
|
|
2712
2992
|
message: string;
|
|
@@ -2737,7 +3017,6 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2737
3017
|
created_at: string;
|
|
2738
3018
|
warning_code: "needs_to_be_reissued";
|
|
2739
3019
|
})[];
|
|
2740
|
-
workspace_id: string;
|
|
2741
3020
|
is_managed: true;
|
|
2742
3021
|
acs_system_id: string;
|
|
2743
3022
|
acs_credential_id: string;
|
|
@@ -2747,16 +3026,17 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2747
3026
|
ends_at?: string | undefined;
|
|
2748
3027
|
visionline_metadata?: {
|
|
2749
3028
|
card_function_type: "guest" | "staff";
|
|
3029
|
+
auto_join?: boolean | undefined;
|
|
2750
3030
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
2751
3031
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
2752
3032
|
common_acs_entrance_ids?: string[] | undefined;
|
|
2753
3033
|
is_valid?: boolean | undefined;
|
|
2754
|
-
auto_join?: boolean | undefined;
|
|
2755
3034
|
card_id?: string | undefined;
|
|
2756
3035
|
credential_id?: string | undefined;
|
|
2757
3036
|
} | undefined;
|
|
2758
3037
|
assa_abloy_vostio_metadata?: {
|
|
2759
3038
|
endpoint_id?: string | undefined;
|
|
3039
|
+
auto_join?: boolean | undefined;
|
|
2760
3040
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
2761
3041
|
key_id?: string | undefined;
|
|
2762
3042
|
key_issuing_request_id?: string | undefined;
|
|
@@ -2764,7 +3044,7 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2764
3044
|
} | undefined;
|
|
2765
3045
|
is_one_time_use?: boolean | undefined;
|
|
2766
3046
|
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;
|
|
3047
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
2768
3048
|
external_type_display_name?: string | undefined;
|
|
2769
3049
|
acs_user_id?: string | undefined;
|
|
2770
3050
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -2776,6 +3056,7 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2776
3056
|
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
2777
3057
|
} | {
|
|
2778
3058
|
display_name: string;
|
|
3059
|
+
workspace_id: string;
|
|
2779
3060
|
created_at: string;
|
|
2780
3061
|
errors: {
|
|
2781
3062
|
message: string;
|
|
@@ -2806,7 +3087,6 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2806
3087
|
created_at: string;
|
|
2807
3088
|
warning_code: "needs_to_be_reissued";
|
|
2808
3089
|
})[];
|
|
2809
|
-
workspace_id: string;
|
|
2810
3090
|
is_managed: false;
|
|
2811
3091
|
acs_system_id: string;
|
|
2812
3092
|
acs_credential_id: string;
|
|
@@ -2816,16 +3096,17 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2816
3096
|
ends_at?: string | undefined;
|
|
2817
3097
|
visionline_metadata?: {
|
|
2818
3098
|
card_function_type: "guest" | "staff";
|
|
3099
|
+
auto_join?: boolean | undefined;
|
|
2819
3100
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
2820
3101
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
2821
3102
|
common_acs_entrance_ids?: string[] | undefined;
|
|
2822
3103
|
is_valid?: boolean | undefined;
|
|
2823
|
-
auto_join?: boolean | undefined;
|
|
2824
3104
|
card_id?: string | undefined;
|
|
2825
3105
|
credential_id?: string | undefined;
|
|
2826
3106
|
} | undefined;
|
|
2827
3107
|
assa_abloy_vostio_metadata?: {
|
|
2828
3108
|
endpoint_id?: string | undefined;
|
|
3109
|
+
auto_join?: boolean | undefined;
|
|
2829
3110
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
2830
3111
|
key_id?: string | undefined;
|
|
2831
3112
|
key_issuing_request_id?: string | undefined;
|
|
@@ -2833,7 +3114,7 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2833
3114
|
} | undefined;
|
|
2834
3115
|
is_one_time_use?: boolean | undefined;
|
|
2835
3116
|
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;
|
|
3117
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
2837
3118
|
external_type_display_name?: string | undefined;
|
|
2838
3119
|
acs_user_id?: string | undefined;
|
|
2839
3120
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -2950,6 +3231,69 @@ declare const isSeamActionAttemptTimeoutError: <T extends {
|
|
|
2950
3231
|
action_attempt_id: string;
|
|
2951
3232
|
result: null;
|
|
2952
3233
|
action_type: "ACTIVATE_CLIMATE_PRESET";
|
|
3234
|
+
} | {
|
|
3235
|
+
error: null;
|
|
3236
|
+
status: "pending";
|
|
3237
|
+
action_attempt_id: string;
|
|
3238
|
+
result: null;
|
|
3239
|
+
action_type: "SIMULATE_KEYPAD_CODE_ENTRY";
|
|
3240
|
+
} | {
|
|
3241
|
+
error: null;
|
|
3242
|
+
status: "success";
|
|
3243
|
+
action_attempt_id: string;
|
|
3244
|
+
result: {};
|
|
3245
|
+
action_type: "SIMULATE_KEYPAD_CODE_ENTRY";
|
|
3246
|
+
} | {
|
|
3247
|
+
error: {
|
|
3248
|
+
type: string;
|
|
3249
|
+
message: string;
|
|
3250
|
+
};
|
|
3251
|
+
status: "error";
|
|
3252
|
+
action_attempt_id: string;
|
|
3253
|
+
result: null;
|
|
3254
|
+
action_type: "SIMULATE_KEYPAD_CODE_ENTRY";
|
|
3255
|
+
} | {
|
|
3256
|
+
error: null;
|
|
3257
|
+
status: "pending";
|
|
3258
|
+
action_attempt_id: string;
|
|
3259
|
+
result: null;
|
|
3260
|
+
action_type: "SIMULATE_MANUAL_LOCK_VIA_KEYPAD";
|
|
3261
|
+
} | {
|
|
3262
|
+
error: null;
|
|
3263
|
+
status: "success";
|
|
3264
|
+
action_attempt_id: string;
|
|
3265
|
+
result: {};
|
|
3266
|
+
action_type: "SIMULATE_MANUAL_LOCK_VIA_KEYPAD";
|
|
3267
|
+
} | {
|
|
3268
|
+
error: {
|
|
3269
|
+
type: string;
|
|
3270
|
+
message: string;
|
|
3271
|
+
};
|
|
3272
|
+
status: "error";
|
|
3273
|
+
action_attempt_id: string;
|
|
3274
|
+
result: null;
|
|
3275
|
+
action_type: "SIMULATE_MANUAL_LOCK_VIA_KEYPAD";
|
|
3276
|
+
} | {
|
|
3277
|
+
error: null;
|
|
3278
|
+
status: "pending";
|
|
3279
|
+
action_attempt_id: string;
|
|
3280
|
+
result: null;
|
|
3281
|
+
action_type: "PUSH_THERMOSTAT_PROGRAMS";
|
|
3282
|
+
} | {
|
|
3283
|
+
error: null;
|
|
3284
|
+
status: "success";
|
|
3285
|
+
action_attempt_id: string;
|
|
3286
|
+
result: {};
|
|
3287
|
+
action_type: "PUSH_THERMOSTAT_PROGRAMS";
|
|
3288
|
+
} | {
|
|
3289
|
+
error: {
|
|
3290
|
+
type: string;
|
|
3291
|
+
message: string;
|
|
3292
|
+
};
|
|
3293
|
+
status: "error";
|
|
3294
|
+
action_attempt_id: string;
|
|
3295
|
+
result: null;
|
|
3296
|
+
action_type: "PUSH_THERMOSTAT_PROGRAMS";
|
|
2953
3297
|
} | {
|
|
2954
3298
|
error: null;
|
|
2955
3299
|
status: "pending";
|
|
@@ -3199,7 +3543,6 @@ declare class SeamHttp {
|
|
|
3199
3543
|
get devices(): SeamHttpDevices;
|
|
3200
3544
|
get events(): SeamHttpEvents;
|
|
3201
3545
|
get locks(): SeamHttpLocks;
|
|
3202
|
-
get networks(): SeamHttpNetworks;
|
|
3203
3546
|
get noiseSensors(): SeamHttpNoiseSensors;
|
|
3204
3547
|
get phones(): SeamHttpPhones;
|
|
3205
3548
|
get thermostats(): SeamHttpThermostats;
|
|
@@ -3255,4 +3598,4 @@ declare const isPublishableKey: (token: string) => boolean;
|
|
|
3255
3598
|
declare const isConsoleSessionToken: (token: string) => boolean;
|
|
3256
3599
|
declare const isPersonalAccessToken: (token: string) => boolean;
|
|
3257
3600
|
|
|
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 };
|
|
3601
|
+
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 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, 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, SeamHttpThermostats, SeamHttpThermostatsDailyPrograms, SeamHttpThermostatsSchedules, SeamHttpThermostatsSimulate, SeamHttpUnauthorizedError, SeamHttpUnstablePartner, SeamHttpUserIdentities, SeamHttpUserIdentitiesEnrollmentAutomations, SeamHttpWebhooks, SeamHttpWorkspaces, SeamPaginator, 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 };
|