@seamapi/types 1.47.0 → 1.49.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.
Files changed (35) hide show
  1. package/dist/connect.cjs +359 -61
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +465 -37
  4. package/lib/seam/connect/openapi.d.ts +268 -23
  5. package/lib/seam/connect/openapi.js +358 -60
  6. package/lib/seam/connect/openapi.js.map +1 -1
  7. package/lib/seam/connect/route-types.d.ts +197 -14
  8. package/lib/seam/connect/unstable/model-types.d.ts +1 -1
  9. package/lib/seam/connect/unstable/models/access-codes/managed-access-code.js +81 -21
  10. package/lib/seam/connect/unstable/models/access-codes/managed-access-code.js.map +1 -1
  11. package/lib/seam/connect/unstable/models/acs/credential.d.ts +7 -4
  12. package/lib/seam/connect/unstable/models/acs/credential.js +2 -0
  13. package/lib/seam/connect/unstable/models/acs/credential.js.map +1 -1
  14. package/lib/seam/connect/unstable/models/acs/credential_pool.d.ts +29 -0
  15. package/lib/seam/connect/unstable/models/acs/credential_pool.js +12 -0
  16. package/lib/seam/connect/unstable/models/acs/credential_pool.js.map +1 -0
  17. package/lib/seam/connect/unstable/models/acs/index.d.ts +1 -0
  18. package/lib/seam/connect/unstable/models/acs/index.js +1 -0
  19. package/lib/seam/connect/unstable/models/acs/index.js.map +1 -1
  20. package/lib/seam/connect/unstable/models/devices/managed-device.d.ts +14 -14
  21. package/lib/seam/connect/unstable/models/devices/managed-device.js +1 -1
  22. package/lib/seam/connect/unstable/models/devices/managed-device.js.map +1 -1
  23. package/lib/seam/connect/unstable/schemas.d.ts +1 -1
  24. package/lib/seam/connect/unstable/schemas.js +1 -1
  25. package/lib/seam/connect/unstable/schemas.js.map +1 -1
  26. package/package.json +1 -1
  27. package/src/lib/seam/connect/openapi.ts +383 -60
  28. package/src/lib/seam/connect/route-types.ts +197 -14
  29. package/src/lib/seam/connect/unstable/model-types.ts +2 -0
  30. package/src/lib/seam/connect/unstable/models/access-codes/managed-access-code.ts +113 -21
  31. package/src/lib/seam/connect/unstable/models/acs/credential.ts +2 -0
  32. package/src/lib/seam/connect/unstable/models/acs/credential_pool.ts +19 -0
  33. package/src/lib/seam/connect/unstable/models/acs/index.ts +1 -0
  34. package/src/lib/seam/connect/unstable/models/devices/managed-device.ts +1 -1
  35. package/src/lib/seam/connect/unstable/schemas.ts +2 -0
@@ -81,81 +81,102 @@ declare const _default: {
81
81
  access_code: {
82
82
  properties: {
83
83
  access_code_id: {
84
+ description: string;
84
85
  format: string;
85
86
  type: string;
86
87
  };
87
88
  code: {
89
+ description: string;
88
90
  nullable: boolean;
89
91
  type: string;
90
92
  };
91
93
  common_code_key: {
94
+ description: string;
92
95
  nullable: boolean;
93
96
  type: string;
94
97
  };
95
98
  created_at: {
99
+ description: string;
96
100
  format: string;
97
101
  type: string;
98
102
  };
99
103
  device_id: {
104
+ description: string;
100
105
  format: string;
101
106
  type: string;
102
107
  };
103
108
  ends_at: {
109
+ description: string;
104
110
  format: string;
105
111
  nullable: boolean;
106
112
  type: string;
107
113
  };
108
114
  errors: {
115
+ description: string;
109
116
  nullable: boolean;
110
117
  };
111
118
  is_backup: {
119
+ description: string;
112
120
  type: string;
113
121
  };
114
122
  is_backup_access_code_available: {
123
+ description: string;
115
124
  type: string;
116
125
  };
117
126
  is_external_modification_allowed: {
127
+ description: string;
118
128
  type: string;
119
129
  };
120
130
  is_managed: {
131
+ description: string;
121
132
  enum: boolean[];
122
133
  type: string;
123
134
  };
124
135
  is_offline_access_code: {
136
+ description: string;
125
137
  type: string;
126
138
  };
127
139
  is_one_time_use: {
140
+ description: string;
128
141
  type: string;
129
142
  };
130
143
  is_scheduled_on_device: {
144
+ description: string;
131
145
  type: string;
132
146
  };
133
147
  is_waiting_for_code_assignment: {
148
+ description: string;
134
149
  type: string;
135
150
  };
136
151
  name: {
152
+ description: string;
137
153
  nullable: boolean;
138
154
  type: string;
139
155
  };
140
156
  pulled_backup_access_code_id: {
157
+ description: string;
141
158
  format: string;
142
159
  nullable: boolean;
143
160
  type: string;
144
161
  };
145
162
  starts_at: {
163
+ description: string;
146
164
  format: string;
147
165
  nullable: boolean;
148
166
  type: string;
149
167
  };
150
168
  status: {
169
+ description: string;
151
170
  enum: string[];
152
171
  type: string;
153
172
  };
154
173
  type: {
174
+ description: string;
155
175
  enum: string[];
156
176
  type: string;
157
177
  };
158
178
  warnings: {
179
+ description: string;
159
180
  nullable: boolean;
160
181
  };
161
182
  };
@@ -754,9 +775,6 @@ declare const _default: {
754
775
  };
755
776
  model: {
756
777
  properties: {
757
- access_codes_supported: {
758
- type: string;
759
- };
760
778
  accessory_keypad_supported: {
761
779
  type: string;
762
780
  };
@@ -769,6 +787,9 @@ declare const _default: {
769
787
  offline_access_codes_supported: {
770
788
  type: string;
771
789
  };
790
+ online_access_codes_supported: {
791
+ type: string;
792
+ };
772
793
  };
773
794
  required: string[];
774
795
  type: string;
@@ -1993,6 +2014,28 @@ declare const _default: {
1993
2014
  required: string[];
1994
2015
  type: string;
1995
2016
  };
2017
+ device_provider: {
2018
+ properties: {
2019
+ device_provider_name: {
2020
+ type: string;
2021
+ };
2022
+ display_name: {
2023
+ type: string;
2024
+ };
2025
+ image_url: {
2026
+ type: string;
2027
+ };
2028
+ provider_categories: {
2029
+ items: {
2030
+ enum: string[];
2031
+ type: string;
2032
+ };
2033
+ type: string;
2034
+ };
2035
+ };
2036
+ required: string[];
2037
+ type: string;
2038
+ };
1996
2039
  event: {
1997
2040
  properties: {
1998
2041
  created_at: {
@@ -2070,27 +2113,33 @@ declare const _default: {
2070
2113
  unmanaged_access_code: {
2071
2114
  properties: {
2072
2115
  access_code_id: {
2116
+ description: string;
2073
2117
  format: string;
2074
2118
  type: string;
2075
2119
  };
2076
2120
  code: {
2121
+ description: string;
2077
2122
  nullable: boolean;
2078
2123
  type: string;
2079
2124
  };
2080
2125
  created_at: {
2126
+ description: string;
2081
2127
  format: string;
2082
2128
  type: string;
2083
2129
  };
2084
2130
  device_id: {
2131
+ description: string;
2085
2132
  format: string;
2086
2133
  type: string;
2087
2134
  };
2088
2135
  ends_at: {
2136
+ description: string;
2089
2137
  format: string;
2090
2138
  nullable: boolean;
2091
2139
  type: string;
2092
2140
  };
2093
2141
  errors: {
2142
+ description: string;
2094
2143
  nullable: boolean;
2095
2144
  };
2096
2145
  is_managed: {
@@ -2098,10 +2147,12 @@ declare const _default: {
2098
2147
  type: string;
2099
2148
  };
2100
2149
  name: {
2150
+ description: string;
2101
2151
  nullable: boolean;
2102
2152
  type: string;
2103
2153
  };
2104
2154
  starts_at: {
2155
+ description: string;
2105
2156
  format: string;
2106
2157
  nullable: boolean;
2107
2158
  type: string;
@@ -2111,10 +2162,12 @@ declare const _default: {
2111
2162
  type: string;
2112
2163
  };
2113
2164
  type: {
2165
+ description: string;
2114
2166
  enum: string[];
2115
2167
  type: string;
2116
2168
  };
2117
2169
  warnings: {
2170
+ description: string;
2118
2171
  nullable: boolean;
2119
2172
  };
2120
2173
  };
@@ -4450,6 +4503,107 @@ declare const _default: {
4450
4503
  'x-fern-sdk-method-name': string;
4451
4504
  };
4452
4505
  };
4506
+ '/acs/credential_pools/list': {
4507
+ post: {
4508
+ operationId: string;
4509
+ requestBody: {
4510
+ content: {
4511
+ 'application/json': {
4512
+ schema: {
4513
+ properties: {
4514
+ acs_system_id: {
4515
+ format: string;
4516
+ type: string;
4517
+ };
4518
+ };
4519
+ required: string[];
4520
+ type: string;
4521
+ };
4522
+ };
4523
+ };
4524
+ };
4525
+ responses: {
4526
+ 200: {
4527
+ content: {
4528
+ 'application/json': {
4529
+ schema: {
4530
+ properties: {
4531
+ acs_credential_pools: {
4532
+ items: {
4533
+ properties: {
4534
+ acs_credential_pool_id: {
4535
+ format: string;
4536
+ type: string;
4537
+ };
4538
+ acs_system_id: {
4539
+ format: string;
4540
+ type: string;
4541
+ };
4542
+ created_at: {
4543
+ format: string;
4544
+ type: string;
4545
+ };
4546
+ display_name: {
4547
+ minLength: number;
4548
+ type: string;
4549
+ };
4550
+ external_type: {
4551
+ enum: string[];
4552
+ type: string;
4553
+ };
4554
+ external_type_display_name: {
4555
+ type: string;
4556
+ };
4557
+ workspace_id: {
4558
+ format: string;
4559
+ type: string;
4560
+ };
4561
+ };
4562
+ required: string[];
4563
+ type: string;
4564
+ };
4565
+ type: string;
4566
+ };
4567
+ ok: {
4568
+ type: string;
4569
+ };
4570
+ };
4571
+ required: string[];
4572
+ type: string;
4573
+ };
4574
+ };
4575
+ };
4576
+ description: string;
4577
+ };
4578
+ 400: {
4579
+ description: string;
4580
+ };
4581
+ 401: {
4582
+ description: string;
4583
+ };
4584
+ };
4585
+ security: ({
4586
+ access_token: never[];
4587
+ seam_workspace: never[];
4588
+ seam_client_session_token?: never;
4589
+ client_session_token?: never;
4590
+ } | {
4591
+ seam_client_session_token: never[];
4592
+ access_token?: never;
4593
+ seam_workspace?: never;
4594
+ client_session_token?: never;
4595
+ } | {
4596
+ client_session_token: never[];
4597
+ access_token?: never;
4598
+ seam_workspace?: never;
4599
+ seam_client_session_token?: never;
4600
+ })[];
4601
+ summary: string;
4602
+ tags: never[];
4603
+ 'x-fern-sdk-group-name': string[];
4604
+ 'x-fern-sdk-method-name': string;
4605
+ };
4606
+ };
4453
4607
  '/acs/credentials/assign': {
4454
4608
  patch: {
4455
4609
  operationId: string;
@@ -4479,6 +4633,51 @@ declare const _default: {
4479
4633
  'application/json': {
4480
4634
  schema: {
4481
4635
  properties: {
4636
+ acs_credential: {
4637
+ properties: {
4638
+ acs_credential_id: {
4639
+ format: string;
4640
+ type: string;
4641
+ };
4642
+ acs_credential_pool_id: {
4643
+ format: string;
4644
+ type: string;
4645
+ };
4646
+ acs_system_id: {
4647
+ format: string;
4648
+ type: string;
4649
+ };
4650
+ acs_user_id: {
4651
+ format: string;
4652
+ type: string;
4653
+ };
4654
+ code: {
4655
+ nullable: boolean;
4656
+ type: string;
4657
+ };
4658
+ created_at: {
4659
+ format: string;
4660
+ type: string;
4661
+ };
4662
+ display_name: {
4663
+ minLength: number;
4664
+ type: string;
4665
+ };
4666
+ external_type: {
4667
+ enum: string[];
4668
+ type: string;
4669
+ };
4670
+ external_type_display_name: {
4671
+ type: string;
4672
+ };
4673
+ workspace_id: {
4674
+ format: string;
4675
+ type: string;
4676
+ };
4677
+ };
4678
+ required: string[];
4679
+ type: string;
4680
+ };
4482
4681
  ok: {
4483
4682
  type: string;
4484
4683
  };
@@ -4545,6 +4744,51 @@ declare const _default: {
4545
4744
  'application/json': {
4546
4745
  schema: {
4547
4746
  properties: {
4747
+ acs_credential: {
4748
+ properties: {
4749
+ acs_credential_id: {
4750
+ format: string;
4751
+ type: string;
4752
+ };
4753
+ acs_credential_pool_id: {
4754
+ format: string;
4755
+ type: string;
4756
+ };
4757
+ acs_system_id: {
4758
+ format: string;
4759
+ type: string;
4760
+ };
4761
+ acs_user_id: {
4762
+ format: string;
4763
+ type: string;
4764
+ };
4765
+ code: {
4766
+ nullable: boolean;
4767
+ type: string;
4768
+ };
4769
+ created_at: {
4770
+ format: string;
4771
+ type: string;
4772
+ };
4773
+ display_name: {
4774
+ minLength: number;
4775
+ type: string;
4776
+ };
4777
+ external_type: {
4778
+ enum: string[];
4779
+ type: string;
4780
+ };
4781
+ external_type_display_name: {
4782
+ type: string;
4783
+ };
4784
+ workspace_id: {
4785
+ format: string;
4786
+ type: string;
4787
+ };
4788
+ };
4789
+ required: string[];
4790
+ type: string;
4791
+ };
4548
4792
  ok: {
4549
4793
  type: string;
4550
4794
  };
@@ -4620,6 +4864,10 @@ declare const _default: {
4620
4864
  format: string;
4621
4865
  type: string;
4622
4866
  };
4867
+ acs_credential_pool_id: {
4868
+ format: string;
4869
+ type: string;
4870
+ };
4623
4871
  acs_system_id: {
4624
4872
  format: string;
4625
4873
  type: string;
@@ -4791,6 +5039,10 @@ declare const _default: {
4791
5039
  format: string;
4792
5040
  type: string;
4793
5041
  };
5042
+ acs_credential_pool_id: {
5043
+ format: string;
5044
+ type: string;
5045
+ };
4794
5046
  acs_system_id: {
4795
5047
  format: string;
4796
5048
  type: string;
@@ -4924,6 +5176,10 @@ declare const _default: {
4924
5176
  format: string;
4925
5177
  type: string;
4926
5178
  };
5179
+ acs_credential_pool_id: {
5180
+ format: string;
5181
+ type: string;
5182
+ };
4927
5183
  acs_system_id: {
4928
5184
  format: string;
4929
5185
  type: string;
@@ -5036,6 +5292,10 @@ declare const _default: {
5036
5292
  format: string;
5037
5293
  type: string;
5038
5294
  };
5295
+ acs_credential_pool_id: {
5296
+ format: string;
5297
+ type: string;
5298
+ };
5039
5299
  acs_system_id: {
5040
5300
  format: string;
5041
5301
  type: string;
@@ -5143,6 +5403,10 @@ declare const _default: {
5143
5403
  format: string;
5144
5404
  type: string;
5145
5405
  };
5406
+ acs_credential_pool_id: {
5407
+ format: string;
5408
+ type: string;
5409
+ };
5146
5410
  acs_system_id: {
5147
5411
  format: string;
5148
5412
  type: string;
@@ -8073,26 +8337,7 @@ declare const _default: {
8073
8337
  properties: {
8074
8338
  device_providers: {
8075
8339
  items: {
8076
- properties: {
8077
- device_provider_name: {
8078
- type: string;
8079
- };
8080
- display_name: {
8081
- type: string;
8082
- };
8083
- image_url: {
8084
- type: string;
8085
- };
8086
- provider_categories: {
8087
- items: {
8088
- enum: string[];
8089
- type: string;
8090
- };
8091
- type: string;
8092
- };
8093
- };
8094
- required: string[];
8095
- type: string;
8340
+ $ref: string;
8096
8341
  };
8097
8342
  type: string;
8098
8343
  };
@@ -12864,26 +13109,49 @@ interface Routes {
12864
13109
  };
12865
13110
  };
12866
13111
  access_code: {
13112
+ /** Unique identifier for a group of access codes that share the same code. */
12867
13113
  common_code_key: string | null;
13114
+ /** Indicates whether the code is set on the device according to a preconfigured schedule. */
12868
13115
  is_scheduled_on_device?: boolean | undefined;
13116
+ /** Nature of the access code. Values are "ongoing" for access codes that are active continuously until deactivated manually or "time_bound" for access codes that have a specific duration. */
12869
13117
  type: 'time_bound' | 'ongoing';
13118
+ /** Indicates whether the access code is waiting for a code assignment. */
12870
13119
  is_waiting_for_code_assignment?: boolean | undefined;
13120
+ /** Unique identifier for the access code. */
12871
13121
  access_code_id: string;
13122
+ /** Unique identifier for the device associated with the access code. */
12872
13123
  device_id: string;
13124
+ /** Name of the access code. Enables administrators and users to identify the access code easily, especially when there are numerous access codes. */
12873
13125
  name: string | null;
13126
+ /** Code used for access. Typically, a numeric or alphanumeric string. */
12874
13127
  code: string | null;
13128
+ /** Date and time at which the access code was created. */
12875
13129
  created_at: string;
13130
+ /** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
12876
13131
  errors?: any;
13132
+ /** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
12877
13133
  warnings?: any;
13134
+ /** Indicates whether Seam manages the access code. */
12878
13135
  is_managed: true;
13136
+ /** Date and time at which the time-bound access code becomes active. */
12879
13137
  starts_at?: (string | null) | undefined;
13138
+ /** Date and time after which the time-bound access code becomes inactive. */
12880
13139
  ends_at?: (string | null) | undefined;
13140
+ /**
13141
+ Current status of the access code within the operational lifecycle. Values are "setting," a transitional phase that indicates that the code is being configured or activated; "set", which indicates that the code is active and operational; "unset," which indicates a deactivated or unused state, either before activation or after deliberate deactivation; "removing," which indicates a transitional period in which the code is being deleted or made inactive; and "unknown," which indicates an indeterminate state, due to reasons such as system errors or incomplete data, that highlights a potential need for system review or troubleshooting.
13142
+ */
12881
13143
  status: 'setting' | 'set' | 'unset' | 'removing' | 'unknown';
13144
+ /** Indicates whether a backup access code is available for use if the primary access code is lost or compromised. */
12882
13145
  is_backup_access_code_available: boolean;
13146
+ /** Indicates whether the access code is a backup code. */
12883
13147
  is_backup?: boolean | undefined;
13148
+ /** Identifier of the pulled backup access code. Used to associate the pulled backup access code with the original access code. */
12884
13149
  pulled_backup_access_code_id?: (string | null) | undefined;
13150
+ /** Indicates whether changes to the access code from external sources are permitted. */
12885
13151
  is_external_modification_allowed: boolean;
13152
+ /** Indicates whether the access code can only be used once. If "true," the code becomes invalid after the first use. */
12886
13153
  is_one_time_use: boolean;
13154
+ /** Indicates whether the access code is intended for use in offline scenarios. If "true," this code can be created on a device without a network connection. */
12887
13155
  is_offline_access_code: boolean;
12888
13156
  };
12889
13157
  };
@@ -12913,26 +13181,49 @@ interface Routes {
12913
13181
  formData: {};
12914
13182
  jsonResponse: {
12915
13183
  access_codes: Array<{
13184
+ /** Unique identifier for a group of access codes that share the same code. */
12916
13185
  common_code_key: string | null;
13186
+ /** Indicates whether the code is set on the device according to a preconfigured schedule. */
12917
13187
  is_scheduled_on_device?: boolean | undefined;
13188
+ /** Nature of the access code. Values are "ongoing" for access codes that are active continuously until deactivated manually or "time_bound" for access codes that have a specific duration. */
12918
13189
  type: 'time_bound' | 'ongoing';
13190
+ /** Indicates whether the access code is waiting for a code assignment. */
12919
13191
  is_waiting_for_code_assignment?: boolean | undefined;
13192
+ /** Unique identifier for the access code. */
12920
13193
  access_code_id: string;
13194
+ /** Unique identifier for the device associated with the access code. */
12921
13195
  device_id: string;
13196
+ /** Name of the access code. Enables administrators and users to identify the access code easily, especially when there are numerous access codes. */
12922
13197
  name: string | null;
13198
+ /** Code used for access. Typically, a numeric or alphanumeric string. */
12923
13199
  code: string | null;
13200
+ /** Date and time at which the access code was created. */
12924
13201
  created_at: string;
13202
+ /** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
12925
13203
  errors?: any;
13204
+ /** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
12926
13205
  warnings?: any;
13206
+ /** Indicates whether Seam manages the access code. */
12927
13207
  is_managed: true;
13208
+ /** Date and time at which the time-bound access code becomes active. */
12928
13209
  starts_at?: (string | null) | undefined;
13210
+ /** Date and time after which the time-bound access code becomes inactive. */
12929
13211
  ends_at?: (string | null) | undefined;
13212
+ /**
13213
+ Current status of the access code within the operational lifecycle. Values are "setting," a transitional phase that indicates that the code is being configured or activated; "set", which indicates that the code is active and operational; "unset," which indicates a deactivated or unused state, either before activation or after deliberate deactivation; "removing," which indicates a transitional period in which the code is being deleted or made inactive; and "unknown," which indicates an indeterminate state, due to reasons such as system errors or incomplete data, that highlights a potential need for system review or troubleshooting.
13214
+ */
12930
13215
  status: 'setting' | 'set' | 'unset' | 'removing' | 'unknown';
13216
+ /** Indicates whether a backup access code is available for use if the primary access code is lost or compromised. */
12931
13217
  is_backup_access_code_available: boolean;
13218
+ /** Indicates whether the access code is a backup code. */
12932
13219
  is_backup?: boolean | undefined;
13220
+ /** Identifier of the pulled backup access code. Used to associate the pulled backup access code with the original access code. */
12933
13221
  pulled_backup_access_code_id?: (string | null) | undefined;
13222
+ /** Indicates whether changes to the access code from external sources are permitted. */
12934
13223
  is_external_modification_allowed: boolean;
13224
+ /** Indicates whether the access code can only be used once. If "true," the code becomes invalid after the first use. */
12935
13225
  is_one_time_use: boolean;
13226
+ /** Indicates whether the access code is intended for use in offline scenarios. If "true," this code can be created on a device without a network connection. */
12936
13227
  is_offline_access_code: boolean;
12937
13228
  }>;
12938
13229
  };
@@ -13002,26 +13293,49 @@ interface Routes {
13002
13293
  formData: {};
13003
13294
  jsonResponse: {
13004
13295
  access_code: {
13296
+ /** Unique identifier for a group of access codes that share the same code. */
13005
13297
  common_code_key: string | null;
13298
+ /** Indicates whether the code is set on the device according to a preconfigured schedule. */
13006
13299
  is_scheduled_on_device?: boolean | undefined;
13300
+ /** Nature of the access code. Values are "ongoing" for access codes that are active continuously until deactivated manually or "time_bound" for access codes that have a specific duration. */
13007
13301
  type: 'time_bound' | 'ongoing';
13302
+ /** Indicates whether the access code is waiting for a code assignment. */
13008
13303
  is_waiting_for_code_assignment?: boolean | undefined;
13304
+ /** Unique identifier for the access code. */
13009
13305
  access_code_id: string;
13306
+ /** Unique identifier for the device associated with the access code. */
13010
13307
  device_id: string;
13308
+ /** Name of the access code. Enables administrators and users to identify the access code easily, especially when there are numerous access codes. */
13011
13309
  name: string | null;
13310
+ /** Code used for access. Typically, a numeric or alphanumeric string. */
13012
13311
  code: string | null;
13312
+ /** Date and time at which the access code was created. */
13013
13313
  created_at: string;
13314
+ /** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
13014
13315
  errors?: any;
13316
+ /** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
13015
13317
  warnings?: any;
13318
+ /** Indicates whether Seam manages the access code. */
13016
13319
  is_managed: true;
13320
+ /** Date and time at which the time-bound access code becomes active. */
13017
13321
  starts_at?: (string | null) | undefined;
13322
+ /** Date and time after which the time-bound access code becomes inactive. */
13018
13323
  ends_at?: (string | null) | undefined;
13324
+ /**
13325
+ Current status of the access code within the operational lifecycle. Values are "setting," a transitional phase that indicates that the code is being configured or activated; "set", which indicates that the code is active and operational; "unset," which indicates a deactivated or unused state, either before activation or after deliberate deactivation; "removing," which indicates a transitional period in which the code is being deleted or made inactive; and "unknown," which indicates an indeterminate state, due to reasons such as system errors or incomplete data, that highlights a potential need for system review or troubleshooting.
13326
+ */
13019
13327
  status: 'setting' | 'set' | 'unset' | 'removing' | 'unknown';
13328
+ /** Indicates whether a backup access code is available for use if the primary access code is lost or compromised. */
13020
13329
  is_backup_access_code_available: boolean;
13330
+ /** Indicates whether the access code is a backup code. */
13021
13331
  is_backup?: boolean | undefined;
13332
+ /** Identifier of the pulled backup access code. Used to associate the pulled backup access code with the original access code. */
13022
13333
  pulled_backup_access_code_id?: (string | null) | undefined;
13334
+ /** Indicates whether changes to the access code from external sources are permitted. */
13023
13335
  is_external_modification_allowed: boolean;
13336
+ /** Indicates whether the access code can only be used once. If "true," the code becomes invalid after the first use. */
13024
13337
  is_one_time_use: boolean;
13338
+ /** Indicates whether the access code is intended for use in offline scenarios. If "true," this code can be created on a device without a network connection. */
13025
13339
  is_offline_access_code: boolean;
13026
13340
  };
13027
13341
  };
@@ -13039,26 +13353,49 @@ interface Routes {
13039
13353
  formData: {};
13040
13354
  jsonResponse: {
13041
13355
  access_codes: Array<{
13356
+ /** Unique identifier for a group of access codes that share the same code. */
13042
13357
  common_code_key: string | null;
13358
+ /** Indicates whether the code is set on the device according to a preconfigured schedule. */
13043
13359
  is_scheduled_on_device?: boolean | undefined;
13360
+ /** Nature of the access code. Values are "ongoing" for access codes that are active continuously until deactivated manually or "time_bound" for access codes that have a specific duration. */
13044
13361
  type: 'time_bound' | 'ongoing';
13362
+ /** Indicates whether the access code is waiting for a code assignment. */
13045
13363
  is_waiting_for_code_assignment?: boolean | undefined;
13364
+ /** Unique identifier for the access code. */
13046
13365
  access_code_id: string;
13366
+ /** Unique identifier for the device associated with the access code. */
13047
13367
  device_id: string;
13368
+ /** Name of the access code. Enables administrators and users to identify the access code easily, especially when there are numerous access codes. */
13048
13369
  name: string | null;
13370
+ /** Code used for access. Typically, a numeric or alphanumeric string. */
13049
13371
  code: string | null;
13372
+ /** Date and time at which the access code was created. */
13050
13373
  created_at: string;
13374
+ /** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
13051
13375
  errors?: any;
13376
+ /** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
13052
13377
  warnings?: any;
13378
+ /** Indicates whether Seam manages the access code. */
13053
13379
  is_managed: true;
13380
+ /** Date and time at which the time-bound access code becomes active. */
13054
13381
  starts_at?: (string | null) | undefined;
13382
+ /** Date and time after which the time-bound access code becomes inactive. */
13055
13383
  ends_at?: (string | null) | undefined;
13384
+ /**
13385
+ Current status of the access code within the operational lifecycle. Values are "setting," a transitional phase that indicates that the code is being configured or activated; "set", which indicates that the code is active and operational; "unset," which indicates a deactivated or unused state, either before activation or after deliberate deactivation; "removing," which indicates a transitional period in which the code is being deleted or made inactive; and "unknown," which indicates an indeterminate state, due to reasons such as system errors or incomplete data, that highlights a potential need for system review or troubleshooting.
13386
+ */
13056
13387
  status: 'setting' | 'set' | 'unset' | 'removing' | 'unknown';
13388
+ /** Indicates whether a backup access code is available for use if the primary access code is lost or compromised. */
13057
13389
  is_backup_access_code_available: boolean;
13390
+ /** Indicates whether the access code is a backup code. */
13058
13391
  is_backup?: boolean | undefined;
13392
+ /** Identifier of the pulled backup access code. Used to associate the pulled backup access code with the original access code. */
13059
13393
  pulled_backup_access_code_id?: (string | null) | undefined;
13394
+ /** Indicates whether changes to the access code from external sources are permitted. */
13060
13395
  is_external_modification_allowed: boolean;
13396
+ /** Indicates whether the access code can only be used once. If "true," the code becomes invalid after the first use. */
13061
13397
  is_one_time_use: boolean;
13398
+ /** Indicates whether the access code is intended for use in offline scenarios. If "true," this code can be created on a device without a network connection. */
13062
13399
  is_offline_access_code: boolean;
13063
13400
  }>;
13064
13401
  };
@@ -13074,26 +13411,49 @@ interface Routes {
13074
13411
  formData: {};
13075
13412
  jsonResponse: {
13076
13413
  backup_access_code: {
13414
+ /** Unique identifier for a group of access codes that share the same code. */
13077
13415
  common_code_key: string | null;
13416
+ /** Indicates whether the code is set on the device according to a preconfigured schedule. */
13078
13417
  is_scheduled_on_device?: boolean | undefined;
13418
+ /** Nature of the access code. Values are "ongoing" for access codes that are active continuously until deactivated manually or "time_bound" for access codes that have a specific duration. */
13079
13419
  type: 'time_bound' | 'ongoing';
13420
+ /** Indicates whether the access code is waiting for a code assignment. */
13080
13421
  is_waiting_for_code_assignment?: boolean | undefined;
13422
+ /** Unique identifier for the access code. */
13081
13423
  access_code_id: string;
13424
+ /** Unique identifier for the device associated with the access code. */
13082
13425
  device_id: string;
13426
+ /** Name of the access code. Enables administrators and users to identify the access code easily, especially when there are numerous access codes. */
13083
13427
  name: string | null;
13428
+ /** Code used for access. Typically, a numeric or alphanumeric string. */
13084
13429
  code: string | null;
13430
+ /** Date and time at which the access code was created. */
13085
13431
  created_at: string;
13432
+ /** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
13086
13433
  errors?: any;
13434
+ /** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
13087
13435
  warnings?: any;
13436
+ /** Indicates whether Seam manages the access code. */
13088
13437
  is_managed: true;
13438
+ /** Date and time at which the time-bound access code becomes active. */
13089
13439
  starts_at?: (string | null) | undefined;
13440
+ /** Date and time after which the time-bound access code becomes inactive. */
13090
13441
  ends_at?: (string | null) | undefined;
13442
+ /**
13443
+ Current status of the access code within the operational lifecycle. Values are "setting," a transitional phase that indicates that the code is being configured or activated; "set", which indicates that the code is active and operational; "unset," which indicates a deactivated or unused state, either before activation or after deliberate deactivation; "removing," which indicates a transitional period in which the code is being deleted or made inactive; and "unknown," which indicates an indeterminate state, due to reasons such as system errors or incomplete data, that highlights a potential need for system review or troubleshooting.
13444
+ */
13091
13445
  status: 'setting' | 'set' | 'unset' | 'removing' | 'unknown';
13446
+ /** Indicates whether a backup access code is available for use if the primary access code is lost or compromised. */
13092
13447
  is_backup_access_code_available: boolean;
13448
+ /** Indicates whether the access code is a backup code. */
13093
13449
  is_backup?: boolean | undefined;
13450
+ /** Identifier of the pulled backup access code. Used to associate the pulled backup access code with the original access code. */
13094
13451
  pulled_backup_access_code_id?: (string | null) | undefined;
13452
+ /** Indicates whether changes to the access code from external sources are permitted. */
13095
13453
  is_external_modification_allowed: boolean;
13454
+ /** Indicates whether the access code can only be used once. If "true," the code becomes invalid after the first use. */
13096
13455
  is_one_time_use: boolean;
13456
+ /** Indicates whether the access code is intended for use in offline scenarios. If "true," this code can be created on a device without a network connection. */
13097
13457
  is_offline_access_code: boolean;
13098
13458
  };
13099
13459
  };
@@ -13111,16 +13471,26 @@ interface Routes {
13111
13471
  formData: {};
13112
13472
  jsonResponse: {
13113
13473
  access_code: {
13474
+ /** Nature of the access code. Values are "ongoing" for access codes that are active continuously until deactivated manually or "time_bound" for access codes that have a specific duration. */
13114
13475
  type: 'time_bound' | 'ongoing';
13476
+ /** Unique identifier for the access code. */
13115
13477
  access_code_id: string;
13478
+ /** Unique identifier for the device associated with the access code. */
13116
13479
  device_id: string;
13480
+ /** Name of the access code. Enables administrators and users to identify the access code easily, especially when there are numerous access codes. */
13117
13481
  name: string | null;
13482
+ /** Code used for access. Typically, a numeric or alphanumeric string. */
13118
13483
  code: string | null;
13484
+ /** Date and time at which the access code was created. */
13119
13485
  created_at: string;
13486
+ /** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
13120
13487
  errors?: any;
13488
+ /** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
13121
13489
  warnings?: any;
13122
13490
  is_managed: false;
13491
+ /** Date and time at which the time-bound access code becomes active. */
13123
13492
  starts_at?: (string | null) | undefined;
13493
+ /** Date and time after which the time-bound access code becomes inactive. */
13124
13494
  ends_at?: (string | null) | undefined;
13125
13495
  status: 'set';
13126
13496
  };
@@ -13189,16 +13559,26 @@ interface Routes {
13189
13559
  formData: {};
13190
13560
  jsonResponse: {
13191
13561
  access_code: {
13562
+ /** Nature of the access code. Values are "ongoing" for access codes that are active continuously until deactivated manually or "time_bound" for access codes that have a specific duration. */
13192
13563
  type: 'time_bound' | 'ongoing';
13564
+ /** Unique identifier for the access code. */
13193
13565
  access_code_id: string;
13566
+ /** Unique identifier for the device associated with the access code. */
13194
13567
  device_id: string;
13568
+ /** Name of the access code. Enables administrators and users to identify the access code easily, especially when there are numerous access codes. */
13195
13569
  name: string | null;
13570
+ /** Code used for access. Typically, a numeric or alphanumeric string. */
13196
13571
  code: string | null;
13572
+ /** Date and time at which the access code was created. */
13197
13573
  created_at: string;
13574
+ /** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
13198
13575
  errors?: any;
13576
+ /** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
13199
13577
  warnings?: any;
13200
13578
  is_managed: false;
13579
+ /** Date and time at which the time-bound access code becomes active. */
13201
13580
  starts_at?: (string | null) | undefined;
13581
+ /** Date and time after which the time-bound access code becomes inactive. */
13202
13582
  ends_at?: (string | null) | undefined;
13203
13583
  status: 'set';
13204
13584
  };
@@ -13216,16 +13596,26 @@ interface Routes {
13216
13596
  formData: {};
13217
13597
  jsonResponse: {
13218
13598
  access_codes: Array<{
13599
+ /** Nature of the access code. Values are "ongoing" for access codes that are active continuously until deactivated manually or "time_bound" for access codes that have a specific duration. */
13219
13600
  type: 'time_bound' | 'ongoing';
13601
+ /** Unique identifier for the access code. */
13220
13602
  access_code_id: string;
13603
+ /** Unique identifier for the device associated with the access code. */
13221
13604
  device_id: string;
13605
+ /** Name of the access code. Enables administrators and users to identify the access code easily, especially when there are numerous access codes. */
13222
13606
  name: string | null;
13607
+ /** Code used for access. Typically, a numeric or alphanumeric string. */
13223
13608
  code: string | null;
13609
+ /** Date and time at which the access code was created. */
13224
13610
  created_at: string;
13611
+ /** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
13225
13612
  errors?: any;
13613
+ /** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
13226
13614
  warnings?: any;
13227
13615
  is_managed: false;
13616
+ /** Date and time at which the time-bound access code becomes active. */
13228
13617
  starts_at?: (string | null) | undefined;
13618
+ /** Date and time after which the time-bound access code becomes inactive. */
13229
13619
  ends_at?: (string | null) | undefined;
13230
13620
  status: 'set';
13231
13621
  }>;
@@ -13399,6 +13789,27 @@ interface Routes {
13399
13789
  formData: {};
13400
13790
  jsonResponse: {};
13401
13791
  };
13792
+ '/acs/credential_pools/list': {
13793
+ route: '/acs/credential_pools/list';
13794
+ method: 'GET' | 'POST';
13795
+ queryParams: {};
13796
+ jsonBody: {};
13797
+ commonParams: {
13798
+ acs_system_id: string;
13799
+ };
13800
+ formData: {};
13801
+ jsonResponse: {
13802
+ acs_credential_pools: Array<{
13803
+ acs_credential_pool_id: string;
13804
+ acs_system_id: string;
13805
+ display_name: string;
13806
+ external_type: 'hid_part_number';
13807
+ external_type_display_name: string;
13808
+ created_at: string;
13809
+ workspace_id: string;
13810
+ }>;
13811
+ };
13812
+ };
13402
13813
  '/acs/credentials/assign': {
13403
13814
  route: '/acs/credentials/assign';
13404
13815
  method: 'PATCH' | 'POST';
@@ -13409,7 +13820,20 @@ interface Routes {
13409
13820
  };
13410
13821
  commonParams: {};
13411
13822
  formData: {};
13412
- jsonResponse: {};
13823
+ jsonResponse: {
13824
+ acs_credential: {
13825
+ acs_credential_id: string;
13826
+ acs_user_id?: string | undefined;
13827
+ acs_credential_pool_id?: string | undefined;
13828
+ acs_system_id: string;
13829
+ display_name: string;
13830
+ code: string | null;
13831
+ external_type: 'pti_card' | 'brivo_credential' | 'hid_credential';
13832
+ external_type_display_name: string;
13833
+ created_at: string;
13834
+ workspace_id: string;
13835
+ };
13836
+ };
13413
13837
  };
13414
13838
  '/acs/credentials/create': {
13415
13839
  route: '/acs/credentials/create';
@@ -13425,10 +13849,11 @@ interface Routes {
13425
13849
  acs_credential: {
13426
13850
  acs_credential_id: string;
13427
13851
  acs_user_id?: string | undefined;
13852
+ acs_credential_pool_id?: string | undefined;
13428
13853
  acs_system_id: string;
13429
13854
  display_name: string;
13430
13855
  code: string | null;
13431
- external_type: 'pti_card' | 'brivo_credential';
13856
+ external_type: 'pti_card' | 'brivo_credential' | 'hid_credential';
13432
13857
  external_type_display_name: string;
13433
13858
  created_at: string;
13434
13859
  workspace_id: string;
@@ -13459,10 +13884,11 @@ interface Routes {
13459
13884
  acs_credential: {
13460
13885
  acs_credential_id: string;
13461
13886
  acs_user_id?: string | undefined;
13887
+ acs_credential_pool_id?: string | undefined;
13462
13888
  acs_system_id: string;
13463
13889
  display_name: string;
13464
13890
  code: string | null;
13465
- external_type: 'pti_card' | 'brivo_credential';
13891
+ external_type: 'pti_card' | 'brivo_credential' | 'hid_credential';
13466
13892
  external_type_display_name: string;
13467
13893
  created_at: string;
13468
13894
  workspace_id: string;
@@ -13487,10 +13913,11 @@ interface Routes {
13487
13913
  acs_credentials: Array<{
13488
13914
  acs_credential_id: string;
13489
13915
  acs_user_id?: string | undefined;
13916
+ acs_credential_pool_id?: string | undefined;
13490
13917
  acs_system_id: string;
13491
13918
  display_name: string;
13492
13919
  code: string | null;
13493
- external_type: 'pti_card' | 'brivo_credential';
13920
+ external_type: 'pti_card' | 'brivo_credential' | 'hid_credential';
13494
13921
  external_type_display_name: string;
13495
13922
  created_at: string;
13496
13923
  workspace_id: string;
@@ -13511,10 +13938,11 @@ interface Routes {
13511
13938
  acs_credential: {
13512
13939
  acs_credential_id: string;
13513
13940
  acs_user_id?: string | undefined;
13941
+ acs_credential_pool_id?: string | undefined;
13514
13942
  acs_system_id: string;
13515
13943
  display_name: string;
13516
13944
  code: string | null;
13517
- external_type: 'pti_card' | 'brivo_credential';
13945
+ external_type: 'pti_card' | 'brivo_credential' | 'hid_credential';
13518
13946
  external_type_display_name: string;
13519
13947
  created_at: string;
13520
13948
  workspace_id: string;
@@ -14207,7 +14635,7 @@ interface Routes {
14207
14635
  display_name: string;
14208
14636
  manufacturer_display_name: string;
14209
14637
  offline_access_codes_supported?: boolean | undefined;
14210
- access_codes_supported?: boolean | undefined;
14638
+ online_access_codes_supported?: boolean | undefined;
14211
14639
  accessory_keypad_supported?: boolean | undefined;
14212
14640
  };
14213
14641
  has_direct_power?: boolean | undefined;
@@ -14626,7 +15054,7 @@ interface Routes {
14626
15054
  display_name: string;
14627
15055
  manufacturer_display_name: string;
14628
15056
  offline_access_codes_supported?: boolean | undefined;
14629
- access_codes_supported?: boolean | undefined;
15057
+ online_access_codes_supported?: boolean | undefined;
14630
15058
  accessory_keypad_supported?: boolean | undefined;
14631
15059
  };
14632
15060
  has_direct_power?: boolean | undefined;
@@ -15300,7 +15728,7 @@ interface Routes {
15300
15728
  display_name: string;
15301
15729
  manufacturer_display_name: string;
15302
15730
  offline_access_codes_supported?: boolean | undefined;
15303
- access_codes_supported?: boolean | undefined;
15731
+ online_access_codes_supported?: boolean | undefined;
15304
15732
  accessory_keypad_supported?: boolean | undefined;
15305
15733
  };
15306
15734
  has_direct_power?: boolean | undefined;
@@ -15697,7 +16125,7 @@ interface Routes {
15697
16125
  display_name: string;
15698
16126
  manufacturer_display_name: string;
15699
16127
  offline_access_codes_supported?: boolean | undefined;
15700
- access_codes_supported?: boolean | undefined;
16128
+ online_access_codes_supported?: boolean | undefined;
15701
16129
  accessory_keypad_supported?: boolean | undefined;
15702
16130
  };
15703
16131
  has_direct_power?: boolean | undefined;
@@ -16116,7 +16544,7 @@ interface Routes {
16116
16544
  display_name: string;
16117
16545
  manufacturer_display_name: string;
16118
16546
  offline_access_codes_supported?: boolean | undefined;
16119
- access_codes_supported?: boolean | undefined;
16547
+ online_access_codes_supported?: boolean | undefined;
16120
16548
  accessory_keypad_supported?: boolean | undefined;
16121
16549
  };
16122
16550
  has_direct_power?: boolean | undefined;
@@ -16513,7 +16941,7 @@ interface Routes {
16513
16941
  display_name: string;
16514
16942
  manufacturer_display_name: string;
16515
16943
  offline_access_codes_supported?: boolean | undefined;
16516
- access_codes_supported?: boolean | undefined;
16944
+ online_access_codes_supported?: boolean | undefined;
16517
16945
  accessory_keypad_supported?: boolean | undefined;
16518
16946
  };
16519
16947
  has_direct_power?: boolean | undefined;
@@ -17330,7 +17758,7 @@ interface Routes {
17330
17758
  display_name: string;
17331
17759
  manufacturer_display_name: string;
17332
17760
  offline_access_codes_supported?: boolean | undefined;
17333
- access_codes_supported?: boolean | undefined;
17761
+ online_access_codes_supported?: boolean | undefined;
17334
17762
  accessory_keypad_supported?: boolean | undefined;
17335
17763
  };
17336
17764
  has_direct_power?: boolean | undefined;
@@ -17779,7 +18207,7 @@ interface Routes {
17779
18207
  display_name: string;
17780
18208
  manufacturer_display_name: string;
17781
18209
  offline_access_codes_supported?: boolean | undefined;
17782
- access_codes_supported?: boolean | undefined;
18210
+ online_access_codes_supported?: boolean | undefined;
17783
18211
  accessory_keypad_supported?: boolean | undefined;
17784
18212
  };
17785
18213
  has_direct_power?: boolean | undefined;
@@ -18300,7 +18728,7 @@ interface Routes {
18300
18728
  display_name: string;
18301
18729
  manufacturer_display_name: string;
18302
18730
  offline_access_codes_supported?: boolean | undefined;
18303
- access_codes_supported?: boolean | undefined;
18731
+ online_access_codes_supported?: boolean | undefined;
18304
18732
  accessory_keypad_supported?: boolean | undefined;
18305
18733
  };
18306
18734
  has_direct_power?: boolean | undefined;