diff --git a/package-lock.json b/package-lock.json index 9f9b1ab..f864bfb 100644 --- a/package-lock.json +++ b/package-lock.json @@ -10,8 +10,8 @@ "license": "MIT", "devDependencies": { "@prettier/plugin-php": "^0.22.1", - "@seamapi/nextlove-sdk-generator": "1.15.8", - "@seamapi/types": "1.351.1", + "@seamapi/nextlove-sdk-generator": "1.16.0", + "@seamapi/types": "1.352.0", "del": "^7.1.0", "prettier": "^3.0.0" } @@ -434,10 +434,11 @@ } }, "node_modules/@seamapi/nextlove-sdk-generator": { - "version": "1.15.8", - "resolved": "https://registry.npmjs.org/@seamapi/nextlove-sdk-generator/-/nextlove-sdk-generator-1.15.8.tgz", - "integrity": "sha512-Q2v5p5BmK45/Qm6LpwUe3c2s6zzgUum9VOxnQU0K9CO3n23KaJf1X2M/sU6mRedAGh+JJsgmXLePtj21hhPZZg==", + "version": "1.16.0", + "resolved": "https://registry.npmjs.org/@seamapi/nextlove-sdk-generator/-/nextlove-sdk-generator-1.16.0.tgz", + "integrity": "sha512-ZUph6TDWERl7VasZWL1FMw+Pf2GXQRn9Tha3z0cptntpSHmUsTxZOW9BNowXvFllu+1KuQ1Wek63DgqUQEAZbg==", "dev": true, + "license": "MIT", "dependencies": { "@nodelib/fs.walk": "^2.0.0", "axios": "^1.5.0", @@ -455,9 +456,9 @@ } }, "node_modules/@seamapi/types": { - "version": "1.351.1", - "resolved": "https://registry.npmjs.org/@seamapi/types/-/types-1.351.1.tgz", - "integrity": "sha512-zqgGhSUs1EpNAxSAuDPq0jQNifMJua+lX5jviFtC7RSxjqGIP47oBtW76OxFHOnJK9FyIk4vYE583ioBzIPzOg==", + "version": "1.352.0", + "resolved": "https://registry.npmjs.org/@seamapi/types/-/types-1.352.0.tgz", + "integrity": "sha512-TYTFaO44JsGltHoPVbRQqT89gNtG9S7yXjRH6fVO5nYCa+SneBqAuOblKYvVtdurOGIf1IqzGHBIhwGlLBfxpw==", "dev": true, "license": "MIT", "engines": { diff --git a/package.json b/package.json index 6220dbd..f462f6a 100644 --- a/package.json +++ b/package.json @@ -12,8 +12,8 @@ }, "devDependencies": { "@prettier/plugin-php": "^0.22.1", - "@seamapi/nextlove-sdk-generator": "1.15.8", - "@seamapi/types": "1.351.1", + "@seamapi/nextlove-sdk-generator": "1.16.0", + "@seamapi/types": "1.352.0", "del": "^7.1.0", "prettier": "^3.0.0" } diff --git a/src/SeamClient.php b/src/SeamClient.php index 3af13b5..de12a12 100644 --- a/src/SeamClient.php +++ b/src/SeamClient.php @@ -45,23 +45,9 @@ class SeamClient { - public AccessCodesClient $access_codes; public AcsClient $acs; - public ActionAttemptsClient $action_attempts; - public BridgesClient $bridges; - public ClientSessionsClient $client_sessions; - public ConnectWebviewsClient $connect_webviews; - public ConnectedAccountsClient $connected_accounts; public DevicesClient $devices; - public EventsClient $events; - public LocksClient $locks; - public NetworksClient $networks; - public NoiseSensorsClient $noise_sensors; - public PhonesClient $phones; public ThermostatsClient $thermostats; - public UserIdentitiesClient $user_identities; - public WebhooksClient $webhooks; - public WorkspacesClient $workspaces; public string $api_key; public HTTPClient $client; @@ -86,23 +72,9 @@ public function __construct( ], "http_errors" => $throw_http_errors, ]); - $this->access_codes = new AccessCodesClient($this); $this->acs = new AcsClient($this); - $this->action_attempts = new ActionAttemptsClient($this); - $this->bridges = new BridgesClient($this); - $this->client_sessions = new ClientSessionsClient($this); - $this->connect_webviews = new ConnectWebviewsClient($this); - $this->connected_accounts = new ConnectedAccountsClient($this); $this->devices = new DevicesClient($this); - $this->events = new EventsClient($this); - $this->locks = new LocksClient($this); - $this->networks = new NetworksClient($this); - $this->noise_sensors = new NoiseSensorsClient($this); - $this->phones = new PhonesClient($this); $this->thermostats = new ThermostatsClient($this); - $this->user_identities = new UserIdentitiesClient($this); - $this->webhooks = new WebhooksClient($this); - $this->workspaces = new WorkspacesClient($this); } public function request( @@ -160,4299 +132,7 @@ public function request( } } -class AccessCodesClient -{ - private SeamClient $seam; - public AccessCodesSimulateClient $simulate; - public AccessCodesUnmanagedClient $unmanaged; - public function __construct(SeamClient $seam) - { - $this->seam = $seam; - $this->simulate = new AccessCodesSimulateClient($seam); - $this->unmanaged = new AccessCodesUnmanagedClient($seam); - } - - public function create( - string $device_id, - bool $allow_external_modification = null, - bool $attempt_for_offline_device = null, - string $code = null, - string $common_code_key = null, - string $ends_at = null, - bool $is_external_modification_allowed = null, - bool $is_offline_access_code = null, - bool $is_one_time_use = null, - string $max_time_rounding = null, - string $name = null, - bool $prefer_native_scheduling = null, - float $preferred_code_length = null, - string $starts_at = null, - bool $sync = null, - bool $use_backup_access_code_pool = null, - bool $use_offline_access_code = null - ): AccessCode { - $request_payload = []; - - if ($device_id !== null) { - $request_payload["device_id"] = $device_id; - } - if ($allow_external_modification !== null) { - $request_payload[ - "allow_external_modification" - ] = $allow_external_modification; - } - if ($attempt_for_offline_device !== null) { - $request_payload[ - "attempt_for_offline_device" - ] = $attempt_for_offline_device; - } - if ($code !== null) { - $request_payload["code"] = $code; - } - if ($common_code_key !== null) { - $request_payload["common_code_key"] = $common_code_key; - } - if ($ends_at !== null) { - $request_payload["ends_at"] = $ends_at; - } - if ($is_external_modification_allowed !== null) { - $request_payload[ - "is_external_modification_allowed" - ] = $is_external_modification_allowed; - } - if ($is_offline_access_code !== null) { - $request_payload[ - "is_offline_access_code" - ] = $is_offline_access_code; - } - if ($is_one_time_use !== null) { - $request_payload["is_one_time_use"] = $is_one_time_use; - } - if ($max_time_rounding !== null) { - $request_payload["max_time_rounding"] = $max_time_rounding; - } - if ($name !== null) { - $request_payload["name"] = $name; - } - if ($prefer_native_scheduling !== null) { - $request_payload[ - "prefer_native_scheduling" - ] = $prefer_native_scheduling; - } - if ($preferred_code_length !== null) { - $request_payload["preferred_code_length"] = $preferred_code_length; - } - if ($starts_at !== null) { - $request_payload["starts_at"] = $starts_at; - } - if ($sync !== null) { - $request_payload["sync"] = $sync; - } - if ($use_backup_access_code_pool !== null) { - $request_payload[ - "use_backup_access_code_pool" - ] = $use_backup_access_code_pool; - } - if ($use_offline_access_code !== null) { - $request_payload[ - "use_offline_access_code" - ] = $use_offline_access_code; - } - - $res = $this->seam->request( - "POST", - "/access_codes/create", - json: (object) $request_payload, - inner_object: "access_code" - ); - - return AccessCode::from_json($res); - } - - public function create_multiple( - array $device_ids, - bool $allow_external_modification = null, - bool $attempt_for_offline_device = null, - string $behavior_when_code_cannot_be_shared = null, - string $code = null, - string $ends_at = null, - bool $is_external_modification_allowed = null, - bool $is_offline_access_code = null, - bool $is_one_time_use = null, - string $max_time_rounding = null, - string $name = null, - bool $prefer_native_scheduling = null, - float $preferred_code_length = null, - string $starts_at = null, - bool $use_backup_access_code_pool = null, - bool $use_offline_access_code = null - ): array { - $request_payload = []; - - if ($device_ids !== null) { - $request_payload["device_ids"] = $device_ids; - } - if ($allow_external_modification !== null) { - $request_payload[ - "allow_external_modification" - ] = $allow_external_modification; - } - if ($attempt_for_offline_device !== null) { - $request_payload[ - "attempt_for_offline_device" - ] = $attempt_for_offline_device; - } - if ($behavior_when_code_cannot_be_shared !== null) { - $request_payload[ - "behavior_when_code_cannot_be_shared" - ] = $behavior_when_code_cannot_be_shared; - } - if ($code !== null) { - $request_payload["code"] = $code; - } - if ($ends_at !== null) { - $request_payload["ends_at"] = $ends_at; - } - if ($is_external_modification_allowed !== null) { - $request_payload[ - "is_external_modification_allowed" - ] = $is_external_modification_allowed; - } - if ($is_offline_access_code !== null) { - $request_payload[ - "is_offline_access_code" - ] = $is_offline_access_code; - } - if ($is_one_time_use !== null) { - $request_payload["is_one_time_use"] = $is_one_time_use; - } - if ($max_time_rounding !== null) { - $request_payload["max_time_rounding"] = $max_time_rounding; - } - if ($name !== null) { - $request_payload["name"] = $name; - } - if ($prefer_native_scheduling !== null) { - $request_payload[ - "prefer_native_scheduling" - ] = $prefer_native_scheduling; - } - if ($preferred_code_length !== null) { - $request_payload["preferred_code_length"] = $preferred_code_length; - } - if ($starts_at !== null) { - $request_payload["starts_at"] = $starts_at; - } - if ($use_backup_access_code_pool !== null) { - $request_payload[ - "use_backup_access_code_pool" - ] = $use_backup_access_code_pool; - } - if ($use_offline_access_code !== null) { - $request_payload[ - "use_offline_access_code" - ] = $use_offline_access_code; - } - - $res = $this->seam->request( - "POST", - "/access_codes/create_multiple", - json: (object) $request_payload, - inner_object: "access_codes" - ); - - return array_map(fn($r) => AccessCode::from_json($r), $res); - } - - public function delete( - string $access_code_id, - string $device_id = null, - bool $sync = null - ): void { - $request_payload = []; - - if ($access_code_id !== null) { - $request_payload["access_code_id"] = $access_code_id; - } - if ($device_id !== null) { - $request_payload["device_id"] = $device_id; - } - if ($sync !== null) { - $request_payload["sync"] = $sync; - } - - $this->seam->request( - "POST", - "/access_codes/delete", - json: (object) $request_payload - ); - } - - public function generate_code(string $device_id): AccessCode - { - $request_payload = []; - - if ($device_id !== null) { - $request_payload["device_id"] = $device_id; - } - - $res = $this->seam->request( - "POST", - "/access_codes/generate_code", - json: (object) $request_payload, - inner_object: "generated_code" - ); - - return AccessCode::from_json($res); - } - - public function get( - string $access_code_id = null, - string $code = null, - string $device_id = null - ): AccessCode { - $request_payload = []; - - if ($access_code_id !== null) { - $request_payload["access_code_id"] = $access_code_id; - } - if ($code !== null) { - $request_payload["code"] = $code; - } - if ($device_id !== null) { - $request_payload["device_id"] = $device_id; - } - - $res = $this->seam->request( - "POST", - "/access_codes/get", - json: (object) $request_payload, - inner_object: "access_code" - ); - - return AccessCode::from_json($res); - } - - public function list( - array $access_code_ids = null, - string $device_id = null, - string $user_identifier_key = null - ): array { - $request_payload = []; - - if ($access_code_ids !== null) { - $request_payload["access_code_ids"] = $access_code_ids; - } - if ($device_id !== null) { - $request_payload["device_id"] = $device_id; - } - if ($user_identifier_key !== null) { - $request_payload["user_identifier_key"] = $user_identifier_key; - } - - $res = $this->seam->request( - "POST", - "/access_codes/list", - json: (object) $request_payload, - inner_object: "access_codes" - ); - - return array_map(fn($r) => AccessCode::from_json($r), $res); - } - - public function pull_backup_access_code(string $access_code_id): AccessCode - { - $request_payload = []; - - if ($access_code_id !== null) { - $request_payload["access_code_id"] = $access_code_id; - } - - $res = $this->seam->request( - "POST", - "/access_codes/pull_backup_access_code", - json: (object) $request_payload, - inner_object: "access_code" - ); - - return AccessCode::from_json($res); - } - - public function update( - string $access_code_id, - bool $allow_external_modification = null, - bool $attempt_for_offline_device = null, - string $code = null, - string $device_id = null, - string $ends_at = null, - bool $is_external_modification_allowed = null, - bool $is_managed = null, - bool $is_offline_access_code = null, - bool $is_one_time_use = null, - string $max_time_rounding = null, - string $name = null, - bool $prefer_native_scheduling = null, - float $preferred_code_length = null, - string $starts_at = null, - bool $sync = null, - string $type = null, - bool $use_backup_access_code_pool = null, - bool $use_offline_access_code = null - ): void { - $request_payload = []; - - if ($access_code_id !== null) { - $request_payload["access_code_id"] = $access_code_id; - } - if ($allow_external_modification !== null) { - $request_payload[ - "allow_external_modification" - ] = $allow_external_modification; - } - if ($attempt_for_offline_device !== null) { - $request_payload[ - "attempt_for_offline_device" - ] = $attempt_for_offline_device; - } - if ($code !== null) { - $request_payload["code"] = $code; - } - if ($device_id !== null) { - $request_payload["device_id"] = $device_id; - } - if ($ends_at !== null) { - $request_payload["ends_at"] = $ends_at; - } - if ($is_external_modification_allowed !== null) { - $request_payload[ - "is_external_modification_allowed" - ] = $is_external_modification_allowed; - } - if ($is_managed !== null) { - $request_payload["is_managed"] = $is_managed; - } - if ($is_offline_access_code !== null) { - $request_payload[ - "is_offline_access_code" - ] = $is_offline_access_code; - } - if ($is_one_time_use !== null) { - $request_payload["is_one_time_use"] = $is_one_time_use; - } - if ($max_time_rounding !== null) { - $request_payload["max_time_rounding"] = $max_time_rounding; - } - if ($name !== null) { - $request_payload["name"] = $name; - } - if ($prefer_native_scheduling !== null) { - $request_payload[ - "prefer_native_scheduling" - ] = $prefer_native_scheduling; - } - if ($preferred_code_length !== null) { - $request_payload["preferred_code_length"] = $preferred_code_length; - } - if ($starts_at !== null) { - $request_payload["starts_at"] = $starts_at; - } - if ($sync !== null) { - $request_payload["sync"] = $sync; - } - if ($type !== null) { - $request_payload["type"] = $type; - } - if ($use_backup_access_code_pool !== null) { - $request_payload[ - "use_backup_access_code_pool" - ] = $use_backup_access_code_pool; - } - if ($use_offline_access_code !== null) { - $request_payload[ - "use_offline_access_code" - ] = $use_offline_access_code; - } - - $this->seam->request( - "POST", - "/access_codes/update", - json: (object) $request_payload - ); - } - - public function update_multiple( - string $common_code_key, - string $ends_at = null, - string $name = null, - string $starts_at = null - ): void { - $request_payload = []; - - if ($common_code_key !== null) { - $request_payload["common_code_key"] = $common_code_key; - } - if ($ends_at !== null) { - $request_payload["ends_at"] = $ends_at; - } - if ($name !== null) { - $request_payload["name"] = $name; - } - if ($starts_at !== null) { - $request_payload["starts_at"] = $starts_at; - } - - $this->seam->request( - "POST", - "/access_codes/update_multiple", - json: (object) $request_payload - ); - } -} - -class AccessCodesSimulateClient -{ - private SeamClient $seam; - - public function __construct(SeamClient $seam) - { - $this->seam = $seam; - } - - public function create_unmanaged_access_code( - string $code, - string $device_id, - string $name - ): UnmanagedAccessCode { - $request_payload = []; - - if ($code !== null) { - $request_payload["code"] = $code; - } - if ($device_id !== null) { - $request_payload["device_id"] = $device_id; - } - if ($name !== null) { - $request_payload["name"] = $name; - } - - $res = $this->seam->request( - "POST", - "/access_codes/simulate/create_unmanaged_access_code", - json: (object) $request_payload, - inner_object: "access_code" - ); - - return UnmanagedAccessCode::from_json($res); - } -} - -class AccessCodesUnmanagedClient -{ - private SeamClient $seam; - - public function __construct(SeamClient $seam) - { - $this->seam = $seam; - } - - public function convert_to_managed( - string $access_code_id, - bool $allow_external_modification = null, - bool $force = null, - bool $is_external_modification_allowed = null, - bool $sync = null - ): void { - $request_payload = []; - - if ($access_code_id !== null) { - $request_payload["access_code_id"] = $access_code_id; - } - if ($allow_external_modification !== null) { - $request_payload[ - "allow_external_modification" - ] = $allow_external_modification; - } - if ($force !== null) { - $request_payload["force"] = $force; - } - if ($is_external_modification_allowed !== null) { - $request_payload[ - "is_external_modification_allowed" - ] = $is_external_modification_allowed; - } - if ($sync !== null) { - $request_payload["sync"] = $sync; - } - - $this->seam->request( - "POST", - "/access_codes/unmanaged/convert_to_managed", - json: (object) $request_payload - ); - } - - public function delete(string $access_code_id, bool $sync = null): void - { - $request_payload = []; - - if ($access_code_id !== null) { - $request_payload["access_code_id"] = $access_code_id; - } - if ($sync !== null) { - $request_payload["sync"] = $sync; - } - - $this->seam->request( - "POST", - "/access_codes/unmanaged/delete", - json: (object) $request_payload - ); - } - - public function get( - string $access_code_id = null, - string $code = null, - string $device_id = null - ): UnmanagedAccessCode { - $request_payload = []; - - if ($access_code_id !== null) { - $request_payload["access_code_id"] = $access_code_id; - } - if ($code !== null) { - $request_payload["code"] = $code; - } - if ($device_id !== null) { - $request_payload["device_id"] = $device_id; - } - - $res = $this->seam->request( - "POST", - "/access_codes/unmanaged/get", - json: (object) $request_payload, - inner_object: "access_code" - ); - - return UnmanagedAccessCode::from_json($res); - } - - public function list( - string $device_id, - string $user_identifier_key = null - ): array { - $request_payload = []; - - if ($device_id !== null) { - $request_payload["device_id"] = $device_id; - } - if ($user_identifier_key !== null) { - $request_payload["user_identifier_key"] = $user_identifier_key; - } - - $res = $this->seam->request( - "POST", - "/access_codes/unmanaged/list", - json: (object) $request_payload, - inner_object: "access_codes" - ); - - return array_map(fn($r) => UnmanagedAccessCode::from_json($r), $res); - } - - public function update( - string $access_code_id, - bool $is_managed, - bool $allow_external_modification = null, - bool $force = null, - bool $is_external_modification_allowed = null - ): void { - $request_payload = []; - - if ($access_code_id !== null) { - $request_payload["access_code_id"] = $access_code_id; - } - if ($is_managed !== null) { - $request_payload["is_managed"] = $is_managed; - } - if ($allow_external_modification !== null) { - $request_payload[ - "allow_external_modification" - ] = $allow_external_modification; - } - if ($force !== null) { - $request_payload["force"] = $force; - } - if ($is_external_modification_allowed !== null) { - $request_payload[ - "is_external_modification_allowed" - ] = $is_external_modification_allowed; - } - - $this->seam->request( - "POST", - "/access_codes/unmanaged/update", - json: (object) $request_payload - ); - } -} - -class AcsAccessGroupsClient -{ - private SeamClient $seam; - - public function __construct(SeamClient $seam) - { - $this->seam = $seam; - } - - public function add_user( - string $acs_access_group_id, - string $acs_user_id - ): void { - $request_payload = []; - - if ($acs_access_group_id !== null) { - $request_payload["acs_access_group_id"] = $acs_access_group_id; - } - if ($acs_user_id !== null) { - $request_payload["acs_user_id"] = $acs_user_id; - } - - $this->seam->request( - "POST", - "/acs/access_groups/add_user", - json: (object) $request_payload - ); - } - - public function get(string $acs_access_group_id): AcsAccessGroup - { - $request_payload = []; - - if ($acs_access_group_id !== null) { - $request_payload["acs_access_group_id"] = $acs_access_group_id; - } - - $res = $this->seam->request( - "POST", - "/acs/access_groups/get", - json: (object) $request_payload, - inner_object: "acs_access_group" - ); - - return AcsAccessGroup::from_json($res); - } - - public function list( - string $acs_system_id = null, - string $acs_user_id = null - ): array { - $request_payload = []; - - if ($acs_system_id !== null) { - $request_payload["acs_system_id"] = $acs_system_id; - } - if ($acs_user_id !== null) { - $request_payload["acs_user_id"] = $acs_user_id; - } - - $res = $this->seam->request( - "POST", - "/acs/access_groups/list", - json: (object) $request_payload, - inner_object: "acs_access_groups" - ); - - return array_map(fn($r) => AcsAccessGroup::from_json($r), $res); - } - - public function list_accessible_entrances( - string $acs_access_group_id - ): array { - $request_payload = []; - - if ($acs_access_group_id !== null) { - $request_payload["acs_access_group_id"] = $acs_access_group_id; - } - - $res = $this->seam->request( - "POST", - "/acs/access_groups/list_accessible_entrances", - json: (object) $request_payload, - inner_object: "acs_entrances" - ); - - return array_map(fn($r) => AcsEntrance::from_json($r), $res); - } - - public function list_users(string $acs_access_group_id): array - { - $request_payload = []; - - if ($acs_access_group_id !== null) { - $request_payload["acs_access_group_id"] = $acs_access_group_id; - } - - $res = $this->seam->request( - "POST", - "/acs/access_groups/list_users", - json: (object) $request_payload, - inner_object: "acs_users" - ); - - return array_map(fn($r) => AcsUser::from_json($r), $res); - } - - public function remove_user( - string $acs_access_group_id, - string $acs_user_id - ): void { - $request_payload = []; - - if ($acs_access_group_id !== null) { - $request_payload["acs_access_group_id"] = $acs_access_group_id; - } - if ($acs_user_id !== null) { - $request_payload["acs_user_id"] = $acs_user_id; - } - - $this->seam->request( - "POST", - "/acs/access_groups/remove_user", - json: (object) $request_payload - ); - } -} - -class AcsClient -{ - private SeamClient $seam; - public AcsAccessGroupsClient $access_groups; - public AcsCredentialPoolsClient $credential_pools; - public AcsCredentialProvisioningAutomationsClient $credential_provisioning_automations; - public AcsCredentialsClient $credentials; - public AcsEncodersClient $encoders; - public AcsEntrancesClient $entrances; - public AcsSystemsClient $systems; - public AcsUsersClient $users; - public function __construct(SeamClient $seam) - { - $this->seam = $seam; - $this->access_groups = new AcsAccessGroupsClient($seam); - $this->credential_pools = new AcsCredentialPoolsClient($seam); - $this->credential_provisioning_automations = new AcsCredentialProvisioningAutomationsClient( - $seam - ); - $this->credentials = new AcsCredentialsClient($seam); - $this->encoders = new AcsEncodersClient($seam); - $this->entrances = new AcsEntrancesClient($seam); - $this->systems = new AcsSystemsClient($seam); - $this->users = new AcsUsersClient($seam); - } -} - -class AcsAccessGroupsUnmanagedClient -{ - private SeamClient $seam; - - public function __construct(SeamClient $seam) - { - $this->seam = $seam; - } - - public function get(string $acs_access_group_id): UnmanagedAcsAccessGroup - { - $request_payload = []; - - if ($acs_access_group_id !== null) { - $request_payload["acs_access_group_id"] = $acs_access_group_id; - } - - $res = $this->seam->request( - "POST", - "/acs/access_groups/unmanaged/get", - json: (object) $request_payload, - inner_object: "acs_access_group" - ); - - return UnmanagedAcsAccessGroup::from_json($res); - } - - public function list( - string $acs_system_id = null, - string $acs_user_id = null - ): array { - $request_payload = []; - - if ($acs_system_id !== null) { - $request_payload["acs_system_id"] = $acs_system_id; - } - if ($acs_user_id !== null) { - $request_payload["acs_user_id"] = $acs_user_id; - } - - $res = $this->seam->request( - "POST", - "/acs/access_groups/unmanaged/list", - json: (object) $request_payload, - inner_object: "acs_access_groups" - ); - - return array_map( - fn($r) => UnmanagedAcsAccessGroup::from_json($r), - $res - ); - } -} - -class AcsCredentialPoolsClient -{ - private SeamClient $seam; - - public function __construct(SeamClient $seam) - { - $this->seam = $seam; - } - - public function list(string $acs_system_id): array - { - $request_payload = []; - - if ($acs_system_id !== null) { - $request_payload["acs_system_id"] = $acs_system_id; - } - - $res = $this->seam->request( - "POST", - "/acs/credential_pools/list", - json: (object) $request_payload, - inner_object: "acs_credential_pools" - ); - - return array_map(fn($r) => AcsCredentialPool::from_json($r), $res); - } -} - -class AcsCredentialProvisioningAutomationsClient -{ - private SeamClient $seam; - - public function __construct(SeamClient $seam) - { - $this->seam = $seam; - } - - public function launch( - string $credential_manager_acs_system_id, - string $user_identity_id, - string $acs_credential_pool_id = null, - bool $create_credential_manager_user = null, - string $credential_manager_acs_user_id = null - ): AcsCredentialProvisioningAutomation { - $request_payload = []; - - if ($credential_manager_acs_system_id !== null) { - $request_payload[ - "credential_manager_acs_system_id" - ] = $credential_manager_acs_system_id; - } - if ($user_identity_id !== null) { - $request_payload["user_identity_id"] = $user_identity_id; - } - if ($acs_credential_pool_id !== null) { - $request_payload[ - "acs_credential_pool_id" - ] = $acs_credential_pool_id; - } - if ($create_credential_manager_user !== null) { - $request_payload[ - "create_credential_manager_user" - ] = $create_credential_manager_user; - } - if ($credential_manager_acs_user_id !== null) { - $request_payload[ - "credential_manager_acs_user_id" - ] = $credential_manager_acs_user_id; - } - - $res = $this->seam->request( - "POST", - "/acs/credential_provisioning_automations/launch", - json: (object) $request_payload, - inner_object: "acs_credential_provisioning_automation" - ); - - return AcsCredentialProvisioningAutomation::from_json($res); - } -} - -class AcsCredentialsClient -{ - private SeamClient $seam; - - public function __construct(SeamClient $seam) - { - $this->seam = $seam; - } - - public function assign(string $acs_credential_id, string $acs_user_id): void - { - $request_payload = []; - - if ($acs_credential_id !== null) { - $request_payload["acs_credential_id"] = $acs_credential_id; - } - if ($acs_user_id !== null) { - $request_payload["acs_user_id"] = $acs_user_id; - } - - $this->seam->request( - "POST", - "/acs/credentials/assign", - json: (object) $request_payload - ); - } - - public function create( - string $access_method, - string $acs_user_id, - array $allowed_acs_entrance_ids = null, - mixed $assa_abloy_vostio_metadata = null, - string $code = null, - string $credential_manager_acs_system_id = null, - string $ends_at = null, - bool $is_multi_phone_sync_credential = null, - mixed $salto_space_metadata = null, - string $starts_at = null, - mixed $visionline_metadata = null - ): AcsCredential { - $request_payload = []; - - if ($access_method !== null) { - $request_payload["access_method"] = $access_method; - } - if ($acs_user_id !== null) { - $request_payload["acs_user_id"] = $acs_user_id; - } - if ($allowed_acs_entrance_ids !== null) { - $request_payload[ - "allowed_acs_entrance_ids" - ] = $allowed_acs_entrance_ids; - } - if ($assa_abloy_vostio_metadata !== null) { - $request_payload[ - "assa_abloy_vostio_metadata" - ] = $assa_abloy_vostio_metadata; - } - if ($code !== null) { - $request_payload["code"] = $code; - } - if ($credential_manager_acs_system_id !== null) { - $request_payload[ - "credential_manager_acs_system_id" - ] = $credential_manager_acs_system_id; - } - if ($ends_at !== null) { - $request_payload["ends_at"] = $ends_at; - } - if ($is_multi_phone_sync_credential !== null) { - $request_payload[ - "is_multi_phone_sync_credential" - ] = $is_multi_phone_sync_credential; - } - if ($salto_space_metadata !== null) { - $request_payload["salto_space_metadata"] = $salto_space_metadata; - } - if ($starts_at !== null) { - $request_payload["starts_at"] = $starts_at; - } - if ($visionline_metadata !== null) { - $request_payload["visionline_metadata"] = $visionline_metadata; - } - - $res = $this->seam->request( - "POST", - "/acs/credentials/create", - json: (object) $request_payload, - inner_object: "acs_credential" - ); - - return AcsCredential::from_json($res); - } - - public function create_offline_code( - string $acs_user_id, - string $allowed_acs_entrance_id, - string $ends_at = null, - bool $is_one_time_use = null, - string $starts_at = null - ): AcsCredential { - $request_payload = []; - - if ($acs_user_id !== null) { - $request_payload["acs_user_id"] = $acs_user_id; - } - if ($allowed_acs_entrance_id !== null) { - $request_payload[ - "allowed_acs_entrance_id" - ] = $allowed_acs_entrance_id; - } - if ($ends_at !== null) { - $request_payload["ends_at"] = $ends_at; - } - if ($is_one_time_use !== null) { - $request_payload["is_one_time_use"] = $is_one_time_use; - } - if ($starts_at !== null) { - $request_payload["starts_at"] = $starts_at; - } - - $res = $this->seam->request( - "POST", - "/acs/credentials/create_offline_code", - json: (object) $request_payload, - inner_object: "acs_credential" - ); - - return AcsCredential::from_json($res); - } - - public function delete(string $acs_credential_id): void - { - $request_payload = []; - - if ($acs_credential_id !== null) { - $request_payload["acs_credential_id"] = $acs_credential_id; - } - - $this->seam->request( - "POST", - "/acs/credentials/delete", - json: (object) $request_payload - ); - } - - public function get(string $acs_credential_id): AcsCredential - { - $request_payload = []; - - if ($acs_credential_id !== null) { - $request_payload["acs_credential_id"] = $acs_credential_id; - } - - $res = $this->seam->request( - "POST", - "/acs/credentials/get", - json: (object) $request_payload, - inner_object: "acs_credential" - ); - - return AcsCredential::from_json($res); - } - - public function list( - string $acs_user_id = null, - string $acs_system_id = null, - string $user_identity_id = null, - string $created_before = null, - bool $is_multi_phone_sync_credential = null, - float $limit = null - ): array { - $request_payload = []; - - if ($acs_user_id !== null) { - $request_payload["acs_user_id"] = $acs_user_id; - } - if ($acs_system_id !== null) { - $request_payload["acs_system_id"] = $acs_system_id; - } - if ($user_identity_id !== null) { - $request_payload["user_identity_id"] = $user_identity_id; - } - if ($created_before !== null) { - $request_payload["created_before"] = $created_before; - } - if ($is_multi_phone_sync_credential !== null) { - $request_payload[ - "is_multi_phone_sync_credential" - ] = $is_multi_phone_sync_credential; - } - if ($limit !== null) { - $request_payload["limit"] = $limit; - } - - $res = $this->seam->request( - "POST", - "/acs/credentials/list", - json: (object) $request_payload, - inner_object: "acs_credentials" - ); - - return array_map(fn($r) => AcsCredential::from_json($r), $res); - } - - public function list_accessible_entrances(string $acs_credential_id): array - { - $request_payload = []; - - if ($acs_credential_id !== null) { - $request_payload["acs_credential_id"] = $acs_credential_id; - } - - $res = $this->seam->request( - "POST", - "/acs/credentials/list_accessible_entrances", - json: (object) $request_payload, - inner_object: "acs_entrances" - ); - - return array_map(fn($r) => AcsEntrance::from_json($r), $res); - } - - public function unassign( - string $acs_credential_id, - string $acs_user_id - ): void { - $request_payload = []; - - if ($acs_credential_id !== null) { - $request_payload["acs_credential_id"] = $acs_credential_id; - } - if ($acs_user_id !== null) { - $request_payload["acs_user_id"] = $acs_user_id; - } - - $this->seam->request( - "POST", - "/acs/credentials/unassign", - json: (object) $request_payload - ); - } - - public function update( - string $acs_credential_id, - string $code = null, - string $ends_at = null - ): void { - $request_payload = []; - - if ($acs_credential_id !== null) { - $request_payload["acs_credential_id"] = $acs_credential_id; - } - if ($code !== null) { - $request_payload["code"] = $code; - } - if ($ends_at !== null) { - $request_payload["ends_at"] = $ends_at; - } - - $this->seam->request( - "POST", - "/acs/credentials/update", - json: (object) $request_payload - ); - } -} - -class AcsCredentialsUnmanagedClient -{ - private SeamClient $seam; - - public function __construct(SeamClient $seam) - { - $this->seam = $seam; - } - - public function get(string $acs_credential_id): UnmanagedAcsCredential - { - $request_payload = []; - - if ($acs_credential_id !== null) { - $request_payload["acs_credential_id"] = $acs_credential_id; - } - - $res = $this->seam->request( - "POST", - "/acs/credentials/unmanaged/get", - json: (object) $request_payload, - inner_object: "acs_credential" - ); - - return UnmanagedAcsCredential::from_json($res); - } - - public function list( - string $acs_user_id = null, - string $acs_system_id = null, - string $user_identity_id = null - ): array { - $request_payload = []; - - if ($acs_user_id !== null) { - $request_payload["acs_user_id"] = $acs_user_id; - } - if ($acs_system_id !== null) { - $request_payload["acs_system_id"] = $acs_system_id; - } - if ($user_identity_id !== null) { - $request_payload["user_identity_id"] = $user_identity_id; - } - - $res = $this->seam->request( - "POST", - "/acs/credentials/unmanaged/list", - json: (object) $request_payload, - inner_object: "acs_credentials" - ); - - return array_map(fn($r) => UnmanagedAcsCredential::from_json($r), $res); - } -} - -class AcsEncodersClient -{ - private SeamClient $seam; - - public function __construct(SeamClient $seam) - { - $this->seam = $seam; - } - - public function encode_credential( - string $acs_credential_id, - string $acs_encoder_id, - bool $wait_for_action_attempt = true - ): ActionAttempt { - $request_payload = []; - - if ($acs_credential_id !== null) { - $request_payload["acs_credential_id"] = $acs_credential_id; - } - if ($acs_encoder_id !== null) { - $request_payload["acs_encoder_id"] = $acs_encoder_id; - } - - $res = $this->seam->request( - "POST", - "/acs/encoders/encode_credential", - json: (object) $request_payload, - inner_object: "action_attempt" - ); - - if (!$wait_for_action_attempt) { - return ActionAttempt::from_json($res); - } - - $action_attempt = $this->seam->action_attempts->poll_until_ready( - $res->action_attempt_id - ); - - return $action_attempt; - } - - public function list( - string $acs_system_id = null, - float $limit = null, - array $acs_system_ids = null, - array $acs_encoder_ids = null - ): array { - $request_payload = []; - - if ($acs_system_id !== null) { - $request_payload["acs_system_id"] = $acs_system_id; - } - if ($limit !== null) { - $request_payload["limit"] = $limit; - } - if ($acs_system_ids !== null) { - $request_payload["acs_system_ids"] = $acs_system_ids; - } - if ($acs_encoder_ids !== null) { - $request_payload["acs_encoder_ids"] = $acs_encoder_ids; - } - - $res = $this->seam->request( - "POST", - "/acs/encoders/list", - json: (object) $request_payload, - inner_object: "acs_encoders" - ); - - return array_map(fn($r) => AcsEncoder::from_json($r), $res); - } - - public function scan_credential( - string $acs_encoder_id, - bool $wait_for_action_attempt = true - ): ActionAttempt { - $request_payload = []; - - if ($acs_encoder_id !== null) { - $request_payload["acs_encoder_id"] = $acs_encoder_id; - } - - $res = $this->seam->request( - "POST", - "/acs/encoders/scan_credential", - json: (object) $request_payload, - inner_object: "action_attempt" - ); - - if (!$wait_for_action_attempt) { - return ActionAttempt::from_json($res); - } - - $action_attempt = $this->seam->action_attempts->poll_until_ready( - $res->action_attempt_id - ); - - return $action_attempt; - } -} - -class AcsEncodersSimulateClient -{ - private SeamClient $seam; - - public function __construct(SeamClient $seam) - { - $this->seam = $seam; - } - - public function next_credential_encode_will_fail( - string $acs_encoder_id, - string $error_code = null, - string $acs_credential_id = null - ): void { - $request_payload = []; - - if ($acs_encoder_id !== null) { - $request_payload["acs_encoder_id"] = $acs_encoder_id; - } - if ($error_code !== null) { - $request_payload["error_code"] = $error_code; - } - if ($acs_credential_id !== null) { - $request_payload["acs_credential_id"] = $acs_credential_id; - } - - $this->seam->request( - "POST", - "/acs/encoders/simulate/next_credential_encode_will_fail", - json: (object) $request_payload - ); - } - - public function next_credential_encode_will_succeed( - string $acs_encoder_id, - string $scenario = null - ): void { - $request_payload = []; - - if ($acs_encoder_id !== null) { - $request_payload["acs_encoder_id"] = $acs_encoder_id; - } - if ($scenario !== null) { - $request_payload["scenario"] = $scenario; - } - - $this->seam->request( - "POST", - "/acs/encoders/simulate/next_credential_encode_will_succeed", - json: (object) $request_payload - ); - } - - public function next_credential_scan_will_fail( - string $acs_encoder_id, - string $error_code = null, - string $acs_credential_id_on_seam = null - ): void { - $request_payload = []; - - if ($acs_encoder_id !== null) { - $request_payload["acs_encoder_id"] = $acs_encoder_id; - } - if ($error_code !== null) { - $request_payload["error_code"] = $error_code; - } - if ($acs_credential_id_on_seam !== null) { - $request_payload[ - "acs_credential_id_on_seam" - ] = $acs_credential_id_on_seam; - } - - $this->seam->request( - "POST", - "/acs/encoders/simulate/next_credential_scan_will_fail", - json: (object) $request_payload - ); - } - - public function next_credential_scan_will_succeed( - string $acs_encoder_id, - string $acs_credential_id_on_seam = null, - string $scenario = null - ): void { - $request_payload = []; - - if ($acs_encoder_id !== null) { - $request_payload["acs_encoder_id"] = $acs_encoder_id; - } - if ($acs_credential_id_on_seam !== null) { - $request_payload[ - "acs_credential_id_on_seam" - ] = $acs_credential_id_on_seam; - } - if ($scenario !== null) { - $request_payload["scenario"] = $scenario; - } - - $this->seam->request( - "POST", - "/acs/encoders/simulate/next_credential_scan_will_succeed", - json: (object) $request_payload - ); - } -} - -class AcsEntrancesClient -{ - private SeamClient $seam; - - public function __construct(SeamClient $seam) - { - $this->seam = $seam; - } - - public function get(string $acs_entrance_id): AcsEntrance - { - $request_payload = []; - - if ($acs_entrance_id !== null) { - $request_payload["acs_entrance_id"] = $acs_entrance_id; - } - - $res = $this->seam->request( - "POST", - "/acs/entrances/get", - json: (object) $request_payload, - inner_object: "acs_entrance" - ); - - return AcsEntrance::from_json($res); - } - - public function grant_access( - string $acs_entrance_id, - string $acs_user_id - ): void { - $request_payload = []; - - if ($acs_entrance_id !== null) { - $request_payload["acs_entrance_id"] = $acs_entrance_id; - } - if ($acs_user_id !== null) { - $request_payload["acs_user_id"] = $acs_user_id; - } - - $this->seam->request( - "POST", - "/acs/entrances/grant_access", - json: (object) $request_payload - ); - } - - public function list( - string $acs_credential_id = null, - string $acs_system_id = null - ): array { - $request_payload = []; - - if ($acs_credential_id !== null) { - $request_payload["acs_credential_id"] = $acs_credential_id; - } - if ($acs_system_id !== null) { - $request_payload["acs_system_id"] = $acs_system_id; - } - - $res = $this->seam->request( - "POST", - "/acs/entrances/list", - json: (object) $request_payload, - inner_object: "acs_entrances" - ); - - return array_map(fn($r) => AcsEntrance::from_json($r), $res); - } - - public function list_credentials_with_access( - string $acs_entrance_id, - array $include_if = null - ): array { - $request_payload = []; - - if ($acs_entrance_id !== null) { - $request_payload["acs_entrance_id"] = $acs_entrance_id; - } - if ($include_if !== null) { - $request_payload["include_if"] = $include_if; - } - - $res = $this->seam->request( - "POST", - "/acs/entrances/list_credentials_with_access", - json: (object) $request_payload, - inner_object: "acs_credentials" - ); - - return array_map(fn($r) => AcsCredential::from_json($r), $res); - } -} - -class AcsSystemsClient -{ - private SeamClient $seam; - - public function __construct(SeamClient $seam) - { - $this->seam = $seam; - } - - public function get(string $acs_system_id): AcsSystem - { - $request_payload = []; - - if ($acs_system_id !== null) { - $request_payload["acs_system_id"] = $acs_system_id; - } - - $res = $this->seam->request( - "POST", - "/acs/systems/get", - json: (object) $request_payload, - inner_object: "acs_system" - ); - - return AcsSystem::from_json($res); - } - - public function list(string $connected_account_id = null): array - { - $request_payload = []; - - if ($connected_account_id !== null) { - $request_payload["connected_account_id"] = $connected_account_id; - } - - $res = $this->seam->request( - "POST", - "/acs/systems/list", - json: (object) $request_payload, - inner_object: "acs_systems" - ); - - return array_map(fn($r) => AcsSystem::from_json($r), $res); - } - - public function list_compatible_credential_manager_acs_systems( - string $acs_system_id - ): array { - $request_payload = []; - - if ($acs_system_id !== null) { - $request_payload["acs_system_id"] = $acs_system_id; - } - - $res = $this->seam->request( - "POST", - "/acs/systems/list_compatible_credential_manager_acs_systems", - json: (object) $request_payload, - inner_object: "acs_systems" - ); - - return array_map(fn($r) => AcsSystem::from_json($r), $res); - } -} - -class AcsUsersClient -{ - private SeamClient $seam; - - public function __construct(SeamClient $seam) - { - $this->seam = $seam; - } - - public function add_to_access_group( - string $acs_access_group_id, - string $acs_user_id - ): void { - $request_payload = []; - - if ($acs_access_group_id !== null) { - $request_payload["acs_access_group_id"] = $acs_access_group_id; - } - if ($acs_user_id !== null) { - $request_payload["acs_user_id"] = $acs_user_id; - } - - $this->seam->request( - "POST", - "/acs/users/add_to_access_group", - json: (object) $request_payload - ); - } - - public function create( - string $acs_system_id, - string $full_name, - mixed $access_schedule = null, - array $acs_access_group_ids = null, - string $email = null, - string $email_address = null, - string $phone_number = null, - string $user_identity_id = null - ): AcsUser { - $request_payload = []; - - if ($acs_system_id !== null) { - $request_payload["acs_system_id"] = $acs_system_id; - } - if ($full_name !== null) { - $request_payload["full_name"] = $full_name; - } - if ($access_schedule !== null) { - $request_payload["access_schedule"] = $access_schedule; - } - if ($acs_access_group_ids !== null) { - $request_payload["acs_access_group_ids"] = $acs_access_group_ids; - } - if ($email !== null) { - $request_payload["email"] = $email; - } - if ($email_address !== null) { - $request_payload["email_address"] = $email_address; - } - if ($phone_number !== null) { - $request_payload["phone_number"] = $phone_number; - } - if ($user_identity_id !== null) { - $request_payload["user_identity_id"] = $user_identity_id; - } - - $res = $this->seam->request( - "POST", - "/acs/users/create", - json: (object) $request_payload, - inner_object: "acs_user" - ); - - return AcsUser::from_json($res); - } - - public function delete(string $acs_user_id): void - { - $request_payload = []; - - if ($acs_user_id !== null) { - $request_payload["acs_user_id"] = $acs_user_id; - } - - $this->seam->request( - "POST", - "/acs/users/delete", - json: (object) $request_payload - ); - } - - public function get(string $acs_user_id): AcsUser - { - $request_payload = []; - - if ($acs_user_id !== null) { - $request_payload["acs_user_id"] = $acs_user_id; - } - - $res = $this->seam->request( - "POST", - "/acs/users/get", - json: (object) $request_payload, - inner_object: "acs_user" - ); - - return AcsUser::from_json($res); - } - - public function list( - string $acs_system_id = null, - string $created_before = null, - float $limit = null, - string $user_identity_email_address = null, - string $user_identity_id = null, - string $user_identity_phone_number = null - ): array { - $request_payload = []; - - if ($acs_system_id !== null) { - $request_payload["acs_system_id"] = $acs_system_id; - } - if ($created_before !== null) { - $request_payload["created_before"] = $created_before; - } - if ($limit !== null) { - $request_payload["limit"] = $limit; - } - if ($user_identity_email_address !== null) { - $request_payload[ - "user_identity_email_address" - ] = $user_identity_email_address; - } - if ($user_identity_id !== null) { - $request_payload["user_identity_id"] = $user_identity_id; - } - if ($user_identity_phone_number !== null) { - $request_payload[ - "user_identity_phone_number" - ] = $user_identity_phone_number; - } - - $res = $this->seam->request( - "POST", - "/acs/users/list", - json: (object) $request_payload, - inner_object: "acs_users" - ); - - return array_map(fn($r) => AcsUser::from_json($r), $res); - } - - public function list_accessible_entrances(string $acs_user_id): array - { - $request_payload = []; - - if ($acs_user_id !== null) { - $request_payload["acs_user_id"] = $acs_user_id; - } - - $res = $this->seam->request( - "POST", - "/acs/users/list_accessible_entrances", - json: (object) $request_payload, - inner_object: "acs_entrances" - ); - - return array_map(fn($r) => AcsEntrance::from_json($r), $res); - } - - public function remove_from_access_group( - string $acs_access_group_id, - string $acs_user_id - ): void { - $request_payload = []; - - if ($acs_access_group_id !== null) { - $request_payload["acs_access_group_id"] = $acs_access_group_id; - } - if ($acs_user_id !== null) { - $request_payload["acs_user_id"] = $acs_user_id; - } - - $this->seam->request( - "POST", - "/acs/users/remove_from_access_group", - json: (object) $request_payload - ); - } - - public function revoke_access_to_all_entrances(string $acs_user_id): void - { - $request_payload = []; - - if ($acs_user_id !== null) { - $request_payload["acs_user_id"] = $acs_user_id; - } - - $this->seam->request( - "POST", - "/acs/users/revoke_access_to_all_entrances", - json: (object) $request_payload - ); - } - - public function suspend(string $acs_user_id): void - { - $request_payload = []; - - if ($acs_user_id !== null) { - $request_payload["acs_user_id"] = $acs_user_id; - } - - $this->seam->request( - "POST", - "/acs/users/suspend", - json: (object) $request_payload - ); - } - - public function unsuspend(string $acs_user_id): void - { - $request_payload = []; - - if ($acs_user_id !== null) { - $request_payload["acs_user_id"] = $acs_user_id; - } - - $this->seam->request( - "POST", - "/acs/users/unsuspend", - json: (object) $request_payload - ); - } - - public function update( - string $acs_user_id, - mixed $access_schedule = null, - string $email = null, - string $email_address = null, - string $full_name = null, - string $hid_acs_system_id = null, - string $phone_number = null - ): void { - $request_payload = []; - - if ($acs_user_id !== null) { - $request_payload["acs_user_id"] = $acs_user_id; - } - if ($access_schedule !== null) { - $request_payload["access_schedule"] = $access_schedule; - } - if ($email !== null) { - $request_payload["email"] = $email; - } - if ($email_address !== null) { - $request_payload["email_address"] = $email_address; - } - if ($full_name !== null) { - $request_payload["full_name"] = $full_name; - } - if ($hid_acs_system_id !== null) { - $request_payload["hid_acs_system_id"] = $hid_acs_system_id; - } - if ($phone_number !== null) { - $request_payload["phone_number"] = $phone_number; - } - - $this->seam->request( - "POST", - "/acs/users/update", - json: (object) $request_payload - ); - } -} - -class AcsUsersUnmanagedClient -{ - private SeamClient $seam; - - public function __construct(SeamClient $seam) - { - $this->seam = $seam; - } - - public function get(string $acs_user_id): UnmanagedAcsUser - { - $request_payload = []; - - if ($acs_user_id !== null) { - $request_payload["acs_user_id"] = $acs_user_id; - } - - $res = $this->seam->request( - "POST", - "/acs/users/unmanaged/get", - json: (object) $request_payload, - inner_object: "acs_user" - ); - - return UnmanagedAcsUser::from_json($res); - } - - public function list( - string $acs_system_id = null, - float $limit = null, - string $user_identity_email_address = null, - string $user_identity_id = null, - string $user_identity_phone_number = null - ): array { - $request_payload = []; - - if ($acs_system_id !== null) { - $request_payload["acs_system_id"] = $acs_system_id; - } - if ($limit !== null) { - $request_payload["limit"] = $limit; - } - if ($user_identity_email_address !== null) { - $request_payload[ - "user_identity_email_address" - ] = $user_identity_email_address; - } - if ($user_identity_id !== null) { - $request_payload["user_identity_id"] = $user_identity_id; - } - if ($user_identity_phone_number !== null) { - $request_payload[ - "user_identity_phone_number" - ] = $user_identity_phone_number; - } - - $res = $this->seam->request( - "POST", - "/acs/users/unmanaged/list", - json: (object) $request_payload, - inner_object: "acs_users" - ); - - return array_map(fn($r) => UnmanagedAcsUser::from_json($r), $res); - } -} - -class ActionAttemptsClient -{ - private SeamClient $seam; - - public function __construct(SeamClient $seam) - { - $this->seam = $seam; - } - - public function get(string $action_attempt_id): ActionAttempt - { - $request_payload = []; - - if ($action_attempt_id !== null) { - $request_payload["action_attempt_id"] = $action_attempt_id; - } - - $res = $this->seam->request( - "POST", - "/action_attempts/get", - json: (object) $request_payload, - inner_object: "action_attempt" - ); - - return ActionAttempt::from_json($res); - } - - public function list(array $action_attempt_ids): array - { - $request_payload = []; - - if ($action_attempt_ids !== null) { - $request_payload["action_attempt_ids"] = $action_attempt_ids; - } - - $res = $this->seam->request( - "POST", - "/action_attempts/list", - json: (object) $request_payload, - inner_object: "action_attempts" - ); - - return array_map(fn($r) => ActionAttempt::from_json($r), $res); - } - public function poll_until_ready( - string $action_attempt_id, - float $timeout = 20.0 - ): ActionAttempt { - $seam = $this->seam; - $time_waiting = 0.0; - $polling_interval = 0.4; - $action_attempt = $seam->action_attempts->get($action_attempt_id); - - while ($action_attempt->status == "pending") { - $action_attempt = $seam->action_attempts->get( - $action_attempt->action_attempt_id - ); - if ($time_waiting > $timeout) { - throw new ActionAttemptTimeoutError($action_attempt, $timeout); - } - $time_waiting += $polling_interval; - usleep($polling_interval * 1000000); - } - - if ($action_attempt->status == "error") { - throw new ActionAttemptFailedError($action_attempt); - } - - return $action_attempt; - } -} - -class BridgesClient -{ - private SeamClient $seam; - - public function __construct(SeamClient $seam) - { - $this->seam = $seam; - } - - public function get(string $bridge_id): void - { - $request_payload = []; - - if ($bridge_id !== null) { - $request_payload["bridge_id"] = $bridge_id; - } - - $this->seam->request( - "POST", - "/bridges/get", - json: (object) $request_payload, - inner_object: "bridge" - ); - } - - public function list(): void - { - $request_payload = []; - - $this->seam->request( - "POST", - "/bridges/list", - json: (object) $request_payload, - inner_object: "bridges" - ); - } -} - -class ClientSessionsClient -{ - private SeamClient $seam; - - public function __construct(SeamClient $seam) - { - $this->seam = $seam; - } - - public function create( - array $connect_webview_ids = null, - array $connected_account_ids = null, - string $expires_at = null, - string $user_identifier_key = null, - array $user_identity_ids = null - ): ClientSession { - $request_payload = []; - - if ($connect_webview_ids !== null) { - $request_payload["connect_webview_ids"] = $connect_webview_ids; - } - if ($connected_account_ids !== null) { - $request_payload["connected_account_ids"] = $connected_account_ids; - } - if ($expires_at !== null) { - $request_payload["expires_at"] = $expires_at; - } - if ($user_identifier_key !== null) { - $request_payload["user_identifier_key"] = $user_identifier_key; - } - if ($user_identity_ids !== null) { - $request_payload["user_identity_ids"] = $user_identity_ids; - } - - $res = $this->seam->request( - "POST", - "/client_sessions/create", - json: (object) $request_payload, - inner_object: "client_session" - ); - - return ClientSession::from_json($res); - } - - public function delete(string $client_session_id): void - { - $request_payload = []; - - if ($client_session_id !== null) { - $request_payload["client_session_id"] = $client_session_id; - } - - $this->seam->request( - "POST", - "/client_sessions/delete", - json: (object) $request_payload - ); - } - - public function get( - string $client_session_id = null, - string $user_identifier_key = null - ): ClientSession { - $request_payload = []; - - if ($client_session_id !== null) { - $request_payload["client_session_id"] = $client_session_id; - } - if ($user_identifier_key !== null) { - $request_payload["user_identifier_key"] = $user_identifier_key; - } - - $res = $this->seam->request( - "POST", - "/client_sessions/get", - json: (object) $request_payload, - inner_object: "client_session" - ); - - return ClientSession::from_json($res); - } - - public function get_or_create( - array $connect_webview_ids = null, - array $connected_account_ids = null, - string $expires_at = null, - string $user_identifier_key = null, - array $user_identity_ids = null - ): ClientSession { - $request_payload = []; - - if ($connect_webview_ids !== null) { - $request_payload["connect_webview_ids"] = $connect_webview_ids; - } - if ($connected_account_ids !== null) { - $request_payload["connected_account_ids"] = $connected_account_ids; - } - if ($expires_at !== null) { - $request_payload["expires_at"] = $expires_at; - } - if ($user_identifier_key !== null) { - $request_payload["user_identifier_key"] = $user_identifier_key; - } - if ($user_identity_ids !== null) { - $request_payload["user_identity_ids"] = $user_identity_ids; - } - - $res = $this->seam->request( - "POST", - "/client_sessions/get_or_create", - json: (object) $request_payload, - inner_object: "client_session" - ); - - return ClientSession::from_json($res); - } - - public function grant_access( - string $client_session_id = null, - array $connect_webview_ids = null, - array $connected_account_ids = null, - string $user_identifier_key = null, - array $user_identity_ids = null - ): void { - $request_payload = []; - - if ($client_session_id !== null) { - $request_payload["client_session_id"] = $client_session_id; - } - if ($connect_webview_ids !== null) { - $request_payload["connect_webview_ids"] = $connect_webview_ids; - } - if ($connected_account_ids !== null) { - $request_payload["connected_account_ids"] = $connected_account_ids; - } - if ($user_identifier_key !== null) { - $request_payload["user_identifier_key"] = $user_identifier_key; - } - if ($user_identity_ids !== null) { - $request_payload["user_identity_ids"] = $user_identity_ids; - } - - $this->seam->request( - "POST", - "/client_sessions/grant_access", - json: (object) $request_payload - ); - } - - public function list( - string $client_session_id = null, - string $connect_webview_id = null, - string $user_identifier_key = null, - string $user_identity_id = null, - bool $without_user_identifier_key = null - ): array { - $request_payload = []; - - if ($client_session_id !== null) { - $request_payload["client_session_id"] = $client_session_id; - } - if ($connect_webview_id !== null) { - $request_payload["connect_webview_id"] = $connect_webview_id; - } - if ($user_identifier_key !== null) { - $request_payload["user_identifier_key"] = $user_identifier_key; - } - if ($user_identity_id !== null) { - $request_payload["user_identity_id"] = $user_identity_id; - } - if ($without_user_identifier_key !== null) { - $request_payload[ - "without_user_identifier_key" - ] = $without_user_identifier_key; - } - - $res = $this->seam->request( - "POST", - "/client_sessions/list", - json: (object) $request_payload, - inner_object: "client_sessions" - ); - - return array_map(fn($r) => ClientSession::from_json($r), $res); - } - - public function revoke(string $client_session_id): void - { - $request_payload = []; - - if ($client_session_id !== null) { - $request_payload["client_session_id"] = $client_session_id; - } - - $this->seam->request( - "POST", - "/client_sessions/revoke", - json: (object) $request_payload - ); - } -} - -class ConnectWebviewsClient -{ - private SeamClient $seam; - - public function __construct(SeamClient $seam) - { - $this->seam = $seam; - } - - public function create( - array $accepted_providers = null, - bool $automatically_manage_new_devices = null, - mixed $custom_metadata = null, - string $custom_redirect_failure_url = null, - string $custom_redirect_url = null, - string $device_selection_mode = null, - string $provider_category = null, - bool $wait_for_device_creation = null - ): ConnectWebview { - $request_payload = []; - - if ($accepted_providers !== null) { - $request_payload["accepted_providers"] = $accepted_providers; - } - if ($automatically_manage_new_devices !== null) { - $request_payload[ - "automatically_manage_new_devices" - ] = $automatically_manage_new_devices; - } - if ($custom_metadata !== null) { - $request_payload["custom_metadata"] = $custom_metadata; - } - if ($custom_redirect_failure_url !== null) { - $request_payload[ - "custom_redirect_failure_url" - ] = $custom_redirect_failure_url; - } - if ($custom_redirect_url !== null) { - $request_payload["custom_redirect_url"] = $custom_redirect_url; - } - if ($device_selection_mode !== null) { - $request_payload["device_selection_mode"] = $device_selection_mode; - } - if ($provider_category !== null) { - $request_payload["provider_category"] = $provider_category; - } - if ($wait_for_device_creation !== null) { - $request_payload[ - "wait_for_device_creation" - ] = $wait_for_device_creation; - } - - $res = $this->seam->request( - "POST", - "/connect_webviews/create", - json: (object) $request_payload, - inner_object: "connect_webview" - ); - - return ConnectWebview::from_json($res); - } - - public function delete(string $connect_webview_id): void - { - $request_payload = []; - - if ($connect_webview_id !== null) { - $request_payload["connect_webview_id"] = $connect_webview_id; - } - - $this->seam->request( - "POST", - "/connect_webviews/delete", - json: (object) $request_payload - ); - } - - public function get(string $connect_webview_id): ConnectWebview - { - $request_payload = []; - - if ($connect_webview_id !== null) { - $request_payload["connect_webview_id"] = $connect_webview_id; - } - - $res = $this->seam->request( - "POST", - "/connect_webviews/get", - json: (object) $request_payload, - inner_object: "connect_webview" - ); - - return ConnectWebview::from_json($res); - } - - public function list( - mixed $custom_metadata_has = null, - float $limit = null, - string $user_identifier_key = null - ): array { - $request_payload = []; - - if ($custom_metadata_has !== null) { - $request_payload["custom_metadata_has"] = $custom_metadata_has; - } - if ($limit !== null) { - $request_payload["limit"] = $limit; - } - if ($user_identifier_key !== null) { - $request_payload["user_identifier_key"] = $user_identifier_key; - } - - $res = $this->seam->request( - "POST", - "/connect_webviews/list", - json: (object) $request_payload, - inner_object: "connect_webviews" - ); - - return array_map(fn($r) => ConnectWebview::from_json($r), $res); - } -} - -class ConnectedAccountsClient -{ - private SeamClient $seam; - - public function __construct(SeamClient $seam) - { - $this->seam = $seam; - } - - public function delete( - string $connected_account_id, - bool $sync = null - ): void { - $request_payload = []; - - if ($connected_account_id !== null) { - $request_payload["connected_account_id"] = $connected_account_id; - } - if ($sync !== null) { - $request_payload["sync"] = $sync; - } - - $this->seam->request( - "POST", - "/connected_accounts/delete", - json: (object) $request_payload - ); - } - - public function get( - string $connected_account_id = null, - string $email = null - ): ConnectedAccount { - $request_payload = []; - - if ($connected_account_id !== null) { - $request_payload["connected_account_id"] = $connected_account_id; - } - if ($email !== null) { - $request_payload["email"] = $email; - } - - $res = $this->seam->request( - "POST", - "/connected_accounts/get", - json: (object) $request_payload, - inner_object: "connected_account" - ); - - return ConnectedAccount::from_json($res); - } - - public function list( - mixed $custom_metadata_has = null, - string $user_identifier_key = null - ): array { - $request_payload = []; - - if ($custom_metadata_has !== null) { - $request_payload["custom_metadata_has"] = $custom_metadata_has; - } - if ($user_identifier_key !== null) { - $request_payload["user_identifier_key"] = $user_identifier_key; - } - - $res = $this->seam->request( - "POST", - "/connected_accounts/list", - json: (object) $request_payload, - inner_object: "connected_accounts" - ); - - return array_map(fn($r) => ConnectedAccount::from_json($r), $res); - } - - public function update( - string $connected_account_id, - bool $automatically_manage_new_devices = null, - mixed $custom_metadata = null - ): void { - $request_payload = []; - - if ($connected_account_id !== null) { - $request_payload["connected_account_id"] = $connected_account_id; - } - if ($automatically_manage_new_devices !== null) { - $request_payload[ - "automatically_manage_new_devices" - ] = $automatically_manage_new_devices; - } - if ($custom_metadata !== null) { - $request_payload["custom_metadata"] = $custom_metadata; - } - - $this->seam->request( - "POST", - "/connected_accounts/update", - json: (object) $request_payload - ); - } -} - -class DevicesClient -{ - private SeamClient $seam; - public DevicesSimulateClient $simulate; - public DevicesUnmanagedClient $unmanaged; - public function __construct(SeamClient $seam) - { - $this->seam = $seam; - $this->simulate = new DevicesSimulateClient($seam); - $this->unmanaged = new DevicesUnmanagedClient($seam); - } - - public function delete(string $device_id): void - { - $request_payload = []; - - if ($device_id !== null) { - $request_payload["device_id"] = $device_id; - } - - $this->seam->request( - "POST", - "/devices/delete", - json: (object) $request_payload - ); - } - - public function get(string $device_id = null, string $name = null): Device - { - $request_payload = []; - - if ($device_id !== null) { - $request_payload["device_id"] = $device_id; - } - if ($name !== null) { - $request_payload["name"] = $name; - } - - $res = $this->seam->request( - "POST", - "/devices/get", - json: (object) $request_payload, - inner_object: "device" - ); - - return Device::from_json($res); - } - - public function list( - string $connect_webview_id = null, - string $connected_account_id = null, - array $connected_account_ids = null, - string $created_before = null, - mixed $custom_metadata_has = null, - array $device_ids = null, - string $device_type = null, - array $device_types = null, - array $exclude_if = null, - array $include_if = null, - float $limit = null, - string $manufacturer = null, - string $user_identifier_key = null - ): array { - $request_payload = []; - - if ($connect_webview_id !== null) { - $request_payload["connect_webview_id"] = $connect_webview_id; - } - if ($connected_account_id !== null) { - $request_payload["connected_account_id"] = $connected_account_id; - } - if ($connected_account_ids !== null) { - $request_payload["connected_account_ids"] = $connected_account_ids; - } - if ($created_before !== null) { - $request_payload["created_before"] = $created_before; - } - if ($custom_metadata_has !== null) { - $request_payload["custom_metadata_has"] = $custom_metadata_has; - } - if ($device_ids !== null) { - $request_payload["device_ids"] = $device_ids; - } - if ($device_type !== null) { - $request_payload["device_type"] = $device_type; - } - if ($device_types !== null) { - $request_payload["device_types"] = $device_types; - } - if ($exclude_if !== null) { - $request_payload["exclude_if"] = $exclude_if; - } - if ($include_if !== null) { - $request_payload["include_if"] = $include_if; - } - if ($limit !== null) { - $request_payload["limit"] = $limit; - } - if ($manufacturer !== null) { - $request_payload["manufacturer"] = $manufacturer; - } - if ($user_identifier_key !== null) { - $request_payload["user_identifier_key"] = $user_identifier_key; - } - - $res = $this->seam->request( - "POST", - "/devices/list", - json: (object) $request_payload, - inner_object: "devices" - ); - - return array_map(fn($r) => Device::from_json($r), $res); - } - - public function list_device_providers( - string $provider_category = null - ): array { - $request_payload = []; - - if ($provider_category !== null) { - $request_payload["provider_category"] = $provider_category; - } - - $res = $this->seam->request( - "POST", - "/devices/list_device_providers", - json: (object) $request_payload, - inner_object: "device_providers" - ); - - return array_map(fn($r) => DeviceProvider::from_json($r), $res); - } - - public function update( - string $device_id, - mixed $custom_metadata = null, - bool $is_managed = null, - string $name = null, - mixed $properties = null - ): void { - $request_payload = []; - - if ($device_id !== null) { - $request_payload["device_id"] = $device_id; - } - if ($custom_metadata !== null) { - $request_payload["custom_metadata"] = $custom_metadata; - } - if ($is_managed !== null) { - $request_payload["is_managed"] = $is_managed; - } - if ($name !== null) { - $request_payload["name"] = $name; - } - if ($properties !== null) { - $request_payload["properties"] = $properties; - } - - $this->seam->request( - "POST", - "/devices/update", - json: (object) $request_payload - ); - } -} - -class DevicesSimulateClient -{ - private SeamClient $seam; - - public function __construct(SeamClient $seam) - { - $this->seam = $seam; - } - - public function connect(string $device_id): void - { - $request_payload = []; - - if ($device_id !== null) { - $request_payload["device_id"] = $device_id; - } - - $this->seam->request( - "POST", - "/devices/simulate/connect", - json: (object) $request_payload - ); - } - - public function disconnect(string $device_id): void - { - $request_payload = []; - - if ($device_id !== null) { - $request_payload["device_id"] = $device_id; - } - - $this->seam->request( - "POST", - "/devices/simulate/disconnect", - json: (object) $request_payload - ); - } - - public function remove(string $device_id): void - { - $request_payload = []; - - if ($device_id !== null) { - $request_payload["device_id"] = $device_id; - } - - $this->seam->request( - "POST", - "/devices/simulate/remove", - json: (object) $request_payload - ); - } -} - -class DevicesUnmanagedClient -{ - private SeamClient $seam; - - public function __construct(SeamClient $seam) - { - $this->seam = $seam; - } - - public function get( - string $device_id = null, - string $name = null - ): UnmanagedDevice { - $request_payload = []; - - if ($device_id !== null) { - $request_payload["device_id"] = $device_id; - } - if ($name !== null) { - $request_payload["name"] = $name; - } - - $res = $this->seam->request( - "POST", - "/devices/unmanaged/get", - json: (object) $request_payload, - inner_object: "device" - ); - - return UnmanagedDevice::from_json($res); - } - - public function list( - string $connect_webview_id = null, - string $connected_account_id = null, - array $connected_account_ids = null, - string $created_before = null, - mixed $custom_metadata_has = null, - array $device_ids = null, - string $device_type = null, - array $device_types = null, - array $exclude_if = null, - array $include_if = null, - float $limit = null, - string $manufacturer = null, - string $user_identifier_key = null - ): array { - $request_payload = []; - - if ($connect_webview_id !== null) { - $request_payload["connect_webview_id"] = $connect_webview_id; - } - if ($connected_account_id !== null) { - $request_payload["connected_account_id"] = $connected_account_id; - } - if ($connected_account_ids !== null) { - $request_payload["connected_account_ids"] = $connected_account_ids; - } - if ($created_before !== null) { - $request_payload["created_before"] = $created_before; - } - if ($custom_metadata_has !== null) { - $request_payload["custom_metadata_has"] = $custom_metadata_has; - } - if ($device_ids !== null) { - $request_payload["device_ids"] = $device_ids; - } - if ($device_type !== null) { - $request_payload["device_type"] = $device_type; - } - if ($device_types !== null) { - $request_payload["device_types"] = $device_types; - } - if ($exclude_if !== null) { - $request_payload["exclude_if"] = $exclude_if; - } - if ($include_if !== null) { - $request_payload["include_if"] = $include_if; - } - if ($limit !== null) { - $request_payload["limit"] = $limit; - } - if ($manufacturer !== null) { - $request_payload["manufacturer"] = $manufacturer; - } - if ($user_identifier_key !== null) { - $request_payload["user_identifier_key"] = $user_identifier_key; - } - - $res = $this->seam->request( - "POST", - "/devices/unmanaged/list", - json: (object) $request_payload, - inner_object: "devices" - ); - - return array_map(fn($r) => UnmanagedDevice::from_json($r), $res); - } - - public function update(string $device_id, bool $is_managed): void - { - $request_payload = []; - - if ($device_id !== null) { - $request_payload["device_id"] = $device_id; - } - if ($is_managed !== null) { - $request_payload["is_managed"] = $is_managed; - } - - $this->seam->request( - "POST", - "/devices/unmanaged/update", - json: (object) $request_payload - ); - } -} - -class EventsClient -{ - private SeamClient $seam; - - public function __construct(SeamClient $seam) - { - $this->seam = $seam; - } - - public function get( - string $device_id = null, - string $event_id = null, - string $event_type = null - ): Event { - $request_payload = []; - - if ($device_id !== null) { - $request_payload["device_id"] = $device_id; - } - if ($event_id !== null) { - $request_payload["event_id"] = $event_id; - } - if ($event_type !== null) { - $request_payload["event_type"] = $event_type; - } - - $res = $this->seam->request( - "POST", - "/events/get", - json: (object) $request_payload, - inner_object: "event" - ); - - return Event::from_json($res); - } - - public function list( - string $access_code_id = null, - array $access_code_ids = null, - string $acs_system_id = null, - array $acs_system_ids = null, - array $between = null, - string $connect_webview_id = null, - string $connected_account_id = null, - string $device_id = null, - array $device_ids = null, - string $event_type = null, - array $event_types = null, - float $limit = null, - string $since = null, - float $unstable_offset = null - ): array { - $request_payload = []; - - if ($access_code_id !== null) { - $request_payload["access_code_id"] = $access_code_id; - } - if ($access_code_ids !== null) { - $request_payload["access_code_ids"] = $access_code_ids; - } - if ($acs_system_id !== null) { - $request_payload["acs_system_id"] = $acs_system_id; - } - if ($acs_system_ids !== null) { - $request_payload["acs_system_ids"] = $acs_system_ids; - } - if ($between !== null) { - $request_payload["between"] = $between; - } - if ($connect_webview_id !== null) { - $request_payload["connect_webview_id"] = $connect_webview_id; - } - if ($connected_account_id !== null) { - $request_payload["connected_account_id"] = $connected_account_id; - } - if ($device_id !== null) { - $request_payload["device_id"] = $device_id; - } - if ($device_ids !== null) { - $request_payload["device_ids"] = $device_ids; - } - if ($event_type !== null) { - $request_payload["event_type"] = $event_type; - } - if ($event_types !== null) { - $request_payload["event_types"] = $event_types; - } - if ($limit !== null) { - $request_payload["limit"] = $limit; - } - if ($since !== null) { - $request_payload["since"] = $since; - } - if ($unstable_offset !== null) { - $request_payload["unstable_offset"] = $unstable_offset; - } - - $res = $this->seam->request( - "POST", - "/events/list", - json: (object) $request_payload, - inner_object: "events" - ); - - return array_map(fn($r) => Event::from_json($r), $res); - } -} - -class LocksClient -{ - private SeamClient $seam; - - public function __construct(SeamClient $seam) - { - $this->seam = $seam; - } - - public function get(string $device_id = null, string $name = null): Device - { - $request_payload = []; - - if ($device_id !== null) { - $request_payload["device_id"] = $device_id; - } - if ($name !== null) { - $request_payload["name"] = $name; - } - - $res = $this->seam->request( - "POST", - "/locks/get", - json: (object) $request_payload, - inner_object: "device" - ); - - return Device::from_json($res); - } - - public function list( - string $connect_webview_id = null, - string $connected_account_id = null, - array $connected_account_ids = null, - string $created_before = null, - mixed $custom_metadata_has = null, - array $device_ids = null, - string $device_type = null, - array $device_types = null, - array $exclude_if = null, - array $include_if = null, - float $limit = null, - string $manufacturer = null, - string $user_identifier_key = null - ): array { - $request_payload = []; - - if ($connect_webview_id !== null) { - $request_payload["connect_webview_id"] = $connect_webview_id; - } - if ($connected_account_id !== null) { - $request_payload["connected_account_id"] = $connected_account_id; - } - if ($connected_account_ids !== null) { - $request_payload["connected_account_ids"] = $connected_account_ids; - } - if ($created_before !== null) { - $request_payload["created_before"] = $created_before; - } - if ($custom_metadata_has !== null) { - $request_payload["custom_metadata_has"] = $custom_metadata_has; - } - if ($device_ids !== null) { - $request_payload["device_ids"] = $device_ids; - } - if ($device_type !== null) { - $request_payload["device_type"] = $device_type; - } - if ($device_types !== null) { - $request_payload["device_types"] = $device_types; - } - if ($exclude_if !== null) { - $request_payload["exclude_if"] = $exclude_if; - } - if ($include_if !== null) { - $request_payload["include_if"] = $include_if; - } - if ($limit !== null) { - $request_payload["limit"] = $limit; - } - if ($manufacturer !== null) { - $request_payload["manufacturer"] = $manufacturer; - } - if ($user_identifier_key !== null) { - $request_payload["user_identifier_key"] = $user_identifier_key; - } - - $res = $this->seam->request( - "POST", - "/locks/list", - json: (object) $request_payload, - inner_object: "devices" - ); - - return array_map(fn($r) => Device::from_json($r), $res); - } - - public function lock_door( - string $device_id, - bool $sync = null, - bool $wait_for_action_attempt = true - ): ActionAttempt { - $request_payload = []; - - if ($device_id !== null) { - $request_payload["device_id"] = $device_id; - } - if ($sync !== null) { - $request_payload["sync"] = $sync; - } - - $res = $this->seam->request( - "POST", - "/locks/lock_door", - json: (object) $request_payload, - inner_object: "action_attempt" - ); - - if (!$wait_for_action_attempt) { - return ActionAttempt::from_json($res); - } - - $action_attempt = $this->seam->action_attempts->poll_until_ready( - $res->action_attempt_id - ); - - return $action_attempt; - } - - public function unlock_door( - string $device_id, - bool $sync = null, - bool $wait_for_action_attempt = true - ): ActionAttempt { - $request_payload = []; - - if ($device_id !== null) { - $request_payload["device_id"] = $device_id; - } - if ($sync !== null) { - $request_payload["sync"] = $sync; - } - - $res = $this->seam->request( - "POST", - "/locks/unlock_door", - json: (object) $request_payload, - inner_object: "action_attempt" - ); - - if (!$wait_for_action_attempt) { - return ActionAttempt::from_json($res); - } - - $action_attempt = $this->seam->action_attempts->poll_until_ready( - $res->action_attempt_id - ); - - return $action_attempt; - } -} - -class NetworksClient -{ - private SeamClient $seam; - - public function __construct(SeamClient $seam) - { - $this->seam = $seam; - } - - public function get(string $network_id): Network - { - $request_payload = []; - - if ($network_id !== null) { - $request_payload["network_id"] = $network_id; - } - - $res = $this->seam->request( - "POST", - "/networks/get", - json: (object) $request_payload, - inner_object: "network" - ); - - return Network::from_json($res); - } - - public function list(): array - { - $request_payload = []; - - $res = $this->seam->request( - "POST", - "/networks/list", - json: (object) $request_payload, - inner_object: "networks" - ); - - return array_map(fn($r) => Network::from_json($r), $res); - } -} - -class NoiseSensorsClient -{ - private SeamClient $seam; - public NoiseSensorsNoiseThresholdsClient $noise_thresholds; - public NoiseSensorsSimulateClient $simulate; - public function __construct(SeamClient $seam) - { - $this->seam = $seam; - $this->noise_thresholds = new NoiseSensorsNoiseThresholdsClient($seam); - $this->simulate = new NoiseSensorsSimulateClient($seam); - } - - public function list( - string $connect_webview_id = null, - string $connected_account_id = null, - array $connected_account_ids = null, - string $created_before = null, - mixed $custom_metadata_has = null, - array $device_ids = null, - string $device_type = null, - array $device_types = null, - array $exclude_if = null, - array $include_if = null, - float $limit = null, - string $manufacturer = null, - string $user_identifier_key = null - ): array { - $request_payload = []; - - if ($connect_webview_id !== null) { - $request_payload["connect_webview_id"] = $connect_webview_id; - } - if ($connected_account_id !== null) { - $request_payload["connected_account_id"] = $connected_account_id; - } - if ($connected_account_ids !== null) { - $request_payload["connected_account_ids"] = $connected_account_ids; - } - if ($created_before !== null) { - $request_payload["created_before"] = $created_before; - } - if ($custom_metadata_has !== null) { - $request_payload["custom_metadata_has"] = $custom_metadata_has; - } - if ($device_ids !== null) { - $request_payload["device_ids"] = $device_ids; - } - if ($device_type !== null) { - $request_payload["device_type"] = $device_type; - } - if ($device_types !== null) { - $request_payload["device_types"] = $device_types; - } - if ($exclude_if !== null) { - $request_payload["exclude_if"] = $exclude_if; - } - if ($include_if !== null) { - $request_payload["include_if"] = $include_if; - } - if ($limit !== null) { - $request_payload["limit"] = $limit; - } - if ($manufacturer !== null) { - $request_payload["manufacturer"] = $manufacturer; - } - if ($user_identifier_key !== null) { - $request_payload["user_identifier_key"] = $user_identifier_key; - } - - $res = $this->seam->request( - "POST", - "/noise_sensors/list", - json: (object) $request_payload, - inner_object: "devices" - ); - - return array_map(fn($r) => Device::from_json($r), $res); - } -} - -class NoiseSensorsNoiseThresholdsClient -{ - private SeamClient $seam; - - public function __construct(SeamClient $seam) - { - $this->seam = $seam; - } - - public function create( - string $device_id, - string $ends_daily_at, - string $starts_daily_at, - string $name = null, - float $noise_threshold_decibels = null, - float $noise_threshold_nrs = null, - bool $sync = null - ): NoiseThreshold { - $request_payload = []; - - if ($device_id !== null) { - $request_payload["device_id"] = $device_id; - } - if ($ends_daily_at !== null) { - $request_payload["ends_daily_at"] = $ends_daily_at; - } - if ($starts_daily_at !== null) { - $request_payload["starts_daily_at"] = $starts_daily_at; - } - if ($name !== null) { - $request_payload["name"] = $name; - } - if ($noise_threshold_decibels !== null) { - $request_payload[ - "noise_threshold_decibels" - ] = $noise_threshold_decibels; - } - if ($noise_threshold_nrs !== null) { - $request_payload["noise_threshold_nrs"] = $noise_threshold_nrs; - } - if ($sync !== null) { - $request_payload["sync"] = $sync; - } - - $res = $this->seam->request( - "POST", - "/noise_sensors/noise_thresholds/create", - json: (object) $request_payload, - inner_object: "noise_threshold" - ); - - return NoiseThreshold::from_json($res); - } - - public function delete( - string $device_id, - string $noise_threshold_id, - bool $sync = null - ): void { - $request_payload = []; - - if ($device_id !== null) { - $request_payload["device_id"] = $device_id; - } - if ($noise_threshold_id !== null) { - $request_payload["noise_threshold_id"] = $noise_threshold_id; - } - if ($sync !== null) { - $request_payload["sync"] = $sync; - } - - $this->seam->request( - "POST", - "/noise_sensors/noise_thresholds/delete", - json: (object) $request_payload - ); - } - - public function get(string $noise_threshold_id): NoiseThreshold - { - $request_payload = []; - - if ($noise_threshold_id !== null) { - $request_payload["noise_threshold_id"] = $noise_threshold_id; - } - - $res = $this->seam->request( - "POST", - "/noise_sensors/noise_thresholds/get", - json: (object) $request_payload, - inner_object: "noise_threshold" - ); - - return NoiseThreshold::from_json($res); - } - - public function list(string $device_id, bool $is_programmed = null): array - { - $request_payload = []; - - if ($device_id !== null) { - $request_payload["device_id"] = $device_id; - } - if ($is_programmed !== null) { - $request_payload["is_programmed"] = $is_programmed; - } - - $res = $this->seam->request( - "POST", - "/noise_sensors/noise_thresholds/list", - json: (object) $request_payload, - inner_object: "noise_thresholds" - ); - - return array_map(fn($r) => NoiseThreshold::from_json($r), $res); - } - - public function update( - string $device_id, - string $noise_threshold_id, - string $ends_daily_at = null, - string $name = null, - float $noise_threshold_decibels = null, - float $noise_threshold_nrs = null, - string $starts_daily_at = null, - bool $sync = null - ): void { - $request_payload = []; - - if ($device_id !== null) { - $request_payload["device_id"] = $device_id; - } - if ($noise_threshold_id !== null) { - $request_payload["noise_threshold_id"] = $noise_threshold_id; - } - if ($ends_daily_at !== null) { - $request_payload["ends_daily_at"] = $ends_daily_at; - } - if ($name !== null) { - $request_payload["name"] = $name; - } - if ($noise_threshold_decibels !== null) { - $request_payload[ - "noise_threshold_decibels" - ] = $noise_threshold_decibels; - } - if ($noise_threshold_nrs !== null) { - $request_payload["noise_threshold_nrs"] = $noise_threshold_nrs; - } - if ($starts_daily_at !== null) { - $request_payload["starts_daily_at"] = $starts_daily_at; - } - if ($sync !== null) { - $request_payload["sync"] = $sync; - } - - $this->seam->request( - "POST", - "/noise_sensors/noise_thresholds/update", - json: (object) $request_payload - ); - } -} - -class NoiseSensorsSimulateClient -{ - private SeamClient $seam; - - public function __construct(SeamClient $seam) - { - $this->seam = $seam; - } - - public function trigger_noise_threshold(string $device_id): void - { - $request_payload = []; - - if ($device_id !== null) { - $request_payload["device_id"] = $device_id; - } - - $this->seam->request( - "POST", - "/noise_sensors/simulate/trigger_noise_threshold", - json: (object) $request_payload - ); - } -} - -class PhonesClient -{ - private SeamClient $seam; - public PhonesSimulateClient $simulate; - public function __construct(SeamClient $seam) - { - $this->seam = $seam; - $this->simulate = new PhonesSimulateClient($seam); - } - - public function deactivate(string $device_id): void - { - $request_payload = []; - - if ($device_id !== null) { - $request_payload["device_id"] = $device_id; - } - - $this->seam->request( - "POST", - "/phones/deactivate", - json: (object) $request_payload - ); - } - - public function get(string $device_id): Phone - { - $request_payload = []; - - if ($device_id !== null) { - $request_payload["device_id"] = $device_id; - } - - $res = $this->seam->request( - "POST", - "/phones/get", - json: (object) $request_payload, - inner_object: "phone" - ); - - return Phone::from_json($res); - } - - public function list( - string $acs_credential_id = null, - string $owner_user_identity_id = null - ): array { - $request_payload = []; - - if ($acs_credential_id !== null) { - $request_payload["acs_credential_id"] = $acs_credential_id; - } - if ($owner_user_identity_id !== null) { - $request_payload[ - "owner_user_identity_id" - ] = $owner_user_identity_id; - } - - $res = $this->seam->request( - "POST", - "/phones/list", - json: (object) $request_payload, - inner_object: "phones" - ); - - return array_map(fn($r) => Phone::from_json($r), $res); - } -} - -class PhonesSimulateClient -{ - private SeamClient $seam; - - public function __construct(SeamClient $seam) - { - $this->seam = $seam; - } - - public function create_sandbox_phone( - string $user_identity_id, - mixed $assa_abloy_metadata = null, - string $custom_sdk_installation_id = null, - mixed $phone_metadata = null - ): Phone { - $request_payload = []; - - if ($user_identity_id !== null) { - $request_payload["user_identity_id"] = $user_identity_id; - } - if ($assa_abloy_metadata !== null) { - $request_payload["assa_abloy_metadata"] = $assa_abloy_metadata; - } - if ($custom_sdk_installation_id !== null) { - $request_payload[ - "custom_sdk_installation_id" - ] = $custom_sdk_installation_id; - } - if ($phone_metadata !== null) { - $request_payload["phone_metadata"] = $phone_metadata; - } - - $res = $this->seam->request( - "POST", - "/phones/simulate/create_sandbox_phone", - json: (object) $request_payload, - inner_object: "phone" - ); - - return Phone::from_json($res); - } -} - -class ThermostatsClient -{ - private SeamClient $seam; - public ThermostatsSchedulesClient $schedules; - public ThermostatsSimulateClient $simulate; - public function __construct(SeamClient $seam) - { - $this->seam = $seam; - $this->schedules = new ThermostatsSchedulesClient($seam); - $this->simulate = new ThermostatsSimulateClient($seam); - } - - public function activate_climate_preset( - string $climate_preset_key, - string $device_id, - bool $wait_for_action_attempt = true - ): ActionAttempt { - $request_payload = []; - - if ($climate_preset_key !== null) { - $request_payload["climate_preset_key"] = $climate_preset_key; - } - if ($device_id !== null) { - $request_payload["device_id"] = $device_id; - } - - $res = $this->seam->request( - "POST", - "/thermostats/activate_climate_preset", - json: (object) $request_payload, - inner_object: "action_attempt" - ); - - if (!$wait_for_action_attempt) { - return ActionAttempt::from_json($res); - } - - $action_attempt = $this->seam->action_attempts->poll_until_ready( - $res->action_attempt_id - ); - - return $action_attempt; - } - - public function cool( - string $device_id, - float $cooling_set_point_celsius = null, - float $cooling_set_point_fahrenheit = null, - bool $sync = null, - bool $wait_for_action_attempt = true - ): ActionAttempt { - $request_payload = []; - - if ($device_id !== null) { - $request_payload["device_id"] = $device_id; - } - if ($cooling_set_point_celsius !== null) { - $request_payload[ - "cooling_set_point_celsius" - ] = $cooling_set_point_celsius; - } - if ($cooling_set_point_fahrenheit !== null) { - $request_payload[ - "cooling_set_point_fahrenheit" - ] = $cooling_set_point_fahrenheit; - } - if ($sync !== null) { - $request_payload["sync"] = $sync; - } - - $res = $this->seam->request( - "POST", - "/thermostats/cool", - json: (object) $request_payload, - inner_object: "action_attempt" - ); - - if (!$wait_for_action_attempt) { - return ActionAttempt::from_json($res); - } - - $action_attempt = $this->seam->action_attempts->poll_until_ready( - $res->action_attempt_id - ); - - return $action_attempt; - } - - public function create_climate_preset( - string $climate_preset_key, - string $device_id, - float $cooling_set_point_celsius = null, - float $cooling_set_point_fahrenheit = null, - string $fan_mode_setting = null, - float $heating_set_point_celsius = null, - float $heating_set_point_fahrenheit = null, - string $hvac_mode_setting = null, - bool $manual_override_allowed = null, - string $name = null - ): void { - $request_payload = []; - - if ($climate_preset_key !== null) { - $request_payload["climate_preset_key"] = $climate_preset_key; - } - if ($device_id !== null) { - $request_payload["device_id"] = $device_id; - } - if ($cooling_set_point_celsius !== null) { - $request_payload[ - "cooling_set_point_celsius" - ] = $cooling_set_point_celsius; - } - if ($cooling_set_point_fahrenheit !== null) { - $request_payload[ - "cooling_set_point_fahrenheit" - ] = $cooling_set_point_fahrenheit; - } - if ($fan_mode_setting !== null) { - $request_payload["fan_mode_setting"] = $fan_mode_setting; - } - if ($heating_set_point_celsius !== null) { - $request_payload[ - "heating_set_point_celsius" - ] = $heating_set_point_celsius; - } - if ($heating_set_point_fahrenheit !== null) { - $request_payload[ - "heating_set_point_fahrenheit" - ] = $heating_set_point_fahrenheit; - } - if ($hvac_mode_setting !== null) { - $request_payload["hvac_mode_setting"] = $hvac_mode_setting; - } - if ($manual_override_allowed !== null) { - $request_payload[ - "manual_override_allowed" - ] = $manual_override_allowed; - } - if ($name !== null) { - $request_payload["name"] = $name; - } - - $this->seam->request( - "POST", - "/thermostats/create_climate_preset", - json: (object) $request_payload - ); - } - - public function delete_climate_preset( - string $climate_preset_key, - string $device_id - ): void { - $request_payload = []; - - if ($climate_preset_key !== null) { - $request_payload["climate_preset_key"] = $climate_preset_key; - } - if ($device_id !== null) { - $request_payload["device_id"] = $device_id; - } - - $this->seam->request( - "POST", - "/thermostats/delete_climate_preset", - json: (object) $request_payload - ); - } - - public function get(string $device_id = null, string $name = null): Device - { - $request_payload = []; - - if ($device_id !== null) { - $request_payload["device_id"] = $device_id; - } - if ($name !== null) { - $request_payload["name"] = $name; - } - - $res = $this->seam->request( - "POST", - "/thermostats/get", - json: (object) $request_payload, - inner_object: "thermostat" - ); - - return Device::from_json($res); - } - - public function heat( - string $device_id, - float $heating_set_point_celsius = null, - float $heating_set_point_fahrenheit = null, - bool $sync = null, - bool $wait_for_action_attempt = true - ): ActionAttempt { - $request_payload = []; - - if ($device_id !== null) { - $request_payload["device_id"] = $device_id; - } - if ($heating_set_point_celsius !== null) { - $request_payload[ - "heating_set_point_celsius" - ] = $heating_set_point_celsius; - } - if ($heating_set_point_fahrenheit !== null) { - $request_payload[ - "heating_set_point_fahrenheit" - ] = $heating_set_point_fahrenheit; - } - if ($sync !== null) { - $request_payload["sync"] = $sync; - } - - $res = $this->seam->request( - "POST", - "/thermostats/heat", - json: (object) $request_payload, - inner_object: "action_attempt" - ); - - if (!$wait_for_action_attempt) { - return ActionAttempt::from_json($res); - } - - $action_attempt = $this->seam->action_attempts->poll_until_ready( - $res->action_attempt_id - ); - - return $action_attempt; - } - - public function heat_cool( - string $device_id, - float $cooling_set_point_celsius = null, - float $cooling_set_point_fahrenheit = null, - float $heating_set_point_celsius = null, - float $heating_set_point_fahrenheit = null, - bool $sync = null, - bool $wait_for_action_attempt = true - ): ActionAttempt { - $request_payload = []; - - if ($device_id !== null) { - $request_payload["device_id"] = $device_id; - } - if ($cooling_set_point_celsius !== null) { - $request_payload[ - "cooling_set_point_celsius" - ] = $cooling_set_point_celsius; - } - if ($cooling_set_point_fahrenheit !== null) { - $request_payload[ - "cooling_set_point_fahrenheit" - ] = $cooling_set_point_fahrenheit; - } - if ($heating_set_point_celsius !== null) { - $request_payload[ - "heating_set_point_celsius" - ] = $heating_set_point_celsius; - } - if ($heating_set_point_fahrenheit !== null) { - $request_payload[ - "heating_set_point_fahrenheit" - ] = $heating_set_point_fahrenheit; - } - if ($sync !== null) { - $request_payload["sync"] = $sync; - } - - $res = $this->seam->request( - "POST", - "/thermostats/heat_cool", - json: (object) $request_payload, - inner_object: "action_attempt" - ); - - if (!$wait_for_action_attempt) { - return ActionAttempt::from_json($res); - } - - $action_attempt = $this->seam->action_attempts->poll_until_ready( - $res->action_attempt_id - ); - - return $action_attempt; - } - - public function list( - string $connect_webview_id = null, - string $connected_account_id = null, - array $connected_account_ids = null, - string $created_before = null, - mixed $custom_metadata_has = null, - array $device_ids = null, - string $device_type = null, - array $device_types = null, - array $exclude_if = null, - array $include_if = null, - float $limit = null, - string $manufacturer = null, - string $user_identifier_key = null - ): array { - $request_payload = []; - - if ($connect_webview_id !== null) { - $request_payload["connect_webview_id"] = $connect_webview_id; - } - if ($connected_account_id !== null) { - $request_payload["connected_account_id"] = $connected_account_id; - } - if ($connected_account_ids !== null) { - $request_payload["connected_account_ids"] = $connected_account_ids; - } - if ($created_before !== null) { - $request_payload["created_before"] = $created_before; - } - if ($custom_metadata_has !== null) { - $request_payload["custom_metadata_has"] = $custom_metadata_has; - } - if ($device_ids !== null) { - $request_payload["device_ids"] = $device_ids; - } - if ($device_type !== null) { - $request_payload["device_type"] = $device_type; - } - if ($device_types !== null) { - $request_payload["device_types"] = $device_types; - } - if ($exclude_if !== null) { - $request_payload["exclude_if"] = $exclude_if; - } - if ($include_if !== null) { - $request_payload["include_if"] = $include_if; - } - if ($limit !== null) { - $request_payload["limit"] = $limit; - } - if ($manufacturer !== null) { - $request_payload["manufacturer"] = $manufacturer; - } - if ($user_identifier_key !== null) { - $request_payload["user_identifier_key"] = $user_identifier_key; - } - - $res = $this->seam->request( - "POST", - "/thermostats/list", - json: (object) $request_payload, - inner_object: "devices" - ); - - return array_map(fn($r) => Device::from_json($r), $res); - } - - public function off( - string $device_id, - bool $sync = null, - bool $wait_for_action_attempt = true - ): ActionAttempt { - $request_payload = []; - - if ($device_id !== null) { - $request_payload["device_id"] = $device_id; - } - if ($sync !== null) { - $request_payload["sync"] = $sync; - } - - $res = $this->seam->request( - "POST", - "/thermostats/off", - json: (object) $request_payload, - inner_object: "action_attempt" - ); - - if (!$wait_for_action_attempt) { - return ActionAttempt::from_json($res); - } - - $action_attempt = $this->seam->action_attempts->poll_until_ready( - $res->action_attempt_id - ); - - return $action_attempt; - } - - public function set_fallback_climate_preset( - string $climate_preset_key, - string $device_id - ): void { - $request_payload = []; - - if ($climate_preset_key !== null) { - $request_payload["climate_preset_key"] = $climate_preset_key; - } - if ($device_id !== null) { - $request_payload["device_id"] = $device_id; - } - - $this->seam->request( - "POST", - "/thermostats/set_fallback_climate_preset", - json: (object) $request_payload - ); - } - - public function set_fan_mode( - string $device_id, - string $fan_mode = null, - string $fan_mode_setting = null, - bool $sync = null, - bool $wait_for_action_attempt = true - ): ActionAttempt { - $request_payload = []; - - if ($device_id !== null) { - $request_payload["device_id"] = $device_id; - } - if ($fan_mode !== null) { - $request_payload["fan_mode"] = $fan_mode; - } - if ($fan_mode_setting !== null) { - $request_payload["fan_mode_setting"] = $fan_mode_setting; - } - if ($sync !== null) { - $request_payload["sync"] = $sync; - } - - $res = $this->seam->request( - "POST", - "/thermostats/set_fan_mode", - json: (object) $request_payload, - inner_object: "action_attempt" - ); - - if (!$wait_for_action_attempt) { - return ActionAttempt::from_json($res); - } - - $action_attempt = $this->seam->action_attempts->poll_until_ready( - $res->action_attempt_id - ); - - return $action_attempt; - } - - public function set_hvac_mode( - string $device_id, - string $hvac_mode_setting, - float $cooling_set_point_celsius = null, - float $cooling_set_point_fahrenheit = null, - float $heating_set_point_celsius = null, - float $heating_set_point_fahrenheit = null, - bool $wait_for_action_attempt = true - ): ActionAttempt { - $request_payload = []; - - if ($device_id !== null) { - $request_payload["device_id"] = $device_id; - } - if ($hvac_mode_setting !== null) { - $request_payload["hvac_mode_setting"] = $hvac_mode_setting; - } - if ($cooling_set_point_celsius !== null) { - $request_payload[ - "cooling_set_point_celsius" - ] = $cooling_set_point_celsius; - } - if ($cooling_set_point_fahrenheit !== null) { - $request_payload[ - "cooling_set_point_fahrenheit" - ] = $cooling_set_point_fahrenheit; - } - if ($heating_set_point_celsius !== null) { - $request_payload[ - "heating_set_point_celsius" - ] = $heating_set_point_celsius; - } - if ($heating_set_point_fahrenheit !== null) { - $request_payload[ - "heating_set_point_fahrenheit" - ] = $heating_set_point_fahrenheit; - } - - $res = $this->seam->request( - "POST", - "/thermostats/set_hvac_mode", - json: (object) $request_payload, - inner_object: "action_attempt" - ); - - if (!$wait_for_action_attempt) { - return ActionAttempt::from_json($res); - } - - $action_attempt = $this->seam->action_attempts->poll_until_ready( - $res->action_attempt_id - ); - - return $action_attempt; - } - - public function set_temperature_threshold( - string $device_id, - float $lower_limit_celsius = null, - float $lower_limit_fahrenheit = null, - float $upper_limit_celsius = null, - float $upper_limit_fahrenheit = null - ): void { - $request_payload = []; - - if ($device_id !== null) { - $request_payload["device_id"] = $device_id; - } - if ($lower_limit_celsius !== null) { - $request_payload["lower_limit_celsius"] = $lower_limit_celsius; - } - if ($lower_limit_fahrenheit !== null) { - $request_payload[ - "lower_limit_fahrenheit" - ] = $lower_limit_fahrenheit; - } - if ($upper_limit_celsius !== null) { - $request_payload["upper_limit_celsius"] = $upper_limit_celsius; - } - if ($upper_limit_fahrenheit !== null) { - $request_payload[ - "upper_limit_fahrenheit" - ] = $upper_limit_fahrenheit; - } - - $this->seam->request( - "POST", - "/thermostats/set_temperature_threshold", - json: (object) $request_payload - ); - } - - public function update_climate_preset( - string $climate_preset_key, - string $device_id, - bool $manual_override_allowed, - float $cooling_set_point_celsius = null, - float $cooling_set_point_fahrenheit = null, - string $fan_mode_setting = null, - float $heating_set_point_celsius = null, - float $heating_set_point_fahrenheit = null, - string $hvac_mode_setting = null, - string $name = null - ): void { - $request_payload = []; - - if ($climate_preset_key !== null) { - $request_payload["climate_preset_key"] = $climate_preset_key; - } - if ($device_id !== null) { - $request_payload["device_id"] = $device_id; - } - if ($manual_override_allowed !== null) { - $request_payload[ - "manual_override_allowed" - ] = $manual_override_allowed; - } - if ($cooling_set_point_celsius !== null) { - $request_payload[ - "cooling_set_point_celsius" - ] = $cooling_set_point_celsius; - } - if ($cooling_set_point_fahrenheit !== null) { - $request_payload[ - "cooling_set_point_fahrenheit" - ] = $cooling_set_point_fahrenheit; - } - if ($fan_mode_setting !== null) { - $request_payload["fan_mode_setting"] = $fan_mode_setting; - } - if ($heating_set_point_celsius !== null) { - $request_payload[ - "heating_set_point_celsius" - ] = $heating_set_point_celsius; - } - if ($heating_set_point_fahrenheit !== null) { - $request_payload[ - "heating_set_point_fahrenheit" - ] = $heating_set_point_fahrenheit; - } - if ($hvac_mode_setting !== null) { - $request_payload["hvac_mode_setting"] = $hvac_mode_setting; - } - if ($name !== null) { - $request_payload["name"] = $name; - } - - $this->seam->request( - "POST", - "/thermostats/update_climate_preset", - json: (object) $request_payload - ); - } -} - -class ThermostatsSchedulesClient -{ - private SeamClient $seam; - - public function __construct(SeamClient $seam) - { - $this->seam = $seam; - } - - public function create( - string $climate_preset_key, - string $device_id, - string $ends_at, - string $starts_at, - bool $is_override_allowed = null, - mixed $max_override_period_minutes = null, - string $name = null - ): ThermostatSchedule { - $request_payload = []; - - if ($climate_preset_key !== null) { - $request_payload["climate_preset_key"] = $climate_preset_key; - } - if ($device_id !== null) { - $request_payload["device_id"] = $device_id; - } - if ($ends_at !== null) { - $request_payload["ends_at"] = $ends_at; - } - if ($starts_at !== null) { - $request_payload["starts_at"] = $starts_at; - } - if ($is_override_allowed !== null) { - $request_payload["is_override_allowed"] = $is_override_allowed; - } - if ($max_override_period_minutes !== null) { - $request_payload[ - "max_override_period_minutes" - ] = $max_override_period_minutes; - } - if ($name !== null) { - $request_payload["name"] = $name; - } - - $res = $this->seam->request( - "POST", - "/thermostats/schedules/create", - json: (object) $request_payload, - inner_object: "thermostat_schedule" - ); - - return ThermostatSchedule::from_json($res); - } - - public function delete(string $thermostat_schedule_id): void - { - $request_payload = []; - - if ($thermostat_schedule_id !== null) { - $request_payload[ - "thermostat_schedule_id" - ] = $thermostat_schedule_id; - } - - $this->seam->request( - "POST", - "/thermostats/schedules/delete", - json: (object) $request_payload - ); - } - - public function get(string $thermostat_schedule_id): ThermostatSchedule - { - $request_payload = []; - - if ($thermostat_schedule_id !== null) { - $request_payload[ - "thermostat_schedule_id" - ] = $thermostat_schedule_id; - } - - $res = $this->seam->request( - "POST", - "/thermostats/schedules/get", - json: (object) $request_payload, - inner_object: "thermostat_schedule" - ); - - return ThermostatSchedule::from_json($res); - } - - public function list( - string $device_id, - string $user_identifier_key = null - ): array { - $request_payload = []; - - if ($device_id !== null) { - $request_payload["device_id"] = $device_id; - } - if ($user_identifier_key !== null) { - $request_payload["user_identifier_key"] = $user_identifier_key; - } - - $res = $this->seam->request( - "POST", - "/thermostats/schedules/list", - json: (object) $request_payload, - inner_object: "thermostat_schedules" - ); - - return array_map(fn($r) => ThermostatSchedule::from_json($r), $res); - } - - public function update( - string $thermostat_schedule_id, - string $climate_preset_key = null, - string $ends_at = null, - bool $is_override_allowed = null, - mixed $max_override_period_minutes = null, - string $name = null, - string $starts_at = null - ): void { - $request_payload = []; - - if ($thermostat_schedule_id !== null) { - $request_payload[ - "thermostat_schedule_id" - ] = $thermostat_schedule_id; - } - if ($climate_preset_key !== null) { - $request_payload["climate_preset_key"] = $climate_preset_key; - } - if ($ends_at !== null) { - $request_payload["ends_at"] = $ends_at; - } - if ($is_override_allowed !== null) { - $request_payload["is_override_allowed"] = $is_override_allowed; - } - if ($max_override_period_minutes !== null) { - $request_payload[ - "max_override_period_minutes" - ] = $max_override_period_minutes; - } - if ($name !== null) { - $request_payload["name"] = $name; - } - if ($starts_at !== null) { - $request_payload["starts_at"] = $starts_at; - } - - $this->seam->request( - "POST", - "/thermostats/schedules/update", - json: (object) $request_payload - ); - } -} - -class ThermostatsSimulateClient +class AcsAccessGroupsUnmanagedClient { private SeamClient $seam; @@ -4461,389 +141,107 @@ public function __construct(SeamClient $seam) $this->seam = $seam; } - public function hvac_mode_adjusted( - string $device_id, - string $hvac_mode, - float $cooling_set_point_celsius = null, - float $cooling_set_point_fahrenheit = null, - float $heating_set_point_celsius = null, - float $heating_set_point_fahrenheit = null - ): void { - $request_payload = []; - - if ($device_id !== null) { - $request_payload["device_id"] = $device_id; - } - if ($hvac_mode !== null) { - $request_payload["hvac_mode"] = $hvac_mode; - } - if ($cooling_set_point_celsius !== null) { - $request_payload[ - "cooling_set_point_celsius" - ] = $cooling_set_point_celsius; - } - if ($cooling_set_point_fahrenheit !== null) { - $request_payload[ - "cooling_set_point_fahrenheit" - ] = $cooling_set_point_fahrenheit; - } - if ($heating_set_point_celsius !== null) { - $request_payload[ - "heating_set_point_celsius" - ] = $heating_set_point_celsius; - } - if ($heating_set_point_fahrenheit !== null) { - $request_payload[ - "heating_set_point_fahrenheit" - ] = $heating_set_point_fahrenheit; - } - - $this->seam->request( - "POST", - "/thermostats/simulate/hvac_mode_adjusted", - json: (object) $request_payload - ); - } - - public function temperature_reached( - string $device_id, - float $temperature_celsius = null, - float $temperature_fahrenheit = null - ): void { - $request_payload = []; - - if ($device_id !== null) { - $request_payload["device_id"] = $device_id; - } - if ($temperature_celsius !== null) { - $request_payload["temperature_celsius"] = $temperature_celsius; - } - if ($temperature_fahrenheit !== null) { - $request_payload[ - "temperature_fahrenheit" - ] = $temperature_fahrenheit; - } - - $this->seam->request( - "POST", - "/thermostats/simulate/temperature_reached", - json: (object) $request_payload - ); - } -} - -class UserIdentitiesClient -{ - private SeamClient $seam; - public UserIdentitiesEnrollmentAutomationsClient $enrollment_automations; - public function __construct(SeamClient $seam) - { - $this->seam = $seam; - $this->enrollment_automations = new UserIdentitiesEnrollmentAutomationsClient( - $seam - ); - } - - public function add_acs_user( - string $acs_user_id, - string $user_identity_id - ): void { - $request_payload = []; - - if ($acs_user_id !== null) { - $request_payload["acs_user_id"] = $acs_user_id; - } - if ($user_identity_id !== null) { - $request_payload["user_identity_id"] = $user_identity_id; - } - - $this->seam->request( - "POST", - "/user_identities/add_acs_user", - json: (object) $request_payload - ); - } - - public function create( - string $email_address = null, - string $full_name = null, - string $phone_number = null, - string $user_identity_key = null - ): UserIdentity { - $request_payload = []; - - if ($email_address !== null) { - $request_payload["email_address"] = $email_address; - } - if ($full_name !== null) { - $request_payload["full_name"] = $full_name; - } - if ($phone_number !== null) { - $request_payload["phone_number"] = $phone_number; - } - if ($user_identity_key !== null) { - $request_payload["user_identity_key"] = $user_identity_key; - } - - $res = $this->seam->request( - "POST", - "/user_identities/create", - json: (object) $request_payload, - inner_object: "user_identity" - ); - - return UserIdentity::from_json($res); - } - - public function delete(string $user_identity_id): void - { - $request_payload = []; - - if ($user_identity_id !== null) { - $request_payload["user_identity_id"] = $user_identity_id; - } - - $this->seam->request( - "POST", - "/user_identities/delete", - json: (object) $request_payload - ); - } - - public function get( - string $user_identity_id = null, - string $user_identity_key = null - ): UserIdentity { - $request_payload = []; - - if ($user_identity_id !== null) { - $request_payload["user_identity_id"] = $user_identity_id; - } - if ($user_identity_key !== null) { - $request_payload["user_identity_key"] = $user_identity_key; - } - - $res = $this->seam->request( - "POST", - "/user_identities/get", - json: (object) $request_payload, - inner_object: "user_identity" - ); - - return UserIdentity::from_json($res); - } - - public function grant_access_to_device( - string $device_id, - string $user_identity_id - ): void { - $request_payload = []; - - if ($device_id !== null) { - $request_payload["device_id"] = $device_id; - } - if ($user_identity_id !== null) { - $request_payload["user_identity_id"] = $user_identity_id; - } - - $this->seam->request( - "POST", - "/user_identities/grant_access_to_device", - json: (object) $request_payload - ); - } - - public function list(string $credential_manager_acs_system_id = null): array - { - $request_payload = []; - - if ($credential_manager_acs_system_id !== null) { - $request_payload[ - "credential_manager_acs_system_id" - ] = $credential_manager_acs_system_id; - } - - $res = $this->seam->request( - "POST", - "/user_identities/list", - json: (object) $request_payload, - inner_object: "user_identities" - ); - - return array_map(fn($r) => UserIdentity::from_json($r), $res); - } - - public function list_accessible_devices(string $user_identity_id): array - { - $request_payload = []; - - if ($user_identity_id !== null) { - $request_payload["user_identity_id"] = $user_identity_id; - } - - $res = $this->seam->request( - "POST", - "/user_identities/list_accessible_devices", - json: (object) $request_payload, - inner_object: "devices" - ); - - return array_map(fn($r) => Device::from_json($r), $res); - } - - public function list_acs_systems(string $user_identity_id): array - { - $request_payload = []; - - if ($user_identity_id !== null) { - $request_payload["user_identity_id"] = $user_identity_id; - } - - $res = $this->seam->request( - "POST", - "/user_identities/list_acs_systems", - json: (object) $request_payload, - inner_object: "acs_systems" - ); - - return array_map(fn($r) => AcsSystem::from_json($r), $res); - } - - public function list_acs_users(string $user_identity_id): array + public function get(string $acs_access_group_id): UnmanagedAcsAccessGroup { $request_payload = []; - if ($user_identity_id !== null) { - $request_payload["user_identity_id"] = $user_identity_id; + if ($acs_access_group_id !== null) { + $request_payload["acs_access_group_id"] = $acs_access_group_id; } $res = $this->seam->request( "POST", - "/user_identities/list_acs_users", + "/acs/access_groups/unmanaged/get", json: (object) $request_payload, - inner_object: "acs_users" - ); - - return array_map(fn($r) => AcsUser::from_json($r), $res); - } - - public function remove_acs_user( - string $acs_user_id, - string $user_identity_id - ): void { - $request_payload = []; - - if ($acs_user_id !== null) { - $request_payload["acs_user_id"] = $acs_user_id; - } - if ($user_identity_id !== null) { - $request_payload["user_identity_id"] = $user_identity_id; - } - - $this->seam->request( - "POST", - "/user_identities/remove_acs_user", - json: (object) $request_payload + inner_object: "acs_access_group" ); - } - public function revoke_access_to_device( - string $device_id, - string $user_identity_id - ): void { - $request_payload = []; - - if ($device_id !== null) { - $request_payload["device_id"] = $device_id; - } - if ($user_identity_id !== null) { - $request_payload["user_identity_id"] = $user_identity_id; - } - - $this->seam->request( - "POST", - "/user_identities/revoke_access_to_device", - json: (object) $request_payload - ); + return UnmanagedAcsAccessGroup::from_json($res); } - public function update( - string $user_identity_id, - string $email_address = null, - string $full_name = null, - string $phone_number = null, - string $user_identity_key = null - ): void { + public function list( + string $acs_system_id = null, + string $acs_user_id = null + ): array { $request_payload = []; - if ($user_identity_id !== null) { - $request_payload["user_identity_id"] = $user_identity_id; - } - if ($email_address !== null) { - $request_payload["email_address"] = $email_address; - } - if ($full_name !== null) { - $request_payload["full_name"] = $full_name; - } - if ($phone_number !== null) { - $request_payload["phone_number"] = $phone_number; + if ($acs_system_id !== null) { + $request_payload["acs_system_id"] = $acs_system_id; } - if ($user_identity_key !== null) { - $request_payload["user_identity_key"] = $user_identity_key; + if ($acs_user_id !== null) { + $request_payload["acs_user_id"] = $acs_user_id; } - $this->seam->request( + $res = $this->seam->request( "POST", - "/user_identities/update", - json: (object) $request_payload + "/acs/access_groups/unmanaged/list", + json: (object) $request_payload, + inner_object: "acs_access_groups" + ); + + return array_map( + fn($r) => UnmanagedAcsAccessGroup::from_json($r), + $res ); } } -class UserIdentitiesEnrollmentAutomationsClient +class AcsClient { private SeamClient $seam; - + public AcsAccessGroupsClient $access_groups; + public AcsCredentialPoolsClient $credential_pools; + public AcsCredentialProvisioningAutomationsClient $credential_provisioning_automations; + public AcsCredentialsClient $credentials; + public AcsUsersClient $users; public function __construct(SeamClient $seam) { $this->seam = $seam; + $this->access_groups = new AcsAccessGroupsClient($seam); + $this->credential_pools = new AcsCredentialPoolsClient($seam); + $this->credential_provisioning_automations = new AcsCredentialProvisioningAutomationsClient( + $seam + ); + $this->credentials = new AcsCredentialsClient($seam); + $this->users = new AcsUsersClient($seam); } +} - public function delete(string $enrollment_automation_id): void - { - $request_payload = []; - - if ($enrollment_automation_id !== null) { - $request_payload[ - "enrollment_automation_id" - ] = $enrollment_automation_id; - } +class AcsCredentialPoolsClient +{ + private SeamClient $seam; - $this->seam->request( - "POST", - "/user_identities/enrollment_automations/delete", - json: (object) $request_payload - ); + public function __construct(SeamClient $seam) + { + $this->seam = $seam; } - public function get(string $enrollment_automation_id): EnrollmentAutomation + public function list(string $acs_system_id): array { $request_payload = []; - if ($enrollment_automation_id !== null) { - $request_payload[ - "enrollment_automation_id" - ] = $enrollment_automation_id; + if ($acs_system_id !== null) { + $request_payload["acs_system_id"] = $acs_system_id; } $res = $this->seam->request( "POST", - "/user_identities/enrollment_automations/get", + "/acs/credential_pools/list", json: (object) $request_payload, - inner_object: "enrollment_automation" + inner_object: "acs_credential_pools" ); - return EnrollmentAutomation::from_json($res); + return array_map(fn($r) => AcsCredentialPool::from_json($r), $res); + } +} + +class AcsCredentialProvisioningAutomationsClient +{ + private SeamClient $seam; + + public function __construct(SeamClient $seam) + { + $this->seam = $seam; } public function launch( @@ -4852,7 +250,7 @@ public function launch( string $acs_credential_pool_id = null, bool $create_credential_manager_user = null, string $credential_manager_acs_user_id = null - ): void { + ): AcsCredentialProvisioningAutomation { $request_payload = []; if ($credential_manager_acs_system_id !== null) { @@ -4879,34 +277,65 @@ public function launch( ] = $credential_manager_acs_user_id; } - $this->seam->request( + $res = $this->seam->request( "POST", - "/user_identities/enrollment_automations/launch", + "/acs/credential_provisioning_automations/launch", json: (object) $request_payload, - inner_object: "enrollment_automation" + inner_object: "acs_credential_provisioning_automation" ); + + return AcsCredentialProvisioningAutomation::from_json($res); } +} + +class AcsCredentialsClient +{ + private SeamClient $seam; - public function list(string $user_identity_id): array + public function __construct(SeamClient $seam) { + $this->seam = $seam; + } + + public function create_offline_code( + string $acs_user_id, + string $allowed_acs_entrance_id, + string $ends_at = null, + bool $is_one_time_use = null, + string $starts_at = null + ): AcsCredential { $request_payload = []; - if ($user_identity_id !== null) { - $request_payload["user_identity_id"] = $user_identity_id; + if ($acs_user_id !== null) { + $request_payload["acs_user_id"] = $acs_user_id; + } + if ($allowed_acs_entrance_id !== null) { + $request_payload[ + "allowed_acs_entrance_id" + ] = $allowed_acs_entrance_id; + } + if ($ends_at !== null) { + $request_payload["ends_at"] = $ends_at; + } + if ($is_one_time_use !== null) { + $request_payload["is_one_time_use"] = $is_one_time_use; + } + if ($starts_at !== null) { + $request_payload["starts_at"] = $starts_at; } $res = $this->seam->request( "POST", - "/user_identities/enrollment_automations/list", + "/acs/credentials/create_offline_code", json: (object) $request_payload, - inner_object: "enrollment_automations" + inner_object: "acs_credential" ); - return array_map(fn($r) => EnrollmentAutomation::from_json($r), $res); + return AcsCredential::from_json($res); } } -class WebhooksClient +class AcsCredentialsUnmanagedClient { private SeamClient $seam; @@ -4915,94 +344,120 @@ public function __construct(SeamClient $seam) $this->seam = $seam; } - public function create(string $url, array $event_types = null): Webhook + public function get(string $acs_credential_id): UnmanagedAcsCredential { $request_payload = []; - if ($url !== null) { - $request_payload["url"] = $url; - } - if ($event_types !== null) { - $request_payload["event_types"] = $event_types; + if ($acs_credential_id !== null) { + $request_payload["acs_credential_id"] = $acs_credential_id; } $res = $this->seam->request( "POST", - "/webhooks/create", + "/acs/credentials/unmanaged/get", json: (object) $request_payload, - inner_object: "webhook" + inner_object: "acs_credential" ); - return Webhook::from_json($res); + return UnmanagedAcsCredential::from_json($res); } - public function delete(string $webhook_id): void - { + public function list( + string $acs_user_id = null, + string $acs_system_id = null, + string $user_identity_id = null + ): array { $request_payload = []; - if ($webhook_id !== null) { - $request_payload["webhook_id"] = $webhook_id; + if ($acs_user_id !== null) { + $request_payload["acs_user_id"] = $acs_user_id; } - - $this->seam->request( - "POST", - "/webhooks/delete", - json: (object) $request_payload - ); - } - - public function get(string $webhook_id): Webhook - { - $request_payload = []; - - if ($webhook_id !== null) { - $request_payload["webhook_id"] = $webhook_id; + if ($acs_system_id !== null) { + $request_payload["acs_system_id"] = $acs_system_id; + } + if ($user_identity_id !== null) { + $request_payload["user_identity_id"] = $user_identity_id; } $res = $this->seam->request( "POST", - "/webhooks/get", + "/acs/credentials/unmanaged/list", json: (object) $request_payload, - inner_object: "webhook" + inner_object: "acs_credentials" ); - return Webhook::from_json($res); + return array_map(fn($r) => UnmanagedAcsCredential::from_json($r), $res); + } +} + +class AcsUsersUnmanagedClient +{ + private SeamClient $seam; + + public function __construct(SeamClient $seam) + { + $this->seam = $seam; } - public function list(): array + public function get(string $acs_user_id): UnmanagedAcsUser { $request_payload = []; + if ($acs_user_id !== null) { + $request_payload["acs_user_id"] = $acs_user_id; + } + $res = $this->seam->request( "POST", - "/webhooks/list", + "/acs/users/unmanaged/get", json: (object) $request_payload, - inner_object: "webhooks" + inner_object: "acs_user" ); - return array_map(fn($r) => Webhook::from_json($r), $res); + return UnmanagedAcsUser::from_json($res); } - public function update(array $event_types, string $webhook_id): void - { + public function list( + string $acs_system_id = null, + float $limit = null, + string $user_identity_email_address = null, + string $user_identity_id = null, + string $user_identity_phone_number = null + ): array { $request_payload = []; - if ($event_types !== null) { - $request_payload["event_types"] = $event_types; + if ($acs_system_id !== null) { + $request_payload["acs_system_id"] = $acs_system_id; } - if ($webhook_id !== null) { - $request_payload["webhook_id"] = $webhook_id; + if ($limit !== null) { + $request_payload["limit"] = $limit; + } + if ($user_identity_email_address !== null) { + $request_payload[ + "user_identity_email_address" + ] = $user_identity_email_address; + } + if ($user_identity_id !== null) { + $request_payload["user_identity_id"] = $user_identity_id; + } + if ($user_identity_phone_number !== null) { + $request_payload[ + "user_identity_phone_number" + ] = $user_identity_phone_number; } - $this->seam->request( + $res = $this->seam->request( "POST", - "/webhooks/update", - json: (object) $request_payload + "/acs/users/unmanaged/list", + json: (object) $request_payload, + inner_object: "acs_users" ); + + return array_map(fn($r) => UnmanagedAcsUser::from_json($r), $res); } } -class WorkspacesClient +class DevicesClient { private SeamClient $seam; @@ -5011,101 +466,49 @@ public function __construct(SeamClient $seam) $this->seam = $seam; } - public function create( - string $name, - string $company_name = null, - string $connect_partner_name = null, - bool $is_sandbox = null, - string $webview_logo_shape = null, - string $webview_primary_button_color = null, - string $webview_primary_button_text_color = null - ): Workspace { + public function delete(string $device_id): void + { $request_payload = []; - if ($name !== null) { - $request_payload["name"] = $name; - } - if ($company_name !== null) { - $request_payload["company_name"] = $company_name; - } - if ($connect_partner_name !== null) { - $request_payload["connect_partner_name"] = $connect_partner_name; - } - if ($is_sandbox !== null) { - $request_payload["is_sandbox"] = $is_sandbox; - } - if ($webview_logo_shape !== null) { - $request_payload["webview_logo_shape"] = $webview_logo_shape; - } - if ($webview_primary_button_color !== null) { - $request_payload[ - "webview_primary_button_color" - ] = $webview_primary_button_color; - } - if ($webview_primary_button_text_color !== null) { - $request_payload[ - "webview_primary_button_text_color" - ] = $webview_primary_button_text_color; + if ($device_id !== null) { + $request_payload["device_id"] = $device_id; } - $res = $this->seam->request( + $this->seam->request( "POST", - "/workspaces/create", - json: (object) $request_payload, - inner_object: "workspace" + "/devices/delete", + json: (object) $request_payload ); - - return Workspace::from_json($res); } +} - public function get(): Workspace - { - $request_payload = []; - - $res = $this->seam->request( - "POST", - "/workspaces/get", - json: (object) $request_payload, - inner_object: "workspace" - ); +class ThermostatsClient +{ + private SeamClient $seam; - return Workspace::from_json($res); + public function __construct(SeamClient $seam) + { + $this->seam = $seam; } - public function list(): array + public function get(string $device_id = null, string $name = null): Device { $request_payload = []; - $res = $this->seam->request( - "POST", - "/workspaces/list", - json: (object) $request_payload, - inner_object: "workspaces" - ); - - return array_map(fn($r) => Workspace::from_json($r), $res); - } - - public function reset_sandbox( - bool $wait_for_action_attempt = true - ): ActionAttempt { - $request_payload = []; + if ($device_id !== null) { + $request_payload["device_id"] = $device_id; + } + if ($name !== null) { + $request_payload["name"] = $name; + } $res = $this->seam->request( "POST", - "/workspaces/reset_sandbox", + "/thermostats/get", json: (object) $request_payload, - inner_object: "action_attempt" - ); - - if (!$wait_for_action_attempt) { - return ActionAttempt::from_json($res); - } - - $action_attempt = $this->seam->action_attempts->poll_until_ready( - $res->action_attempt_id + inner_object: "thermostat" ); - return $action_attempt; + return Device::from_json($res); } }