@seamapi/types 1.646.0 → 1.648.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/connect.cjs +26 -5
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +77 -2
- package/dist/index.cjs +26 -5
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/customer/customer-portal.d.ts +14 -0
- package/lib/seam/connect/models/customer/customer-portal.js +5 -0
- package/lib/seam/connect/models/customer/customer-portal.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +72 -1
- package/lib/seam/connect/openapi.js +22 -1
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +5 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/models/customer/customer-portal.ts +7 -0
- package/src/lib/seam/connect/openapi.ts +25 -1
- package/src/lib/seam/connect/route-types.ts +5 -1
|
@@ -25587,7 +25587,7 @@ export type Routes = {
|
|
|
25587
25587
|
[x: string]: string | boolean | null;
|
|
25588
25588
|
} | undefined;
|
|
25589
25589
|
/** Indicates whether newly-added devices should appear as [managed devices](https://docs.seam.co/latest/core-concepts/devices/managed-and-unmanaged-devices). See also: [Customize the Behavior Settings of Your Connect Webviews](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-behavior-settings-of-your-connect-webviews). */
|
|
25590
|
-
automatically_manage_new_devices?: boolean;
|
|
25590
|
+
automatically_manage_new_devices?: boolean | undefined;
|
|
25591
25591
|
/** Indicates whether Seam should finish syncing all devices in a newly-connected account before completing the associated Connect Webview. See also: [Customize the Behavior Settings of Your Connect Webviews](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-behavior-settings-of-your-connect-webviews). */
|
|
25592
25592
|
wait_for_device_creation?: boolean;
|
|
25593
25593
|
/** List of accepted device capabilities that restrict the types of devices that can be connected through the Connect Webview. If not provided, defaults will be determined based on the accepted providers. */
|
|
@@ -26354,6 +26354,8 @@ export type Routes = {
|
|
|
26354
26354
|
exclude?: boolean;
|
|
26355
26355
|
/** The ID of the customization profile to use for the portal. */
|
|
26356
26356
|
customization_profile_id?: string | undefined;
|
|
26357
|
+
/** Indicates whether the customer can automatically manage new devices for their properties. */
|
|
26358
|
+
allow_automatic_management_of_new_devices?: boolean;
|
|
26357
26359
|
/** Indicates whether the customer can customize the access automation rules for their properties. */
|
|
26358
26360
|
allow_access_automation_rule_customization?: boolean;
|
|
26359
26361
|
/** Indicates whether the customer can customize the Instant Key profile for their properties. */
|
|
@@ -54077,6 +54079,8 @@ export type Routes = {
|
|
|
54077
54079
|
exclude?: boolean;
|
|
54078
54080
|
/** The ID of the customization profile to use for the portal. */
|
|
54079
54081
|
customization_profile_id?: string | undefined;
|
|
54082
|
+
/** Indicates whether the customer can automatically manage new devices for their properties. */
|
|
54083
|
+
allow_automatic_management_of_new_devices?: boolean;
|
|
54080
54084
|
/** Indicates whether the customer can customize the access automation rules for their properties. */
|
|
54081
54085
|
allow_access_automation_rule_customization?: boolean;
|
|
54082
54086
|
/** Indicates whether the customer can customize the Instant Key profile for their properties. */
|
package/package.json
CHANGED
|
@@ -49,6 +49,12 @@ const base_configure_feature = base_feature.extend({
|
|
|
49
49
|
.uuid()
|
|
50
50
|
.optional()
|
|
51
51
|
.describe('The ID of the customization profile to use for the portal.'),
|
|
52
|
+
allow_automatic_management_of_new_devices: z
|
|
53
|
+
.boolean()
|
|
54
|
+
.default(false)
|
|
55
|
+
.describe(
|
|
56
|
+
'Indicates whether the customer can automatically manage new devices for their properties.',
|
|
57
|
+
),
|
|
52
58
|
allow_access_automation_rule_customization: z
|
|
53
59
|
.boolean()
|
|
54
60
|
.default(false)
|
|
@@ -117,6 +123,7 @@ export const portal_configuration = portal_configuration_base
|
|
|
117
123
|
exclude: false,
|
|
118
124
|
allow_instant_key_customization: false, // default
|
|
119
125
|
allow_access_automation_rule_customization: false, // default
|
|
126
|
+
allow_automatic_management_of_new_devices: false, // default
|
|
120
127
|
},
|
|
121
128
|
},
|
|
122
129
|
is_embedded: false,
|
|
@@ -39833,7 +39833,6 @@ export default {
|
|
|
39833
39833
|
type: 'array',
|
|
39834
39834
|
},
|
|
39835
39835
|
automatically_manage_new_devices: {
|
|
39836
|
-
default: true,
|
|
39837
39836
|
description:
|
|
39838
39837
|
'Indicates whether newly-added devices should appear as [managed devices](https://docs.seam.co/latest/core-concepts/devices/managed-and-unmanaged-devices). See also: [Customize the Behavior Settings of Your Connect Webviews](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-behavior-settings-of-your-connect-webviews).',
|
|
39839
39838
|
type: 'boolean',
|
|
@@ -41063,6 +41062,7 @@ export default {
|
|
|
41063
41062
|
features: {
|
|
41064
41063
|
configure: {
|
|
41065
41064
|
allow_access_automation_rule_customization: false,
|
|
41065
|
+
allow_automatic_management_of_new_devices: false,
|
|
41066
41066
|
allow_instant_key_customization: false,
|
|
41067
41067
|
exclude: false,
|
|
41068
41068
|
},
|
|
@@ -41093,6 +41093,12 @@ export default {
|
|
|
41093
41093
|
'Indicates whether the customer can customize the access automation rules for their properties.',
|
|
41094
41094
|
type: 'boolean',
|
|
41095
41095
|
},
|
|
41096
|
+
allow_automatic_management_of_new_devices: {
|
|
41097
|
+
default: false,
|
|
41098
|
+
description:
|
|
41099
|
+
'Indicates whether the customer can automatically manage new devices for their properties.',
|
|
41100
|
+
type: 'boolean',
|
|
41101
|
+
},
|
|
41096
41102
|
allow_instant_key_customization: {
|
|
41097
41103
|
default: false,
|
|
41098
41104
|
description:
|
|
@@ -45388,6 +45394,7 @@ export default {
|
|
|
45388
45394
|
{ api_key: [] },
|
|
45389
45395
|
{ pat_with_workspace: [] },
|
|
45390
45396
|
{ console_session_with_workspace: [] },
|
|
45397
|
+
{ client_session_with_customer: [] },
|
|
45391
45398
|
],
|
|
45392
45399
|
summary: '/devices/unmanaged/list',
|
|
45393
45400
|
tags: ['/devices'],
|
|
@@ -45764,6 +45771,7 @@ export default {
|
|
|
45764
45771
|
{ api_key: [] },
|
|
45765
45772
|
{ pat_with_workspace: [] },
|
|
45766
45773
|
{ console_session_with_workspace: [] },
|
|
45774
|
+
{ client_session_with_customer: [] },
|
|
45767
45775
|
],
|
|
45768
45776
|
summary: '/devices/unmanaged/list',
|
|
45769
45777
|
tags: ['/devices'],
|
|
@@ -53923,6 +53931,12 @@ export default {
|
|
|
53923
53931
|
'Indicates whether the customer can customize the access automation rules for their properties.',
|
|
53924
53932
|
type: 'boolean',
|
|
53925
53933
|
},
|
|
53934
|
+
allow_automatic_management_of_new_devices: {
|
|
53935
|
+
default: false,
|
|
53936
|
+
description:
|
|
53937
|
+
'Indicates whether the customer can automatically manage new devices for their properties.',
|
|
53938
|
+
type: 'boolean',
|
|
53939
|
+
},
|
|
53926
53940
|
allow_instant_key_customization: {
|
|
53927
53941
|
default: false,
|
|
53928
53942
|
description:
|
|
@@ -54235,6 +54249,12 @@ export default {
|
|
|
54235
54249
|
'Indicates whether the customer can customize the access automation rules for their properties.',
|
|
54236
54250
|
type: 'boolean',
|
|
54237
54251
|
},
|
|
54252
|
+
allow_automatic_management_of_new_devices: {
|
|
54253
|
+
default: false,
|
|
54254
|
+
description:
|
|
54255
|
+
'Indicates whether the customer can automatically manage new devices for their properties.',
|
|
54256
|
+
type: 'boolean',
|
|
54257
|
+
},
|
|
54238
54258
|
allow_instant_key_customization: {
|
|
54239
54259
|
default: false,
|
|
54240
54260
|
description:
|
|
@@ -58166,6 +58186,7 @@ export default {
|
|
|
58166
58186
|
{ client_session: [] },
|
|
58167
58187
|
{ pat_with_workspace: [] },
|
|
58168
58188
|
{ console_session_with_workspace: [] },
|
|
58189
|
+
{ client_session_with_customer: [] },
|
|
58169
58190
|
{ api_key: [] },
|
|
58170
58191
|
],
|
|
58171
58192
|
summary: '/thermostats/create_climate_preset',
|
|
@@ -59618,6 +59639,7 @@ export default {
|
|
|
59618
59639
|
{ client_session: [] },
|
|
59619
59640
|
{ pat_with_workspace: [] },
|
|
59620
59641
|
{ console_session_with_workspace: [] },
|
|
59642
|
+
{ client_session_with_customer: [] },
|
|
59621
59643
|
{ api_key: [] },
|
|
59622
59644
|
],
|
|
59623
59645
|
summary: '/thermostats/schedules/create',
|
|
@@ -59896,6 +59918,7 @@ export default {
|
|
|
59896
59918
|
{ client_session: [] },
|
|
59897
59919
|
{ pat_with_workspace: [] },
|
|
59898
59920
|
{ console_session_with_workspace: [] },
|
|
59921
|
+
{ client_session_with_customer: [] },
|
|
59899
59922
|
],
|
|
59900
59923
|
summary: '/thermostats/schedules/list',
|
|
59901
59924
|
tags: ['/thermostats'],
|
|
@@ -59961,6 +59984,7 @@ export default {
|
|
|
59961
59984
|
{ client_session: [] },
|
|
59962
59985
|
{ pat_with_workspace: [] },
|
|
59963
59986
|
{ console_session_with_workspace: [] },
|
|
59987
|
+
{ client_session_with_customer: [] },
|
|
59964
59988
|
],
|
|
59965
59989
|
summary: '/thermostats/schedules/list',
|
|
59966
59990
|
tags: ['/thermostats'],
|
|
@@ -29655,7 +29655,7 @@ export type Routes = {
|
|
|
29655
29655
|
}
|
|
29656
29656
|
| undefined
|
|
29657
29657
|
/** Indicates whether newly-added devices should appear as [managed devices](https://docs.seam.co/latest/core-concepts/devices/managed-and-unmanaged-devices). See also: [Customize the Behavior Settings of Your Connect Webviews](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-behavior-settings-of-your-connect-webviews). */
|
|
29658
|
-
automatically_manage_new_devices?: boolean
|
|
29658
|
+
automatically_manage_new_devices?: boolean | undefined
|
|
29659
29659
|
/** Indicates whether Seam should finish syncing all devices in a newly-connected account before completing the associated Connect Webview. See also: [Customize the Behavior Settings of Your Connect Webviews](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-behavior-settings-of-your-connect-webviews). */
|
|
29660
29660
|
wait_for_device_creation?: boolean
|
|
29661
29661
|
/** List of accepted device capabilities that restrict the types of devices that can be connected through the Connect Webview. If not provided, defaults will be determined based on the accepted providers. */
|
|
@@ -30497,6 +30497,8 @@ export type Routes = {
|
|
|
30497
30497
|
exclude?: boolean
|
|
30498
30498
|
/** The ID of the customization profile to use for the portal. */
|
|
30499
30499
|
customization_profile_id?: string | undefined
|
|
30500
|
+
/** Indicates whether the customer can automatically manage new devices for their properties. */
|
|
30501
|
+
allow_automatic_management_of_new_devices?: boolean
|
|
30500
30502
|
/** Indicates whether the customer can customize the access automation rules for their properties. */
|
|
30501
30503
|
allow_access_automation_rule_customization?: boolean
|
|
30502
30504
|
/** Indicates whether the customer can customize the Instant Key profile for their properties. */
|
|
@@ -64438,6 +64440,8 @@ export type Routes = {
|
|
|
64438
64440
|
exclude?: boolean
|
|
64439
64441
|
/** The ID of the customization profile to use for the portal. */
|
|
64440
64442
|
customization_profile_id?: string | undefined
|
|
64443
|
+
/** Indicates whether the customer can automatically manage new devices for their properties. */
|
|
64444
|
+
allow_automatic_management_of_new_devices?: boolean
|
|
64441
64445
|
/** Indicates whether the customer can customize the access automation rules for their properties. */
|
|
64442
64446
|
allow_access_automation_rule_customization?: boolean
|
|
64443
64447
|
/** Indicates whether the customer can customize the Instant Key profile for their properties. */
|