@seamapi/types 1.384.0 → 1.385.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 (30) hide show
  1. package/dist/connect.cjs +456 -137
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +1668 -208
  4. package/lib/seam/connect/models/access-grants/access-grant.d.ts +8 -5
  5. package/lib/seam/connect/models/access-grants/access-grant.js +3 -0
  6. package/lib/seam/connect/models/access-grants/access-grant.js.map +1 -1
  7. package/lib/seam/connect/models/access-grants/requested-access-method.d.ts +3 -3
  8. package/lib/seam/connect/models/access-grants/requested-access-method.js +2 -2
  9. package/lib/seam/connect/models/access-grants/requested-access-method.js.map +1 -1
  10. package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +156 -0
  11. package/lib/seam/connect/models/action-attempts/action-attempt.js +4 -0
  12. package/lib/seam/connect/models/action-attempts/action-attempt.js.map +1 -1
  13. package/lib/seam/connect/models/action-attempts/simulate-keypad-code-entry.d.ts +80 -0
  14. package/lib/seam/connect/models/action-attempts/simulate-keypad-code-entry.js +28 -0
  15. package/lib/seam/connect/models/action-attempts/simulate-keypad-code-entry.js.map +1 -0
  16. package/lib/seam/connect/models/action-attempts/simulate-manual-lock-via-keypad.d.ts +80 -0
  17. package/lib/seam/connect/models/action-attempts/simulate-manual-lock-via-keypad.js +28 -0
  18. package/lib/seam/connect/models/action-attempts/simulate-manual-lock-via-keypad.js.map +1 -0
  19. package/lib/seam/connect/openapi.d.ts +266 -175
  20. package/lib/seam/connect/openapi.js +408 -132
  21. package/lib/seam/connect/openapi.js.map +1 -1
  22. package/lib/seam/connect/route-types.d.ts +1246 -33
  23. package/package.json +1 -1
  24. package/src/lib/seam/connect/models/access-grants/access-grant.ts +5 -0
  25. package/src/lib/seam/connect/models/access-grants/requested-access-method.ts +4 -2
  26. package/src/lib/seam/connect/models/action-attempts/action-attempt.ts +4 -0
  27. package/src/lib/seam/connect/models/action-attempts/simulate-keypad-code-entry.ts +39 -0
  28. package/src/lib/seam/connect/models/action-attempts/simulate-manual-lock-via-keypad.ts +37 -0
  29. package/src/lib/seam/connect/openapi.ts +426 -136
  30. package/src/lib/seam/connect/route-types.ts +1372 -33
@@ -8911,6 +8911,162 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
8911
8911
  status: z.ZodLiteral<"pending">;
8912
8912
  result: z.ZodNull;
8913
8913
  error: z.ZodNull;
8914
+ }>, {
8915
+ action_type: z.ZodLiteral<"SIMULATE_KEYPAD_CODE_ENTRY">;
8916
+ }>, "strip", z.ZodTypeAny, {
8917
+ status: "pending";
8918
+ action_attempt_id: string;
8919
+ error: null;
8920
+ result: null;
8921
+ action_type: "SIMULATE_KEYPAD_CODE_ENTRY";
8922
+ }, {
8923
+ status: "pending";
8924
+ action_attempt_id: string;
8925
+ error: null;
8926
+ result: null;
8927
+ action_type: "SIMULATE_KEYPAD_CODE_ENTRY";
8928
+ }>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
8929
+ action_attempt_id: z.ZodString;
8930
+ status: z.ZodEnum<["pending", "success", "error"]>;
8931
+ }, {
8932
+ status: z.ZodLiteral<"success">;
8933
+ error: z.ZodNull;
8934
+ }>, {
8935
+ action_type: z.ZodLiteral<"SIMULATE_KEYPAD_CODE_ENTRY">;
8936
+ result: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
8937
+ }>, "strip", z.ZodTypeAny, {
8938
+ status: "success";
8939
+ action_attempt_id: string;
8940
+ error: null;
8941
+ result: {};
8942
+ action_type: "SIMULATE_KEYPAD_CODE_ENTRY";
8943
+ }, {
8944
+ status: "success";
8945
+ action_attempt_id: string;
8946
+ error: null;
8947
+ result: {};
8948
+ action_type: "SIMULATE_KEYPAD_CODE_ENTRY";
8949
+ }>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
8950
+ action_attempt_id: z.ZodString;
8951
+ status: z.ZodEnum<["pending", "success", "error"]>;
8952
+ }, {
8953
+ status: z.ZodLiteral<"error">;
8954
+ result: z.ZodNull;
8955
+ }>, {
8956
+ action_type: z.ZodLiteral<"SIMULATE_KEYPAD_CODE_ENTRY">;
8957
+ error: z.ZodObject<{
8958
+ type: z.ZodString;
8959
+ message: z.ZodString;
8960
+ }, "strip", z.ZodTypeAny, {
8961
+ message: string;
8962
+ type: string;
8963
+ }, {
8964
+ message: string;
8965
+ type: string;
8966
+ }>;
8967
+ }>, "strip", z.ZodTypeAny, {
8968
+ status: "error";
8969
+ action_attempt_id: string;
8970
+ error: {
8971
+ message: string;
8972
+ type: string;
8973
+ };
8974
+ result: null;
8975
+ action_type: "SIMULATE_KEYPAD_CODE_ENTRY";
8976
+ }, {
8977
+ status: "error";
8978
+ action_attempt_id: string;
8979
+ error: {
8980
+ message: string;
8981
+ type: string;
8982
+ };
8983
+ result: null;
8984
+ action_type: "SIMULATE_KEYPAD_CODE_ENTRY";
8985
+ }>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
8986
+ action_attempt_id: z.ZodString;
8987
+ status: z.ZodEnum<["pending", "success", "error"]>;
8988
+ }, {
8989
+ status: z.ZodLiteral<"pending">;
8990
+ result: z.ZodNull;
8991
+ error: z.ZodNull;
8992
+ }>, {
8993
+ action_type: z.ZodLiteral<"SIMULATE_MANUAL_LOCK_VIA_KEYPAD">;
8994
+ }>, "strip", z.ZodTypeAny, {
8995
+ status: "pending";
8996
+ action_attempt_id: string;
8997
+ error: null;
8998
+ result: null;
8999
+ action_type: "SIMULATE_MANUAL_LOCK_VIA_KEYPAD";
9000
+ }, {
9001
+ status: "pending";
9002
+ action_attempt_id: string;
9003
+ error: null;
9004
+ result: null;
9005
+ action_type: "SIMULATE_MANUAL_LOCK_VIA_KEYPAD";
9006
+ }>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
9007
+ action_attempt_id: z.ZodString;
9008
+ status: z.ZodEnum<["pending", "success", "error"]>;
9009
+ }, {
9010
+ status: z.ZodLiteral<"success">;
9011
+ error: z.ZodNull;
9012
+ }>, {
9013
+ action_type: z.ZodLiteral<"SIMULATE_MANUAL_LOCK_VIA_KEYPAD">;
9014
+ result: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
9015
+ }>, "strip", z.ZodTypeAny, {
9016
+ status: "success";
9017
+ action_attempt_id: string;
9018
+ error: null;
9019
+ result: {};
9020
+ action_type: "SIMULATE_MANUAL_LOCK_VIA_KEYPAD";
9021
+ }, {
9022
+ status: "success";
9023
+ action_attempt_id: string;
9024
+ error: null;
9025
+ result: {};
9026
+ action_type: "SIMULATE_MANUAL_LOCK_VIA_KEYPAD";
9027
+ }>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
9028
+ action_attempt_id: z.ZodString;
9029
+ status: z.ZodEnum<["pending", "success", "error"]>;
9030
+ }, {
9031
+ status: z.ZodLiteral<"error">;
9032
+ result: z.ZodNull;
9033
+ }>, {
9034
+ action_type: z.ZodLiteral<"SIMULATE_MANUAL_LOCK_VIA_KEYPAD">;
9035
+ error: z.ZodObject<{
9036
+ type: z.ZodString;
9037
+ message: z.ZodString;
9038
+ }, "strip", z.ZodTypeAny, {
9039
+ message: string;
9040
+ type: string;
9041
+ }, {
9042
+ message: string;
9043
+ type: string;
9044
+ }>;
9045
+ }>, "strip", z.ZodTypeAny, {
9046
+ status: "error";
9047
+ action_attempt_id: string;
9048
+ error: {
9049
+ message: string;
9050
+ type: string;
9051
+ };
9052
+ result: null;
9053
+ action_type: "SIMULATE_MANUAL_LOCK_VIA_KEYPAD";
9054
+ }, {
9055
+ status: "error";
9056
+ action_attempt_id: string;
9057
+ error: {
9058
+ message: string;
9059
+ type: string;
9060
+ };
9061
+ result: null;
9062
+ action_type: "SIMULATE_MANUAL_LOCK_VIA_KEYPAD";
9063
+ }>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
9064
+ action_attempt_id: z.ZodString;
9065
+ status: z.ZodEnum<["pending", "success", "error"]>;
9066
+ }, {
9067
+ status: z.ZodLiteral<"pending">;
9068
+ result: z.ZodNull;
9069
+ error: z.ZodNull;
8914
9070
  }>, {
8915
9071
  action_type: z.ZodLiteral<"SYNC_ACCESS_CODES">;
8916
9072
  }>, "strip", z.ZodTypeAny, {
@@ -38118,142 +38274,6 @@ declare const _default: {
38118
38274
  'x-response-key': string;
38119
38275
  };
38120
38276
  };
38121
- '/devices/simulate/access_code_lock': {
38122
- post: {
38123
- operationId: string;
38124
- requestBody: {
38125
- content: {
38126
- 'application/json': {
38127
- schema: {
38128
- properties: {
38129
- access_code_id: {
38130
- format: string;
38131
- type: string;
38132
- };
38133
- device_id: {
38134
- format: string;
38135
- type: string;
38136
- };
38137
- };
38138
- required: string[];
38139
- type: string;
38140
- };
38141
- };
38142
- };
38143
- };
38144
- responses: {
38145
- 200: {
38146
- content: {
38147
- 'application/json': {
38148
- schema: {
38149
- properties: {
38150
- ok: {
38151
- type: string;
38152
- };
38153
- };
38154
- required: string[];
38155
- type: string;
38156
- };
38157
- };
38158
- };
38159
- description: string;
38160
- };
38161
- 400: {
38162
- description: string;
38163
- };
38164
- 401: {
38165
- description: string;
38166
- };
38167
- };
38168
- security: ({
38169
- api_key: never[];
38170
- pat_with_workspace?: never;
38171
- console_session_with_workspace?: never;
38172
- } | {
38173
- pat_with_workspace: never[];
38174
- api_key?: never;
38175
- console_session_with_workspace?: never;
38176
- } | {
38177
- console_session_with_workspace: never[];
38178
- api_key?: never;
38179
- pat_with_workspace?: never;
38180
- })[];
38181
- summary: string;
38182
- tags: string[];
38183
- 'x-fern-sdk-group-name': string[];
38184
- 'x-fern-sdk-method-name': string;
38185
- 'x-response-key': null;
38186
- 'x-undocumented': string;
38187
- };
38188
- };
38189
- '/devices/simulate/access_code_unlock': {
38190
- post: {
38191
- operationId: string;
38192
- requestBody: {
38193
- content: {
38194
- 'application/json': {
38195
- schema: {
38196
- properties: {
38197
- access_code_id: {
38198
- format: string;
38199
- type: string;
38200
- };
38201
- device_id: {
38202
- format: string;
38203
- type: string;
38204
- };
38205
- };
38206
- required: string[];
38207
- type: string;
38208
- };
38209
- };
38210
- };
38211
- };
38212
- responses: {
38213
- 200: {
38214
- content: {
38215
- 'application/json': {
38216
- schema: {
38217
- properties: {
38218
- ok: {
38219
- type: string;
38220
- };
38221
- };
38222
- required: string[];
38223
- type: string;
38224
- };
38225
- };
38226
- };
38227
- description: string;
38228
- };
38229
- 400: {
38230
- description: string;
38231
- };
38232
- 401: {
38233
- description: string;
38234
- };
38235
- };
38236
- security: ({
38237
- api_key: never[];
38238
- pat_with_workspace?: never;
38239
- console_session_with_workspace?: never;
38240
- } | {
38241
- pat_with_workspace: never[];
38242
- api_key?: never;
38243
- console_session_with_workspace?: never;
38244
- } | {
38245
- console_session_with_workspace: never[];
38246
- api_key?: never;
38247
- pat_with_workspace?: never;
38248
- })[];
38249
- summary: string;
38250
- tags: string[];
38251
- 'x-fern-sdk-group-name': string[];
38252
- 'x-fern-sdk-method-name': string;
38253
- 'x-response-key': null;
38254
- 'x-undocumented': string;
38255
- };
38256
- };
38257
38277
  '/devices/simulate/connect': {
38258
38278
  post: {
38259
38279
  operationId: string;
@@ -39591,6 +39611,146 @@ declare const _default: {
39591
39611
  'x-response-key': string;
39592
39612
  };
39593
39613
  };
39614
+ '/locks/simulate/keypad_code_entry': {
39615
+ post: {
39616
+ operationId: string;
39617
+ requestBody: {
39618
+ content: {
39619
+ 'application/json': {
39620
+ schema: {
39621
+ properties: {
39622
+ code: {
39623
+ type: string;
39624
+ };
39625
+ device_id: {
39626
+ format: string;
39627
+ type: string;
39628
+ };
39629
+ };
39630
+ required: string[];
39631
+ type: string;
39632
+ };
39633
+ };
39634
+ };
39635
+ };
39636
+ responses: {
39637
+ 200: {
39638
+ content: {
39639
+ 'application/json': {
39640
+ schema: {
39641
+ properties: {
39642
+ action_attempt: {
39643
+ $ref: string;
39644
+ };
39645
+ ok: {
39646
+ type: string;
39647
+ };
39648
+ };
39649
+ required: string[];
39650
+ type: string;
39651
+ };
39652
+ };
39653
+ };
39654
+ description: string;
39655
+ };
39656
+ 400: {
39657
+ description: string;
39658
+ };
39659
+ 401: {
39660
+ description: string;
39661
+ };
39662
+ };
39663
+ security: ({
39664
+ api_key: never[];
39665
+ pat_with_workspace?: never;
39666
+ console_session_with_workspace?: never;
39667
+ } | {
39668
+ pat_with_workspace: never[];
39669
+ api_key?: never;
39670
+ console_session_with_workspace?: never;
39671
+ } | {
39672
+ console_session_with_workspace: never[];
39673
+ api_key?: never;
39674
+ pat_with_workspace?: never;
39675
+ })[];
39676
+ summary: string;
39677
+ tags: string[];
39678
+ 'x-action-attempt-type': string;
39679
+ 'x-fern-sdk-group-name': string[];
39680
+ 'x-fern-sdk-method-name': string;
39681
+ 'x-fern-sdk-return-value': string;
39682
+ 'x-response-key': string;
39683
+ 'x-undocumented': string;
39684
+ };
39685
+ };
39686
+ '/locks/simulate/manual_lock_via_keypad': {
39687
+ post: {
39688
+ operationId: string;
39689
+ requestBody: {
39690
+ content: {
39691
+ 'application/json': {
39692
+ schema: {
39693
+ properties: {
39694
+ device_id: {
39695
+ format: string;
39696
+ type: string;
39697
+ };
39698
+ };
39699
+ required: string[];
39700
+ type: string;
39701
+ };
39702
+ };
39703
+ };
39704
+ };
39705
+ responses: {
39706
+ 200: {
39707
+ content: {
39708
+ 'application/json': {
39709
+ schema: {
39710
+ properties: {
39711
+ action_attempt: {
39712
+ $ref: string;
39713
+ };
39714
+ ok: {
39715
+ type: string;
39716
+ };
39717
+ };
39718
+ required: string[];
39719
+ type: string;
39720
+ };
39721
+ };
39722
+ };
39723
+ description: string;
39724
+ };
39725
+ 400: {
39726
+ description: string;
39727
+ };
39728
+ 401: {
39729
+ description: string;
39730
+ };
39731
+ };
39732
+ security: ({
39733
+ api_key: never[];
39734
+ pat_with_workspace?: never;
39735
+ console_session_with_workspace?: never;
39736
+ } | {
39737
+ pat_with_workspace: never[];
39738
+ api_key?: never;
39739
+ console_session_with_workspace?: never;
39740
+ } | {
39741
+ console_session_with_workspace: never[];
39742
+ api_key?: never;
39743
+ pat_with_workspace?: never;
39744
+ })[];
39745
+ summary: string;
39746
+ tags: string[];
39747
+ 'x-action-attempt-type': string;
39748
+ 'x-fern-sdk-group-name': string[];
39749
+ 'x-fern-sdk-method-name': string;
39750
+ 'x-response-key': null;
39751
+ 'x-undocumented': string;
39752
+ };
39753
+ };
39594
39754
  '/locks/unlock_door': {
39595
39755
  post: {
39596
39756
  operationId: string;
@@ -42086,6 +42246,65 @@ declare const _default: {
42086
42246
  'x-undocumented': string;
42087
42247
  };
42088
42248
  };
42249
+ '/seam/instant_key/v1/client_sessions/exchange_short_code': {
42250
+ post: {
42251
+ description: string;
42252
+ operationId: string;
42253
+ requestBody: {
42254
+ content: {
42255
+ 'application/json': {
42256
+ schema: {
42257
+ properties: {
42258
+ short_code: {
42259
+ description: string;
42260
+ type: string;
42261
+ };
42262
+ };
42263
+ required: string[];
42264
+ type: string;
42265
+ };
42266
+ };
42267
+ };
42268
+ };
42269
+ responses: {
42270
+ 200: {
42271
+ content: {
42272
+ 'application/json': {
42273
+ schema: {
42274
+ properties: {
42275
+ client_session: {
42276
+ $ref: string;
42277
+ };
42278
+ ok: {
42279
+ type: string;
42280
+ };
42281
+ };
42282
+ required: string[];
42283
+ type: string;
42284
+ };
42285
+ };
42286
+ };
42287
+ description: string;
42288
+ };
42289
+ 400: {
42290
+ description: string;
42291
+ };
42292
+ 401: {
42293
+ description: string;
42294
+ };
42295
+ };
42296
+ security: {
42297
+ certified_client: never[];
42298
+ }[];
42299
+ summary: string;
42300
+ tags: string[];
42301
+ 'x-fern-sdk-group-name': string[];
42302
+ 'x-fern-sdk-method-name': string;
42303
+ 'x-fern-sdk-return-value': string;
42304
+ 'x-response-key': string;
42305
+ 'x-title': string;
42306
+ };
42307
+ };
42089
42308
  '/thermostats/activate_climate_preset': {
42090
42309
  post: {
42091
42310
  description: string;
@@ -44592,20 +44811,6 @@ declare const _default: {
44592
44811
  type?: never;
44593
44812
  } | {
44594
44813
  properties: {
44595
- desired_access_methods: {
44596
- items: {
44597
- properties: {
44598
- mode: {
44599
- description: string;
44600
- enum: string[];
44601
- type: string;
44602
- };
44603
- };
44604
- required: string[];
44605
- type: string;
44606
- };
44607
- type: string;
44608
- };
44609
44814
  ends_at: {
44610
44815
  description: string;
44611
44816
  format: string;
@@ -44632,6 +44837,10 @@ declare const _default: {
44632
44837
  };
44633
44838
  type: string;
44634
44839
  };
44840
+ name: {
44841
+ description: string;
44842
+ type: string;
44843
+ };
44635
44844
  };
44636
44845
  type: string;
44637
44846
  };
@@ -44643,6 +44852,20 @@ declare const _default: {
44643
44852
  };
44644
44853
  type: string;
44645
44854
  };
44855
+ requested_access_methods: {
44856
+ items: {
44857
+ properties: {
44858
+ mode: {
44859
+ description: string;
44860
+ enum: string[];
44861
+ type: string;
44862
+ };
44863
+ };
44864
+ required: string[];
44865
+ type: string;
44866
+ };
44867
+ type: string;
44868
+ };
44646
44869
  starts_at: {
44647
44870
  description: string;
44648
44871
  format: string;
@@ -44670,6 +44893,14 @@ declare const _default: {
44670
44893
  format: string;
44671
44894
  type: string;
44672
44895
  };
44896
+ access_method_ids: {
44897
+ description: string;
44898
+ items: {
44899
+ format: string;
44900
+ type: string;
44901
+ };
44902
+ type: string;
44903
+ };
44673
44904
  created_at: {
44674
44905
  description: string;
44675
44906
  format: string;
@@ -44691,6 +44922,14 @@ declare const _default: {
44691
44922
  description: string;
44692
44923
  items: {
44693
44924
  properties: {
44925
+ created_access_method_ids: {
44926
+ description: string;
44927
+ items: {
44928
+ format: string;
44929
+ type: string;
44930
+ };
44931
+ type: string;
44932
+ };
44694
44933
  created_at: {
44695
44934
  description: string;
44696
44935
  format: string;
@@ -44705,14 +44944,6 @@ declare const _default: {
44705
44944
  enum: string[];
44706
44945
  type: string;
44707
44946
  };
44708
- provisioned_access_method_ids: {
44709
- description: string;
44710
- items: {
44711
- format: string;
44712
- type: string;
44713
- };
44714
- type: string;
44715
- };
44716
44947
  };
44717
44948
  required: string[];
44718
44949
  type: string;
@@ -44810,6 +45041,14 @@ declare const _default: {
44810
45041
  format: string;
44811
45042
  type: string;
44812
45043
  };
45044
+ access_method_ids: {
45045
+ description: string;
45046
+ items: {
45047
+ format: string;
45048
+ type: string;
45049
+ };
45050
+ type: string;
45051
+ };
44813
45052
  created_at: {
44814
45053
  description: string;
44815
45054
  format: string;
@@ -44831,6 +45070,14 @@ declare const _default: {
44831
45070
  description: string;
44832
45071
  items: {
44833
45072
  properties: {
45073
+ created_access_method_ids: {
45074
+ description: string;
45075
+ items: {
45076
+ format: string;
45077
+ type: string;
45078
+ };
45079
+ type: string;
45080
+ };
44834
45081
  created_at: {
44835
45082
  description: string;
44836
45083
  format: string;
@@ -44845,14 +45092,6 @@ declare const _default: {
44845
45092
  enum: string[];
44846
45093
  type: string;
44847
45094
  };
44848
- provisioned_access_method_ids: {
44849
- description: string;
44850
- items: {
44851
- format: string;
44852
- type: string;
44853
- };
44854
- type: string;
44855
- };
44856
45095
  };
44857
45096
  required: string[];
44858
45097
  type: string;
@@ -44965,6 +45204,14 @@ declare const _default: {
44965
45204
  format: string;
44966
45205
  type: string;
44967
45206
  };
45207
+ access_method_ids: {
45208
+ description: string;
45209
+ items: {
45210
+ format: string;
45211
+ type: string;
45212
+ };
45213
+ type: string;
45214
+ };
44968
45215
  created_at: {
44969
45216
  description: string;
44970
45217
  format: string;
@@ -44986,6 +45233,14 @@ declare const _default: {
44986
45233
  description: string;
44987
45234
  items: {
44988
45235
  properties: {
45236
+ created_access_method_ids: {
45237
+ description: string;
45238
+ items: {
45239
+ format: string;
45240
+ type: string;
45241
+ };
45242
+ type: string;
45243
+ };
44989
45244
  created_at: {
44990
45245
  description: string;
44991
45246
  format: string;
@@ -45000,14 +45255,6 @@ declare const _default: {
45000
45255
  enum: string[];
45001
45256
  type: string;
45002
45257
  };
45003
- provisioned_access_method_ids: {
45004
- description: string;
45005
- items: {
45006
- format: string;
45007
- type: string;
45008
- };
45009
- type: string;
45010
- };
45011
45258
  };
45012
45259
  required: string[];
45013
45260
  type: string;
@@ -45073,7 +45320,7 @@ declare const _default: {
45073
45320
  'x-undocumented': string;
45074
45321
  };
45075
45322
  };
45076
- '/unstable_access_grants/list_access_methods': {
45323
+ '/unstable_access_methods/list': {
45077
45324
  post: {
45078
45325
  description: string;
45079
45326
  operationId: string;
@@ -49386,6 +49633,62 @@ interface Routes {
49386
49633
  type: string;
49387
49634
  message: string;
49388
49635
  };
49636
+ } | {
49637
+ /** ID of the action attempt. */
49638
+ action_attempt_id: string;
49639
+ status: 'pending';
49640
+ /** Result of the action attempt. Null for pending action attempts. */
49641
+ result: null;
49642
+ /** Errors associated with the action attempt. Null for pending action attempts. */
49643
+ error: null;
49644
+ action_type: 'SIMULATE_KEYPAD_CODE_ENTRY';
49645
+ } | {
49646
+ /** ID of the action attempt. */
49647
+ action_attempt_id: string;
49648
+ status: 'success';
49649
+ /** Errors associated with the action attempt. Null for successful action attempts. */
49650
+ error: null;
49651
+ action_type: 'SIMULATE_KEYPAD_CODE_ENTRY';
49652
+ result: {};
49653
+ } | {
49654
+ /** ID of the action attempt. */
49655
+ action_attempt_id: string;
49656
+ status: 'error';
49657
+ /** Result of the action attempt. Null for failed action attempts. */
49658
+ result: null;
49659
+ action_type: 'SIMULATE_KEYPAD_CODE_ENTRY';
49660
+ error: {
49661
+ type: string;
49662
+ message: string;
49663
+ };
49664
+ } | {
49665
+ /** ID of the action attempt. */
49666
+ action_attempt_id: string;
49667
+ status: 'pending';
49668
+ /** Result of the action attempt. Null for pending action attempts. */
49669
+ result: null;
49670
+ /** Errors associated with the action attempt. Null for pending action attempts. */
49671
+ error: null;
49672
+ action_type: 'SIMULATE_MANUAL_LOCK_VIA_KEYPAD';
49673
+ } | {
49674
+ /** ID of the action attempt. */
49675
+ action_attempt_id: string;
49676
+ status: 'success';
49677
+ /** Errors associated with the action attempt. Null for successful action attempts. */
49678
+ error: null;
49679
+ action_type: 'SIMULATE_MANUAL_LOCK_VIA_KEYPAD';
49680
+ result: {};
49681
+ } | {
49682
+ /** ID of the action attempt. */
49683
+ action_attempt_id: string;
49684
+ status: 'error';
49685
+ /** Result of the action attempt. Null for failed action attempts. */
49686
+ result: null;
49687
+ action_type: 'SIMULATE_MANUAL_LOCK_VIA_KEYPAD';
49688
+ error: {
49689
+ type: string;
49690
+ message: string;
49691
+ };
49389
49692
  } | {
49390
49693
  /** ID of the action attempt. */
49391
49694
  action_attempt_id: string;
@@ -51281,6 +51584,62 @@ interface Routes {
51281
51584
  type: string;
51282
51585
  message: string;
51283
51586
  };
51587
+ } | {
51588
+ /** ID of the action attempt. */
51589
+ action_attempt_id: string;
51590
+ status: 'pending';
51591
+ /** Result of the action attempt. Null for pending action attempts. */
51592
+ result: null;
51593
+ /** Errors associated with the action attempt. Null for pending action attempts. */
51594
+ error: null;
51595
+ action_type: 'SIMULATE_KEYPAD_CODE_ENTRY';
51596
+ } | {
51597
+ /** ID of the action attempt. */
51598
+ action_attempt_id: string;
51599
+ status: 'success';
51600
+ /** Errors associated with the action attempt. Null for successful action attempts. */
51601
+ error: null;
51602
+ action_type: 'SIMULATE_KEYPAD_CODE_ENTRY';
51603
+ result: {};
51604
+ } | {
51605
+ /** ID of the action attempt. */
51606
+ action_attempt_id: string;
51607
+ status: 'error';
51608
+ /** Result of the action attempt. Null for failed action attempts. */
51609
+ result: null;
51610
+ action_type: 'SIMULATE_KEYPAD_CODE_ENTRY';
51611
+ error: {
51612
+ type: string;
51613
+ message: string;
51614
+ };
51615
+ } | {
51616
+ /** ID of the action attempt. */
51617
+ action_attempt_id: string;
51618
+ status: 'pending';
51619
+ /** Result of the action attempt. Null for pending action attempts. */
51620
+ result: null;
51621
+ /** Errors associated with the action attempt. Null for pending action attempts. */
51622
+ error: null;
51623
+ action_type: 'SIMULATE_MANUAL_LOCK_VIA_KEYPAD';
51624
+ } | {
51625
+ /** ID of the action attempt. */
51626
+ action_attempt_id: string;
51627
+ status: 'success';
51628
+ /** Errors associated with the action attempt. Null for successful action attempts. */
51629
+ error: null;
51630
+ action_type: 'SIMULATE_MANUAL_LOCK_VIA_KEYPAD';
51631
+ result: {};
51632
+ } | {
51633
+ /** ID of the action attempt. */
51634
+ action_attempt_id: string;
51635
+ status: 'error';
51636
+ /** Result of the action attempt. Null for failed action attempts. */
51637
+ result: null;
51638
+ action_type: 'SIMULATE_MANUAL_LOCK_VIA_KEYPAD';
51639
+ error: {
51640
+ type: string;
51641
+ message: string;
51642
+ };
51284
51643
  } | {
51285
51644
  /** ID of the action attempt. */
51286
51645
  action_attempt_id: string;
@@ -54556,6 +54915,62 @@ interface Routes {
54556
54915
  type: string;
54557
54916
  message: string;
54558
54917
  };
54918
+ } | {
54919
+ /** ID of the action attempt. */
54920
+ action_attempt_id: string;
54921
+ status: 'pending';
54922
+ /** Result of the action attempt. Null for pending action attempts. */
54923
+ result: null;
54924
+ /** Errors associated with the action attempt. Null for pending action attempts. */
54925
+ error: null;
54926
+ action_type: 'SIMULATE_KEYPAD_CODE_ENTRY';
54927
+ } | {
54928
+ /** ID of the action attempt. */
54929
+ action_attempt_id: string;
54930
+ status: 'success';
54931
+ /** Errors associated with the action attempt. Null for successful action attempts. */
54932
+ error: null;
54933
+ action_type: 'SIMULATE_KEYPAD_CODE_ENTRY';
54934
+ result: {};
54935
+ } | {
54936
+ /** ID of the action attempt. */
54937
+ action_attempt_id: string;
54938
+ status: 'error';
54939
+ /** Result of the action attempt. Null for failed action attempts. */
54940
+ result: null;
54941
+ action_type: 'SIMULATE_KEYPAD_CODE_ENTRY';
54942
+ error: {
54943
+ type: string;
54944
+ message: string;
54945
+ };
54946
+ } | {
54947
+ /** ID of the action attempt. */
54948
+ action_attempt_id: string;
54949
+ status: 'pending';
54950
+ /** Result of the action attempt. Null for pending action attempts. */
54951
+ result: null;
54952
+ /** Errors associated with the action attempt. Null for pending action attempts. */
54953
+ error: null;
54954
+ action_type: 'SIMULATE_MANUAL_LOCK_VIA_KEYPAD';
54955
+ } | {
54956
+ /** ID of the action attempt. */
54957
+ action_attempt_id: string;
54958
+ status: 'success';
54959
+ /** Errors associated with the action attempt. Null for successful action attempts. */
54960
+ error: null;
54961
+ action_type: 'SIMULATE_MANUAL_LOCK_VIA_KEYPAD';
54962
+ result: {};
54963
+ } | {
54964
+ /** ID of the action attempt. */
54965
+ action_attempt_id: string;
54966
+ status: 'error';
54967
+ /** Result of the action attempt. Null for failed action attempts. */
54968
+ result: null;
54969
+ action_type: 'SIMULATE_MANUAL_LOCK_VIA_KEYPAD';
54970
+ error: {
54971
+ type: string;
54972
+ message: string;
54973
+ };
54559
54974
  } | {
54560
54975
  /** ID of the action attempt. */
54561
54976
  action_attempt_id: string;
@@ -56455,6 +56870,62 @@ interface Routes {
56455
56870
  type: string;
56456
56871
  message: string;
56457
56872
  };
56873
+ } | {
56874
+ /** ID of the action attempt. */
56875
+ action_attempt_id: string;
56876
+ status: 'pending';
56877
+ /** Result of the action attempt. Null for pending action attempts. */
56878
+ result: null;
56879
+ /** Errors associated with the action attempt. Null for pending action attempts. */
56880
+ error: null;
56881
+ action_type: 'SIMULATE_KEYPAD_CODE_ENTRY';
56882
+ } | {
56883
+ /** ID of the action attempt. */
56884
+ action_attempt_id: string;
56885
+ status: 'success';
56886
+ /** Errors associated with the action attempt. Null for successful action attempts. */
56887
+ error: null;
56888
+ action_type: 'SIMULATE_KEYPAD_CODE_ENTRY';
56889
+ result: {};
56890
+ } | {
56891
+ /** ID of the action attempt. */
56892
+ action_attempt_id: string;
56893
+ status: 'error';
56894
+ /** Result of the action attempt. Null for failed action attempts. */
56895
+ result: null;
56896
+ action_type: 'SIMULATE_KEYPAD_CODE_ENTRY';
56897
+ error: {
56898
+ type: string;
56899
+ message: string;
56900
+ };
56901
+ } | {
56902
+ /** ID of the action attempt. */
56903
+ action_attempt_id: string;
56904
+ status: 'pending';
56905
+ /** Result of the action attempt. Null for pending action attempts. */
56906
+ result: null;
56907
+ /** Errors associated with the action attempt. Null for pending action attempts. */
56908
+ error: null;
56909
+ action_type: 'SIMULATE_MANUAL_LOCK_VIA_KEYPAD';
56910
+ } | {
56911
+ /** ID of the action attempt. */
56912
+ action_attempt_id: string;
56913
+ status: 'success';
56914
+ /** Errors associated with the action attempt. Null for successful action attempts. */
56915
+ error: null;
56916
+ action_type: 'SIMULATE_MANUAL_LOCK_VIA_KEYPAD';
56917
+ result: {};
56918
+ } | {
56919
+ /** ID of the action attempt. */
56920
+ action_attempt_id: string;
56921
+ status: 'error';
56922
+ /** Result of the action attempt. Null for failed action attempts. */
56923
+ result: null;
56924
+ action_type: 'SIMULATE_MANUAL_LOCK_VIA_KEYPAD';
56925
+ error: {
56926
+ type: string;
56927
+ message: string;
56928
+ };
56458
56929
  } | {
56459
56930
  /** ID of the action attempt. */
56460
56931
  action_attempt_id: string;
@@ -59276,6 +59747,62 @@ interface Routes {
59276
59747
  type: string;
59277
59748
  message: string;
59278
59749
  };
59750
+ } | {
59751
+ /** ID of the action attempt. */
59752
+ action_attempt_id: string;
59753
+ status: 'pending';
59754
+ /** Result of the action attempt. Null for pending action attempts. */
59755
+ result: null;
59756
+ /** Errors associated with the action attempt. Null for pending action attempts. */
59757
+ error: null;
59758
+ action_type: 'SIMULATE_KEYPAD_CODE_ENTRY';
59759
+ } | {
59760
+ /** ID of the action attempt. */
59761
+ action_attempt_id: string;
59762
+ status: 'success';
59763
+ /** Errors associated with the action attempt. Null for successful action attempts. */
59764
+ error: null;
59765
+ action_type: 'SIMULATE_KEYPAD_CODE_ENTRY';
59766
+ result: {};
59767
+ } | {
59768
+ /** ID of the action attempt. */
59769
+ action_attempt_id: string;
59770
+ status: 'error';
59771
+ /** Result of the action attempt. Null for failed action attempts. */
59772
+ result: null;
59773
+ action_type: 'SIMULATE_KEYPAD_CODE_ENTRY';
59774
+ error: {
59775
+ type: string;
59776
+ message: string;
59777
+ };
59778
+ } | {
59779
+ /** ID of the action attempt. */
59780
+ action_attempt_id: string;
59781
+ status: 'pending';
59782
+ /** Result of the action attempt. Null for pending action attempts. */
59783
+ result: null;
59784
+ /** Errors associated with the action attempt. Null for pending action attempts. */
59785
+ error: null;
59786
+ action_type: 'SIMULATE_MANUAL_LOCK_VIA_KEYPAD';
59787
+ } | {
59788
+ /** ID of the action attempt. */
59789
+ action_attempt_id: string;
59790
+ status: 'success';
59791
+ /** Errors associated with the action attempt. Null for successful action attempts. */
59792
+ error: null;
59793
+ action_type: 'SIMULATE_MANUAL_LOCK_VIA_KEYPAD';
59794
+ result: {};
59795
+ } | {
59796
+ /** ID of the action attempt. */
59797
+ action_attempt_id: string;
59798
+ status: 'error';
59799
+ /** Result of the action attempt. Null for failed action attempts. */
59800
+ result: null;
59801
+ action_type: 'SIMULATE_MANUAL_LOCK_VIA_KEYPAD';
59802
+ error: {
59803
+ type: string;
59804
+ message: string;
59805
+ };
59279
59806
  } | {
59280
59807
  /** ID of the action attempt. */
59281
59808
  action_attempt_id: string;
@@ -60333,6 +60860,62 @@ interface Routes {
60333
60860
  type: string;
60334
60861
  message: string;
60335
60862
  };
60863
+ } | {
60864
+ /** ID of the action attempt. */
60865
+ action_attempt_id: string;
60866
+ status: 'pending';
60867
+ /** Result of the action attempt. Null for pending action attempts. */
60868
+ result: null;
60869
+ /** Errors associated with the action attempt. Null for pending action attempts. */
60870
+ error: null;
60871
+ action_type: 'SIMULATE_KEYPAD_CODE_ENTRY';
60872
+ } | {
60873
+ /** ID of the action attempt. */
60874
+ action_attempt_id: string;
60875
+ status: 'success';
60876
+ /** Errors associated with the action attempt. Null for successful action attempts. */
60877
+ error: null;
60878
+ action_type: 'SIMULATE_KEYPAD_CODE_ENTRY';
60879
+ result: {};
60880
+ } | {
60881
+ /** ID of the action attempt. */
60882
+ action_attempt_id: string;
60883
+ status: 'error';
60884
+ /** Result of the action attempt. Null for failed action attempts. */
60885
+ result: null;
60886
+ action_type: 'SIMULATE_KEYPAD_CODE_ENTRY';
60887
+ error: {
60888
+ type: string;
60889
+ message: string;
60890
+ };
60891
+ } | {
60892
+ /** ID of the action attempt. */
60893
+ action_attempt_id: string;
60894
+ status: 'pending';
60895
+ /** Result of the action attempt. Null for pending action attempts. */
60896
+ result: null;
60897
+ /** Errors associated with the action attempt. Null for pending action attempts. */
60898
+ error: null;
60899
+ action_type: 'SIMULATE_MANUAL_LOCK_VIA_KEYPAD';
60900
+ } | {
60901
+ /** ID of the action attempt. */
60902
+ action_attempt_id: string;
60903
+ status: 'success';
60904
+ /** Errors associated with the action attempt. Null for successful action attempts. */
60905
+ error: null;
60906
+ action_type: 'SIMULATE_MANUAL_LOCK_VIA_KEYPAD';
60907
+ result: {};
60908
+ } | {
60909
+ /** ID of the action attempt. */
60910
+ action_attempt_id: string;
60911
+ status: 'error';
60912
+ /** Result of the action attempt. Null for failed action attempts. */
60913
+ result: null;
60914
+ action_type: 'SIMULATE_MANUAL_LOCK_VIA_KEYPAD';
60915
+ error: {
60916
+ type: string;
60917
+ message: string;
60918
+ };
60336
60919
  } | {
60337
60920
  /** ID of the action attempt. */
60338
60921
  action_attempt_id: string;
@@ -63161,6 +63744,62 @@ interface Routes {
63161
63744
  type: string;
63162
63745
  message: string;
63163
63746
  };
63747
+ } | {
63748
+ /** ID of the action attempt. */
63749
+ action_attempt_id: string;
63750
+ status: 'pending';
63751
+ /** Result of the action attempt. Null for pending action attempts. */
63752
+ result: null;
63753
+ /** Errors associated with the action attempt. Null for pending action attempts. */
63754
+ error: null;
63755
+ action_type: 'SIMULATE_KEYPAD_CODE_ENTRY';
63756
+ } | {
63757
+ /** ID of the action attempt. */
63758
+ action_attempt_id: string;
63759
+ status: 'success';
63760
+ /** Errors associated with the action attempt. Null for successful action attempts. */
63761
+ error: null;
63762
+ action_type: 'SIMULATE_KEYPAD_CODE_ENTRY';
63763
+ result: {};
63764
+ } | {
63765
+ /** ID of the action attempt. */
63766
+ action_attempt_id: string;
63767
+ status: 'error';
63768
+ /** Result of the action attempt. Null for failed action attempts. */
63769
+ result: null;
63770
+ action_type: 'SIMULATE_KEYPAD_CODE_ENTRY';
63771
+ error: {
63772
+ type: string;
63773
+ message: string;
63774
+ };
63775
+ } | {
63776
+ /** ID of the action attempt. */
63777
+ action_attempt_id: string;
63778
+ status: 'pending';
63779
+ /** Result of the action attempt. Null for pending action attempts. */
63780
+ result: null;
63781
+ /** Errors associated with the action attempt. Null for pending action attempts. */
63782
+ error: null;
63783
+ action_type: 'SIMULATE_MANUAL_LOCK_VIA_KEYPAD';
63784
+ } | {
63785
+ /** ID of the action attempt. */
63786
+ action_attempt_id: string;
63787
+ status: 'success';
63788
+ /** Errors associated with the action attempt. Null for successful action attempts. */
63789
+ error: null;
63790
+ action_type: 'SIMULATE_MANUAL_LOCK_VIA_KEYPAD';
63791
+ result: {};
63792
+ } | {
63793
+ /** ID of the action attempt. */
63794
+ action_attempt_id: string;
63795
+ status: 'error';
63796
+ /** Result of the action attempt. Null for failed action attempts. */
63797
+ result: null;
63798
+ action_type: 'SIMULATE_MANUAL_LOCK_VIA_KEYPAD';
63799
+ error: {
63800
+ type: string;
63801
+ message: string;
63802
+ };
63164
63803
  } | {
63165
63804
  /** ID of the action attempt. */
63166
63805
  action_attempt_id: string;
@@ -64122,6 +64761,62 @@ interface Routes {
64122
64761
  type: string;
64123
64762
  message: string;
64124
64763
  };
64764
+ } | {
64765
+ /** ID of the action attempt. */
64766
+ action_attempt_id: string;
64767
+ status: 'pending';
64768
+ /** Result of the action attempt. Null for pending action attempts. */
64769
+ result: null;
64770
+ /** Errors associated with the action attempt. Null for pending action attempts. */
64771
+ error: null;
64772
+ action_type: 'SIMULATE_KEYPAD_CODE_ENTRY';
64773
+ } | {
64774
+ /** ID of the action attempt. */
64775
+ action_attempt_id: string;
64776
+ status: 'success';
64777
+ /** Errors associated with the action attempt. Null for successful action attempts. */
64778
+ error: null;
64779
+ action_type: 'SIMULATE_KEYPAD_CODE_ENTRY';
64780
+ result: {};
64781
+ } | {
64782
+ /** ID of the action attempt. */
64783
+ action_attempt_id: string;
64784
+ status: 'error';
64785
+ /** Result of the action attempt. Null for failed action attempts. */
64786
+ result: null;
64787
+ action_type: 'SIMULATE_KEYPAD_CODE_ENTRY';
64788
+ error: {
64789
+ type: string;
64790
+ message: string;
64791
+ };
64792
+ } | {
64793
+ /** ID of the action attempt. */
64794
+ action_attempt_id: string;
64795
+ status: 'pending';
64796
+ /** Result of the action attempt. Null for pending action attempts. */
64797
+ result: null;
64798
+ /** Errors associated with the action attempt. Null for pending action attempts. */
64799
+ error: null;
64800
+ action_type: 'SIMULATE_MANUAL_LOCK_VIA_KEYPAD';
64801
+ } | {
64802
+ /** ID of the action attempt. */
64803
+ action_attempt_id: string;
64804
+ status: 'success';
64805
+ /** Errors associated with the action attempt. Null for successful action attempts. */
64806
+ error: null;
64807
+ action_type: 'SIMULATE_MANUAL_LOCK_VIA_KEYPAD';
64808
+ result: {};
64809
+ } | {
64810
+ /** ID of the action attempt. */
64811
+ action_attempt_id: string;
64812
+ status: 'error';
64813
+ /** Result of the action attempt. Null for failed action attempts. */
64814
+ result: null;
64815
+ action_type: 'SIMULATE_MANUAL_LOCK_VIA_KEYPAD';
64816
+ error: {
64817
+ type: string;
64818
+ message: string;
64819
+ };
64125
64820
  } | {
64126
64821
  /** ID of the action attempt. */
64127
64822
  action_attempt_id: string;
@@ -66476,30 +67171,6 @@ interface Routes {
66476
67171
  }>;
66477
67172
  };
66478
67173
  };
66479
- '/devices/simulate/access_code_lock': {
66480
- route: '/devices/simulate/access_code_lock';
66481
- method: 'POST';
66482
- queryParams: {};
66483
- jsonBody: {
66484
- device_id: string;
66485
- access_code_id: string;
66486
- };
66487
- commonParams: {};
66488
- formData: {};
66489
- jsonResponse: {};
66490
- };
66491
- '/devices/simulate/access_code_unlock': {
66492
- route: '/devices/simulate/access_code_unlock';
66493
- method: 'POST';
66494
- queryParams: {};
66495
- jsonBody: {
66496
- device_id: string;
66497
- access_code_id: string;
66498
- };
66499
- commonParams: {};
66500
- formData: {};
66501
- jsonResponse: {};
66502
- };
66503
67174
  '/devices/simulate/connect': {
66504
67175
  route: '/devices/simulate/connect';
66505
67176
  method: 'POST';
@@ -73323,6 +73994,62 @@ interface Routes {
73323
73994
  type: string;
73324
73995
  message: string;
73325
73996
  };
73997
+ } | {
73998
+ /** ID of the action attempt. */
73999
+ action_attempt_id: string;
74000
+ status: 'pending';
74001
+ /** Result of the action attempt. Null for pending action attempts. */
74002
+ result: null;
74003
+ /** Errors associated with the action attempt. Null for pending action attempts. */
74004
+ error: null;
74005
+ action_type: 'SIMULATE_KEYPAD_CODE_ENTRY';
74006
+ } | {
74007
+ /** ID of the action attempt. */
74008
+ action_attempt_id: string;
74009
+ status: 'success';
74010
+ /** Errors associated with the action attempt. Null for successful action attempts. */
74011
+ error: null;
74012
+ action_type: 'SIMULATE_KEYPAD_CODE_ENTRY';
74013
+ result: {};
74014
+ } | {
74015
+ /** ID of the action attempt. */
74016
+ action_attempt_id: string;
74017
+ status: 'error';
74018
+ /** Result of the action attempt. Null for failed action attempts. */
74019
+ result: null;
74020
+ action_type: 'SIMULATE_KEYPAD_CODE_ENTRY';
74021
+ error: {
74022
+ type: string;
74023
+ message: string;
74024
+ };
74025
+ } | {
74026
+ /** ID of the action attempt. */
74027
+ action_attempt_id: string;
74028
+ status: 'pending';
74029
+ /** Result of the action attempt. Null for pending action attempts. */
74030
+ result: null;
74031
+ /** Errors associated with the action attempt. Null for pending action attempts. */
74032
+ error: null;
74033
+ action_type: 'SIMULATE_MANUAL_LOCK_VIA_KEYPAD';
74034
+ } | {
74035
+ /** ID of the action attempt. */
74036
+ action_attempt_id: string;
74037
+ status: 'success';
74038
+ /** Errors associated with the action attempt. Null for successful action attempts. */
74039
+ error: null;
74040
+ action_type: 'SIMULATE_MANUAL_LOCK_VIA_KEYPAD';
74041
+ result: {};
74042
+ } | {
74043
+ /** ID of the action attempt. */
74044
+ action_attempt_id: string;
74045
+ status: 'error';
74046
+ /** Result of the action attempt. Null for failed action attempts. */
74047
+ result: null;
74048
+ action_type: 'SIMULATE_MANUAL_LOCK_VIA_KEYPAD';
74049
+ error: {
74050
+ type: string;
74051
+ message: string;
74052
+ };
73326
74053
  } | {
73327
74054
  /** ID of the action attempt. */
73328
74055
  action_attempt_id: string;
@@ -73530,6 +74257,33 @@ interface Routes {
73530
74257
  };
73531
74258
  };
73532
74259
  };
74260
+ '/locks/simulate/keypad_code_entry': {
74261
+ route: '/locks/simulate/keypad_code_entry';
74262
+ method: 'POST';
74263
+ queryParams: {};
74264
+ jsonBody: {
74265
+ device_id: string;
74266
+ code: string;
74267
+ };
74268
+ commonParams: {};
74269
+ formData: {};
74270
+ jsonResponse: {
74271
+ action_attempt?: any;
74272
+ };
74273
+ };
74274
+ '/locks/simulate/manual_lock_via_keypad': {
74275
+ route: '/locks/simulate/manual_lock_via_keypad';
74276
+ method: 'POST';
74277
+ queryParams: {};
74278
+ jsonBody: {
74279
+ device_id: string;
74280
+ };
74281
+ commonParams: {};
74282
+ formData: {};
74283
+ jsonResponse: {
74284
+ action_attempt?: any;
74285
+ };
74286
+ };
73533
74287
  '/locks/unlock_door': {
73534
74288
  route: '/locks/unlock_door';
73535
74289
  method: 'POST';
@@ -74286,6 +75040,62 @@ interface Routes {
74286
75040
  type: string;
74287
75041
  message: string;
74288
75042
  };
75043
+ } | {
75044
+ /** ID of the action attempt. */
75045
+ action_attempt_id: string;
75046
+ status: 'pending';
75047
+ /** Result of the action attempt. Null for pending action attempts. */
75048
+ result: null;
75049
+ /** Errors associated with the action attempt. Null for pending action attempts. */
75050
+ error: null;
75051
+ action_type: 'SIMULATE_KEYPAD_CODE_ENTRY';
75052
+ } | {
75053
+ /** ID of the action attempt. */
75054
+ action_attempt_id: string;
75055
+ status: 'success';
75056
+ /** Errors associated with the action attempt. Null for successful action attempts. */
75057
+ error: null;
75058
+ action_type: 'SIMULATE_KEYPAD_CODE_ENTRY';
75059
+ result: {};
75060
+ } | {
75061
+ /** ID of the action attempt. */
75062
+ action_attempt_id: string;
75063
+ status: 'error';
75064
+ /** Result of the action attempt. Null for failed action attempts. */
75065
+ result: null;
75066
+ action_type: 'SIMULATE_KEYPAD_CODE_ENTRY';
75067
+ error: {
75068
+ type: string;
75069
+ message: string;
75070
+ };
75071
+ } | {
75072
+ /** ID of the action attempt. */
75073
+ action_attempt_id: string;
75074
+ status: 'pending';
75075
+ /** Result of the action attempt. Null for pending action attempts. */
75076
+ result: null;
75077
+ /** Errors associated with the action attempt. Null for pending action attempts. */
75078
+ error: null;
75079
+ action_type: 'SIMULATE_MANUAL_LOCK_VIA_KEYPAD';
75080
+ } | {
75081
+ /** ID of the action attempt. */
75082
+ action_attempt_id: string;
75083
+ status: 'success';
75084
+ /** Errors associated with the action attempt. Null for successful action attempts. */
75085
+ error: null;
75086
+ action_type: 'SIMULATE_MANUAL_LOCK_VIA_KEYPAD';
75087
+ result: {};
75088
+ } | {
75089
+ /** ID of the action attempt. */
75090
+ action_attempt_id: string;
75091
+ status: 'error';
75092
+ /** Result of the action attempt. Null for failed action attempts. */
75093
+ result: null;
75094
+ action_type: 'SIMULATE_MANUAL_LOCK_VIA_KEYPAD';
75095
+ error: {
75096
+ type: string;
75097
+ message: string;
75098
+ };
74289
75099
  } | {
74290
75100
  /** ID of the action attempt. */
74291
75101
  action_attempt_id: string;
@@ -76732,6 +77542,62 @@ interface Routes {
76732
77542
  type: string;
76733
77543
  message: string;
76734
77544
  };
77545
+ } | {
77546
+ /** ID of the action attempt. */
77547
+ action_attempt_id: string;
77548
+ status: 'pending';
77549
+ /** Result of the action attempt. Null for pending action attempts. */
77550
+ result: null;
77551
+ /** Errors associated with the action attempt. Null for pending action attempts. */
77552
+ error: null;
77553
+ action_type: 'SIMULATE_KEYPAD_CODE_ENTRY';
77554
+ } | {
77555
+ /** ID of the action attempt. */
77556
+ action_attempt_id: string;
77557
+ status: 'success';
77558
+ /** Errors associated with the action attempt. Null for successful action attempts. */
77559
+ error: null;
77560
+ action_type: 'SIMULATE_KEYPAD_CODE_ENTRY';
77561
+ result: {};
77562
+ } | {
77563
+ /** ID of the action attempt. */
77564
+ action_attempt_id: string;
77565
+ status: 'error';
77566
+ /** Result of the action attempt. Null for failed action attempts. */
77567
+ result: null;
77568
+ action_type: 'SIMULATE_KEYPAD_CODE_ENTRY';
77569
+ error: {
77570
+ type: string;
77571
+ message: string;
77572
+ };
77573
+ } | {
77574
+ /** ID of the action attempt. */
77575
+ action_attempt_id: string;
77576
+ status: 'pending';
77577
+ /** Result of the action attempt. Null for pending action attempts. */
77578
+ result: null;
77579
+ /** Errors associated with the action attempt. Null for pending action attempts. */
77580
+ error: null;
77581
+ action_type: 'SIMULATE_MANUAL_LOCK_VIA_KEYPAD';
77582
+ } | {
77583
+ /** ID of the action attempt. */
77584
+ action_attempt_id: string;
77585
+ status: 'success';
77586
+ /** Errors associated with the action attempt. Null for successful action attempts. */
77587
+ error: null;
77588
+ action_type: 'SIMULATE_MANUAL_LOCK_VIA_KEYPAD';
77589
+ result: {};
77590
+ } | {
77591
+ /** ID of the action attempt. */
77592
+ action_attempt_id: string;
77593
+ status: 'error';
77594
+ /** Result of the action attempt. Null for failed action attempts. */
77595
+ result: null;
77596
+ action_type: 'SIMULATE_MANUAL_LOCK_VIA_KEYPAD';
77597
+ error: {
77598
+ type: string;
77599
+ message: string;
77600
+ };
76735
77601
  } | {
76736
77602
  /** ID of the action attempt. */
76737
77603
  action_attempt_id: string;
@@ -77706,6 +78572,62 @@ interface Routes {
77706
78572
  type: string;
77707
78573
  message: string;
77708
78574
  };
78575
+ } | {
78576
+ /** ID of the action attempt. */
78577
+ action_attempt_id: string;
78578
+ status: 'pending';
78579
+ /** Result of the action attempt. Null for pending action attempts. */
78580
+ result: null;
78581
+ /** Errors associated with the action attempt. Null for pending action attempts. */
78582
+ error: null;
78583
+ action_type: 'SIMULATE_KEYPAD_CODE_ENTRY';
78584
+ } | {
78585
+ /** ID of the action attempt. */
78586
+ action_attempt_id: string;
78587
+ status: 'success';
78588
+ /** Errors associated with the action attempt. Null for successful action attempts. */
78589
+ error: null;
78590
+ action_type: 'SIMULATE_KEYPAD_CODE_ENTRY';
78591
+ result: {};
78592
+ } | {
78593
+ /** ID of the action attempt. */
78594
+ action_attempt_id: string;
78595
+ status: 'error';
78596
+ /** Result of the action attempt. Null for failed action attempts. */
78597
+ result: null;
78598
+ action_type: 'SIMULATE_KEYPAD_CODE_ENTRY';
78599
+ error: {
78600
+ type: string;
78601
+ message: string;
78602
+ };
78603
+ } | {
78604
+ /** ID of the action attempt. */
78605
+ action_attempt_id: string;
78606
+ status: 'pending';
78607
+ /** Result of the action attempt. Null for pending action attempts. */
78608
+ result: null;
78609
+ /** Errors associated with the action attempt. Null for pending action attempts. */
78610
+ error: null;
78611
+ action_type: 'SIMULATE_MANUAL_LOCK_VIA_KEYPAD';
78612
+ } | {
78613
+ /** ID of the action attempt. */
78614
+ action_attempt_id: string;
78615
+ status: 'success';
78616
+ /** Errors associated with the action attempt. Null for successful action attempts. */
78617
+ error: null;
78618
+ action_type: 'SIMULATE_MANUAL_LOCK_VIA_KEYPAD';
78619
+ result: {};
78620
+ } | {
78621
+ /** ID of the action attempt. */
78622
+ action_attempt_id: string;
78623
+ status: 'error';
78624
+ /** Result of the action attempt. Null for failed action attempts. */
78625
+ result: null;
78626
+ action_type: 'SIMULATE_MANUAL_LOCK_VIA_KEYPAD';
78627
+ error: {
78628
+ type: string;
78629
+ message: string;
78630
+ };
77709
78631
  } | {
77710
78632
  /** ID of the action attempt. */
77711
78633
  action_attempt_id: string;
@@ -78719,6 +79641,62 @@ interface Routes {
78719
79641
  type: string;
78720
79642
  message: string;
78721
79643
  };
79644
+ } | {
79645
+ /** ID of the action attempt. */
79646
+ action_attempt_id: string;
79647
+ status: 'pending';
79648
+ /** Result of the action attempt. Null for pending action attempts. */
79649
+ result: null;
79650
+ /** Errors associated with the action attempt. Null for pending action attempts. */
79651
+ error: null;
79652
+ action_type: 'SIMULATE_KEYPAD_CODE_ENTRY';
79653
+ } | {
79654
+ /** ID of the action attempt. */
79655
+ action_attempt_id: string;
79656
+ status: 'success';
79657
+ /** Errors associated with the action attempt. Null for successful action attempts. */
79658
+ error: null;
79659
+ action_type: 'SIMULATE_KEYPAD_CODE_ENTRY';
79660
+ result: {};
79661
+ } | {
79662
+ /** ID of the action attempt. */
79663
+ action_attempt_id: string;
79664
+ status: 'error';
79665
+ /** Result of the action attempt. Null for failed action attempts. */
79666
+ result: null;
79667
+ action_type: 'SIMULATE_KEYPAD_CODE_ENTRY';
79668
+ error: {
79669
+ type: string;
79670
+ message: string;
79671
+ };
79672
+ } | {
79673
+ /** ID of the action attempt. */
79674
+ action_attempt_id: string;
79675
+ status: 'pending';
79676
+ /** Result of the action attempt. Null for pending action attempts. */
79677
+ result: null;
79678
+ /** Errors associated with the action attempt. Null for pending action attempts. */
79679
+ error: null;
79680
+ action_type: 'SIMULATE_MANUAL_LOCK_VIA_KEYPAD';
79681
+ } | {
79682
+ /** ID of the action attempt. */
79683
+ action_attempt_id: string;
79684
+ status: 'success';
79685
+ /** Errors associated with the action attempt. Null for successful action attempts. */
79686
+ error: null;
79687
+ action_type: 'SIMULATE_MANUAL_LOCK_VIA_KEYPAD';
79688
+ result: {};
79689
+ } | {
79690
+ /** ID of the action attempt. */
79691
+ action_attempt_id: string;
79692
+ status: 'error';
79693
+ /** Result of the action attempt. Null for failed action attempts. */
79694
+ result: null;
79695
+ action_type: 'SIMULATE_MANUAL_LOCK_VIA_KEYPAD';
79696
+ error: {
79697
+ type: string;
79698
+ message: string;
79699
+ };
78722
79700
  } | {
78723
79701
  /** ID of the action attempt. */
78724
79702
  action_attempt_id: string;
@@ -79382,6 +80360,32 @@ interface Routes {
79382
80360
  }>;
79383
80361
  };
79384
80362
  };
80363
+ '/seam/instant_key/v1/client_sessions/exchange_short_code': {
80364
+ route: '/seam/instant_key/v1/client_sessions/exchange_short_code';
80365
+ method: 'POST';
80366
+ queryParams: {};
80367
+ jsonBody: {
80368
+ /** The short code to exchange for a client session token */
80369
+ short_code: string;
80370
+ };
80371
+ commonParams: {};
80372
+ formData: {};
80373
+ jsonResponse: {
80374
+ /** */
80375
+ client_session: {
80376
+ client_session_id: string;
80377
+ workspace_id: string;
80378
+ created_at: string;
80379
+ expires_at: string;
80380
+ token: string;
80381
+ user_identifier_key: string | null;
80382
+ device_count: number;
80383
+ connected_account_ids: string[];
80384
+ connect_webview_ids: string[];
80385
+ user_identity_ids: string[];
80386
+ };
80387
+ };
80388
+ };
79385
80389
  '/thermostats/activate_climate_preset': {
79386
80390
  route: '/thermostats/activate_climate_preset';
79387
80391
  method: 'POST';
@@ -80140,6 +81144,62 @@ interface Routes {
80140
81144
  type: string;
80141
81145
  message: string;
80142
81146
  };
81147
+ } | {
81148
+ /** ID of the action attempt. */
81149
+ action_attempt_id: string;
81150
+ status: 'pending';
81151
+ /** Result of the action attempt. Null for pending action attempts. */
81152
+ result: null;
81153
+ /** Errors associated with the action attempt. Null for pending action attempts. */
81154
+ error: null;
81155
+ action_type: 'SIMULATE_KEYPAD_CODE_ENTRY';
81156
+ } | {
81157
+ /** ID of the action attempt. */
81158
+ action_attempt_id: string;
81159
+ status: 'success';
81160
+ /** Errors associated with the action attempt. Null for successful action attempts. */
81161
+ error: null;
81162
+ action_type: 'SIMULATE_KEYPAD_CODE_ENTRY';
81163
+ result: {};
81164
+ } | {
81165
+ /** ID of the action attempt. */
81166
+ action_attempt_id: string;
81167
+ status: 'error';
81168
+ /** Result of the action attempt. Null for failed action attempts. */
81169
+ result: null;
81170
+ action_type: 'SIMULATE_KEYPAD_CODE_ENTRY';
81171
+ error: {
81172
+ type: string;
81173
+ message: string;
81174
+ };
81175
+ } | {
81176
+ /** ID of the action attempt. */
81177
+ action_attempt_id: string;
81178
+ status: 'pending';
81179
+ /** Result of the action attempt. Null for pending action attempts. */
81180
+ result: null;
81181
+ /** Errors associated with the action attempt. Null for pending action attempts. */
81182
+ error: null;
81183
+ action_type: 'SIMULATE_MANUAL_LOCK_VIA_KEYPAD';
81184
+ } | {
81185
+ /** ID of the action attempt. */
81186
+ action_attempt_id: string;
81187
+ status: 'success';
81188
+ /** Errors associated with the action attempt. Null for successful action attempts. */
81189
+ error: null;
81190
+ action_type: 'SIMULATE_MANUAL_LOCK_VIA_KEYPAD';
81191
+ result: {};
81192
+ } | {
81193
+ /** ID of the action attempt. */
81194
+ action_attempt_id: string;
81195
+ status: 'error';
81196
+ /** Result of the action attempt. Null for failed action attempts. */
81197
+ result: null;
81198
+ action_type: 'SIMULATE_MANUAL_LOCK_VIA_KEYPAD';
81199
+ error: {
81200
+ type: string;
81201
+ message: string;
81202
+ };
80143
81203
  } | {
80144
81204
  /** ID of the action attempt. */
80145
81205
  action_attempt_id: string;
@@ -81109,6 +82169,62 @@ interface Routes {
81109
82169
  type: string;
81110
82170
  message: string;
81111
82171
  };
82172
+ } | {
82173
+ /** ID of the action attempt. */
82174
+ action_attempt_id: string;
82175
+ status: 'pending';
82176
+ /** Result of the action attempt. Null for pending action attempts. */
82177
+ result: null;
82178
+ /** Errors associated with the action attempt. Null for pending action attempts. */
82179
+ error: null;
82180
+ action_type: 'SIMULATE_KEYPAD_CODE_ENTRY';
82181
+ } | {
82182
+ /** ID of the action attempt. */
82183
+ action_attempt_id: string;
82184
+ status: 'success';
82185
+ /** Errors associated with the action attempt. Null for successful action attempts. */
82186
+ error: null;
82187
+ action_type: 'SIMULATE_KEYPAD_CODE_ENTRY';
82188
+ result: {};
82189
+ } | {
82190
+ /** ID of the action attempt. */
82191
+ action_attempt_id: string;
82192
+ status: 'error';
82193
+ /** Result of the action attempt. Null for failed action attempts. */
82194
+ result: null;
82195
+ action_type: 'SIMULATE_KEYPAD_CODE_ENTRY';
82196
+ error: {
82197
+ type: string;
82198
+ message: string;
82199
+ };
82200
+ } | {
82201
+ /** ID of the action attempt. */
82202
+ action_attempt_id: string;
82203
+ status: 'pending';
82204
+ /** Result of the action attempt. Null for pending action attempts. */
82205
+ result: null;
82206
+ /** Errors associated with the action attempt. Null for pending action attempts. */
82207
+ error: null;
82208
+ action_type: 'SIMULATE_MANUAL_LOCK_VIA_KEYPAD';
82209
+ } | {
82210
+ /** ID of the action attempt. */
82211
+ action_attempt_id: string;
82212
+ status: 'success';
82213
+ /** Errors associated with the action attempt. Null for successful action attempts. */
82214
+ error: null;
82215
+ action_type: 'SIMULATE_MANUAL_LOCK_VIA_KEYPAD';
82216
+ result: {};
82217
+ } | {
82218
+ /** ID of the action attempt. */
82219
+ action_attempt_id: string;
82220
+ status: 'error';
82221
+ /** Result of the action attempt. Null for failed action attempts. */
82222
+ result: null;
82223
+ action_type: 'SIMULATE_MANUAL_LOCK_VIA_KEYPAD';
82224
+ error: {
82225
+ type: string;
82226
+ message: string;
82227
+ };
81112
82228
  } | {
81113
82229
  /** ID of the action attempt. */
81114
82230
  action_attempt_id: string;
@@ -82841,6 +83957,62 @@ interface Routes {
82841
83957
  type: string;
82842
83958
  message: string;
82843
83959
  };
83960
+ } | {
83961
+ /** ID of the action attempt. */
83962
+ action_attempt_id: string;
83963
+ status: 'pending';
83964
+ /** Result of the action attempt. Null for pending action attempts. */
83965
+ result: null;
83966
+ /** Errors associated with the action attempt. Null for pending action attempts. */
83967
+ error: null;
83968
+ action_type: 'SIMULATE_KEYPAD_CODE_ENTRY';
83969
+ } | {
83970
+ /** ID of the action attempt. */
83971
+ action_attempt_id: string;
83972
+ status: 'success';
83973
+ /** Errors associated with the action attempt. Null for successful action attempts. */
83974
+ error: null;
83975
+ action_type: 'SIMULATE_KEYPAD_CODE_ENTRY';
83976
+ result: {};
83977
+ } | {
83978
+ /** ID of the action attempt. */
83979
+ action_attempt_id: string;
83980
+ status: 'error';
83981
+ /** Result of the action attempt. Null for failed action attempts. */
83982
+ result: null;
83983
+ action_type: 'SIMULATE_KEYPAD_CODE_ENTRY';
83984
+ error: {
83985
+ type: string;
83986
+ message: string;
83987
+ };
83988
+ } | {
83989
+ /** ID of the action attempt. */
83990
+ action_attempt_id: string;
83991
+ status: 'pending';
83992
+ /** Result of the action attempt. Null for pending action attempts. */
83993
+ result: null;
83994
+ /** Errors associated with the action attempt. Null for pending action attempts. */
83995
+ error: null;
83996
+ action_type: 'SIMULATE_MANUAL_LOCK_VIA_KEYPAD';
83997
+ } | {
83998
+ /** ID of the action attempt. */
83999
+ action_attempt_id: string;
84000
+ status: 'success';
84001
+ /** Errors associated with the action attempt. Null for successful action attempts. */
84002
+ error: null;
84003
+ action_type: 'SIMULATE_MANUAL_LOCK_VIA_KEYPAD';
84004
+ result: {};
84005
+ } | {
84006
+ /** ID of the action attempt. */
84007
+ action_attempt_id: string;
84008
+ status: 'error';
84009
+ /** Result of the action attempt. Null for failed action attempts. */
84010
+ result: null;
84011
+ action_type: 'SIMULATE_MANUAL_LOCK_VIA_KEYPAD';
84012
+ error: {
84013
+ type: string;
84014
+ message: string;
84015
+ };
82844
84016
  } | {
82845
84017
  /** ID of the action attempt. */
82846
84018
  action_attempt_id: string;
@@ -83814,6 +84986,62 @@ interface Routes {
83814
84986
  type: string;
83815
84987
  message: string;
83816
84988
  };
84989
+ } | {
84990
+ /** ID of the action attempt. */
84991
+ action_attempt_id: string;
84992
+ status: 'pending';
84993
+ /** Result of the action attempt. Null for pending action attempts. */
84994
+ result: null;
84995
+ /** Errors associated with the action attempt. Null for pending action attempts. */
84996
+ error: null;
84997
+ action_type: 'SIMULATE_KEYPAD_CODE_ENTRY';
84998
+ } | {
84999
+ /** ID of the action attempt. */
85000
+ action_attempt_id: string;
85001
+ status: 'success';
85002
+ /** Errors associated with the action attempt. Null for successful action attempts. */
85003
+ error: null;
85004
+ action_type: 'SIMULATE_KEYPAD_CODE_ENTRY';
85005
+ result: {};
85006
+ } | {
85007
+ /** ID of the action attempt. */
85008
+ action_attempt_id: string;
85009
+ status: 'error';
85010
+ /** Result of the action attempt. Null for failed action attempts. */
85011
+ result: null;
85012
+ action_type: 'SIMULATE_KEYPAD_CODE_ENTRY';
85013
+ error: {
85014
+ type: string;
85015
+ message: string;
85016
+ };
85017
+ } | {
85018
+ /** ID of the action attempt. */
85019
+ action_attempt_id: string;
85020
+ status: 'pending';
85021
+ /** Result of the action attempt. Null for pending action attempts. */
85022
+ result: null;
85023
+ /** Errors associated with the action attempt. Null for pending action attempts. */
85024
+ error: null;
85025
+ action_type: 'SIMULATE_MANUAL_LOCK_VIA_KEYPAD';
85026
+ } | {
85027
+ /** ID of the action attempt. */
85028
+ action_attempt_id: string;
85029
+ status: 'success';
85030
+ /** Errors associated with the action attempt. Null for successful action attempts. */
85031
+ error: null;
85032
+ action_type: 'SIMULATE_MANUAL_LOCK_VIA_KEYPAD';
85033
+ result: {};
85034
+ } | {
85035
+ /** ID of the action attempt. */
85036
+ action_attempt_id: string;
85037
+ status: 'error';
85038
+ /** Result of the action attempt. Null for failed action attempts. */
85039
+ result: null;
85040
+ action_type: 'SIMULATE_MANUAL_LOCK_VIA_KEYPAD';
85041
+ error: {
85042
+ type: string;
85043
+ message: string;
85044
+ };
83817
85045
  } | {
83818
85046
  /** ID of the action attempt. */
83819
85047
  action_attempt_id: string;
@@ -86222,6 +87450,62 @@ interface Routes {
86222
87450
  type: string;
86223
87451
  message: string;
86224
87452
  };
87453
+ } | {
87454
+ /** ID of the action attempt. */
87455
+ action_attempt_id: string;
87456
+ status: 'pending';
87457
+ /** Result of the action attempt. Null for pending action attempts. */
87458
+ result: null;
87459
+ /** Errors associated with the action attempt. Null for pending action attempts. */
87460
+ error: null;
87461
+ action_type: 'SIMULATE_KEYPAD_CODE_ENTRY';
87462
+ } | {
87463
+ /** ID of the action attempt. */
87464
+ action_attempt_id: string;
87465
+ status: 'success';
87466
+ /** Errors associated with the action attempt. Null for successful action attempts. */
87467
+ error: null;
87468
+ action_type: 'SIMULATE_KEYPAD_CODE_ENTRY';
87469
+ result: {};
87470
+ } | {
87471
+ /** ID of the action attempt. */
87472
+ action_attempt_id: string;
87473
+ status: 'error';
87474
+ /** Result of the action attempt. Null for failed action attempts. */
87475
+ result: null;
87476
+ action_type: 'SIMULATE_KEYPAD_CODE_ENTRY';
87477
+ error: {
87478
+ type: string;
87479
+ message: string;
87480
+ };
87481
+ } | {
87482
+ /** ID of the action attempt. */
87483
+ action_attempt_id: string;
87484
+ status: 'pending';
87485
+ /** Result of the action attempt. Null for pending action attempts. */
87486
+ result: null;
87487
+ /** Errors associated with the action attempt. Null for pending action attempts. */
87488
+ error: null;
87489
+ action_type: 'SIMULATE_MANUAL_LOCK_VIA_KEYPAD';
87490
+ } | {
87491
+ /** ID of the action attempt. */
87492
+ action_attempt_id: string;
87493
+ status: 'success';
87494
+ /** Errors associated with the action attempt. Null for successful action attempts. */
87495
+ error: null;
87496
+ action_type: 'SIMULATE_MANUAL_LOCK_VIA_KEYPAD';
87497
+ result: {};
87498
+ } | {
87499
+ /** ID of the action attempt. */
87500
+ action_attempt_id: string;
87501
+ status: 'error';
87502
+ /** Result of the action attempt. Null for failed action attempts. */
87503
+ result: null;
87504
+ action_type: 'SIMULATE_MANUAL_LOCK_VIA_KEYPAD';
87505
+ error: {
87506
+ type: string;
87507
+ message: string;
87508
+ };
86225
87509
  } | {
86226
87510
  /** ID of the action attempt. */
86227
87511
  action_attempt_id: string;
@@ -87377,6 +88661,62 @@ interface Routes {
87377
88661
  type: string;
87378
88662
  message: string;
87379
88663
  };
88664
+ } | {
88665
+ /** ID of the action attempt. */
88666
+ action_attempt_id: string;
88667
+ status: 'pending';
88668
+ /** Result of the action attempt. Null for pending action attempts. */
88669
+ result: null;
88670
+ /** Errors associated with the action attempt. Null for pending action attempts. */
88671
+ error: null;
88672
+ action_type: 'SIMULATE_KEYPAD_CODE_ENTRY';
88673
+ } | {
88674
+ /** ID of the action attempt. */
88675
+ action_attempt_id: string;
88676
+ status: 'success';
88677
+ /** Errors associated with the action attempt. Null for successful action attempts. */
88678
+ error: null;
88679
+ action_type: 'SIMULATE_KEYPAD_CODE_ENTRY';
88680
+ result: {};
88681
+ } | {
88682
+ /** ID of the action attempt. */
88683
+ action_attempt_id: string;
88684
+ status: 'error';
88685
+ /** Result of the action attempt. Null for failed action attempts. */
88686
+ result: null;
88687
+ action_type: 'SIMULATE_KEYPAD_CODE_ENTRY';
88688
+ error: {
88689
+ type: string;
88690
+ message: string;
88691
+ };
88692
+ } | {
88693
+ /** ID of the action attempt. */
88694
+ action_attempt_id: string;
88695
+ status: 'pending';
88696
+ /** Result of the action attempt. Null for pending action attempts. */
88697
+ result: null;
88698
+ /** Errors associated with the action attempt. Null for pending action attempts. */
88699
+ error: null;
88700
+ action_type: 'SIMULATE_MANUAL_LOCK_VIA_KEYPAD';
88701
+ } | {
88702
+ /** ID of the action attempt. */
88703
+ action_attempt_id: string;
88704
+ status: 'success';
88705
+ /** Errors associated with the action attempt. Null for successful action attempts. */
88706
+ error: null;
88707
+ action_type: 'SIMULATE_MANUAL_LOCK_VIA_KEYPAD';
88708
+ result: {};
88709
+ } | {
88710
+ /** ID of the action attempt. */
88711
+ action_attempt_id: string;
88712
+ status: 'error';
88713
+ /** Result of the action attempt. Null for failed action attempts. */
88714
+ result: null;
88715
+ action_type: 'SIMULATE_MANUAL_LOCK_VIA_KEYPAD';
88716
+ error: {
88717
+ type: string;
88718
+ message: string;
88719
+ };
87380
88720
  } | {
87381
88721
  /** ID of the action attempt. */
87382
88722
  action_attempt_id: string;
@@ -88369,6 +89709,62 @@ interface Routes {
88369
89709
  type: string;
88370
89710
  message: string;
88371
89711
  };
89712
+ } | {
89713
+ /** ID of the action attempt. */
89714
+ action_attempt_id: string;
89715
+ status: 'pending';
89716
+ /** Result of the action attempt. Null for pending action attempts. */
89717
+ result: null;
89718
+ /** Errors associated with the action attempt. Null for pending action attempts. */
89719
+ error: null;
89720
+ action_type: 'SIMULATE_KEYPAD_CODE_ENTRY';
89721
+ } | {
89722
+ /** ID of the action attempt. */
89723
+ action_attempt_id: string;
89724
+ status: 'success';
89725
+ /** Errors associated with the action attempt. Null for successful action attempts. */
89726
+ error: null;
89727
+ action_type: 'SIMULATE_KEYPAD_CODE_ENTRY';
89728
+ result: {};
89729
+ } | {
89730
+ /** ID of the action attempt. */
89731
+ action_attempt_id: string;
89732
+ status: 'error';
89733
+ /** Result of the action attempt. Null for failed action attempts. */
89734
+ result: null;
89735
+ action_type: 'SIMULATE_KEYPAD_CODE_ENTRY';
89736
+ error: {
89737
+ type: string;
89738
+ message: string;
89739
+ };
89740
+ } | {
89741
+ /** ID of the action attempt. */
89742
+ action_attempt_id: string;
89743
+ status: 'pending';
89744
+ /** Result of the action attempt. Null for pending action attempts. */
89745
+ result: null;
89746
+ /** Errors associated with the action attempt. Null for pending action attempts. */
89747
+ error: null;
89748
+ action_type: 'SIMULATE_MANUAL_LOCK_VIA_KEYPAD';
89749
+ } | {
89750
+ /** ID of the action attempt. */
89751
+ action_attempt_id: string;
89752
+ status: 'success';
89753
+ /** Errors associated with the action attempt. Null for successful action attempts. */
89754
+ error: null;
89755
+ action_type: 'SIMULATE_MANUAL_LOCK_VIA_KEYPAD';
89756
+ result: {};
89757
+ } | {
89758
+ /** ID of the action attempt. */
89759
+ action_attempt_id: string;
89760
+ status: 'error';
89761
+ /** Result of the action attempt. Null for failed action attempts. */
89762
+ result: null;
89763
+ action_type: 'SIMULATE_MANUAL_LOCK_VIA_KEYPAD';
89764
+ error: {
89765
+ type: string;
89766
+ message: string;
89767
+ };
88372
89768
  } | {
88373
89769
  /** ID of the action attempt. */
88374
89770
  action_attempt_id: string;
@@ -88710,12 +90106,14 @@ interface Routes {
88710
90106
  location_ids?: string[] | undefined;
88711
90107
  /** When used, creates a new location with the given entrances and devices, and gives the user access to this location. */
88712
90108
  location?: {
90109
+ /** Name of the location. */
90110
+ name?: string | undefined;
88713
90111
  /** Set of IDs of the [entrances](https://docs.seam.co/latest/api/acs/systems/list) to add to the location to which access is being granted. */
88714
90112
  acs_entrance_ids?: string[];
88715
90113
  /** Set of IDs of the [devices](https://docs.seam.co/latest/api/devices/list) to add to the location to which access is being granted. */
88716
90114
  device_ids?: string[];
88717
90115
  } | undefined;
88718
- desired_access_methods: Array<{
90116
+ requested_access_methods: Array<{
88719
90117
  /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
88720
90118
  mode: 'code' | 'card' | 'mobile_key';
88721
90119
  }>;
@@ -88744,9 +90142,11 @@ interface Routes {
88744
90142
  mode: 'code' | 'card' | 'mobile_key';
88745
90143
  /** Date and time at which the requested access method was added to this access grant. */
88746
90144
  created_at: string;
88747
- /** IDs of the locations to which access is being given. */
88748
- provisioned_access_method_ids: string[];
90145
+ /** IDs of the access methods that were created for this requested access method. */
90146
+ created_access_method_ids: string[];
88749
90147
  }>;
90148
+ /** IDs of the access methods that were created for this access grant. */
90149
+ access_method_ids: string[];
88750
90150
  /** Display name of the access grant. */
88751
90151
  display_name: string;
88752
90152
  /** Date and time at which the access grant was created. */
@@ -88783,9 +90183,11 @@ interface Routes {
88783
90183
  mode: 'code' | 'card' | 'mobile_key';
88784
90184
  /** Date and time at which the requested access method was added to this access grant. */
88785
90185
  created_at: string;
88786
- /** IDs of the locations to which access is being given. */
88787
- provisioned_access_method_ids: string[];
90186
+ /** IDs of the access methods that were created for this requested access method. */
90187
+ created_access_method_ids: string[];
88788
90188
  }>;
90189
+ /** IDs of the access methods that were created for this access grant. */
90190
+ access_method_ids: string[];
88789
90191
  /** Display name of the access grant. */
88790
90192
  display_name: string;
88791
90193
  /** Date and time at which the access grant was created. */
@@ -88827,9 +90229,11 @@ interface Routes {
88827
90229
  mode: 'code' | 'card' | 'mobile_key';
88828
90230
  /** Date and time at which the requested access method was added to this access grant. */
88829
90231
  created_at: string;
88830
- /** IDs of the locations to which access is being given. */
88831
- provisioned_access_method_ids: string[];
90232
+ /** IDs of the access methods that were created for this requested access method. */
90233
+ created_access_method_ids: string[];
88832
90234
  }>;
90235
+ /** IDs of the access methods that were created for this access grant. */
90236
+ access_method_ids: string[];
88833
90237
  /** Display name of the access grant. */
88834
90238
  display_name: string;
88835
90239
  /** Date and time at which the access grant was created. */
@@ -88837,8 +90241,8 @@ interface Routes {
88837
90241
  }>;
88838
90242
  };
88839
90243
  };
88840
- '/unstable_access_grants/list_access_methods': {
88841
- route: '/unstable_access_grants/list_access_methods';
90244
+ '/unstable_access_methods/list': {
90245
+ route: '/unstable_access_methods/list';
88842
90246
  method: 'GET' | 'POST';
88843
90247
  queryParams: {};
88844
90248
  jsonBody: {};
@@ -91964,6 +93368,62 @@ interface Routes {
91964
93368
  type: string;
91965
93369
  message: string;
91966
93370
  };
93371
+ } | {
93372
+ /** ID of the action attempt. */
93373
+ action_attempt_id: string;
93374
+ status: 'pending';
93375
+ /** Result of the action attempt. Null for pending action attempts. */
93376
+ result: null;
93377
+ /** Errors associated with the action attempt. Null for pending action attempts. */
93378
+ error: null;
93379
+ action_type: 'SIMULATE_KEYPAD_CODE_ENTRY';
93380
+ } | {
93381
+ /** ID of the action attempt. */
93382
+ action_attempt_id: string;
93383
+ status: 'success';
93384
+ /** Errors associated with the action attempt. Null for successful action attempts. */
93385
+ error: null;
93386
+ action_type: 'SIMULATE_KEYPAD_CODE_ENTRY';
93387
+ result: {};
93388
+ } | {
93389
+ /** ID of the action attempt. */
93390
+ action_attempt_id: string;
93391
+ status: 'error';
93392
+ /** Result of the action attempt. Null for failed action attempts. */
93393
+ result: null;
93394
+ action_type: 'SIMULATE_KEYPAD_CODE_ENTRY';
93395
+ error: {
93396
+ type: string;
93397
+ message: string;
93398
+ };
93399
+ } | {
93400
+ /** ID of the action attempt. */
93401
+ action_attempt_id: string;
93402
+ status: 'pending';
93403
+ /** Result of the action attempt. Null for pending action attempts. */
93404
+ result: null;
93405
+ /** Errors associated with the action attempt. Null for pending action attempts. */
93406
+ error: null;
93407
+ action_type: 'SIMULATE_MANUAL_LOCK_VIA_KEYPAD';
93408
+ } | {
93409
+ /** ID of the action attempt. */
93410
+ action_attempt_id: string;
93411
+ status: 'success';
93412
+ /** Errors associated with the action attempt. Null for successful action attempts. */
93413
+ error: null;
93414
+ action_type: 'SIMULATE_MANUAL_LOCK_VIA_KEYPAD';
93415
+ result: {};
93416
+ } | {
93417
+ /** ID of the action attempt. */
93418
+ action_attempt_id: string;
93419
+ status: 'error';
93420
+ /** Result of the action attempt. Null for failed action attempts. */
93421
+ result: null;
93422
+ action_type: 'SIMULATE_MANUAL_LOCK_VIA_KEYPAD';
93423
+ error: {
93424
+ type: string;
93425
+ message: string;
93426
+ };
91967
93427
  } | {
91968
93428
  /** ID of the action attempt. */
91969
93429
  action_attempt_id: string;