@seamapi/types 1.265.0 → 1.267.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 +22 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +27 -0
- package/lib/seam/connect/models/acs/acs-system.d.ts +3 -0
- package/lib/seam/connect/models/acs/acs-system.js +11 -0
- package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +14 -0
- package/lib/seam/connect/openapi.js +12 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +10 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-system.ts +13 -0
- package/src/lib/seam/connect/openapi.ts +15 -0
- package/src/lib/seam/connect/route-types.ts +10 -0
|
@@ -5510,6 +5510,8 @@ export interface Routes {
|
|
|
5510
5510
|
jsonResponse: {
|
|
5511
5511
|
/** Represents an [access control system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
5512
5512
|
acs_system: {
|
|
5513
|
+
/** ID of the default credential manager acs_system for this access control system. */
|
|
5514
|
+
default_credential_manager_acs_system_id?: (string | null) | undefined;
|
|
5513
5515
|
/** ID of the `acs_system`. */
|
|
5514
5516
|
acs_system_id: string;
|
|
5515
5517
|
/** Brand-specific terminology for the `acs_system` type. */
|
|
@@ -5613,6 +5615,8 @@ export interface Routes {
|
|
|
5613
5615
|
formData: {};
|
|
5614
5616
|
jsonResponse: {
|
|
5615
5617
|
acs_systems: Array<{
|
|
5618
|
+
/** ID of the default credential manager acs_system for this access control system. */
|
|
5619
|
+
default_credential_manager_acs_system_id?: (string | null) | undefined;
|
|
5616
5620
|
/** ID of the `acs_system`. */
|
|
5617
5621
|
acs_system_id: string;
|
|
5618
5622
|
/** Brand-specific terminology for the `acs_system` type. */
|
|
@@ -5716,6 +5720,8 @@ export interface Routes {
|
|
|
5716
5720
|
formData: {};
|
|
5717
5721
|
jsonResponse: {
|
|
5718
5722
|
acs_systems: Array<{
|
|
5723
|
+
/** ID of the default credential manager acs_system for this access control system. */
|
|
5724
|
+
default_credential_manager_acs_system_id?: (string | null) | undefined;
|
|
5719
5725
|
/** ID of the `acs_system`. */
|
|
5720
5726
|
acs_system_id: string;
|
|
5721
5727
|
/** Brand-specific terminology for the `acs_system` type. */
|
|
@@ -9321,6 +9327,7 @@ export interface Routes {
|
|
|
9321
9327
|
heating_set_point_celsius?: number | undefined;
|
|
9322
9328
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
9323
9329
|
heating_set_point_fahrenheit?: number | undefined;
|
|
9330
|
+
method?: string | undefined;
|
|
9324
9331
|
} | undefined;
|
|
9325
9332
|
message?: string | undefined;
|
|
9326
9333
|
};
|
|
@@ -9368,6 +9375,7 @@ export interface Routes {
|
|
|
9368
9375
|
heating_set_point_celsius?: number | undefined;
|
|
9369
9376
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
9370
9377
|
heating_set_point_fahrenheit?: number | undefined;
|
|
9378
|
+
method?: string | undefined;
|
|
9371
9379
|
}>;
|
|
9372
9380
|
};
|
|
9373
9381
|
};
|
|
@@ -21170,6 +21178,8 @@ export interface Routes {
|
|
|
21170
21178
|
formData: {};
|
|
21171
21179
|
jsonResponse: {
|
|
21172
21180
|
acs_systems: Array<{
|
|
21181
|
+
/** ID of the default credential manager acs_system for this access control system. */
|
|
21182
|
+
default_credential_manager_acs_system_id?: (string | null) | undefined;
|
|
21173
21183
|
/** ID of the `acs_system`. */
|
|
21174
21184
|
acs_system_id: string;
|
|
21175
21185
|
/** Brand-specific terminology for the `acs_system` type. */
|
package/package.json
CHANGED
|
@@ -156,6 +156,19 @@ export type AcsSystemWarningMap = z.infer<typeof acs_system_warning_map>
|
|
|
156
156
|
|
|
157
157
|
export const acs_system = z
|
|
158
158
|
.object({
|
|
159
|
+
default_credential_manager_acs_system_id: z
|
|
160
|
+
.string()
|
|
161
|
+
.uuid()
|
|
162
|
+
.nullable()
|
|
163
|
+
.optional()
|
|
164
|
+
.describe(
|
|
165
|
+
`
|
|
166
|
+
---
|
|
167
|
+
draft: Needs review
|
|
168
|
+
---
|
|
169
|
+
ID of the default credential manager acs_system for this access control system.
|
|
170
|
+
`,
|
|
171
|
+
),
|
|
159
172
|
acs_system_id: z.string().uuid().describe('ID of the `acs_system`.'),
|
|
160
173
|
external_type: acs_system_external_type
|
|
161
174
|
.describe('Brand-specific terminology for the `acs_system` type.')
|
|
@@ -529,6 +529,14 @@ export default {
|
|
|
529
529
|
format: 'date-time',
|
|
530
530
|
type: 'string',
|
|
531
531
|
},
|
|
532
|
+
default_credential_manager_acs_system_id: {
|
|
533
|
+
description:
|
|
534
|
+
'ID of the default credential manager acs_system for this access control system.',
|
|
535
|
+
format: 'uuid',
|
|
536
|
+
nullable: true,
|
|
537
|
+
type: 'string',
|
|
538
|
+
'x-draft': 'Needs review',
|
|
539
|
+
},
|
|
532
540
|
errors: {
|
|
533
541
|
description: 'Errors associated with the `acs_system`.',
|
|
534
542
|
items: {
|
|
@@ -4284,6 +4292,7 @@ export default {
|
|
|
4284
4292
|
heating_set_point_fahrenheit: { format: 'float', type: 'number' },
|
|
4285
4293
|
hvac_mode_setting: { type: 'string' },
|
|
4286
4294
|
is_fallback_climate_preset: { type: 'boolean' },
|
|
4295
|
+
method: { type: 'string' },
|
|
4287
4296
|
occurred_at: { format: 'date-time', type: 'string' },
|
|
4288
4297
|
thermostat_schedule_id: {
|
|
4289
4298
|
format: 'uuid',
|
|
@@ -6921,10 +6930,13 @@ export default {
|
|
|
6921
6930
|
],
|
|
6922
6931
|
summary: '/acs/credential_pools/list',
|
|
6923
6932
|
tags: ['/acs'],
|
|
6933
|
+
'x-deprecated':
|
|
6934
|
+
'Use `/user_identities/enrollment_automations/list` instead.',
|
|
6924
6935
|
'x-fern-sdk-group-name': ['acs', 'credential_pools'],
|
|
6925
6936
|
'x-fern-sdk-method-name': 'list',
|
|
6926
6937
|
'x-fern-sdk-return-value': 'acs_credential_pools',
|
|
6927
6938
|
'x-response-key': 'acs_credential_pools',
|
|
6939
|
+
'x-undocumented': 'Replaced by enrollment automations.',
|
|
6928
6940
|
},
|
|
6929
6941
|
},
|
|
6930
6942
|
'/acs/credential_provisioning_automations/launch': {
|
|
@@ -6984,10 +6996,13 @@ export default {
|
|
|
6984
6996
|
],
|
|
6985
6997
|
summary: '/acs/credential_provisioning_automations/launch',
|
|
6986
6998
|
tags: ['/acs'],
|
|
6999
|
+
'x-deprecated':
|
|
7000
|
+
'Use `/user_identities/enrollment_automations/launch` instead.',
|
|
6987
7001
|
'x-fern-sdk-group-name': ['acs', 'credential_provisioning_automations'],
|
|
6988
7002
|
'x-fern-sdk-method-name': 'launch',
|
|
6989
7003
|
'x-fern-sdk-return-value': 'acs_credential_provisioning_automation',
|
|
6990
7004
|
'x-response-key': 'acs_credential_provisioning_automation',
|
|
7005
|
+
'x-undocumented': 'Replaced by enrollment automations.',
|
|
6991
7006
|
},
|
|
6992
7007
|
},
|
|
6993
7008
|
'/acs/credentials/assign': {
|
|
@@ -6463,6 +6463,8 @@ export interface Routes {
|
|
|
6463
6463
|
jsonResponse: {
|
|
6464
6464
|
/** Represents an [access control system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
6465
6465
|
acs_system: {
|
|
6466
|
+
/** ID of the default credential manager acs_system for this access control system. */
|
|
6467
|
+
default_credential_manager_acs_system_id?: (string | null) | undefined
|
|
6466
6468
|
/** ID of the `acs_system`. */
|
|
6467
6469
|
acs_system_id: string
|
|
6468
6470
|
/** Brand-specific terminology for the `acs_system` type. */
|
|
@@ -6596,6 +6598,8 @@ export interface Routes {
|
|
|
6596
6598
|
formData: {}
|
|
6597
6599
|
jsonResponse: {
|
|
6598
6600
|
acs_systems: Array<{
|
|
6601
|
+
/** ID of the default credential manager acs_system for this access control system. */
|
|
6602
|
+
default_credential_manager_acs_system_id?: (string | null) | undefined
|
|
6599
6603
|
/** ID of the `acs_system`. */
|
|
6600
6604
|
acs_system_id: string
|
|
6601
6605
|
/** Brand-specific terminology for the `acs_system` type. */
|
|
@@ -6729,6 +6733,8 @@ export interface Routes {
|
|
|
6729
6733
|
formData: {}
|
|
6730
6734
|
jsonResponse: {
|
|
6731
6735
|
acs_systems: Array<{
|
|
6736
|
+
/** ID of the default credential manager acs_system for this access control system. */
|
|
6737
|
+
default_credential_manager_acs_system_id?: (string | null) | undefined
|
|
6732
6738
|
/** ID of the `acs_system`. */
|
|
6733
6739
|
acs_system_id: string
|
|
6734
6740
|
/** Brand-specific terminology for the `acs_system` type. */
|
|
@@ -11517,6 +11523,7 @@ export interface Routes {
|
|
|
11517
11523
|
heating_set_point_celsius?: number | undefined
|
|
11518
11524
|
cooling_set_point_fahrenheit?: number | undefined
|
|
11519
11525
|
heating_set_point_fahrenheit?: number | undefined
|
|
11526
|
+
method?: string | undefined
|
|
11520
11527
|
}
|
|
11521
11528
|
| undefined
|
|
11522
11529
|
message?: string | undefined
|
|
@@ -11699,6 +11706,7 @@ export interface Routes {
|
|
|
11699
11706
|
heating_set_point_celsius?: number | undefined
|
|
11700
11707
|
cooling_set_point_fahrenheit?: number | undefined
|
|
11701
11708
|
heating_set_point_fahrenheit?: number | undefined
|
|
11709
|
+
method?: string | undefined
|
|
11702
11710
|
}>
|
|
11703
11711
|
}
|
|
11704
11712
|
}
|
|
@@ -26858,6 +26866,8 @@ export interface Routes {
|
|
|
26858
26866
|
formData: {}
|
|
26859
26867
|
jsonResponse: {
|
|
26860
26868
|
acs_systems: Array<{
|
|
26869
|
+
/** ID of the default credential manager acs_system for this access control system. */
|
|
26870
|
+
default_credential_manager_acs_system_id?: (string | null) | undefined
|
|
26861
26871
|
/** ID of the `acs_system`. */
|
|
26862
26872
|
acs_system_id: string
|
|
26863
26873
|
/** Brand-specific terminology for the `acs_system` type. */
|