diff --git a/docs/api/_blueprint.json b/docs/api/_blueprint.json index aa38363a8..bd48c387b 100644 --- a/docs/api/_blueprint.json +++ b/docs/api/_blueprint.json @@ -60032,6 +60032,20 @@ "semanticMethod": "POST", "preferredMethod": "POST", "parameters": [ + { + "name": "customization_profile_id", + "description": "", + "isRequired": false, + "isDeprecated": false, + "deprecationMessage": "", + "isUndocumented": false, + "undocumentedMessage": "", + "isDraft": false, + "draftMessage": "", + "hasDefault": false, + "format": "id", + "jsonType": "string" + }, { "name": "max_use_count", "description": "Maximum number of times the instant key can be used. Default: 1.", @@ -88980,6 +88994,74 @@ "format": "datetime", "jsonType": "string" }, + { + "name": "customization_profile", + "description": "Customization profile associated with the Instant Key.", + "isDeprecated": false, + "deprecationMessage": "", + "isUndocumented": false, + "undocumentedMessage": "", + "isDraft": false, + "draftMessage": "", + "propertyGroupKey": null, + "format": "object", + "jsonType": "object", + "propertyGroups": [], + "properties": [ + { + "name": "logo_url", + "description": "URL of the logo associated with the customization profile.", + "isDeprecated": false, + "deprecationMessage": "", + "isUndocumented": false, + "undocumentedMessage": "", + "isDraft": false, + "draftMessage": "", + "propertyGroupKey": null, + "format": "string", + "jsonType": "string" + }, + { + "name": "primary_color", + "description": "Primary color of the customization profile.", + "isDeprecated": false, + "deprecationMessage": "", + "isUndocumented": false, + "undocumentedMessage": "", + "isDraft": false, + "draftMessage": "", + "propertyGroupKey": null, + "format": "string", + "jsonType": "string" + }, + { + "name": "secondary_color", + "description": "Secondary color of the customization profile.", + "isDeprecated": false, + "deprecationMessage": "", + "isUndocumented": false, + "undocumentedMessage": "", + "isDraft": false, + "draftMessage": "", + "propertyGroupKey": null, + "format": "string", + "jsonType": "string" + } + ] + }, + { + "name": "customization_profile_id", + "description": "ID of the customization profile associated with the Instant Key.", + "isDeprecated": false, + "deprecationMessage": "", + "isUndocumented": false, + "undocumentedMessage": "", + "isDraft": false, + "draftMessage": "", + "propertyGroupKey": null, + "format": "id", + "jsonType": "string" + }, { "name": "expires_at", "description": "Date and time at which the Instant Key expires.", diff --git a/docs/api/_report.md b/docs/api/_report.md index cd72c4e7e..f52ff7c13 100644 --- a/docs/api/_report.md +++ b/docs/api/_report.md @@ -373,6 +373,8 @@ Items that are intentionally undocumented are not included in this section. - `sync` - `/thermostats/set_hvac_mode` - `hvac_mode_setting` +- `/user_identities/generate_instant_key` + - `customization_profile_id` - `/user_identities/get` - `user_identity_key` - `/workspaces/create` diff --git a/docs/api/instant_keys/README.md b/docs/api/instant_keys/README.md index cb09eee58..218463f0e 100644 --- a/docs/api/instant_keys/README.md +++ b/docs/api/instant_keys/README.md @@ -48,6 +48,40 @@ Date and time at which the Instant Key was created. +--- + +**`customization_profile`** *Object* + +Customization profile associated with the Instant Key. + + + +
+ Child Properties + + - logo_url String + + URL of the logo associated with the customization profile. + + - primary_color String + + Primary color of the customization profile. + + - secondary_color String + + Secondary color of the customization profile. + +
+ +--- + +**`customization_profile_id`** *UUID* + +ID of the customization profile associated with the Instant Key. + + + + --- **`expires_at`** *Datetime* diff --git a/docs/api/user_identities/generate_instant_key.md b/docs/api/user_identities/generate_instant_key.md index 2c1e268e6..4224cbad4 100644 --- a/docs/api/user_identities/generate_instant_key.md +++ b/docs/api/user_identities/generate_instant_key.md @@ -199,6 +199,10 @@ ID of the user identity for which you want to generate an instant key. --- +**`customization_profile_id`** *String* + +--- + **`max_use_count`** *Number* Maximum number of times the instant key can be used. Default: 1. diff --git a/package-lock.json b/package-lock.json index 5650d874c..ce4eafb8b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -14,7 +14,7 @@ "@prettier/plugin-ruby": "^4.0.4", "@seamapi/blueprint": "^0.51.3", "@seamapi/smith": "^0.4.4", - "@seamapi/types": "1.490.0", + "@seamapi/types": "1.491.0", "@types/command-exists": "^1.2.3", "change-case": "^5.4.4", "command-exists": "^1.2.9", @@ -886,9 +886,9 @@ } }, "node_modules/@seamapi/types": { - "version": "1.490.0", - "resolved": "https://registry.npmjs.org/@seamapi/types/-/types-1.490.0.tgz", - "integrity": "sha512-QlinynCS8QUAGWdAjwtzvwcP4c5iFk7cuqdrRrwd79XrZO/U18dXMV1IPYLrB+OCdBcD1duvO4VqUqIxiqYxow==", + "version": "1.491.0", + "resolved": "https://registry.npmjs.org/@seamapi/types/-/types-1.491.0.tgz", + "integrity": "sha512-3R9U32rcRtYAL6o8eYuLcoQgnqZ3A4vELIuJhREAxkQs8Fu3scka468va/ibkeozTtQiEcOqh5MJ0IpkoaVMjQ==", "dev": true, "license": "MIT", "engines": { diff --git a/package.json b/package.json index 239dd9bc7..cd9f071e4 100644 --- a/package.json +++ b/package.json @@ -32,7 +32,7 @@ "@prettier/plugin-ruby": "^4.0.4", "@seamapi/blueprint": "^0.51.3", "@seamapi/smith": "^0.4.4", - "@seamapi/types": "1.490.0", + "@seamapi/types": "1.491.0", "@types/command-exists": "^1.2.3", "change-case": "^5.4.4", "command-exists": "^1.2.9",