@seamapi/types 1.662.0 → 1.664.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 +27 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +70 -0
- package/dist/index.cjs +27 -2
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/acs/acs-users/acs-user.d.ts +10 -0
- package/lib/seam/connect/models/acs/metadata/salto-space.d.ts +3 -0
- package/lib/seam/connect/models/acs/metadata/salto-space.js +2 -1
- package/lib/seam/connect/models/acs/metadata/salto-space.js.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +14 -0
- 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 +24 -0
- package/lib/seam/connect/openapi.js +24 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +22 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/metadata/salto-space.ts +2 -1
- package/src/lib/seam/connect/models/customer/customer-portal.ts +7 -0
- package/src/lib/seam/connect/openapi.ts +27 -0
- package/src/lib/seam/connect/route-types.ts +22 -0
|
@@ -15868,6 +15868,8 @@ export type Routes = {
|
|
|
15868
15868
|
connected_account_id: string;
|
|
15869
15869
|
/** Salto Space-specific metadata associated with the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
|
|
15870
15870
|
salto_space_metadata?: {
|
|
15871
|
+
/** User ID in the Salto Space access system. */
|
|
15872
|
+
user_id?: string | undefined;
|
|
15871
15873
|
/** Indicates whether AuditOpenings is enabled for the user in the Salto Space access system. */
|
|
15872
15874
|
audit_openings?: boolean | undefined;
|
|
15873
15875
|
} | undefined;
|
|
@@ -21556,6 +21558,8 @@ export type Routes = {
|
|
|
21556
21558
|
connected_account_id: string;
|
|
21557
21559
|
/** Salto Space-specific metadata associated with the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
|
|
21558
21560
|
salto_space_metadata?: {
|
|
21561
|
+
/** User ID in the Salto Space access system. */
|
|
21562
|
+
user_id?: string | undefined;
|
|
21559
21563
|
/** Indicates whether AuditOpenings is enabled for the user in the Salto Space access system. */
|
|
21560
21564
|
audit_openings?: boolean | undefined;
|
|
21561
21565
|
} | undefined;
|
|
@@ -21818,6 +21822,8 @@ export type Routes = {
|
|
|
21818
21822
|
connected_account_id: string;
|
|
21819
21823
|
/** Salto Space-specific metadata associated with the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
|
|
21820
21824
|
salto_space_metadata?: {
|
|
21825
|
+
/** User ID in the Salto Space access system. */
|
|
21826
|
+
user_id?: string | undefined;
|
|
21821
21827
|
/** Indicates whether AuditOpenings is enabled for the user in the Salto Space access system. */
|
|
21822
21828
|
audit_openings?: boolean | undefined;
|
|
21823
21829
|
} | undefined;
|
|
@@ -22068,6 +22074,8 @@ export type Routes = {
|
|
|
22068
22074
|
connected_account_id: string;
|
|
22069
22075
|
/** Salto Space-specific metadata associated with the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
|
|
22070
22076
|
salto_space_metadata?: {
|
|
22077
|
+
/** User ID in the Salto Space access system. */
|
|
22078
|
+
user_id?: string | undefined;
|
|
22071
22079
|
/** Indicates whether AuditOpenings is enabled for the user in the Salto Space access system. */
|
|
22072
22080
|
audit_openings?: boolean | undefined;
|
|
22073
22081
|
} | undefined;
|
|
@@ -22506,6 +22514,8 @@ export type Routes = {
|
|
|
22506
22514
|
connected_account_id: string;
|
|
22507
22515
|
/** Salto Space-specific metadata associated with the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
|
|
22508
22516
|
salto_space_metadata?: {
|
|
22517
|
+
/** User ID in the Salto Space access system. */
|
|
22518
|
+
user_id?: string | undefined;
|
|
22509
22519
|
/** Indicates whether AuditOpenings is enabled for the user in the Salto Space access system. */
|
|
22510
22520
|
audit_openings?: boolean | undefined;
|
|
22511
22521
|
} | undefined;
|
|
@@ -22750,6 +22760,8 @@ export type Routes = {
|
|
|
22750
22760
|
connected_account_id: string;
|
|
22751
22761
|
/** Salto Space-specific metadata associated with the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
|
|
22752
22762
|
salto_space_metadata?: {
|
|
22763
|
+
/** User ID in the Salto Space access system. */
|
|
22764
|
+
user_id?: string | undefined;
|
|
22753
22765
|
/** Indicates whether AuditOpenings is enabled for the user in the Salto Space access system. */
|
|
22754
22766
|
audit_openings?: boolean | undefined;
|
|
22755
22767
|
} | undefined;
|
|
@@ -26507,6 +26519,8 @@ export type Routes = {
|
|
|
26507
26519
|
exclude?: boolean;
|
|
26508
26520
|
/** Indicates whether the customer can customize the access automation rules for their properties. */
|
|
26509
26521
|
allow_access_automation_rule_customization?: boolean;
|
|
26522
|
+
/** Indicates whether the customer can customize the climate automation rules for their properties. */
|
|
26523
|
+
allow_climate_automation_rule_customization?: boolean;
|
|
26510
26524
|
/** Indicates whether the customer can customize the Instant Key profile for their properties. */
|
|
26511
26525
|
allow_instant_key_customization?: boolean;
|
|
26512
26526
|
};
|
|
@@ -54309,6 +54323,8 @@ export type Routes = {
|
|
|
54309
54323
|
exclude?: boolean;
|
|
54310
54324
|
/** Indicates whether the customer can customize the access automation rules for their properties. */
|
|
54311
54325
|
allow_access_automation_rule_customization?: boolean;
|
|
54326
|
+
/** Indicates whether the customer can customize the climate automation rules for their properties. */
|
|
54327
|
+
allow_climate_automation_rule_customization?: boolean;
|
|
54312
54328
|
/** Indicates whether the customer can customize the Instant Key profile for their properties. */
|
|
54313
54329
|
allow_instant_key_customization?: boolean;
|
|
54314
54330
|
};
|
|
@@ -76280,6 +76296,8 @@ export type Routes = {
|
|
|
76280
76296
|
connected_account_id: string;
|
|
76281
76297
|
/** Salto Space-specific metadata associated with the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
|
|
76282
76298
|
salto_space_metadata?: {
|
|
76299
|
+
/** User ID in the Salto Space access system. */
|
|
76300
|
+
user_id?: string | undefined;
|
|
76283
76301
|
/** Indicates whether AuditOpenings is enabled for the user in the Salto Space access system. */
|
|
76284
76302
|
audit_openings?: boolean | undefined;
|
|
76285
76303
|
} | undefined;
|
|
@@ -78562,6 +78580,8 @@ export type Routes = {
|
|
|
78562
78580
|
connected_account_id: string;
|
|
78563
78581
|
/** Salto Space-specific metadata associated with the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
|
|
78564
78582
|
salto_space_metadata?: {
|
|
78583
|
+
/** User ID in the Salto Space access system. */
|
|
78584
|
+
user_id?: string | undefined;
|
|
78565
78585
|
/** Indicates whether AuditOpenings is enabled for the user in the Salto Space access system. */
|
|
78566
78586
|
audit_openings?: boolean | undefined;
|
|
78567
78587
|
} | undefined;
|
|
@@ -80119,6 +80139,8 @@ export type Routes = {
|
|
|
80119
80139
|
connected_account_id: string;
|
|
80120
80140
|
/** Salto Space-specific metadata associated with the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
|
|
80121
80141
|
salto_space_metadata?: {
|
|
80142
|
+
/** User ID in the Salto Space access system. */
|
|
80143
|
+
user_id?: string | undefined;
|
|
80122
80144
|
/** Indicates whether AuditOpenings is enabled for the user in the Salto Space access system. */
|
|
80123
80145
|
audit_openings?: boolean | undefined;
|
|
80124
80146
|
} | undefined;
|
package/package.json
CHANGED
|
@@ -35,13 +35,14 @@ export type AcsEntranceSaltoSpaceMetadata = z.infer<
|
|
|
35
35
|
|
|
36
36
|
export const acs_user_salto_space_metadata = z
|
|
37
37
|
.object({
|
|
38
|
+
user_id: z.string().describe('User ID in the Salto Space access system.'),
|
|
38
39
|
audit_openings: z
|
|
39
40
|
.boolean()
|
|
40
|
-
.optional()
|
|
41
41
|
.describe(
|
|
42
42
|
'Indicates whether AuditOpenings is enabled for the user in the Salto Space access system.',
|
|
43
43
|
),
|
|
44
44
|
})
|
|
45
|
+
.partial()
|
|
45
46
|
.describe(
|
|
46
47
|
'Salto Space-specific metadata associated with the access system user.',
|
|
47
48
|
)
|
|
@@ -50,6 +50,12 @@ const base_configure_feature = base_feature.extend({
|
|
|
50
50
|
.describe(
|
|
51
51
|
'Indicates whether the customer can customize the access automation rules for their properties.',
|
|
52
52
|
),
|
|
53
|
+
allow_climate_automation_rule_customization: z
|
|
54
|
+
.boolean()
|
|
55
|
+
.default(false)
|
|
56
|
+
.describe(
|
|
57
|
+
'Indicates whether the customer can customize the climate automation rules for their properties.',
|
|
58
|
+
),
|
|
53
59
|
allow_instant_key_customization: z
|
|
54
60
|
.boolean()
|
|
55
61
|
.default(false)
|
|
@@ -121,6 +127,7 @@ export const portal_configuration = portal_configuration_base
|
|
|
121
127
|
exclude: false,
|
|
122
128
|
allow_instant_key_customization: false, // default
|
|
123
129
|
allow_access_automation_rule_customization: false, // default
|
|
130
|
+
allow_climate_automation_rule_customization: false, // default
|
|
124
131
|
},
|
|
125
132
|
},
|
|
126
133
|
is_embedded: false,
|
|
@@ -4167,6 +4167,10 @@ export default {
|
|
|
4167
4167
|
'Indicates whether AuditOpenings is enabled for the user in the Salto Space access system.',
|
|
4168
4168
|
type: 'boolean',
|
|
4169
4169
|
},
|
|
4170
|
+
user_id: {
|
|
4171
|
+
description: 'User ID in the Salto Space access system.',
|
|
4172
|
+
type: 'string',
|
|
4173
|
+
},
|
|
4170
4174
|
},
|
|
4171
4175
|
type: 'object',
|
|
4172
4176
|
},
|
|
@@ -24327,6 +24331,10 @@ export default {
|
|
|
24327
24331
|
'Indicates whether AuditOpenings is enabled for the user in the Salto Space access system.',
|
|
24328
24332
|
type: 'boolean',
|
|
24329
24333
|
},
|
|
24334
|
+
user_id: {
|
|
24335
|
+
description: 'User ID in the Salto Space access system.',
|
|
24336
|
+
type: 'string',
|
|
24337
|
+
},
|
|
24330
24338
|
},
|
|
24331
24339
|
type: 'object',
|
|
24332
24340
|
},
|
|
@@ -41229,6 +41237,7 @@ export default {
|
|
|
41229
41237
|
features: {
|
|
41230
41238
|
configure: {
|
|
41231
41239
|
allow_access_automation_rule_customization: false,
|
|
41240
|
+
allow_climate_automation_rule_customization: false,
|
|
41232
41241
|
allow_instant_key_customization: false,
|
|
41233
41242
|
exclude: false,
|
|
41234
41243
|
},
|
|
@@ -41265,6 +41274,12 @@ export default {
|
|
|
41265
41274
|
'Indicates whether the customer can customize the access automation rules for their properties.',
|
|
41266
41275
|
type: 'boolean',
|
|
41267
41276
|
},
|
|
41277
|
+
allow_climate_automation_rule_customization: {
|
|
41278
|
+
default: false,
|
|
41279
|
+
description:
|
|
41280
|
+
'Indicates whether the customer can customize the climate automation rules for their properties.',
|
|
41281
|
+
type: 'boolean',
|
|
41282
|
+
},
|
|
41268
41283
|
allow_instant_key_customization: {
|
|
41269
41284
|
default: false,
|
|
41270
41285
|
description:
|
|
@@ -54121,6 +54136,12 @@ export default {
|
|
|
54121
54136
|
'Indicates whether the customer can customize the access automation rules for their properties.',
|
|
54122
54137
|
type: 'boolean',
|
|
54123
54138
|
},
|
|
54139
|
+
allow_climate_automation_rule_customization: {
|
|
54140
|
+
default: false,
|
|
54141
|
+
description:
|
|
54142
|
+
'Indicates whether the customer can customize the climate automation rules for their properties.',
|
|
54143
|
+
type: 'boolean',
|
|
54144
|
+
},
|
|
54124
54145
|
allow_instant_key_customization: {
|
|
54125
54146
|
default: false,
|
|
54126
54147
|
description:
|
|
@@ -54438,6 +54459,12 @@ export default {
|
|
|
54438
54459
|
'Indicates whether the customer can customize the access automation rules for their properties.',
|
|
54439
54460
|
type: 'boolean',
|
|
54440
54461
|
},
|
|
54462
|
+
allow_climate_automation_rule_customization: {
|
|
54463
|
+
default: false,
|
|
54464
|
+
description:
|
|
54465
|
+
'Indicates whether the customer can customize the climate automation rules for their properties.',
|
|
54466
|
+
type: 'boolean',
|
|
54467
|
+
},
|
|
54441
54468
|
allow_instant_key_customization: {
|
|
54442
54469
|
default: false,
|
|
54443
54470
|
description:
|
|
@@ -18331,6 +18331,8 @@ export type Routes = {
|
|
|
18331
18331
|
/** Salto Space-specific metadata associated with the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
|
|
18332
18332
|
salto_space_metadata?:
|
|
18333
18333
|
| {
|
|
18334
|
+
/** User ID in the Salto Space access system. */
|
|
18335
|
+
user_id?: string | undefined
|
|
18334
18336
|
/** Indicates whether AuditOpenings is enabled for the user in the Salto Space access system. */
|
|
18335
18337
|
audit_openings?: boolean | undefined
|
|
18336
18338
|
}
|
|
@@ -25012,6 +25014,8 @@ export type Routes = {
|
|
|
25012
25014
|
/** Salto Space-specific metadata associated with the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
|
|
25013
25015
|
salto_space_metadata?:
|
|
25014
25016
|
| {
|
|
25017
|
+
/** User ID in the Salto Space access system. */
|
|
25018
|
+
user_id?: string | undefined
|
|
25015
25019
|
/** Indicates whether AuditOpenings is enabled for the user in the Salto Space access system. */
|
|
25016
25020
|
audit_openings?: boolean | undefined
|
|
25017
25021
|
}
|
|
@@ -25310,6 +25314,8 @@ export type Routes = {
|
|
|
25310
25314
|
/** Salto Space-specific metadata associated with the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
|
|
25311
25315
|
salto_space_metadata?:
|
|
25312
25316
|
| {
|
|
25317
|
+
/** User ID in the Salto Space access system. */
|
|
25318
|
+
user_id?: string | undefined
|
|
25313
25319
|
/** Indicates whether AuditOpenings is enabled for the user in the Salto Space access system. */
|
|
25314
25320
|
audit_openings?: boolean | undefined
|
|
25315
25321
|
}
|
|
@@ -25596,6 +25602,8 @@ export type Routes = {
|
|
|
25596
25602
|
/** Salto Space-specific metadata associated with the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
|
|
25597
25603
|
salto_space_metadata?:
|
|
25598
25604
|
| {
|
|
25605
|
+
/** User ID in the Salto Space access system. */
|
|
25606
|
+
user_id?: string | undefined
|
|
25599
25607
|
/** Indicates whether AuditOpenings is enabled for the user in the Salto Space access system. */
|
|
25600
25608
|
audit_openings?: boolean | undefined
|
|
25601
25609
|
}
|
|
@@ -26097,6 +26105,8 @@ export type Routes = {
|
|
|
26097
26105
|
/** Salto Space-specific metadata associated with the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
|
|
26098
26106
|
salto_space_metadata?:
|
|
26099
26107
|
| {
|
|
26108
|
+
/** User ID in the Salto Space access system. */
|
|
26109
|
+
user_id?: string | undefined
|
|
26100
26110
|
/** Indicates whether AuditOpenings is enabled for the user in the Salto Space access system. */
|
|
26101
26111
|
audit_openings?: boolean | undefined
|
|
26102
26112
|
}
|
|
@@ -26377,6 +26387,8 @@ export type Routes = {
|
|
|
26377
26387
|
/** Salto Space-specific metadata associated with the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
|
|
26378
26388
|
salto_space_metadata?:
|
|
26379
26389
|
| {
|
|
26390
|
+
/** User ID in the Salto Space access system. */
|
|
26391
|
+
user_id?: string | undefined
|
|
26380
26392
|
/** Indicates whether AuditOpenings is enabled for the user in the Salto Space access system. */
|
|
26381
26393
|
audit_openings?: boolean | undefined
|
|
26382
26394
|
}
|
|
@@ -30662,6 +30674,8 @@ export type Routes = {
|
|
|
30662
30674
|
exclude?: boolean
|
|
30663
30675
|
/** Indicates whether the customer can customize the access automation rules for their properties. */
|
|
30664
30676
|
allow_access_automation_rule_customization?: boolean
|
|
30677
|
+
/** Indicates whether the customer can customize the climate automation rules for their properties. */
|
|
30678
|
+
allow_climate_automation_rule_customization?: boolean
|
|
30665
30679
|
/** Indicates whether the customer can customize the Instant Key profile for their properties. */
|
|
30666
30680
|
allow_instant_key_customization?: boolean
|
|
30667
30681
|
}
|
|
@@ -64682,6 +64696,8 @@ export type Routes = {
|
|
|
64682
64696
|
exclude?: boolean
|
|
64683
64697
|
/** Indicates whether the customer can customize the access automation rules for their properties. */
|
|
64684
64698
|
allow_access_automation_rule_customization?: boolean
|
|
64699
|
+
/** Indicates whether the customer can customize the climate automation rules for their properties. */
|
|
64700
|
+
allow_climate_automation_rule_customization?: boolean
|
|
64685
64701
|
/** Indicates whether the customer can customize the Instant Key profile for their properties. */
|
|
64686
64702
|
allow_instant_key_customization?: boolean
|
|
64687
64703
|
}
|
|
@@ -90723,6 +90739,8 @@ export type Routes = {
|
|
|
90723
90739
|
/** Salto Space-specific metadata associated with the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
|
|
90724
90740
|
salto_space_metadata?:
|
|
90725
90741
|
| {
|
|
90742
|
+
/** User ID in the Salto Space access system. */
|
|
90743
|
+
user_id?: string | undefined
|
|
90726
90744
|
/** Indicates whether AuditOpenings is enabled for the user in the Salto Space access system. */
|
|
90727
90745
|
audit_openings?: boolean | undefined
|
|
90728
90746
|
}
|
|
@@ -93496,6 +93514,8 @@ export type Routes = {
|
|
|
93496
93514
|
/** Salto Space-specific metadata associated with the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
|
|
93497
93515
|
salto_space_metadata?:
|
|
93498
93516
|
| {
|
|
93517
|
+
/** User ID in the Salto Space access system. */
|
|
93518
|
+
user_id?: string | undefined
|
|
93499
93519
|
/** Indicates whether AuditOpenings is enabled for the user in the Salto Space access system. */
|
|
93500
93520
|
audit_openings?: boolean | undefined
|
|
93501
93521
|
}
|
|
@@ -95329,6 +95349,8 @@ export type Routes = {
|
|
|
95329
95349
|
/** Salto Space-specific metadata associated with the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
|
|
95330
95350
|
salto_space_metadata?:
|
|
95331
95351
|
| {
|
|
95352
|
+
/** User ID in the Salto Space access system. */
|
|
95353
|
+
user_id?: string | undefined
|
|
95332
95354
|
/** Indicates whether AuditOpenings is enabled for the user in the Salto Space access system. */
|
|
95333
95355
|
audit_openings?: boolean | undefined
|
|
95334
95356
|
}
|