diff --git a/package-lock.json b/package-lock.json index 9f9b1ab..1657d22 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.17.4", + "@seamapi/types": "1.361.1", "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.17.4", + "resolved": "https://registry.npmjs.org/@seamapi/nextlove-sdk-generator/-/nextlove-sdk-generator-1.17.4.tgz", + "integrity": "sha512-QvjdXyZ2vy2yDefM9YOuT4p3xFepeQqB8m7AFDests5XXs00N6qrOdHt5xBDaG9q5+E1za7CKuqs4IlV5wRM6Q==", "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.361.1", + "resolved": "https://registry.npmjs.org/@seamapi/types/-/types-1.361.1.tgz", + "integrity": "sha512-8hGlGZfcjEqs9KhlMs1ACGeSKwNKEOphb3QVAsong0FOgusnliGwvylURTgz/KcEMKQyN8wveKApqL9zT1VhyA==", "dev": true, "license": "MIT", "engines": { diff --git a/package.json b/package.json index 6220dbd..ea0e4bb 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.17.4", + "@seamapi/types": "1.361.1", "del": "^7.1.0", "prettier": "^3.0.0" } diff --git a/src/Objects/ConnectedAccountErrors.php b/src/Objects/ConnectedAccountErrors.php index c721eb0..2b29b3f 100644 --- a/src/Objects/ConnectedAccountErrors.php +++ b/src/Objects/ConnectedAccountErrors.php @@ -10,18 +10,24 @@ public static function from_json(mixed $json): ConnectedAccountErrors|null return null; } return new self( + created_at: $json->created_at, error_code: $json->error_code, is_connected_account_error: $json->is_connected_account_error, message: $json->message, - created_at: $json->created_at ?? null + salto_ks_metadata: isset($json->salto_ks_metadata) + ? ConnectedAccountSaltoKsMetadata::from_json( + $json->salto_ks_metadata + ) + : null ); } public function __construct( + public string $created_at, public string $error_code, public bool $is_connected_account_error, public string $message, - public string|null $created_at + public ConnectedAccountSaltoKsMetadata|null $salto_ks_metadata ) { } } diff --git a/src/Objects/ConnectedAccountSaltoKsMetadata.php b/src/Objects/ConnectedAccountSaltoKsMetadata.php new file mode 100644 index 0000000..57fb5ef --- /dev/null +++ b/src/Objects/ConnectedAccountSaltoKsMetadata.php @@ -0,0 +1,24 @@ + ConnectedAccountSites::from_json($s), + $json->sites ?? [] + ) + ); + } + + public function __construct(public array $sites) + { + } +} diff --git a/src/Objects/ConnectedAccountSites.php b/src/Objects/ConnectedAccountSites.php new file mode 100644 index 0000000..1e2d116 --- /dev/null +++ b/src/Objects/ConnectedAccountSites.php @@ -0,0 +1,27 @@ +site_id, + site_name: $json->site_name, + site_user_subscription_limit: $json->site_user_subscription_limit, + subscribed_site_user_count: $json->subscribed_site_user_count + ); + } + + public function __construct( + public string $site_id, + public string $site_name, + public mixed $site_user_subscription_limit, + public mixed $subscribed_site_user_count + ) { + } +} diff --git a/src/Objects/ConnectedAccountWarnings.php b/src/Objects/ConnectedAccountWarnings.php index 43e69bd..d97c766 100644 --- a/src/Objects/ConnectedAccountWarnings.php +++ b/src/Objects/ConnectedAccountWarnings.php @@ -10,16 +10,22 @@ public static function from_json(mixed $json): ConnectedAccountWarnings|null return null; } return new self( + created_at: $json->created_at, message: $json->message, warning_code: $json->warning_code, - created_at: $json->created_at ?? null + salto_ks_metadata: isset($json->salto_ks_metadata) + ? ConnectedAccountSaltoKsMetadata::from_json( + $json->salto_ks_metadata + ) + : null ); } public function __construct( + public string $created_at, public string $message, public string $warning_code, - public string|null $created_at + public ConnectedAccountSaltoKsMetadata|null $salto_ks_metadata ) { } } diff --git a/src/Objects/DeviceErrors.php b/src/Objects/DeviceErrors.php index ecd009f..14754fd 100644 --- a/src/Objects/DeviceErrors.php +++ b/src/Objects/DeviceErrors.php @@ -10,9 +10,9 @@ public static function from_json(mixed $json): DeviceErrors|null return null; } return new self( + created_at: $json->created_at, error_code: $json->error_code, message: $json->message, - created_at: $json->created_at ?? null, is_connected_account_error: $json->is_connected_account_error ?? null, is_device_error: $json->is_device_error ?? null @@ -20,9 +20,9 @@ public static function from_json(mixed $json): DeviceErrors|null } public function __construct( + public string $created_at, public string $error_code, public string $message, - public string|null $created_at, public bool|null $is_connected_account_error, public bool|null $is_device_error ) { diff --git a/src/Objects/DeviceWarnings.php b/src/Objects/DeviceWarnings.php index fa29faf..db5e7aa 100644 --- a/src/Objects/DeviceWarnings.php +++ b/src/Objects/DeviceWarnings.php @@ -10,16 +10,16 @@ public static function from_json(mixed $json): DeviceWarnings|null return null; } return new self( + created_at: $json->created_at, message: $json->message, - warning_code: $json->warning_code, - created_at: $json->created_at ?? null + warning_code: $json->warning_code ); } public function __construct( + public string $created_at, public string $message, - public string $warning_code, - public string|null $created_at + public string $warning_code ) { } } diff --git a/src/Objects/Event.php b/src/Objects/Event.php index 5a1030e..c9d4e5d 100644 --- a/src/Objects/Event.php +++ b/src/Objects/Event.php @@ -34,6 +34,7 @@ public static function from_json(mixed $json): Event|null desired_temperature_fahrenheit: $json->desired_temperature_fahrenheit ?? null, device_id: $json->device_id ?? null, + device_name: $json->device_name ?? null, enrollment_automation_id: $json->enrollment_automation_id ?? null, error_code: $json->error_code ?? null, event_id: $json->event_id ?? null, @@ -88,6 +89,7 @@ public function __construct( public float|null $desired_temperature_celsius, public float|null $desired_temperature_fahrenheit, public string|null $device_id, + public string|null $device_name, public string|null $enrollment_automation_id, public string|null $error_code, public string|null $event_id, diff --git a/src/Objects/Pagination.php b/src/Objects/Pagination.php new file mode 100644 index 0000000..58e41e4 --- /dev/null +++ b/src/Objects/Pagination.php @@ -0,0 +1,25 @@ +has_next_page, + next_page_cursor: $json->next_page_cursor ?? null, + next_page_url: $json->next_page_url ?? null + ); + } + + public function __construct( + public bool $has_next_page, + public string|null $next_page_cursor, + public string|null $next_page_url + ) { + } +} diff --git a/src/Objects/UnmanagedDeviceErrors.php b/src/Objects/UnmanagedDeviceErrors.php index 0b0f12a..45d879a 100644 --- a/src/Objects/UnmanagedDeviceErrors.php +++ b/src/Objects/UnmanagedDeviceErrors.php @@ -10,9 +10,9 @@ public static function from_json(mixed $json): UnmanagedDeviceErrors|null return null; } return new self( + created_at: $json->created_at, error_code: $json->error_code, message: $json->message, - created_at: $json->created_at ?? null, is_connected_account_error: $json->is_connected_account_error ?? null, is_device_error: $json->is_device_error ?? null @@ -20,9 +20,9 @@ public static function from_json(mixed $json): UnmanagedDeviceErrors|null } public function __construct( + public string $created_at, public string $error_code, public string $message, - public string|null $created_at, public bool|null $is_connected_account_error, public bool|null $is_device_error ) { diff --git a/src/Objects/UnmanagedDeviceWarnings.php b/src/Objects/UnmanagedDeviceWarnings.php index 84cc664..c7cbe96 100644 --- a/src/Objects/UnmanagedDeviceWarnings.php +++ b/src/Objects/UnmanagedDeviceWarnings.php @@ -10,16 +10,16 @@ public static function from_json(mixed $json): UnmanagedDeviceWarnings|null return null; } return new self( + created_at: $json->created_at, message: $json->message, - warning_code: $json->warning_code, - created_at: $json->created_at ?? null + warning_code: $json->warning_code ); } public function __construct( + public string $created_at, public string $message, - public string $warning_code, - public string|null $created_at + public string $warning_code ) { } } diff --git a/src/Objects/Workspace.php b/src/Objects/Workspace.php index 9ac24e2..a48dc00 100644 --- a/src/Objects/Workspace.php +++ b/src/Objects/Workspace.php @@ -12,6 +12,7 @@ public static function from_json(mixed $json): Workspace|null return new self( company_name: $json->company_name, is_sandbox: $json->is_sandbox, + is_suspended: $json->is_suspended, name: $json->name, workspace_id: $json->workspace_id, connect_partner_name: $json->connect_partner_name ?? null @@ -21,6 +22,7 @@ public static function from_json(mixed $json): Workspace|null public function __construct( public string $company_name, public bool $is_sandbox, + public bool $is_suspended, public string $name, public string $workspace_id, public string|null $connect_partner_name diff --git a/src/SeamClient.php b/src/SeamClient.php index 3af13b5..bf57bf3 100644 --- a/src/SeamClient.php +++ b/src/SeamClient.php @@ -21,6 +21,7 @@ use Seam\Objects\Event; use Seam\Objects\Network; use Seam\Objects\NoiseThreshold; +use Seam\Objects\Pagination; use Seam\Objects\Phone; use Seam\Objects\ThermostatSchedule; use Seam\Objects\UnmanagedAccessCode; @@ -928,8 +929,6 @@ 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; @@ -939,10 +938,6 @@ 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); @@ -951,141 +946,6 @@ public function __construct(SeamClient $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; @@ -1180,43 +1040,6 @@ public function create( 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 = []; @@ -1354,61 +1177,6 @@ public function update( } } -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; @@ -1887,7 +1655,9 @@ public function get(string $acs_user_id): AcsUser public function list( string $acs_system_id = null, string $created_before = null, - float $limit = null, + mixed $limit = null, + string $page_cursor = null, + string $search = null, string $user_identity_email_address = null, string $user_identity_id = null, string $user_identity_phone_number = null @@ -1903,6 +1673,12 @@ public function list( if ($limit !== null) { $request_payload["limit"] = $limit; } + if ($page_cursor !== null) { + $request_payload["page_cursor"] = $page_cursor; + } + if ($search !== null) { + $request_payload["search"] = $search; + } if ($user_identity_email_address !== null) { $request_payload[ "user_identity_email_address" @@ -2051,73 +1827,6 @@ public function update( } } -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; @@ -2667,21 +2376,6 @@ public function __construct(SeamClient $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 = []; @@ -3041,6 +2735,7 @@ public function list( string $connected_account_id = null, string $device_id = null, array $device_ids = null, + array $event_ids = null, string $event_type = null, array $event_types = null, float $limit = null, @@ -3076,6 +2771,9 @@ public function list( if ($device_ids !== null) { $request_payload["device_ids"] = $device_ids; } + if ($event_ids !== null) { + $request_payload["event_ids"] = $event_ids; + } if ($event_type !== null) { $request_payload["event_type"] = $event_type; } @@ -3858,27 +3556,6 @@ public function delete_climate_preset( ); } - 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,