@seamapi/types 1.1030.0 → 1.1031.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -47755,23 +47755,18 @@ const openapi = {
|
|
|
47755
47755
|
delete: {
|
|
47756
47756
|
description: 'Deletes a [Connect Webview](https://docs.seam.co/core-concepts/connect-webviews).\n\nYou do not need to delete a Connect Webview once a user completes it. Instead, you can simply ignore completed Connect Webviews.',
|
|
47757
47757
|
operationId: 'connectWebviewsDeleteDelete',
|
|
47758
|
-
|
|
47759
|
-
|
|
47760
|
-
'
|
|
47761
|
-
|
|
47762
|
-
|
|
47763
|
-
|
|
47764
|
-
|
|
47765
|
-
|
|
47766
|
-
|
|
47767
|
-
},
|
|
47768
|
-
},
|
|
47769
|
-
required: ['connect_webview_id'],
|
|
47770
|
-
type: 'object',
|
|
47771
|
-
},
|
|
47758
|
+
parameters: [
|
|
47759
|
+
{
|
|
47760
|
+
in: 'query',
|
|
47761
|
+
name: 'connect_webview_id',
|
|
47762
|
+
required: true,
|
|
47763
|
+
schema: {
|
|
47764
|
+
description: 'ID of the Connect Webview that you want to delete.',
|
|
47765
|
+
format: 'uuid',
|
|
47766
|
+
type: 'string',
|
|
47772
47767
|
},
|
|
47773
47768
|
},
|
|
47774
|
-
|
|
47769
|
+
],
|
|
47775
47770
|
responses: {
|
|
47776
47771
|
'200': {
|
|
47777
47772
|
content: {
|
|
@@ -48159,28 +48154,28 @@ const openapi = {
|
|
|
48159
48154
|
delete: {
|
|
48160
48155
|
description: 'Deletes a specified [connected account](https://docs.seam.co/core-concepts/connected-accounts).\n\nDeleting a connected account triggers a `connected_account.deleted` event and removes the connected account and all data associated with the connected account from Seam, including devices, events, access codes, and so on. For every deleted resource, Seam sends a corresponding deleted event, but the resource is not deleted from the provider.\n\nFor example, if you delete a connected account with a device that has an access code, Seam sends a `connected_account.deleted` event, a `device.deleted` event, and an `access_code.deleted` event, but Seam does not remove the access code from the device.',
|
|
48161
48156
|
operationId: 'connectedAccountsDeleteDelete',
|
|
48162
|
-
|
|
48163
|
-
|
|
48164
|
-
'
|
|
48165
|
-
|
|
48166
|
-
|
|
48167
|
-
|
|
48168
|
-
|
|
48169
|
-
|
|
48170
|
-
|
|
48171
|
-
},
|
|
48172
|
-
sync: {
|
|
48173
|
-
default: false,
|
|
48174
|
-
type: 'boolean',
|
|
48175
|
-
'x-undocumented': 'Only used internally.',
|
|
48176
|
-
},
|
|
48177
|
-
},
|
|
48178
|
-
required: ['connected_account_id'],
|
|
48179
|
-
type: 'object',
|
|
48180
|
-
},
|
|
48157
|
+
parameters: [
|
|
48158
|
+
{
|
|
48159
|
+
in: 'query',
|
|
48160
|
+
name: 'connected_account_id',
|
|
48161
|
+
required: true,
|
|
48162
|
+
schema: {
|
|
48163
|
+
description: 'ID of the connected account that you want to delete.',
|
|
48164
|
+
format: 'uuid',
|
|
48165
|
+
type: 'string',
|
|
48181
48166
|
},
|
|
48182
48167
|
},
|
|
48183
|
-
|
|
48168
|
+
{
|
|
48169
|
+
in: 'query',
|
|
48170
|
+
name: 'sync',
|
|
48171
|
+
required: false,
|
|
48172
|
+
schema: {
|
|
48173
|
+
default: false,
|
|
48174
|
+
type: 'boolean',
|
|
48175
|
+
'x-undocumented': 'Only used internally.',
|
|
48176
|
+
},
|
|
48177
|
+
},
|
|
48178
|
+
],
|
|
48184
48179
|
responses: {
|
|
48185
48180
|
'200': {
|
|
48186
48181
|
content: {
|
|
@@ -57997,33 +57992,38 @@ const openapi = {
|
|
|
57997
57992
|
delete: {
|
|
57998
57993
|
description: 'Deletes a [noise threshold](https://docs.seam.co/capability-guides/noise-sensors/configure-noise-threshold-settings) from a [noise sensor](https://docs.seam.co/capability-guides/noise-sensors).',
|
|
57999
57994
|
operationId: 'noiseSensorsNoiseThresholdsDeleteDelete',
|
|
58000
|
-
|
|
58001
|
-
|
|
58002
|
-
'
|
|
58003
|
-
|
|
58004
|
-
|
|
58005
|
-
|
|
58006
|
-
|
|
58007
|
-
|
|
58008
|
-
|
|
58009
|
-
},
|
|
58010
|
-
noise_threshold_id: {
|
|
58011
|
-
description: 'ID of the noise threshold that you want to delete.',
|
|
58012
|
-
format: 'uuid',
|
|
58013
|
-
type: 'string',
|
|
58014
|
-
},
|
|
58015
|
-
sync: {
|
|
58016
|
-
default: false,
|
|
58017
|
-
type: 'boolean',
|
|
58018
|
-
'x-undocumented': 'Only used internally.',
|
|
58019
|
-
},
|
|
58020
|
-
},
|
|
58021
|
-
required: ['noise_threshold_id', 'device_id'],
|
|
58022
|
-
type: 'object',
|
|
58023
|
-
},
|
|
57995
|
+
parameters: [
|
|
57996
|
+
{
|
|
57997
|
+
in: 'query',
|
|
57998
|
+
name: 'noise_threshold_id',
|
|
57999
|
+
required: true,
|
|
58000
|
+
schema: {
|
|
58001
|
+
description: 'ID of the noise threshold that you want to delete.',
|
|
58002
|
+
format: 'uuid',
|
|
58003
|
+
type: 'string',
|
|
58024
58004
|
},
|
|
58025
58005
|
},
|
|
58026
|
-
|
|
58006
|
+
{
|
|
58007
|
+
in: 'query',
|
|
58008
|
+
name: 'device_id',
|
|
58009
|
+
required: true,
|
|
58010
|
+
schema: {
|
|
58011
|
+
description: 'ID of the device that contains the noise threshold that you want to delete.',
|
|
58012
|
+
format: 'uuid',
|
|
58013
|
+
type: 'string',
|
|
58014
|
+
},
|
|
58015
|
+
},
|
|
58016
|
+
{
|
|
58017
|
+
in: 'query',
|
|
58018
|
+
name: 'sync',
|
|
58019
|
+
required: false,
|
|
58020
|
+
schema: {
|
|
58021
|
+
default: false,
|
|
58022
|
+
type: 'boolean',
|
|
58023
|
+
'x-undocumented': 'Only used internally.',
|
|
58024
|
+
},
|
|
58025
|
+
},
|
|
58026
|
+
],
|
|
58027
58027
|
responses: {
|
|
58028
58028
|
'200': {
|
|
58029
58029
|
content: {
|
|
@@ -58670,22 +58670,17 @@ const openapi = {
|
|
|
58670
58670
|
delete: {
|
|
58671
58671
|
description: 'Deactivates a phone, which is useful, for example, if a user has lost their phone. For more information, see [App User Lost Phone Process](https://docs.seam.co/capability-guides/mobile-access/managing-phones-for-a-user-identity#app-user-lost-phone-process).',
|
|
58672
58672
|
operationId: 'phonesDeactivateDelete',
|
|
58673
|
-
|
|
58674
|
-
|
|
58675
|
-
'
|
|
58676
|
-
|
|
58677
|
-
|
|
58678
|
-
|
|
58679
|
-
|
|
58680
|
-
|
|
58681
|
-
},
|
|
58682
|
-
},
|
|
58683
|
-
required: ['device_id'],
|
|
58684
|
-
type: 'object',
|
|
58685
|
-
},
|
|
58673
|
+
parameters: [
|
|
58674
|
+
{
|
|
58675
|
+
in: 'query',
|
|
58676
|
+
name: 'device_id',
|
|
58677
|
+
required: true,
|
|
58678
|
+
schema: {
|
|
58679
|
+
description: 'Device ID of the phone that you want to deactivate.',
|
|
58680
|
+
type: 'string',
|
|
58686
58681
|
},
|
|
58687
58682
|
},
|
|
58688
|
-
|
|
58683
|
+
],
|
|
58689
58684
|
responses: {
|
|
58690
58685
|
'200': {
|
|
58691
58686
|
content: {
|
|
@@ -75050,23 +75045,18 @@ const openapi = {
|
|
|
75050
75045
|
delete: {
|
|
75051
75046
|
description: 'Deletes a space.',
|
|
75052
75047
|
operationId: 'spacesDeleteDelete',
|
|
75053
|
-
|
|
75054
|
-
|
|
75055
|
-
'
|
|
75056
|
-
|
|
75057
|
-
|
|
75058
|
-
|
|
75059
|
-
|
|
75060
|
-
|
|
75061
|
-
|
|
75062
|
-
},
|
|
75063
|
-
},
|
|
75064
|
-
required: ['space_id'],
|
|
75065
|
-
type: 'object',
|
|
75066
|
-
},
|
|
75048
|
+
parameters: [
|
|
75049
|
+
{
|
|
75050
|
+
in: 'query',
|
|
75051
|
+
name: 'space_id',
|
|
75052
|
+
required: true,
|
|
75053
|
+
schema: {
|
|
75054
|
+
description: 'ID of the space that you want to delete.',
|
|
75055
|
+
format: 'uuid',
|
|
75056
|
+
type: 'string',
|
|
75067
75057
|
},
|
|
75068
75058
|
},
|
|
75069
|
-
|
|
75059
|
+
],
|
|
75070
75060
|
responses: {
|
|
75071
75061
|
'200': {
|
|
75072
75062
|
content: {
|
|
@@ -76897,28 +76887,28 @@ const openapi = {
|
|
|
76897
76887
|
delete: {
|
|
76898
76888
|
description: 'Deletes a specified [climate preset](https://docs.seam.co/capability-guides/thermostats/creating-and-managing-climate-presets) for a specified [thermostat](https://docs.seam.co/capability-guides/thermostats).',
|
|
76899
76889
|
operationId: 'thermostatsDeleteClimatePresetDelete',
|
|
76900
|
-
|
|
76901
|
-
|
|
76902
|
-
'
|
|
76903
|
-
|
|
76904
|
-
|
|
76905
|
-
|
|
76906
|
-
|
|
76907
|
-
|
|
76908
|
-
|
|
76909
|
-
},
|
|
76910
|
-
device_id: {
|
|
76911
|
-
description: 'ID of the thermostat device for which you want to delete a climate preset.',
|
|
76912
|
-
format: 'uuid',
|
|
76913
|
-
type: 'string',
|
|
76914
|
-
},
|
|
76915
|
-
},
|
|
76916
|
-
required: ['device_id', 'climate_preset_key'],
|
|
76917
|
-
type: 'object',
|
|
76918
|
-
},
|
|
76890
|
+
parameters: [
|
|
76891
|
+
{
|
|
76892
|
+
in: 'query',
|
|
76893
|
+
name: 'device_id',
|
|
76894
|
+
required: true,
|
|
76895
|
+
schema: {
|
|
76896
|
+
description: 'ID of the thermostat device for which you want to delete a climate preset.',
|
|
76897
|
+
format: 'uuid',
|
|
76898
|
+
type: 'string',
|
|
76919
76899
|
},
|
|
76920
76900
|
},
|
|
76921
|
-
|
|
76901
|
+
{
|
|
76902
|
+
in: 'query',
|
|
76903
|
+
name: 'climate_preset_key',
|
|
76904
|
+
required: true,
|
|
76905
|
+
schema: {
|
|
76906
|
+
description: 'Climate preset key of the climate preset that you want to delete.',
|
|
76907
|
+
minLength: 1,
|
|
76908
|
+
type: 'string',
|
|
76909
|
+
},
|
|
76910
|
+
},
|
|
76911
|
+
],
|
|
76922
76912
|
responses: {
|
|
76923
76913
|
'200': {
|
|
76924
76914
|
content: {
|